From d1b2e220b83a90c0b802f39220633b5fa2777186 Mon Sep 17 00:00:00 2001 From: "REDMOND\\xizha" Date: Wed, 2 Nov 2016 18:19:45 -0700 Subject: [PATCH 001/137] OperationalInsights Management lib from swagger and tests for swagger --- .../Generated/DataSourcesOperations.cs | 983 + .../DataSourcesOperationsExtensions.cs | 254 + .../Generated/IDataSourcesOperations.cs | 120 + .../Generated/ILinkedServicesOperations.cs | 114 + .../IOperationalInsightsManagementClient.cs | 93 + .../Generated/ISearchOperations.cs | 171 + .../Generated/IStorageInsightsOperations.cs | 114 + .../Generated/IWorkspacesOperations.cs | 272 + .../Generated/LinkedServicesOperations.cs | 962 + .../LinkedServicesOperationsExtensions.cs | 241 + .../Generated/Models/Account.cs | 63 + .../Generated/Models/CoreSummary.cs | 47 + .../Generated/Models/DataSource.cs | 56 + .../Generated/Models/DataSourceFilter.cs | 40 + .../Generated/Models/EntityStatus.cs | 23 + .../Generated/Models/Highlight.cs | 47 + .../Generated/Models/IntelligencePack.cs | 48 + .../Generated/Models/LinkedService.cs | 53 + .../Generated/Models/ManagementGroup.cs | 95 + .../Generated/Models/MetadataSchema.cs | 47 + .../Generated/Models/MetricName.cs | 47 + .../Generated/Models/Page.cs | 46 + .../Generated/Models/Page1.cs | 46 + .../Generated/Models/Page2.cs | 46 + .../Generated/Models/Resource.cs | 68 + .../Generated/Models/SavedSearchValue.cs | 83 + .../Generated/Models/SchemaValue.cs | 85 + ...archCreateOrUpdateSavedSearchParameters.cs | 78 + .../Generated/Models/SearchError.cs | 47 + .../Models/SearchGetSavedSearchResult.cs | 83 + .../Models/SearchGetSchemaResponse.cs | 47 + .../SearchGetSearchResultsParameters.cs | 73 + .../Models/SearchGetSearchResultsResponse.cs | 63 + .../Models/SearchListSavedSearchResult.cs | 49 + .../Generated/Models/SearchMetadata.cs | 152 + .../Generated/Models/SearchSort.cs | 47 + .../Generated/Models/SharedKeys.cs | 47 + .../Generated/Models/Sku.cs | 51 + .../Generated/Models/SkuNameEnum.cs | 20 + .../Generated/Models/StorageAccount.cs | 48 + .../Generated/Models/StorageInsight.cs | 82 + .../Generated/Models/StorageInsightStatus.cs | 41 + .../Generated/Models/Tag.cs | 47 + .../Generated/Models/UsageMetric.cs | 76 + .../Generated/Models/Workspace.cs | 97 + .../OperationalInsightsManagementClient.cs | 316 + .../Generated/SearchOperations.cs | 1500 + .../Generated/SearchOperationsExtensions.cs | 378 + .../Generated/StorageInsightsOperations.cs | 962 + .../StorageInsightsOperationsExtensions.cs | 241 + .../Generated/WorkspacesOperations.cs | 2636 ++ .../WorkspacesOperationsExtensions.cs | 641 + ...Azure.Management.OperationalInsights.xproj | 21 + .../Properties/AssemblyInfo.cs | 19 + .../generate.cmd | 18 + .../project.json | 44 + .../Helpers/TestHelper.cs | 227 + .../OperationalInsights.Test.xproj | 22 + .../Properties/AssemblyInfo.cs | 19 + .../DataSourceOperationsTests.Scenario.cs | 183 + .../LinkedServiceOperationsTests.Scenario.cs | 105 + .../SearchOperationsTests.Scenario.cs | 217 + .../StorageInsightOperationsTests.Scenario.cs | 160 + .../WorkspaceOperationsTests.Scenario .cs | 206 + .../CanCreateUpdateDeleteDataSource.json | 689 + .../CanPageThroughDataSourceList.json | 22543 ++++++++++++++++ ...DataSourceCreateFailsWithoutWorkspace.json | 136 + .../CanCreateUpdateDeleteLinkedService.json | 443 + ...kedServiceCreateFailsWithoutWorkspace.json | 69 + ...nCreateOrUpdateAndDeleteSavedSearches.json | 437 + .../CanGetSavedSearchesAndResults.json | 188 + .../CanGetSchema.json | 68 + .../CanGetSearchResultsAndUpdate.json | 140 + .../CanCreateUpdateDeleteStorageInsight.json | 695 + ...ageInsightCreateFailsWithoutWorkspace.json | 137 + .../CanCreateListDeleteWorkspace.json | 209 + ...CanEnableDisableListIntelligencePacks.json | 653 + .../CanPerformWorkspaceActions.json | 568 + .../OperationalInsights.Test/project.json | 41 + .../OperationalInsights.sln | 58 + .../OperationalInsights/global.json | 3 + 81 files changed, 40404 insertions(+) create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IOperationalInsightsManagementClient.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISearchOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Account.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/CoreSummary.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceFilter.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/EntityStatus.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Highlight.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/IntelligencePack.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ManagementGroup.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetadataSchema.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetricName.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page2.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchValue.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SchemaValue.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchCreateOrUpdateSavedSearchParameters.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchError.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSavedSearchResult.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSchemaResponse.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsParameters.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsResponse.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchListSavedSearchResult.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SharedKeys.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Sku.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SkuNameEnum.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Tag.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/UsageMetric.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/OperationalInsightsManagementClient.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperationsExtensions.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Microsoft.Azure.Management.OperationalInsights.xproj create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/generate.cmd create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.xproj create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/CanCreateUpdateDeleteDataSource.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/CanPageThroughDataSourceList.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/DataSourceCreateFailsWithoutWorkspace.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.LinkedServiceOperationsTests/CanCreateUpdateDeleteLinkedService.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.LinkedServiceOperationsTests/LinkedServiceCreateFailsWithoutWorkspace.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanCreateOrUpdateAndDeleteSavedSearches.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSavedSearchesAndResults.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSchema.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSearchResultsAndUpdate.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.StorageInsightOperationsTests/CanCreateUpdateDeleteStorageInsight.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.StorageInsightOperationsTests/StorageInsightCreateFailsWithoutWorkspace.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanCreateListDeleteWorkspace.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanEnableDisableListIntelligencePacks.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanPerformWorkspaceActions.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.sln create mode 100644 src/ResourceManagement/OperationalInsights/global.json diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs new file mode 100644 index 000000000000..caee1985e78c --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs @@ -0,0 +1,983 @@ +// 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.OperationalInsights +{ + 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.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// DataSourcesOperations operations. + /// + internal partial class DataSourcesOperations : IServiceOperations, IDataSourcesOperations + { + /// + /// Initializes a new instance of the DataSourcesOperations class. + /// + /// + /// Reference to the service client. + /// + internal DataSourcesOperations(OperationalInsightsManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the OperationalInsightsManagementClient + /// + public OperationalInsightsManagementClient Client { get; private set; } + + /// + /// Create or update a data source. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the parent workspace that will contain the data source + /// + /// + /// The parameters required to create or update a data source. + /// + /// + /// The parameters required to create or update a data source. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, DataSource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{name}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{name}", Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _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; + 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) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a data source instance. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the workspace that contains the data source. + /// + /// + /// Name of the data source. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (dataSourceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "dataSourceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("dataSourceName", dataSourceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{dataSourceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{dataSourceName}", Uri.EscapeDataString(dataSourceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 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")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a data source instance. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the workspace that contains the data source. + /// + /// + /// Name of the data source + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (dataSourceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "dataSourceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("dataSourceName", dataSourceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{dataSourceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{dataSourceName}", Uri.EscapeDataString(dataSourceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of data source instances in a workspace with the link + /// to the next page. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The resource group name of the data sources. + /// + /// + /// The workspace that contains the data sources. + /// + /// + /// Token for paging support. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListInWorkspaceWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (odataQuery == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "odataQuery"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("skiptoken", skiptoken); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListInWorkspace", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (skiptoken != null) + { + _queryParameters.Add(string.Format("$skiptoken={0}", Uri.EscapeDataString(skiptoken))); + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of data source instances in a workspace with the link + /// to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListInWorkspaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListInWorkspaceNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs new file mode 100644 index 000000000000..ce17e2068374 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs @@ -0,0 +1,254 @@ +// 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.OperationalInsights +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for DataSourcesOperations. + /// + public static partial class DataSourcesOperationsExtensions + { + /// + /// Create or update a data source. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the parent workspace that will contain the data source + /// + /// + /// The parameters required to create or update a data source. + /// + /// + /// The parameters required to create or update a data source. + /// + public static DataSource CreateOrUpdate(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string name, DataSource parameters) + { + return Task.Factory.StartNew(s => ((IDataSourcesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create or update a data source. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the parent workspace that will contain the data source + /// + /// + /// The parameters required to create or update a data source. + /// + /// + /// The parameters required to create or update a data source. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string name, DataSource parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a data source instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the workspace that contains the data source. + /// + /// + /// Name of the data source. + /// + public static void Delete(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName) + { + Task.Factory.StartNew(s => ((IDataSourcesOperations)s).DeleteAsync(resourceGroupName, workspaceName, dataSourceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes a data source instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the workspace that contains the data source. + /// + /// + /// Name of the data source. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, dataSourceName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a data source instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the workspace that contains the data source. + /// + /// + /// Name of the data source + /// + public static DataSource Get(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName) + { + return Task.Factory.StartNew(s => ((IDataSourcesOperations)s).GetAsync(resourceGroupName, workspaceName, dataSourceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a data source instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the workspace that contains the data source. + /// + /// + /// Name of the data source + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, dataSourceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of data source instances in a workspace with the link + /// to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The resource group name of the data sources. + /// + /// + /// The workspace that contains the data sources. + /// + /// + /// Token for paging support. + /// + public static IPage ListInWorkspace(this IDataSourcesOperations operations, ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string)) + { + return Task.Factory.StartNew(s => ((IDataSourcesOperations)s).ListInWorkspaceAsync(odataQuery, resourceGroupName, workspaceName, skiptoken), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of data source instances in a workspace with the link + /// to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The resource group name of the data sources. + /// + /// + /// The workspace that contains the data sources. + /// + /// + /// Token for paging support. + /// + /// + /// The cancellation token. + /// + public static async Task> ListInWorkspaceAsync(this IDataSourcesOperations operations, ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListInWorkspaceWithHttpMessagesAsync(odataQuery, resourceGroupName, workspaceName, skiptoken, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of data source instances in a workspace with the link + /// to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListInWorkspaceNext(this IDataSourcesOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IDataSourcesOperations)s).ListInWorkspaceNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of data source instances in a workspace with the link + /// to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListInWorkspaceNextAsync(this IDataSourcesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListInWorkspaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs new file mode 100644 index 000000000000..2800aca6ce56 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs @@ -0,0 +1,120 @@ +// 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.OperationalInsights +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// DataSourcesOperations operations. + /// + public partial interface IDataSourcesOperations + { + /// + /// Create or update a data source. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the parent workspace that will contain the data source + /// + /// + /// The parameters required to create or update a data source. + /// + /// + /// The parameters required to create or update a data source. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, DataSource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a data source instance. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the workspace that contains the data source. + /// + /// + /// Name of the data source. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a data source instance. + /// + /// + /// The resource group name of the data source. + /// + /// + /// The name of the workspace that contains the data source. + /// + /// + /// Name of the data source + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of data source instances in a workspace with + /// the link to the next page. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The resource group name of the data sources. + /// + /// + /// The workspace that contains the data sources. + /// + /// + /// Token for paging support. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListInWorkspaceWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of data source instances in a workspace with + /// the link to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListInWorkspaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs new file mode 100644 index 000000000000..278e73047821 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs @@ -0,0 +1,114 @@ +// 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.OperationalInsights +{ + 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; + + /// + /// LinkedServicesOperations operations. + /// + public partial interface ILinkedServicesOperations + { + /// + /// Create or update a linked service. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the parent workspace that will contain the linked + /// service + /// + /// + /// The parameters required to create or update a linked service. + /// + /// + /// The parameters required to create or update a linked service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, LinkedService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a linked service instance. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the workspace that contains the linked service. + /// + /// + /// Name of the linked service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a linked service instance. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the workspace that contains the linked service. + /// + /// + /// Name of the linked service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of linked services instances in a workspace + /// with the link to the next page. + /// + /// + /// The resource group name of the linked services. + /// + /// + /// The workspace that contains the linked services. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of linked services instances in a workspace + /// with the link to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IOperationalInsightsManagementClient.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IOperationalInsightsManagementClient.cs new file mode 100644 index 000000000000..655009db8962 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IOperationalInsightsManagementClient.cs @@ -0,0 +1,93 @@ +// 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.OperationalInsights +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// .Net client wrapper for the REST API for Azure Operational Insights + /// + public partial interface IOperationalInsightsManagementClient : IDisposable + { + /// + /// The base URI of the service. + /// + Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Gets Azure subscription credentials. + /// + ServiceClientCredentials Credentials { get; } + + /// + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// + string SubscriptionId { get; set; } + + /// + /// Gets or sets the preferred language for the response. + /// + string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running + /// Operations. Default value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is + /// generated and included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set; } + + + /// + /// Gets the ILinkedServicesOperations. + /// + ILinkedServicesOperations LinkedServices { get; } + + /// + /// Gets the IDataSourcesOperations. + /// + IDataSourcesOperations DataSources { get; } + + /// + /// Gets the IWorkspacesOperations. + /// + IWorkspacesOperations Workspaces { get; } + + /// + /// Gets the IStorageInsightsOperations. + /// + IStorageInsightsOperations StorageInsights { get; } + + /// + /// Gets the ISearchOperations. + /// + ISearchOperations Search { get; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISearchOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISearchOperations.cs new file mode 100644 index 000000000000..1d0dc9745ff9 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISearchOperations.cs @@ -0,0 +1,171 @@ +// 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.OperationalInsights +{ + 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; + + /// + /// SearchOperations operations. + /// + public partial interface ISearchOperations + { + /// + /// Deletes the specified saved search in a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task DeleteSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a saved search for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The parameters required to save a search. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task CreateOrUpdateSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, SearchCreateOrUpdateSavedSearchParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the specified saved search for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the saved searches for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ListSavedSearchesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the results from a saved search for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetSavedSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the schema for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetSchemaWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the search results for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The parameters required to execute a search query. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchGetSearchResultsParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets updated search results for a given search query. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the search that will have results updated. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> UpdateSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string id, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs new file mode 100644 index 000000000000..18f230cb4b2b --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs @@ -0,0 +1,114 @@ +// 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.OperationalInsights +{ + 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; + + /// + /// StorageInsightsOperations operations. + /// + public partial interface IStorageInsightsOperations + { + /// + /// Create or update a storage insight. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the parent workspace that will contain the storage + /// insight + /// + /// + /// The parameters required to create or update a storage insight. + /// + /// + /// The parameters required to create or update a storage insight. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, StorageInsight parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a storage insight instance. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the workspace that contains the storage insight. + /// + /// + /// The name of the storage insight + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a storage insight instance. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the workspace that contains the storage insight. + /// + /// + /// The name of the storage insight. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of storage insight instances in a workspace + /// with the link to the next page. + /// + /// + /// The resource group name of the storage insights. + /// + /// + /// The workspace that contains the storage insights. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListInWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of storage insight instances in a workspace + /// with the link to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListInWorkspaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs new file mode 100644 index 000000000000..fe22d768b318 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs @@ -0,0 +1,272 @@ +// 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.OperationalInsights +{ + 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; + + /// + /// WorkspacesOperations operations. + /// + public partial interface IWorkspacesOperations + { + /// + /// Disables an intelligence back for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The name of the intelligence pack to be disabled. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task DisableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Enables an intelligence back for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The name of the intelligence pack to be enabled. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task EnableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all the intelligence packs possible and whether they are + /// enabled or disabled for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListIntelligencePacksWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the shared keys for a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetSharedKeysWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of usage metrics for a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of management groups connected to a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of workspace instances in a resource group + /// with the link to the next page. + /// + /// + /// The resource group name of the workspaces. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListInResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of workspace instances in a subscription with + /// the link to the next page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListInSubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a workspace instance. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a workspace instance. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, Workspace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, Workspace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of accounts with administrator privileges that are not + /// associated with an existing workspace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListLinkTargetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of management groups connected to a workspace. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListManagementGroupsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of workspace instances in a resource group + /// with the link to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListInResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the first page of workspace instances in a subscription with + /// the link to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListInSubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs new file mode 100644 index 000000000000..4b282d2b4801 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs @@ -0,0 +1,962 @@ +// 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.OperationalInsights +{ + 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; + + /// + /// LinkedServicesOperations operations. + /// + internal partial class LinkedServicesOperations : IServiceOperations, ILinkedServicesOperations + { + /// + /// Initializes a new instance of the LinkedServicesOperations class. + /// + /// + /// Reference to the service client. + /// + internal LinkedServicesOperations(OperationalInsightsManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the OperationalInsightsManagementClient + /// + public OperationalInsightsManagementClient Client { get; private set; } + + /// + /// Create or update a linked service. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the parent workspace that will contain the linked service + /// + /// + /// The parameters required to create or update a linked service. + /// + /// + /// The parameters required to create or update a linked service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, LinkedService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{name}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{name}", Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _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; + 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) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a linked service instance. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the workspace that contains the linked service. + /// + /// + /// Name of the linked service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (linkedServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServiceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("linkedServiceName", linkedServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{linkedServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{linkedServiceName}", Uri.EscapeDataString(linkedServiceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 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")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a linked service instance. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the workspace that contains the linked service. + /// + /// + /// Name of the linked service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (linkedServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServiceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("linkedServiceName", linkedServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{linkedServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{linkedServiceName}", Uri.EscapeDataString(linkedServiceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of linked services instances in a workspace with the + /// link to the next page. + /// + /// + /// The resource group name of the linked services. + /// + /// + /// The workspace that contains the linked services. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of linked services instances in a workspace with the + /// link to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + 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/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs new file mode 100644 index 000000000000..8c2e5f21280e --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs @@ -0,0 +1,241 @@ +// 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.OperationalInsights +{ + 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 LinkedServicesOperations. + /// + public static partial class LinkedServicesOperationsExtensions + { + /// + /// Create or update a linked service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the parent workspace that will contain the linked service + /// + /// + /// The parameters required to create or update a linked service. + /// + /// + /// The parameters required to create or update a linked service. + /// + public static LinkedService CreateOrUpdate(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string name, LinkedService parameters) + { + return Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create or update a linked service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the parent workspace that will contain the linked service + /// + /// + /// The parameters required to create or update a linked service. + /// + /// + /// The parameters required to create or update a linked service. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string name, LinkedService parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a linked service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the workspace that contains the linked service. + /// + /// + /// Name of the linked service. + /// + public static void Delete(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName) + { + Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).DeleteAsync(resourceGroupName, workspaceName, linkedServiceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes a linked service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the workspace that contains the linked service. + /// + /// + /// Name of the linked service. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, linkedServiceName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a linked service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the workspace that contains the linked service. + /// + /// + /// Name of the linked service. + /// + public static LinkedService Get(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName) + { + return Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).GetAsync(resourceGroupName, workspaceName, linkedServiceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a linked service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the linked service. + /// + /// + /// The name of the workspace that contains the linked service. + /// + /// + /// Name of the linked service. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, linkedServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of linked services instances in a workspace with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the linked services. + /// + /// + /// The workspace that contains the linked services. + /// + public static IPage List(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).ListAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of linked services instances in a workspace with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the linked services. + /// + /// + /// The workspace that contains the linked services. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of linked services instances in a workspace with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ILinkedServicesOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of linked services instances in a workspace with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ILinkedServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Account.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Account.cs new file mode 100644 index 000000000000..0c7d1afbb782 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Account.cs @@ -0,0 +1,63 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Metadata for an Operational Insights account that isn't linked to a + /// workspace. + /// + public partial class Account + { + /// + /// Initializes a new instance of the Account class. + /// + public Account() { } + + /// + /// Initializes a new instance of the Account class. + /// + public Account(string customerId = default(string), string accountName = default(string), string workspaceName = default(string), string location = default(string)) + { + CustomerId = customerId; + AccountName = accountName; + WorkspaceName = workspaceName; + Location = location; + } + + /// + /// Gets or sets the unique ID of the account. + /// + [JsonProperty(PropertyName = "customerId")] + public string CustomerId { get; set; } + + /// + /// Gets or sets the name of the account. + /// + [JsonProperty(PropertyName = "accountName")] + public string AccountName { get; set; } + + /// + /// Gets or sets the DNS valid workspace name associated with the + /// account. + /// + [JsonProperty(PropertyName = "workspaceName")] + public string WorkspaceName { get; set; } + + /// + /// Gets or sets the Azure region that the account was created in. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/CoreSummary.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/CoreSummary.cs new file mode 100644 index 000000000000..142603f5c34b --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/CoreSummary.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The core summary of a search. + /// + public partial class CoreSummary + { + /// + /// Initializes a new instance of the CoreSummary class. + /// + public CoreSummary() { } + + /// + /// Initializes a new instance of the CoreSummary class. + /// + public CoreSummary(string status = default(string), long? numberOfDocuments = default(long?)) + { + Status = status; + NumberOfDocuments = numberOfDocuments; + } + + /// + /// Gets or sets the status of a core summary. + /// + [JsonProperty(PropertyName = "Status")] + public string Status { get; set; } + + /// + /// Gets or sets the number of documents of a core summary. + /// + [JsonProperty(PropertyName = "NumberOfDocuments")] + public long? NumberOfDocuments { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs new file mode 100644 index 000000000000..2c83dc0bc54a --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs @@ -0,0 +1,56 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Data sources under OMS Workspace. + /// + public partial class DataSource : Resource + { + /// + /// Initializes a new instance of the DataSource class. + /// + public DataSource() { } + + /// + /// Initializes a new instance of the DataSource class. + /// + public DataSource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), object properties = default(object), string eTag = default(string), string kind = default(string)) + : base(id, name, type, location, tags) + { + Properties = properties; + ETag = eTag; + Kind = kind; + } + + /// + /// Gets or sets the data source properties in raw json format, each + /// kind of data source have it's own schema. + /// + [JsonProperty(PropertyName = "properties")] + public object Properties { get; set; } + + /// + /// Gets or sets the ETag of the data source. + /// + [JsonProperty(PropertyName = "eTag")] + public string ETag { get; set; } + + /// + /// Gets or sets the kind of the resource. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceFilter.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceFilter.cs new file mode 100644 index 000000000000..f52b7c14d5b9 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceFilter.cs @@ -0,0 +1,40 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// DataSource filter. + /// + public partial class DataSourceFilter + { + /// + /// Initializes a new instance of the DataSourceFilter class. + /// + public DataSourceFilter() { } + + /// + /// Initializes a new instance of the DataSourceFilter class. + /// + public DataSourceFilter(string kind = default(string)) + { + Kind = kind; + } + + /// + /// The datasource kind. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/EntityStatus.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/EntityStatus.cs new file mode 100644 index 000000000000..02ba3b3003fc --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/EntityStatus.cs @@ -0,0 +1,23 @@ +// 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.OperationalInsights.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// + /// Defines values for EntityStatus. + /// + public static class EntityStatus + { + public const string Creating = "Creating"; + public const string Succeeded = "Succeeded"; + public const string Failed = "Failed"; + public const string Canceled = "Canceled"; + public const string Deleting = "Deleting"; + public const string ProvisioningAccount = "ProvisioningAccount"; + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Highlight.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Highlight.cs new file mode 100644 index 000000000000..c2d6ae845b39 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Highlight.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Highlight details. + /// + public partial class Highlight + { + /// + /// Initializes a new instance of the Highlight class. + /// + public Highlight() { } + + /// + /// Initializes a new instance of the Highlight class. + /// + public Highlight(string pre = default(string), string post = default(string)) + { + Pre = pre; + Post = post; + } + + /// + /// Gets or sets the string that is put before a matched result. + /// + [JsonProperty(PropertyName = "pre")] + public string Pre { get; set; } + + /// + /// Gets or sets the string that is put after a matched result. + /// + [JsonProperty(PropertyName = "post")] + public string Post { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/IntelligencePack.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/IntelligencePack.cs new file mode 100644 index 000000000000..fa936c139fe8 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/IntelligencePack.cs @@ -0,0 +1,48 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Intelligence Pack containing a string name and boolean indicating if + /// it's enabled. + /// + public partial class IntelligencePack + { + /// + /// Initializes a new instance of the IntelligencePack class. + /// + public IntelligencePack() { } + + /// + /// Initializes a new instance of the IntelligencePack class. + /// + public IntelligencePack(string name = default(string), bool? enabled = default(bool?)) + { + Name = name; + Enabled = enabled; + } + + /// + /// Gets or sets the name of the intelligence pack. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the enabled boolean for the intelligence pack. + /// + [JsonProperty(PropertyName = "enabled")] + public bool? Enabled { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs new file mode 100644 index 000000000000..2e7e80860cf4 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs @@ -0,0 +1,53 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The top level Linked service resource container. + /// + [JsonTransformation] + public partial class LinkedService : Resource + { + /// + /// Initializes a new instance of the LinkedService class. + /// + public LinkedService() { } + + /// + /// Initializes a new instance of the LinkedService class. + /// + public LinkedService(string resourceId, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) + : base(id, name, type, location, tags) + { + ResourceId = resourceId; + } + + /// + /// Gets or sets the resource id of the resource that will be linked + /// to the workspace. + /// + [JsonProperty(PropertyName = "properties.resourceId")] + public string ResourceId { get; set; } + + /// + /// Validate the object. Throws ValidationException if validation fails. + /// + public virtual void Validate() + { + if (ResourceId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ResourceId"); + } + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ManagementGroup.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ManagementGroup.cs new file mode 100644 index 000000000000..e9ab52ab0d18 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ManagementGroup.cs @@ -0,0 +1,95 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// A management group that is connected to a workspace + /// + [JsonTransformation] + public partial class ManagementGroup + { + /// + /// Initializes a new instance of the ManagementGroup class. + /// + public ManagementGroup() { } + + /// + /// Initializes a new instance of the ManagementGroup class. + /// + public ManagementGroup(int? serverCount = default(int?), bool? isGateway = default(bool?), string name = default(string), string id = default(string), DateTime? created = default(DateTime?), DateTime? dataReceived = default(DateTime?), string version = default(string), string sku = default(string)) + { + ServerCount = serverCount; + IsGateway = isGateway; + Name = name; + Id = id; + Created = created; + DataReceived = dataReceived; + Version = version; + Sku = sku; + } + + /// + /// Gets or sets the number of servers connected to the management + /// group. + /// + [JsonProperty(PropertyName = "properties.serverCount")] + public int? ServerCount { get; set; } + + /// + /// Gets or sets a value indicating whether the management group is a + /// gateway. + /// + [JsonProperty(PropertyName = "properties.isGateway")] + public bool? IsGateway { get; set; } + + /// + /// Gets or sets the name of the management group. + /// + [JsonProperty(PropertyName = "properties.name")] + public string Name { get; set; } + + /// + /// Gets or sets the unique ID of the management group. + /// + [JsonProperty(PropertyName = "properties.id")] + public string Id { get; set; } + + /// + /// Gets or sets the datetime that the management group was created. + /// + [JsonProperty(PropertyName = "properties.created")] + public DateTime? Created { get; set; } + + /// + /// Gets or sets the last datetime that the management group received + /// data. + /// + [JsonProperty(PropertyName = "properties.dataReceived")] + public DateTime? DataReceived { get; set; } + + /// + /// Gets or sets the version of System Center that is managing the + /// management group. + /// + [JsonProperty(PropertyName = "properties.version")] + public string Version { get; set; } + + /// + /// Gets or sets the SKU of System Center that is managing the + /// management group. + /// + [JsonProperty(PropertyName = "properties.sku")] + public string Sku { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetadataSchema.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetadataSchema.cs new file mode 100644 index 000000000000..59edd2067d95 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetadataSchema.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Metadata items for saved search items. + /// + public partial class MetadataSchema + { + /// + /// Initializes a new instance of the MetadataSchema class. + /// + public MetadataSchema() { } + + /// + /// Initializes a new instance of the MetadataSchema class. + /// + public MetadataSchema(string name = default(string), int? version = default(int?)) + { + Name = name; + Version = version; + } + + /// + /// Gets or sets the name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the version. + /// + [JsonProperty(PropertyName = "version")] + public int? Version { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetricName.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetricName.cs new file mode 100644 index 000000000000..2b17d3c94322 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetricName.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The name of a metric. + /// + public partial class MetricName + { + /// + /// Initializes a new instance of the MetricName class. + /// + public MetricName() { } + + /// + /// Initializes a new instance of the MetricName class. + /// + public MetricName(string value = default(string), string localizedValue = default(string)) + { + Value = value; + LocalizedValue = localizedValue; + } + + /// + /// Gets or sets the system name of the metric. + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + /// + /// Gets or sets the localized name of the metric. + /// + [JsonProperty(PropertyName = "localizedValue")] + public string LocalizedValue { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs new file mode 100644 index 000000000000..f5a79cd718c7 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs @@ -0,0 +1,46 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Collections.Generic; + using System.Linq; + using Newtonsoft.Json; + using Microsoft.Rest.Azure; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return (Items == null) ? Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs new file mode 100644 index 000000000000..4a6cf708b539 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs @@ -0,0 +1,46 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Collections.Generic; + using System.Linq; + using Newtonsoft.Json; + using Microsoft.Rest.Azure; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page1 : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return (Items == null) ? Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page2.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page2.cs new file mode 100644 index 000000000000..8f184231f4d8 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page2.cs @@ -0,0 +1,46 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Collections.Generic; + using System.Linq; + using Newtonsoft.Json; + using Microsoft.Rest.Azure; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page2 : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("@odata.nextLink")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return (Items == null) ? Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs new file mode 100644 index 000000000000..ec15e3df1bfe --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs @@ -0,0 +1,68 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The resource definition. + /// + public partial class Resource : IResource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() { } + + /// + /// Initializes a new instance of the Resource class. + /// + public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; + } + + /// + /// Resource Id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Resource location + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Resource tags + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchValue.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchValue.cs new file mode 100644 index 000000000000..3388984f8220 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchValue.cs @@ -0,0 +1,83 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Value object for saved search results. + /// + [JsonTransformation] + public partial class SavedSearchValue + { + /// + /// Initializes a new instance of the SavedSearchValue class. + /// + public SavedSearchValue() { } + + /// + /// Initializes a new instance of the SavedSearchValue class. + /// + public SavedSearchValue(string id = default(string), string etag = default(string), string category = default(string), string displayName = default(string), string query = default(string), long? version = default(long?), IList tags = default(IList)) + { + Id = id; + Etag = etag; + Category = category; + DisplayName = displayName; + Query = query; + Version = version; + Tags = tags; + } + + /// + /// Gets or sets the id of the saved search. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the etag of the saved search. + /// + [JsonProperty(PropertyName = "etag")] + public string Etag { get; set; } + + /// + /// Gets or sets the category. + /// + [JsonProperty(PropertyName = "properties.Category")] + public string Category { get; set; } + + /// + /// Gets or sets the display name. + /// + [JsonProperty(PropertyName = "properties.DisplayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets the query. + /// + [JsonProperty(PropertyName = "properties.Query")] + public string Query { get; set; } + + /// + /// Gets or sets the version number. + /// + [JsonProperty(PropertyName = "properties.Version")] + public long? Version { get; set; } + + /// + /// Gets or sets the tags attached to the saved search. + /// + [JsonProperty(PropertyName = "properties.Tags")] + public IList Tags { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SchemaValue.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SchemaValue.cs new file mode 100644 index 000000000000..ce05f7833a77 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SchemaValue.cs @@ -0,0 +1,85 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Value object for schema results. + /// + public partial class SchemaValue + { + /// + /// Initializes a new instance of the SchemaValue class. + /// + public SchemaValue() { } + + /// + /// Initializes a new instance of the SchemaValue class. + /// + public SchemaValue(string name = default(string), string displayName = default(string), string type = default(string), bool? indexed = default(bool?), bool? stored = default(bool?), bool? facet = default(bool?), IList ownerType = default(IList)) + { + Name = name; + DisplayName = displayName; + Type = type; + Indexed = indexed; + Stored = stored; + Facet = facet; + OwnerType = ownerType; + } + + /// + /// Gets or sets the name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the display name. + /// + [JsonProperty(PropertyName = "displayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets the type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the boolean that indicates the field is searchable as + /// free text. + /// + [JsonProperty(PropertyName = "indexed")] + public bool? Indexed { get; set; } + + /// + /// Gets or sets the boolean that indicates whether or not the field + /// is stored. + /// + [JsonProperty(PropertyName = "stored")] + public bool? Stored { get; set; } + + /// + /// Gets or sets the boolean that indicates whether or not the field + /// is a facet. + /// + [JsonProperty(PropertyName = "facet")] + public bool? Facet { get; set; } + + /// + /// Gets or sets the array of workflows containing the field. + /// + [JsonProperty(PropertyName = "ownerType")] + public IList OwnerType { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchCreateOrUpdateSavedSearchParameters.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchCreateOrUpdateSavedSearchParameters.cs new file mode 100644 index 000000000000..db403d2da6ad --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchCreateOrUpdateSavedSearchParameters.cs @@ -0,0 +1,78 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Parameters for putting a saved search. + /// + [JsonTransformation] + public partial class SearchCreateOrUpdateSavedSearchParameters + { + /// + /// Initializes a new instance of the + /// SearchCreateOrUpdateSavedSearchParameters class. + /// + public SearchCreateOrUpdateSavedSearchParameters() { } + + /// + /// Initializes a new instance of the + /// SearchCreateOrUpdateSavedSearchParameters class. + /// + public SearchCreateOrUpdateSavedSearchParameters(string etag = default(string), string category = default(string), string displayName = default(string), string query = default(string), long? version = default(long?), IList tags = default(IList)) + { + Etag = etag; + Category = category; + DisplayName = displayName; + Query = query; + Version = version; + Tags = tags; + } + + /// + /// Gets or sets the etag of the saved search. + /// + [JsonProperty(PropertyName = "etag")] + public string Etag { get; set; } + + /// + /// Gets or sets the category. + /// + [JsonProperty(PropertyName = "properties.Category")] + public string Category { get; set; } + + /// + /// Gets or sets the display name. + /// + [JsonProperty(PropertyName = "properties.DisplayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets the query. + /// + [JsonProperty(PropertyName = "properties.Query")] + public string Query { get; set; } + + /// + /// Gets or sets the version number. + /// + [JsonProperty(PropertyName = "properties.Version")] + public long? Version { get; set; } + + /// + /// Gets or sets the tags attached to the saved search. + /// + [JsonProperty(PropertyName = "properties.Tags")] + public IList Tags { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchError.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchError.cs new file mode 100644 index 000000000000..28faea489234 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchError.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Details for a search error. + /// + public partial class SearchError + { + /// + /// Initializes a new instance of the SearchError class. + /// + public SearchError() { } + + /// + /// Initializes a new instance of the SearchError class. + /// + public SearchError(string type = default(string), string message = default(string)) + { + Type = type; + Message = message; + } + + /// + /// Gets or sets the error type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSavedSearchResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSavedSearchResult.cs new file mode 100644 index 000000000000..8180863d2aa2 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSavedSearchResult.cs @@ -0,0 +1,83 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Value object for saved search results. + /// + [JsonTransformation] + public partial class SearchGetSavedSearchResult + { + /// + /// Initializes a new instance of the SearchGetSavedSearchResult class. + /// + public SearchGetSavedSearchResult() { } + + /// + /// Initializes a new instance of the SearchGetSavedSearchResult class. + /// + public SearchGetSavedSearchResult(string id = default(string), string etag = default(string), string category = default(string), string displayName = default(string), string query = default(string), long? version = default(long?), IList tags = default(IList)) + { + Id = id; + Etag = etag; + Category = category; + DisplayName = displayName; + Query = query; + Version = version; + Tags = tags; + } + + /// + /// Gets or sets the id of the saved search. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the etag of the saved search. + /// + [JsonProperty(PropertyName = "etag")] + public string Etag { get; set; } + + /// + /// Gets or sets the category. + /// + [JsonProperty(PropertyName = "properties.Category")] + public string Category { get; set; } + + /// + /// Gets or sets the display name. + /// + [JsonProperty(PropertyName = "properties.DisplayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets the query. + /// + [JsonProperty(PropertyName = "properties.Query")] + public string Query { get; set; } + + /// + /// Gets or sets the version number. + /// + [JsonProperty(PropertyName = "properties.Version")] + public long? Version { get; set; } + + /// + /// Gets or sets the tags attached to the saved search. + /// + [JsonProperty(PropertyName = "properties.Tags")] + public IList Tags { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSchemaResponse.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSchemaResponse.cs new file mode 100644 index 000000000000..b46b5a92d6bf --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSchemaResponse.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The get schema operation response. + /// + public partial class SearchGetSchemaResponse + { + /// + /// Initializes a new instance of the SearchGetSchemaResponse class. + /// + public SearchGetSchemaResponse() { } + + /// + /// Initializes a new instance of the SearchGetSchemaResponse class. + /// + public SearchGetSchemaResponse(SearchMetadata __metadata = default(SearchMetadata), IList value = default(IList)) + { + __metadata = __metadata; + Value = value; + } + + /// + /// Gets or sets the metadata from search results. + /// + [JsonProperty(PropertyName = "__metadata")] + public SearchMetadata __metadata { get; set; } + + /// + /// Gets or sets the array of result values. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsParameters.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsParameters.cs new file mode 100644 index 000000000000..55e16085ec0d --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsParameters.cs @@ -0,0 +1,73 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Parameters specifying the search query and range. + /// + public partial class SearchGetSearchResultsParameters + { + /// + /// Initializes a new instance of the SearchGetSearchResultsParameters + /// class. + /// + public SearchGetSearchResultsParameters() { } + + /// + /// Initializes a new instance of the SearchGetSearchResultsParameters + /// class. + /// + public SearchGetSearchResultsParameters(long? top = default(long?), Highlight highlight = default(Highlight), string query = default(string), DateTime? start = default(DateTime?), DateTime? end = default(DateTime?)) + { + Top = top; + Highlight = highlight; + Query = query; + Start = start; + End = end; + } + + /// + /// Gets or sets the number to get from the top. + /// + [JsonProperty(PropertyName = "top")] + public long? Top { get; set; } + + /// + /// Gets or sets the highlight that looks for all occurences of a + /// string. + /// + [JsonProperty(PropertyName = "highlight")] + public Highlight Highlight { get; set; } + + /// + /// Gets or sets the query to search. + /// + [JsonProperty(PropertyName = "query")] + public string Query { get; set; } + + /// + /// Gets or sets the start date filter, so the only query results + /// returned are after this date. + /// + [JsonProperty(PropertyName = "start")] + public DateTime? Start { get; set; } + + /// + /// Gets or sets the end date filter, so the only query results + /// returned are before this date. + /// + [JsonProperty(PropertyName = "end")] + public DateTime? End { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsResponse.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsResponse.cs new file mode 100644 index 000000000000..ee480f09f76f --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsResponse.cs @@ -0,0 +1,63 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The get search result operation response. + /// + public partial class SearchGetSearchResultsResponse + { + /// + /// Initializes a new instance of the SearchGetSearchResultsResponse + /// class. + /// + public SearchGetSearchResultsResponse() { } + + /// + /// Initializes a new instance of the SearchGetSearchResultsResponse + /// class. + /// + public SearchGetSearchResultsResponse(string id = default(string), SearchMetadata __metadata = default(SearchMetadata), IList value = default(IList), SearchError error = default(SearchError)) + { + Id = id; + __metadata = __metadata; + Value = value; + Error = error; + } + + /// + /// Gets or sets the id of the search, which includes the full url. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the metadata from search results. + /// + [JsonProperty(PropertyName = "__metadata")] + public SearchMetadata __metadata { get; set; } + + /// + /// Gets or sets the array of result values. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + /// + /// Gets or sets the error. + /// + [JsonProperty(PropertyName = "error")] + public SearchError Error { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchListSavedSearchResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchListSavedSearchResult.cs new file mode 100644 index 000000000000..3697faf5ed60 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchListSavedSearchResult.cs @@ -0,0 +1,49 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The saved search operation response. + /// + public partial class SearchListSavedSearchResult + { + /// + /// Initializes a new instance of the SearchListSavedSearchResult + /// class. + /// + public SearchListSavedSearchResult() { } + + /// + /// Initializes a new instance of the SearchListSavedSearchResult + /// class. + /// + public SearchListSavedSearchResult(SearchMetadata __metadata = default(SearchMetadata), IList value = default(IList)) + { + __metadata = __metadata; + Value = value; + } + + /// + /// Gets or sets the metadata from search results. + /// + [JsonProperty(PropertyName = "__metadata")] + public SearchMetadata __metadata { get; set; } + + /// + /// Gets or sets the array of result values. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs new file mode 100644 index 000000000000..8e17f4f34811 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs @@ -0,0 +1,152 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Metadata for search results. + /// + public partial class SearchMetadata + { + /// + /// Initializes a new instance of the SearchMetadata class. + /// + public SearchMetadata() { } + + /// + /// Initializes a new instance of the SearchMetadata class. + /// + public SearchMetadata(string requestId = default(string), string resultType = default(string), long? total = default(long?), long? top = default(long?), string id = default(string), IList coreSummaries = default(IList), string status = default(string), DateTime? startTime = default(DateTime?), DateTime? lastUpdated = default(DateTime?), string eTag = default(string), IList sort = default(IList), long? requestTime = default(long?), string aggregatedValueField = default(string), string aggregatedGroupingFields = default(string), long? sum = default(long?), long? max = default(long?), MetadataSchema schema = default(MetadataSchema)) + { + RequestId = requestId; + ResultType = resultType; + Total = total; + Top = top; + Id = id; + CoreSummaries = coreSummaries; + Status = status; + StartTime = startTime; + LastUpdated = lastUpdated; + ETag = eTag; + Sort = sort; + RequestTime = requestTime; + AggregatedValueField = aggregatedValueField; + AggregatedGroupingFields = aggregatedGroupingFields; + Sum = sum; + Max = max; + Schema = schema; + } + + /// + /// Gets or sets the request id of the search. + /// + [JsonProperty(PropertyName = "RequestId")] + public string RequestId { get; set; } + + /// + /// Gets or sets the search result type. + /// + [JsonProperty(PropertyName = "resultType")] + public string ResultType { get; set; } + + /// + /// Gets or sets the total search results. + /// + [JsonProperty(PropertyName = "total")] + public long? Total { get; set; } + + /// + /// Gets or sets the number of top search results. + /// + [JsonProperty(PropertyName = "top")] + public long? Top { get; set; } + + /// + /// Gets or sets the id of the search results request. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the core summaries. + /// + [JsonProperty(PropertyName = "CoreSummaries")] + public IList CoreSummaries { get; set; } + + /// + /// Gets or sets the status of the search results. + /// + [JsonProperty(PropertyName = "Status")] + public string Status { get; set; } + + /// + /// Gets or sets the start time for the search. + /// + [JsonProperty(PropertyName = "StartTime")] + public DateTime? StartTime { get; set; } + + /// + /// Gets or sets the time of last update. + /// + [JsonProperty(PropertyName = "LastUpdated")] + public DateTime? LastUpdated { get; set; } + + /// + /// Gets or sets the ETag of the search results. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + /// + /// Gets or sets sort. + /// + [JsonProperty(PropertyName = "sort")] + public IList Sort { get; set; } + + /// + /// Gets or sets the request time. + /// + [JsonProperty(PropertyName = "requestTime")] + public long? RequestTime { get; set; } + + /// + /// Gets or sets the aggregated value field. + /// + [JsonProperty(PropertyName = "aggregatedValueField")] + public string AggregatedValueField { get; set; } + + /// + /// Gets or sets the aggregated grouping fields. + /// + [JsonProperty(PropertyName = "aggregatedGroupingFields")] + public string AggregatedGroupingFields { get; set; } + + /// + /// Gets or sets the sum. + /// + [JsonProperty(PropertyName = "sum")] + public long? Sum { get; set; } + + /// + /// Gets or sets the max. + /// + [JsonProperty(PropertyName = "max")] + public long? Max { get; set; } + + /// + /// Gets or sets the schema. + /// + [JsonProperty(PropertyName = "schema")] + public MetadataSchema Schema { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs new file mode 100644 index 000000000000..b5a6c8bbdbd1 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The sort parameters for search. + /// + public partial class SearchSort + { + /// + /// Initializes a new instance of the SearchSort class. + /// + public SearchSort() { } + + /// + /// Initializes a new instance of the SearchSort class. + /// + public SearchSort(string name = default(string), string order = default(string)) + { + Name = name; + Order = order; + } + + /// + /// Gets or sets the name of the field the search query is sorted on. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the sort order of the search. + /// + [JsonProperty(PropertyName = "order")] + public string Order { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SharedKeys.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SharedKeys.cs new file mode 100644 index 000000000000..cb87595206f8 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SharedKeys.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The shared keys for a workspace. + /// + public partial class SharedKeys + { + /// + /// Initializes a new instance of the SharedKeys class. + /// + public SharedKeys() { } + + /// + /// Initializes a new instance of the SharedKeys class. + /// + public SharedKeys(string primarySharedKey = default(string), string secondarySharedKey = default(string)) + { + PrimarySharedKey = primarySharedKey; + SecondarySharedKey = secondarySharedKey; + } + + /// + /// Gets or sets the primary shared key of a workspace. + /// + [JsonProperty(PropertyName = "primarySharedKey")] + public string PrimarySharedKey { get; set; } + + /// + /// Gets or sets the secondary shared key of a workspace. + /// + [JsonProperty(PropertyName = "secondarySharedKey")] + public string SecondarySharedKey { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Sku.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Sku.cs new file mode 100644 index 000000000000..6b748c8dd41c --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Sku.cs @@ -0,0 +1,51 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The SKU (tier) of a workspace. + /// + public partial class Sku + { + /// + /// Initializes a new instance of the Sku class. + /// + public Sku() { } + + /// + /// Initializes a new instance of the Sku class. + /// + public Sku(string name) + { + Name = name; + } + + /// + /// Gets or sets the name of the SKU. Possible values include: 'Free', + /// 'Standard', 'Premium' + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Validate the object. Throws ValidationException if validation fails. + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SkuNameEnum.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SkuNameEnum.cs new file mode 100644 index 000000000000..0bf88e3414db --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SkuNameEnum.cs @@ -0,0 +1,20 @@ +// 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.OperationalInsights.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// + /// Defines values for SkuNameEnum. + /// + public static class SkuNameEnum + { + public const string Free = "Free"; + public const string Standard = "Standard"; + public const string Premium = "Premium"; + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs new file mode 100644 index 000000000000..0d33f5b09852 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs @@ -0,0 +1,48 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Describes a storage account connection. + /// + public partial class StorageAccount + { + /// + /// Initializes a new instance of the StorageAccount class. + /// + public StorageAccount() { } + + /// + /// Initializes a new instance of the StorageAccount class. + /// + public StorageAccount(string id = default(string), string key = default(string)) + { + Id = id; + Key = key; + } + + /// + /// Gets or sets the Azure Resource Manager ID of the storage account + /// resource. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the storage account key. + /// + [JsonProperty(PropertyName = "key")] + public string Key { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs new file mode 100644 index 000000000000..39cb500c46c4 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs @@ -0,0 +1,82 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The top level storage insight resource container. + /// + [JsonTransformation] + public partial class StorageInsight : Resource + { + /// + /// Initializes a new instance of the StorageInsight class. + /// + public StorageInsight() { } + + /// + /// Initializes a new instance of the StorageInsight class. + /// + public StorageInsight(StorageAccount storageAccount, String id = default(String), String name = default(String), String type = default(String), String location = default(String), IDictionary tags = default(IDictionary), IList containers = default(IList), IList tables = default(IList), StorageInsightStatus status = default(StorageInsightStatus), string eTag = default(string)) + : base(id, name, type, location, tags) + { + Containers = containers; + Tables = tables; + StorageAccount = storageAccount; + Status = status; + ETag = eTag; + } + + /// + /// Gets or sets the names of the blob containers that the workspace + /// should read + /// + [JsonProperty(PropertyName = "properties.containers")] + public IList Containers { get; set; } + + /// + /// Gets or sets the names of the Azure tables that the workspace + /// should read + /// + [JsonProperty(PropertyName = "properties.tables")] + public IList Tables { get; set; } + + /// + /// Gets or sets the storage account connection details + /// + [JsonProperty(PropertyName = "properties.storageAccount")] + public StorageAccount StorageAccount { get; set; } + + /// + /// Gets or sets the status of the storage insight + /// + [JsonProperty(PropertyName = "properties.status")] + public StorageInsightStatus Status { get; set; } + + /// + /// Gets or sets the ETag of the storage insight. + /// + [JsonProperty(PropertyName = "eTag")] + public string ETag { get; set; } + + /// + /// Validate the object. Throws ValidationException if validation fails. + /// + public virtual void Validate() + { + if (StorageAccount == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccount"); + } + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs new file mode 100644 index 000000000000..9debfef95ff7 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs @@ -0,0 +1,41 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The status of the storage insight. + /// + public partial class StorageInsightStatus + { + /// + /// Initializes a new instance of the StorageInsightStatus class. + /// + public StorageInsightStatus() { } + + /// + /// Initializes a new instance of the StorageInsightStatus class. + /// + public StorageInsightStatus(string state = default(string)) + { + State = state; + } + + /// + /// Gets or sets the state of the storage insight connection to the + /// workspace + /// + [JsonProperty(PropertyName = "state")] + public string State { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Tag.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Tag.cs new file mode 100644 index 000000000000..1589c1052d3c --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Tag.cs @@ -0,0 +1,47 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// A tag of a saved search. + /// + public partial class Tag + { + /// + /// Initializes a new instance of the Tag class. + /// + public Tag() { } + + /// + /// Initializes a new instance of the Tag class. + /// + public Tag(string name = default(string), string value = default(string)) + { + Name = name; + Value = value; + } + + /// + /// Gets or sets the tag name. + /// + [JsonProperty(PropertyName = "Name")] + public string Name { get; set; } + + /// + /// Gets or sets the tag value. + /// + [JsonProperty(PropertyName = "Value")] + public string Value { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/UsageMetric.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/UsageMetric.cs new file mode 100644 index 000000000000..043fdaf16f89 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/UsageMetric.cs @@ -0,0 +1,76 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// A metric describing the usage of a resource. + /// + public partial class UsageMetric + { + /// + /// Initializes a new instance of the UsageMetric class. + /// + public UsageMetric() { } + + /// + /// Initializes a new instance of the UsageMetric class. + /// + public UsageMetric(MetricName name = default(MetricName), string unit = default(string), double? currentValue = default(double?), double? limit = default(double?), DateTime? nextResetTime = default(DateTime?), string quotaPeriod = default(string)) + { + Name = name; + Unit = unit; + CurrentValue = currentValue; + Limit = limit; + NextResetTime = nextResetTime; + QuotaPeriod = quotaPeriod; + } + + /// + /// Gets or sets the name of the metric. + /// + [JsonProperty(PropertyName = "name")] + public MetricName Name { get; set; } + + /// + /// Gets or sets the units used for the metric. + /// + [JsonProperty(PropertyName = "unit")] + public string Unit { get; set; } + + /// + /// Gets or sets the current value of the metric. + /// + [JsonProperty(PropertyName = "currentValue")] + public double? CurrentValue { get; set; } + + /// + /// Gets or sets the quota limit for the metric. + /// + [JsonProperty(PropertyName = "limit")] + public double? Limit { get; set; } + + /// + /// Gets or sets the time that the metric's value will reset. + /// + [JsonProperty(PropertyName = "nextResetTime")] + public DateTime? NextResetTime { get; set; } + + /// + /// Gets or sets the quota period that determines the length of time + /// between value resets. + /// + [JsonProperty(PropertyName = "quotaPeriod")] + public string QuotaPeriod { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs new file mode 100644 index 000000000000..b8f8fc03441e --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs @@ -0,0 +1,97 @@ +// 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.OperationalInsights.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The top level Workspace resource container. + /// + [JsonTransformation] + public partial class Workspace : Resource + { + /// + /// Initializes a new instance of the Workspace class. + /// + public Workspace() { } + + /// + /// Initializes a new instance of the Workspace class. + /// + public Workspace(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string source = default(string), string customerId = default(string), string portalUrl = default(string), Sku sku = default(Sku), string eTag = default(string)) + : base(id, name, type, location, tags) + { + ProvisioningState = provisioningState; + Source = source; + CustomerId = customerId; + PortalUrl = portalUrl; + Sku = sku; + ETag = eTag; + } + + /// + /// Gets or sets the provisioning state of the workspace. Possible + /// values include: 'Creating', 'Succeeded', 'Failed', 'Canceled', + /// 'Deleting', 'ProvisioningAccount' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + /// + /// Gets or set the source of the workspace. Source defines where the + /// workspace was created. 'Azure' implies it was created in Azure. + /// 'External' implies it was created via the Operational Insights + /// Portal. This value is set on the service side and read-only on + /// the client side. + /// + [JsonProperty(PropertyName = "properties.source")] + public string Source { get; set; } + + /// + /// Gets or sets the ID associated with the workspace. Setting this + /// value at creation time allows the workspace being created to be + /// linked to an existing workspace. + /// + [JsonProperty(PropertyName = "properties.customerId")] + public string CustomerId { get; set; } + + /// + /// Gets or sets the URL of the Operational Insights portal for this + /// workspace. This value is set on the service side and read-only + /// on the client side. + /// + [JsonProperty(PropertyName = "properties.portalUrl")] + public string PortalUrl { get; set; } + + /// + /// Gets or sets the SKU of the workspace. + /// + [JsonProperty(PropertyName = "properties.sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets the ETag of the workspace. + /// + [JsonProperty(PropertyName = "eTag")] + public string ETag { get; set; } + + /// + /// Validate the object. Throws ValidationException if validation fails. + /// + public virtual void Validate() + { + if (this.Sku != null) + { + this.Sku.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/OperationalInsightsManagementClient.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/OperationalInsightsManagementClient.cs new file mode 100644 index 000000000000..89077972f6b1 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/OperationalInsightsManagementClient.cs @@ -0,0 +1,316 @@ +// 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.OperationalInsights +{ + using System; + using System.Linq; + using System.Collections.Generic; + using System.Diagnostics; + 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; + + /// + /// .Net client wrapper for the REST API for Azure Operational Insights + /// + public partial class OperationalInsightsManagementClient : ServiceClient, IOperationalInsightsManagementClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Gets Azure subscription credentials. + /// + public ServiceClientCredentials Credentials { get; private set; } + + /// + /// Gets subscription credentials which uniquely identify Microsoft Azure + /// subscription. The subscription ID forms part of the URI for every service + /// call. + /// + public string SubscriptionId { get; set; } + + /// + /// Gets or sets the preferred language for the response. + /// + public string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running Operations. + /// Default value is 30. + /// + public int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the ILinkedServicesOperations. + /// + public virtual ILinkedServicesOperations LinkedServices { get; private set; } + + /// + /// Gets the IDataSourcesOperations. + /// + public virtual IDataSourcesOperations DataSources { get; private set; } + + /// + /// Gets the IWorkspacesOperations. + /// + public virtual IWorkspacesOperations Workspaces { get; private set; } + + /// + /// Gets the IStorageInsightsOperations. + /// + public virtual IStorageInsightsOperations StorageInsights { get; private set; } + + /// + /// Gets the ISearchOperations. + /// + public virtual ISearchOperations Search { get; private set; } + + /// + /// Initializes a new instance of the OperationalInsightsManagementClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected OperationalInsightsManagementClient(params DelegatingHandler[] handlers) : base(handlers) + { + this.Initialize(); + } + + /// + /// Initializes a new instance of the OperationalInsightsManagementClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected OperationalInsightsManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + this.Initialize(); + } + + /// + /// Initializes a new instance of the OperationalInsightsManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected OperationalInsightsManagementClient(Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the OperationalInsightsManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected OperationalInsightsManagementClient(Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the OperationalInsightsManagementClient class. + /// + /// + /// Required. Gets Azure subscription credentials. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + public OperationalInsightsManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the OperationalInsightsManagementClient class. + /// + /// + /// Required. Gets Azure subscription credentials. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + public OperationalInsightsManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the OperationalInsightsManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Gets Azure subscription credentials. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + public OperationalInsightsManagementClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the OperationalInsightsManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Gets Azure subscription credentials. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + public OperationalInsightsManagementClient(Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes client properties. + /// + private void Initialize() + { + this.LinkedServices = new LinkedServicesOperations(this); + this.DataSources = new DataSourcesOperations(this); + this.Workspaces = new WorkspacesOperations(this); + this.StorageInsights = new StorageInsightsOperations(this); + this.Search = new SearchOperations(this); + this.BaseUri = new Uri("https://management.azure.com"); + this.AcceptLanguage = "en-US"; + this.LongRunningOperationRetryTimeout = 30; + this.GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings + { + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings + { + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperations.cs new file mode 100644 index 000000000000..8a53ab953b77 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperations.cs @@ -0,0 +1,1500 @@ +// 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.OperationalInsights +{ + 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; + + /// + /// SearchOperations operations. + /// + internal partial class SearchOperations : IServiceOperations, ISearchOperations + { + /// + /// Initializes a new instance of the SearchOperations class. + /// + /// + /// Reference to the service client. + /// + internal SearchOperations(OperationalInsightsManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the OperationalInsightsManagementClient + /// + public OperationalInsightsManagementClient Client { get; private set; } + + /// + /// Deletes the specified saved search in a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (savedSearchId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "savedSearchId"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("savedSearchId", savedSearchId); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteSavedSearch", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchId}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{savedSearchId}", Uri.EscapeDataString(savedSearchId)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + _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")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Creates or updates a saved search for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The parameters required to save a search. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task CreateOrUpdateSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, SearchCreateOrUpdateSavedSearchParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (savedSearchId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "savedSearchId"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("savedSearchId", savedSearchId); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateSavedSearch", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchId}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{savedSearchId}", Uri.EscapeDataString(savedSearchId)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _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; + 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) + { + 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)); + _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")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the specified saved search for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (savedSearchId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "savedSearchId"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("savedSearchId", savedSearchId); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetSavedSearch", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchId}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{savedSearchId}", Uri.EscapeDataString(savedSearchId)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the saved searches for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListSavedSearchesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListSavedSearches", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the results from a saved search for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetSavedSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (savedSearchId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "savedSearchId"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("savedSearchId", savedSearchId); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetSavedSearchResults", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchId}/results").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{savedSearchId}", Uri.EscapeDataString(savedSearchId)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the schema for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetSchemaWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetSchema", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/schema").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the search results for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The parameters required to execute a search query. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchGetSearchResultsParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetSearchResults", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + 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) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets updated search results for a given search query. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the search that will have results updated. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> UpdateSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string id, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (id == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "id"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("id", id); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "UpdateSearchResults", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search/{id}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{id}", Uri.EscapeDataString(id)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + 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/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperationsExtensions.cs new file mode 100644 index 000000000000..ddbe595c9d95 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperationsExtensions.cs @@ -0,0 +1,378 @@ +// 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.OperationalInsights +{ + 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 SearchOperations. + /// + public static partial class SearchOperationsExtensions + { + /// + /// Deletes the specified saved search in a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + public static void DeleteSavedSearch(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId) + { + Task.Factory.StartNew(s => ((ISearchOperations)s).DeleteSavedSearchAsync(resourceGroupName, workspaceName, savedSearchId), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified saved search in a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteSavedSearchAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteSavedSearchWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchId, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates or updates a saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The parameters required to save a search. + /// + public static void CreateOrUpdateSavedSearch(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, SearchCreateOrUpdateSavedSearchParameters parameters) + { + Task.Factory.StartNew(s => ((ISearchOperations)s).CreateOrUpdateSavedSearchAsync(resourceGroupName, workspaceName, savedSearchId, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The parameters required to save a search. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateSavedSearchAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, SearchCreateOrUpdateSavedSearchParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.CreateOrUpdateSavedSearchWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchId, parameters, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the specified saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + public static SearchGetSavedSearchResult GetSavedSearch(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId) + { + return Task.Factory.StartNew(s => ((ISearchOperations)s).GetSavedSearchAsync(resourceGroupName, workspaceName, savedSearchId), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the specified saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The cancellation token. + /// + public static async Task GetSavedSearchAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetSavedSearchWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the saved searches for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + public static SearchListSavedSearchResult ListSavedSearches(this ISearchOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((ISearchOperations)s).ListSavedSearchesAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the saved searches for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The cancellation token. + /// + public static async Task ListSavedSearchesAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListSavedSearchesWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the results from a saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + public static SearchGetSearchResultsResponse GetSavedSearchResults(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId) + { + return Task.Factory.StartNew(s => ((ISearchOperations)s).GetSavedSearchResultsAsync(resourceGroupName, workspaceName, savedSearchId), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the results from a saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the saved search. + /// + /// + /// The cancellation token. + /// + public static async Task GetSavedSearchResultsAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetSavedSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the schema for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + public static SearchGetSchemaResponse GetSchema(this ISearchOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((ISearchOperations)s).GetSchemaAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the schema for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The cancellation token. + /// + public static async Task GetSchemaAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetSchemaWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the search results for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The parameters required to execute a search query. + /// + public static SearchGetSearchResultsResponse GetSearchResults(this ISearchOperations operations, string resourceGroupName, string workspaceName, SearchGetSearchResultsParameters parameters) + { + return Task.Factory.StartNew(s => ((ISearchOperations)s).GetSearchResultsAsync(resourceGroupName, workspaceName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the search results for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The parameters required to execute a search query. + /// + /// + /// The cancellation token. + /// + public static async Task GetSearchResultsAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, SearchGetSearchResultsParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets updated search results for a given search query. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the search that will have results updated. + /// + public static IEnumerable UpdateSearchResults(this ISearchOperations operations, string resourceGroupName, string workspaceName, string id) + { + return Task.Factory.StartNew(s => ((ISearchOperations)s).UpdateSearchResultsAsync(resourceGroupName, workspaceName, id), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets updated search results for a given search query. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The id of the search that will have results updated. + /// + /// + /// The cancellation token. + /// + public static async Task> UpdateSearchResultsAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string id, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, id, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs new file mode 100644 index 000000000000..c0fa04b3ab14 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs @@ -0,0 +1,962 @@ +// 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.OperationalInsights +{ + 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; + + /// + /// StorageInsightsOperations operations. + /// + internal partial class StorageInsightsOperations : IServiceOperations, IStorageInsightsOperations + { + /// + /// Initializes a new instance of the StorageInsightsOperations class. + /// + /// + /// Reference to the service client. + /// + internal StorageInsightsOperations(OperationalInsightsManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the OperationalInsightsManagementClient + /// + public OperationalInsightsManagementClient Client { get; private set; } + + /// + /// Create or update a storage insight. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the parent workspace that will contain the storage insight + /// + /// + /// The parameters required to create or update a storage insight. + /// + /// + /// The parameters required to create or update a storage insight. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, StorageInsight parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{name}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{name}", Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _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; + 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) + { + 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 != 201 && (int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = 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 == 201) + { + _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); + } + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a storage insight instance. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the workspace that contains the storage insight. + /// + /// + /// The name of the storage insight + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (storageInsightName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "storageInsightName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("storageInsightName", storageInsightName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{storageInsightName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{storageInsightName}", Uri.EscapeDataString(storageInsightName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a storage insight instance. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the workspace that contains the storage insight. + /// + /// + /// The name of the storage insight. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (storageInsightName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "storageInsightName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("storageInsightName", storageInsightName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{storageInsightName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{storageInsightName}", Uri.EscapeDataString(storageInsightName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 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")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of storage insight instances in a workspace with the + /// link to the next page. + /// + /// + /// The resource group name of the storage insights. + /// + /// + /// The workspace that contains the storage insights. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListInWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListInWorkspace", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of storage insight instances in a workspace with the + /// link to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListInWorkspaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListInWorkspaceNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs new file mode 100644 index 000000000000..59afed38d965 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs @@ -0,0 +1,241 @@ +// 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.OperationalInsights +{ + 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 StorageInsightsOperations. + /// + public static partial class StorageInsightsOperationsExtensions + { + /// + /// Create or update a storage insight. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the parent workspace that will contain the storage insight + /// + /// + /// The parameters required to create or update a storage insight. + /// + /// + /// The parameters required to create or update a storage insight. + /// + public static StorageInsight CreateOrUpdate(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string name, StorageInsight parameters) + { + return Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create or update a storage insight. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the parent workspace that will contain the storage insight + /// + /// + /// The parameters required to create or update a storage insight. + /// + /// + /// The parameters required to create or update a storage insight. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string name, StorageInsight parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a storage insight instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the workspace that contains the storage insight. + /// + /// + /// The name of the storage insight + /// + public static StorageInsight Get(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName) + { + return Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).GetAsync(resourceGroupName, workspaceName, storageInsightName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a storage insight instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the workspace that contains the storage insight. + /// + /// + /// The name of the storage insight + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, storageInsightName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a storage insight instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the workspace that contains the storage insight. + /// + /// + /// The name of the storage insight. + /// + public static void Delete(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName) + { + Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).DeleteAsync(resourceGroupName, workspaceName, storageInsightName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes a storage insight instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the storage insight. + /// + /// + /// The name of the workspace that contains the storage insight. + /// + /// + /// The name of the storage insight. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, storageInsightName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the first page of storage insight instances in a workspace with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the storage insights. + /// + /// + /// The workspace that contains the storage insights. + /// + public static IPage ListInWorkspace(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).ListInWorkspaceAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of storage insight instances in a workspace with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the storage insights. + /// + /// + /// The workspace that contains the storage insights. + /// + /// + /// The cancellation token. + /// + public static async Task> ListInWorkspaceAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListInWorkspaceWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of storage insight instances in a workspace with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListInWorkspaceNext(this IStorageInsightsOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).ListInWorkspaceNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of storage insight instances in a workspace with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListInWorkspaceNextAsync(this IStorageInsightsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListInWorkspaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs new file mode 100644 index 000000000000..a13f990678a8 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs @@ -0,0 +1,2636 @@ +// 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.OperationalInsights +{ + 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; + + /// + /// WorkspacesOperations operations. + /// + internal partial class WorkspacesOperations : IServiceOperations, IWorkspacesOperations + { + /// + /// Initializes a new instance of the WorkspacesOperations class. + /// + /// + /// Reference to the service client. + /// + internal WorkspacesOperations(OperationalInsightsManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the OperationalInsightsManagementClient + /// + public OperationalInsightsManagementClient Client { get; private set; } + + /// + /// Disables an intelligence back for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The name of the intelligence pack to be disabled. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DisableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (intelligencePackName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "intelligencePackName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("intelligencePackName", intelligencePackName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DisableIntelligencePack", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks/{intelligencePackName}/Disable").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{intelligencePackName}", Uri.EscapeDataString(intelligencePackName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + 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")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Enables an intelligence back for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The name of the intelligence pack to be enabled. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task EnableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (intelligencePackName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "intelligencePackName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("intelligencePackName", intelligencePackName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "EnableIntelligencePack", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks/{intelligencePackName}/Enable").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{intelligencePackName}", Uri.EscapeDataString(intelligencePackName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + 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")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all the intelligence packs possible and whether they are enabled or + /// disabled for a given workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListIntelligencePacksWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListIntelligencePacks", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the shared keys for a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetSharedKeysWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetSharedKeys", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/sharedKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of usage metrics for a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListUsages", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/usages").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of management groups connected to a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListManagementGroups", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/managementGroups").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of workspace instances in a resource group with the + /// link to the next page. + /// + /// + /// The resource group name of the workspaces. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListInResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListInResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of workspace instances in a subscription with the link + /// to the next page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListInSubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListInSubscription", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.OperationalInsights/workspaces").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a workspace instance. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 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")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a workspace instance. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(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; + } + + /// + /// Create or update a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, Workspace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync( + resourceGroupName, name, parameters, customHeaders, cancellationToken); + return await this.Client.GetPutOrPatchOperationResultAsync(_response, + customHeaders, + cancellationToken); + } + + /// + /// Create or update a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, Workspace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-11-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{name}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _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; + 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) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of accounts with administrator privileges that are not + /// associated with an existing workspace. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListLinkTargetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListLinkTargets", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.OperationalInsights/linkTargets").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of management groups connected to a workspace. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListManagementGroupsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListManagementGroupsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of workspace instances in a resource group with the + /// link to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListInResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListInResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the first page of workspace instances in a subscription with the link + /// to the next page. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListInSubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListInSubscriptionNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs new file mode 100644 index 000000000000..b9717f78c718 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs @@ -0,0 +1,641 @@ +// 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.OperationalInsights +{ + 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 WorkspacesOperations. + /// + public static partial class WorkspacesOperationsExtensions + { + /// + /// Disables an intelligence back for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The name of the intelligence pack to be disabled. + /// + public static void DisableIntelligencePack(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName) + { + Task.Factory.StartNew(s => ((IWorkspacesOperations)s).DisableIntelligencePackAsync(resourceGroupName, workspaceName, intelligencePackName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Disables an intelligence back for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The name of the intelligence pack to be disabled. + /// + /// + /// The cancellation token. + /// + public static async Task DisableIntelligencePackAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DisableIntelligencePackWithHttpMessagesAsync(resourceGroupName, workspaceName, intelligencePackName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Enables an intelligence back for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The name of the intelligence pack to be enabled. + /// + public static void EnableIntelligencePack(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName) + { + Task.Factory.StartNew(s => ((IWorkspacesOperations)s).EnableIntelligencePackAsync(resourceGroupName, workspaceName, intelligencePackName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Enables an intelligence back for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The name of the intelligence pack to be enabled. + /// + /// + /// The cancellation token. + /// + public static async Task EnableIntelligencePackAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.EnableIntelligencePackWithHttpMessagesAsync(resourceGroupName, workspaceName, intelligencePackName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Lists all the intelligence packs possible and whether they are enabled or + /// disabled for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + public static IList ListIntelligencePacks(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListIntelligencePacksAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Lists all the intelligence packs possible and whether they are enabled or + /// disabled for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The cancellation token. + /// + public static async Task> ListIntelligencePacksAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListIntelligencePacksWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the shared keys for a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace name. + /// + public static SharedKeys GetSharedKeys(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).GetSharedKeysAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the shared keys for a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace name. + /// + /// + /// The cancellation token. + /// + public static async Task GetSharedKeysAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetSharedKeysWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of usage metrics for a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + public static IEnumerable ListUsages(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListUsagesAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of usage metrics for a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The cancellation token. + /// + public static async Task> ListUsagesAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListUsagesWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of management groups connected to a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + public static IPage ListManagementGroups(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListManagementGroupsAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of management groups connected to a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The cancellation token. + /// + public static async Task> ListManagementGroupsAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListManagementGroupsWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of workspace instances in a resource group with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspaces. + /// + public static IPage ListInResourceGroup(this IWorkspacesOperations operations, string resourceGroupName) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListInResourceGroupAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of workspace instances in a resource group with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspaces. + /// + /// + /// The cancellation token. + /// + public static async Task> ListInResourceGroupAsync(this IWorkspacesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListInResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of workspace instances in a subscription with the link + /// to the next page. + /// + /// + /// The operations group for this extension method. + /// + public static IPage ListInSubscription(this IWorkspacesOperations operations) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListInSubscriptionAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of workspace instances in a subscription with the link + /// to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListInSubscriptionAsync(this IWorkspacesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListInSubscriptionWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a workspace instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + public static void Delete(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + { + Task.Factory.StartNew(s => ((IWorkspacesOperations)s).DeleteAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes a workspace instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a workspace instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + public static Workspace Get(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).GetAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a workspace instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// A unique workspace instance name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + public static Workspace CreateOrUpdate(this IWorkspacesOperations operations, string resourceGroupName, string name, Workspace parameters) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).CreateOrUpdateAsync(resourceGroupName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create or update a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IWorkspacesOperations operations, string resourceGroupName, string name, Workspace parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + public static Workspace BeginCreateOrUpdate(this IWorkspacesOperations operations, string resourceGroupName, string name, Workspace parameters) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create or update a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IWorkspacesOperations operations, string resourceGroupName, string name, Workspace parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of accounts with administrator privileges that are not + /// associated with an existing workspace. + /// + /// + /// The operations group for this extension method. + /// + public static IList ListLinkTargets(this IWorkspacesOperations operations) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListLinkTargetsAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of accounts with administrator privileges that are not + /// associated with an existing workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListLinkTargetsAsync(this IWorkspacesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListLinkTargetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of management groups connected to a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListManagementGroupsNext(this IWorkspacesOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListManagementGroupsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of management groups connected to a workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListManagementGroupsNextAsync(this IWorkspacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListManagementGroupsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of workspace instances in a resource group with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListInResourceGroupNext(this IWorkspacesOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListInResourceGroupNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of workspace instances in a resource group with the + /// link to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListInResourceGroupNextAsync(this IWorkspacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListInResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the first page of workspace instances in a subscription with the link + /// to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListInSubscriptionNext(this IWorkspacesOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListInSubscriptionNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the first page of workspace instances in a subscription with the link + /// to the next page. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListInSubscriptionNextAsync(this IWorkspacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListInSubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Microsoft.Azure.Management.OperationalInsights.xproj b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Microsoft.Azure.Management.OperationalInsights.xproj new file mode 100644 index 000000000000..292e4005fcbb --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Microsoft.Azure.Management.OperationalInsights.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 9f94c9b6-2ffa-42c5-b1f9-57aec6ee17b1 + Microsoft.Azure.Management.OperationalInsights + .\obj + .\bin\ + v4.5.2 + + + + 2.0 + + + diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Properties/AssemblyInfo.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..00f2240933a3 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Azure .NET SDK")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyVersion("2.0.0.0")] +[assembly: AssemblyFileVersion("2.0.0.0")] +[assembly: AssemblyTitle("Microsoft Azure OperationalInsights Management Library")] +[assembly: AssemblyDescription("Provides Microsoft Azure OperationalInsights management operations.")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("en")] diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/generate.cmd b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/generate.cmd new file mode 100644 index 000000000000..9c7f7c716244 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/generate.cmd @@ -0,0 +1,18 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +@echo off +set autoRestVersion=0.17.0-Nightly20160621 +if "%1" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-operationalinsights/compositeOperationalInsights.json" +) else ( + set specFile="%1" +) +set repoRoot=%~dp0..\..\..\.. +set generateFolder=%~dp0Generated + +if exist %generateFolder% rd /S /Q %generateFolder% +call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.OperationalInsights %autoRestVersion% %generateFolder% "-FT 1" + diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json new file mode 100644 index 000000000000..ae1736ec24aa --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json @@ -0,0 +1,44 @@ +{ + "version": "1.0.0-preview", + "description": "Provides Microsoft Azure Operational Insights management operations", + "authors": [ "Microsoft" ], + + "packOptions": { + "summary": "Provides Microsoft Azure Operational Insights management operations", + "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", + "tags": [ "Microsoft Azure OperationalInsights", "OperationalInsights", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "requireLicenseAcceptance": true + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk" + }, + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + }, + + "frameworks": { + "net45": { + }, + "netstandard1.5": { + "imports": ["dnxcore50"], + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Tasks": "4.0.11" + } + }, + "netstandard1.1": { + "imports": ["dnxcore50"], + "dependencies": { + "System.Runtime.Serialization.Primitives": "4.1.1" + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs new file mode 100644 index 000000000000..c75570f4ee3a --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs @@ -0,0 +1,227 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.OperationalInsights; +using Microsoft.Azure.Management.OperationalInsights.Models; +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Resources.Models; +using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Reflection; +using Xunit; + +namespace OperationalInsights.Tests.Helpers +{ + public static class TestHelper + { + public const string ResourceGroupNameParameter = "resourceGroupName"; + public const string WorkspaceNameParameter = "workspaceName"; + public const string ParametersParameter = "parameters"; + public const string WorkspaceResourceType = "Microsoft.OperationalInsights/workspaces"; + public const string StorageInsightResourceType = "Microsoft.OperationalInsights/workspaces/storageinsightconfigs"; + public const string DataSourceResourceType = "Microsoft.OperationalInsights/workspaces/datasources"; + public const string LinkedServiceResourceType = "Microsoft.OperationalInsights/workspaces/linkedServices"; + + /// + /// Generate a Resource Management client from the test base to use for managing resource groups. + /// + /// the test class + /// A resource management client, created from the current context (environment variables) + public static ResourceManagementClient GetResourceManagementClient(this TestBase testBase, MockContext context) + { + return context.GetServiceClient(); + } + + /// + /// Generate an Operational Insights client from the test base to use for managing Operational Insights resources. + /// + /// the test class + /// Operational Insights client + public static OperationalInsightsManagementClient GetOperationalInsightsManagementClient(this TestBase testBase, MockContext context) + { + return context.GetServiceClient(); + } + + /// + /// Creates a resource group for use in Operational Insights tests + /// + /// Name to give the resource group + /// Resource management client + /// Location for the resource group + /// A resource group + public static ResourceGroup CreateResourceGroup(string resourceGroupName, ResourceManagementClient client, string location = "Australia Southeast") + { + var resourceGroup = client.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup(location)); + + Assert.NotNull(resourceGroup); + Assert.Equal(resourceGroupName, resourceGroup.Name); + Assert.Equal(location.Replace(" ", string.Empty), resourceGroup.Location, StringComparer.OrdinalIgnoreCase); + + return resourceGroup; + } + + /// + /// Delete a resourceGroup by name + /// + /// Name of the resource group + /// Resource management client + public static void DeleteResourceGroup(string resourceGroupName, ResourceManagementClient client) + { + client.ResourceGroups.Delete(resourceGroupName); + } + + /// + /// Validates a workspace matches the expected properties. Throws assertion exceptions if validation fails. + /// + /// Expected workspace + /// Actual workspace + internal static void ValidateWorkspace(Workspace expected, Workspace actual) + { + Assert.NotNull(actual); + Assert.NotNull(actual.Id); + Assert.Equal(expected.Name, actual.Name); + Assert.Equal(expected.Location, actual.Location); + Assert.Equal(WorkspaceResourceType, actual.Type); + if (expected.Tags != null) + { + Assert.Equal(expected.Tags.Count, actual.Tags.Count); + foreach (var tag in expected.Tags) + { + Assert.True(actual.Tags.Contains(tag)); + } + } + else + { + Assert.Null(actual.Tags); + } + + var workspaceProperties = actual; + Assert.Equal( + expected != null && expected.Sku != null ? expected.Sku.Name : SkuNameEnum.Free, + workspaceProperties.Sku.Name, + StringComparer.OrdinalIgnoreCase); + Assert.NotNull(workspaceProperties.PortalUrl); + Assert.Equal("Succeeded", workspaceProperties.ProvisioningState, StringComparer.OrdinalIgnoreCase); + Assert.Equal("Azure", workspaceProperties.Source, StringComparer.OrdinalIgnoreCase); + Assert.NotNull(workspaceProperties.CustomerId); + } + + /// + /// Validates a storage insight matches the expected properties. Throws assertion exceptions if validation fails. + /// + /// Expected data source + /// Actual data source + internal static void ValidateDatasource(DataSource expected, DataSource actual) + { + Assert.NotNull(actual); + Assert.NotNull(actual.Id); + Assert.Equal(expected.Name, actual.Name); + Assert.Equal(expected.Kind, actual.Kind); + Assert.Equal(DataSourceResourceType, actual.Type); + + Assert.NotNull(actual.Properties); + } + + /// + /// Validates a linked service matches the expected properties. Throws assertion exceptions if validation fails. + /// + /// Expected linked service + /// Actual linked service + internal static void ValidateLinkedService(LinkedService expected, LinkedService actual) + { + Assert.NotNull(actual); + Assert.NotNull(actual.Id); + Assert.Equal(LinkedServiceResourceType.ToLower(), actual.Type.ToLower()); + + Assert.Equal(expected.ResourceId.ToLower(), actual.ResourceId.ToLower()); + } + + /// + /// Validates a storage insight matches the expected properties. Throws assertion exceptions if validation fails. + /// + /// Expected storage insight + /// Actual storage insight + internal static void ValidateStorageInsight(StorageInsight expected, StorageInsight actual) + { + Assert.NotNull(actual); + Assert.NotNull(actual.Id); + Assert.Equal(expected.Name, actual.Name); + Assert.Equal(StorageInsightResourceType, actual.Type); + if (expected.Tags != null) + { + Assert.Equal(expected.Tags.Count, actual.Tags.Count); + foreach (var tag in expected.Tags) + { + Assert.True(actual.Tags.Contains(tag)); + } + } + else + { + Assert.Null(actual.Tags); + } + + Assert.NotNull(actual); + Assert.Equal("OK", actual.Status.State); + Assert.Equal(expected.StorageAccount.Id, actual.StorageAccount.Id); + Assert.Null(actual.StorageAccount.Key); + + if (expected.Containers != null) + { + Assert.Equal(expected.Containers.Count, actual.Containers.Count); + foreach (var container in expected.Containers) + { + Assert.Contains(container, actual.Containers); + } + } + else + { + Assert.Empty(actual.Containers); + } + + if (expected.Tables != null) + { + Assert.Equal(expected.Tables.Count, actual.Tables.Count); + + foreach (var table in expected.Tables) + { + Assert.Contains(table, actual.Tables); + } + } + else + { + Assert.Empty(actual.Tables); + } + } + + internal static void VerifyCloudException(HttpStatusCode expectedStatusCode, Action testAction) + { + Assert.Throws(() => + { + try + { + testAction(); + } + catch (CloudException ex) + { + Assert.Equal(expectedStatusCode, ex.Response.StatusCode); + throw; + } + }); + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.xproj b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.xproj new file mode 100644 index 000000000000..8f8ad6b3b1ad --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.xproj @@ -0,0 +1,22 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 36862d74-cf80-4758-a212-eaad501f3ccc + OperationalInsights.Test + .\obj + .\bin\ + v4.5.2 + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Properties/AssemblyInfo.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..77788e0a3aa7 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("OperationalInsights.Test")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("36862d74-cf80-4758-a212-eaad501f3ccc")] diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs new file mode 100644 index 000000000000..e0f3b747662d --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs @@ -0,0 +1,183 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.OperationalInsights; +using Microsoft.Azure.Management.OperationalInsights.Models; +using Microsoft.Rest.Azure.OData; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Newtonsoft.Json.Linq; +using OperationalInsights.Tests.Helpers; +using System; +using System.Linq; +using System.Net; +using Xunit; + +namespace OperationalInsights.Test.ScenarioTests +{ + public class DataSourceOperationsTests : TestBase + { + [Fact] + public void CanCreateUpdateDeleteDataSource() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + // Create a workspace that will house the data source + string workspaceName = TestUtilities.GenerateName("AzTest"); + + var workspace = new Workspace() + { + Name = workspaceName, + Location = resourceGroup.Location, + Sku = new Sku(SkuNameEnum.Standard) + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + + TestHelper.ValidateWorkspace(workspace, workspaceResponse); + + // Create a dataSource + string dataSourceName = TestUtilities.GenerateName("AzTestDS"); + var createParameters = new DataSource + { + Name = dataSourceName, + Kind = "AzureAuditLog", + Properties = JToken.Parse("{\"LinkedResourceId\":\"/subscriptions/0b88dfdb-55b3-4fb0-b474-5b6dcbe6b2ef/providers/microsoft.insights/eventtypes/management\"}") + }; + + var createResponse = client.DataSources.CreateOrUpdate(resourceGroupName, workspaceName, dataSourceName, createParameters); + TestHelper.ValidateDatasource(createParameters, createResponse); + + // Get the data source + var getResponse = client.DataSources.Get(resourceGroupName, workspaceName, dataSourceName); + TestHelper.ValidateDatasource(createParameters, getResponse); + + // Create a second data source for list testing + var dataSourceNameTwo = TestUtilities.GenerateName("AzTestDS"); + createParameters.Name = dataSourceNameTwo; + createParameters.Properties = JToken.Parse("{'LinkedResourceId':'/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/microsoft.insights/eventtypes/management'}"); + createResponse = client.DataSources.CreateOrUpdate(resourceGroupName, workspaceName, dataSourceNameTwo, createParameters); + TestHelper.ValidateDatasource(createParameters, createResponse); + + // List the data sources in the workspace + var listResponse = client.DataSources.ListInWorkspace(new ODataQuery(ds=> ds.Kind == "AzureAuditLog" ), resourceGroupName, workspaceName); + Assert.Equal(2, listResponse.Count()); + Assert.Null(listResponse.NextPageLink); + Assert.Single(listResponse.Where(w => w.Name.Equals(dataSourceName, StringComparison.OrdinalIgnoreCase))); + Assert.Single(listResponse.Where(w => w.Name.Equals(dataSourceNameTwo, StringComparison.OrdinalIgnoreCase))); + + // Perform an update on one of the data sources + createResponse.Properties = JToken.Parse("{'LinkedResourceId':'/subscriptions/1b51d7a0-d97f-456f-914e-18cdcbedf1ce/providers/microsoft.insights/eventtypes/management'}"); + createResponse.Name = dataSourceNameTwo; + var updateResponse = client.DataSources.CreateOrUpdate(resourceGroupName, workspaceName, createResponse.Name, createResponse); + TestHelper.ValidateDatasource(createResponse, updateResponse); + + // Delete a data source + client.DataSources.Delete(resourceGroupName, workspaceName, dataSourceName); + + // Verify the data source is gone + TestHelper.VerifyCloudException(HttpStatusCode.NotFound, () => client.DataSources.Get(resourceGroupName, workspaceName, dataSourceName)); + } + } + + [Fact] + public void CanPageThroughDataSourceList() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + // Create a workspace that will house the data source + string workspaceName = TestUtilities.GenerateName("AzTest"); + + var workspace = new Workspace() + { + Name = workspaceName, + Location = resourceGroup.Location, + Sku = new Sku(SkuNameEnum.Standard) + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + + TestHelper.ValidateWorkspace(workspace, workspaceResponse); + + // Create 200+ dataSource + for (int i = 0; i < 300; i++) + { + string windowsEventDataSourceName = TestUtilities.GenerateName("AzTestDSWE"); + var createParameters = new DataSource + { + Name = windowsEventDataSourceName, + Kind = "WindowsEvent", + Properties = JToken.Parse("{\"eventLogName\": \"" + ("windowsEvent" + i) + "\", \"eventTypes\": [{\"eventType\": \"Error\"}]}") + }; + + var createResponse = client.DataSources.CreateOrUpdate(resourceGroupName, workspaceName, windowsEventDataSourceName, createParameters); + TestHelper.ValidateDatasource(createParameters, createResponse); + } + + // List the data sources in the workspace + var listResponse = client.DataSources.ListInWorkspace(new ODataQuery(ds => ds.Kind == "WindowsEvent"), resourceGroupName, workspaceName); + Assert.Equal(200, listResponse.Count()); + Assert.NotNull(listResponse.NextPageLink); + + // Get the next page + var listResponseNextPage = client.DataSources.ListInWorkspaceNext(listResponse.NextPageLink); + Assert.Null(listResponseNextPage.NextPageLink); + Assert.Equal(100, listResponseNextPage.Count()); + } + } + + [Fact] + public void DataSourceCreateFailsWithoutWorkspace() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + // Create a data source on a non-existent workspace + string dataSourceName = TestUtilities.GenerateName("AzTestDS"); + string workspaceName = TestUtilities.GenerateName("AzTest"); + + var createParameters = new DataSource + { + Name = dataSourceName, + Kind = "AzureAuditLog", + Properties = JToken.Parse("{'LinkedResourceId':'/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/microsoft.insights/eventtypes/management'}") + }; + + TestHelper.VerifyCloudException(HttpStatusCode.NotFound, () => client.DataSources.CreateOrUpdate(resourceGroupName, workspaceName, dataSourceName, createParameters)); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs new file mode 100644 index 000000000000..967c5f54eb0d --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs @@ -0,0 +1,105 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.OperationalInsights; +using Microsoft.Azure.Management.OperationalInsights.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using OperationalInsights.Tests.Helpers; +using System; +using System.Linq; +using System.Net; +using Xunit; + +namespace OperationalInsights.Test.ScenarioTests +{ + public class LinkedServiceOperationsTests : TestBase + { + private const string resourceGroupName = "OIHyak7814"; + private const string automationAccountName = "sdkTestAccount"; + private const string automationAccountName2 = "testAcc"; + private const string workspaceName = "AzTest6856"; + + [Fact] + public void CanCreateUpdateDeleteLinkedService() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + var subId = client.SubscriptionId; + + var linkedServiceName = "Automation"; + var accountResourceIdFromat = "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Automation/automationAccounts/{2}"; + var accountResourceId = string.Format(accountResourceIdFromat, subId, resourceGroupName, automationAccountName); + + // Create a linked service + var createParameters = new LinkedService + { + Name = linkedServiceName, + ResourceId = accountResourceId + }; + var createResponse = client.LinkedServices.CreateOrUpdate(resourceGroupName, workspaceName, linkedServiceName, createParameters); + TestHelper.ValidateLinkedService(createParameters, createResponse); + + // Get the linked service + var getResponse = client.LinkedServices.Get(resourceGroupName, workspaceName, linkedServiceName); + TestHelper.ValidateLinkedService(createParameters, getResponse); + + // List the linked services in the workspace + var listResponse = client.LinkedServices.List(resourceGroupName, workspaceName); + Assert.Equal(1, listResponse.Count()); + Assert.Null(listResponse.NextPageLink); + Assert.Single(listResponse.Where(w => w.ResourceId.Equals(accountResourceId, StringComparison.OrdinalIgnoreCase))); + + var accountResourceId2 = string.Format(accountResourceIdFromat, subId, resourceGroupName, automationAccountName2); + var updateParameters = new LinkedService + { + Name = linkedServiceName, + ResourceId = accountResourceId2 + }; + + // Perform an update on one of the linked service + var updateResponse = client.LinkedServices.CreateOrUpdate(resourceGroupName, workspaceName, linkedServiceName, updateParameters); + TestHelper.ValidateLinkedService(updateParameters, updateResponse); + + // Delete a linked service + client.LinkedServices.Delete(resourceGroupName, workspaceName, linkedServiceName); + } + } + + [Fact] + public void LinkedServiceCreateFailsWithoutWorkspace() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + var subId = client.SubscriptionId; + + string linkedServiceName = "Automation"; + string workspaceName = TestUtilities.GenerateName("AzSDKTest"); + + var accountResourceIdFromat = "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Automation/automationAccounts/{2}"; + var accountResourceId = string.Format(accountResourceIdFromat, subId, resourceGroupName, "testAccount"); + + var createParameters = new LinkedService + { + Name = linkedServiceName, + ResourceId = accountResourceId + }; + + // Create a linked service on a non-existent workspace + TestHelper.VerifyCloudException(HttpStatusCode.NotFound, () => client.LinkedServices.CreateOrUpdate(resourceGroupName, workspaceName, linkedServiceName, createParameters)); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs new file mode 100644 index 000000000000..da7224d932c4 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs @@ -0,0 +1,217 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.OperationalInsights; +using Microsoft.Azure.Management.OperationalInsights.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using OperationalInsights.Tests.Helpers; +using System; +using System.Collections.Generic; +using Xunit; + +namespace OperationalInsights.Test.ScenarioTests +{ + public class SearchOperationsTests : TestBase + { + + [Fact] + public void CanGetSearchResultsAndUpdate() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + // Rasha's workspace is the only one in int with cold data, which is necessary to test the update search method + string resourceGroupName = "OI-Default-East-US"; + string workspaceName = "rasha"; + int topCount = 25; + + SearchGetSearchResultsParameters parameters = new SearchGetSearchResultsParameters(); + parameters.Query = "*"; + parameters.Top = topCount; + var searchResult = client.Search.GetSearchResults(resourceGroupName, workspaceName, parameters); + Assert.NotNull(searchResult); + Assert.NotNull(searchResult.__metadata); + Assert.NotNull(searchResult.Value); + Assert.Equal(searchResult.Value.Count, topCount); + + var updatedSearchResult = client.Search.UpdateSearchResults( + resourceGroupName, + workspaceName, + searchResult.__metadata.RequestId); + Assert.NotNull(updatedSearchResult); + Assert.NotNull(searchResult.__metadata); + Assert.NotNull(searchResult.Value); + } + } + + [Fact] + public void CanGetSchema() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = "mms-eus"; + string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; + + var schemaResult = client.Search.GetSchema(resourceGroupName, workspaceName); + + Assert.NotNull(schemaResult); + Assert.NotNull(schemaResult.__metadata); + Assert.Equal(schemaResult.__metadata.ResultType, "schema"); + Assert.NotNull(schemaResult.Value); + Assert.NotEqual(schemaResult.Value.Count, 0); + } + } + + [Fact] + public void CanGetSavedSearchesAndResults() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = "mms-eus"; + string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; + + var savedSearchesResult = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + + Assert.NotNull(savedSearchesResult); + Assert.NotNull(savedSearchesResult.Value); + Assert.NotEqual(savedSearchesResult.Value.Count, 0); + + String[] idStrings = savedSearchesResult.Value[0].Id.Split('/'); + string id = idStrings[idStrings.Length - 1]; + + var savedSearchResult = client.Search.GetSavedSearch( + resourceGroupName, + workspaceName, + id); + Assert.NotNull(savedSearchResult); + Assert.NotNull(savedSearchResult.Etag); + Assert.NotEqual(savedSearchResult.Etag, ""); + Assert.NotNull(savedSearchResult.Id); + Assert.NotEqual(savedSearchResult.Id, ""); + Assert.NotNull(savedSearchResult.Query); + Assert.NotEqual(savedSearchResult.Query, ""); + + var savedSearchResults = client.Search.GetSavedSearchResults(resourceGroupName, workspaceName, id); + Assert.NotNull(savedSearchResults); + Assert.NotNull(savedSearchResults.__metadata); + Assert.NotNull(savedSearchResults.Value); + Assert.NotEqual(savedSearchResults.Value.Count, 0); + } + } + + [Fact] + public void CanCreateOrUpdateAndDeleteSavedSearches() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = "mms-eus"; + string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; + string newSavedSearchId = "test-new-saved-search-id-2015"; + + SearchCreateOrUpdateSavedSearchParameters parameters = new SearchCreateOrUpdateSavedSearchParameters(); + parameters.Version = 1; + parameters.Query = "* | measure Count() by Computer"; + parameters.DisplayName = "Create or Update Saved Search Test"; + parameters.Category = " Saved Search Test Category"; + parameters.Tags = new List() { new Tag() { Name = "Group", Value = "Computer" } }; + + var result = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + + client.Search.CreateOrUpdateSavedSearch( + resourceGroupName, + workspaceName, + newSavedSearchId, + parameters); + + // Verify that the saved search was saved + var savedSearchesResult = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + Assert.NotNull(savedSearchesResult); + Assert.NotNull(savedSearchesResult.Value); + Assert.NotEqual(savedSearchesResult.Value.Count, 0); + Assert.NotNull(savedSearchesResult.Value[0].Id); + Assert.NotNull(savedSearchesResult.Value[0].Query); + bool foundSavedSearch = false; + for (int i = 0; i < savedSearchesResult.Value.Count; i++) + { + if (savedSearchesResult.Value[i].Category.Equals(parameters.Category) + && savedSearchesResult.Value[i].Version == parameters.Version + && savedSearchesResult.Value[i].Query.Equals(parameters.Query) + && savedSearchesResult.Value[i].DisplayName.Equals(parameters.DisplayName) + && savedSearchesResult.Value[i].Tags[0].Name.Equals(parameters.Tags[0].Name) + && savedSearchesResult.Value[i].Tags[0].Value.Equals(parameters.Tags[0].Value)) + { + foundSavedSearch = true; + parameters.Etag = savedSearchesResult.Value[i].Etag; + } + } + Assert.True(foundSavedSearch); + + // Test updating a saved search + parameters.Query = "*"; + parameters.Tags = new List() { new Tag() { Name = "Source", Value = "Test2" } }; + client.Search.CreateOrUpdateSavedSearch( + resourceGroupName, + workspaceName, + newSavedSearchId, + parameters); + + // Verify that the saved search was saved + savedSearchesResult = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + Assert.NotNull(savedSearchesResult); + Assert.NotNull(savedSearchesResult.Value); + Assert.NotEqual(savedSearchesResult.Value.Count, 0); + Assert.NotNull(savedSearchesResult.Value[0].Id); + Assert.Equal(savedSearchesResult.Value[0].Query, "*"); + foundSavedSearch = false; + for (int i = 0; i < savedSearchesResult.Value.Count; i++) + { + if (savedSearchesResult.Value[i].Category.Equals(parameters.Category) + && savedSearchesResult.Value[i].Version == parameters.Version + && savedSearchesResult.Value[i].Query.Equals(parameters.Query) + && savedSearchesResult.Value[i].DisplayName.Equals(parameters.DisplayName) + && savedSearchesResult.Value[i].Tags[0].Name.Equals(parameters.Tags[0].Name) + && savedSearchesResult.Value[i].Tags[0].Value.Equals(parameters.Tags[0].Value)) + { + foundSavedSearch = true; + } + } + Assert.True(foundSavedSearch); + + // Test the function to delete a saved search + client.Search.DeleteSavedSearch(resourceGroupName, workspaceName, newSavedSearchId); + savedSearchesResult = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + + foundSavedSearch = false; + for (int i = 0; i < savedSearchesResult.Value.Count; i++) + { + if (savedSearchesResult.Value[i].Category.Equals(parameters.Category) + && savedSearchesResult.Value[i].Version == parameters.Version + && savedSearchesResult.Value[i].Query.Equals(parameters.Query) + && savedSearchesResult.Value[i].DisplayName.Equals(parameters.DisplayName)) + { + foundSavedSearch = true; + } + } + Assert.False(foundSavedSearch); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs new file mode 100644 index 000000000000..df9e8ef4c6a1 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs @@ -0,0 +1,160 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.OperationalInsights; +using Microsoft.Azure.Management.OperationalInsights.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using OperationalInsights.Tests.Helpers; +using System; +using System.Linq; +using System.Net; +using Xunit; + +namespace OperationalInsights.Test.ScenarioTests +{ + public class StorageInsightOperationsTests : TestBase + { + private const string StorageAccountIdFormat = "/subscriptions/{0}/resourcegroups/{1}/providers/microsoft.storage/storageaccounts/{2}"; + + [Fact] + public void CanCreateUpdateDeleteStorageInsight() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient, "East US"); + + // Create a workspace that will house the storage insights + string workspaceName = TestUtilities.GenerateName("AzTest"); + + var workspace = new Workspace() + { + Name = workspaceName, + Location = resourceGroup.Location, + Sku = new Sku(SkuNameEnum.Standard) + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + + // Create a storage insight + string storageInsightName = TestUtilities.GenerateName("AzTestSI"); + string storageAccountName = TestUtilities.GenerateName("AzTestFakeSA"); + + var storageInsight = new StorageInsight + { + Name = storageInsightName, + Location = resourceGroup.Location, + Tables = new[] { "WADWindowsEventLogsTable", "LinuxSyslogVer2v0" }, + Containers = new[] { "wad-iis-logfiles" }, + StorageAccount = + new StorageAccount + { + Id = string.Format(StorageAccountIdFormat, client.SubscriptionId, resourceGroupName, storageAccountName), + Key = "1234" + } + }; + + var createResponse = client.StorageInsights.CreateOrUpdate(resourceGroupName, workspaceName, storageInsightName, storageInsight); + TestHelper.ValidateStorageInsight(storageInsight, createResponse); + + // Get the storage insight + var getResponse = client.StorageInsights.Get(resourceGroupName, workspaceName, storageInsightName); + TestHelper.ValidateStorageInsight(storageInsight, getResponse); + + // Create a second storage insight for list testing + var storageInsightNameTwo = TestUtilities.GenerateName("AzTestSI"); + var storageInsightTwo = new StorageInsight + { + Name = storageInsightNameTwo, + Location = resourceGroup.Location, + Tables = new[] { "WADWindowsEventLogsTable", "LinuxSyslogVer2v0" }, + Containers = null, + StorageAccount = + new StorageAccount + { + Id = string.Format(StorageAccountIdFormat, client.SubscriptionId, resourceGroupName, storageAccountName), + Key = "1234" + } + }; + + createResponse = client.StorageInsights.CreateOrUpdate(resourceGroupName, workspaceName, storageInsightNameTwo, storageInsightTwo); + TestHelper.ValidateStorageInsight(storageInsightTwo, createResponse); + + // List the storage insights in the workspace + var listResponse = client.StorageInsights.ListInWorkspace(resourceGroupName, workspaceName); + Assert.Equal(2, listResponse.Count()); + Assert.Null(listResponse.NextPageLink); + Assert.Single(listResponse.Where(w => w.Name.Equals(storageInsightName, StringComparison.OrdinalIgnoreCase))); + Assert.Single(listResponse.Where(w => w.Name.Equals(storageInsightNameTwo, StringComparison.OrdinalIgnoreCase))); + + // Perform an update on one of the storage insights + createResponse.StorageAccount.Key = "9876"; + createResponse.Tables = new[] { "WADWindowsEventLogsTable" }; + createResponse.Containers = new[] { "wad-iis-logfiles" }; + + //var updateResponse = client.StorageInsights.CreateOrUpdate(resourceGroupName, workspaceName, storageInsightNameTwo, storageInsightTwo); + var updateResponse = client.StorageInsights.CreateOrUpdate(resourceGroupName, workspaceName, storageInsightNameTwo, createResponse); + + storageInsightTwo.StorageAccount.Key = "9876"; + storageInsightTwo.Tables = new[] { "WADWindowsEventLogsTable" }; + storageInsightTwo.Containers = new[] { "wad-iis-logfiles" }; + TestHelper.ValidateStorageInsight(storageInsightTwo, updateResponse); + + // Delete a storage insight + client.StorageInsights.Delete(resourceGroupName, workspaceName, storageInsightName); + + // Verify the storageinsight is gone + TestHelper.VerifyCloudException(HttpStatusCode.NotFound, () => client.StorageInsights.Get(resourceGroupName, workspaceName, storageInsightName)); + } + } + + [Fact] + public void StorageInsightCreateFailsWithoutWorkspace() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + // Create a storage insight on a non-existent workspace + string storageInsightName = TestUtilities.GenerateName("AzTestSI"); + string storageAccountName = TestUtilities.GenerateName("AzTestFakeSA"); + string workspaceName = TestUtilities.GenerateName("AzTest"); + var storageInsight = new StorageInsight + { + Name = storageInsightName, + Location = resourceGroup.Location, + StorageAccount = + new StorageAccount + { + Id = string.Format(StorageAccountIdFormat, client.SubscriptionId, resourceGroupName, storageAccountName), + Key = "1234" + } + }; + + TestHelper.VerifyCloudException(HttpStatusCode.NotFound, + () => client.StorageInsights.CreateOrUpdate(resourceGroupName, workspaceName, storageInsightName, storageInsight)); + } + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs new file mode 100644 index 000000000000..122d9ebbc72c --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs @@ -0,0 +1,206 @@ +using Microsoft.Azure.Management.OperationalInsights; +using Microsoft.Azure.Management.Resources; +using System; +using System.Collections.Generic; +using System.Linq; +using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Azure.Management.OperationalInsights.Models; +using OperationalInsights.Tests.Helpers; +using System.Net; + +namespace OperationalInsights.Test.ScenarioTests +{ + public class WorkspaceOperationsTests : TestBase + { + [Fact] + public void CanCreateListDeleteWorkspace() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + string workspaceName = TestUtilities.GenerateName("AzTest"); + var workspace = new Workspace() + { + Name = workspaceName, + Location = resourceGroup.Location, + Tags = new Dictionary { { "tag1", "val1" } }, + Sku = new Sku(SkuNameEnum.Free) + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + + TestHelper.ValidateWorkspace(workspace, workspaceResponse); + } + } + + [Fact] + public void CanPerformWorkspaceActions() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + // Query link targets for an identity + var linkTargetsResponse = client.Workspaces.ListLinkTargets(); + Assert.Equal(0, linkTargetsResponse.Count); + + // Attempt to link a workspace to an invalid account + string workspaceName = TestUtilities.GenerateName("AzTest"); + + var workspace = new Workspace() + { + Name = workspaceName, + Location = resourceGroup.Location, + CustomerId = Guid.NewGuid().ToString() + }; + + TestHelper.VerifyCloudException( + HttpStatusCode.BadRequest, + () => client.Workspaces.CreateOrUpdate(resourceGroupName, workspaceName, workspace)); + + // Create a real workspace + workspace = new Workspace() + { + Name = workspaceName, + Location = resourceGroup.Location, + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + TestHelper.ValidateWorkspace(workspace, workspaceResponse); + + // Get the shared keys for a workspace + var getKeysResponse = client.Workspaces.GetSharedKeys(resourceGroupName, workspaceName); + Assert.NotNull(getKeysResponse.PrimarySharedKey); + Assert.NotNull(getKeysResponse.SecondarySharedKey); + + // List the management groups connected to the workspace + var managementGroupsResponse = client.Workspaces.ListManagementGroups(resourceGroupName, workspaceName); + Assert.Null(managementGroupsResponse.NextPageLink); + Assert.Equal(0, managementGroupsResponse.Count()); + + // List the usage for a workspace + var usagesResponse = client.Workspaces.ListUsages(resourceGroupName, workspaceName); + Assert.Equal(1, usagesResponse.Count()); + + var metric = usagesResponse.Single(); + Assert.Equal("DataAnalyzed", metric.Name.Value); + Assert.NotNull(metric.NextResetTime); + Assert.Equal("Bytes", metric.Unit); + Assert.Equal("P1D", metric.QuotaPeriod); + } + } + + [Fact] + public async void CanEnableDisableListIntelligencePacks() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + // create a test workspace + string workspaceName = TestUtilities.GenerateName("AzTest"); + var workspace = new Workspace() + { + Name = workspaceName, + Location = resourceGroup.Location, + Tags = new Dictionary { { "tag1", "val1" } }, + Sku = new Sku(SkuNameEnum.Free) + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + TestHelper.ValidateWorkspace(workspace, workspaceResponse); + + // Enable an intelligence pack + await client.Workspaces.EnableIntelligencePackAsync( + resourceGroupName, + workspaceName, + "ChangeTracking"); + await client.Workspaces.EnableIntelligencePackAsync( + resourceGroupName, + workspaceName, + "SiteRecovery"); + + var listResponse = client.Workspaces.ListIntelligencePacks(resourceGroupName, workspaceName); + Assert.NotNull(listResponse); + + foreach (var ip in listResponse) + { + if (ip.Name.Equals("ChangeTracking")) + { + Assert.True(ip.Enabled); + } + else if (ip.Name.Equals("SiteRecovery")) + { + Assert.True(ip.Enabled); + } + else if (ip.Name.Equals("LogManagement")) + { + Assert.True(ip.Enabled); + } + else + { + Assert.False(ip.Enabled); + } + } + + // Disable an intelligence pack + await client.Workspaces.DisableIntelligencePackAsync( + resourceGroupName, + workspaceName, + "ChangeTracking"); + + await client.Workspaces.DisableIntelligencePackAsync( + resourceGroupName, + workspaceName, + "SiteRecovery"); + + listResponse = client.Workspaces.ListIntelligencePacks(resourceGroupName, workspaceName); + Assert.NotNull(listResponse); + + foreach (var ip in listResponse) + { + if (ip.Name.Equals("ChangeTracking")) + { + Assert.False(ip.Enabled); + } + else if (ip.Name.Equals("SiteRecovery")) + { + Assert.False(ip.Enabled); + } + else if (ip.Name.Equals("LogManagement")) + { + Assert.True(ip.Enabled); + } + else + { + Assert.False(ip.Enabled); + } + } + } + } + } +} + diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/CanCreateUpdateDeleteDataSource.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/CanCreateUpdateDeleteDataSource.json new file mode 100644 index 000000000000..bbba9c7011d7 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/CanCreateUpdateDeleteDataSource.json @@ -0,0 +1,689 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "34b3d2d2-500c-441a-8c7c-40e06a51b5f1" + ], + "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/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest7592\",\r\n \"name\": \"OIAutoRest7592\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:33:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "9611cb70-7f2d-40c8-a63a-fcd931ab0a3a" + ], + "x-ms-correlation-request-id": [ + "9611cb70-7f2d-40c8-a63a-fcd931ab0a3a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203319Z:9611cb70-7f2d-40c8-a63a-fcd931ab0a3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n },\r\n \"name\": \"AzTest7356\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "137" + ], + "x-ms-client-request-id": [ + "1ed763c1-7f65-4d21-8a36-e48f1fec2f54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"b45994fb-358f-48e7-b7eb-20f87176b88f\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest7592%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest7356\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest7592/providers/microsoft.operationalinsights/workspaces/aztest7356\",\r\n \"name\": \"AzTest7356\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "770" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:33:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "137d5472-6e37-4a65-b1e4-ebe3ec89041c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e31d5264-f684-44ea-90c8-d5fc9e3af2b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203352Z:e31d5264-f684-44ea-90c8-d5fc9e3af2b9" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"b45994fb-358f-48e7-b7eb-20f87176b88f\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest7592%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest7356\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest7592/providers/microsoft.operationalinsights/workspaces/aztest7356\",\r\n \"name\": \"AzTest7356\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:34:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "59dcdc9e-54ee-4fc1-be2a-0733b47c8036" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "947f3645-da14-4117-a879-6755689d8fb7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203422Z:947f3645-da14-4117-a879-6755689d8fb7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/dataSources/AzTestDS4363?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTYvZGF0YVNvdXJjZXMvQXpUZXN0RFM0MzYzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"LinkedResourceId\": \"/subscriptions/0b88dfdb-55b3-4fb0-b474-5b6dcbe6b2ef/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"kind\": \"AzureAuditLog\",\r\n \"name\": \"AzTestDS4363\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "213" + ], + "x-ms-client-request-id": [ + "9c28b2ab-581f-4684-8674-c43c57855b62" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"AzureAuditLog\",\r\n \"properties\": {\r\n \"linkedResourceId\": \"/subscriptions/0b88dfdb-55b3-4fb0-b474-5b6dcbe6b2ef/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/datasources/AzTestDS4363\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T20%3A34%3A27.9621846Z'\\\"\",\r\n \"name\": \"AzTestDS4363\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:34:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "a91e07fa-2e41-4419-8097-2d6e1036c651" + ], + "x-ms-correlation-request-id": [ + "a91e07fa-2e41-4419-8097-2d6e1036c651" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203428Z:a91e07fa-2e41-4419-8097-2d6e1036c651" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/dataSources/AzTestDS4363?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTYvZGF0YVNvdXJjZXMvQXpUZXN0RFM0MzYzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e593513c-67e4-4402-8430-17eaf6a9eee1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"AzureAuditLog\",\r\n \"properties\": {\r\n \"linkedResourceId\": \"/subscriptions/0b88dfdb-55b3-4fb0-b474-5b6dcbe6b2ef/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/datasources/AzTestDS4363\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T20%3A34%3A27.9621846Z'\\\"\",\r\n \"name\": \"AzTestDS4363\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:34:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-request-id": [ + "b49afd58-46ff-48bf-b494-e6564fd30fe2" + ], + "x-ms-correlation-request-id": [ + "b49afd58-46ff-48bf-b494-e6564fd30fe2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203431Z:b49afd58-46ff-48bf-b494-e6564fd30fe2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/dataSources/AzTestDS4363?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTYvZGF0YVNvdXJjZXMvQXpUZXN0RFM0MzYzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41fe30b7-7135-4f4d-a8db-a9849cb513c3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"DataSourceNotFound\",\r\n \"message\": \"DataSource 'AzTestDS4363' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:34:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-request-id": [ + "3ebcf2ee-f076-43f1-8ac6-b53f81f1f7fa" + ], + "x-ms-correlation-request-id": [ + "3ebcf2ee-f076-43f1-8ac6-b53f81f1f7fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203438Z:3ebcf2ee-f076-43f1-8ac6-b53f81f1f7fa" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/dataSources/AzTestDS4040?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTYvZGF0YVNvdXJjZXMvQXpUZXN0RFM0MDQwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"LinkedResourceId\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"kind\": \"AzureAuditLog\",\r\n \"name\": \"AzTestDS4040\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "213" + ], + "x-ms-client-request-id": [ + "c4ab610b-9f25-4a34-ad93-151558426c21" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"AzureAuditLog\",\r\n \"properties\": {\r\n \"linkedResourceId\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/datasources/AzTestDS4040\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T20%3A34%3A31.6305292Z'\\\"\",\r\n \"name\": \"AzTestDS4040\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:34:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "5d81eabd-b345-4a33-9564-41bf0eddf9f1" + ], + "x-ms-correlation-request-id": [ + "5d81eabd-b345-4a33-9564-41bf0eddf9f1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203432Z:5d81eabd-b345-4a33-9564-41bf0eddf9f1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/dataSources/AzTestDS4040?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTYvZGF0YVNvdXJjZXMvQXpUZXN0RFM0MDQwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"LinkedResourceId\": \"/subscriptions/1b51d7a0-d97f-456f-914e-18cdcbedf1ce/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"eTag\": \"W/\\\"datetime'2016-11-02T20%3A34%3A31.6305292Z'\\\"\",\r\n \"kind\": \"AzureAuditLog\",\r\n \"name\": \"AzTestDS4040\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "276" + ], + "x-ms-client-request-id": [ + "e7d10645-6cab-41e4-8217-b1f7c979f24e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"AzureAuditLog\",\r\n \"properties\": {\r\n \"linkedResourceId\": \"/subscriptions/1b51d7a0-d97f-456f-914e-18cdcbedf1ce/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/datasources/AzTestDS4040\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T20%3A34%3A32.3195683Z'\\\"\",\r\n \"name\": \"AzTestDS4040\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:34:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "4181e7b3-db74-4a11-ba49-a830818bd87c" + ], + "x-ms-correlation-request-id": [ + "4181e7b3-db74-4a11-ba49-a830818bd87c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203432Z:4181e7b3-db74-4a11-ba49-a830818bd87c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/dataSources?$filter=kind%20eq%20'AzureAuditLog'&api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTYvZGF0YVNvdXJjZXM/JGZpbHRlcj1raW5kJTIwZXElMjAnQXp1cmVBdWRpdExvZycmYXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eec1d4e4-f621-43c6-b10c-2b4aa4d5af98" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"AzureAuditLog\",\r\n \"properties\": {\r\n \"linkedResourceId\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/datasources/AzTestDS4040\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T20%3A34%3A31.6305292Z'\\\"\",\r\n \"name\": \"AzTestDS4040\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"AzureAuditLog\",\r\n \"properties\": {\r\n \"linkedResourceId\": \"/subscriptions/0b88dfdb-55b3-4fb0-b474-5b6dcbe6b2ef/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/datasources/AzTestDS4363\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T20%3A34%3A27.9621846Z'\\\"\",\r\n \"name\": \"AzTestDS4363\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:34:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-request-id": [ + "9f3e8bb4-f09b-4eec-9a3b-4dd380d5759d" + ], + "x-ms-correlation-request-id": [ + "9f3e8bb4-f09b-4eec-9a3b-4dd380d5759d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203432Z:9f3e8bb4-f09b-4eec-9a3b-4dd380d5759d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest7592/providers/Microsoft.OperationalInsights/workspaces/AzTest7356/dataSources/AzTestDS4363?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q3NTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDczNTYvZGF0YVNvdXJjZXMvQXpUZXN0RFM0MzYzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71215f85-b9d2-47a5-b2ff-c60f835d8b09" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:34:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "f8dd1b76-f6dd-4e9d-a996-9ec3d057901a" + ], + "x-ms-correlation-request-id": [ + "f8dd1b76-f6dd-4e9d-a996-9ec3d057901a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T203433Z:f8dd1b76-f6dd-4e9d-a996-9ec3d057901a" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CanCreateUpdateDeleteDataSource": [ + "OIAutoRest7592", + "AzTest7356", + "AzTestDS4363", + "AzTestDS4040" + ] + }, + "Variables": { + "SubscriptionId": "a6383be3-f0e8-4968-93d5-10f2625f5bb5" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/CanPageThroughDataSourceList.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/CanPageThroughDataSourceList.json new file mode 100644 index 000000000000..261aaae258ea --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/CanPageThroughDataSourceList.json @@ -0,0 +1,22543 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "754fda8f-92fa-47ae-a8a7-abb054fd8433" + ], + "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/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384\",\r\n \"name\": \"OIAutoRest6384\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:16:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "4c85c7c0-1466-4b82-9047-6ed0dcd8a2ad" + ], + "x-ms-correlation-request-id": [ + "4c85c7c0-1466-4b82-9047-6ed0dcd8a2ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221628Z:4c85c7c0-1466-4b82-9047-6ed0dcd8a2ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n },\r\n \"name\": \"AzTest3680\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "137" + ], + "x-ms-client-request-id": [ + "a3898fc5-496c-4604-8bdb-e60da45e8c35" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"ad11650e-a770-432a-91c0-210fc032a132\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest6384%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest3680\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest6384/providers/microsoft.operationalinsights/workspaces/aztest3680\",\r\n \"name\": \"AzTest3680\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "770" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:16:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "2c82a750-3f2f-4898-a1a0-753dca2bbb1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "506ff2d6-9c1b-431f-92d9-1271b3e4c65b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221638Z:506ff2d6-9c1b-431f-92d9-1271b3e4c65b" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"ad11650e-a770-432a-91c0-210fc032a132\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest6384%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest3680\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest6384/providers/microsoft.operationalinsights/workspaces/aztest3680\",\r\n \"name\": \"AzTest3680\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d14de5a5-faa0-4127-9b5c-712232b3a6d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "b3f538b4-1f9e-48fb-bbd6-45dd60ce7c1d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221708Z:b3f538b4-1f9e-48fb-bbd6-45dd60ce7c1d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7721?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc3MjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent0\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7721\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "ae604757-c258-4ea8-afa1-8d16bc178816" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent0\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7721\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A10.4431542Z'\\\"\",\r\n \"name\": \"AzTestDSWE7721\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "29c8a8a0-7d37-4fb8-bcd8-72bf93e2a98a" + ], + "x-ms-correlation-request-id": [ + "29c8a8a0-7d37-4fb8-bcd8-72bf93e2a98a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221710Z:29c8a8a0-7d37-4fb8-bcd8-72bf93e2a98a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4679?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ2Nzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent1\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4679\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "93aea94c-4c00-4455-ae14-9182e145331b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent1\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4679\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A10.8181506Z'\\\"\",\r\n \"name\": \"AzTestDSWE4679\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "c928193d-c5a9-4fb5-8d48-a50a54de175a" + ], + "x-ms-correlation-request-id": [ + "c928193d-c5a9-4fb5-8d48-a50a54de175a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221710Z:c928193d-c5a9-4fb5-8d48-a50a54de175a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9823?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk4MjM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent2\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9823\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "a02f5ad9-1347-475e-8f79-7076b09f3d15" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent2\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9823\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A11.1775507Z'\\\"\",\r\n \"name\": \"AzTestDSWE9823\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "00cd7d8d-c75a-4518-9dbb-87d156c960ec" + ], + "x-ms-correlation-request-id": [ + "00cd7d8d-c75a-4518-9dbb-87d156c960ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221711Z:00cd7d8d-c75a-4518-9dbb-87d156c960ec" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5868?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU4Njg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent3\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5868\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "b20a3d6b-6960-4e25-a50f-e57f272e840e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent3\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5868\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A11.5525294Z'\\\"\",\r\n \"name\": \"AzTestDSWE5868\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "4c2fcd9b-c335-4479-bf22-b88098a566d2" + ], + "x-ms-correlation-request-id": [ + "4c2fcd9b-c335-4479-bf22-b88098a566d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221711Z:4c2fcd9b-c335-4479-bf22-b88098a566d2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7900?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc5MDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent4\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7900\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "51db30b0-1b3f-4b40-9ce8-c4f71d2dd9c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent4\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7900\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A11.8978996Z'\\\"\",\r\n \"name\": \"AzTestDSWE7900\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "016450ae-39e9-4429-a0a7-98728ad70f82" + ], + "x-ms-correlation-request-id": [ + "016450ae-39e9-4429-a0a7-98728ad70f82" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221712Z:016450ae-39e9-4429-a0a7-98728ad70f82" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6317?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYzMTc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent5\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6317\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "3dc6030d-1e99-4eec-ab40-6a10f9b06916" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent5\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6317\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A12.2432287Z'\\\"\",\r\n \"name\": \"AzTestDSWE6317\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "4802a196-60e6-4d14-bc92-2c92bc03b99d" + ], + "x-ms-correlation-request-id": [ + "4802a196-60e6-4d14-bc92-2c92bc03b99d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221712Z:4802a196-60e6-4d14-bc92-2c92bc03b99d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE543?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU0Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent6\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE543\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "dfdccb36-b4ad-4478-a2ad-88c88f21f820" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent6\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE543\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A12.5869826Z'\\\"\",\r\n \"name\": \"AzTestDSWE543\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "6bebbef1-7f0f-47f9-b4df-5d1e0daee249" + ], + "x-ms-correlation-request-id": [ + "6bebbef1-7f0f-47f9-b4df-5d1e0daee249" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221712Z:6bebbef1-7f0f-47f9-b4df-5d1e0daee249" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE468?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ2OD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent7\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE468\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "b6f98067-8bf2-406f-9b7d-95bc434d0a90" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent7\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE468\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A12.9206643Z'\\\"\",\r\n \"name\": \"AzTestDSWE468\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "113f5e1d-8ca5-4b46-91f6-fdeeaae3e2c4" + ], + "x-ms-correlation-request-id": [ + "113f5e1d-8ca5-4b46-91f6-fdeeaae3e2c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221713Z:113f5e1d-8ca5-4b46-91f6-fdeeaae3e2c4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7001?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTcwMDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent8\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7001\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "c08b2a0a-ef1f-4b58-a7c4-db6d3213a330" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent8\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7001\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A13.2800288Z'\\\"\",\r\n \"name\": \"AzTestDSWE7001\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "d103ab92-bb38-4f4e-af8c-53ef10ca4977" + ], + "x-ms-correlation-request-id": [ + "d103ab92-bb38-4f4e-af8c-53ef10ca4977" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221713Z:d103ab92-bb38-4f4e-af8c-53ef10ca4977" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE365?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM2NT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent9\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE365\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "1edf74c7-ec9a-4da3-9934-6cf026a04272" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent9\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE365\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A13.6237836Z'\\\"\",\r\n \"name\": \"AzTestDSWE365\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "c423d57d-2b98-4c81-9cf8-65d9079a67cd" + ], + "x-ms-correlation-request-id": [ + "c423d57d-2b98-4c81-9cf8-65d9079a67cd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221713Z:c423d57d-2b98-4c81-9cf8-65d9079a67cd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7735?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc3MzU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent10\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7735\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "1f7b0c7b-6a9f-4f5e-b0f7-ce5a1c5d486a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent10\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7735\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A13.9987906Z'\\\"\",\r\n \"name\": \"AzTestDSWE7735\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "52b0408c-5406-4fec-a915-29c833cba768" + ], + "x-ms-correlation-request-id": [ + "52b0408c-5406-4fec-a915-29c833cba768" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221714Z:52b0408c-5406-4fec-a915-29c833cba768" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE97?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent11\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE97\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "36e09238-5b65-45cf-82e7-2f5ea1fca00c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent11\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE97\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A14.3425449Z'\\\"\",\r\n \"name\": \"AzTestDSWE97\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-request-id": [ + "9394c69d-3add-48ac-a88b-06dbfee7644f" + ], + "x-ms-correlation-request-id": [ + "9394c69d-3add-48ac-a88b-06dbfee7644f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221714Z:9394c69d-3add-48ac-a88b-06dbfee7644f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6483?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY0ODM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent12\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6483\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "96bd2221-5d88-4e86-a4ca-62d8ace6d9f8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent12\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6483\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A14.7644311Z'\\\"\",\r\n \"name\": \"AzTestDSWE6483\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "5827e638-d30e-4904-ba0f-b1fd85fc7599" + ], + "x-ms-correlation-request-id": [ + "5827e638-d30e-4904-ba0f-b1fd85fc7599" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221714Z:5827e638-d30e-4904-ba0f-b1fd85fc7599" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6719?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY3MTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent13\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6719\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "aa17ba1b-936e-4fad-8847-15ac9eb0c02f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent13\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6719\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A15.0940865Z'\\\"\",\r\n \"name\": \"AzTestDSWE6719\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-request-id": [ + "ef919873-df16-41eb-a091-2f53663f4b60" + ], + "x-ms-correlation-request-id": [ + "ef919873-df16-41eb-a091-2f53663f4b60" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221715Z:ef919873-df16-41eb-a091-2f53663f4b60" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2533?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI1MzM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent14\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2533\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "1a1f5a6f-bb2d-465e-931e-e4899f14bbd5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent14\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2533\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A15.4378459Z'\\\"\",\r\n \"name\": \"AzTestDSWE2533\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-request-id": [ + "88155303-536f-49d2-9dbe-225dc9c3d4c3" + ], + "x-ms-correlation-request-id": [ + "88155303-536f-49d2-9dbe-225dc9c3d4c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221715Z:88155303-536f-49d2-9dbe-225dc9c3d4c3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7590?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc1OTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent15\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7590\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "a521ff30-0701-4782-a91a-4dfbf42d2c74" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent15\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7590\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A15.8128679Z'\\\"\",\r\n \"name\": \"AzTestDSWE7590\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "71c07efb-7fab-468c-bf49-164eccea440f" + ], + "x-ms-correlation-request-id": [ + "71c07efb-7fab-468c-bf49-164eccea440f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221715Z:71c07efb-7fab-468c-bf49-164eccea440f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4227?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQyMjc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent16\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4227\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "9d4d8502-9594-4d23-9aa5-a3084efa5c02" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent16\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4227\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A16.1878639Z'\\\"\",\r\n \"name\": \"AzTestDSWE4227\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-request-id": [ + "8bcc9623-4371-46ef-983b-4a59dec6ca2d" + ], + "x-ms-correlation-request-id": [ + "8bcc9623-4371-46ef-983b-4a59dec6ca2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221716Z:8bcc9623-4371-46ef-983b-4a59dec6ca2d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE753?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent17\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE753\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "8c400a5a-90a3-4da4-9136-25a4b7a1e25c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent17\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE753\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A16.6410105Z'\\\"\",\r\n \"name\": \"AzTestDSWE753\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-request-id": [ + "b363ae01-274e-4fe2-9d6d-d6abbec91575" + ], + "x-ms-correlation-request-id": [ + "b363ae01-274e-4fe2-9d6d-d6abbec91575" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221716Z:b363ae01-274e-4fe2-9d6d-d6abbec91575" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5813?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU4MTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent18\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5813\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "007dccbb-5d9b-4525-9a24-b2e0f053dbda" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent18\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5813\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A17.0159990Z'\\\"\",\r\n \"name\": \"AzTestDSWE5813\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-request-id": [ + "bf843579-2cb8-46ef-a299-70bef5ac4025" + ], + "x-ms-correlation-request-id": [ + "bf843579-2cb8-46ef-a299-70bef5ac4025" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221717Z:bf843579-2cb8-46ef-a299-70bef5ac4025" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1655?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE2NTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent19\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1655\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "d8ef2b1f-0383-4c21-a922-767608a1779f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent19\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1655\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A17.4271190Z'\\\"\",\r\n \"name\": \"AzTestDSWE1655\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "b2e50373-e52d-4470-8627-85e300d3bb93" + ], + "x-ms-correlation-request-id": [ + "b2e50373-e52d-4470-8627-85e300d3bb93" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221717Z:b2e50373-e52d-4470-8627-85e300d3bb93" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3005?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMwMDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent20\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3005\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "c9a1d74a-7925-4b74-99a8-848575147811" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent20\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3005\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A17.8046672Z'\\\"\",\r\n \"name\": \"AzTestDSWE3005\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "c0843c45-b11a-4e09-810b-b514ddd0d8c4" + ], + "x-ms-correlation-request-id": [ + "c0843c45-b11a-4e09-810b-b514ddd0d8c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221717Z:c0843c45-b11a-4e09-810b-b514ddd0d8c4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE381?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM4MT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent21\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE381\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "7b1ea357-259f-46fd-a31c-ad91aab57da5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent21\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE381\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A18.1767890Z'\\\"\",\r\n \"name\": \"AzTestDSWE381\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-request-id": [ + "e3512689-a516-4438-b60a-2af8321ad783" + ], + "x-ms-correlation-request-id": [ + "e3512689-a516-4438-b60a-2af8321ad783" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221718Z:e3512689-a516-4438-b60a-2af8321ad783" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5045?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUwNDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent22\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5045\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "e622ec54-3285-4ca2-8e3a-100f92dab87a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent22\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5045\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A18.6959912Z'\\\"\",\r\n \"name\": \"AzTestDSWE5045\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-request-id": [ + "417e3ac0-1c09-49b1-84e6-360720317bbf" + ], + "x-ms-correlation-request-id": [ + "417e3ac0-1c09-49b1-84e6-360720317bbf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221718Z:417e3ac0-1c09-49b1-84e6-360720317bbf" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7625?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc2MjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent23\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7625\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "cbf762bb-206e-410d-b538-bd3e84efe049" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent23\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7625\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A19.0397595Z'\\\"\",\r\n \"name\": \"AzTestDSWE7625\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-request-id": [ + "952eb921-787c-4e13-aa96-94f0dde9153d" + ], + "x-ms-correlation-request-id": [ + "952eb921-787c-4e13-aa96-94f0dde9153d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221719Z:952eb921-787c-4e13-aa96-94f0dde9153d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1967?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE5Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent24\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1967\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "137a1dfa-46db-4870-b341-45c0eb5b48ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent24\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1967\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A19.3826662Z'\\\"\",\r\n \"name\": \"AzTestDSWE1967\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-request-id": [ + "f771046d-751b-4761-ab7d-de64ffa3a51a" + ], + "x-ms-correlation-request-id": [ + "f771046d-751b-4761-ab7d-de64ffa3a51a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221719Z:f771046d-751b-4761-ab7d-de64ffa3a51a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2269?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIyNjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent25\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2269\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "b6559b64-1001-4652-95fd-f6aac97e1568" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent25\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2269\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A19.7234464Z'\\\"\",\r\n \"name\": \"AzTestDSWE2269\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-request-id": [ + "6ec7198e-6015-4f92-b8d6-c28e52923600" + ], + "x-ms-correlation-request-id": [ + "6ec7198e-6015-4f92-b8d6-c28e52923600" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221719Z:6ec7198e-6015-4f92-b8d6-c28e52923600" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6791?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY3OTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent26\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6791\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "97572f2b-a36f-4f8f-a346-602f2dfdda94" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent26\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6791\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A20.0888565Z'\\\"\",\r\n \"name\": \"AzTestDSWE6791\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-request-id": [ + "bfeecb75-fbdd-4d70-bb17-0bf8807ad1fe" + ], + "x-ms-correlation-request-id": [ + "bfeecb75-fbdd-4d70-bb17-0bf8807ad1fe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221720Z:bfeecb75-fbdd-4d70-bb17-0bf8807ad1fe" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1508?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE1MDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent27\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1508\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "e816753c-5e9b-44c5-8e74-93ea325debb5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent27\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1508\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A20.4413159Z'\\\"\",\r\n \"name\": \"AzTestDSWE1508\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-request-id": [ + "d635a34d-fd24-4d73-bd1a-7978f7baec2b" + ], + "x-ms-correlation-request-id": [ + "d635a34d-fd24-4d73-bd1a-7978f7baec2b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221720Z:d635a34d-fd24-4d73-bd1a-7978f7baec2b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4072?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQwNzI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent28\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4072\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "bc0b037b-ce19-4a17-85f0-a91e0c020efc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent28\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4072\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A20.7878036Z'\\\"\",\r\n \"name\": \"AzTestDSWE4072\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1170" + ], + "x-ms-request-id": [ + "0fa4f796-f526-4ce9-ba26-0dee01838469" + ], + "x-ms-correlation-request-id": [ + "0fa4f796-f526-4ce9-ba26-0dee01838469" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221720Z:0fa4f796-f526-4ce9-ba26-0dee01838469" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2540?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI1NDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent29\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2540\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "ab820cf9-a456-44da-9094-a8c9c35b5c48" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent29\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2540\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A21.1316007Z'\\\"\",\r\n \"name\": \"AzTestDSWE2540\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1169" + ], + "x-ms-request-id": [ + "9ec97103-06d2-4cda-9d96-5542db771afc" + ], + "x-ms-correlation-request-id": [ + "9ec97103-06d2-4cda-9d96-5542db771afc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221721Z:9ec97103-06d2-4cda-9d96-5542db771afc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6995?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY5OTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent30\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6995\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "5161edcc-4053-4da9-954c-1a75f7a6618c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent30\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6995\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A21.4753559Z'\\\"\",\r\n \"name\": \"AzTestDSWE6995\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1168" + ], + "x-ms-request-id": [ + "e3c31b94-2075-4cbe-a29b-fa83c8c57279" + ], + "x-ms-correlation-request-id": [ + "e3c31b94-2075-4cbe-a29b-fa83c8c57279" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221721Z:e3c31b94-2075-4cbe-a29b-fa83c8c57279" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5179?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUxNzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent31\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5179\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "52378b83-1d92-4555-aef1-337da01dcc66" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent31\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5179\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A21.8348203Z'\\\"\",\r\n \"name\": \"AzTestDSWE5179\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1167" + ], + "x-ms-request-id": [ + "1361d609-9117-4d45-a81a-8f22a6eecd55" + ], + "x-ms-correlation-request-id": [ + "1361d609-9117-4d45-a81a-8f22a6eecd55" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221721Z:1361d609-9117-4d45-a81a-8f22a6eecd55" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7261?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTcyNjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent32\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7261\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "d85d531f-01d3-4523-a044-513a347c7ce1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent32\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7261\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A22.1817250Z'\\\"\",\r\n \"name\": \"AzTestDSWE7261\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1166" + ], + "x-ms-request-id": [ + "c23f310d-a2ae-4cbb-accc-2a4aac1d15d6" + ], + "x-ms-correlation-request-id": [ + "c23f310d-a2ae-4cbb-accc-2a4aac1d15d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221722Z:c23f310d-a2ae-4cbb-accc-2a4aac1d15d6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2919?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI5MTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent33\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2919\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "8d871d07-1e71-419b-be75-bc6ebf6ef889" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent33\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2919\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A22.5284485Z'\\\"\",\r\n \"name\": \"AzTestDSWE2919\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1165" + ], + "x-ms-request-id": [ + "5bff8552-8b04-4694-9019-180168184018" + ], + "x-ms-correlation-request-id": [ + "5bff8552-8b04-4694-9019-180168184018" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221722Z:5bff8552-8b04-4694-9019-180168184018" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2793?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI3OTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent34\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2793\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "4ec1c0f1-e7c1-4102-bc9a-e9aaaf11a28d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent34\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2793\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A22.8742786Z'\\\"\",\r\n \"name\": \"AzTestDSWE2793\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1164" + ], + "x-ms-request-id": [ + "d4499f51-e483-4af0-a448-d339d3c2a777" + ], + "x-ms-correlation-request-id": [ + "d4499f51-e483-4af0-a448-d339d3c2a777" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221723Z:d4499f51-e483-4af0-a448-d339d3c2a777" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9753?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk3NTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent35\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9753\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "332cb8ed-6bce-4193-b872-0037908a2241" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent35\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9753\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A23.2351983Z'\\\"\",\r\n \"name\": \"AzTestDSWE9753\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1163" + ], + "x-ms-request-id": [ + "b428dab0-c8e4-4a40-af6d-c4bbee73284e" + ], + "x-ms-correlation-request-id": [ + "b428dab0-c8e4-4a40-af6d-c4bbee73284e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221723Z:b428dab0-c8e4-4a40-af6d-c4bbee73284e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3071?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMwNzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent36\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3071\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "c8ec09cf-4d40-44ca-bdc5-9f79bb11c258" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent36\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3071\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A23.6016964Z'\\\"\",\r\n \"name\": \"AzTestDSWE3071\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1162" + ], + "x-ms-request-id": [ + "5308b100-fb62-4ea7-9ef5-b16d4d962236" + ], + "x-ms-correlation-request-id": [ + "5308b100-fb62-4ea7-9ef5-b16d4d962236" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221723Z:5308b100-fb62-4ea7-9ef5-b16d4d962236" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE121?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTEyMT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent37\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE121\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "f15101e1-cf10-47a0-a470-e61eceacd56c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent37\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE121\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A23.9596796Z'\\\"\",\r\n \"name\": \"AzTestDSWE121\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1161" + ], + "x-ms-request-id": [ + "4b3b93ca-678a-4a7e-adc8-ac21dc0c2612" + ], + "x-ms-correlation-request-id": [ + "4b3b93ca-678a-4a7e-adc8-ac21dc0c2612" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221724Z:4b3b93ca-678a-4a7e-adc8-ac21dc0c2612" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3543?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM1NDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent38\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3543\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "f673631f-d405-4f29-8b7a-e13cfdf9c2db" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent38\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3543\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A24.3239265Z'\\\"\",\r\n \"name\": \"AzTestDSWE3543\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1160" + ], + "x-ms-request-id": [ + "24da5b96-2065-4b04-8e3f-6ab1e4e33161" + ], + "x-ms-correlation-request-id": [ + "24da5b96-2065-4b04-8e3f-6ab1e4e33161" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221724Z:24da5b96-2065-4b04-8e3f-6ab1e4e33161" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5950?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU5NTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent39\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5950\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "8e97c491-4a37-4e98-be5a-382ef9de8b5f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent39\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5950\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A24.6719723Z'\\\"\",\r\n \"name\": \"AzTestDSWE5950\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1159" + ], + "x-ms-request-id": [ + "621f2b89-70f0-420f-81e1-1577dbc0ec11" + ], + "x-ms-correlation-request-id": [ + "621f2b89-70f0-420f-81e1-1577dbc0ec11" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221724Z:621f2b89-70f0-420f-81e1-1577dbc0ec11" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9042?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkwNDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent40\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9042\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "00e62f99-fc2a-4188-ac64-60e291f660e3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent40\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9042\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A25.0330261Z'\\\"\",\r\n \"name\": \"AzTestDSWE9042\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1158" + ], + "x-ms-request-id": [ + "998e9d86-8397-417c-bdd3-cf121ea00d65" + ], + "x-ms-correlation-request-id": [ + "998e9d86-8397-417c-bdd3-cf121ea00d65" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221725Z:998e9d86-8397-417c-bdd3-cf121ea00d65" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4091?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQwOTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent41\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4091\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "77d1b2a5-78cc-4c75-9482-e3b6781ba4d3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent41\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4091\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A25.3924092Z'\\\"\",\r\n \"name\": \"AzTestDSWE4091\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1157" + ], + "x-ms-request-id": [ + "89a89386-1822-4de5-885f-47502e7a04db" + ], + "x-ms-correlation-request-id": [ + "89a89386-1822-4de5-885f-47502e7a04db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221725Z:89a89386-1822-4de5-885f-47502e7a04db" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9253?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkyNTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent42\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9253\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "e41057ec-2361-4be8-9161-0aa3ac2a11fd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent42\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9253\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A25.7517681Z'\\\"\",\r\n \"name\": \"AzTestDSWE9253\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1156" + ], + "x-ms-request-id": [ + "df45f374-9b04-4e54-abce-b4d63bd67110" + ], + "x-ms-correlation-request-id": [ + "df45f374-9b04-4e54-abce-b4d63bd67110" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221725Z:df45f374-9b04-4e54-abce-b4d63bd67110" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9920?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk5MjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent43\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9920\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "c3313e37-66a8-41eb-9ad3-fcace002b8da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent43\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9920\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A26.1111727Z'\\\"\",\r\n \"name\": \"AzTestDSWE9920\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1155" + ], + "x-ms-request-id": [ + "39594730-992f-4b51-b63f-0d7a26101859" + ], + "x-ms-correlation-request-id": [ + "39594730-992f-4b51-b63f-0d7a26101859" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221726Z:39594730-992f-4b51-b63f-0d7a26101859" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7567?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc1Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent44\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7567\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "ae062cd2-c047-470c-85da-32f9afc28451" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent44\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7567\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A26.4705631Z'\\\"\",\r\n \"name\": \"AzTestDSWE7567\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1154" + ], + "x-ms-request-id": [ + "ac650aad-dde6-4577-bb26-189c7e238028" + ], + "x-ms-correlation-request-id": [ + "ac650aad-dde6-4577-bb26-189c7e238028" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221726Z:ac650aad-dde6-4577-bb26-189c7e238028" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4606?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ2MDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent45\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4606\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "234598c5-dc7c-451b-a79a-0b1b86d9b696" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent45\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4606\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A26.8299354Z'\\\"\",\r\n \"name\": \"AzTestDSWE4606\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1153" + ], + "x-ms-request-id": [ + "503e06cf-2d17-4a98-9b93-772803aa4b04" + ], + "x-ms-correlation-request-id": [ + "503e06cf-2d17-4a98-9b93-772803aa4b04" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221726Z:503e06cf-2d17-4a98-9b93-772803aa4b04" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9543?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk1NDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent46\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9543\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "04551ddb-b3b6-4d3a-bcfe-59d40503a04f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent46\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9543\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A27.2049406Z'\\\"\",\r\n \"name\": \"AzTestDSWE9543\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1152" + ], + "x-ms-request-id": [ + "24b94ade-b456-4c55-b41b-47f7772c08c8" + ], + "x-ms-correlation-request-id": [ + "24b94ade-b456-4c55-b41b-47f7772c08c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221727Z:24b94ade-b456-4c55-b41b-47f7772c08c8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE400?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent47\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE400\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "6e9847e9-596b-4796-b197-5512ced7ceee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent47\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE400\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A27.5643403Z'\\\"\",\r\n \"name\": \"AzTestDSWE400\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1151" + ], + "x-ms-request-id": [ + "12f16574-a270-438f-aec2-5fedc833d055" + ], + "x-ms-correlation-request-id": [ + "12f16574-a270-438f-aec2-5fedc833d055" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221727Z:12f16574-a270-438f-aec2-5fedc833d055" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2710?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI3MTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent48\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2710\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "4c266429-94d3-4f75-9ac2-57b6bf1a3811" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent48\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2710\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A27.9237269Z'\\\"\",\r\n \"name\": \"AzTestDSWE2710\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1150" + ], + "x-ms-request-id": [ + "21e4c09a-8b18-4f01-9acf-9c26c1c3f371" + ], + "x-ms-correlation-request-id": [ + "21e4c09a-8b18-4f01-9acf-9c26c1c3f371" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221728Z:21e4c09a-8b18-4f01-9acf-9c26c1c3f371" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6503?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY1MDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent49\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6503\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "bd5659fb-b74b-464f-9ece-8d8f6440b2da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent49\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6503\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A28.2831082Z'\\\"\",\r\n \"name\": \"AzTestDSWE6503\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1149" + ], + "x-ms-request-id": [ + "49dc1a1e-e4fe-476b-8bcb-40062b746bcc" + ], + "x-ms-correlation-request-id": [ + "49dc1a1e-e4fe-476b-8bcb-40062b746bcc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221728Z:49dc1a1e-e4fe-476b-8bcb-40062b746bcc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1352?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTEzNTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent50\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1352\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "d95a5c47-231f-4183-ba7b-8a0f1c1c34e5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent50\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1352\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A28.6424887Z'\\\"\",\r\n \"name\": \"AzTestDSWE1352\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1148" + ], + "x-ms-request-id": [ + "67271f70-937e-458e-b006-ccec7331c036" + ], + "x-ms-correlation-request-id": [ + "67271f70-937e-458e-b006-ccec7331c036" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221728Z:67271f70-937e-458e-b006-ccec7331c036" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3639?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM2Mzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent51\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3639\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "9d9adede-b7c5-4e5c-beea-d5497ed17c12" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent51\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3639\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A28.9862434Z'\\\"\",\r\n \"name\": \"AzTestDSWE3639\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1147" + ], + "x-ms-request-id": [ + "e4d85e5c-0593-4346-af40-b68f12aea1c5" + ], + "x-ms-correlation-request-id": [ + "e4d85e5c-0593-4346-af40-b68f12aea1c5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221729Z:e4d85e5c-0593-4346-af40-b68f12aea1c5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4728?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ3Mjg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent52\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4728\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "7fb9e08a-60ab-4458-968e-48fdebc75876" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent52\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4728\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A29.3612288Z'\\\"\",\r\n \"name\": \"AzTestDSWE4728\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1146" + ], + "x-ms-request-id": [ + "39672951-093f-4d29-8d97-8fc3df0e82a1" + ], + "x-ms-correlation-request-id": [ + "39672951-093f-4d29-8d97-8fc3df0e82a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221729Z:39672951-093f-4d29-8d97-8fc3df0e82a1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1146?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTExNDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent53\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1146\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "5dec7a8d-60bd-4fd2-9d7a-cb6861cd99b2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent53\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1146\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A29.7206205Z'\\\"\",\r\n \"name\": \"AzTestDSWE1146\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1145" + ], + "x-ms-request-id": [ + "b2921c6f-69b7-4d6b-8e5d-57953b095807" + ], + "x-ms-correlation-request-id": [ + "b2921c6f-69b7-4d6b-8e5d-57953b095807" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221729Z:b2921c6f-69b7-4d6b-8e5d-57953b095807" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4715?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ3MTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent54\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4715\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "756c8d94-bccc-42c5-8777-1ffd32a934a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent54\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4715\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A30.0727694Z'\\\"\",\r\n \"name\": \"AzTestDSWE4715\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1144" + ], + "x-ms-request-id": [ + "7f8944d9-1a08-4812-9f09-4517043d1230" + ], + "x-ms-correlation-request-id": [ + "7f8944d9-1a08-4812-9f09-4517043d1230" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221730Z:7f8944d9-1a08-4812-9f09-4517043d1230" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4298?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQyOTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent55\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4298\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "2b4c4be1-b579-4088-bdd1-731e44c494ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent55\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4298\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A30.4477812Z'\\\"\",\r\n \"name\": \"AzTestDSWE4298\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1143" + ], + "x-ms-request-id": [ + "f847cd79-9c11-437c-88b5-a39d6255607f" + ], + "x-ms-correlation-request-id": [ + "f847cd79-9c11-437c-88b5-a39d6255607f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221730Z:f847cd79-9c11-437c-88b5-a39d6255607f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4777?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ3Nzc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent56\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4777\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "8cd8d0b4-e64f-4e79-86eb-c0f644cc00bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent56\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4777\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A30.8384218Z'\\\"\",\r\n \"name\": \"AzTestDSWE4777\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1142" + ], + "x-ms-request-id": [ + "0dfa2262-af7e-4149-ac91-2c6da0ec8834" + ], + "x-ms-correlation-request-id": [ + "0dfa2262-af7e-4149-ac91-2c6da0ec8834" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221730Z:0dfa2262-af7e-4149-ac91-2c6da0ec8834" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8241?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgyNDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent57\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8241\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "b3a5e2bc-574e-44e4-ba8b-f78a135f479d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent57\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8241\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A31.2151578Z'\\\"\",\r\n \"name\": \"AzTestDSWE8241\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1141" + ], + "x-ms-request-id": [ + "c77ac52d-e0ac-4799-bad0-a24fc9fd732b" + ], + "x-ms-correlation-request-id": [ + "c77ac52d-e0ac-4799-bad0-a24fc9fd732b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221731Z:c77ac52d-e0ac-4799-bad0-a24fc9fd732b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5932?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU5MzI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent58\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5932\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "cccd81a5-794d-4115-8715-0451aeb8c2d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent58\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5932\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A31.5937092Z'\\\"\",\r\n \"name\": \"AzTestDSWE5932\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1140" + ], + "x-ms-request-id": [ + "446fa077-5320-4744-843d-0f2741c9b006" + ], + "x-ms-correlation-request-id": [ + "446fa077-5320-4744-843d-0f2741c9b006" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221731Z:446fa077-5320-4744-843d-0f2741c9b006" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4047?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQwNDc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent59\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4047\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "eb156885-d731-4c72-80e6-37e61faa6d68" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent59\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4047\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A31.9864962Z'\\\"\",\r\n \"name\": \"AzTestDSWE4047\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1139" + ], + "x-ms-request-id": [ + "1fbbb4f7-d715-486c-927d-6dd438e5bd6b" + ], + "x-ms-correlation-request-id": [ + "1fbbb4f7-d715-486c-927d-6dd438e5bd6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221732Z:1fbbb4f7-d715-486c-927d-6dd438e5bd6b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3751?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM3NTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent60\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3751\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "a7151bda-5712-4d46-a9ea-c67aed34fdcd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent60\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3751\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A32.3322865Z'\\\"\",\r\n \"name\": \"AzTestDSWE3751\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1138" + ], + "x-ms-request-id": [ + "0df06a16-4782-486a-9d3d-62c6ee79a1d1" + ], + "x-ms-correlation-request-id": [ + "0df06a16-4782-486a-9d3d-62c6ee79a1d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221732Z:0df06a16-4782-486a-9d3d-62c6ee79a1d1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8959?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg5NTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent61\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8959\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "d90a35e1-3384-4abc-b012-76c20ba364e0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent61\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8959\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A32.6947529Z'\\\"\",\r\n \"name\": \"AzTestDSWE8959\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1137" + ], + "x-ms-request-id": [ + "77f85162-a261-4b08-b1c8-7fa9338515a1" + ], + "x-ms-correlation-request-id": [ + "77f85162-a261-4b08-b1c8-7fa9338515a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221732Z:77f85162-a261-4b08-b1c8-7fa9338515a1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2929?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI5Mjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent62\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2929\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "552c24a2-23bf-406d-9c0a-365b4b29e1b5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent62\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2929\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A33.0542221Z'\\\"\",\r\n \"name\": \"AzTestDSWE2929\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1136" + ], + "x-ms-request-id": [ + "67b733c1-6290-443d-944c-5c046bebb80a" + ], + "x-ms-correlation-request-id": [ + "67b733c1-6290-443d-944c-5c046bebb80a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221733Z:67b733c1-6290-443d-944c-5c046bebb80a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7824?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc4MjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent63\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7824\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "a6dbd0d6-bca1-47d4-af09-6b72c989ddf8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent63\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7824\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A33.4524238Z'\\\"\",\r\n \"name\": \"AzTestDSWE7824\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1135" + ], + "x-ms-request-id": [ + "b7afcea7-17b2-4be9-b6fe-3fc6dbc06c68" + ], + "x-ms-correlation-request-id": [ + "b7afcea7-17b2-4be9-b6fe-3fc6dbc06c68" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221733Z:b7afcea7-17b2-4be9-b6fe-3fc6dbc06c68" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE740?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc0MD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent64\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE740\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "0cc5a6b9-0399-4190-bb4d-dfcb4bc7ab3a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent64\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE740\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A33.8118072Z'\\\"\",\r\n \"name\": \"AzTestDSWE740\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1134" + ], + "x-ms-request-id": [ + "77e49155-8792-4afe-ba54-730ea326cf13" + ], + "x-ms-correlation-request-id": [ + "77e49155-8792-4afe-ba54-730ea326cf13" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221733Z:77e49155-8792-4afe-ba54-730ea326cf13" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4916?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ5MTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent65\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4916\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "835902f3-d30c-496d-834d-4252431774b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent65\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4916\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A34.1712113Z'\\\"\",\r\n \"name\": \"AzTestDSWE4916\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1133" + ], + "x-ms-request-id": [ + "fab9d882-d7d5-4659-b233-0205646d2825" + ], + "x-ms-correlation-request-id": [ + "fab9d882-d7d5-4659-b233-0205646d2825" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221734Z:fab9d882-d7d5-4659-b233-0205646d2825" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9220?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkyMjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent66\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9220\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "c6343a70-6d9f-4496-89dc-98fa8752de9b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent66\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9220\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A34.5298015Z'\\\"\",\r\n \"name\": \"AzTestDSWE9220\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1132" + ], + "x-ms-request-id": [ + "a99b3c23-5680-4520-9de1-4d30e3f32a0a" + ], + "x-ms-correlation-request-id": [ + "a99b3c23-5680-4520-9de1-4d30e3f32a0a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221734Z:a99b3c23-5680-4520-9de1-4d30e3f32a0a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3799?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM3OTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent67\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3799\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "b0474291-054c-415a-bae1-edf6f92aac71" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent67\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3799\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A34.9643272Z'\\\"\",\r\n \"name\": \"AzTestDSWE3799\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1131" + ], + "x-ms-request-id": [ + "b6db3f3f-9c0a-4af3-8471-0b17c077d20c" + ], + "x-ms-correlation-request-id": [ + "b6db3f3f-9c0a-4af3-8471-0b17c077d20c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221735Z:b6db3f3f-9c0a-4af3-8471-0b17c077d20c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9739?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk3Mzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent68\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9739\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "71a35aef-b402-42e2-a77d-3dd23da0d4b5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent68\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9739\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A35.3162513Z'\\\"\",\r\n \"name\": \"AzTestDSWE9739\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1130" + ], + "x-ms-request-id": [ + "04307024-1b98-4be9-9c76-3a67fe86212f" + ], + "x-ms-correlation-request-id": [ + "04307024-1b98-4be9-9c76-3a67fe86212f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221735Z:04307024-1b98-4be9-9c76-3a67fe86212f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7836?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc4MzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent69\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7836\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "f2e6e89e-8eb5-407e-86ba-519804cfca67" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent69\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7836\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A35.6777538Z'\\\"\",\r\n \"name\": \"AzTestDSWE7836\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1129" + ], + "x-ms-request-id": [ + "25d8f21f-7e0f-454d-bdfd-80a51ce63432" + ], + "x-ms-correlation-request-id": [ + "25d8f21f-7e0f-454d-bdfd-80a51ce63432" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221735Z:25d8f21f-7e0f-454d-bdfd-80a51ce63432" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1155?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTExNTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent70\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1155\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "40085bb1-3d05-4156-84d9-74eac3637a55" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent70\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1155\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A36.0336411Z'\\\"\",\r\n \"name\": \"AzTestDSWE1155\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1128" + ], + "x-ms-request-id": [ + "f9673759-0c27-409e-804b-59ffc4a529d8" + ], + "x-ms-correlation-request-id": [ + "f9673759-0c27-409e-804b-59ffc4a529d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221736Z:f9673759-0c27-409e-804b-59ffc4a529d8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE632?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYzMj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent71\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE632\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "806234e8-a238-4a96-b7bd-8313b3ffdfe5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent71\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE632\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A36.3749818Z'\\\"\",\r\n \"name\": \"AzTestDSWE632\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1127" + ], + "x-ms-request-id": [ + "e626947e-2e96-43d2-8c40-e142bc0a8bc0" + ], + "x-ms-correlation-request-id": [ + "e626947e-2e96-43d2-8c40-e142bc0a8bc0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221736Z:e626947e-2e96-43d2-8c40-e142bc0a8bc0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2270?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIyNzA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent72\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2270\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "03136068-ffba-43bd-b0bb-7a350a29aaad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent72\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2270\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A36.7344279Z'\\\"\",\r\n \"name\": \"AzTestDSWE2270\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1126" + ], + "x-ms-request-id": [ + "efaca206-b86a-4b6d-98c6-d7bced37e22b" + ], + "x-ms-correlation-request-id": [ + "efaca206-b86a-4b6d-98c6-d7bced37e22b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221736Z:efaca206-b86a-4b6d-98c6-d7bced37e22b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5704?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU3MDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent73\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5704\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "764f6c3e-0a7f-46fd-ac02-088b5b3097ea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent73\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5704\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A37.0937809Z'\\\"\",\r\n \"name\": \"AzTestDSWE5704\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1125" + ], + "x-ms-request-id": [ + "8db10e13-0a2a-48dd-a1ce-752a877fd12b" + ], + "x-ms-correlation-request-id": [ + "8db10e13-0a2a-48dd-a1ce-752a877fd12b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221737Z:8db10e13-0a2a-48dd-a1ce-752a877fd12b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3490?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM0OTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent74\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3490\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "9de165e3-d00a-49d1-beac-9b64bc7b1848" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent74\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3490\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A37.4531647Z'\\\"\",\r\n \"name\": \"AzTestDSWE3490\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1124" + ], + "x-ms-request-id": [ + "e7dd707d-7db6-46a8-92f8-a9aaf276f529" + ], + "x-ms-correlation-request-id": [ + "e7dd707d-7db6-46a8-92f8-a9aaf276f529" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221737Z:e7dd707d-7db6-46a8-92f8-a9aaf276f529" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8913?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg5MTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent75\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8913\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "40ad332e-8437-4ba0-83bd-e36d62d273ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent75\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8913\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A37.8125718Z'\\\"\",\r\n \"name\": \"AzTestDSWE8913\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1123" + ], + "x-ms-request-id": [ + "190e4bd5-589a-4b3a-a441-9ce46a07f30a" + ], + "x-ms-correlation-request-id": [ + "190e4bd5-589a-4b3a-a441-9ce46a07f30a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221737Z:190e4bd5-589a-4b3a-a441-9ce46a07f30a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1127?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTExMjc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent76\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1127\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "2eb351d9-74d5-4bbf-81b0-a7a4236ccf5d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent76\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1127\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A38.1719538Z'\\\"\",\r\n \"name\": \"AzTestDSWE1127\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1122" + ], + "x-ms-request-id": [ + "5b0318c7-db45-4e2b-ad9e-bb782bffa966" + ], + "x-ms-correlation-request-id": [ + "5b0318c7-db45-4e2b-ad9e-bb782bffa966" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221738Z:5b0318c7-db45-4e2b-ad9e-bb782bffa966" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5124?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUxMjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent77\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5124\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "3dbffcbe-1993-49ae-b662-71fae824a9e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent77\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5124\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A38.5391349Z'\\\"\",\r\n \"name\": \"AzTestDSWE5124\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1121" + ], + "x-ms-request-id": [ + "18b03410-5c7b-457e-9562-f58ab53c0307" + ], + "x-ms-correlation-request-id": [ + "18b03410-5c7b-457e-9562-f58ab53c0307" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221738Z:18b03410-5c7b-457e-9562-f58ab53c0307" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE57?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent78\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE57\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "2645bbc6-b65c-4107-8db1-f92982c4e528" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent78\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE57\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A38.8985257Z'\\\"\",\r\n \"name\": \"AzTestDSWE57\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1120" + ], + "x-ms-request-id": [ + "c6011dde-03bb-4c34-9900-8cf719bbe3e0" + ], + "x-ms-correlation-request-id": [ + "c6011dde-03bb-4c34-9900-8cf719bbe3e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221739Z:c6011dde-03bb-4c34-9900-8cf719bbe3e0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7359?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTczNTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent79\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7359\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "6fbac163-d1d6-4f29-921c-e0773dc29927" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent79\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7359\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A39.2579087Z'\\\"\",\r\n \"name\": \"AzTestDSWE7359\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1119" + ], + "x-ms-request-id": [ + "c153361a-1d19-487b-8c6c-459d8858af6b" + ], + "x-ms-correlation-request-id": [ + "c153361a-1d19-487b-8c6c-459d8858af6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221739Z:c153361a-1d19-487b-8c6c-459d8858af6b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2724?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI3MjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent80\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2724\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "a3f866c6-bb32-4269-8a6d-d9545e3eecb7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent80\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2724\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A39.6195250Z'\\\"\",\r\n \"name\": \"AzTestDSWE2724\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1118" + ], + "x-ms-request-id": [ + "3498b2d0-e396-4956-a763-2b984064b0cb" + ], + "x-ms-correlation-request-id": [ + "3498b2d0-e396-4956-a763-2b984064b0cb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221739Z:3498b2d0-e396-4956-a763-2b984064b0cb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6390?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYzOTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent81\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6390\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "a66288b8-fe62-4a21-8872-8297e506669d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent81\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6390\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A39.9964282Z'\\\"\",\r\n \"name\": \"AzTestDSWE6390\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1117" + ], + "x-ms-request-id": [ + "077fdcdb-89d2-4d75-adb8-176fcd5dfd74" + ], + "x-ms-correlation-request-id": [ + "077fdcdb-89d2-4d75-adb8-176fcd5dfd74" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221740Z:077fdcdb-89d2-4d75-adb8-176fcd5dfd74" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8796?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg3OTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent82\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8796\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "760414c4-cecc-4dfe-ab68-cbb4300f55e0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent82\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8796\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A40.3710823Z'\\\"\",\r\n \"name\": \"AzTestDSWE8796\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1116" + ], + "x-ms-request-id": [ + "ac80a6f3-8390-476c-8cdf-84ae725c55ba" + ], + "x-ms-correlation-request-id": [ + "ac80a6f3-8390-476c-8cdf-84ae725c55ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221740Z:ac80a6f3-8390-476c-8cdf-84ae725c55ba" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7568?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc1Njg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent83\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7568\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "c9802fd9-23b1-4153-acf0-10206a738400" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent83\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7568\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A40.7616958Z'\\\"\",\r\n \"name\": \"AzTestDSWE7568\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1115" + ], + "x-ms-request-id": [ + "79648a9e-56db-4771-b705-791b596315c3" + ], + "x-ms-correlation-request-id": [ + "79648a9e-56db-4771-b705-791b596315c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221740Z:79648a9e-56db-4771-b705-791b596315c3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1188?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTExODg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent84\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1188\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "15c33345-fba5-41ef-a51e-c6f135ea3b48" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent84\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1188\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A41.1210718Z'\\\"\",\r\n \"name\": \"AzTestDSWE1188\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1114" + ], + "x-ms-request-id": [ + "6f1b8415-d387-4644-82bc-521b27b489d0" + ], + "x-ms-correlation-request-id": [ + "6f1b8415-d387-4644-82bc-521b27b489d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221741Z:6f1b8415-d387-4644-82bc-521b27b489d0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3356?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMzNTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent85\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3356\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "07f72abd-842f-4db9-886e-78efdf632efc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent85\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3356\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A41.4804618Z'\\\"\",\r\n \"name\": \"AzTestDSWE3356\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1113" + ], + "x-ms-request-id": [ + "96f0f9a4-d3f3-4b8a-8c23-123966b78b09" + ], + "x-ms-correlation-request-id": [ + "96f0f9a4-d3f3-4b8a-8c23-123966b78b09" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221741Z:96f0f9a4-d3f3-4b8a-8c23-123966b78b09" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE451?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent86\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE451\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "198" + ], + "x-ms-client-request-id": [ + "6d0abbac-831f-429a-be41-863c331819a6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent86\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE451\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A41.8422625Z'\\\"\",\r\n \"name\": \"AzTestDSWE451\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1112" + ], + "x-ms-request-id": [ + "b8432128-e6d6-42ae-8321-521af83f0296" + ], + "x-ms-correlation-request-id": [ + "b8432128-e6d6-42ae-8321-521af83f0296" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221741Z:b8432128-e6d6-42ae-8321-521af83f0296" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6115?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYxMTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent87\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6115\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "f08a9249-70ab-4403-9fef-754358ed8c86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent87\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6115\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A42.1790632Z'\\\"\",\r\n \"name\": \"AzTestDSWE6115\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1111" + ], + "x-ms-request-id": [ + "407f43e6-cdfe-463f-b4e6-3e20006cfff0" + ], + "x-ms-correlation-request-id": [ + "407f43e6-cdfe-463f-b4e6-3e20006cfff0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221742Z:407f43e6-cdfe-463f-b4e6-3e20006cfff0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8203?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgyMDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent88\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8203\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "13ae5f34-70cb-4519-9067-163915c87668" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent88\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8203\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A42.5515703Z'\\\"\",\r\n \"name\": \"AzTestDSWE8203\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1110" + ], + "x-ms-request-id": [ + "a8e8e560-db94-448a-99d6-564f2479190c" + ], + "x-ms-correlation-request-id": [ + "a8e8e560-db94-448a-99d6-564f2479190c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221742Z:a8e8e560-db94-448a-99d6-564f2479190c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8494?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg0OTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent89\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8494\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "8b0704a2-b90d-4fa0-a07a-3d4c46300dc1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent89\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8494\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A42.9080140Z'\\\"\",\r\n \"name\": \"AzTestDSWE8494\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1109" + ], + "x-ms-request-id": [ + "edd788f5-ce55-4afa-8175-ba6900d9d42b" + ], + "x-ms-correlation-request-id": [ + "edd788f5-ce55-4afa-8175-ba6900d9d42b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221743Z:edd788f5-ce55-4afa-8175-ba6900d9d42b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4975?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ5NzU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent90\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4975\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "8972bba0-09e2-444c-bec6-1ba6a190d396" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent90\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4975\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A43.2684188Z'\\\"\",\r\n \"name\": \"AzTestDSWE4975\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1108" + ], + "x-ms-request-id": [ + "0c89bf67-d315-4abb-87ac-a22632deb9eb" + ], + "x-ms-correlation-request-id": [ + "0c89bf67-d315-4abb-87ac-a22632deb9eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221743Z:0c89bf67-d315-4abb-87ac-a22632deb9eb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4828?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ4Mjg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent91\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4828\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "3874426a-f5d4-42b3-951c-f9ae55185b70" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent91\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4828\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A43.6733192Z'\\\"\",\r\n \"name\": \"AzTestDSWE4828\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1107" + ], + "x-ms-request-id": [ + "a356cc40-bf04-407b-9605-8e5dc3453154" + ], + "x-ms-correlation-request-id": [ + "a356cc40-bf04-407b-9605-8e5dc3453154" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221743Z:a356cc40-bf04-407b-9605-8e5dc3453154" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4187?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQxODc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent92\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4187\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "05fd9b69-278e-4d87-be06-1c1afb1b3e34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent92\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4187\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A44.0403278Z'\\\"\",\r\n \"name\": \"AzTestDSWE4187\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1106" + ], + "x-ms-request-id": [ + "fb79bd4a-4593-44be-ac7f-67bb9a1eebae" + ], + "x-ms-correlation-request-id": [ + "fb79bd4a-4593-44be-ac7f-67bb9a1eebae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221744Z:fb79bd4a-4593-44be-ac7f-67bb9a1eebae" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9494?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk0OTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent93\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9494\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "848056cd-8a01-4749-9369-870826f3308e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent93\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9494\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A44.5868173Z'\\\"\",\r\n \"name\": \"AzTestDSWE9494\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1105" + ], + "x-ms-request-id": [ + "88c0a054-a812-4598-997f-22e911331d9d" + ], + "x-ms-correlation-request-id": [ + "88c0a054-a812-4598-997f-22e911331d9d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221744Z:88c0a054-a812-4598-997f-22e911331d9d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2199?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIxOTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent94\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2199\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "c8ef0ccd-c51d-454f-b8cb-1d5f56321082" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent94\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2199\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A44.9405650Z'\\\"\",\r\n \"name\": \"AzTestDSWE2199\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1104" + ], + "x-ms-request-id": [ + "1eea3792-3443-4d51-9677-5bd39eb956e3" + ], + "x-ms-correlation-request-id": [ + "1eea3792-3443-4d51-9677-5bd39eb956e3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221745Z:1eea3792-3443-4d51-9677-5bd39eb956e3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE82?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent95\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE82\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "0b699fbc-ecc2-423e-a1fd-663e21a88e2c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent95\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE82\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A45.3192984Z'\\\"\",\r\n \"name\": \"AzTestDSWE82\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1103" + ], + "x-ms-request-id": [ + "13a27edc-200b-4971-9e17-476ac124202c" + ], + "x-ms-correlation-request-id": [ + "13a27edc-200b-4971-9e17-476ac124202c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221745Z:13a27edc-200b-4971-9e17-476ac124202c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1161?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTExNjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent96\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1161\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "b6ea5ac6-75ac-452c-9246-1ba00aa59c92" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent96\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1161\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A45.7255372Z'\\\"\",\r\n \"name\": \"AzTestDSWE1161\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1102" + ], + "x-ms-request-id": [ + "9e825fe8-5a01-4ccb-838e-48613ce72eea" + ], + "x-ms-correlation-request-id": [ + "9e825fe8-5a01-4ccb-838e-48613ce72eea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221745Z:9e825fe8-5a01-4ccb-838e-48613ce72eea" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1428?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE0Mjg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent97\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1428\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "13c5b307-01c2-4779-90d6-4daac8296d81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent97\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1428\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A46.1005542Z'\\\"\",\r\n \"name\": \"AzTestDSWE1428\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1101" + ], + "x-ms-request-id": [ + "a366d0c2-63dc-461e-9ef1-4f85eb7146c5" + ], + "x-ms-correlation-request-id": [ + "a366d0c2-63dc-461e-9ef1-4f85eb7146c5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221746Z:a366d0c2-63dc-461e-9ef1-4f85eb7146c5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9180?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkxODA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent98\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9180\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "e498db5c-53d4-4bdc-abb1-9645adfe7ff7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent98\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9180\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A46.4599438Z'\\\"\",\r\n \"name\": \"AzTestDSWE9180\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1100" + ], + "x-ms-request-id": [ + "cb5535f2-e774-4bab-93a9-95627ab810d4" + ], + "x-ms-correlation-request-id": [ + "cb5535f2-e774-4bab-93a9-95627ab810d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221746Z:cb5535f2-e774-4bab-93a9-95627ab810d4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2651?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI2NTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent99\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2651\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "e4a85b8c-eca1-4f32-82ef-8c5b12255e39" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent99\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2651\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A46.8349361Z'\\\"\",\r\n \"name\": \"AzTestDSWE2651\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1099" + ], + "x-ms-request-id": [ + "2013f557-d982-4052-96e7-191b0c8791f2" + ], + "x-ms-correlation-request-id": [ + "2013f557-d982-4052-96e7-191b0c8791f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221746Z:2013f557-d982-4052-96e7-191b0c8791f2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5385?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUzODU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent100\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5385\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b05b5d0e-5efd-4326-94b6-ded1972cda72" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent100\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5385\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A47.1942937Z'\\\"\",\r\n \"name\": \"AzTestDSWE5385\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1098" + ], + "x-ms-request-id": [ + "ecf6cabc-a79a-4954-84d4-ccfe6c9d4952" + ], + "x-ms-correlation-request-id": [ + "ecf6cabc-a79a-4954-84d4-ccfe6c9d4952" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221747Z:ecf6cabc-a79a-4954-84d4-ccfe6c9d4952" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5744?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU3NDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent101\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5744\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "e19f8f18-44e7-49dc-a946-31721a8c3c2b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent101\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5744\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A47.5565435Z'\\\"\",\r\n \"name\": \"AzTestDSWE5744\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1097" + ], + "x-ms-request-id": [ + "e2d4fd8e-84af-4d12-9504-0e7d0eb01773" + ], + "x-ms-correlation-request-id": [ + "e2d4fd8e-84af-4d12-9504-0e7d0eb01773" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221747Z:e2d4fd8e-84af-4d12-9504-0e7d0eb01773" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE659?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY1OT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent102\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE659\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "9938177b-800c-4d8c-9444-af5e772f26e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent102\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE659\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A47.9159554Z'\\\"\",\r\n \"name\": \"AzTestDSWE659\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1096" + ], + "x-ms-request-id": [ + "53727d53-b3d4-48b8-bc84-d0420c04062d" + ], + "x-ms-correlation-request-id": [ + "53727d53-b3d4-48b8-bc84-d0420c04062d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221748Z:53727d53-b3d4-48b8-bc84-d0420c04062d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4872?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ4NzI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent103\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4872\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4940a536-3528-4a78-be9a-69065c1d38d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent103\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4872\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A48.2914950Z'\\\"\",\r\n \"name\": \"AzTestDSWE4872\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1095" + ], + "x-ms-request-id": [ + "77742c77-d764-43bc-b50c-2760ad076538" + ], + "x-ms-correlation-request-id": [ + "77742c77-d764-43bc-b50c-2760ad076538" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221748Z:77742c77-d764-43bc-b50c-2760ad076538" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5347?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUzNDc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent104\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5347\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "38ea072d-8acf-49ca-9bdd-9280898c6fc3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent104\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5347\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A48.7133517Z'\\\"\",\r\n \"name\": \"AzTestDSWE5347\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1094" + ], + "x-ms-request-id": [ + "cae5d348-92fc-4caf-9977-b5eb5752655c" + ], + "x-ms-correlation-request-id": [ + "cae5d348-92fc-4caf-9977-b5eb5752655c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221748Z:cae5d348-92fc-4caf-9977-b5eb5752655c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE720?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTcyMD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent105\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE720\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "d77eef25-81e6-4ea2-b8f1-400b742fd99f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent105\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE720\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A49.0727715Z'\\\"\",\r\n \"name\": \"AzTestDSWE720\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1093" + ], + "x-ms-request-id": [ + "3a7eca5e-997a-4c92-a0b5-90b70c6e629b" + ], + "x-ms-correlation-request-id": [ + "3a7eca5e-997a-4c92-a0b5-90b70c6e629b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221749Z:3a7eca5e-997a-4c92-a0b5-90b70c6e629b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1369?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTEzNjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent106\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1369\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "aaac1824-88f4-4ddf-8a9b-5d178710e64f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent106\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1369\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A49.4321440Z'\\\"\",\r\n \"name\": \"AzTestDSWE1369\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1092" + ], + "x-ms-request-id": [ + "5b74a153-ac39-4153-b211-da7e61207c81" + ], + "x-ms-correlation-request-id": [ + "5b74a153-ac39-4153-b211-da7e61207c81" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221749Z:5b74a153-ac39-4153-b211-da7e61207c81" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9022?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkwMjI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent107\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9022\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "8edc31bf-b54e-422b-90e6-59b905788698" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent107\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9022\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A49.8227780Z'\\\"\",\r\n \"name\": \"AzTestDSWE9022\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1091" + ], + "x-ms-request-id": [ + "c2e69dd7-2078-4a70-ba09-ae978c188f59" + ], + "x-ms-correlation-request-id": [ + "c2e69dd7-2078-4a70-ba09-ae978c188f59" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221749Z:c2e69dd7-2078-4a70-ba09-ae978c188f59" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7655?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc2NTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent108\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7655\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "471ea243-1c4e-44e4-90da-ab2e15efdaf7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent108\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7655\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A50.2849652Z'\\\"\",\r\n \"name\": \"AzTestDSWE7655\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1090" + ], + "x-ms-request-id": [ + "6fc1171c-4a1b-433c-a6ee-5970f56d841b" + ], + "x-ms-correlation-request-id": [ + "6fc1171c-4a1b-433c-a6ee-5970f56d841b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221750Z:6fc1171c-4a1b-433c-a6ee-5970f56d841b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5800?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU4MDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent109\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5800\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "aa01f47a-8303-44d8-92a2-03cdf2ed8201" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent109\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5800\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A50.6414287Z'\\\"\",\r\n \"name\": \"AzTestDSWE5800\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1089" + ], + "x-ms-request-id": [ + "af9fd558-4fb9-4db8-801b-01f9f8e2f827" + ], + "x-ms-correlation-request-id": [ + "af9fd558-4fb9-4db8-801b-01f9f8e2f827" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221750Z:af9fd558-4fb9-4db8-801b-01f9f8e2f827" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3170?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMxNzA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent110\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3170\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "58152d36-87a1-405a-9fbe-f89a1e6406d9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent110\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3170\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A51.0451974Z'\\\"\",\r\n \"name\": \"AzTestDSWE3170\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1088" + ], + "x-ms-request-id": [ + "4249c371-0df1-44e8-836f-7333db3380ac" + ], + "x-ms-correlation-request-id": [ + "4249c371-0df1-44e8-836f-7333db3380ac" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221751Z:4249c371-0df1-44e8-836f-7333db3380ac" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9651?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk2NTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent111\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9651\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "de5ea86c-f034-4ecf-b4d3-c2c59b13b917" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent111\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9651\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A51.4535307Z'\\\"\",\r\n \"name\": \"AzTestDSWE9651\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1087" + ], + "x-ms-request-id": [ + "32c1306b-0538-4294-b8b4-24bbfbf10ad6" + ], + "x-ms-correlation-request-id": [ + "32c1306b-0538-4294-b8b4-24bbfbf10ad6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221751Z:32c1306b-0538-4294-b8b4-24bbfbf10ad6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8184?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgxODQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent112\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8184\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "3c9610ee-4baa-46c1-abe1-d1a758af682b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent112\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8184\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A51.8523146Z'\\\"\",\r\n \"name\": \"AzTestDSWE8184\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1086" + ], + "x-ms-request-id": [ + "6802252a-278c-4ccc-bd25-7b2b0e2ab4fe" + ], + "x-ms-correlation-request-id": [ + "6802252a-278c-4ccc-bd25-7b2b0e2ab4fe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221752Z:6802252a-278c-4ccc-bd25-7b2b0e2ab4fe" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8572?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg1NzI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent113\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8572\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "56d2d1dd-db5d-4e69-b1aa-7c89506aa1aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent113\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8572\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A52.3590286Z'\\\"\",\r\n \"name\": \"AzTestDSWE8572\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1085" + ], + "x-ms-request-id": [ + "556d03fc-9876-44fe-b178-4c1a703f6f4f" + ], + "x-ms-correlation-request-id": [ + "556d03fc-9876-44fe-b178-4c1a703f6f4f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221752Z:556d03fc-9876-44fe-b178-4c1a703f6f4f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1323?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTEzMjM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent114\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1323\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "28dd3425-77f6-4908-858a-754a58b33256" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent114\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1323\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A52.7385906Z'\\\"\",\r\n \"name\": \"AzTestDSWE1323\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1084" + ], + "x-ms-request-id": [ + "8b6be49b-b158-4708-8660-95e8f0e0e19a" + ], + "x-ms-correlation-request-id": [ + "8b6be49b-b158-4708-8660-95e8f0e0e19a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221752Z:8b6be49b-b158-4708-8660-95e8f0e0e19a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE163?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE2Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent115\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE163\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "ee4e249b-8c22-4016-8b1d-0522a59e282a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent115\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE163\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A53.1575356Z'\\\"\",\r\n \"name\": \"AzTestDSWE163\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1083" + ], + "x-ms-request-id": [ + "1da17680-06ff-41d2-acf5-7d3c63f249a5" + ], + "x-ms-correlation-request-id": [ + "1da17680-06ff-41d2-acf5-7d3c63f249a5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221753Z:1da17680-06ff-41d2-acf5-7d3c63f249a5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5360?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUzNjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent116\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5360\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f1df88f4-48cc-4a3c-8092-ec4afd7fcf0e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent116\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5360\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A53.5184680Z'\\\"\",\r\n \"name\": \"AzTestDSWE5360\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1082" + ], + "x-ms-request-id": [ + "7cd3fd1f-fea9-4d7a-9c6d-cf5090af957f" + ], + "x-ms-correlation-request-id": [ + "7cd3fd1f-fea9-4d7a-9c6d-cf5090af957f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221753Z:7cd3fd1f-fea9-4d7a-9c6d-cf5090af957f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6636?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY2MzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent117\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6636\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "50717868-a552-461c-befe-6e0e6b3708e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent117\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6636\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A53.9757683Z'\\\"\",\r\n \"name\": \"AzTestDSWE6636\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1081" + ], + "x-ms-request-id": [ + "e65395b3-d01f-497d-9f26-3a031573fa08" + ], + "x-ms-correlation-request-id": [ + "e65395b3-d01f-497d-9f26-3a031573fa08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221754Z:e65395b3-d01f-497d-9f26-3a031573fa08" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7382?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTczODI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent118\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7382\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6cf959a9-b5df-40a8-94a5-a9d4882a6972" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent118\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7382\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A54.3674316Z'\\\"\",\r\n \"name\": \"AzTestDSWE7382\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1080" + ], + "x-ms-request-id": [ + "6286fb34-9994-4554-84c7-8737d3caf223" + ], + "x-ms-correlation-request-id": [ + "6286fb34-9994-4554-84c7-8737d3caf223" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221754Z:6286fb34-9994-4554-84c7-8737d3caf223" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4465?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ0NjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent119\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4465\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6e6b7627-34ca-4d17-8d54-119e03165f95" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent119\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4465\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A54.7117168Z'\\\"\",\r\n \"name\": \"AzTestDSWE4465\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1079" + ], + "x-ms-request-id": [ + "c1a95d0d-709b-4fae-83af-e2c4dd255f50" + ], + "x-ms-correlation-request-id": [ + "c1a95d0d-709b-4fae-83af-e2c4dd255f50" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221754Z:c1a95d0d-709b-4fae-83af-e2c4dd255f50" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3105?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMxMDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent120\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3105\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "e6b2ec97-79bf-4604-93db-9ef187ec86a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent120\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3105\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A55.1023239Z'\\\"\",\r\n \"name\": \"AzTestDSWE3105\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1078" + ], + "x-ms-request-id": [ + "5fd9908b-e9af-4168-ac7a-6915bd632fb4" + ], + "x-ms-correlation-request-id": [ + "5fd9908b-e9af-4168-ac7a-6915bd632fb4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221755Z:5fd9908b-e9af-4168-ac7a-6915bd632fb4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5595?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU1OTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent121\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5595\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "1f1e1a22-6652-4997-baec-1008c9407495" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent121\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5595\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A55.4461109Z'\\\"\",\r\n \"name\": \"AzTestDSWE5595\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1077" + ], + "x-ms-request-id": [ + "88cb16ed-89be-4ac8-b153-24034a44f1d9" + ], + "x-ms-correlation-request-id": [ + "88cb16ed-89be-4ac8-b153-24034a44f1d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221755Z:88cb16ed-89be-4ac8-b153-24034a44f1d9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1244?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTEyNDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent122\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1244\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "71ebebcc-d32c-4d2c-937d-9da8a539fc6a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent122\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1244\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A55.7898652Z'\\\"\",\r\n \"name\": \"AzTestDSWE1244\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1076" + ], + "x-ms-request-id": [ + "ddbb7f78-3c5c-4d4b-8877-3077e002da3e" + ], + "x-ms-correlation-request-id": [ + "ddbb7f78-3c5c-4d4b-8877-3077e002da3e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221755Z:ddbb7f78-3c5c-4d4b-8877-3077e002da3e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2860?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI4NjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent123\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2860\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "409bfac9-cff1-4845-bede-94787bdb9e47" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent123\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2860\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A56.1336218Z'\\\"\",\r\n \"name\": \"AzTestDSWE2860\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1075" + ], + "x-ms-request-id": [ + "ed89583e-0c37-4cec-a901-a4ca1d264f78" + ], + "x-ms-correlation-request-id": [ + "ed89583e-0c37-4cec-a901-a4ca1d264f78" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221756Z:ed89583e-0c37-4cec-a901-a4ca1d264f78" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6326?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYzMjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent124\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6326\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d8b0c20b-0de3-4a24-bcf1-3c66219cd179" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent124\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6326\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A56.4929976Z'\\\"\",\r\n \"name\": \"AzTestDSWE6326\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1074" + ], + "x-ms-request-id": [ + "c6924011-913e-4738-a247-a760028e18b8" + ], + "x-ms-correlation-request-id": [ + "c6924011-913e-4738-a247-a760028e18b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221756Z:c6924011-913e-4738-a247-a760028e18b8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6443?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY0NDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent125\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6443\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "41e8ce43-cdf1-43e6-a021-011295ba38fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent125\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6443\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A56.8523630Z'\\\"\",\r\n \"name\": \"AzTestDSWE6443\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1073" + ], + "x-ms-request-id": [ + "d18f21b6-99bd-442b-8606-bffc3e2e2a5e" + ], + "x-ms-correlation-request-id": [ + "d18f21b6-99bd-442b-8606-bffc3e2e2a5e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221756Z:d18f21b6-99bd-442b-8606-bffc3e2e2a5e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2774?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI3NzQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent126\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2774\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "fa5549a2-e1f6-410e-ac81-cf7d9a766883" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent126\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2774\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A57.2130519Z'\\\"\",\r\n \"name\": \"AzTestDSWE2774\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1072" + ], + "x-ms-request-id": [ + "7f71930d-7e1f-4971-b0a2-ed82a2cc4337" + ], + "x-ms-correlation-request-id": [ + "7f71930d-7e1f-4971-b0a2-ed82a2cc4337" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221757Z:7f71930d-7e1f-4971-b0a2-ed82a2cc4337" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3504?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM1MDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent127\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3504\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "010a4a7a-fd1d-4f96-a10b-e58481c0e9d3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent127\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3504\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A57.5568242Z'\\\"\",\r\n \"name\": \"AzTestDSWE3504\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1071" + ], + "x-ms-request-id": [ + "7bda5f09-a6d7-48d2-8294-16b231b7f433" + ], + "x-ms-correlation-request-id": [ + "7bda5f09-a6d7-48d2-8294-16b231b7f433" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221757Z:7bda5f09-a6d7-48d2-8294-16b231b7f433" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3407?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM0MDc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent128\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3407\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "71c254ed-e033-49ee-8318-c4b2c9e3fa01" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent128\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3407\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A57.9162016Z'\\\"\",\r\n \"name\": \"AzTestDSWE3407\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1070" + ], + "x-ms-request-id": [ + "3c307884-13e6-4320-8e08-162d883e05d7" + ], + "x-ms-correlation-request-id": [ + "3c307884-13e6-4320-8e08-162d883e05d7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221758Z:3c307884-13e6-4320-8e08-162d883e05d7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7752?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc3NTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent129\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7752\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4966da57-4c06-4606-be26-0cba6ec253da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent129\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7752\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A58.3380785Z'\\\"\",\r\n \"name\": \"AzTestDSWE7752\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1069" + ], + "x-ms-request-id": [ + "c67271be-cfb5-4fb3-a0d7-44002d58cd4f" + ], + "x-ms-correlation-request-id": [ + "c67271be-cfb5-4fb3-a0d7-44002d58cd4f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221758Z:c67271be-cfb5-4fb3-a0d7-44002d58cd4f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9697?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk2OTc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent130\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9697\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "876959da-06af-4150-8b16-2a1f2410c21a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent130\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9697\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A58.7130764Z'\\\"\",\r\n \"name\": \"AzTestDSWE9697\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1068" + ], + "x-ms-request-id": [ + "7061dd8e-5c48-4c8b-b6e2-da2eb4151dbb" + ], + "x-ms-correlation-request-id": [ + "7061dd8e-5c48-4c8b-b6e2-da2eb4151dbb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221758Z:7061dd8e-5c48-4c8b-b6e2-da2eb4151dbb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5943?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU5NDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent131\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5943\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d03cde59-7739-4681-8921-f3111b6b3a51" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent131\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5943\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A59.1224182Z'\\\"\",\r\n \"name\": \"AzTestDSWE5943\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1067" + ], + "x-ms-request-id": [ + "276fb6c5-1b8b-4c84-a29b-9512f31e8dba" + ], + "x-ms-correlation-request-id": [ + "276fb6c5-1b8b-4c84-a29b-9512f31e8dba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221759Z:276fb6c5-1b8b-4c84-a29b-9512f31e8dba" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7405?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc0MDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent132\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7405\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "fc501e4b-f681-4470-a9dc-dcf29332ee41" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent132\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7405\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A59.4974075Z'\\\"\",\r\n \"name\": \"AzTestDSWE7405\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1066" + ], + "x-ms-request-id": [ + "10eabc83-f10b-4930-ac01-bbb3e2b308bb" + ], + "x-ms-correlation-request-id": [ + "10eabc83-f10b-4930-ac01-bbb3e2b308bb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221759Z:10eabc83-f10b-4930-ac01-bbb3e2b308bb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1974?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE5NzQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent133\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1974\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "21c20e42-337b-4cc9-99ff-d673caf42a7f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent133\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1974\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A59.8411409Z'\\\"\",\r\n \"name\": \"AzTestDSWE1974\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1065" + ], + "x-ms-request-id": [ + "4a480ab3-3c5a-4f54-9ef4-b232ba3e3fe1" + ], + "x-ms-correlation-request-id": [ + "4a480ab3-3c5a-4f54-9ef4-b232ba3e3fe1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221759Z:4a480ab3-3c5a-4f54-9ef4-b232ba3e3fe1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6979?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY5Nzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent134\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6979\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "cf29f023-cb2c-4dd7-925d-d41beb384cff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent134\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6979\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A00.2005824Z'\\\"\",\r\n \"name\": \"AzTestDSWE6979\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:17:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1064" + ], + "x-ms-request-id": [ + "25e86ffd-4c9f-4613-ba66-adf7e45bc569" + ], + "x-ms-correlation-request-id": [ + "25e86ffd-4c9f-4613-ba66-adf7e45bc569" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221800Z:25e86ffd-4c9f-4613-ba66-adf7e45bc569" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5730?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU3MzA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent135\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5730\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "a6b5bcc3-0b88-481a-9a5e-de50782b781c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent135\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5730\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A00.5599042Z'\\\"\",\r\n \"name\": \"AzTestDSWE5730\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1063" + ], + "x-ms-request-id": [ + "2c614234-2e88-4e6a-9254-e92712a73438" + ], + "x-ms-correlation-request-id": [ + "2c614234-2e88-4e6a-9254-e92712a73438" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221800Z:2c614234-2e88-4e6a-9254-e92712a73438" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3923?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM5MjM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent136\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3923\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "75eb9bf7-4f65-47de-94c7-048dc0571c42" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent136\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3923\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A00.9505725Z'\\\"\",\r\n \"name\": \"AzTestDSWE3923\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1062" + ], + "x-ms-request-id": [ + "f3e7b428-55ad-4bf9-babb-33c24d24056f" + ], + "x-ms-correlation-request-id": [ + "f3e7b428-55ad-4bf9-babb-33c24d24056f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221801Z:f3e7b428-55ad-4bf9-babb-33c24d24056f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2220?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIyMjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent137\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2220\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f5227e0e-5731-40d4-ad67-df373c860e62" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent137\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2220\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A01.2943208Z'\\\"\",\r\n \"name\": \"AzTestDSWE2220\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1061" + ], + "x-ms-request-id": [ + "bb6a1759-3e77-42a9-9b1c-088ebafd0049" + ], + "x-ms-correlation-request-id": [ + "bb6a1759-3e77-42a9-9b1c-088ebafd0049" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221801Z:bb6a1759-3e77-42a9-9b1c-088ebafd0049" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1986?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE5ODY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent138\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1986\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "1f24d915-000b-4771-bd6b-488c9f1d6c87" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent138\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1986\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A01.6536734Z'\\\"\",\r\n \"name\": \"AzTestDSWE1986\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1060" + ], + "x-ms-request-id": [ + "39862f24-c6fa-4c5e-bc9f-fd94ad4940f1" + ], + "x-ms-correlation-request-id": [ + "39862f24-c6fa-4c5e-bc9f-fd94ad4940f1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221801Z:39862f24-c6fa-4c5e-bc9f-fd94ad4940f1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1427?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE0Mjc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent139\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1427\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f5cfca8c-970e-4184-a717-58e022573a34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent139\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1427\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A02.0443065Z'\\\"\",\r\n \"name\": \"AzTestDSWE1427\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1059" + ], + "x-ms-request-id": [ + "7e502987-3512-4aa5-970e-f01313c34670" + ], + "x-ms-correlation-request-id": [ + "7e502987-3512-4aa5-970e-f01313c34670" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221802Z:7e502987-3512-4aa5-970e-f01313c34670" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8459?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg0NTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent140\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8459\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "9c7294ff-1082-420c-85e8-d9452d5fd522" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent140\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8459\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A02.3907297Z'\\\"\",\r\n \"name\": \"AzTestDSWE8459\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1058" + ], + "x-ms-request-id": [ + "09bf441a-cd50-47d4-ac3a-61360c0ad181" + ], + "x-ms-correlation-request-id": [ + "09bf441a-cd50-47d4-ac3a-61360c0ad181" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221802Z:09bf441a-cd50-47d4-ac3a-61360c0ad181" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2402?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI0MDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent141\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2402\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "936f87a0-3afd-4a97-8f3c-3f36003ec56e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent141\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2402\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A02.7345069Z'\\\"\",\r\n \"name\": \"AzTestDSWE2402\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1057" + ], + "x-ms-request-id": [ + "369c708e-07c9-4da7-ae7a-eb8c225fff4b" + ], + "x-ms-correlation-request-id": [ + "369c708e-07c9-4da7-ae7a-eb8c225fff4b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221802Z:369c708e-07c9-4da7-ae7a-eb8c225fff4b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5323?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUzMjM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent142\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5323\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "7438e4e2-86cf-4a26-b7a1-9d3106186213" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent142\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5323\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A03.0970071Z'\\\"\",\r\n \"name\": \"AzTestDSWE5323\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1056" + ], + "x-ms-request-id": [ + "b42fd7f5-2c69-47cc-8922-85efe9603a06" + ], + "x-ms-correlation-request-id": [ + "b42fd7f5-2c69-47cc-8922-85efe9603a06" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221803Z:b42fd7f5-2c69-47cc-8922-85efe9603a06" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6643?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY2NDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent143\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6643\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4f895dc6-5918-471a-86f6-0025174728db" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent143\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6643\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A03.4563905Z'\\\"\",\r\n \"name\": \"AzTestDSWE6643\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1055" + ], + "x-ms-request-id": [ + "bc5ae648-0b45-470d-9928-494602800516" + ], + "x-ms-correlation-request-id": [ + "bc5ae648-0b45-470d-9928-494602800516" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221803Z:bc5ae648-0b45-470d-9928-494602800516" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5614?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU2MTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent144\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5614\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "2c6697be-04ea-4f59-a30f-c2d8d3d30025" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent144\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5614\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A04.0501196Z'\\\"\",\r\n \"name\": \"AzTestDSWE5614\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1054" + ], + "x-ms-request-id": [ + "1ae35879-35f7-4f9f-9493-502de53cdfc1" + ], + "x-ms-correlation-request-id": [ + "1ae35879-35f7-4f9f-9493-502de53cdfc1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221804Z:1ae35879-35f7-4f9f-9493-502de53cdfc1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8171?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgxNzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent145\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8171\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "db385255-d638-4047-8b0e-ffc5fcafea26" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent145\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8171\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A04.4095021Z'\\\"\",\r\n \"name\": \"AzTestDSWE8171\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1053" + ], + "x-ms-request-id": [ + "ca9dfced-b037-4e1c-b0bf-20fa9db6112c" + ], + "x-ms-correlation-request-id": [ + "ca9dfced-b037-4e1c-b0bf-20fa9db6112c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221804Z:ca9dfced-b037-4e1c-b0bf-20fa9db6112c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4839?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ4Mzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent146\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4839\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "65e33744-34ee-468f-a13f-ab4338e6192e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent146\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4839\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A04.7533177Z'\\\"\",\r\n \"name\": \"AzTestDSWE4839\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1052" + ], + "x-ms-request-id": [ + "32e96710-1c8a-4fbb-8a13-8f2cd566864c" + ], + "x-ms-correlation-request-id": [ + "32e96710-1c8a-4fbb-8a13-8f2cd566864c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221804Z:32e96710-1c8a-4fbb-8a13-8f2cd566864c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9918?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk5MTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent147\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9918\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f1f8d82f-d353-42a6-906b-45d7ff23a49f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent147\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9918\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A05.1126778Z'\\\"\",\r\n \"name\": \"AzTestDSWE9918\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1051" + ], + "x-ms-request-id": [ + "46336b2c-e8e4-457e-ba74-f7926680d00c" + ], + "x-ms-correlation-request-id": [ + "46336b2c-e8e4-457e-ba74-f7926680d00c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221805Z:46336b2c-e8e4-457e-ba74-f7926680d00c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4791?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ3OTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent148\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4791\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "950db1b9-e59c-45b3-b17c-0e9a1b6eaf1e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent148\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4791\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A05.4720687Z'\\\"\",\r\n \"name\": \"AzTestDSWE4791\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1050" + ], + "x-ms-request-id": [ + "32849f82-5ff1-4414-bcee-e31fda8708a7" + ], + "x-ms-correlation-request-id": [ + "32849f82-5ff1-4414-bcee-e31fda8708a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221805Z:32849f82-5ff1-4414-bcee-e31fda8708a7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1797?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE3OTc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent149\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1797\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "7d58cfa7-de6b-4e1a-8040-84b6555e57eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent149\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1797\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A05.8314052Z'\\\"\",\r\n \"name\": \"AzTestDSWE1797\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1049" + ], + "x-ms-request-id": [ + "9186855c-36f2-4886-be22-2aaeebefeb72" + ], + "x-ms-correlation-request-id": [ + "9186855c-36f2-4886-be22-2aaeebefeb72" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221805Z:9186855c-36f2-4886-be22-2aaeebefeb72" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2280?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIyODA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent150\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2280\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "26b1bc85-94a4-4a34-b933-753cf6f866b1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent150\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2280\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A06.1751833Z'\\\"\",\r\n \"name\": \"AzTestDSWE2280\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1048" + ], + "x-ms-request-id": [ + "ba0c2455-d7d5-498a-89a6-33707b8b52f0" + ], + "x-ms-correlation-request-id": [ + "ba0c2455-d7d5-498a-89a6-33707b8b52f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221806Z:ba0c2455-d7d5-498a-89a6-33707b8b52f0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE148?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE0OD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent151\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE148\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "8dba8ae4-e426-4459-9b77-11de65e238ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent151\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE148\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A06.7533240Z'\\\"\",\r\n \"name\": \"AzTestDSWE148\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1047" + ], + "x-ms-request-id": [ + "8bf8c736-125b-4f69-9eb0-ecc09acc0686" + ], + "x-ms-correlation-request-id": [ + "8bf8c736-125b-4f69-9eb0-ecc09acc0686" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221806Z:8bf8c736-125b-4f69-9eb0-ecc09acc0686" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9414?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk0MTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent152\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9414\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "8525cb04-52c5-4ffb-8193-5f8d107cda38" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent152\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9414\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A07.1127045Z'\\\"\",\r\n \"name\": \"AzTestDSWE9414\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1046" + ], + "x-ms-request-id": [ + "7b623400-e93d-48a8-85c8-3cc63e287ba9" + ], + "x-ms-correlation-request-id": [ + "7b623400-e93d-48a8-85c8-3cc63e287ba9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221807Z:7b623400-e93d-48a8-85c8-3cc63e287ba9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2012?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIwMTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent153\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2012\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b901186c-43c1-4842-98e6-5dabce804abc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent153\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2012\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A07.4756902Z'\\\"\",\r\n \"name\": \"AzTestDSWE2012\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1045" + ], + "x-ms-request-id": [ + "d31ebbca-c30e-44eb-a762-b870f8ce7003" + ], + "x-ms-correlation-request-id": [ + "d31ebbca-c30e-44eb-a762-b870f8ce7003" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221807Z:d31ebbca-c30e-44eb-a762-b870f8ce7003" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9020?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkwMjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent154\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9020\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "10783f8f-acb4-46af-814d-9ceaa128af6d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent154\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9020\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A07.8194761Z'\\\"\",\r\n \"name\": \"AzTestDSWE9020\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1044" + ], + "x-ms-request-id": [ + "56485cd0-8a60-44ce-815e-6430824d619c" + ], + "x-ms-correlation-request-id": [ + "56485cd0-8a60-44ce-815e-6430824d619c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221807Z:56485cd0-8a60-44ce-815e-6430824d619c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4275?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQyNzU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent155\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4275\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "e5c2aad0-6ced-468b-8e15-38d2a9b7a8c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent155\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4275\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A08.1788668Z'\\\"\",\r\n \"name\": \"AzTestDSWE4275\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1043" + ], + "x-ms-request-id": [ + "9042f248-9091-4955-9538-d6af4c5486d5" + ], + "x-ms-correlation-request-id": [ + "9042f248-9091-4955-9538-d6af4c5486d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221808Z:9042f248-9091-4955-9538-d6af4c5486d5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8593?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg1OTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent156\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8593\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "bac6592e-bcb0-44c3-95d3-163e7756e9b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent156\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8593\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A08.5295489Z'\\\"\",\r\n \"name\": \"AzTestDSWE8593\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1042" + ], + "x-ms-request-id": [ + "b98b1caa-204b-456d-8798-f638126dd045" + ], + "x-ms-correlation-request-id": [ + "b98b1caa-204b-456d-8798-f638126dd045" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221808Z:b98b1caa-204b-456d-8798-f638126dd045" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5518?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU1MTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent157\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5518\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "e2bc072c-1c12-42c1-b1ef-5f2226c972df" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent157\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5518\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A08.8905076Z'\\\"\",\r\n \"name\": \"AzTestDSWE5518\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1041" + ], + "x-ms-request-id": [ + "a6201339-68bc-47ed-86db-882feecc66d8" + ], + "x-ms-correlation-request-id": [ + "a6201339-68bc-47ed-86db-882feecc66d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221809Z:a6201339-68bc-47ed-86db-882feecc66d8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4248?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQyNDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent158\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4248\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4a7e8657-1a63-4da3-9d48-9d3ad34ba619" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent158\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4248\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A09.2342495Z'\\\"\",\r\n \"name\": \"AzTestDSWE4248\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1040" + ], + "x-ms-request-id": [ + "7363ed20-526f-4d7a-aa59-2cc10d7a7203" + ], + "x-ms-correlation-request-id": [ + "7363ed20-526f-4d7a-aa59-2cc10d7a7203" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221809Z:7363ed20-526f-4d7a-aa59-2cc10d7a7203" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8047?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgwNDc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent159\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8047\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b67c644e-3531-4bfc-83c1-92b46bdfd2c4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent159\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8047\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A09.5936131Z'\\\"\",\r\n \"name\": \"AzTestDSWE8047\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1039" + ], + "x-ms-request-id": [ + "1531b162-432d-4272-aee9-0a177b71b65d" + ], + "x-ms-correlation-request-id": [ + "1531b162-432d-4272-aee9-0a177b71b65d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221809Z:1531b162-432d-4272-aee9-0a177b71b65d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3472?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM0NzI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent160\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3472\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "af32adc4-9726-4807-8d21-15ceb9868b85" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent160\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3472\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A09.9506712Z'\\\"\",\r\n \"name\": \"AzTestDSWE3472\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1038" + ], + "x-ms-request-id": [ + "2815c61d-f007-4fda-a514-97a5b88559e6" + ], + "x-ms-correlation-request-id": [ + "2815c61d-f007-4fda-a514-97a5b88559e6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221810Z:2815c61d-f007-4fda-a514-97a5b88559e6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3707?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM3MDc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent161\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3707\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "772ea017-7938-437c-9cf3-0d9d2afd9ea7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent161\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3707\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A10.3494317Z'\\\"\",\r\n \"name\": \"AzTestDSWE3707\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1037" + ], + "x-ms-request-id": [ + "9805390b-e845-478c-a263-da91d7228c1c" + ], + "x-ms-correlation-request-id": [ + "9805390b-e845-478c-a263-da91d7228c1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221810Z:9805390b-e845-478c-a263-da91d7228c1c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE778?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc3OD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent162\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE778\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "b47be974-2e6d-4adb-9c88-165367d8c21f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent162\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE778\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A10.6853226Z'\\\"\",\r\n \"name\": \"AzTestDSWE778\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1036" + ], + "x-ms-request-id": [ + "6c6e3939-477b-42d6-93f2-68aeda57b7d8" + ], + "x-ms-correlation-request-id": [ + "6c6e3939-477b-42d6-93f2-68aeda57b7d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221810Z:6c6e3939-477b-42d6-93f2-68aeda57b7d8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6597?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY1OTc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent163\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6597\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "415fdb32-8a25-49db-8932-fbfd7b80613f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent163\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6597\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A11.0447065Z'\\\"\",\r\n \"name\": \"AzTestDSWE6597\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1035" + ], + "x-ms-request-id": [ + "451bc167-d123-4a83-b85b-c180826ca585" + ], + "x-ms-correlation-request-id": [ + "451bc167-d123-4a83-b85b-c180826ca585" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221811Z:451bc167-d123-4a83-b85b-c180826ca585" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4343?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQzNDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent164\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4343\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b3f506ef-80bf-4cba-aef0-62d5ed0610a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent164\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4343\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A11.3930283Z'\\\"\",\r\n \"name\": \"AzTestDSWE4343\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1034" + ], + "x-ms-request-id": [ + "c5387f0b-8103-4c2e-a247-ff1e3dd387a1" + ], + "x-ms-correlation-request-id": [ + "c5387f0b-8103-4c2e-a247-ff1e3dd387a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221811Z:c5387f0b-8103-4c2e-a247-ff1e3dd387a1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1628?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE2Mjg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent165\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1628\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "e97cd652-4f93-459b-b719-2d14209a4d7c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent165\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1628\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A11.7842238Z'\\\"\",\r\n \"name\": \"AzTestDSWE1628\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1033" + ], + "x-ms-request-id": [ + "69d86b6a-aa1f-4c1a-ac40-636bc6560291" + ], + "x-ms-correlation-request-id": [ + "69d86b6a-aa1f-4c1a-ac40-636bc6560291" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221811Z:69d86b6a-aa1f-4c1a-ac40-636bc6560291" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6238?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYyMzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent166\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6238\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "643eb645-810c-4c94-bf91-d39d8f2bf9cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent166\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6238\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A12.1795046Z'\\\"\",\r\n \"name\": \"AzTestDSWE6238\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1032" + ], + "x-ms-request-id": [ + "caaf3a67-7f16-4b29-812f-09ded6d9b2f2" + ], + "x-ms-correlation-request-id": [ + "caaf3a67-7f16-4b29-812f-09ded6d9b2f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221812Z:caaf3a67-7f16-4b29-812f-09ded6d9b2f2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3139?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMxMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent167\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3139\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "103d714d-dcb1-4034-9869-c444c75d8764" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent167\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3139\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A12.5232463Z'\\\"\",\r\n \"name\": \"AzTestDSWE3139\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1031" + ], + "x-ms-request-id": [ + "2b8c2095-1843-4fe9-bed0-59da275f2676" + ], + "x-ms-correlation-request-id": [ + "2b8c2095-1843-4fe9-bed0-59da275f2676" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221812Z:2b8c2095-1843-4fe9-bed0-59da275f2676" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6168?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYxNjg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent168\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6168\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6636e174-9179-4098-b8ca-165bb9d677b0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent168\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6168\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A12.8825977Z'\\\"\",\r\n \"name\": \"AzTestDSWE6168\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1030" + ], + "x-ms-request-id": [ + "460030cc-c11c-4253-afc5-08751cd0784e" + ], + "x-ms-correlation-request-id": [ + "460030cc-c11c-4253-afc5-08751cd0784e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221813Z:460030cc-c11c-4253-afc5-08751cd0784e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5396?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUzOTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent169\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5396\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ec58d430-34d8-4278-82bc-1eb3a84317c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent169\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5396\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A13.2263773Z'\\\"\",\r\n \"name\": \"AzTestDSWE5396\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1029" + ], + "x-ms-request-id": [ + "6f52071a-b422-4303-a944-827bd553e02f" + ], + "x-ms-correlation-request-id": [ + "6f52071a-b422-4303-a944-827bd553e02f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221813Z:6f52071a-b422-4303-a944-827bd553e02f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3037?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMwMzc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent170\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3037\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ac3cf169-75d0-4b62-9dcb-99597ed5e9a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent170\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3037\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A13.5857744Z'\\\"\",\r\n \"name\": \"AzTestDSWE3037\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1028" + ], + "x-ms-request-id": [ + "307337bc-a7a5-4f7c-ad57-7c4cb6de8dfc" + ], + "x-ms-correlation-request-id": [ + "307337bc-a7a5-4f7c-ad57-7c4cb6de8dfc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221813Z:307337bc-a7a5-4f7c-ad57-7c4cb6de8dfc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4644?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ2NDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent171\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4644\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "59a29158-7061-468a-9792-c43e358e0c2c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent171\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4644\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A13.9763683Z'\\\"\",\r\n \"name\": \"AzTestDSWE4644\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1027" + ], + "x-ms-request-id": [ + "d2a660a4-0588-40c9-9f78-06dfda075eb1" + ], + "x-ms-correlation-request-id": [ + "d2a660a4-0588-40c9-9f78-06dfda075eb1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221814Z:d2a660a4-0588-40c9-9f78-06dfda075eb1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3193?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMxOTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent172\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3193\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "dfb8fa22-4698-4365-b886-987b539cd856" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent172\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3193\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A14.3290851Z'\\\"\",\r\n \"name\": \"AzTestDSWE3193\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1026" + ], + "x-ms-request-id": [ + "1a9f17d0-e922-4c73-96b4-c95666819a17" + ], + "x-ms-correlation-request-id": [ + "1a9f17d0-e922-4c73-96b4-c95666819a17" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221814Z:1a9f17d0-e922-4c73-96b4-c95666819a17" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5919?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU5MTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent173\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5919\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4e688d78-5ef8-4f50-ac17-04c44e9ffe1d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent173\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5919\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A14.6855104Z'\\\"\",\r\n \"name\": \"AzTestDSWE5919\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1025" + ], + "x-ms-request-id": [ + "819aa1a5-aad5-4fdb-a2aa-8507f89211d0" + ], + "x-ms-correlation-request-id": [ + "819aa1a5-aad5-4fdb-a2aa-8507f89211d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221814Z:819aa1a5-aad5-4fdb-a2aa-8507f89211d0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7536?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc1MzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent174\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7536\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4075ce93-080a-4372-a881-3bf26b47c5bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent174\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7536\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A15.0414209Z'\\\"\",\r\n \"name\": \"AzTestDSWE7536\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1024" + ], + "x-ms-request-id": [ + "cb8c0797-8f26-482c-91eb-a664c6204608" + ], + "x-ms-correlation-request-id": [ + "cb8c0797-8f26-482c-91eb-a664c6204608" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221815Z:cb8c0797-8f26-482c-91eb-a664c6204608" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9681?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk2ODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent175\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9681\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "70866061-904f-47c1-8c26-10e4b182c006" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent175\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9681\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A15.4007955Z'\\\"\",\r\n \"name\": \"AzTestDSWE9681\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1023" + ], + "x-ms-request-id": [ + "f7a7b6a1-0265-47d3-8d3c-87530887474a" + ], + "x-ms-correlation-request-id": [ + "f7a7b6a1-0265-47d3-8d3c-87530887474a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221815Z:f7a7b6a1-0265-47d3-8d3c-87530887474a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE829?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgyOT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent176\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE829\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "2b4ee7e0-2d77-4d0e-9ae0-5352a92de3d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent176\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE829\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A15.7757891Z'\\\"\",\r\n \"name\": \"AzTestDSWE829\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1022" + ], + "x-ms-request-id": [ + "acf40791-c41d-4499-95ab-d0a898e99334" + ], + "x-ms-correlation-request-id": [ + "acf40791-c41d-4499-95ab-d0a898e99334" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221815Z:acf40791-c41d-4499-95ab-d0a898e99334" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4602?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ2MDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent177\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4602\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "858ca6f5-c602-4938-aeff-830e11560ff4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent177\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4602\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A16.1362991Z'\\\"\",\r\n \"name\": \"AzTestDSWE4602\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1021" + ], + "x-ms-request-id": [ + "03ca896d-be90-4d4e-af98-f82aee25bd1c" + ], + "x-ms-correlation-request-id": [ + "03ca896d-be90-4d4e-af98-f82aee25bd1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221816Z:03ca896d-be90-4d4e-af98-f82aee25bd1c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8664?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg2NjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent178\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8664\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d264bd39-1da9-4a22-b383-3c684b517953" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent178\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8664\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A16.4957069Z'\\\"\",\r\n \"name\": \"AzTestDSWE8664\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1020" + ], + "x-ms-request-id": [ + "14ec60fb-1da2-47bb-8273-b66c00f37e57" + ], + "x-ms-correlation-request-id": [ + "14ec60fb-1da2-47bb-8273-b66c00f37e57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221816Z:14ec60fb-1da2-47bb-8273-b66c00f37e57" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3487?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM0ODc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent179\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3487\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4ee0f680-63c7-481e-bb4e-6f0acb01d1cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent179\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3487\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A16.8863096Z'\\\"\",\r\n \"name\": \"AzTestDSWE3487\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1019" + ], + "x-ms-request-id": [ + "ce7f31ac-96e7-484f-b582-f264121d8683" + ], + "x-ms-correlation-request-id": [ + "ce7f31ac-96e7-484f-b582-f264121d8683" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221817Z:ce7f31ac-96e7-484f-b582-f264121d8683" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1951?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE5NTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent180\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1951\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "a9f6ee4a-e5ff-44a4-8e91-3724a6533177" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent180\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1951\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A17.2613391Z'\\\"\",\r\n \"name\": \"AzTestDSWE1951\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1018" + ], + "x-ms-request-id": [ + "9e282918-b76b-4701-80e4-51d813fc3854" + ], + "x-ms-correlation-request-id": [ + "9e282918-b76b-4701-80e4-51d813fc3854" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221817Z:9e282918-b76b-4701-80e4-51d813fc3854" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4906?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ5MDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent181\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4906\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "aa919dcb-7c83-4d27-a186-af6cfa93eb6a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent181\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4906\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A17.6889445Z'\\\"\",\r\n \"name\": \"AzTestDSWE4906\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1017" + ], + "x-ms-request-id": [ + "0885f414-e615-4488-9416-496be116b3d5" + ], + "x-ms-correlation-request-id": [ + "0885f414-e615-4488-9416-496be116b3d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221817Z:0885f414-e615-4488-9416-496be116b3d5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4146?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQxNDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent182\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4146\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d0990f94-31d1-4f70-b61a-0d61c5f68a69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent182\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4146\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A18.0483102Z'\\\"\",\r\n \"name\": \"AzTestDSWE4146\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1016" + ], + "x-ms-request-id": [ + "9f8f7b12-119d-467b-bb53-aa6e979b9096" + ], + "x-ms-correlation-request-id": [ + "9f8f7b12-119d-467b-bb53-aa6e979b9096" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221818Z:9f8f7b12-119d-467b-bb53-aa6e979b9096" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9219?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkyMTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent183\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9219\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "bac3f367-dede-417c-ae20-f8befa221ae8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent183\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9219\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A18.4077088Z'\\\"\",\r\n \"name\": \"AzTestDSWE9219\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1015" + ], + "x-ms-request-id": [ + "6c458fc4-9b5f-4d32-96f4-f2813c8a5774" + ], + "x-ms-correlation-request-id": [ + "6c458fc4-9b5f-4d32-96f4-f2813c8a5774" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221818Z:6c458fc4-9b5f-4d32-96f4-f2813c8a5774" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9692?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk2OTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent184\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9692\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "e25836fa-d76d-4b83-b0e8-ede3597bf17c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent184\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9692\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A18.7983298Z'\\\"\",\r\n \"name\": \"AzTestDSWE9692\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1014" + ], + "x-ms-request-id": [ + "9ee72583-8a00-452e-b02e-ba9d6dc9605f" + ], + "x-ms-correlation-request-id": [ + "9ee72583-8a00-452e-b02e-ba9d6dc9605f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221818Z:9ee72583-8a00-452e-b02e-ba9d6dc9605f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6830?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY4MzA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent185\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6830\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "2ee9ee46-0e09-4658-8f9d-96c502776eda" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent185\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6830\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A19.1577051Z'\\\"\",\r\n \"name\": \"AzTestDSWE6830\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1013" + ], + "x-ms-request-id": [ + "ca9ada18-6f99-4b8f-87de-a25f5bdd94ff" + ], + "x-ms-correlation-request-id": [ + "ca9ada18-6f99-4b8f-87de-a25f5bdd94ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221819Z:ca9ada18-6f99-4b8f-87de-a25f5bdd94ff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6315?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYzMTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent186\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6315\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "a66a0a2f-019f-4765-9e5e-041d8ab4c8c0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent186\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6315\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A19.5170845Z'\\\"\",\r\n \"name\": \"AzTestDSWE6315\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1012" + ], + "x-ms-request-id": [ + "4882b5ae-5e4d-42ab-ba35-c2c9baeeefcf" + ], + "x-ms-correlation-request-id": [ + "4882b5ae-5e4d-42ab-ba35-c2c9baeeefcf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221819Z:4882b5ae-5e4d-42ab-ba35-c2c9baeeefcf" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1911?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE5MTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent187\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1911\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "8f8fc615-8afa-4253-8241-8f36c729df9b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent187\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1911\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A19.8608506Z'\\\"\",\r\n \"name\": \"AzTestDSWE1911\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1011" + ], + "x-ms-request-id": [ + "e9ea6cde-38dd-49b6-b6af-0c84989ce833" + ], + "x-ms-correlation-request-id": [ + "e9ea6cde-38dd-49b6-b6af-0c84989ce833" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221819Z:e9ea6cde-38dd-49b6-b6af-0c84989ce833" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3198?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMxOTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent188\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3198\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "186f0ee1-d5a6-4e76-ab9a-0e3d89f5d3b2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent188\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3198\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A20.2213415Z'\\\"\",\r\n \"name\": \"AzTestDSWE3198\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1010" + ], + "x-ms-request-id": [ + "5155ad68-53df-443d-a329-059fac0f62b4" + ], + "x-ms-correlation-request-id": [ + "5155ad68-53df-443d-a329-059fac0f62b4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221820Z:5155ad68-53df-443d-a329-059fac0f62b4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6192?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYxOTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent189\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6192\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b9e4f68a-e560-48f6-aefe-587200696d41" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent189\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6192\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A20.7057425Z'\\\"\",\r\n \"name\": \"AzTestDSWE6192\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1009" + ], + "x-ms-request-id": [ + "d9ca5e67-89c8-4d8f-8450-fcd629a45085" + ], + "x-ms-correlation-request-id": [ + "d9ca5e67-89c8-4d8f-8450-fcd629a45085" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221821Z:d9ca5e67-89c8-4d8f-8450-fcd629a45085" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3392?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMzOTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent190\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3392\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "fc067801-87ad-4794-9ffc-07cf210276f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent190\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3392\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A21.3151165Z'\\\"\",\r\n \"name\": \"AzTestDSWE3392\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1008" + ], + "x-ms-request-id": [ + "50b36a71-adf2-4134-afad-cf47fce8ffd1" + ], + "x-ms-correlation-request-id": [ + "50b36a71-adf2-4134-afad-cf47fce8ffd1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221821Z:50b36a71-adf2-4134-afad-cf47fce8ffd1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5908?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU5MDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent191\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5908\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "e17e201b-a398-4ac4-8c62-685163a7b71b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent191\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5908\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A21.6692631Z'\\\"\",\r\n \"name\": \"AzTestDSWE5908\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1007" + ], + "x-ms-request-id": [ + "b04ea233-4543-4797-80ae-f7f539078df9" + ], + "x-ms-correlation-request-id": [ + "b04ea233-4543-4797-80ae-f7f539078df9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221821Z:b04ea233-4543-4797-80ae-f7f539078df9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4211?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQyMTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent192\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4211\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "fbb12a09-c986-4fb7-ada6-40b5d4c19c27" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent192\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4211\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A22.0680863Z'\\\"\",\r\n \"name\": \"AzTestDSWE4211\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1006" + ], + "x-ms-request-id": [ + "8efdb2c2-88c9-4d61-8248-7f73deb55403" + ], + "x-ms-correlation-request-id": [ + "8efdb2c2-88c9-4d61-8248-7f73deb55403" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221822Z:8efdb2c2-88c9-4d61-8248-7f73deb55403" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4353?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQzNTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent193\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4353\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "baca120c-db17-46f5-b5fc-11b06e7423ea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent193\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4353\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A22.4130296Z'\\\"\",\r\n \"name\": \"AzTestDSWE4353\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1005" + ], + "x-ms-request-id": [ + "272664f5-cb66-49f5-96b8-19e5562d53cc" + ], + "x-ms-correlation-request-id": [ + "272664f5-cb66-49f5-96b8-19e5562d53cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221822Z:272664f5-cb66-49f5-96b8-19e5562d53cc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1851?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE4NTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent194\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1851\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "a8e052a8-2c17-4625-b7f1-ab2a63132348" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent194\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1851\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A22.8192973Z'\\\"\",\r\n \"name\": \"AzTestDSWE1851\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1004" + ], + "x-ms-request-id": [ + "eaf3749a-60e5-4eb5-896e-1431bb48da45" + ], + "x-ms-correlation-request-id": [ + "eaf3749a-60e5-4eb5-896e-1431bb48da45" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221822Z:eaf3749a-60e5-4eb5-896e-1431bb48da45" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1615?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE2MTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent195\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1615\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4d290b20-0637-46ad-967a-0c2b011d6dde" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent195\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1615\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A23.1786368Z'\\\"\",\r\n \"name\": \"AzTestDSWE1615\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1003" + ], + "x-ms-request-id": [ + "5f932a4b-bc39-4376-a8f3-7163ca9f8635" + ], + "x-ms-correlation-request-id": [ + "5f932a4b-bc39-4376-a8f3-7163ca9f8635" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221823Z:5f932a4b-bc39-4376-a8f3-7163ca9f8635" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5864?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU4NjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent196\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5864\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "cf259a51-a508-47c3-9454-3d316f52909a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent196\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5864\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A23.5583427Z'\\\"\",\r\n \"name\": \"AzTestDSWE5864\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1002" + ], + "x-ms-request-id": [ + "7ae3883b-fc8c-4a05-b982-c33a3a5e0308" + ], + "x-ms-correlation-request-id": [ + "7ae3883b-fc8c-4a05-b982-c33a3a5e0308" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221823Z:7ae3883b-fc8c-4a05-b982-c33a3a5e0308" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9015?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkwMTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent197\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9015\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d49923c3-23cb-41df-ba6c-244b1236de3d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent197\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9015\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A24.0427720Z'\\\"\",\r\n \"name\": \"AzTestDSWE9015\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1001" + ], + "x-ms-request-id": [ + "08340250-ffe0-49c7-ba25-b333a4124875" + ], + "x-ms-correlation-request-id": [ + "08340250-ffe0-49c7-ba25-b333a4124875" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221824Z:08340250-ffe0-49c7-ba25-b333a4124875" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3828?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM4Mjg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent198\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3828\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "3b18b114-6b7f-4e25-b92b-26c40697fa78" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent198\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3828\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A24.4429733Z'\\\"\",\r\n \"name\": \"AzTestDSWE3828\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1000" + ], + "x-ms-request-id": [ + "5092e9a5-28e0-46e0-b9d0-4e8525096156" + ], + "x-ms-correlation-request-id": [ + "5092e9a5-28e0-46e0-b9d0-4e8525096156" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221824Z:5092e9a5-28e0-46e0-b9d0-4e8525096156" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3210?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMyMTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent199\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3210\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "623b6f0d-afbf-42a8-a06a-db277453c84a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent199\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3210\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A24.8023917Z'\\\"\",\r\n \"name\": \"AzTestDSWE3210\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "999" + ], + "x-ms-request-id": [ + "f0526ec7-995e-48f0-acca-61e48794958f" + ], + "x-ms-correlation-request-id": [ + "f0526ec7-995e-48f0-acca-61e48794958f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221824Z:f0526ec7-995e-48f0-acca-61e48794958f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3680?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM2ODA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent200\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3680\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f499f208-260f-4f3a-8adc-2d3151d7f1f2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent200\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3680\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A25.1461218Z'\\\"\",\r\n \"name\": \"AzTestDSWE3680\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "998" + ], + "x-ms-request-id": [ + "c076365b-b713-442f-b62e-8f3736de0b81" + ], + "x-ms-correlation-request-id": [ + "c076365b-b713-442f-b62e-8f3736de0b81" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221825Z:c076365b-b713-442f-b62e-8f3736de0b81" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2660?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI2NjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent201\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2660\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f0556b75-ac6c-40d2-953b-06e70f1052c7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent201\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2660\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A25.5211673Z'\\\"\",\r\n \"name\": \"AzTestDSWE2660\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "997" + ], + "x-ms-request-id": [ + "a4b892e2-72fb-4152-ae58-2d0f0c1ebb72" + ], + "x-ms-correlation-request-id": [ + "a4b892e2-72fb-4152-ae58-2d0f0c1ebb72" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221825Z:a4b892e2-72fb-4152-ae58-2d0f0c1ebb72" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8621?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg2MjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent202\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8621\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "095feb17-dc4a-46a4-8536-0effd5d988c0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent202\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8621\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A25.8961766Z'\\\"\",\r\n \"name\": \"AzTestDSWE8621\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "996" + ], + "x-ms-request-id": [ + "a81a6063-43c5-48ff-9758-328d20af17ed" + ], + "x-ms-correlation-request-id": [ + "a81a6063-43c5-48ff-9758-328d20af17ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221826Z:a81a6063-43c5-48ff-9758-328d20af17ed" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6400?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY0MDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent203\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6400\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "2b1db824-95ad-45f1-aa3e-bd0cf9065ced" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent203\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6400\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A26.3336921Z'\\\"\",\r\n \"name\": \"AzTestDSWE6400\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "995" + ], + "x-ms-request-id": [ + "2c5779f8-36de-44d4-bdeb-9e8fda5337f8" + ], + "x-ms-correlation-request-id": [ + "2c5779f8-36de-44d4-bdeb-9e8fda5337f8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221826Z:2c5779f8-36de-44d4-bdeb-9e8fda5337f8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5147?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUxNDc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent204\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5147\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "47ed16f1-2981-457c-be1c-b182015f5560" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent204\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5147\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A26.6808372Z'\\\"\",\r\n \"name\": \"AzTestDSWE5147\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "994" + ], + "x-ms-request-id": [ + "f0702615-6d65-4729-a267-e689a7aefd99" + ], + "x-ms-correlation-request-id": [ + "f0702615-6d65-4729-a267-e689a7aefd99" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221826Z:f0702615-6d65-4729-a267-e689a7aefd99" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7634?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc2MzQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent205\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7634\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "356f0130-59d1-4db3-a2ea-1d3656d06275" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent205\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7634\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A27.0422367Z'\\\"\",\r\n \"name\": \"AzTestDSWE7634\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "993" + ], + "x-ms-request-id": [ + "1cd7a801-2fe6-4a84-9be3-814939a5aa2f" + ], + "x-ms-correlation-request-id": [ + "1cd7a801-2fe6-4a84-9be3-814939a5aa2f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221827Z:1cd7a801-2fe6-4a84-9be3-814939a5aa2f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6954?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY5NTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent206\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6954\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "0f05031a-60b8-4521-b84a-76519ef0cf1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent206\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6954\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A27.4016178Z'\\\"\",\r\n \"name\": \"AzTestDSWE6954\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "992" + ], + "x-ms-request-id": [ + "42d5643f-adb4-4f04-8027-902ca3ee5dc2" + ], + "x-ms-correlation-request-id": [ + "42d5643f-adb4-4f04-8027-902ca3ee5dc2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221827Z:42d5643f-adb4-4f04-8027-902ca3ee5dc2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3494?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM0OTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent207\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3494\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "41ba69cf-d702-45ed-beda-b97bf234a80a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent207\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3494\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A27.7610013Z'\\\"\",\r\n \"name\": \"AzTestDSWE3494\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "991" + ], + "x-ms-request-id": [ + "98c737e4-935e-4875-b3a7-a21fdce22101" + ], + "x-ms-correlation-request-id": [ + "98c737e4-935e-4875-b3a7-a21fdce22101" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221827Z:98c737e4-935e-4875-b3a7-a21fdce22101" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4475?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ0NzU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent208\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4475\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6d297552-26c9-489b-9209-011dc842ccc6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent208\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4475\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A28.1059928Z'\\\"\",\r\n \"name\": \"AzTestDSWE4475\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "990" + ], + "x-ms-request-id": [ + "954964eb-ef97-4436-9b45-b099fccc65d9" + ], + "x-ms-correlation-request-id": [ + "954964eb-ef97-4436-9b45-b099fccc65d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221828Z:954964eb-ef97-4436-9b45-b099fccc65d9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9337?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkzMzc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent209\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9337\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4eef0b42-1081-4bd3-93f9-07f68dbd0077" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent209\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9337\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A28.4900083Z'\\\"\",\r\n \"name\": \"AzTestDSWE9337\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "989" + ], + "x-ms-request-id": [ + "ab4cd376-d40b-4083-8b41-c887174cb66e" + ], + "x-ms-correlation-request-id": [ + "ab4cd376-d40b-4083-8b41-c887174cb66e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221828Z:ab4cd376-d40b-4083-8b41-c887174cb66e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3445?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM0NDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent210\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3445\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "fd2cd339-554c-4ea2-ab45-edda9282060b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent210\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3445\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A28.8494194Z'\\\"\",\r\n \"name\": \"AzTestDSWE3445\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "988" + ], + "x-ms-request-id": [ + "e5ce832b-2600-41fa-820f-5aa5676eab7f" + ], + "x-ms-correlation-request-id": [ + "e5ce832b-2600-41fa-820f-5aa5676eab7f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221828Z:e5ce832b-2600-41fa-820f-5aa5676eab7f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3990?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM5OTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent211\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3990\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "c1cd9917-412f-4dda-a8ca-d7287142fd37" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent211\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3990\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A29.1931850Z'\\\"\",\r\n \"name\": \"AzTestDSWE3990\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "987" + ], + "x-ms-request-id": [ + "c8485841-993e-4224-a96b-aac2933bb153" + ], + "x-ms-correlation-request-id": [ + "c8485841-993e-4224-a96b-aac2933bb153" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221829Z:c8485841-993e-4224-a96b-aac2933bb153" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6852?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY4NTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent212\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6852\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "8ae3468e-fa32-45c8-a263-f0ddb2a274d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent212\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6852\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A29.5525462Z'\\\"\",\r\n \"name\": \"AzTestDSWE6852\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "986" + ], + "x-ms-request-id": [ + "f8d3ff11-9bdd-40a0-afc0-ef975f2d0ec9" + ], + "x-ms-correlation-request-id": [ + "f8d3ff11-9bdd-40a0-afc0-ef975f2d0ec9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221829Z:f8d3ff11-9bdd-40a0-afc0-ef975f2d0ec9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE760?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc2MD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent213\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE760\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "beba2fa9-8f16-4cc4-84f2-075a833dfa54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent213\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE760\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A29.9135639Z'\\\"\",\r\n \"name\": \"AzTestDSWE760\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "985" + ], + "x-ms-request-id": [ + "bfbba4e9-3e54-4ef0-a80d-0f31bc052acb" + ], + "x-ms-correlation-request-id": [ + "bfbba4e9-3e54-4ef0-a80d-0f31bc052acb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221830Z:bfbba4e9-3e54-4ef0-a80d-0f31bc052acb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6096?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYwOTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent214\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6096\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "923c2c7c-b2d5-4be9-a551-bdec82ceaa55" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent214\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6096\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A30.2713286Z'\\\"\",\r\n \"name\": \"AzTestDSWE6096\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "984" + ], + "x-ms-request-id": [ + "2f997f42-6250-4dd2-9394-49cce4b6d20e" + ], + "x-ms-correlation-request-id": [ + "2f997f42-6250-4dd2-9394-49cce4b6d20e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221830Z:2f997f42-6250-4dd2-9394-49cce4b6d20e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8564?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg1NjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent215\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8564\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "bac4f8ba-409f-428a-8e26-71e013dbcb06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent215\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8564\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A30.6151469Z'\\\"\",\r\n \"name\": \"AzTestDSWE8564\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "983" + ], + "x-ms-request-id": [ + "905dc457-a435-4830-b593-b9b165cca0f0" + ], + "x-ms-correlation-request-id": [ + "905dc457-a435-4830-b593-b9b165cca0f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221830Z:905dc457-a435-4830-b593-b9b165cca0f0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9560?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk1NjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent216\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9560\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f593ffa2-98fa-4923-b7fc-99ab9c9d67cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent216\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9560\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A30.9745541Z'\\\"\",\r\n \"name\": \"AzTestDSWE9560\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "982" + ], + "x-ms-request-id": [ + "b0265582-96ee-4ef8-a02a-c9db39c0db3b" + ], + "x-ms-correlation-request-id": [ + "b0265582-96ee-4ef8-a02a-c9db39c0db3b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221831Z:b0265582-96ee-4ef8-a02a-c9db39c0db3b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1558?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE1NTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent217\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1558\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d31cb74d-3fdc-47a4-8617-b620b81dcfd1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent217\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1558\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A31.3338976Z'\\\"\",\r\n \"name\": \"AzTestDSWE1558\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "981" + ], + "x-ms-request-id": [ + "0fac085e-5076-439a-8b85-d565577c5648" + ], + "x-ms-correlation-request-id": [ + "0fac085e-5076-439a-8b85-d565577c5648" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221831Z:0fac085e-5076-439a-8b85-d565577c5648" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6903?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY5MDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent218\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6903\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "404bd948-b4cf-4b9a-a581-ce741e396bd6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent218\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6903\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A31.6932962Z'\\\"\",\r\n \"name\": \"AzTestDSWE6903\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "980" + ], + "x-ms-request-id": [ + "5727d560-b544-4d6c-a04d-faac117cb832" + ], + "x-ms-correlation-request-id": [ + "5727d560-b544-4d6c-a04d-faac117cb832" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221831Z:5727d560-b544-4d6c-a04d-faac117cb832" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7511?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc1MTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent219\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7511\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "87e965c9-9150-49bb-b9ca-3de33e7fd53c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent219\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7511\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A32.0370306Z'\\\"\",\r\n \"name\": \"AzTestDSWE7511\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "979" + ], + "x-ms-request-id": [ + "0c117d3b-8ca9-4bf7-baf7-8e0e716a9fdf" + ], + "x-ms-correlation-request-id": [ + "0c117d3b-8ca9-4bf7-baf7-8e0e716a9fdf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221832Z:0c117d3b-8ca9-4bf7-baf7-8e0e716a9fdf" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5311?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTUzMTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent220\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5311\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "59c241a3-53d4-4f02-8bcd-10df99be57b0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent220\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5311\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A32.4120793Z'\\\"\",\r\n \"name\": \"AzTestDSWE5311\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "978" + ], + "x-ms-request-id": [ + "f78f6e72-8a7f-4d03-8518-ae5d69ae58ab" + ], + "x-ms-correlation-request-id": [ + "f78f6e72-8a7f-4d03-8518-ae5d69ae58ab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221832Z:f78f6e72-8a7f-4d03-8518-ae5d69ae58ab" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4326?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQzMjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent221\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4326\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "33109163-7276-49f9-b1fb-615f4c2d5491" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent221\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4326\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A32.7714615Z'\\\"\",\r\n \"name\": \"AzTestDSWE4326\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "977" + ], + "x-ms-request-id": [ + "ead12e56-61f0-4787-aaff-a21c7d3a56d7" + ], + "x-ms-correlation-request-id": [ + "ead12e56-61f0-4787-aaff-a21c7d3a56d7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221832Z:ead12e56-61f0-4787-aaff-a21c7d3a56d7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9939?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk5Mzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent222\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9939\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6187e04f-84c6-45ae-82c6-730fbfd829fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent222\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9939\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A33.1620903Z'\\\"\",\r\n \"name\": \"AzTestDSWE9939\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "976" + ], + "x-ms-request-id": [ + "de4c0a56-ef41-4330-9216-8ca291903d2b" + ], + "x-ms-correlation-request-id": [ + "de4c0a56-ef41-4330-9216-8ca291903d2b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221833Z:de4c0a56-ef41-4330-9216-8ca291903d2b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9975?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk5NzU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent223\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9975\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "0a5955f3-2c4a-4822-be5b-027e8faacb4e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent223\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9975\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A33.6308109Z'\\\"\",\r\n \"name\": \"AzTestDSWE9975\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "975" + ], + "x-ms-request-id": [ + "ab1b41f0-bc3a-400d-bc6d-c42227794cdb" + ], + "x-ms-correlation-request-id": [ + "ab1b41f0-bc3a-400d-bc6d-c42227794cdb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221833Z:ab1b41f0-bc3a-400d-bc6d-c42227794cdb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2003?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIwMDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent224\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2003\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ac26d4ce-c1df-4119-8b61-99e93780d2b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent224\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2003\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A34.0683503Z'\\\"\",\r\n \"name\": \"AzTestDSWE2003\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "974" + ], + "x-ms-request-id": [ + "12912a21-f92a-4348-bb7c-5f39f0b8e8b7" + ], + "x-ms-correlation-request-id": [ + "12912a21-f92a-4348-bb7c-5f39f0b8e8b7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221834Z:12912a21-f92a-4348-bb7c-5f39f0b8e8b7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7127?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTcxMjc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent225\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7127\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "2c7908e4-ba48-4704-9bfa-512bf4f76795" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent225\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7127\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A34.4433530Z'\\\"\",\r\n \"name\": \"AzTestDSWE7127\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "973" + ], + "x-ms-request-id": [ + "8c370973-1d95-46a4-a9ad-d9f1fc27e87f" + ], + "x-ms-correlation-request-id": [ + "8c370973-1d95-46a4-a9ad-d9f1fc27e87f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221834Z:8c370973-1d95-46a4-a9ad-d9f1fc27e87f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE433?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQzMz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent226\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE433\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "c445271e-38af-4259-892d-87f86a9cf62f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent226\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE433\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A35.0650902Z'\\\"\",\r\n \"name\": \"AzTestDSWE433\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "972" + ], + "x-ms-request-id": [ + "c89c4816-85e7-4425-a09e-ffe32f4a6a3a" + ], + "x-ms-correlation-request-id": [ + "c89c4816-85e7-4425-a09e-ffe32f4a6a3a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221835Z:c89c4816-85e7-4425-a09e-ffe32f4a6a3a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8839?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg4Mzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent227\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8839\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b5a2c0e9-d542-419a-aeef-554e650c1f63" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent227\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8839\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A35.4270405Z'\\\"\",\r\n \"name\": \"AzTestDSWE8839\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "971" + ], + "x-ms-request-id": [ + "14a9388b-2a1d-4b20-8da8-8351fcfb780e" + ], + "x-ms-correlation-request-id": [ + "14a9388b-2a1d-4b20-8da8-8351fcfb780e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221835Z:14a9388b-2a1d-4b20-8da8-8351fcfb780e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4068?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQwNjg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent228\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4068\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "7b0970b5-2126-4e72-817a-91f0383fef2c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent228\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4068\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A35.8371689Z'\\\"\",\r\n \"name\": \"AzTestDSWE4068\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "970" + ], + "x-ms-request-id": [ + "a01d9cd8-f10c-4fba-a9f2-063868f49dae" + ], + "x-ms-correlation-request-id": [ + "a01d9cd8-f10c-4fba-a9f2-063868f49dae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221835Z:a01d9cd8-f10c-4fba-a9f2-063868f49dae" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5920?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU5MjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent229\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5920\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "c898e8dc-f83f-4f0c-b8ed-b2263f282d06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent229\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5920\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A36.2058969Z'\\\"\",\r\n \"name\": \"AzTestDSWE5920\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "969" + ], + "x-ms-request-id": [ + "6921b16f-1768-422e-b59b-cdb240b64176" + ], + "x-ms-correlation-request-id": [ + "6921b16f-1768-422e-b59b-cdb240b64176" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221836Z:6921b16f-1768-422e-b59b-cdb240b64176" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3816?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM4MTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent230\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3816\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "31fb786e-af6c-4e6d-a669-3103a40e2446" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent230\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3816\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A36.5537968Z'\\\"\",\r\n \"name\": \"AzTestDSWE3816\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "968" + ], + "x-ms-request-id": [ + "1ec96c30-b3eb-4537-92ea-5598cd5872ad" + ], + "x-ms-correlation-request-id": [ + "1ec96c30-b3eb-4537-92ea-5598cd5872ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221836Z:1ec96c30-b3eb-4537-92ea-5598cd5872ad" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1813?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE4MTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent231\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1813\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "5489e67e-397c-4147-9eb9-d3d13d3c144a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent231\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1813\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A36.9301170Z'\\\"\",\r\n \"name\": \"AzTestDSWE1813\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "967" + ], + "x-ms-request-id": [ + "508d2af9-eb65-427e-9675-f78a13be4334" + ], + "x-ms-correlation-request-id": [ + "508d2af9-eb65-427e-9675-f78a13be4334" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221837Z:508d2af9-eb65-427e-9675-f78a13be4334" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE774?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent232\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE774\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "8e0f2966-5759-4cc2-b9a1-d3513815c45f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent232\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE774\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A37.3207095Z'\\\"\",\r\n \"name\": \"AzTestDSWE774\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "966" + ], + "x-ms-request-id": [ + "5e1391e6-d630-47a5-a2ca-fbb42d2988f3" + ], + "x-ms-correlation-request-id": [ + "5e1391e6-d630-47a5-a2ca-fbb42d2988f3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221837Z:5e1391e6-d630-47a5-a2ca-fbb42d2988f3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5453?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU0NTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent233\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5453\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "fab202c8-616d-4533-9016-103d2073d0ec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent233\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5453\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A37.6957466Z'\\\"\",\r\n \"name\": \"AzTestDSWE5453\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "965" + ], + "x-ms-request-id": [ + "207f1e43-54c6-4cc7-8b33-a2de62095dab" + ], + "x-ms-correlation-request-id": [ + "207f1e43-54c6-4cc7-8b33-a2de62095dab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221837Z:207f1e43-54c6-4cc7-8b33-a2de62095dab" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9806?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk4MDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent234\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9806\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d364a7ef-965e-4fbd-af70-c8082519483c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent234\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9806\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A38.0551204Z'\\\"\",\r\n \"name\": \"AzTestDSWE9806\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "964" + ], + "x-ms-request-id": [ + "4cf74747-bc79-4130-81f6-c8378fa2f5cc" + ], + "x-ms-correlation-request-id": [ + "4cf74747-bc79-4130-81f6-c8378fa2f5cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221838Z:4cf74747-bc79-4130-81f6-c8378fa2f5cc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9289?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkyODk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent235\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9289\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "fdc41718-8e90-4577-91d0-ea3f271da17d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent235\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9289\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A38.4301069Z'\\\"\",\r\n \"name\": \"AzTestDSWE9289\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "963" + ], + "x-ms-request-id": [ + "3b20bc17-4e9a-4078-9061-cdccafe59b84" + ], + "x-ms-correlation-request-id": [ + "3b20bc17-4e9a-4078-9061-cdccafe59b84" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221838Z:3b20bc17-4e9a-4078-9061-cdccafe59b84" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6283?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYyODM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent236\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6283\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f745cd5b-1d34-4c0a-b30f-b8d5bbbe5731" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent236\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6283\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A38.8051398Z'\\\"\",\r\n \"name\": \"AzTestDSWE6283\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "962" + ], + "x-ms-request-id": [ + "209a7e7d-6d2c-402a-bbed-2cc94da32813" + ], + "x-ms-correlation-request-id": [ + "209a7e7d-6d2c-402a-bbed-2cc94da32813" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221838Z:209a7e7d-6d2c-402a-bbed-2cc94da32813" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7745?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc3NDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent237\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7745\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d303d038-21e0-4507-b3db-93452e030a4a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent237\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7745\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A39.1697510Z'\\\"\",\r\n \"name\": \"AzTestDSWE7745\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "961" + ], + "x-ms-request-id": [ + "5df65034-5209-4077-a3e4-6ae1395b4d74" + ], + "x-ms-correlation-request-id": [ + "5df65034-5209-4077-a3e4-6ae1395b4d74" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221839Z:5df65034-5209-4077-a3e4-6ae1395b4d74" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4071?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQwNzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent238\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4071\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6d2218d6-f6c1-49a7-831a-4c9fb29c740c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent238\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4071\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A39.5448344Z'\\\"\",\r\n \"name\": \"AzTestDSWE4071\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "960" + ], + "x-ms-request-id": [ + "fc56fc1e-f76c-4e79-b509-6d6f12be330c" + ], + "x-ms-correlation-request-id": [ + "fc56fc1e-f76c-4e79-b509-6d6f12be330c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221839Z:fc56fc1e-f76c-4e79-b509-6d6f12be330c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2058?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIwNTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent239\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2058\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6e090ef8-ef40-46e7-9117-df1c4ec77a24" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent239\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2058\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A39.9057538Z'\\\"\",\r\n \"name\": \"AzTestDSWE2058\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "959" + ], + "x-ms-request-id": [ + "53f99475-74e1-4d97-87ff-9341e5bdc245" + ], + "x-ms-correlation-request-id": [ + "53f99475-74e1-4d97-87ff-9341e5bdc245" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221840Z:53f99475-74e1-4d97-87ff-9341e5bdc245" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9875?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk4NzU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent240\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9875\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ca9f6ed6-19dc-47d6-ad0d-b61b2b94f5d6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent240\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9875\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A40.2808091Z'\\\"\",\r\n \"name\": \"AzTestDSWE9875\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "958" + ], + "x-ms-request-id": [ + "f92a6844-8daf-43d6-8dbb-e75a1f12f455" + ], + "x-ms-correlation-request-id": [ + "f92a6844-8daf-43d6-8dbb-e75a1f12f455" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221840Z:f92a6844-8daf-43d6-8dbb-e75a1f12f455" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2821?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI4MjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent241\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2821\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "88c8c8ec-42a0-4b81-b12c-3380f9a2956f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent241\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2821\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A40.6558127Z'\\\"\",\r\n \"name\": \"AzTestDSWE2821\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "957" + ], + "x-ms-request-id": [ + "f93940c5-acaa-4772-a13a-34b7b5353f45" + ], + "x-ms-correlation-request-id": [ + "f93940c5-acaa-4772-a13a-34b7b5353f45" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221840Z:f93940c5-acaa-4772-a13a-34b7b5353f45" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7435?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc0MzU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent242\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7435\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "3b3a1428-9219-472c-a9ac-4613ea14952b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent242\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7435\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A41.0157991Z'\\\"\",\r\n \"name\": \"AzTestDSWE7435\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "956" + ], + "x-ms-request-id": [ + "369cfc4e-2f3e-427b-b8d5-63f535d5f21c" + ], + "x-ms-correlation-request-id": [ + "369cfc4e-2f3e-427b-b8d5-63f535d5f21c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221841Z:369cfc4e-2f3e-427b-b8d5-63f535d5f21c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3859?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM4NTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent243\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3859\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "0cf72104-5704-4282-ab45-34affd37b6ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent243\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3859\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A41.3751679Z'\\\"\",\r\n \"name\": \"AzTestDSWE3859\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "955" + ], + "x-ms-request-id": [ + "09ba6980-2c75-441f-ae59-b1b1f1b66bd7" + ], + "x-ms-correlation-request-id": [ + "09ba6980-2c75-441f-ae59-b1b1f1b66bd7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221841Z:09ba6980-2c75-441f-ae59-b1b1f1b66bd7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2746?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI3NDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent244\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2746\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "88acaa1f-eadc-41c4-8069-9d366bf51955" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent244\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2746\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A41.7345738Z'\\\"\",\r\n \"name\": \"AzTestDSWE2746\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "954" + ], + "x-ms-request-id": [ + "d0c23cc4-0260-4cc7-ac57-5698e60a40cc" + ], + "x-ms-correlation-request-id": [ + "d0c23cc4-0260-4cc7-ac57-5698e60a40cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221841Z:d0c23cc4-0260-4cc7-ac57-5698e60a40cc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9400?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk0MDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent245\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9400\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "bde32b79-bb66-42b0-9412-60fd801df5f5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent245\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9400\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A42.1095678Z'\\\"\",\r\n \"name\": \"AzTestDSWE9400\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "953" + ], + "x-ms-request-id": [ + "46281870-366b-4071-931a-bfef6adcce56" + ], + "x-ms-correlation-request-id": [ + "46281870-366b-4071-931a-bfef6adcce56" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221842Z:46281870-366b-4071-931a-bfef6adcce56" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9054?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkwNTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent246\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9054\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "c6daa9b2-5590-42a8-8822-42d8ccd2eff7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent246\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9054\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A42.4845379Z'\\\"\",\r\n \"name\": \"AzTestDSWE9054\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "952" + ], + "x-ms-request-id": [ + "04fd44d2-19fa-4641-8b2b-62c9395b1d14" + ], + "x-ms-correlation-request-id": [ + "04fd44d2-19fa-4641-8b2b-62c9395b1d14" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221842Z:04fd44d2-19fa-4641-8b2b-62c9395b1d14" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3450?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM0NTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent247\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3450\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ed9c0b13-2214-435c-8ad8-0c41ac316475" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent247\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3450\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A42.8907978Z'\\\"\",\r\n \"name\": \"AzTestDSWE3450\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "951" + ], + "x-ms-request-id": [ + "dca4a426-2253-4859-b831-fac0b38172ff" + ], + "x-ms-correlation-request-id": [ + "dca4a426-2253-4859-b831-fac0b38172ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221843Z:dca4a426-2253-4859-b831-fac0b38172ff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8256?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgyNTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent248\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8256\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "3d6ad6d3-d7a4-4a4c-a736-40792d14cc49" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent248\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8256\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A43.2814588Z'\\\"\",\r\n \"name\": \"AzTestDSWE8256\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "950" + ], + "x-ms-request-id": [ + "d7861bae-0e13-43cc-95fb-e262bd1cf499" + ], + "x-ms-correlation-request-id": [ + "d7861bae-0e13-43cc-95fb-e262bd1cf499" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221843Z:d7861bae-0e13-43cc-95fb-e262bd1cf499" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3285?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMyODU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent249\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3285\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ea453b11-d1f8-4d26-9f9d-a84d387cb059" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent249\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3285\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A43.6564559Z'\\\"\",\r\n \"name\": \"AzTestDSWE3285\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "949" + ], + "x-ms-request-id": [ + "04a46037-a60a-40a4-b6a1-726e544b6c61" + ], + "x-ms-correlation-request-id": [ + "04a46037-a60a-40a4-b6a1-726e544b6c61" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221843Z:04a46037-a60a-40a4-b6a1-726e544b6c61" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2054?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIwNTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent250\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2054\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f4a10b48-f076-45a2-b402-3b96402af90d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent250\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2054\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A44.0314909Z'\\\"\",\r\n \"name\": \"AzTestDSWE2054\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "948" + ], + "x-ms-request-id": [ + "4a6819a8-46d1-439d-bc25-d17b82b065f0" + ], + "x-ms-correlation-request-id": [ + "4a6819a8-46d1-439d-bc25-d17b82b065f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221844Z:4a6819a8-46d1-439d-bc25-d17b82b065f0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4306?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQzMDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent251\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4306\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "8d6fb69a-085d-4320-8439-e6f21478a71e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent251\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4306\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A44.4064721Z'\\\"\",\r\n \"name\": \"AzTestDSWE4306\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "947" + ], + "x-ms-request-id": [ + "2a9944fe-a3f3-45b0-aec6-665bba2752e6" + ], + "x-ms-correlation-request-id": [ + "2a9944fe-a3f3-45b0-aec6-665bba2752e6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221844Z:2a9944fe-a3f3-45b0-aec6-665bba2752e6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2111?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIxMTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent252\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2111\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "29ac8df3-c240-419f-8e2b-448fb05a248c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent252\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2111\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A44.8127300Z'\\\"\",\r\n \"name\": \"AzTestDSWE2111\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "946" + ], + "x-ms-request-id": [ + "12f00f87-aed2-4fdd-bff9-f376e2a43f0b" + ], + "x-ms-correlation-request-id": [ + "12f00f87-aed2-4fdd-bff9-f376e2a43f0b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221844Z:12f00f87-aed2-4fdd-bff9-f376e2a43f0b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7898?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc4OTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent253\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7898\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b208fbe1-de88-45a7-9a8a-63d74e274413" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent253\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7898\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A45.2033582Z'\\\"\",\r\n \"name\": \"AzTestDSWE7898\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "945" + ], + "x-ms-request-id": [ + "59256e6a-58d6-45f6-9f9a-7ffa6f842e40" + ], + "x-ms-correlation-request-id": [ + "59256e6a-58d6-45f6-9f9a-7ffa6f842e40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221845Z:59256e6a-58d6-45f6-9f9a-7ffa6f842e40" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9352?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTkzNTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent254\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9352\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "5cfaf547-d0ca-41f4-b4a8-885a0e108052" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent254\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9352\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A45.5627515Z'\\\"\",\r\n \"name\": \"AzTestDSWE9352\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "944" + ], + "x-ms-request-id": [ + "1170231d-dc9b-4631-994a-11e29356c757" + ], + "x-ms-correlation-request-id": [ + "1170231d-dc9b-4631-994a-11e29356c757" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221845Z:1170231d-dc9b-4631-994a-11e29356c757" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2719?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI3MTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent255\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2719\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "51793381-2b3e-4abc-a398-9e44f67c1af2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent255\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2719\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A45.9222538Z'\\\"\",\r\n \"name\": \"AzTestDSWE2719\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "943" + ], + "x-ms-request-id": [ + "7481e852-744d-4b83-8903-c84cfafee80c" + ], + "x-ms-correlation-request-id": [ + "7481e852-744d-4b83-8903-c84cfafee80c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221846Z:7481e852-744d-4b83-8903-c84cfafee80c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8645?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg2NDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent256\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8645\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "bdaac1ca-a993-445c-bb21-e84ff614639a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent256\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8645\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A46.2901316Z'\\\"\",\r\n \"name\": \"AzTestDSWE8645\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "942" + ], + "x-ms-request-id": [ + "3d621c51-4826-4494-af35-08f1f67084e0" + ], + "x-ms-correlation-request-id": [ + "3d621c51-4826-4494-af35-08f1f67084e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221846Z:3d621c51-4826-4494-af35-08f1f67084e0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4396?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQzOTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent257\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4396\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4d0fb15c-8a42-401d-b1fa-5d78386949f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent257\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4396\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A46.6617861Z'\\\"\",\r\n \"name\": \"AzTestDSWE4396\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "941" + ], + "x-ms-request-id": [ + "8f452c2b-4cad-40fe-8190-ad01a5129492" + ], + "x-ms-correlation-request-id": [ + "8f452c2b-4cad-40fe-8190-ad01a5129492" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221846Z:8f452c2b-4cad-40fe-8190-ad01a5129492" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8019?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgwMTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent258\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8019\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "d887eda4-90be-46bb-a28d-dc5df4764660" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent258\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8019\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A47.0659986Z'\\\"\",\r\n \"name\": \"AzTestDSWE8019\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "940" + ], + "x-ms-request-id": [ + "0258dac7-2760-4be0-b33f-1e022f20fd41" + ], + "x-ms-correlation-request-id": [ + "0258dac7-2760-4be0-b33f-1e022f20fd41" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221847Z:0258dac7-2760-4be0-b33f-1e022f20fd41" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7200?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTcyMDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent259\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7200\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "e15b53aa-1456-4435-b9cd-c278f918fce9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent259\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7200\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A47.4380200Z'\\\"\",\r\n \"name\": \"AzTestDSWE7200\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "939" + ], + "x-ms-request-id": [ + "26f3a036-f2c7-4cd8-b3ad-4aefb1bf6ab3" + ], + "x-ms-correlation-request-id": [ + "26f3a036-f2c7-4cd8-b3ad-4aefb1bf6ab3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221847Z:26f3a036-f2c7-4cd8-b3ad-4aefb1bf6ab3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8114?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgxMTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent260\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8114\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "030d7d53-7d04-4502-8a88-28ea8aad8b17" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent260\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8114\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A47.8161159Z'\\\"\",\r\n \"name\": \"AzTestDSWE8114\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "938" + ], + "x-ms-request-id": [ + "ab9a0cc4-41df-45a0-8479-bdab1651fee8" + ], + "x-ms-correlation-request-id": [ + "ab9a0cc4-41df-45a0-8479-bdab1651fee8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221847Z:ab9a0cc4-41df-45a0-8479-bdab1651fee8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9425?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk0MjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent261\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9425\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "809c70d8-4134-4aba-a324-930104facc1b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent261\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9425\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A48.2075674Z'\\\"\",\r\n \"name\": \"AzTestDSWE9425\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "937" + ], + "x-ms-request-id": [ + "5a1c2be7-70bf-4c25-ab41-5c736cb128e9" + ], + "x-ms-correlation-request-id": [ + "5a1c2be7-70bf-4c25-ab41-5c736cb128e9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221848Z:5a1c2be7-70bf-4c25-ab41-5c736cb128e9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8554?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg1NTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent262\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8554\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "3ae1fc94-de66-4939-8fcb-b4a77b4dc7f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent262\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8554\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A48.5981651Z'\\\"\",\r\n \"name\": \"AzTestDSWE8554\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "936" + ], + "x-ms-request-id": [ + "aeda7272-1a2c-44a4-9846-eef23b5b1408" + ], + "x-ms-correlation-request-id": [ + "aeda7272-1a2c-44a4-9846-eef23b5b1408" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221848Z:aeda7272-1a2c-44a4-9846-eef23b5b1408" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE5521?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU1MjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent263\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE5521\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "41d7f0ea-0e47-487b-83ee-c418ca9413d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent263\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5521\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A48.9888179Z'\\\"\",\r\n \"name\": \"AzTestDSWE5521\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "935" + ], + "x-ms-request-id": [ + "84f7ae0e-1aae-4a04-aec7-34242d48932b" + ], + "x-ms-correlation-request-id": [ + "84f7ae0e-1aae-4a04-aec7-34242d48932b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221849Z:84f7ae0e-1aae-4a04-aec7-34242d48932b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1631?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE2MzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent264\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1631\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b740bd32-cdda-48fc-9243-b342808aa301" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent264\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1631\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A49.3794328Z'\\\"\",\r\n \"name\": \"AzTestDSWE1631\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "934" + ], + "x-ms-request-id": [ + "c3659a41-8859-44d7-9148-b4f4a891af0c" + ], + "x-ms-correlation-request-id": [ + "c3659a41-8859-44d7-9148-b4f4a891af0c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221849Z:c3659a41-8859-44d7-9148-b4f4a891af0c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3216?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMyMTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent265\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3216\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ec4b86e8-467b-41ae-b056-1d4ce15d34a4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent265\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3216\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A49.7610467Z'\\\"\",\r\n \"name\": \"AzTestDSWE3216\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "933" + ], + "x-ms-request-id": [ + "8b0cc7a2-5ac6-4db3-b859-f908c32ce01a" + ], + "x-ms-correlation-request-id": [ + "8b0cc7a2-5ac6-4db3-b859-f908c32ce01a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221849Z:8b0cc7a2-5ac6-4db3-b859-f908c32ce01a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1399?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTEzOTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent266\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1399\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "9294fdf0-97e7-4404-a640-3fe28239205e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent266\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1399\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A50.1487210Z'\\\"\",\r\n \"name\": \"AzTestDSWE1399\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "932" + ], + "x-ms-request-id": [ + "a8b8dac6-50a8-4c68-b1f2-6558138e7a9d" + ], + "x-ms-correlation-request-id": [ + "a8b8dac6-50a8-4c68-b1f2-6558138e7a9d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221850Z:a8b8dac6-50a8-4c68-b1f2-6558138e7a9d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE953?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent267\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE953\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "ec44e965-371a-472e-97d4-f11de9f26c2e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent267\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE953\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A50.5486629Z'\\\"\",\r\n \"name\": \"AzTestDSWE953\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "931" + ], + "x-ms-request-id": [ + "6593604d-dfb7-4f70-86e8-d304e01f0876" + ], + "x-ms-correlation-request-id": [ + "6593604d-dfb7-4f70-86e8-d304e01f0876" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221850Z:6593604d-dfb7-4f70-86e8-d304e01f0876" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6805?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY4MDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent268\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6805\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "9f31e62e-c27f-45c9-85ee-78b0f1a15925" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent268\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6805\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A50.9236787Z'\\\"\",\r\n \"name\": \"AzTestDSWE6805\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "930" + ], + "x-ms-request-id": [ + "3b736185-543c-4234-a939-7f0d92791958" + ], + "x-ms-correlation-request-id": [ + "3b736185-543c-4234-a939-7f0d92791958" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221851Z:3b736185-543c-4234-a939-7f0d92791958" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2281?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTIyODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent269\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2281\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "23eeab89-5f52-44a9-983b-4a21bee8dbff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent269\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2281\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A51.3299350Z'\\\"\",\r\n \"name\": \"AzTestDSWE2281\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "929" + ], + "x-ms-request-id": [ + "90ef6d52-c349-49e8-983e-40a7591ec1df" + ], + "x-ms-correlation-request-id": [ + "90ef6d52-c349-49e8-983e-40a7591ec1df" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221851Z:90ef6d52-c349-49e8-983e-40a7591ec1df" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1814?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE4MTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent270\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1814\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "63528001-785a-4e26-b18d-53e4598105cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent270\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1814\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A51.7361890Z'\\\"\",\r\n \"name\": \"AzTestDSWE1814\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "928" + ], + "x-ms-request-id": [ + "c29d226c-2008-440a-8d7f-a12dc8b66650" + ], + "x-ms-correlation-request-id": [ + "c29d226c-2008-440a-8d7f-a12dc8b66650" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221851Z:c29d226c-2008-440a-8d7f-a12dc8b66650" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7485?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc0ODU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent271\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7485\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "5411ed95-531e-4370-b490-a683ec336e93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent271\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7485\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A52.1268072Z'\\\"\",\r\n \"name\": \"AzTestDSWE7485\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "927" + ], + "x-ms-request-id": [ + "9b03956f-f184-4adc-9c15-3beff1fda3a1" + ], + "x-ms-correlation-request-id": [ + "9b03956f-f184-4adc-9c15-3beff1fda3a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221852Z:9b03956f-f184-4adc-9c15-3beff1fda3a1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4845?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ4NDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent272\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4845\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "064e071c-83cc-4c43-9fe8-8ed03ee990a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent272\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4845\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A52.5330550Z'\\\"\",\r\n \"name\": \"AzTestDSWE4845\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "926" + ], + "x-ms-request-id": [ + "907a0278-efd5-465d-939b-2bd257835527" + ], + "x-ms-correlation-request-id": [ + "907a0278-efd5-465d-939b-2bd257835527" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221852Z:907a0278-efd5-465d-939b-2bd257835527" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2490?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI0OTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent273\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2490\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4b502c78-e984-43cc-892e-cd11e8a918c0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent273\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2490\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A52.9081041Z'\\\"\",\r\n \"name\": \"AzTestDSWE2490\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "925" + ], + "x-ms-request-id": [ + "8d15918f-11b9-4d2c-92fd-34bcd93d6029" + ], + "x-ms-correlation-request-id": [ + "8d15918f-11b9-4d2c-92fd-34bcd93d6029" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221853Z:8d15918f-11b9-4d2c-92fd-34bcd93d6029" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6890?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY4OTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent274\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6890\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "c43f390a-3b4d-4e7d-9246-9eb2a0e59353" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent274\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6890\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A53.3143199Z'\\\"\",\r\n \"name\": \"AzTestDSWE6890\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "924" + ], + "x-ms-request-id": [ + "42adca02-38d3-4a5e-aef6-34fcc7bff7a6" + ], + "x-ms-correlation-request-id": [ + "42adca02-38d3-4a5e-aef6-34fcc7bff7a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221853Z:42adca02-38d3-4a5e-aef6-34fcc7bff7a6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6079?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYwNzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent275\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6079\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "8c78eef7-1382-4fa7-9f01-ca76afb38ee8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent275\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6079\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A53.7362492Z'\\\"\",\r\n \"name\": \"AzTestDSWE6079\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "923" + ], + "x-ms-request-id": [ + "bc52794b-0ba9-4e30-b8f2-23b6e3e4d366" + ], + "x-ms-correlation-request-id": [ + "bc52794b-0ba9-4e30-b8f2-23b6e3e4d366" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221853Z:bc52794b-0ba9-4e30-b8f2-23b6e3e4d366" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7228?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTcyMjg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent276\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7228\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6e55edab-e4a6-48aa-8b8d-b8630bd53070" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent276\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7228\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A54.1424667Z'\\\"\",\r\n \"name\": \"AzTestDSWE7228\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "922" + ], + "x-ms-request-id": [ + "4c13fedc-f32e-400d-bbc2-c6d0a7a6387d" + ], + "x-ms-correlation-request-id": [ + "4c13fedc-f32e-400d-bbc2-c6d0a7a6387d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221854Z:4c13fedc-f32e-400d-bbc2-c6d0a7a6387d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2601?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI2MDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent277\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2601\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "b2e83ed1-04ca-4145-818f-e1f1618a9883" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent277\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2601\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A54.5331284Z'\\\"\",\r\n \"name\": \"AzTestDSWE2601\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "921" + ], + "x-ms-request-id": [ + "e8cd6ee1-f525-40e7-9576-434d01793c10" + ], + "x-ms-correlation-request-id": [ + "e8cd6ee1-f525-40e7-9576-434d01793c10" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221854Z:e8cd6ee1-f525-40e7-9576-434d01793c10" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8071?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgwNzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent278\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8071\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "87a04d38-c0e5-4027-86df-f7773a9a9dd9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent278\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8071\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A54.9237627Z'\\\"\",\r\n \"name\": \"AzTestDSWE8071\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "920" + ], + "x-ms-request-id": [ + "d49b4825-35ad-4501-a155-fb87f40f20fd" + ], + "x-ms-correlation-request-id": [ + "d49b4825-35ad-4501-a155-fb87f40f20fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221855Z:d49b4825-35ad-4501-a155-fb87f40f20fd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6982?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY5ODI/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent279\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6982\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "8cb58b71-c40e-41ad-b75b-5aa893ed3cc3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent279\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6982\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A55.3135706Z'\\\"\",\r\n \"name\": \"AzTestDSWE6982\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "919" + ], + "x-ms-request-id": [ + "21334293-b734-4bf2-adef-7b4114e9f25a" + ], + "x-ms-correlation-request-id": [ + "21334293-b734-4bf2-adef-7b4114e9f25a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221855Z:21334293-b734-4bf2-adef-7b4114e9f25a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE582?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTU4Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent280\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE582\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "4160b90b-7713-49e6-b95c-472084a3f52e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent280\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE582\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A55.7012201Z'\\\"\",\r\n \"name\": \"AzTestDSWE582\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "918" + ], + "x-ms-request-id": [ + "36399939-b631-48b0-b532-6a541000d843" + ], + "x-ms-correlation-request-id": [ + "36399939-b631-48b0-b532-6a541000d843" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221855Z:36399939-b631-48b0-b532-6a541000d843" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE782?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc4Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent281\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE782\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "776dc07d-be9c-4cb5-8559-2dc0f60fffb1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent281\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE782\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A56.1231491Z'\\\"\",\r\n \"name\": \"AzTestDSWE782\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "917" + ], + "x-ms-request-id": [ + "89b01f7f-64fc-4b40-8102-404e88587860" + ], + "x-ms-correlation-request-id": [ + "89b01f7f-64fc-4b40-8102-404e88587860" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221856Z:89b01f7f-64fc-4b40-8102-404e88587860" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3865?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTM4NjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent282\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3865\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "aae3720f-d136-41b5-9e2a-f31283c25fa9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent282\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3865\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A56.5137911Z'\\\"\",\r\n \"name\": \"AzTestDSWE3865\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "916" + ], + "x-ms-request-id": [ + "80049f85-7318-4f61-bdf6-b1f6d68881c5" + ], + "x-ms-correlation-request-id": [ + "80049f85-7318-4f61-bdf6-b1f6d68881c5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221856Z:80049f85-7318-4f61-bdf6-b1f6d68881c5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9509?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk1MDk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent283\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9509\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "81dcb646-7b2d-4abf-abe8-3f6788cb1095" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent283\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9509\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A56.9044367Z'\\\"\",\r\n \"name\": \"AzTestDSWE9509\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "915" + ], + "x-ms-request-id": [ + "5230e519-1305-4197-a230-903cea5ab218" + ], + "x-ms-correlation-request-id": [ + "5230e519-1305-4197-a230-903cea5ab218" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221857Z:5230e519-1305-4197-a230-903cea5ab218" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE9701?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTk3MDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent284\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE9701\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "540b513b-d456-4904-8abe-5e3295db5a32" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent284\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9701\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A57.2950271Z'\\\"\",\r\n \"name\": \"AzTestDSWE9701\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "914" + ], + "x-ms-request-id": [ + "7cb64f55-8e70-4f7b-b345-4cf75428ad1c" + ], + "x-ms-correlation-request-id": [ + "7cb64f55-8e70-4f7b-b345-4cf75428ad1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221857Z:7cb64f55-8e70-4f7b-b345-4cf75428ad1c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4457?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ0NTc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent285\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4457\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ac025dac-bff1-4df1-b193-e5a0a981505e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent285\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4457\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A57.6857043Z'\\\"\",\r\n \"name\": \"AzTestDSWE4457\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "913" + ], + "x-ms-request-id": [ + "3057378c-8d27-48d7-ab6e-485aec3d73b2" + ], + "x-ms-correlation-request-id": [ + "3057378c-8d27-48d7-ab6e-485aec3d73b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221857Z:3057378c-8d27-48d7-ab6e-485aec3d73b2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7554?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc1NTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent286\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7554\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ee5dbe67-25c5-4cf1-b3df-83855753a8ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent286\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7554\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A58.0763240Z'\\\"\",\r\n \"name\": \"AzTestDSWE7554\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "912" + ], + "x-ms-request-id": [ + "542ac20c-bd33-4421-93ec-c6e1ca0c82bd" + ], + "x-ms-correlation-request-id": [ + "542ac20c-bd33-4421-93ec-c6e1ca0c82bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221858Z:542ac20c-bd33-4421-93ec-c6e1ca0c82bd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE453?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent287\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE453\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "199" + ], + "x-ms-client-request-id": [ + "dd282e81-1ce3-47dc-9bc9-805759a727bf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent287\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE453\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A58.4669484Z'\\\"\",\r\n \"name\": \"AzTestDSWE453\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "911" + ], + "x-ms-request-id": [ + "af2113a3-ba35-4085-9220-bd17b2691e2a" + ], + "x-ms-correlation-request-id": [ + "af2113a3-ba35-4085-9220-bd17b2691e2a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221858Z:af2113a3-ba35-4085-9220-bd17b2691e2a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6569?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTY1Njk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent288\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6569\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "859d4dc7-cb8e-4596-9073-9f60162a287d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent288\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6569\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A58.8419566Z'\\\"\",\r\n \"name\": \"AzTestDSWE6569\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "910" + ], + "x-ms-request-id": [ + "62a62bdb-0a41-43be-9690-6cc072fd24fc" + ], + "x-ms-correlation-request-id": [ + "62a62bdb-0a41-43be-9690-6cc072fd24fc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221859Z:62a62bdb-0a41-43be-9690-6cc072fd24fc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE7636?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTc2MzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent289\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE7636\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "9bcb6e68-4bc7-4e57-94e1-79297c4cdd35" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent289\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7636\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A59.2333932Z'\\\"\",\r\n \"name\": \"AzTestDSWE7636\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "909" + ], + "x-ms-request-id": [ + "ea4b1187-41f4-4a17-8e8d-95913b334e2f" + ], + "x-ms-correlation-request-id": [ + "ea4b1187-41f4-4a17-8e8d-95913b334e2f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221859Z:ea4b1187-41f4-4a17-8e8d-95913b334e2f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3348?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMzNDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent290\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3348\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "4223ebd3-4484-43a0-8636-70c257b58171" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent290\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3348\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A59.6240112Z'\\\"\",\r\n \"name\": \"AzTestDSWE3348\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:18:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "908" + ], + "x-ms-request-id": [ + "5a4f031a-cda5-4a54-af51-66248f09ed9e" + ], + "x-ms-correlation-request-id": [ + "5a4f031a-cda5-4a54-af51-66248f09ed9e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221859Z:5a4f031a-cda5-4a54-af51-66248f09ed9e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6051?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYwNTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent291\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6051\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "520a0e62-0aa3-4628-881e-f47b35d86810" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent291\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6051\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A00.0007757Z'\\\"\",\r\n \"name\": \"AzTestDSWE6051\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "907" + ], + "x-ms-request-id": [ + "ce869e70-61bd-43de-93cc-bf10c28350e2" + ], + "x-ms-correlation-request-id": [ + "ce869e70-61bd-43de-93cc-bf10c28350e2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221900Z:ce869e70-61bd-43de-93cc-bf10c28350e2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE4856?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTQ4NTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent292\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE4856\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "aedbc0ab-3ec5-4b7c-955a-0a0552f714bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent292\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4856\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A00.3896508Z'\\\"\",\r\n \"name\": \"AzTestDSWE4856\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "906" + ], + "x-ms-request-id": [ + "31a9e93f-970c-461b-8fbf-8a18dd0ab883" + ], + "x-ms-correlation-request-id": [ + "31a9e93f-970c-461b-8fbf-8a18dd0ab883" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221900Z:31a9e93f-970c-461b-8fbf-8a18dd0ab883" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1761?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTE3NjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent293\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1761\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "6a0169b8-85b1-438d-a780-87191138ee27" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent293\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1761\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A00.7818993Z'\\\"\",\r\n \"name\": \"AzTestDSWE1761\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "905" + ], + "x-ms-request-id": [ + "251fd29a-fe9e-4be7-8aa4-fd81d416177f" + ], + "x-ms-correlation-request-id": [ + "251fd29a-fe9e-4be7-8aa4-fd81d416177f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221900Z:251fd29a-fe9e-4be7-8aa4-fd81d416177f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE3395?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTMzOTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent294\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE3395\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "9d6b13c9-3969-48ea-abf9-fd2c0bf19bb2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent294\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3395\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A01.1589749Z'\\\"\",\r\n \"name\": \"AzTestDSWE3395\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "904" + ], + "x-ms-request-id": [ + "75b25f4e-bf19-4bf0-8335-a9ccd79b7956" + ], + "x-ms-correlation-request-id": [ + "75b25f4e-bf19-4bf0-8335-a9ccd79b7956" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221901Z:75b25f4e-bf19-4bf0-8335-a9ccd79b7956" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8880?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTg4ODA/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent295\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8880\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "a4a08421-793a-4763-98c7-d52fa554f92a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent295\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8880\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A01.5421637Z'\\\"\",\r\n \"name\": \"AzTestDSWE8880\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "903" + ], + "x-ms-request-id": [ + "7e6e1468-aa78-4507-a588-f059166948d8" + ], + "x-ms-correlation-request-id": [ + "7e6e1468-aa78-4507-a588-f059166948d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221901Z:7e6e1468-aa78-4507-a588-f059166948d8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE8337?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTgzMzc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent296\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE8337\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "ddc55082-a872-4e85-81fe-13d08ade4aaa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent296\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8337\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A01.9353470Z'\\\"\",\r\n \"name\": \"AzTestDSWE8337\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "902" + ], + "x-ms-request-id": [ + "9d48f6e2-a338-4924-82b6-1aad30a24485" + ], + "x-ms-correlation-request-id": [ + "9d48f6e2-a338-4924-82b6-1aad30a24485" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221902Z:9d48f6e2-a338-4924-82b6-1aad30a24485" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE1114?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTExMTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent297\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE1114\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "01ad8031-d41d-4104-a555-603d4cccd35b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent297\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1114\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A02.3965917Z'\\\"\",\r\n \"name\": \"AzTestDSWE1114\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "901" + ], + "x-ms-request-id": [ + "612d18fe-a413-4207-b1b7-40d8994215d2" + ], + "x-ms-correlation-request-id": [ + "612d18fe-a413-4207-b1b7-40d8994215d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221902Z:612d18fe-a413-4207-b1b7-40d8994215d2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE6184?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTYxODQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent298\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE6184\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "1850fede-14f0-407c-9b4f-c53db37d597b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent298\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6184\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A02.7691622Z'\\\"\",\r\n \"name\": \"AzTestDSWE6184\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "900" + ], + "x-ms-request-id": [ + "f6ff6185-cdc8-4b95-9b5d-32f30bf38c93" + ], + "x-ms-correlation-request-id": [ + "f6ff6185-cdc8-4b95-9b5d-32f30bf38c93" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221902Z:f6ff6185-cdc8-4b95-9b5d-32f30bf38c93" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources/AzTestDSWE2497?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXMvQXpUZXN0RFNXRTI0OTc/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent299\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"WindowsEvent\",\r\n \"name\": \"AzTestDSWE2497\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "200" + ], + "x-ms-client-request-id": [ + "f26f288f-ec73-4f82-a9e2-515e7d2fc69e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent299\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2497\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A03.1361756Z'\\\"\",\r\n \"name\": \"AzTestDSWE2497\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "899" + ], + "x-ms-request-id": [ + "6ed78ace-8fb8-469f-bd4e-8e0d0eb11696" + ], + "x-ms-correlation-request-id": [ + "6ed78ace-8fb8-469f-bd4e-8e0d0eb11696" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221903Z:6ed78ace-8fb8-469f-bd4e-8e0d0eb11696" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources?$filter=kind%20eq%20'WindowsEvent'&api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXM/JGZpbHRlcj1raW5kJTIwZXElMjAnV2luZG93c0V2ZW50JyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef205a3c-2f50-4593-8c55-1be95677b090" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent297\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1114\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A02.3965917Z'\\\"\",\r\n \"name\": \"AzTestDSWE1114\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent76\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1127\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A38.1719538Z'\\\"\",\r\n \"name\": \"AzTestDSWE1127\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent53\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1146\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A29.7206205Z'\\\"\",\r\n \"name\": \"AzTestDSWE1146\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent70\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1155\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A36.0336411Z'\\\"\",\r\n \"name\": \"AzTestDSWE1155\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent96\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1161\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A45.7255372Z'\\\"\",\r\n \"name\": \"AzTestDSWE1161\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent84\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1188\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A41.1210718Z'\\\"\",\r\n \"name\": \"AzTestDSWE1188\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent37\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE121\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A23.9596796Z'\\\"\",\r\n \"name\": \"AzTestDSWE121\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent122\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1244\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A55.7898652Z'\\\"\",\r\n \"name\": \"AzTestDSWE1244\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent114\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1323\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A52.7385906Z'\\\"\",\r\n \"name\": \"AzTestDSWE1323\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent50\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1352\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A28.6424887Z'\\\"\",\r\n \"name\": \"AzTestDSWE1352\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent106\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1369\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A49.4321440Z'\\\"\",\r\n \"name\": \"AzTestDSWE1369\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent266\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1399\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A50.1487210Z'\\\"\",\r\n \"name\": \"AzTestDSWE1399\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent139\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1427\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A02.0443065Z'\\\"\",\r\n \"name\": \"AzTestDSWE1427\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent97\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1428\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A46.1005542Z'\\\"\",\r\n \"name\": \"AzTestDSWE1428\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent151\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE148\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A06.7533240Z'\\\"\",\r\n \"name\": \"AzTestDSWE148\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent27\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1508\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A20.4413159Z'\\\"\",\r\n \"name\": \"AzTestDSWE1508\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent217\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1558\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A31.3338976Z'\\\"\",\r\n \"name\": \"AzTestDSWE1558\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent195\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1615\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A23.1786368Z'\\\"\",\r\n \"name\": \"AzTestDSWE1615\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent165\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1628\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A11.7842238Z'\\\"\",\r\n \"name\": \"AzTestDSWE1628\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent115\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE163\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A53.1575356Z'\\\"\",\r\n \"name\": \"AzTestDSWE163\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent264\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1631\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A49.3794328Z'\\\"\",\r\n \"name\": \"AzTestDSWE1631\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent19\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1655\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A17.4271190Z'\\\"\",\r\n \"name\": \"AzTestDSWE1655\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent293\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1761\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A00.7818993Z'\\\"\",\r\n \"name\": \"AzTestDSWE1761\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent149\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1797\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A05.8314052Z'\\\"\",\r\n \"name\": \"AzTestDSWE1797\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent231\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1813\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A36.9301170Z'\\\"\",\r\n \"name\": \"AzTestDSWE1813\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent270\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1814\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A51.7361890Z'\\\"\",\r\n \"name\": \"AzTestDSWE1814\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent194\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1851\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A22.8192973Z'\\\"\",\r\n \"name\": \"AzTestDSWE1851\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent187\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1911\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A19.8608506Z'\\\"\",\r\n \"name\": \"AzTestDSWE1911\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent180\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1951\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A17.2613391Z'\\\"\",\r\n \"name\": \"AzTestDSWE1951\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent24\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1967\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A19.3826662Z'\\\"\",\r\n \"name\": \"AzTestDSWE1967\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent133\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1974\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A59.8411409Z'\\\"\",\r\n \"name\": \"AzTestDSWE1974\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent138\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE1986\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A01.6536734Z'\\\"\",\r\n \"name\": \"AzTestDSWE1986\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent224\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2003\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A34.0683503Z'\\\"\",\r\n \"name\": \"AzTestDSWE2003\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent153\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2012\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A07.4756902Z'\\\"\",\r\n \"name\": \"AzTestDSWE2012\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent250\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2054\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A44.0314909Z'\\\"\",\r\n \"name\": \"AzTestDSWE2054\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent239\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2058\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A39.9057538Z'\\\"\",\r\n \"name\": \"AzTestDSWE2058\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent252\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2111\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A44.8127300Z'\\\"\",\r\n \"name\": \"AzTestDSWE2111\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent94\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2199\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A44.9405650Z'\\\"\",\r\n \"name\": \"AzTestDSWE2199\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent137\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2220\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A01.2943208Z'\\\"\",\r\n \"name\": \"AzTestDSWE2220\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent25\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2269\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A19.7234464Z'\\\"\",\r\n \"name\": \"AzTestDSWE2269\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent72\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2270\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A36.7344279Z'\\\"\",\r\n \"name\": \"AzTestDSWE2270\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent150\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2280\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A06.1751833Z'\\\"\",\r\n \"name\": \"AzTestDSWE2280\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent269\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2281\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A51.3299350Z'\\\"\",\r\n \"name\": \"AzTestDSWE2281\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent141\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2402\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A02.7345069Z'\\\"\",\r\n \"name\": \"AzTestDSWE2402\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent273\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2490\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A52.9081041Z'\\\"\",\r\n \"name\": \"AzTestDSWE2490\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent299\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2497\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A03.1361756Z'\\\"\",\r\n \"name\": \"AzTestDSWE2497\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent14\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2533\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A15.4378459Z'\\\"\",\r\n \"name\": \"AzTestDSWE2533\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent29\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2540\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A21.1316007Z'\\\"\",\r\n \"name\": \"AzTestDSWE2540\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent277\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2601\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A54.5331284Z'\\\"\",\r\n \"name\": \"AzTestDSWE2601\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent99\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2651\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A46.8349361Z'\\\"\",\r\n \"name\": \"AzTestDSWE2651\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent201\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2660\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A25.5211673Z'\\\"\",\r\n \"name\": \"AzTestDSWE2660\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent48\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2710\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A27.9237269Z'\\\"\",\r\n \"name\": \"AzTestDSWE2710\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent255\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2719\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A45.9222538Z'\\\"\",\r\n \"name\": \"AzTestDSWE2719\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent80\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2724\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A39.6195250Z'\\\"\",\r\n \"name\": \"AzTestDSWE2724\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent244\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2746\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A41.7345738Z'\\\"\",\r\n \"name\": \"AzTestDSWE2746\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent126\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2774\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A57.2130519Z'\\\"\",\r\n \"name\": \"AzTestDSWE2774\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent34\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2793\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A22.8742786Z'\\\"\",\r\n \"name\": \"AzTestDSWE2793\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent241\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2821\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A40.6558127Z'\\\"\",\r\n \"name\": \"AzTestDSWE2821\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent123\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2860\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A56.1336218Z'\\\"\",\r\n \"name\": \"AzTestDSWE2860\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent33\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2919\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A22.5284485Z'\\\"\",\r\n \"name\": \"AzTestDSWE2919\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent62\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE2929\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A33.0542221Z'\\\"\",\r\n \"name\": \"AzTestDSWE2929\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent20\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3005\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A17.8046672Z'\\\"\",\r\n \"name\": \"AzTestDSWE3005\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent170\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3037\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A13.5857744Z'\\\"\",\r\n \"name\": \"AzTestDSWE3037\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent36\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3071\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A23.6016964Z'\\\"\",\r\n \"name\": \"AzTestDSWE3071\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent120\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3105\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A55.1023239Z'\\\"\",\r\n \"name\": \"AzTestDSWE3105\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent167\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3139\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A12.5232463Z'\\\"\",\r\n \"name\": \"AzTestDSWE3139\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent110\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3170\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A51.0451974Z'\\\"\",\r\n \"name\": \"AzTestDSWE3170\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent172\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3193\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A14.3290851Z'\\\"\",\r\n \"name\": \"AzTestDSWE3193\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent188\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3198\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A20.2213415Z'\\\"\",\r\n \"name\": \"AzTestDSWE3198\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent199\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3210\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A24.8023917Z'\\\"\",\r\n \"name\": \"AzTestDSWE3210\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent265\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3216\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A49.7610467Z'\\\"\",\r\n \"name\": \"AzTestDSWE3216\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent249\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3285\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A43.6564559Z'\\\"\",\r\n \"name\": \"AzTestDSWE3285\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent290\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3348\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A59.6240112Z'\\\"\",\r\n \"name\": \"AzTestDSWE3348\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent85\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3356\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A41.4804618Z'\\\"\",\r\n \"name\": \"AzTestDSWE3356\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent190\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3392\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A21.3151165Z'\\\"\",\r\n \"name\": \"AzTestDSWE3392\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent294\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3395\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A01.1589749Z'\\\"\",\r\n \"name\": \"AzTestDSWE3395\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent128\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3407\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A57.9162016Z'\\\"\",\r\n \"name\": \"AzTestDSWE3407\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent210\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3445\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A28.8494194Z'\\\"\",\r\n \"name\": \"AzTestDSWE3445\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent247\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3450\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A42.8907978Z'\\\"\",\r\n \"name\": \"AzTestDSWE3450\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent160\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3472\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A09.9506712Z'\\\"\",\r\n \"name\": \"AzTestDSWE3472\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent179\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3487\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A16.8863096Z'\\\"\",\r\n \"name\": \"AzTestDSWE3487\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent74\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3490\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A37.4531647Z'\\\"\",\r\n \"name\": \"AzTestDSWE3490\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent207\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3494\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A27.7610013Z'\\\"\",\r\n \"name\": \"AzTestDSWE3494\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent127\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3504\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A57.5568242Z'\\\"\",\r\n \"name\": \"AzTestDSWE3504\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent38\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3543\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A24.3239265Z'\\\"\",\r\n \"name\": \"AzTestDSWE3543\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent51\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3639\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A28.9862434Z'\\\"\",\r\n \"name\": \"AzTestDSWE3639\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent9\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE365\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A13.6237836Z'\\\"\",\r\n \"name\": \"AzTestDSWE365\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent200\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3680\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A25.1461218Z'\\\"\",\r\n \"name\": \"AzTestDSWE3680\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent161\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3707\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A10.3494317Z'\\\"\",\r\n \"name\": \"AzTestDSWE3707\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent60\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3751\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A32.3322865Z'\\\"\",\r\n \"name\": \"AzTestDSWE3751\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent67\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3799\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A34.9643272Z'\\\"\",\r\n \"name\": \"AzTestDSWE3799\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent21\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE381\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A18.1767890Z'\\\"\",\r\n \"name\": \"AzTestDSWE381\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent230\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3816\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A36.5537968Z'\\\"\",\r\n \"name\": \"AzTestDSWE3816\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent198\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3828\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A24.4429733Z'\\\"\",\r\n \"name\": \"AzTestDSWE3828\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent243\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3859\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A41.3751679Z'\\\"\",\r\n \"name\": \"AzTestDSWE3859\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent282\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3865\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A56.5137911Z'\\\"\",\r\n \"name\": \"AzTestDSWE3865\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent136\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3923\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A00.9505725Z'\\\"\",\r\n \"name\": \"AzTestDSWE3923\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent211\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE3990\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A29.1931850Z'\\\"\",\r\n \"name\": \"AzTestDSWE3990\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent47\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE400\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A27.5643403Z'\\\"\",\r\n \"name\": \"AzTestDSWE400\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent59\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4047\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A31.9864962Z'\\\"\",\r\n \"name\": \"AzTestDSWE4047\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent228\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4068\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A35.8371689Z'\\\"\",\r\n \"name\": \"AzTestDSWE4068\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent238\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4071\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A39.5448344Z'\\\"\",\r\n \"name\": \"AzTestDSWE4071\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent28\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4072\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A20.7878036Z'\\\"\",\r\n \"name\": \"AzTestDSWE4072\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent41\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4091\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A25.3924092Z'\\\"\",\r\n \"name\": \"AzTestDSWE4091\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent182\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4146\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A18.0483102Z'\\\"\",\r\n \"name\": \"AzTestDSWE4146\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent92\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4187\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A44.0403278Z'\\\"\",\r\n \"name\": \"AzTestDSWE4187\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent192\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4211\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A22.0680863Z'\\\"\",\r\n \"name\": \"AzTestDSWE4211\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent16\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4227\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A16.1878639Z'\\\"\",\r\n \"name\": \"AzTestDSWE4227\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent158\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4248\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A09.2342495Z'\\\"\",\r\n \"name\": \"AzTestDSWE4248\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent155\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4275\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A08.1788668Z'\\\"\",\r\n \"name\": \"AzTestDSWE4275\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent55\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4298\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A30.4477812Z'\\\"\",\r\n \"name\": \"AzTestDSWE4298\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent251\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4306\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A44.4064721Z'\\\"\",\r\n \"name\": \"AzTestDSWE4306\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent221\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4326\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A32.7714615Z'\\\"\",\r\n \"name\": \"AzTestDSWE4326\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent226\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE433\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A35.0650902Z'\\\"\",\r\n \"name\": \"AzTestDSWE433\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent164\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4343\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A11.3930283Z'\\\"\",\r\n \"name\": \"AzTestDSWE4343\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent193\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4353\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A22.4130296Z'\\\"\",\r\n \"name\": \"AzTestDSWE4353\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent257\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4396\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A46.6617861Z'\\\"\",\r\n \"name\": \"AzTestDSWE4396\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent285\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4457\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A57.6857043Z'\\\"\",\r\n \"name\": \"AzTestDSWE4457\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent119\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4465\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A54.7117168Z'\\\"\",\r\n \"name\": \"AzTestDSWE4465\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent208\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4475\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A28.1059928Z'\\\"\",\r\n \"name\": \"AzTestDSWE4475\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent86\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE451\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A41.8422625Z'\\\"\",\r\n \"name\": \"AzTestDSWE451\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent287\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE453\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A58.4669484Z'\\\"\",\r\n \"name\": \"AzTestDSWE453\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent177\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4602\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A16.1362991Z'\\\"\",\r\n \"name\": \"AzTestDSWE4602\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent45\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4606\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A26.8299354Z'\\\"\",\r\n \"name\": \"AzTestDSWE4606\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent171\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4644\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A13.9763683Z'\\\"\",\r\n \"name\": \"AzTestDSWE4644\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent1\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4679\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A10.8181506Z'\\\"\",\r\n \"name\": \"AzTestDSWE4679\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent7\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE468\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A12.9206643Z'\\\"\",\r\n \"name\": \"AzTestDSWE468\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent54\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4715\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A30.0727694Z'\\\"\",\r\n \"name\": \"AzTestDSWE4715\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent52\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4728\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A29.3612288Z'\\\"\",\r\n \"name\": \"AzTestDSWE4728\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent56\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4777\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A30.8384218Z'\\\"\",\r\n \"name\": \"AzTestDSWE4777\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent148\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4791\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A05.4720687Z'\\\"\",\r\n \"name\": \"AzTestDSWE4791\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent91\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4828\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A43.6733192Z'\\\"\",\r\n \"name\": \"AzTestDSWE4828\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent146\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4839\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A04.7533177Z'\\\"\",\r\n \"name\": \"AzTestDSWE4839\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent272\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4845\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A52.5330550Z'\\\"\",\r\n \"name\": \"AzTestDSWE4845\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent292\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4856\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A00.3896508Z'\\\"\",\r\n \"name\": \"AzTestDSWE4856\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent103\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4872\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A48.2914950Z'\\\"\",\r\n \"name\": \"AzTestDSWE4872\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent181\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4906\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A17.6889445Z'\\\"\",\r\n \"name\": \"AzTestDSWE4906\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent65\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4916\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A34.1712113Z'\\\"\",\r\n \"name\": \"AzTestDSWE4916\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent90\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE4975\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A43.2684188Z'\\\"\",\r\n \"name\": \"AzTestDSWE4975\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent22\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5045\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A18.6959912Z'\\\"\",\r\n \"name\": \"AzTestDSWE5045\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent77\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5124\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A38.5391349Z'\\\"\",\r\n \"name\": \"AzTestDSWE5124\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent204\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5147\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A26.6808372Z'\\\"\",\r\n \"name\": \"AzTestDSWE5147\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent31\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5179\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A21.8348203Z'\\\"\",\r\n \"name\": \"AzTestDSWE5179\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent220\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5311\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A32.4120793Z'\\\"\",\r\n \"name\": \"AzTestDSWE5311\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent142\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5323\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A03.0970071Z'\\\"\",\r\n \"name\": \"AzTestDSWE5323\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent104\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5347\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A48.7133517Z'\\\"\",\r\n \"name\": \"AzTestDSWE5347\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent116\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5360\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A53.5184680Z'\\\"\",\r\n \"name\": \"AzTestDSWE5360\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent100\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5385\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A47.1942937Z'\\\"\",\r\n \"name\": \"AzTestDSWE5385\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent169\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5396\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A13.2263773Z'\\\"\",\r\n \"name\": \"AzTestDSWE5396\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent6\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE543\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A12.5869826Z'\\\"\",\r\n \"name\": \"AzTestDSWE543\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent233\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5453\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A37.6957466Z'\\\"\",\r\n \"name\": \"AzTestDSWE5453\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent157\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5518\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A08.8905076Z'\\\"\",\r\n \"name\": \"AzTestDSWE5518\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent263\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5521\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A48.9888179Z'\\\"\",\r\n \"name\": \"AzTestDSWE5521\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent121\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5595\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A55.4461109Z'\\\"\",\r\n \"name\": \"AzTestDSWE5595\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent144\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5614\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A04.0501196Z'\\\"\",\r\n \"name\": \"AzTestDSWE5614\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent78\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE57\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A38.8985257Z'\\\"\",\r\n \"name\": \"AzTestDSWE57\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent73\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5704\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A37.0937809Z'\\\"\",\r\n \"name\": \"AzTestDSWE5704\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent135\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5730\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A00.5599042Z'\\\"\",\r\n \"name\": \"AzTestDSWE5730\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent101\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5744\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A47.5565435Z'\\\"\",\r\n \"name\": \"AzTestDSWE5744\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent109\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5800\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A50.6414287Z'\\\"\",\r\n \"name\": \"AzTestDSWE5800\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent18\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5813\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A17.0159990Z'\\\"\",\r\n \"name\": \"AzTestDSWE5813\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent280\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE582\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A55.7012201Z'\\\"\",\r\n \"name\": \"AzTestDSWE582\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent196\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5864\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A23.5583427Z'\\\"\",\r\n \"name\": \"AzTestDSWE5864\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent3\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5868\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A11.5525294Z'\\\"\",\r\n \"name\": \"AzTestDSWE5868\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent191\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5908\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A21.6692631Z'\\\"\",\r\n \"name\": \"AzTestDSWE5908\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent173\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5919\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A14.6855104Z'\\\"\",\r\n \"name\": \"AzTestDSWE5919\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent229\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5920\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A36.2058969Z'\\\"\",\r\n \"name\": \"AzTestDSWE5920\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent58\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5932\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A31.5937092Z'\\\"\",\r\n \"name\": \"AzTestDSWE5932\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent131\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5943\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A59.1224182Z'\\\"\",\r\n \"name\": \"AzTestDSWE5943\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent39\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE5950\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A24.6719723Z'\\\"\",\r\n \"name\": \"AzTestDSWE5950\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent291\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6051\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A00.0007757Z'\\\"\",\r\n \"name\": \"AzTestDSWE6051\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent275\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6079\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A53.7362492Z'\\\"\",\r\n \"name\": \"AzTestDSWE6079\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent214\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6096\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A30.2713286Z'\\\"\",\r\n \"name\": \"AzTestDSWE6096\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent87\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6115\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A42.1790632Z'\\\"\",\r\n \"name\": \"AzTestDSWE6115\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent168\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6168\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A12.8825977Z'\\\"\",\r\n \"name\": \"AzTestDSWE6168\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent298\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6184\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A02.7691622Z'\\\"\",\r\n \"name\": \"AzTestDSWE6184\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent189\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6192\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A20.7057425Z'\\\"\",\r\n \"name\": \"AzTestDSWE6192\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent166\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6238\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A12.1795046Z'\\\"\",\r\n \"name\": \"AzTestDSWE6238\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent236\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6283\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A38.8051398Z'\\\"\",\r\n \"name\": \"AzTestDSWE6283\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent186\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6315\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A19.5170845Z'\\\"\",\r\n \"name\": \"AzTestDSWE6315\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent5\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6317\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A12.2432287Z'\\\"\",\r\n \"name\": \"AzTestDSWE6317\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent71\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE632\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A36.3749818Z'\\\"\",\r\n \"name\": \"AzTestDSWE632\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent124\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6326\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A56.4929976Z'\\\"\",\r\n \"name\": \"AzTestDSWE6326\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent81\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6390\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A39.9964282Z'\\\"\",\r\n \"name\": \"AzTestDSWE6390\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent203\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6400\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A26.3336921Z'\\\"\",\r\n \"name\": \"AzTestDSWE6400\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent125\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6443\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A56.8523630Z'\\\"\",\r\n \"name\": \"AzTestDSWE6443\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent12\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6483\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A14.7644311Z'\\\"\",\r\n \"name\": \"AzTestDSWE6483\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent49\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6503\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A28.2831082Z'\\\"\",\r\n \"name\": \"AzTestDSWE6503\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent288\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6569\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A58.8419566Z'\\\"\",\r\n \"name\": \"AzTestDSWE6569\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent102\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE659\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A47.9159554Z'\\\"\",\r\n \"name\": \"AzTestDSWE659\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent163\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6597\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A11.0447065Z'\\\"\",\r\n \"name\": \"AzTestDSWE6597\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent117\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6636\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A53.9757683Z'\\\"\",\r\n \"name\": \"AzTestDSWE6636\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent143\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6643\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A03.4563905Z'\\\"\",\r\n \"name\": \"AzTestDSWE6643\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent13\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6719\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A15.0940865Z'\\\"\",\r\n \"name\": \"AzTestDSWE6719\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent26\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6791\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A20.0888565Z'\\\"\",\r\n \"name\": \"AzTestDSWE6791\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent268\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6805\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A50.9236787Z'\\\"\",\r\n \"name\": \"AzTestDSWE6805\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent185\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6830\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A19.1577051Z'\\\"\",\r\n \"name\": \"AzTestDSWE6830\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent212\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6852\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A29.5525462Z'\\\"\",\r\n \"name\": \"AzTestDSWE6852\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent274\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6890\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A53.3143199Z'\\\"\",\r\n \"name\": \"AzTestDSWE6890\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent218\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6903\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A31.6932962Z'\\\"\",\r\n \"name\": \"AzTestDSWE6903\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources?$filter=kind+eq+'WindowsEvent'&api-version=2015-11-01-preview&$skiptoken=AzTestDSWE6954\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "dfa2e952-8e33-438a-be1a-41e9de4fec9f" + ], + "x-ms-correlation-request-id": [ + "dfa2e952-8e33-438a-be1a-41e9de4fec9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221903Z:dfa2e952-8e33-438a-be1a-41e9de4fec9f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/dataSources?$filter=kind+eq+'WindowsEvent'&api-version=2015-11-01-preview&$skiptoken=AzTestDSWE6954", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2Mzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM2ODAvZGF0YVNvdXJjZXM/JGZpbHRlcj1raW5kK2VxKydXaW5kb3dzRXZlbnQnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldyYkc2tpcHRva2VuPUF6VGVzdERTV0U2OTU0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52a3516c-867b-4e7d-bbf0-7c6ca62dd9ab" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent206\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6954\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A27.4016178Z'\\\"\",\r\n \"name\": \"AzTestDSWE6954\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent134\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6979\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A00.2005824Z'\\\"\",\r\n \"name\": \"AzTestDSWE6979\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent279\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6982\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A55.3135706Z'\\\"\",\r\n \"name\": \"AzTestDSWE6982\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent30\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE6995\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A21.4753559Z'\\\"\",\r\n \"name\": \"AzTestDSWE6995\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent8\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7001\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A13.2800288Z'\\\"\",\r\n \"name\": \"AzTestDSWE7001\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent225\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7127\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A34.4433530Z'\\\"\",\r\n \"name\": \"AzTestDSWE7127\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent105\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE720\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A49.0727715Z'\\\"\",\r\n \"name\": \"AzTestDSWE720\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent259\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7200\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A47.4380200Z'\\\"\",\r\n \"name\": \"AzTestDSWE7200\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent276\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7228\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A54.1424667Z'\\\"\",\r\n \"name\": \"AzTestDSWE7228\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent32\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7261\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A22.1817250Z'\\\"\",\r\n \"name\": \"AzTestDSWE7261\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent79\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7359\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A39.2579087Z'\\\"\",\r\n \"name\": \"AzTestDSWE7359\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent118\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7382\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A54.3674316Z'\\\"\",\r\n \"name\": \"AzTestDSWE7382\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent64\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE740\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A33.8118072Z'\\\"\",\r\n \"name\": \"AzTestDSWE740\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent132\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7405\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A59.4974075Z'\\\"\",\r\n \"name\": \"AzTestDSWE7405\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent242\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7435\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A41.0157991Z'\\\"\",\r\n \"name\": \"AzTestDSWE7435\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent271\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7485\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A52.1268072Z'\\\"\",\r\n \"name\": \"AzTestDSWE7485\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent219\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7511\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A32.0370306Z'\\\"\",\r\n \"name\": \"AzTestDSWE7511\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent17\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE753\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A16.6410105Z'\\\"\",\r\n \"name\": \"AzTestDSWE753\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent174\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7536\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A15.0414209Z'\\\"\",\r\n \"name\": \"AzTestDSWE7536\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent286\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7554\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A58.0763240Z'\\\"\",\r\n \"name\": \"AzTestDSWE7554\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent44\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7567\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A26.4705631Z'\\\"\",\r\n \"name\": \"AzTestDSWE7567\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent83\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7568\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A40.7616958Z'\\\"\",\r\n \"name\": \"AzTestDSWE7568\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent15\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7590\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A15.8128679Z'\\\"\",\r\n \"name\": \"AzTestDSWE7590\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent213\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE760\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A29.9135639Z'\\\"\",\r\n \"name\": \"AzTestDSWE760\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent23\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7625\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A19.0397595Z'\\\"\",\r\n \"name\": \"AzTestDSWE7625\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent205\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7634\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A27.0422367Z'\\\"\",\r\n \"name\": \"AzTestDSWE7634\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent289\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7636\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A59.2333932Z'\\\"\",\r\n \"name\": \"AzTestDSWE7636\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent108\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7655\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A50.2849652Z'\\\"\",\r\n \"name\": \"AzTestDSWE7655\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent0\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7721\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A10.4431542Z'\\\"\",\r\n \"name\": \"AzTestDSWE7721\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent10\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7735\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A13.9987906Z'\\\"\",\r\n \"name\": \"AzTestDSWE7735\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent232\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE774\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A37.3207095Z'\\\"\",\r\n \"name\": \"AzTestDSWE774\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent237\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7745\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A39.1697510Z'\\\"\",\r\n \"name\": \"AzTestDSWE7745\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent129\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7752\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A58.3380785Z'\\\"\",\r\n \"name\": \"AzTestDSWE7752\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent162\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE778\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A10.6853226Z'\\\"\",\r\n \"name\": \"AzTestDSWE778\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent281\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE782\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A56.1231491Z'\\\"\",\r\n \"name\": \"AzTestDSWE782\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent63\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7824\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A33.4524238Z'\\\"\",\r\n \"name\": \"AzTestDSWE7824\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent69\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7836\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A35.6777538Z'\\\"\",\r\n \"name\": \"AzTestDSWE7836\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent253\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7898\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A45.2033582Z'\\\"\",\r\n \"name\": \"AzTestDSWE7898\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent4\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE7900\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A11.8978996Z'\\\"\",\r\n \"name\": \"AzTestDSWE7900\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent258\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8019\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A47.0659986Z'\\\"\",\r\n \"name\": \"AzTestDSWE8019\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent159\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8047\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A09.5936131Z'\\\"\",\r\n \"name\": \"AzTestDSWE8047\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent278\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8071\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A54.9237627Z'\\\"\",\r\n \"name\": \"AzTestDSWE8071\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent260\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8114\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A47.8161159Z'\\\"\",\r\n \"name\": \"AzTestDSWE8114\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent145\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8171\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A04.4095021Z'\\\"\",\r\n \"name\": \"AzTestDSWE8171\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent112\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8184\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A51.8523146Z'\\\"\",\r\n \"name\": \"AzTestDSWE8184\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent95\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE82\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A45.3192984Z'\\\"\",\r\n \"name\": \"AzTestDSWE82\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent88\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8203\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A42.5515703Z'\\\"\",\r\n \"name\": \"AzTestDSWE8203\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent57\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8241\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A31.2151578Z'\\\"\",\r\n \"name\": \"AzTestDSWE8241\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent248\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8256\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A43.2814588Z'\\\"\",\r\n \"name\": \"AzTestDSWE8256\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent176\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE829\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A15.7757891Z'\\\"\",\r\n \"name\": \"AzTestDSWE829\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent296\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8337\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A01.9353470Z'\\\"\",\r\n \"name\": \"AzTestDSWE8337\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent140\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8459\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A02.3907297Z'\\\"\",\r\n \"name\": \"AzTestDSWE8459\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent89\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8494\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A42.9080140Z'\\\"\",\r\n \"name\": \"AzTestDSWE8494\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent262\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8554\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A48.5981651Z'\\\"\",\r\n \"name\": \"AzTestDSWE8554\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent215\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8564\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A30.6151469Z'\\\"\",\r\n \"name\": \"AzTestDSWE8564\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent113\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8572\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A52.3590286Z'\\\"\",\r\n \"name\": \"AzTestDSWE8572\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent156\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8593\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A08.5295489Z'\\\"\",\r\n \"name\": \"AzTestDSWE8593\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent202\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8621\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A25.8961766Z'\\\"\",\r\n \"name\": \"AzTestDSWE8621\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent256\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8645\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A46.2901316Z'\\\"\",\r\n \"name\": \"AzTestDSWE8645\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent178\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8664\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A16.4957069Z'\\\"\",\r\n \"name\": \"AzTestDSWE8664\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent82\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8796\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A40.3710823Z'\\\"\",\r\n \"name\": \"AzTestDSWE8796\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent227\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8839\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A35.4270405Z'\\\"\",\r\n \"name\": \"AzTestDSWE8839\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent295\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8880\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A19%3A01.5421637Z'\\\"\",\r\n \"name\": \"AzTestDSWE8880\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent75\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8913\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A37.8125718Z'\\\"\",\r\n \"name\": \"AzTestDSWE8913\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent61\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE8959\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A32.6947529Z'\\\"\",\r\n \"name\": \"AzTestDSWE8959\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent197\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9015\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A24.0427720Z'\\\"\",\r\n \"name\": \"AzTestDSWE9015\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent154\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9020\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A07.8194761Z'\\\"\",\r\n \"name\": \"AzTestDSWE9020\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent107\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9022\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A49.8227780Z'\\\"\",\r\n \"name\": \"AzTestDSWE9022\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent40\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9042\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A25.0330261Z'\\\"\",\r\n \"name\": \"AzTestDSWE9042\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent246\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9054\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A42.4845379Z'\\\"\",\r\n \"name\": \"AzTestDSWE9054\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent98\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9180\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A46.4599438Z'\\\"\",\r\n \"name\": \"AzTestDSWE9180\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent183\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9219\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A18.4077088Z'\\\"\",\r\n \"name\": \"AzTestDSWE9219\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent66\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9220\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A34.5298015Z'\\\"\",\r\n \"name\": \"AzTestDSWE9220\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent42\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9253\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A25.7517681Z'\\\"\",\r\n \"name\": \"AzTestDSWE9253\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent235\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9289\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A38.4301069Z'\\\"\",\r\n \"name\": \"AzTestDSWE9289\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent209\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9337\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A28.4900083Z'\\\"\",\r\n \"name\": \"AzTestDSWE9337\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent254\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9352\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A45.5627515Z'\\\"\",\r\n \"name\": \"AzTestDSWE9352\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent245\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9400\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A42.1095678Z'\\\"\",\r\n \"name\": \"AzTestDSWE9400\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent152\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9414\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A07.1127045Z'\\\"\",\r\n \"name\": \"AzTestDSWE9414\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent261\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9425\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A48.2075674Z'\\\"\",\r\n \"name\": \"AzTestDSWE9425\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent93\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9494\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A44.5868173Z'\\\"\",\r\n \"name\": \"AzTestDSWE9494\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent283\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9509\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A56.9044367Z'\\\"\",\r\n \"name\": \"AzTestDSWE9509\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent267\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE953\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A50.5486629Z'\\\"\",\r\n \"name\": \"AzTestDSWE953\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent46\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9543\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A27.2049406Z'\\\"\",\r\n \"name\": \"AzTestDSWE9543\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent216\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9560\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A30.9745541Z'\\\"\",\r\n \"name\": \"AzTestDSWE9560\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent111\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9651\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A51.4535307Z'\\\"\",\r\n \"name\": \"AzTestDSWE9651\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent175\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9681\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A15.4007955Z'\\\"\",\r\n \"name\": \"AzTestDSWE9681\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent184\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9692\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A18.7983298Z'\\\"\",\r\n \"name\": \"AzTestDSWE9692\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent130\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9697\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A58.7130764Z'\\\"\",\r\n \"name\": \"AzTestDSWE9697\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent11\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE97\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A14.3425449Z'\\\"\",\r\n \"name\": \"AzTestDSWE97\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent284\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9701\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A57.2950271Z'\\\"\",\r\n \"name\": \"AzTestDSWE9701\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent68\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9739\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A35.3162513Z'\\\"\",\r\n \"name\": \"AzTestDSWE9739\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent35\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9753\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A23.2351983Z'\\\"\",\r\n \"name\": \"AzTestDSWE9753\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent234\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9806\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A38.0551204Z'\\\"\",\r\n \"name\": \"AzTestDSWE9806\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent2\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9823\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A11.1775507Z'\\\"\",\r\n \"name\": \"AzTestDSWE9823\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent240\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9875\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A40.2808091Z'\\\"\",\r\n \"name\": \"AzTestDSWE9875\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent147\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9918\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A05.1126778Z'\\\"\",\r\n \"name\": \"AzTestDSWE9918\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent43\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9920\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A17%3A26.1111727Z'\\\"\",\r\n \"name\": \"AzTestDSWE9920\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent222\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9939\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A33.1620903Z'\\\"\",\r\n \"name\": \"AzTestDSWE9939\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n },\r\n {\r\n \"kind\": \"WindowsEvent\",\r\n \"properties\": {\r\n \"eventLogName\": \"windowsEvent223\",\r\n \"eventTypes\": [\r\n {\r\n \"eventType\": \"Error\"\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6384/providers/Microsoft.OperationalInsights/workspaces/AzTest3680/datasources/AzTestDSWE9975\",\r\n \"etag\": \"W/\\\"datetime'2016-11-02T22%3A18%3A33.6308109Z'\\\"\",\r\n \"name\": \"AzTestDSWE9975\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/datasources\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:19:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "c913a385-7098-4c6f-bd0f-fe52b2421d75" + ], + "x-ms-correlation-request-id": [ + "c913a385-7098-4c6f-bd0f-fe52b2421d75" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T221904Z:c913a385-7098-4c6f-bd0f-fe52b2421d75" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CanPageThroughDataSourceList": [ + "OIAutoRest6384", + "AzTest3680", + "AzTestDSWE7721", + "AzTestDSWE4679", + "AzTestDSWE9823", + "AzTestDSWE5868", + "AzTestDSWE7900", + "AzTestDSWE6317", + "AzTestDSWE543", + "AzTestDSWE468", + "AzTestDSWE7001", + "AzTestDSWE365", + "AzTestDSWE7735", + "AzTestDSWE97", + "AzTestDSWE6483", + "AzTestDSWE6719", + "AzTestDSWE2533", + "AzTestDSWE7590", + "AzTestDSWE4227", + "AzTestDSWE753", + "AzTestDSWE5813", + "AzTestDSWE1655", + "AzTestDSWE3005", + "AzTestDSWE381", + "AzTestDSWE5045", + "AzTestDSWE7625", + "AzTestDSWE1967", + "AzTestDSWE2269", + "AzTestDSWE6791", + "AzTestDSWE1508", + "AzTestDSWE4072", + "AzTestDSWE2540", + "AzTestDSWE6995", + "AzTestDSWE5179", + "AzTestDSWE7261", + "AzTestDSWE2919", + "AzTestDSWE2793", + "AzTestDSWE9753", + "AzTestDSWE3071", + "AzTestDSWE121", + "AzTestDSWE3543", + "AzTestDSWE5950", + "AzTestDSWE9042", + "AzTestDSWE4091", + "AzTestDSWE9253", + "AzTestDSWE9920", + "AzTestDSWE7567", + "AzTestDSWE4606", + "AzTestDSWE9543", + "AzTestDSWE400", + "AzTestDSWE2710", + "AzTestDSWE6503", + "AzTestDSWE1352", + "AzTestDSWE3639", + "AzTestDSWE4728", + "AzTestDSWE1146", + "AzTestDSWE4715", + "AzTestDSWE4298", + "AzTestDSWE4777", + "AzTestDSWE8241", + "AzTestDSWE5932", + "AzTestDSWE4047", + "AzTestDSWE3751", + "AzTestDSWE8959", + "AzTestDSWE2929", + "AzTestDSWE7824", + "AzTestDSWE740", + "AzTestDSWE4916", + "AzTestDSWE9220", + "AzTestDSWE3799", + "AzTestDSWE9739", + "AzTestDSWE7836", + "AzTestDSWE1155", + "AzTestDSWE632", + "AzTestDSWE2270", + "AzTestDSWE5704", + "AzTestDSWE3490", + "AzTestDSWE8913", + "AzTestDSWE1127", + "AzTestDSWE5124", + "AzTestDSWE57", + "AzTestDSWE7359", + "AzTestDSWE2724", + "AzTestDSWE6390", + "AzTestDSWE8796", + "AzTestDSWE7568", + "AzTestDSWE1188", + "AzTestDSWE3356", + "AzTestDSWE451", + "AzTestDSWE6115", + "AzTestDSWE8203", + "AzTestDSWE8494", + "AzTestDSWE4975", + "AzTestDSWE4828", + "AzTestDSWE4187", + "AzTestDSWE9494", + "AzTestDSWE2199", + "AzTestDSWE82", + "AzTestDSWE1161", + "AzTestDSWE1428", + "AzTestDSWE9180", + "AzTestDSWE2651", + "AzTestDSWE5385", + "AzTestDSWE5744", + "AzTestDSWE659", + "AzTestDSWE4872", + "AzTestDSWE5347", + "AzTestDSWE720", + "AzTestDSWE1369", + "AzTestDSWE9022", + "AzTestDSWE7655", + "AzTestDSWE5800", + "AzTestDSWE3170", + "AzTestDSWE9651", + "AzTestDSWE8184", + "AzTestDSWE8572", + "AzTestDSWE1323", + "AzTestDSWE163", + "AzTestDSWE5360", + "AzTestDSWE6636", + "AzTestDSWE7382", + "AzTestDSWE4465", + "AzTestDSWE3105", + "AzTestDSWE5595", + "AzTestDSWE1244", + "AzTestDSWE2860", + "AzTestDSWE6326", + "AzTestDSWE6443", + "AzTestDSWE2774", + "AzTestDSWE3504", + "AzTestDSWE3407", + "AzTestDSWE7752", + "AzTestDSWE9697", + "AzTestDSWE5943", + "AzTestDSWE7405", + "AzTestDSWE1974", + "AzTestDSWE6979", + "AzTestDSWE5730", + "AzTestDSWE3923", + "AzTestDSWE2220", + "AzTestDSWE1986", + "AzTestDSWE1427", + "AzTestDSWE8459", + "AzTestDSWE2402", + "AzTestDSWE5323", + "AzTestDSWE6643", + "AzTestDSWE5614", + "AzTestDSWE8171", + "AzTestDSWE4839", + "AzTestDSWE9918", + "AzTestDSWE4791", + "AzTestDSWE1797", + "AzTestDSWE2280", + "AzTestDSWE148", + "AzTestDSWE9414", + "AzTestDSWE2012", + "AzTestDSWE9020", + "AzTestDSWE4275", + "AzTestDSWE8593", + "AzTestDSWE5518", + "AzTestDSWE4248", + "AzTestDSWE8047", + "AzTestDSWE3472", + "AzTestDSWE3707", + "AzTestDSWE778", + "AzTestDSWE6597", + "AzTestDSWE4343", + "AzTestDSWE1628", + "AzTestDSWE6238", + "AzTestDSWE3139", + "AzTestDSWE6168", + "AzTestDSWE5396", + "AzTestDSWE3037", + "AzTestDSWE4644", + "AzTestDSWE3193", + "AzTestDSWE5919", + "AzTestDSWE7536", + "AzTestDSWE9681", + "AzTestDSWE829", + "AzTestDSWE4602", + "AzTestDSWE8664", + "AzTestDSWE3487", + "AzTestDSWE1951", + "AzTestDSWE4906", + "AzTestDSWE4146", + "AzTestDSWE9219", + "AzTestDSWE9692", + "AzTestDSWE6830", + "AzTestDSWE6315", + "AzTestDSWE1911", + "AzTestDSWE3198", + "AzTestDSWE6192", + "AzTestDSWE3392", + "AzTestDSWE5908", + "AzTestDSWE4211", + "AzTestDSWE4353", + "AzTestDSWE1851", + "AzTestDSWE1615", + "AzTestDSWE5864", + "AzTestDSWE9015", + "AzTestDSWE3828", + "AzTestDSWE3210", + "AzTestDSWE3680", + "AzTestDSWE2660", + "AzTestDSWE8621", + "AzTestDSWE6400", + "AzTestDSWE5147", + "AzTestDSWE7634", + "AzTestDSWE6954", + "AzTestDSWE3494", + "AzTestDSWE4475", + "AzTestDSWE9337", + "AzTestDSWE3445", + "AzTestDSWE3990", + "AzTestDSWE6852", + "AzTestDSWE760", + "AzTestDSWE6096", + "AzTestDSWE8564", + "AzTestDSWE9560", + "AzTestDSWE1558", + "AzTestDSWE6903", + "AzTestDSWE7511", + "AzTestDSWE5311", + "AzTestDSWE4326", + "AzTestDSWE9939", + "AzTestDSWE9975", + "AzTestDSWE2003", + "AzTestDSWE7127", + "AzTestDSWE433", + "AzTestDSWE8839", + "AzTestDSWE4068", + "AzTestDSWE5920", + "AzTestDSWE3816", + "AzTestDSWE1813", + "AzTestDSWE774", + "AzTestDSWE5453", + "AzTestDSWE9806", + "AzTestDSWE9289", + "AzTestDSWE6283", + "AzTestDSWE7745", + "AzTestDSWE4071", + "AzTestDSWE2058", + "AzTestDSWE9875", + "AzTestDSWE2821", + "AzTestDSWE7435", + "AzTestDSWE3859", + "AzTestDSWE2746", + "AzTestDSWE9400", + "AzTestDSWE9054", + "AzTestDSWE3450", + "AzTestDSWE8256", + "AzTestDSWE3285", + "AzTestDSWE2054", + "AzTestDSWE4306", + "AzTestDSWE2111", + "AzTestDSWE7898", + "AzTestDSWE9352", + "AzTestDSWE2719", + "AzTestDSWE8645", + "AzTestDSWE4396", + "AzTestDSWE8019", + "AzTestDSWE7200", + "AzTestDSWE8114", + "AzTestDSWE9425", + "AzTestDSWE8554", + "AzTestDSWE5521", + "AzTestDSWE1631", + "AzTestDSWE3216", + "AzTestDSWE1399", + "AzTestDSWE953", + "AzTestDSWE6805", + "AzTestDSWE2281", + "AzTestDSWE1814", + "AzTestDSWE7485", + "AzTestDSWE4845", + "AzTestDSWE2490", + "AzTestDSWE6890", + "AzTestDSWE6079", + "AzTestDSWE7228", + "AzTestDSWE2601", + "AzTestDSWE8071", + "AzTestDSWE6982", + "AzTestDSWE582", + "AzTestDSWE782", + "AzTestDSWE3865", + "AzTestDSWE9509", + "AzTestDSWE9701", + "AzTestDSWE4457", + "AzTestDSWE7554", + "AzTestDSWE453", + "AzTestDSWE6569", + "AzTestDSWE7636", + "AzTestDSWE3348", + "AzTestDSWE6051", + "AzTestDSWE4856", + "AzTestDSWE1761", + "AzTestDSWE3395", + "AzTestDSWE8880", + "AzTestDSWE8337", + "AzTestDSWE1114", + "AzTestDSWE6184", + "AzTestDSWE2497" + ] + }, + "Variables": { + "SubscriptionId": "a6383be3-f0e8-4968-93d5-10f2625f5bb5" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/DataSourceCreateFailsWithoutWorkspace.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/DataSourceCreateFailsWithoutWorkspace.json new file mode 100644 index 000000000000..2af875f81df3 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.DataSourceOperationsTests/DataSourceCreateFailsWithoutWorkspace.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest22?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QyMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "dce49dbf-0601-43a2-8d5b-4cb609f02aa5" + ], + "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/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest22\",\r\n \"name\": \"OIAutoRest22\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:31:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "ab471ecd-24bb-4bb8-aeb6-cfd004832a38" + ], + "x-ms-correlation-request-id": [ + "ab471ecd-24bb-4bb8-aeb6-cfd004832a38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T203140Z:ab471ecd-24bb-4bb8-aeb6-cfd004832a38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest22/providers/Microsoft.OperationalInsights/workspaces/AzTest6434/dataSources/AzTestDS9030?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk9wZXJhdGlvbmFsSW5zaWdodHMvd29ya3NwYWNlcy9BelRlc3Q2NDM0L2RhdGFTb3VyY2VzL0F6VGVzdERTOTAzMD9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"LinkedResourceId\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/microsoft.insights/eventtypes/management\"\r\n },\r\n \"kind\": \"AzureAuditLog\",\r\n \"name\": \"AzTestDS9030\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "213" + ], + "x-ms-client-request-id": [ + "e057639f-726c-4bbd-aa88-e9ca3f88c214" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ParentResourceNotFound\",\r\n \"message\": \"Can not perform requested operation on nested resource. Parent resource 'AzTest6434' not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 20:32:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "05e82e19-5257-41d0-b2e4-df8a641eccb3" + ], + "x-ms-correlation-request-id": [ + "05e82e19-5257-41d0-b2e4-df8a641eccb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T203213Z:05e82e19-5257-41d0-b2e4-df8a641eccb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "DataSourceCreateFailsWithoutWorkspace": [ + "OIAutoRest22", + "AzTestDS9030", + "AzTest6434" + ] + }, + "Variables": { + "SubscriptionId": "a6383be3-f0e8-4968-93d5-10f2625f5bb5" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.LinkedServiceOperationsTests/CanCreateUpdateDeleteLinkedService.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.LinkedServiceOperationsTests/CanCreateUpdateDeleteLinkedService.json new file mode 100644 index 000000000000..a3977db49f0c --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.LinkedServiceOperationsTests/CanCreateUpdateDeleteLinkedService.json @@ -0,0 +1,443 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OIHyak7814/providers/Microsoft.OperationalInsights/workspaces/AzTest6856/linkedServices/Automation?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JSHlhazc4MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvQXpUZXN0Njg1Ni9saW5rZWRTZXJ2aWNlcy9BdXRvbWF0aW9uP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"Automation\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OIHyak7814/providers/Microsoft.Automation/automationAccounts/sdkTestAccount\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "217" + ], + "x-ms-client-request-id": [ + "5a5a0a4f-c4dc-4a09-a902-e17167e6f84b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.17.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OIHyak7814/providers/Microsoft.Automation/automationAccounts/sdkTestAccount\"\r\n },\r\n \"id\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/oihyak7814/providers/microsoft.operationalinsights/workspaces/aztest6856/linkedservices/automation\",\r\n \"name\": \"AzTest6856/Automation\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/linkedServices\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "19ad9793-5cfc-47c9-8a75-94dc3515cacd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "ea8bbed8-6adf-4455-b183-64ebceb21f8a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160922T071710Z:ea8bbed8-6adf-4455-b183-64ebceb21f8a" + ], + "Date": [ + "Thu, 22 Sep 2016 07:17:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OIHyak7814/providers/Microsoft.OperationalInsights/workspaces/AzTest6856/linkedServices/Automation?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JSHlhazc4MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvQXpUZXN0Njg1Ni9saW5rZWRTZXJ2aWNlcy9BdXRvbWF0aW9uP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"Automation\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OIHyak7814/providers/Microsoft.Automation/automationAccounts/testAcc\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "210" + ], + "x-ms-client-request-id": [ + "a2d84d67-17ad-4645-9ccf-489ca52b9098" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.17.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OIHyak7814/providers/Microsoft.Automation/automationAccounts/testAcc\"\r\n },\r\n \"id\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/oihyak7814/providers/microsoft.operationalinsights/workspaces/aztest6856/linkedservices/automation\",\r\n \"name\": \"AzTest6856/Automation\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/linkedServices\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "684f6af5-fc98-4640-ae82-7732ca2fa9de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "e8431ab3-9ea1-45e7-a812-3432aebe3e08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160922T071738Z:e8431ab3-9ea1-45e7-a812-3432aebe3e08" + ], + "Date": [ + "Thu, 22 Sep 2016 07:17:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OIHyak7814/providers/Microsoft.OperationalInsights/workspaces/AzTest6856/linkedServices/Automation?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JSHlhazc4MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvQXpUZXN0Njg1Ni9saW5rZWRTZXJ2aWNlcy9BdXRvbWF0aW9uP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09386e1f-abcd-409d-8f37-2e076d94d405" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.17.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OIHyak7814/providers/Microsoft.Automation/automationAccounts/sdkTestAccount\"\r\n },\r\n \"id\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/oihyak7814/providers/microsoft.operationalinsights/workspaces/aztest6856/linkedservices/automation\",\r\n \"name\": \"AzTest6856/Automation\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/linkedServices\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "d4aaa8eb-b5dd-48ad-a88e-73591a9bdbb2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14750" + ], + "x-ms-correlation-request-id": [ + "3aef2db4-21f9-4221-981b-a9bcc5536b27" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160922T071715Z:3aef2db4-21f9-4221-981b-a9bcc5536b27" + ], + "Date": [ + "Thu, 22 Sep 2016 07:17:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OIHyak7814/providers/Microsoft.OperationalInsights/workspaces/AzTest6856/linkedServices/Automation?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JSHlhazc4MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvQXpUZXN0Njg1Ni9saW5rZWRTZXJ2aWNlcy9BdXRvbWF0aW9uP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "623ddd10-887d-4c72-a1ae-3a30ecc2f7a9" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.17.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "d812d42b-73f6-4cb0-b739-43dc51049553" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14747" + ], + "x-ms-correlation-request-id": [ + "89c6800e-3f22-4160-98d1-6291167964c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160922T071752Z:89c6800e-3f22-4160-98d1-6291167964c6" + ], + "Date": [ + "Thu, 22 Sep 2016 07:17:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OIHyak7814/providers/Microsoft.OperationalInsights/workspaces/AzTest6856/linkedServices?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JSHlhazc4MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvQXpUZXN0Njg1Ni9saW5rZWRTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc139ac3-5d1e-4042-ba13-11822ebe76cf" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.17.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OIHyak7814/providers/Microsoft.Automation/automationAccounts/sdkTestAccount\"\r\n },\r\n \"id\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/oihyak7814/providers/microsoft.operationalinsights/workspaces/aztest6856/linkedservices/automation\",\r\n \"name\": \"AzTest6856/Automation\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/linkedServices\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "e412f85e-7952-4393-8d39-28ea77dd7ff1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14749" + ], + "x-ms-correlation-request-id": [ + "bcb9c8e8-d791-40a5-afd3-b030e33be612" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160922T071721Z:bcb9c8e8-d791-40a5-afd3-b030e33be612" + ], + "Date": [ + "Thu, 22 Sep 2016 07:17:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OIHyak7814/providers/Microsoft.OperationalInsights/workspaces/AzTest6856/linkedServices/Automation?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JSHlhazc4MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvQXpUZXN0Njg1Ni9saW5rZWRTZXJ2aWNlcy9BdXRvbWF0aW9uP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51e00177-cac7-4d37-97c8-478b2d6ded93" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.17.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "8ea5e5e8-9ffc-4ba2-96c4-73c1e9c82234" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "66ab7453-71f8-4de0-b236-52d4ecd298d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160922T071746Z:66ab7453-71f8-4de0-b236-52d4ecd298d0" + ], + "Date": [ + "Thu, 22 Sep 2016 07:17:46 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "df1ec963-d784-4d11-a779-1b3eeb9ecb78" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.LinkedServiceOperationsTests/LinkedServiceCreateFailsWithoutWorkspace.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.LinkedServiceOperationsTests/LinkedServiceCreateFailsWithoutWorkspace.json new file mode 100644 index 000000000000..111feb26980e --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.LinkedServiceOperationsTests/LinkedServiceCreateFailsWithoutWorkspace.json @@ -0,0 +1,69 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OIHyak7814/providers/Microsoft.OperationalInsights/workspaces/AzSDKTest2888/linkedServices/Automation?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JSHlhazc4MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvQXpTREtUZXN0Mjg4OC9saW5rZWRTZXJ2aWNlcy9BdXRvbWF0aW9uP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"Automation\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OIHyak7814/providers/Microsoft.Automation/automationAccounts/testAccount\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "214" + ], + "x-ms-client-request-id": [ + "c2e87c7f-a6d6-4068-9929-971c7e78f8af" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.17.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ParentResourceNotFound\",\r\n \"message\": \"Can not perform requested operation on nested resource. Parent resource 'AzSDKTest2888' not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2092ded5-a664-49a1-ab23-9df7f0e10a06" + ], + "x-ms-correlation-request-id": [ + "2092ded5-a664-49a1-ab23-9df7f0e10a06" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160922T071252Z:2092ded5-a664-49a1-ab23-9df7f0e10a06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 22 Sep 2016 07:12:52 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "LinkedServiceCreateFailsWithoutWorkspace": [ + "AzSDKTest2888" + ] + }, + "Variables": { + "SubscriptionId": "df1ec963-d784-4d11-a779-1b3eeb9ecb78" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanCreateOrUpdateAndDeleteSavedSearches.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanCreateOrUpdateAndDeleteSavedSearches.json new file mode 100644 index 000000000000..42acaaba2057 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanCreateOrUpdateAndDeleteSavedSearches.json @@ -0,0 +1,437 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "872e7403-490e-4b13-8d5c-12227830f171" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"__metadata\": {},\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0022aa2d-e4c2-4792-8672-c46e77ed116e\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A14%3A17.26477Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/036a6bb3-bfdd-4e2a-8265-e0c47f1845a8\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T01%3A02%3A48.9272972Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0abf074b-1f8f-4d82-a71e-e3d1d4392294\",\r\n \"etag\": \"W/\\\"datetime'2016-03-11T02%3A13%3A10.2355376Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0aeed1a2-527d-4ee7-a090-e9c0012930af\",\r\n \"etag\": \"W/\\\"datetime'2016-03-14T21%3A38%3A40.2667305Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Lloyds Alert\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false RecommendationResult=Failed | measure count() by Recommendation\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0b43f223-679d-40a4-a224-ce4f8ce44692\",\r\n \"etag\": \"W/\\\"datetime'2016-04-25T18%3A20%3A23.1639349Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestNewFlowsV2DeploymentForEmail\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0d9c78b6-dfc7-4f2f-b79c-9eeedf485bfc\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T05%3A02%3A38.5147093Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"alertlargeinterval\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0e1dce9e-e882-41ca-ad77-38d437c8c8db\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T20%3A18%3A22.7732522Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"RN-6 , INT\",\r\n \"Query\": \"Type=ContainerServiceLog | select TimeGenerated, Command, Image, ImageTag\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0f4a51fe-0bf5-48c2-83f5-4eb0b1bf63e2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A59%3A17.9929499Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Testalertdescriptionforallevents\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1223f283-1759-444f-86ee-0e50d3e16384\",\r\n \"etag\": \"W/\\\"datetime'2016-03-21T20%3A35%3A21.7264782Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"LloydGTest011\",\r\n \"Query\": \"* | measure count() by TimeGenerated\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/159dc0a9-4738-40aa-8786-82145dc792cd\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A27%3A30.2848304Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ghn\",\r\n \"Query\": \"fgbfg\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1805dadc-6217-4f25-be84-43e684e5feb6\",\r\n \"etag\": \"W/\\\"datetime'2016-03-30T19%3A43%3A56.7399136Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dsfv\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/19ad9b29-2d44-46a7-b771-e02a5b2cdff7\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T16%3A36%3A23.891569Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1d4ef845-46a1-4c22-9828-46cceff6f8da\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T00%3A58%3A47.8336004Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1db174b3-5547-49e1-bf76-8d15837157f8\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T22%3A11%3A27.5497039Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A04%3A25.7940321Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test66666666666666666\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A05%3A27.9119521Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|testben\",\r\n \"etag\": \"W/\\\"datetime'2015-05-12T20%3A45%3A50.1632243Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2797bf38-cb2b-4320-9032-e031633e0565\",\r\n \"etag\": \"W/\\\"datetime'2016-04-07T00%3A41%3A34.0450119Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ABTest1123\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/29af9161-b411-4979-a0e2-872c8cbc2ff0\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T00%3A55%3A43.5695769Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2b3a414c-e1b3-4c60-8bb3-b3828bef0174\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A55%3A12.5783991Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/3581dd90-7686-404d-bde7-e110f2668abb\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T00%3A57%3A27.6896425Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/3ad1923b-7049-4679-a1f2-e7ef09958217\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T03%3A47%3A33.9986558Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ww alert\",\r\n \"Query\": \"* | measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/42d20e56-ccd1-42b6-b4dd-7e5d1fdd32b2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-22T00%3A41%3A10.5657837Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/488dd54b-b59d-4211-85f1-3d966a4cbde3\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A37%3A28.2690369Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sfvs\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/489bb062-4fdd-4005-bd5b-72186a852504\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T01%3A25%3A56.2001562Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/4aa913d2-274d-4fa9-93f7-9dd831fe9ef5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A56%3A49.3149346Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestALertDescriptionUI\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/4b9557a5-77ed-4b80-bd0a-9efe7f14ebb2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T18%3A54%3A38.4359417Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"bbbbbbbbbbbbbbbbbbb\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/51797902-3d96-46ba-95e3-26e74c91118d\",\r\n \"etag\": \"W/\\\"datetime'2015-10-23T04%3A58%3A47.9226934Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"norem\",\r\n \"DisplayName\": \"gasga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/535ada4c-e9a0-45b9-91f3-9c7940cee86b\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A37%3A42.5659546Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"hkhj\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/559dd0b5-88f1-477d-a0ef-1042824ca259\",\r\n \"etag\": \"W/\\\"datetime'2016-04-05T16%3A02%3A12.380006Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"eerfe\",\r\n \"Query\": \"fghfg\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/57e0d63e-5441-48d7-a27d-8826fb880c2f\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T01%3A09%3A21.7279485Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5c7af1f8-bb71-4648-b7d9-910a6b9c9d74\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T19%3A03%3A42.498994Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"a\",\r\n \"DisplayName\": \"a\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false FocusArea=Prerequisites\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5e7f39e8-39e1-4328-a6df-37c75f0722f0\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T22%3A24%3A03.6408565Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"009\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5ef101b4-3bc5-4c96-ba36-685275511362\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A59%3A41.6281561Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Testalertdescriptionforallevents\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/60df279b-d288-4777-be03-b2ee65585488\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A46%3A14.747973Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert3\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/65fe70e5-6997-46d0-86ac-578b6e4af4fc\",\r\n \"etag\": \"W/\\\"datetime'2016-02-19T01%3A29%3A26.137793Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"hopefully frequent alert\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/69dee59f-42f2-4d75-9bd9-2121b54030c9\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T04%3A19%3A07.2773166Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6d95bebd-f016-4a2a-8f8d-81c7c1c5a971\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A38%3A41.3404003Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6e03c80b-7c39-4bd7-9598-b2884b6ac98a\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A55%3A06.9677575Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"afsdefesdff\",\r\n \"Query\": \"Type = Alert\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7346f333-cb07-4258-ad62-4f14a386032c\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T17%3A40%3A45.3419832Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashmialertruleint\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/73a361ad-e0e4-414c-8287-a1a50b32125d\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A27%3A02.0920498Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dfsde\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/75bbca6f-3237-4f67-b30a-1951ecf13142\",\r\n \"etag\": \"W/\\\"datetime'2016-04-13T19%3A10%3A39.1221625Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"alerttestfrequency\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7c474737-9279-433a-af17-a1c5ad7f339a\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A11.8794146Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert4\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7db4c529-e12f-4ee9-9b37-431709eca583\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A23%3A44.5009694Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7f5046c7-0753-4176-b504-9d1e1b0aab63\",\r\n \"etag\": \"W/\\\"datetime'2016-03-21T04%3A52%3A46.6026679Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"LloydGtest01\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/857fb644-5543-4b8c-9028-05b0980240f9\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T22%3A14%3A03.421978Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"aetaeta\",\r\n \"DisplayName\": \"atett\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/88540b3b-d10f-473c-9555-cd8fc2e89fdb\",\r\n \"etag\": \"W/\\\"datetime'2016-03-29T00%3A24%3A23.2294524Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashmi\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/8b8977f4-67d6-46ce-bc0d-6ebdb322639e\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A25%3A55.2640853Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dgfrvrf\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/90809228-bc55-4f9c-962d-666e006d3203\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T20%3A27%3A00.7780531Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"edittestrule\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/96bccd1d-8435-4c97-a561-61e72265f525\",\r\n \"etag\": \"W/\\\"datetime'2016-04-13T19%3A35%3A14.3803457Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sco service stopped all fields\",\r\n \"Query\": \"Type=Event EventLog=System Computer=\\\"CSAND-SCO.redmond.corp.microsoft.com\\\" Source=\\\"Service Control Manager\\\" \\\"stopped\\\" AND \\\"Orchestrator Runbook Service\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9dd5eb52-7840-40a3-b26c-8fe762f95dd1\",\r\n \"etag\": \"W/\\\"datetime'2016-03-04T20%3A07%3A24.2404705Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"new alert rule - 3.4\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9df3aa5d-bb81-475c-b606-f8dc80e1bf3a\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T22%3A11%3A27.4996241Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9fddfbb4-ce42-4c4c-bd84-2263b10dffa1\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A30.3141368Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert6\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a0efeb96-79cf-474b-a98c-23a3a76ee332\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A22.4599753Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert5\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a60b6b12-ddfc-4ce5-8e6b-0a4cf938a4e5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T21%3A03%3A38.2497948Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"0001234\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a77ce46b-da52-4508-a898-b6acf93f11f1\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T22%3A24%3A22.7144481Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"008\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/ae28d3ba-b45f-4106-a6bb-afb3951a76a9\",\r\n \"etag\": \"W/\\\"datetime'2016-03-29T00%3A58%3A22.0768263Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"thh\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/all|all\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A03%3A03.9192424Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"All\",\r\n \"DisplayName\": \"All\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/b0b37bc3-bab1-46e1-bedf-7a32897d6704\",\r\n \"etag\": \"W/\\\"datetime'2016-03-31T23%3A45%3A57.455897Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sdfsdf\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/bb57cd86-d690-408f-9d3d-d39a39705a13\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T19%3A08%3A58.8284349Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/bc79ddfc-b818-4b25-90d6-a65fa52a8975\",\r\n \"etag\": \"W/\\\"datetime'2016-03-11T00%3A43%3A44.6440077Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c12a9ac9-2f38-4006-acc0-e45566946f7d\",\r\n \"etag\": \"W/\\\"datetime'2016-04-12T23%3A13%3A27.8989654Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ar-01\",\r\n \"Query\": \"Type=ContainerServiceLog\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c14ea80d-8a21-4105-90fb-786e0fc4ffa8\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T18%3A29%3A11.1217463Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c265441b-3fe5-4e29-8cd2-e449cc0169f5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T00%3A57%3A21.3356058Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c27ee2e0-0d5a-4f5f-bacc-0d926d91b513\",\r\n \"etag\": \"W/\\\"datetime'2016-04-22T00%3A40%3A19.3408615Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c64a1caa-a393-4914-a317-cadf65dd34c3\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T04%3A58%3A33.6484199Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/cea172a8-d190-4f52-b8d2-ffa1e49e1835\",\r\n \"etag\": \"W/\\\"datetime'2016-03-30T00%3A49%3A26.3290745Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dsvg\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/cfbf2b6f-0454-4977-b97b-e44a5f294af7\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A58%3A04.7809218Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T20%3A09%3A41.9906542Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"allcomputers\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers2\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T22%3A32%3A26.327691Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"AllComputers2\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/d4090b50-c7e8-4831-8623-01f887c63506\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T18%3A54%3A13.0039075Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/d59a388c-a921-407d-ae0a-2dc78c5e3b09\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A57%3A33.4848869Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestALertDescriptionUI\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd35eca5-3dc7-4e30-bf26-83e0cb5f0a2a\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T20%3A03%3A07.6701721Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"agasg\",\r\n \"DisplayName\": \"agsga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd3da3a7-6203-41c3-86f1-d04e86564f89\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T18%3A19%3A22.0302638Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/e34ce762-1ef4-4f62-b412-4a4bad225cd9\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T18%3A38%3A50.461525Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/ec882b6c-c7a7-48b7-8955-ab96eb9d7e15\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T18%3A07%3A26.4914418Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"aaaaaaaaa\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/events|eventscomputer\",\r\n \"etag\": \"W/\\\"datetime'2016-04-25T21%3A08%3A39.1725839Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Events\",\r\n \"DisplayName\": \"EventsComputer\",\r\n \"Query\": \"Type=Event | Distinct Computer\",\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Group\",\r\n \"Value\": \"Computer\"\r\n }\r\n ],\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/f6555fdc-6cae-4473-9a62-03cf0b641b1e\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A40%3A26.4974633Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/f86b7ef6-2d6c-46d5-936c-5af7d6d30406\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T03%3A27%3A55.1617265Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"weinong's alert\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/intervals|count of all interval 1hour\",\r\n \"etag\": \"W/\\\"datetime'2015-11-07T00%3A16%3A14.7972332Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Intervals\",\r\n \"DisplayName\": \"Count of all interval 1hour\",\r\n \"Query\": \"* | measure count() by TimeGenerated interval 1HOUR\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/perf|avg disk writes by computer\",\r\n \"etag\": \"W/\\\"datetime'2015-11-05T19%3A48%3A24.8353096Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Perf\",\r\n \"DisplayName\": \"Avg Disk Writes by Computer\",\r\n \"Query\": \"* Type=Perf CounterName=\\\"Disk Write Bytes/sec\\\" | measure avg(CounterValue) by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|all events\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A02%3A49.4024833Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"All Events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|events\",\r\n \"etag\": \"W/\\\"datetime'2014-10-17T16%3A15%3A27.8903997Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/sql assessment|sql assmt by focus area\",\r\n \"etag\": \"W/\\\"datetime'2015-07-15T21%3A38%3A00.898438Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"SQL Assessment\",\r\n \"DisplayName\": \"SQL Assmt by Focus Area\",\r\n \"Query\": \"Type=SQLAssessmentRecommendation AssessmentName=SQLV2 RecommendationPeriod=YYYY-MM IsRollup=true | measure count() by FocusArea\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test|test\",\r\n \"etag\": \"W/\\\"datetime'2015-09-30T05%3A06%3A25.4487456Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"test\",\r\n \"DisplayName\": \"test\",\r\n \"Query\": \"Type=W3CIISLog\",\r\n \"Version\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "36848" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13289" + ], + "x-ms-request-id": [ + "9f9b9d78-ce8b-4db6-b111-6e47492c7caa" + ], + "x-ms-correlation-request-id": [ + "9f9b9d78-ce8b-4db6-b111-6e47492c7caa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160427T230249Z:9f9b9d78-ce8b-4db6-b111-6e47492c7caa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Apr 2016 23:02:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66e24f49-6089-4931-8de3-255702ed3c7d" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"__metadata\": {},\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0022aa2d-e4c2-4792-8672-c46e77ed116e\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A14%3A17.26477Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/036a6bb3-bfdd-4e2a-8265-e0c47f1845a8\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T01%3A02%3A48.9272972Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0abf074b-1f8f-4d82-a71e-e3d1d4392294\",\r\n \"etag\": \"W/\\\"datetime'2016-03-11T02%3A13%3A10.2355376Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0aeed1a2-527d-4ee7-a090-e9c0012930af\",\r\n \"etag\": \"W/\\\"datetime'2016-03-14T21%3A38%3A40.2667305Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Lloyds Alert\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false RecommendationResult=Failed | measure count() by Recommendation\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0b43f223-679d-40a4-a224-ce4f8ce44692\",\r\n \"etag\": \"W/\\\"datetime'2016-04-25T18%3A20%3A23.1639349Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestNewFlowsV2DeploymentForEmail\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0d9c78b6-dfc7-4f2f-b79c-9eeedf485bfc\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T05%3A02%3A38.5147093Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"alertlargeinterval\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0e1dce9e-e882-41ca-ad77-38d437c8c8db\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T20%3A18%3A22.7732522Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"RN-6 , INT\",\r\n \"Query\": \"Type=ContainerServiceLog | select TimeGenerated, Command, Image, ImageTag\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0f4a51fe-0bf5-48c2-83f5-4eb0b1bf63e2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A59%3A17.9929499Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Testalertdescriptionforallevents\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1223f283-1759-444f-86ee-0e50d3e16384\",\r\n \"etag\": \"W/\\\"datetime'2016-03-21T20%3A35%3A21.7264782Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"LloydGTest011\",\r\n \"Query\": \"* | measure count() by TimeGenerated\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/159dc0a9-4738-40aa-8786-82145dc792cd\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A27%3A30.2848304Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ghn\",\r\n \"Query\": \"fgbfg\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1805dadc-6217-4f25-be84-43e684e5feb6\",\r\n \"etag\": \"W/\\\"datetime'2016-03-30T19%3A43%3A56.7399136Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dsfv\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/19ad9b29-2d44-46a7-b771-e02a5b2cdff7\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T16%3A36%3A23.891569Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1d4ef845-46a1-4c22-9828-46cceff6f8da\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T00%3A58%3A47.8336004Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1db174b3-5547-49e1-bf76-8d15837157f8\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T22%3A11%3A27.5497039Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A04%3A25.7940321Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test66666666666666666\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A05%3A27.9119521Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|testben\",\r\n \"etag\": \"W/\\\"datetime'2015-05-12T20%3A45%3A50.1632243Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2797bf38-cb2b-4320-9032-e031633e0565\",\r\n \"etag\": \"W/\\\"datetime'2016-04-07T00%3A41%3A34.0450119Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ABTest1123\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/29af9161-b411-4979-a0e2-872c8cbc2ff0\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T00%3A55%3A43.5695769Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2b3a414c-e1b3-4c60-8bb3-b3828bef0174\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A55%3A12.5783991Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/3581dd90-7686-404d-bde7-e110f2668abb\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T00%3A57%3A27.6896425Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/3ad1923b-7049-4679-a1f2-e7ef09958217\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T03%3A47%3A33.9986558Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ww alert\",\r\n \"Query\": \"* | measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/42d20e56-ccd1-42b6-b4dd-7e5d1fdd32b2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-22T00%3A41%3A10.5657837Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/488dd54b-b59d-4211-85f1-3d966a4cbde3\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A37%3A28.2690369Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sfvs\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/489bb062-4fdd-4005-bd5b-72186a852504\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T01%3A25%3A56.2001562Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/4aa913d2-274d-4fa9-93f7-9dd831fe9ef5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A56%3A49.3149346Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestALertDescriptionUI\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/4b9557a5-77ed-4b80-bd0a-9efe7f14ebb2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T18%3A54%3A38.4359417Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"bbbbbbbbbbbbbbbbbbb\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/51797902-3d96-46ba-95e3-26e74c91118d\",\r\n \"etag\": \"W/\\\"datetime'2015-10-23T04%3A58%3A47.9226934Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"norem\",\r\n \"DisplayName\": \"gasga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/535ada4c-e9a0-45b9-91f3-9c7940cee86b\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A37%3A42.5659546Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"hkhj\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/559dd0b5-88f1-477d-a0ef-1042824ca259\",\r\n \"etag\": \"W/\\\"datetime'2016-04-05T16%3A02%3A12.380006Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"eerfe\",\r\n \"Query\": \"fghfg\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/57e0d63e-5441-48d7-a27d-8826fb880c2f\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T01%3A09%3A21.7279485Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5c7af1f8-bb71-4648-b7d9-910a6b9c9d74\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T19%3A03%3A42.498994Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"a\",\r\n \"DisplayName\": \"a\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false FocusArea=Prerequisites\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5e7f39e8-39e1-4328-a6df-37c75f0722f0\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T22%3A24%3A03.6408565Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"009\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5ef101b4-3bc5-4c96-ba36-685275511362\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A59%3A41.6281561Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Testalertdescriptionforallevents\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/60df279b-d288-4777-be03-b2ee65585488\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A46%3A14.747973Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert3\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/65fe70e5-6997-46d0-86ac-578b6e4af4fc\",\r\n \"etag\": \"W/\\\"datetime'2016-02-19T01%3A29%3A26.137793Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"hopefully frequent alert\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/69dee59f-42f2-4d75-9bd9-2121b54030c9\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T04%3A19%3A07.2773166Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6d95bebd-f016-4a2a-8f8d-81c7c1c5a971\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A38%3A41.3404003Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6e03c80b-7c39-4bd7-9598-b2884b6ac98a\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A55%3A06.9677575Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"afsdefesdff\",\r\n \"Query\": \"Type = Alert\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7346f333-cb07-4258-ad62-4f14a386032c\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T17%3A40%3A45.3419832Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashmialertruleint\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/73a361ad-e0e4-414c-8287-a1a50b32125d\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A27%3A02.0920498Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dfsde\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/75bbca6f-3237-4f67-b30a-1951ecf13142\",\r\n \"etag\": \"W/\\\"datetime'2016-04-13T19%3A10%3A39.1221625Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"alerttestfrequency\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7c474737-9279-433a-af17-a1c5ad7f339a\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A11.8794146Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert4\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7db4c529-e12f-4ee9-9b37-431709eca583\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A23%3A44.5009694Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7f5046c7-0753-4176-b504-9d1e1b0aab63\",\r\n \"etag\": \"W/\\\"datetime'2016-03-21T04%3A52%3A46.6026679Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"LloydGtest01\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/857fb644-5543-4b8c-9028-05b0980240f9\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T22%3A14%3A03.421978Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"aetaeta\",\r\n \"DisplayName\": \"atett\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/88540b3b-d10f-473c-9555-cd8fc2e89fdb\",\r\n \"etag\": \"W/\\\"datetime'2016-03-29T00%3A24%3A23.2294524Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashmi\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/8b8977f4-67d6-46ce-bc0d-6ebdb322639e\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A25%3A55.2640853Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dgfrvrf\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/90809228-bc55-4f9c-962d-666e006d3203\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T20%3A27%3A00.7780531Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"edittestrule\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/96bccd1d-8435-4c97-a561-61e72265f525\",\r\n \"etag\": \"W/\\\"datetime'2016-04-13T19%3A35%3A14.3803457Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sco service stopped all fields\",\r\n \"Query\": \"Type=Event EventLog=System Computer=\\\"CSAND-SCO.redmond.corp.microsoft.com\\\" Source=\\\"Service Control Manager\\\" \\\"stopped\\\" AND \\\"Orchestrator Runbook Service\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9dd5eb52-7840-40a3-b26c-8fe762f95dd1\",\r\n \"etag\": \"W/\\\"datetime'2016-03-04T20%3A07%3A24.2404705Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"new alert rule - 3.4\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9df3aa5d-bb81-475c-b606-f8dc80e1bf3a\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T22%3A11%3A27.4996241Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9fddfbb4-ce42-4c4c-bd84-2263b10dffa1\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A30.3141368Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert6\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a0efeb96-79cf-474b-a98c-23a3a76ee332\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A22.4599753Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert5\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a60b6b12-ddfc-4ce5-8e6b-0a4cf938a4e5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T21%3A03%3A38.2497948Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"0001234\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a77ce46b-da52-4508-a898-b6acf93f11f1\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T22%3A24%3A22.7144481Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"008\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/ae28d3ba-b45f-4106-a6bb-afb3951a76a9\",\r\n \"etag\": \"W/\\\"datetime'2016-03-29T00%3A58%3A22.0768263Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"thh\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/all|all\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A03%3A03.9192424Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"All\",\r\n \"DisplayName\": \"All\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/b0b37bc3-bab1-46e1-bedf-7a32897d6704\",\r\n \"etag\": \"W/\\\"datetime'2016-03-31T23%3A45%3A57.455897Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sdfsdf\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/bb57cd86-d690-408f-9d3d-d39a39705a13\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T19%3A08%3A58.8284349Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/bc79ddfc-b818-4b25-90d6-a65fa52a8975\",\r\n \"etag\": \"W/\\\"datetime'2016-03-11T00%3A43%3A44.6440077Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c12a9ac9-2f38-4006-acc0-e45566946f7d\",\r\n \"etag\": \"W/\\\"datetime'2016-04-12T23%3A13%3A27.8989654Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ar-01\",\r\n \"Query\": \"Type=ContainerServiceLog\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c14ea80d-8a21-4105-90fb-786e0fc4ffa8\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T18%3A29%3A11.1217463Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c265441b-3fe5-4e29-8cd2-e449cc0169f5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T00%3A57%3A21.3356058Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c27ee2e0-0d5a-4f5f-bacc-0d926d91b513\",\r\n \"etag\": \"W/\\\"datetime'2016-04-22T00%3A40%3A19.3408615Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c64a1caa-a393-4914-a317-cadf65dd34c3\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T04%3A58%3A33.6484199Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/cea172a8-d190-4f52-b8d2-ffa1e49e1835\",\r\n \"etag\": \"W/\\\"datetime'2016-03-30T00%3A49%3A26.3290745Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dsvg\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/cfbf2b6f-0454-4977-b97b-e44a5f294af7\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A58%3A04.7809218Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T20%3A09%3A41.9906542Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"allcomputers\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers2\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T22%3A32%3A26.327691Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"AllComputers2\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/d4090b50-c7e8-4831-8623-01f887c63506\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T18%3A54%3A13.0039075Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/d59a388c-a921-407d-ae0a-2dc78c5e3b09\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A57%3A33.4848869Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestALertDescriptionUI\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd35eca5-3dc7-4e30-bf26-83e0cb5f0a2a\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T20%3A03%3A07.6701721Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"agasg\",\r\n \"DisplayName\": \"agsga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd3da3a7-6203-41c3-86f1-d04e86564f89\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T18%3A19%3A22.0302638Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/e34ce762-1ef4-4f62-b412-4a4bad225cd9\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T18%3A38%3A50.461525Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/ec882b6c-c7a7-48b7-8955-ab96eb9d7e15\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T18%3A07%3A26.4914418Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"aaaaaaaaa\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/events|eventscomputer\",\r\n \"etag\": \"W/\\\"datetime'2016-04-25T21%3A08%3A39.1725839Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Events\",\r\n \"DisplayName\": \"EventsComputer\",\r\n \"Query\": \"Type=Event | Distinct Computer\",\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Group\",\r\n \"Value\": \"Computer\"\r\n }\r\n ],\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/f6555fdc-6cae-4473-9a62-03cf0b641b1e\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A40%3A26.4974633Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/f86b7ef6-2d6c-46d5-936c-5af7d6d30406\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T03%3A27%3A55.1617265Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"weinong's alert\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/intervals|count of all interval 1hour\",\r\n \"etag\": \"W/\\\"datetime'2015-11-07T00%3A16%3A14.7972332Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Intervals\",\r\n \"DisplayName\": \"Count of all interval 1hour\",\r\n \"Query\": \"* | measure count() by TimeGenerated interval 1HOUR\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/perf|avg disk writes by computer\",\r\n \"etag\": \"W/\\\"datetime'2015-11-05T19%3A48%3A24.8353096Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Perf\",\r\n \"DisplayName\": \"Avg Disk Writes by Computer\",\r\n \"Query\": \"* Type=Perf CounterName=\\\"Disk Write Bytes/sec\\\" | measure avg(CounterValue) by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|all events\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A02%3A49.4024833Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"All Events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|events\",\r\n \"etag\": \"W/\\\"datetime'2014-10-17T16%3A15%3A27.8903997Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/sql assessment|sql assmt by focus area\",\r\n \"etag\": \"W/\\\"datetime'2015-07-15T21%3A38%3A00.898438Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"SQL Assessment\",\r\n \"DisplayName\": \"SQL Assmt by Focus Area\",\r\n \"Query\": \"Type=SQLAssessmentRecommendation AssessmentName=SQLV2 RecommendationPeriod=YYYY-MM IsRollup=true | measure count() by FocusArea\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test-new-saved-search-id-2015\",\r\n \"etag\": \"W/\\\"datetime'2016-04-27T23%3A02%3A50.5802335Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \" Saved Search Test Category\",\r\n \"DisplayName\": \"Create or Update Saved Search Test\",\r\n \"Query\": \"* | measure Count() by Computer\",\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Group\",\r\n \"Value\": \"Computer\"\r\n }\r\n ],\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test|test\",\r\n \"etag\": \"W/\\\"datetime'2015-09-30T05%3A06%3A25.4487456Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"test\",\r\n \"DisplayName\": \"test\",\r\n \"Query\": \"Type=W3CIISLog\",\r\n \"Version\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "37337" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13288" + ], + "x-ms-request-id": [ + "f5825552-cd49-4a61-b5d6-2cba466f8694" + ], + "x-ms-correlation-request-id": [ + "f5825552-cd49-4a61-b5d6-2cba466f8694" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160427T230250Z:f5825552-cd49-4a61-b5d6-2cba466f8694" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Apr 2016 23:02:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95d1468c-f9ef-4a50-9bd9-1a021eec60f2" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"__metadata\": {},\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0022aa2d-e4c2-4792-8672-c46e77ed116e\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A14%3A17.26477Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/036a6bb3-bfdd-4e2a-8265-e0c47f1845a8\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T01%3A02%3A48.9272972Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0abf074b-1f8f-4d82-a71e-e3d1d4392294\",\r\n \"etag\": \"W/\\\"datetime'2016-03-11T02%3A13%3A10.2355376Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0aeed1a2-527d-4ee7-a090-e9c0012930af\",\r\n \"etag\": \"W/\\\"datetime'2016-03-14T21%3A38%3A40.2667305Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Lloyds Alert\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false RecommendationResult=Failed | measure count() by Recommendation\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0b43f223-679d-40a4-a224-ce4f8ce44692\",\r\n \"etag\": \"W/\\\"datetime'2016-04-25T18%3A20%3A23.1639349Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestNewFlowsV2DeploymentForEmail\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0d9c78b6-dfc7-4f2f-b79c-9eeedf485bfc\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T05%3A02%3A38.5147093Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"alertlargeinterval\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0e1dce9e-e882-41ca-ad77-38d437c8c8db\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T20%3A18%3A22.7732522Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"RN-6 , INT\",\r\n \"Query\": \"Type=ContainerServiceLog | select TimeGenerated, Command, Image, ImageTag\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0f4a51fe-0bf5-48c2-83f5-4eb0b1bf63e2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A59%3A17.9929499Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Testalertdescriptionforallevents\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1223f283-1759-444f-86ee-0e50d3e16384\",\r\n \"etag\": \"W/\\\"datetime'2016-03-21T20%3A35%3A21.7264782Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"LloydGTest011\",\r\n \"Query\": \"* | measure count() by TimeGenerated\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/159dc0a9-4738-40aa-8786-82145dc792cd\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A27%3A30.2848304Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ghn\",\r\n \"Query\": \"fgbfg\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1805dadc-6217-4f25-be84-43e684e5feb6\",\r\n \"etag\": \"W/\\\"datetime'2016-03-30T19%3A43%3A56.7399136Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dsfv\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/19ad9b29-2d44-46a7-b771-e02a5b2cdff7\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T16%3A36%3A23.891569Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1d4ef845-46a1-4c22-9828-46cceff6f8da\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T00%3A58%3A47.8336004Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1db174b3-5547-49e1-bf76-8d15837157f8\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T22%3A11%3A27.5497039Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A04%3A25.7940321Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test66666666666666666\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A05%3A27.9119521Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|testben\",\r\n \"etag\": \"W/\\\"datetime'2015-05-12T20%3A45%3A50.1632243Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2797bf38-cb2b-4320-9032-e031633e0565\",\r\n \"etag\": \"W/\\\"datetime'2016-04-07T00%3A41%3A34.0450119Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ABTest1123\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/29af9161-b411-4979-a0e2-872c8cbc2ff0\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T00%3A55%3A43.5695769Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2b3a414c-e1b3-4c60-8bb3-b3828bef0174\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A55%3A12.5783991Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/3581dd90-7686-404d-bde7-e110f2668abb\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T00%3A57%3A27.6896425Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/3ad1923b-7049-4679-a1f2-e7ef09958217\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T03%3A47%3A33.9986558Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ww alert\",\r\n \"Query\": \"* | measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/42d20e56-ccd1-42b6-b4dd-7e5d1fdd32b2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-22T00%3A41%3A10.5657837Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/488dd54b-b59d-4211-85f1-3d966a4cbde3\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A37%3A28.2690369Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sfvs\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/489bb062-4fdd-4005-bd5b-72186a852504\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T01%3A25%3A56.2001562Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/4aa913d2-274d-4fa9-93f7-9dd831fe9ef5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A56%3A49.3149346Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestALertDescriptionUI\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/4b9557a5-77ed-4b80-bd0a-9efe7f14ebb2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T18%3A54%3A38.4359417Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"bbbbbbbbbbbbbbbbbbb\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/51797902-3d96-46ba-95e3-26e74c91118d\",\r\n \"etag\": \"W/\\\"datetime'2015-10-23T04%3A58%3A47.9226934Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"norem\",\r\n \"DisplayName\": \"gasga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/535ada4c-e9a0-45b9-91f3-9c7940cee86b\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A37%3A42.5659546Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"hkhj\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/559dd0b5-88f1-477d-a0ef-1042824ca259\",\r\n \"etag\": \"W/\\\"datetime'2016-04-05T16%3A02%3A12.380006Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"eerfe\",\r\n \"Query\": \"fghfg\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/57e0d63e-5441-48d7-a27d-8826fb880c2f\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T01%3A09%3A21.7279485Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5c7af1f8-bb71-4648-b7d9-910a6b9c9d74\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T19%3A03%3A42.498994Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"a\",\r\n \"DisplayName\": \"a\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false FocusArea=Prerequisites\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5e7f39e8-39e1-4328-a6df-37c75f0722f0\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T22%3A24%3A03.6408565Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"009\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5ef101b4-3bc5-4c96-ba36-685275511362\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A59%3A41.6281561Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Testalertdescriptionforallevents\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/60df279b-d288-4777-be03-b2ee65585488\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A46%3A14.747973Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert3\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/65fe70e5-6997-46d0-86ac-578b6e4af4fc\",\r\n \"etag\": \"W/\\\"datetime'2016-02-19T01%3A29%3A26.137793Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"hopefully frequent alert\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/69dee59f-42f2-4d75-9bd9-2121b54030c9\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T04%3A19%3A07.2773166Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6d95bebd-f016-4a2a-8f8d-81c7c1c5a971\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A38%3A41.3404003Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6e03c80b-7c39-4bd7-9598-b2884b6ac98a\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A55%3A06.9677575Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"afsdefesdff\",\r\n \"Query\": \"Type = Alert\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7346f333-cb07-4258-ad62-4f14a386032c\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T17%3A40%3A45.3419832Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashmialertruleint\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/73a361ad-e0e4-414c-8287-a1a50b32125d\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A27%3A02.0920498Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dfsde\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/75bbca6f-3237-4f67-b30a-1951ecf13142\",\r\n \"etag\": \"W/\\\"datetime'2016-04-13T19%3A10%3A39.1221625Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"alerttestfrequency\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7c474737-9279-433a-af17-a1c5ad7f339a\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A11.8794146Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert4\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7db4c529-e12f-4ee9-9b37-431709eca583\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A23%3A44.5009694Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7f5046c7-0753-4176-b504-9d1e1b0aab63\",\r\n \"etag\": \"W/\\\"datetime'2016-03-21T04%3A52%3A46.6026679Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"LloydGtest01\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/857fb644-5543-4b8c-9028-05b0980240f9\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T22%3A14%3A03.421978Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"aetaeta\",\r\n \"DisplayName\": \"atett\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/88540b3b-d10f-473c-9555-cd8fc2e89fdb\",\r\n \"etag\": \"W/\\\"datetime'2016-03-29T00%3A24%3A23.2294524Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashmi\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/8b8977f4-67d6-46ce-bc0d-6ebdb322639e\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A25%3A55.2640853Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dgfrvrf\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/90809228-bc55-4f9c-962d-666e006d3203\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T20%3A27%3A00.7780531Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"edittestrule\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/96bccd1d-8435-4c97-a561-61e72265f525\",\r\n \"etag\": \"W/\\\"datetime'2016-04-13T19%3A35%3A14.3803457Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sco service stopped all fields\",\r\n \"Query\": \"Type=Event EventLog=System Computer=\\\"CSAND-SCO.redmond.corp.microsoft.com\\\" Source=\\\"Service Control Manager\\\" \\\"stopped\\\" AND \\\"Orchestrator Runbook Service\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9dd5eb52-7840-40a3-b26c-8fe762f95dd1\",\r\n \"etag\": \"W/\\\"datetime'2016-03-04T20%3A07%3A24.2404705Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"new alert rule - 3.4\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9df3aa5d-bb81-475c-b606-f8dc80e1bf3a\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T22%3A11%3A27.4996241Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9fddfbb4-ce42-4c4c-bd84-2263b10dffa1\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A30.3141368Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert6\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a0efeb96-79cf-474b-a98c-23a3a76ee332\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A22.4599753Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert5\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a60b6b12-ddfc-4ce5-8e6b-0a4cf938a4e5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T21%3A03%3A38.2497948Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"0001234\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a77ce46b-da52-4508-a898-b6acf93f11f1\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T22%3A24%3A22.7144481Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"008\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/ae28d3ba-b45f-4106-a6bb-afb3951a76a9\",\r\n \"etag\": \"W/\\\"datetime'2016-03-29T00%3A58%3A22.0768263Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"thh\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/all|all\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A03%3A03.9192424Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"All\",\r\n \"DisplayName\": \"All\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/b0b37bc3-bab1-46e1-bedf-7a32897d6704\",\r\n \"etag\": \"W/\\\"datetime'2016-03-31T23%3A45%3A57.455897Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sdfsdf\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/bb57cd86-d690-408f-9d3d-d39a39705a13\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T19%3A08%3A58.8284349Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/bc79ddfc-b818-4b25-90d6-a65fa52a8975\",\r\n \"etag\": \"W/\\\"datetime'2016-03-11T00%3A43%3A44.6440077Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c12a9ac9-2f38-4006-acc0-e45566946f7d\",\r\n \"etag\": \"W/\\\"datetime'2016-04-12T23%3A13%3A27.8989654Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ar-01\",\r\n \"Query\": \"Type=ContainerServiceLog\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c14ea80d-8a21-4105-90fb-786e0fc4ffa8\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T18%3A29%3A11.1217463Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c265441b-3fe5-4e29-8cd2-e449cc0169f5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T00%3A57%3A21.3356058Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c27ee2e0-0d5a-4f5f-bacc-0d926d91b513\",\r\n \"etag\": \"W/\\\"datetime'2016-04-22T00%3A40%3A19.3408615Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c64a1caa-a393-4914-a317-cadf65dd34c3\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T04%3A58%3A33.6484199Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/cea172a8-d190-4f52-b8d2-ffa1e49e1835\",\r\n \"etag\": \"W/\\\"datetime'2016-03-30T00%3A49%3A26.3290745Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dsvg\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/cfbf2b6f-0454-4977-b97b-e44a5f294af7\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A58%3A04.7809218Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T20%3A09%3A41.9906542Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"allcomputers\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers2\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T22%3A32%3A26.327691Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"AllComputers2\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/d4090b50-c7e8-4831-8623-01f887c63506\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T18%3A54%3A13.0039075Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/d59a388c-a921-407d-ae0a-2dc78c5e3b09\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A57%3A33.4848869Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestALertDescriptionUI\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd35eca5-3dc7-4e30-bf26-83e0cb5f0a2a\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T20%3A03%3A07.6701721Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"agasg\",\r\n \"DisplayName\": \"agsga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd3da3a7-6203-41c3-86f1-d04e86564f89\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T18%3A19%3A22.0302638Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/e34ce762-1ef4-4f62-b412-4a4bad225cd9\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T18%3A38%3A50.461525Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/ec882b6c-c7a7-48b7-8955-ab96eb9d7e15\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T18%3A07%3A26.4914418Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"aaaaaaaaa\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/events|eventscomputer\",\r\n \"etag\": \"W/\\\"datetime'2016-04-25T21%3A08%3A39.1725839Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Events\",\r\n \"DisplayName\": \"EventsComputer\",\r\n \"Query\": \"Type=Event | Distinct Computer\",\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Group\",\r\n \"Value\": \"Computer\"\r\n }\r\n ],\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/f6555fdc-6cae-4473-9a62-03cf0b641b1e\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A40%3A26.4974633Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/f86b7ef6-2d6c-46d5-936c-5af7d6d30406\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T03%3A27%3A55.1617265Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"weinong's alert\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/intervals|count of all interval 1hour\",\r\n \"etag\": \"W/\\\"datetime'2015-11-07T00%3A16%3A14.7972332Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Intervals\",\r\n \"DisplayName\": \"Count of all interval 1hour\",\r\n \"Query\": \"* | measure count() by TimeGenerated interval 1HOUR\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/perf|avg disk writes by computer\",\r\n \"etag\": \"W/\\\"datetime'2015-11-05T19%3A48%3A24.8353096Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Perf\",\r\n \"DisplayName\": \"Avg Disk Writes by Computer\",\r\n \"Query\": \"* Type=Perf CounterName=\\\"Disk Write Bytes/sec\\\" | measure avg(CounterValue) by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|all events\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A02%3A49.4024833Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"All Events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|events\",\r\n \"etag\": \"W/\\\"datetime'2014-10-17T16%3A15%3A27.8903997Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/sql assessment|sql assmt by focus area\",\r\n \"etag\": \"W/\\\"datetime'2015-07-15T21%3A38%3A00.898438Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"SQL Assessment\",\r\n \"DisplayName\": \"SQL Assmt by Focus Area\",\r\n \"Query\": \"Type=SQLAssessmentRecommendation AssessmentName=SQLV2 RecommendationPeriod=YYYY-MM IsRollup=true | measure count() by FocusArea\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test-new-saved-search-id-2015\",\r\n \"etag\": \"W/\\\"datetime'2016-04-27T23%3A02%3A51.029746Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \" Saved Search Test Category\",\r\n \"DisplayName\": \"Create or Update Saved Search Test\",\r\n \"Query\": \"*\",\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Source\",\r\n \"Value\": \"Test2\"\r\n }\r\n ],\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test|test\",\r\n \"etag\": \"W/\\\"datetime'2015-09-30T05%3A06%3A25.4487456Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"test\",\r\n \"DisplayName\": \"test\",\r\n \"Query\": \"Type=W3CIISLog\",\r\n \"Version\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "37304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13287" + ], + "x-ms-request-id": [ + "c8023978-edd5-4931-bf82-c429a9e8b547" + ], + "x-ms-correlation-request-id": [ + "c8023978-edd5-4931-bf82-c429a9e8b547" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160427T230251Z:c8023978-edd5-4931-bf82-c429a9e8b547" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Apr 2016 23:02:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26a98bc1-e7cd-4c04-b165-836bb63a2904" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"__metadata\": {},\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0022aa2d-e4c2-4792-8672-c46e77ed116e\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A14%3A17.26477Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/036a6bb3-bfdd-4e2a-8265-e0c47f1845a8\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T01%3A02%3A48.9272972Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0abf074b-1f8f-4d82-a71e-e3d1d4392294\",\r\n \"etag\": \"W/\\\"datetime'2016-03-11T02%3A13%3A10.2355376Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0aeed1a2-527d-4ee7-a090-e9c0012930af\",\r\n \"etag\": \"W/\\\"datetime'2016-03-14T21%3A38%3A40.2667305Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Lloyds Alert\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false RecommendationResult=Failed | measure count() by Recommendation\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0b43f223-679d-40a4-a224-ce4f8ce44692\",\r\n \"etag\": \"W/\\\"datetime'2016-04-25T18%3A20%3A23.1639349Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestNewFlowsV2DeploymentForEmail\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0d9c78b6-dfc7-4f2f-b79c-9eeedf485bfc\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T05%3A02%3A38.5147093Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"alertlargeinterval\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0e1dce9e-e882-41ca-ad77-38d437c8c8db\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T20%3A18%3A22.7732522Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"RN-6 , INT\",\r\n \"Query\": \"Type=ContainerServiceLog | select TimeGenerated, Command, Image, ImageTag\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0f4a51fe-0bf5-48c2-83f5-4eb0b1bf63e2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A59%3A17.9929499Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Testalertdescriptionforallevents\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1223f283-1759-444f-86ee-0e50d3e16384\",\r\n \"etag\": \"W/\\\"datetime'2016-03-21T20%3A35%3A21.7264782Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"LloydGTest011\",\r\n \"Query\": \"* | measure count() by TimeGenerated\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/159dc0a9-4738-40aa-8786-82145dc792cd\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A27%3A30.2848304Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ghn\",\r\n \"Query\": \"fgbfg\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1805dadc-6217-4f25-be84-43e684e5feb6\",\r\n \"etag\": \"W/\\\"datetime'2016-03-30T19%3A43%3A56.7399136Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dsfv\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/19ad9b29-2d44-46a7-b771-e02a5b2cdff7\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T16%3A36%3A23.891569Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1d4ef845-46a1-4c22-9828-46cceff6f8da\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T00%3A58%3A47.8336004Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1db174b3-5547-49e1-bf76-8d15837157f8\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T22%3A11%3A27.5497039Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A04%3A25.7940321Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test66666666666666666\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A05%3A27.9119521Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|testben\",\r\n \"etag\": \"W/\\\"datetime'2015-05-12T20%3A45%3A50.1632243Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2797bf38-cb2b-4320-9032-e031633e0565\",\r\n \"etag\": \"W/\\\"datetime'2016-04-07T00%3A41%3A34.0450119Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ABTest1123\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/29af9161-b411-4979-a0e2-872c8cbc2ff0\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T00%3A55%3A43.5695769Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2b3a414c-e1b3-4c60-8bb3-b3828bef0174\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A55%3A12.5783991Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/3581dd90-7686-404d-bde7-e110f2668abb\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T00%3A57%3A27.6896425Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/3ad1923b-7049-4679-a1f2-e7ef09958217\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T03%3A47%3A33.9986558Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ww alert\",\r\n \"Query\": \"* | measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/42d20e56-ccd1-42b6-b4dd-7e5d1fdd32b2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-22T00%3A41%3A10.5657837Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/488dd54b-b59d-4211-85f1-3d966a4cbde3\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A37%3A28.2690369Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sfvs\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/489bb062-4fdd-4005-bd5b-72186a852504\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T01%3A25%3A56.2001562Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/4aa913d2-274d-4fa9-93f7-9dd831fe9ef5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A56%3A49.3149346Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestALertDescriptionUI\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/4b9557a5-77ed-4b80-bd0a-9efe7f14ebb2\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T18%3A54%3A38.4359417Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"bbbbbbbbbbbbbbbbbbb\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/51797902-3d96-46ba-95e3-26e74c91118d\",\r\n \"etag\": \"W/\\\"datetime'2015-10-23T04%3A58%3A47.9226934Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"norem\",\r\n \"DisplayName\": \"gasga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/535ada4c-e9a0-45b9-91f3-9c7940cee86b\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A37%3A42.5659546Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"hkhj\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/559dd0b5-88f1-477d-a0ef-1042824ca259\",\r\n \"etag\": \"W/\\\"datetime'2016-04-05T16%3A02%3A12.380006Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"eerfe\",\r\n \"Query\": \"fghfg\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/57e0d63e-5441-48d7-a27d-8826fb880c2f\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T01%3A09%3A21.7279485Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5c7af1f8-bb71-4648-b7d9-910a6b9c9d74\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T19%3A03%3A42.498994Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"a\",\r\n \"DisplayName\": \"a\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false FocusArea=Prerequisites\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5e7f39e8-39e1-4328-a6df-37c75f0722f0\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T22%3A24%3A03.6408565Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"009\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5ef101b4-3bc5-4c96-ba36-685275511362\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A59%3A41.6281561Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Testalertdescriptionforallevents\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/60df279b-d288-4777-be03-b2ee65585488\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A46%3A14.747973Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert3\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/65fe70e5-6997-46d0-86ac-578b6e4af4fc\",\r\n \"etag\": \"W/\\\"datetime'2016-02-19T01%3A29%3A26.137793Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"hopefully frequent alert\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/69dee59f-42f2-4d75-9bd9-2121b54030c9\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T04%3A19%3A07.2773166Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6d95bebd-f016-4a2a-8f8d-81c7c1c5a971\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A38%3A41.3404003Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6e03c80b-7c39-4bd7-9598-b2884b6ac98a\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A55%3A06.9677575Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"afsdefesdff\",\r\n \"Query\": \"Type = Alert\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7346f333-cb07-4258-ad62-4f14a386032c\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T17%3A40%3A45.3419832Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashmialertruleint\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/73a361ad-e0e4-414c-8287-a1a50b32125d\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A27%3A02.0920498Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dfsde\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/75bbca6f-3237-4f67-b30a-1951ecf13142\",\r\n \"etag\": \"W/\\\"datetime'2016-04-13T19%3A10%3A39.1221625Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"alerttestfrequency\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7c474737-9279-433a-af17-a1c5ad7f339a\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A11.8794146Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert4\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7db4c529-e12f-4ee9-9b37-431709eca583\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A23%3A44.5009694Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7f5046c7-0753-4176-b504-9d1e1b0aab63\",\r\n \"etag\": \"W/\\\"datetime'2016-03-21T04%3A52%3A46.6026679Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"LloydGtest01\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/857fb644-5543-4b8c-9028-05b0980240f9\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T22%3A14%3A03.421978Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"aetaeta\",\r\n \"DisplayName\": \"atett\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/88540b3b-d10f-473c-9555-cd8fc2e89fdb\",\r\n \"etag\": \"W/\\\"datetime'2016-03-29T00%3A24%3A23.2294524Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashmi\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/8b8977f4-67d6-46ce-bc0d-6ebdb322639e\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T23%3A25%3A55.2640853Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dgfrvrf\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/90809228-bc55-4f9c-962d-666e006d3203\",\r\n \"etag\": \"W/\\\"datetime'2016-03-23T20%3A27%3A00.7780531Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"edittestrule\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/96bccd1d-8435-4c97-a561-61e72265f525\",\r\n \"etag\": \"W/\\\"datetime'2016-04-13T19%3A35%3A14.3803457Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sco service stopped all fields\",\r\n \"Query\": \"Type=Event EventLog=System Computer=\\\"CSAND-SCO.redmond.corp.microsoft.com\\\" Source=\\\"Service Control Manager\\\" \\\"stopped\\\" AND \\\"Orchestrator Runbook Service\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9dd5eb52-7840-40a3-b26c-8fe762f95dd1\",\r\n \"etag\": \"W/\\\"datetime'2016-03-04T20%3A07%3A24.2404705Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"new alert rule - 3.4\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9df3aa5d-bb81-475c-b606-f8dc80e1bf3a\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T22%3A11%3A27.4996241Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9fddfbb4-ce42-4c4c-bd84-2263b10dffa1\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A30.3141368Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert6\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a0efeb96-79cf-474b-a98c-23a3a76ee332\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A22.4599753Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert5\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a60b6b12-ddfc-4ce5-8e6b-0a4cf938a4e5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T21%3A03%3A38.2497948Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"0001234\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a77ce46b-da52-4508-a898-b6acf93f11f1\",\r\n \"etag\": \"W/\\\"datetime'2016-04-11T22%3A24%3A22.7144481Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"008\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/ae28d3ba-b45f-4106-a6bb-afb3951a76a9\",\r\n \"etag\": \"W/\\\"datetime'2016-03-29T00%3A58%3A22.0768263Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"thh\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/all|all\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A03%3A03.9192424Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"All\",\r\n \"DisplayName\": \"All\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/b0b37bc3-bab1-46e1-bedf-7a32897d6704\",\r\n \"etag\": \"W/\\\"datetime'2016-03-31T23%3A45%3A57.455897Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"sdfsdf\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/bb57cd86-d690-408f-9d3d-d39a39705a13\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T19%3A08%3A58.8284349Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/bc79ddfc-b818-4b25-90d6-a65fa52a8975\",\r\n \"etag\": \"W/\\\"datetime'2016-03-11T00%3A43%3A44.6440077Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c12a9ac9-2f38-4006-acc0-e45566946f7d\",\r\n \"etag\": \"W/\\\"datetime'2016-04-12T23%3A13%3A27.8989654Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"ar-01\",\r\n \"Query\": \"Type=ContainerServiceLog\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c14ea80d-8a21-4105-90fb-786e0fc4ffa8\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T18%3A29%3A11.1217463Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c265441b-3fe5-4e29-8cd2-e449cc0169f5\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T00%3A57%3A21.3356058Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c27ee2e0-0d5a-4f5f-bacc-0d926d91b513\",\r\n \"etag\": \"W/\\\"datetime'2016-04-22T00%3A40%3A19.3408615Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/c64a1caa-a393-4914-a317-cadf65dd34c3\",\r\n \"etag\": \"W/\\\"datetime'2016-04-20T04%3A58%3A33.6484199Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/cea172a8-d190-4f52-b8d2-ffa1e49e1835\",\r\n \"etag\": \"W/\\\"datetime'2016-03-30T00%3A49%3A26.3290745Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"dsvg\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/cfbf2b6f-0454-4977-b97b-e44a5f294af7\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A58%3A04.7809218Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T20%3A09%3A41.9906542Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"allcomputers\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers2\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T22%3A32%3A26.327691Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"AllComputers2\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/d4090b50-c7e8-4831-8623-01f887c63506\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T18%3A54%3A13.0039075Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/d59a388c-a921-407d-ae0a-2dc78c5e3b09\",\r\n \"etag\": \"W/\\\"datetime'2016-04-26T21%3A57%3A33.4848869Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"TestALertDescriptionUI\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd35eca5-3dc7-4e30-bf26-83e0cb5f0a2a\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T20%3A03%3A07.6701721Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"agasg\",\r\n \"DisplayName\": \"agsga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd3da3a7-6203-41c3-86f1-d04e86564f89\",\r\n \"etag\": \"W/\\\"datetime'2016-04-19T18%3A19%3A22.0302638Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"AlertDescriptionTest\",\r\n \"Query\": \"Type = Alert SourceSystem=OpsManager \\\"alert foo\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/e34ce762-1ef4-4f62-b412-4a4bad225cd9\",\r\n \"etag\": \"W/\\\"datetime'2016-04-21T18%3A38%3A50.461525Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alertdesctiptiontest\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/ec882b6c-c7a7-48b7-8955-ab96eb9d7e15\",\r\n \"etag\": \"W/\\\"datetime'2016-04-14T18%3A07%3A26.4914418Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"aaaaaaaaa\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/events|eventscomputer\",\r\n \"etag\": \"W/\\\"datetime'2016-04-25T21%3A08%3A39.1725839Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Events\",\r\n \"DisplayName\": \"EventsComputer\",\r\n \"Query\": \"Type=Event | Distinct Computer\",\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Group\",\r\n \"Value\": \"Computer\"\r\n }\r\n ],\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/f6555fdc-6cae-4473-9a62-03cf0b641b1e\",\r\n \"etag\": \"W/\\\"datetime'2016-03-17T21%3A40%3A26.4974633Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"rashminewsavedsearchactionDASApitest\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/f86b7ef6-2d6c-46d5-936c-5af7d6d30406\",\r\n \"etag\": \"W/\\\"datetime'2016-03-18T03%3A27%3A55.1617265Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"weinong's alert\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/intervals|count of all interval 1hour\",\r\n \"etag\": \"W/\\\"datetime'2015-11-07T00%3A16%3A14.7972332Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Intervals\",\r\n \"DisplayName\": \"Count of all interval 1hour\",\r\n \"Query\": \"* | measure count() by TimeGenerated interval 1HOUR\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/perf|avg disk writes by computer\",\r\n \"etag\": \"W/\\\"datetime'2015-11-05T19%3A48%3A24.8353096Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Perf\",\r\n \"DisplayName\": \"Avg Disk Writes by Computer\",\r\n \"Query\": \"* Type=Perf CounterName=\\\"Disk Write Bytes/sec\\\" | measure avg(CounterValue) by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|all events\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A02%3A49.4024833Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"All Events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|events\",\r\n \"etag\": \"W/\\\"datetime'2014-10-17T16%3A15%3A27.8903997Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/sql assessment|sql assmt by focus area\",\r\n \"etag\": \"W/\\\"datetime'2015-07-15T21%3A38%3A00.898438Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"SQL Assessment\",\r\n \"DisplayName\": \"SQL Assmt by Focus Area\",\r\n \"Query\": \"Type=SQLAssessmentRecommendation AssessmentName=SQLV2 RecommendationPeriod=YYYY-MM IsRollup=true | measure count() by FocusArea\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test|test\",\r\n \"etag\": \"W/\\\"datetime'2015-09-30T05%3A06%3A25.4487456Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"test\",\r\n \"DisplayName\": \"test\",\r\n \"Query\": \"Type=W3CIISLog\",\r\n \"Version\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "36848" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13286" + ], + "x-ms-request-id": [ + "ad6a5b0f-a46b-4839-baba-e19efc6aceb8" + ], + "x-ms-correlation-request-id": [ + "ad6a5b0f-a46b-4839-baba-e19efc6aceb8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160427T230251Z:ad6a5b0f-a46b-4839-baba-e19efc6aceb8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Apr 2016 23:02:51 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test-new-saved-search-id-2015?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzL3Rlc3QtbmV3LXNhdmVkLXNlYXJjaC1pZC0yMDE1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"Category\": \" Saved Search Test Category\",\r\n \"DisplayName\": \"Create or Update Saved Search Test\",\r\n \"Query\": \"* | measure Count() by Computer\",\r\n \"Version\": 1,\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Group\",\r\n \"Value\": \"Computer\"\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "297" + ], + "x-ms-client-request-id": [ + "9391e496-52dd-46ea-8318-6eb6507a581b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test-new-saved-search-id-2015\",\r\n \"etag\": \"W/\\\"datetime'2016-04-27T23%3A02%3A50.5802335Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \" Saved Search Test Category\",\r\n \"DisplayName\": \"Create or Update Saved Search Test\",\r\n \"Query\": \"* | measure Count() by Computer\",\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Group\",\r\n \"Value\": \"Computer\"\r\n }\r\n ],\r\n \"Version\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "488" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "40bd071d-6b1b-4c94-9c10-e7b06f73fb5a" + ], + "x-ms-correlation-request-id": [ + "40bd071d-6b1b-4c94-9c10-e7b06f73fb5a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160427T230250Z:40bd071d-6b1b-4c94-9c10-e7b06f73fb5a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Apr 2016 23:02:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test-new-saved-search-id-2015?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzL3Rlc3QtbmV3LXNhdmVkLXNlYXJjaC1pZC0yMDE1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"etag\": \"W/\\\"datetime'2016-04-27T23%3A02%3A50.5802335Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \" Saved Search Test Category\",\r\n \"DisplayName\": \"Create or Update Saved Search Test\",\r\n \"Query\": \"*\",\r\n \"Version\": 1,\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Source\",\r\n \"Value\": \"Test2\"\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "328" + ], + "x-ms-client-request-id": [ + "3e5ab372-b5c4-48aa-a1de-0da7eb351726" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test-new-saved-search-id-2015\",\r\n \"etag\": \"W/\\\"datetime'2016-04-27T23%3A02%3A51.029746Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \" Saved Search Test Category\",\r\n \"DisplayName\": \"Create or Update Saved Search Test\",\r\n \"Query\": \"*\",\r\n \"Tags\": [\r\n {\r\n \"Name\": \"Source\",\r\n \"Value\": \"Test2\"\r\n }\r\n ],\r\n \"Version\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "455" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "552537cf-82b2-4b18-adcb-492fb01a2f52" + ], + "x-ms-correlation-request-id": [ + "552537cf-82b2-4b18-adcb-492fb01a2f52" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160427T230250Z:552537cf-82b2-4b18-adcb-492fb01a2f52" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Apr 2016 23:02:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test-new-saved-search-id-2015?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzL3Rlc3QtbmV3LXNhdmVkLXNlYXJjaC1pZC0yMDE1P2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bde3c2c-e274-419d-83fc-5d472bd6b1c3" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "e70002be-4798-4ef3-96e6-794f4a58086e" + ], + "x-ms-correlation-request-id": [ + "e70002be-4798-4ef3-96e6-794f4a58086e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160427T230251Z:e70002be-4798-4ef3-96e6-794f4a58086e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Apr 2016 23:02:51 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "df1ec963-d784-4d11-a779-1b3eeb9ecb78" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSavedSearchesAndResults.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSavedSearchesAndResults.json new file mode 100644 index 000000000000..7d46f29421ec --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSavedSearchesAndResults.json @@ -0,0 +1,188 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "159b041f-a420-4aed-91d0-6b73a53b14c7" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"__metadata\": {},\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0022aa2d-e4c2-4792-8672-c46e77ed116e\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A14%3A17.26477Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A04%3A25.7940321Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|test66666666666666666\",\r\n \"etag\": \"W/\\\"datetime'2015-08-27T19%3A05%3A27.9119521Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/1|testben\",\r\n \"etag\": \"W/\\\"datetime'2015-05-12T20%3A45%3A50.1632243Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"1\",\r\n \"DisplayName\": \"TestBen\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/2b3a414c-e1b3-4c60-8bb3-b3828bef0174\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A55%3A12.5783991Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"* | Measure count() by Type\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/51797902-3d96-46ba-95e3-26e74c91118d\",\r\n \"etag\": \"W/\\\"datetime'2015-10-23T04%3A58%3A47.9226934Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"norem\",\r\n \"DisplayName\": \"gasga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/5c7af1f8-bb71-4648-b7d9-910a6b9c9d74\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T19%3A03%3A42.498994Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"a\",\r\n \"DisplayName\": \"a\",\r\n \"Query\": \"Type=ADAssessmentRecommendation RecommendationPeriod=YYYY-MM IsRollup=false FocusArea=Prerequisites\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/60df279b-d288-4777-be03-b2ee65585488\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A46%3A14.747973Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert3\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/6d95bebd-f016-4a2a-8f8d-81c7c1c5a971\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A38%3A41.3404003Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/7c474737-9279-433a-af17-a1c5ad7f339a\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A11.8794146Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert4\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/857fb644-5543-4b8c-9028-05b0980240f9\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T22%3A14%3A03.421978Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"aetaeta\",\r\n \"DisplayName\": \"atett\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/9fddfbb4-ce42-4c4c-bd84-2263b10dffa1\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A30.3141368Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert6\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/a0efeb96-79cf-474b-a98c-23a3a76ee332\",\r\n \"etag\": \"W/\\\"datetime'2015-11-23T20%3A47%3A22.4599753Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"Alert5\",\r\n \"Query\": \"Type=Event EventLevelName=warning\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/all|all\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A03%3A03.9192424Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"All\",\r\n \"DisplayName\": \"All\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers\",\r\n \"etag\": \"W/\\\"datetime'2015-10-21T20%3A09%3A41.9906542Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"allcomputers\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/computergroups|allcomputers2\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T22%3A32%3A26.327691Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"ComputerGroups\",\r\n \"DisplayName\": \"AllComputers2\",\r\n \"Query\": \"* | measure count() by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/dd35eca5-3dc7-4e30-bf26-83e0cb5f0a2a\",\r\n \"etag\": \"W/\\\"datetime'2015-10-22T20%3A03%3A07.6701721Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"agasg\",\r\n \"DisplayName\": \"agsga\",\r\n \"Query\": \"* Type=Alert (AlertSeverity=error) SourceDisplayName=\\\"Microsoft.Windows.Computer:NEB-OM-724193.smx.net\\\"\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/intervals|count of all interval 1hour\",\r\n \"etag\": \"W/\\\"datetime'2015-11-07T00%3A16%3A14.7972332Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Intervals\",\r\n \"DisplayName\": \"Count of all interval 1hour\",\r\n \"Query\": \"* | measure count() by TimeGenerated interval 1HOUR\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/perf|avg disk writes by computer\",\r\n \"etag\": \"W/\\\"datetime'2015-11-05T19%3A48%3A24.8353096Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Perf\",\r\n \"DisplayName\": \"Avg Disk Writes by Computer\",\r\n \"Query\": \"* Type=Perf CounterName=\\\"Disk Write Bytes/sec\\\" | measure avg(CounterValue) by Computer\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|all events\",\r\n \"etag\": \"W/\\\"datetime'2015-04-09T17%3A02%3A49.4024833Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"All Events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/qwerty|events\",\r\n \"etag\": \"W/\\\"datetime'2014-10-17T16%3A15%3A27.8903997Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"qwerty\",\r\n \"DisplayName\": \"events\",\r\n \"Query\": \"Type=Event\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/sql assessment|sql assmt by focus area\",\r\n \"etag\": \"W/\\\"datetime'2015-07-15T21%3A38%3A00.898438Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"SQL Assessment\",\r\n \"DisplayName\": \"SQL Assmt by Focus Area\",\r\n \"Query\": \"Type=SQLAssessmentRecommendation AssessmentName=SQLV2 RecommendationPeriod=YYYY-MM IsRollup=true | measure count() by FocusArea\",\r\n \"Version\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/test|test\",\r\n \"etag\": \"W/\\\"datetime'2015-09-30T05%3A06%3A25.4487456Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"test\",\r\n \"DisplayName\": \"test\",\r\n \"Query\": \"Type=W3CIISLog\",\r\n \"Version\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9664" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "f8435644-b9ec-4044-82bc-8cbf0251fc4a" + ], + "x-ms-correlation-request-id": [ + "f8435644-b9ec-4044-82bc-8cbf0251fc4a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151218T191240Z:f8435644-b9ec-4044-82bc-8cbf0251fc4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 18 Dec 2015 19:12:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0022aa2d-e4c2-4792-8672-c46e77ed116e?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzLzAwMjJhYTJkLWU0YzItNDc5Mi04NjcyLWM0NmU3N2VkMTE2ZT9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a8181ea-685d-42f9-9f4a-2fa9de22d054" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0022aa2d-e4c2-4792-8672-c46e77ed116e\",\r\n \"etag\": \"W/\\\"datetime'2015-11-12T23%3A14%3A17.26477Z'\\\"\",\r\n \"properties\": {\r\n \"Category\": \"Alert\",\r\n \"DisplayName\": \"SS\",\r\n \"Query\": \"*\",\r\n \"Version\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "364" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "536b9c56-d7a9-47d7-b5fa-15f2f8d83111" + ], + "x-ms-correlation-request-id": [ + "536b9c56-d7a9-47d7-b5fa-15f2f8d83111" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151218T191241Z:536b9c56-d7a9-47d7-b5fa-15f2f8d83111" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 18 Dec 2015 19:12:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/savedSearches/0022aa2d-e4c2-4792-8672-c46e77ed116e/results?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zYXZlZFNlYXJjaGVzLzAwMjJhYTJkLWU0YzItNDc5Mi04NjcyLWM0NmU3N2VkMTE2ZS9yZXN1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6926099-23ba-40a7-bec9-5118da277f2f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/search/879b6d91-b728-424c-904e-73a0cbe8afab\",\r\n \"__metadata\": {\r\n \"resultType\": \"raw\",\r\n \"total\": 5411801,\r\n \"RequestId\": \"879b6d91-b728-424c-904e-73a0cbe8afab\",\r\n \"CoreResponses\": [],\r\n \"CoreSummaries\": [],\r\n \"Status\": \"Successful\",\r\n \"StartTime\": \"2015-12-18T19:12:42.7722243Z\",\r\n \"LastUpdated\": \"2015-12-18T19:12:43.1628639Z\",\r\n \"ETag\": \"635860627631628639\",\r\n \"sort\": [\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"order\": \"desc\"\r\n }\r\n ]\r\n },\r\n \"value\": [\r\n {\r\n \"Computer\": \"odstest\",\r\n \"ObjectName\": \"LogicalDisk\",\r\n \"CounterName\": \"Disk Write Bytes/sec\",\r\n \"InstanceName\": \"_Total\",\r\n \"TimeGenerated\": \"2015-12-18T19:10:07.139Z\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"CounterPath\": \"\\\\\\\\odstest\\\\LogicalDisk(_Total)\\\\Disk Write Bytes/sec\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000002\",\r\n \"id\": \"d558d4b5-2301-3bfe-bca9-108187fd6517\",\r\n \"Type\": \"Perf\",\r\n \"CounterValue\": 2.1,\r\n \"__metadata\": {\r\n \"Type\": \"Perf\",\r\n \"TimeGenerated\": \"2015-12-18T19:10:07.139Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"atml-001.contoso.com\",\r\n \"MG\": \"511e40ec-5a7c-4bdc-b2aa-2359e04ecea0\",\r\n \"ManagementGroupName\": \"MockSCOMGW_11_4_2015_2_50_02_PM\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:07:05.757Z\",\r\n \"SessionStartTime\": \"2015-12-18T00:00:00Z\",\r\n \"SessionEndTime\": \"2015-12-18T00:00:00Z\",\r\n \"LocalIP\": \"10.123.172.169\",\r\n \"LocalSubnet\": \"10.2.0.0/16\",\r\n \"LocalMAC\": \"00:0a:95:9d:68:16\",\r\n \"LocalPortNumber\": 443,\r\n \"RemoteIP\": \"10.123.172.185\",\r\n \"RemoteMAC\": \"00:0a:95:9d:72:18\",\r\n \"RemotePortNumber\": 80,\r\n \"SessionID\": \"10.123.172.169_443_10.123.172.185_80_12_2015-12-18T00:00:00.000Z\",\r\n \"SentBytes\": 2000,\r\n \"ReceivedBytes\": 20,\r\n \"TotalBytes\": 2020,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 100,\r\n \"ReceivedPackets\": 10,\r\n \"ProcessID\": 3,\r\n \"ProcessName\": \"SQL\",\r\n \"LatencyMilliseconds\": 3,\r\n \"LatencySamplingTimeStamp\": \"2014-11-03T17:56:51Z\",\r\n \"LatencySamplingFailureRate\": \"30%\",\r\n \"id\": \"4a45d99e-5bdf-2527-ca0a-f49551bb1fe7\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 3,\r\n \"SessionState\": \"Closed\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"SMTP\",\r\n \"ApplicationServiceName\": \"https\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:07:05.757Z\"\r\n }\r\n },\r\n {\r\n \"SourceSystem\": \"Containers\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:30.817Z\",\r\n \"MG\": \"511e40ec-5a7c-4bdc-b2aa-2359e04ecea0\",\r\n \"Computer\": \"swati-dockerubuntu5\",\r\n \"TimeOfCommand\": \"2015-08-16T21:52:10Z\",\r\n \"ContainerID\": \"f8b44edb318af04d05f83c28f680c9ea0d1e561beb530b1ebc4e85a8ec5d16a2\",\r\n \"Image\": \"drupal\",\r\n \"Repository\": \"samos123\",\r\n \"Name\": \"determined_pasteur\",\r\n \"LogEntrySource\": \"stderr\",\r\n \"LogEntry\": \"/usr/lib/python2.7/dist-packages/supervisor/options.py proceeding new drupal\",\r\n \"id\": \"08b4c2f4-9b39-8491-79dd-2e7cc2f3374e\",\r\n \"Type\": \"ContainerLog\",\r\n \"__metadata\": {\r\n \"Type\": \"ContainerLog\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:30.817Z\"\r\n }\r\n },\r\n {\r\n \"SourceSystem\": \"Containers\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:25.18Z\",\r\n \"MG\": \"511e40ec-5a7c-4bdc-b2aa-2359e04ecea0\",\r\n \"Computer\": \"swati-dockerswarm4\",\r\n \"TimeOfCommand\": \"2015-08-15T21:52:10Z\",\r\n \"ContainerID\": \"db976336c3ec69ca335eaf89703ec639d6c6ad3174ea0da374c3fd5889ac3194\",\r\n \"Image\": \"wordpress:latest\",\r\n \"Command\": \"stop\",\r\n \"id\": \"40bbdba5-5214-589c-6159-088ee6d9dc84\",\r\n \"Type\": \"ContainerServiceLog\",\r\n \"__metadata\": {\r\n \"Type\": \"ContainerServiceLog\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:25.18Z\"\r\n }\r\n },\r\n {\r\n \"SourceSystem\": \"Linux\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:20.253Z\",\r\n \"MG\": \"511e40ec-5a7c-4bdc-b2aa-2359e04ecea0\",\r\n \"Computer\": \"varunkum1\",\r\n \"EventTime\": \"2015-12-18T19:06:20.253Z\",\r\n \"Facility\": \"cron\",\r\n \"HostName\": \"varunkum1\",\r\n \"SeverityLevel\": \"crit\",\r\n \"Message\": \"test syslog 2 [UFW ALLOW] IN= OUT=eth0 SRC=157.59.144.87 DST=187.52.211.160 LEN=60\",\r\n \"ProcessID\": 1234,\r\n \"HostIP\": \"157.59.144.87\",\r\n \"PreciseTimeStamp\": \"2015-12-18T19:06:20.253Z\",\r\n \"id\": \"e56b2e8b-6aae-bcb1-84de-3684b2302476\",\r\n \"Type\": \"Syslog\",\r\n \"IPScanDST_CF\": \"187.52.211.160\",\r\n \"__metadata\": {\r\n \"Type\": \"Syslog\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:20.253Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"atml-001.contoso.com\",\r\n \"MG\": \"511e40ec-5a7c-4bdc-b2aa-2359e04ecea0\",\r\n \"ManagementGroupName\": \"MockSCOMGW_11_4_2015_2_50_02_PM\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:05:25.757Z\",\r\n \"SessionStartTime\": \"2015-12-18T00:00:00Z\",\r\n \"SessionEndTime\": \"2015-12-18T00:00:00Z\",\r\n \"LocalIP\": \"10.123.172.169\",\r\n \"LocalSubnet\": \"IPv6-N/A\",\r\n \"LocalMAC\": \"00:0a:95:9d:68:16\",\r\n \"LocalPortNumber\": 443,\r\n \"RemoteIP\": \"10.123.172.185\",\r\n \"RemoteMAC\": \"00:0a:95:9d:72:18\",\r\n \"RemotePortNumber\": 80,\r\n \"SessionID\": \"10.123.172.169_443_10.123.172.185_80_12_2015-12-18T00:00:00.000Z\",\r\n \"SentBytes\": 4000,\r\n \"ReceivedBytes\": 40,\r\n \"TotalBytes\": 4040,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 200,\r\n \"ReceivedPackets\": 20,\r\n \"ProcessID\": 2,\r\n \"ProcessName\": \"Outlook\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2014-11-02T17:56:51Z\",\r\n \"LatencySamplingFailureRate\": \"10%\",\r\n \"id\": \"560b1f9d-51f6-70b2-439b-5c0cea559534\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 2,\r\n \"SessionState\": \"LastAck\",\r\n \"IPVersion\": \"IPv6\",\r\n \"ApplicationProtocol\": \"HTTPS\",\r\n \"ApplicationServiceName\": \"http\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:05:25.757Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"odstest\",\r\n \"ObjectName\": \"LogicalDisk\",\r\n \"CounterName\": \"Disk Write Bytes/sec\",\r\n \"InstanceName\": \"_Total\",\r\n \"TimeGenerated\": \"2015-12-18T19:05:07.568Z\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"CounterPath\": \"\\\\\\\\odstest\\\\LogicalDisk(_Total)\\\\Disk Write Bytes/sec\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000002\",\r\n \"id\": \"fff0e12d-046d-c8f7-3e92-c007fff2c18d\",\r\n \"Type\": \"Perf\",\r\n \"CounterValue\": 2.1,\r\n \"__metadata\": {\r\n \"Type\": \"Perf\",\r\n \"TimeGenerated\": \"2015-12-18T19:05:07.568Z\"\r\n }\r\n },\r\n {\r\n \"SourceSystem\": \"Containers\",\r\n \"TimeGenerated\": \"2015-12-18T19:04:00.817Z\",\r\n \"MG\": \"511e40ec-5a7c-4bdc-b2aa-2359e04ecea0\",\r\n \"Computer\": \"bowudockervm3\",\r\n \"TimeOfCommand\": \"2015-08-16T21:52:10Z\",\r\n \"ContainerID\": \"2950e078e40d5352260e6920a7bd3ddbf14c066a6020a4f213604dc35b253c44\",\r\n \"Image\": \"wordpress\",\r\n \"ImageTag\": \"latest\",\r\n \"Name\": \"bowuwordpress\",\r\n \"LogEntrySource\": \"stdout\",\r\n \"LogEntry\": \"mysql_install_db\",\r\n \"id\": \"892f7d5c-8ea5-e932-2bf1-59f5d5265c9a\",\r\n \"Type\": \"ContainerLog\",\r\n \"__metadata\": {\r\n \"Type\": \"ContainerLog\",\r\n \"TimeGenerated\": \"2015-12-18T19:04:00.817Z\"\r\n }\r\n },\r\n {\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:03:59.863Z\",\r\n \"SourceHealthServiceId\": \"5b16404c-f27e-a2d7-d2ef-fa38355804d8\",\r\n \"DeviceName\": \"atml-001.contoso.com\",\r\n \"DetectionId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"Threat\": \"Win32\\\\Conflicker\",\r\n \"ThreatStatusRank\": 550,\r\n \"ThreatStatus\": \"Active threat\",\r\n \"ProtectionStatusRank\": 550,\r\n \"ProtectionStatus\": \"No real time protection\",\r\n \"ProtectionStatusDetails\": \"At least one infection detected.\",\r\n \"SignatureVersion\": \"1.163.1013.0\",\r\n \"TypeofProtection\": \"Malicious Software Removal Tool\",\r\n \"ScanDate\": \"2015-12-18T00:00:00Z\",\r\n \"DateCollected\": \"2/7/2014\",\r\n \"MG\": \"511e40ec-5a7c-4bdc-b2aa-2359e04ecea0\",\r\n \"TimeCollected\": \"2015-12-18T19:09:02.23Z\",\r\n \"ManagementGroupName\": \"MockSCOMGW_11_4_2015_2_50_02_PM\",\r\n \"Computer\": \"atml-001.contoso.com\",\r\n \"id\": \"5246bd66-2f09-ab28-3ce7-a1eaf46dcf0c\",\r\n \"Type\": \"ProtectionStatus\",\r\n \"__metadata\": {\r\n \"Type\": \"ProtectionStatus\",\r\n \"TimeGenerated\": \"2015-12-18T19:03:59.863Z\"\r\n }\r\n },\r\n {\r\n \"SourceSystem\": \"Containers\",\r\n \"TimeGenerated\": \"2015-12-18T19:03:55.18Z\",\r\n \"MG\": \"511e40ec-5a7c-4bdc-b2aa-2359e04ecea0\",\r\n \"Computer\": \"bowudockervm3\",\r\n \"TimeOfCommand\": \"2015-08-16T21:52:10Z\",\r\n \"ContainerID\": \"152b38be5dd67c9a109e48701f6af49408267fd55fb3f5ae94df112ab16b8e47\",\r\n \"Image\": \"mono:latest\",\r\n \"Command\": \"start\",\r\n \"id\": \"b9a415dd-53d9-6161-9404-f1a4075714f8\",\r\n \"Type\": \"ContainerServiceLog\",\r\n \"__metadata\": {\r\n \"Type\": \"ContainerServiceLog\",\r\n \"TimeGenerated\": \"2015-12-18T19:03:55.18Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "d8d9419e-7e43-4258-8fe0-c52fff98318e" + ], + "x-ms-correlation-request-id": [ + "d8d9419e-7e43-4258-8fe0-c52fff98318e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151218T191243Z:d8d9419e-7e43-4258-8fe0-c52fff98318e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 18 Dec 2015 19:12:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "df1ec963-d784-4d11-a779-1b3eeb9ecb78" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSchema.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSchema.json new file mode 100644 index 000000000000..6d80869e127f --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSchema.json @@ -0,0 +1,68 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/mms-eus/providers/Microsoft.OperationalInsights/workspaces/workspace-861bd466-5400-44be-9552-5ba40823c3aa/schema?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL21tcy1ldXMvcHJvdmlkZXJzL01pY3Jvc29mdC5PcGVyYXRpb25hbEluc2lnaHRzL3dvcmtzcGFjZXMvd29ya3NwYWNlLTg2MWJkNDY2LTU0MDAtNDRiZS05NTUyLTViYTQwODIzYzNhYS9zY2hlbWE/YXBpLXZlcnNpb249MjAxNS0wMy0yMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1bf02c17-4ee5-43fd-9a33-92b48140c3fc" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"__metadata\": {\r\n \"schema\": {\r\n \"name\": \"CloudOps\",\r\n \"version\": 2\r\n },\r\n \"resultType\": \"schema\",\r\n \"requestTime\": 358\r\n },\r\n \"value\": [\r\n {\r\n \"name\": \"TenantId\",\r\n \"displayName\": \"TenantId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\",\r\n \"ADAssessmentRecommendation\",\r\n \"Alert\",\r\n \"AlertHistory\",\r\n \"ASMFeature\",\r\n \"ASMProduct\",\r\n \"AzureNetworkFlow\",\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\",\r\n \"ConfigurationAlert\",\r\n \"ConfigurationChange\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\",\r\n \"ETWEvent\",\r\n \"Event\",\r\n \"ExtraHopDBLogin\",\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopDNSResponse\",\r\n \"ExtraHopFTPResponse\",\r\n \"ExtraHopHTTPTransaction\",\r\n \"ExtraHopSMTPMessage\",\r\n \"ExtraHopSYNScanDetect\",\r\n \"ExtraHopTCPOpen\",\r\n \"FileProfile\",\r\n \"MetadataTest_Alert\",\r\n \"NewCustomFieldsFact\",\r\n \"Perf\",\r\n \"PerfHourly\",\r\n \"ProtectionStatus\",\r\n \"Recommendation\",\r\n \"RequiredUpdate\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\",\r\n \"SMIncidentFactArtifact\",\r\n \"SQLAssessmentRecommendation\",\r\n \"SQLQueryPerformanceTest\",\r\n \"SurfaceHubDns\",\r\n \"SurfaceHubDnsFact\",\r\n \"SurfaceHubUserSessionFact\",\r\n \"Syslog\",\r\n \"TestCommonAlertfact\",\r\n \"TestFact\",\r\n \"TestFlashMEvent\",\r\n \"TestFlashWERBackdated\",\r\n \"TestFlashWERBackdated1\",\r\n \"TestUpdatAlertfact\",\r\n \"Update\",\r\n \"UpdateAgent\",\r\n \"UpdateSummary\",\r\n \"ValidationTestFact\",\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MG\",\r\n \"displayName\": \"MG\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\",\r\n \"ADAssessmentRecommendation\",\r\n \"Alert\",\r\n \"AlertHistory\",\r\n \"ConfigurationAlert\",\r\n \"ConfigurationChange\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"Event\",\r\n \"MetadataTest_Alert\",\r\n \"Perf\",\r\n \"PerfHourly\",\r\n \"ProtectionStatus\",\r\n \"Recommendation\",\r\n \"RequiredUpdate\",\r\n \"SecurityEvent\",\r\n \"SQLAssessmentRecommendation\",\r\n \"SQLQueryPerformanceTest\",\r\n \"Syslog\",\r\n \"TestCommonAlertfact\",\r\n \"TestUpdatAlertfact\",\r\n \"Update\",\r\n \"UpdateAgent\",\r\n \"UpdateSummary\",\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourceSystem\",\r\n \"displayName\": \"SourceSystem\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\",\r\n \"ADAssessmentRecommendation\",\r\n \"Alert\",\r\n \"AlertHistory\",\r\n \"ASMFeature\",\r\n \"ASMProduct\",\r\n \"AzureNetworkFlow\",\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\",\r\n \"ConfigurationAlert\",\r\n \"ConfigurationChange\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\",\r\n \"ETWEvent\",\r\n \"Event\",\r\n \"ExtraHopDBLogin\",\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopDNSResponse\",\r\n \"ExtraHopFTPResponse\",\r\n \"ExtraHopHTTPTransaction\",\r\n \"ExtraHopSMTPMessage\",\r\n \"ExtraHopSYNScanDetect\",\r\n \"ExtraHopTCPOpen\",\r\n \"FileProfile\",\r\n \"MetadataTest_Alert\",\r\n \"NewCustomFieldsFact\",\r\n \"Perf\",\r\n \"PerfHourly\",\r\n \"ProtectionStatus\",\r\n \"Recommendation\",\r\n \"RequiredUpdate\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\",\r\n \"SMIncidentFactArtifact\",\r\n \"SQLAssessmentRecommendation\",\r\n \"SQLQueryPerformanceTest\",\r\n \"SurfaceHubDns\",\r\n \"SurfaceHubDnsFact\",\r\n \"SurfaceHubUserSessionFact\",\r\n \"Syslog\",\r\n \"TestCommonAlertfact\",\r\n \"TestFact\",\r\n \"TestFlashMEvent\",\r\n \"TestFlashWERBackdated\",\r\n \"TestFlashWERBackdated1\",\r\n \"TestUpdatAlertfact\",\r\n \"Update\",\r\n \"UpdateAgent\",\r\n \"UpdateSummary\",\r\n \"ValidationTestFact\",\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"displayName\": \"TimeGenerated\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\",\r\n \"ADAssessmentRecommendation\",\r\n \"Alert\",\r\n \"AlertHistory\",\r\n \"ASMFeature\",\r\n \"ASMProduct\",\r\n \"AzureNetworkFlow\",\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\",\r\n \"ConfigurationAlert\",\r\n \"ConfigurationChange\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\",\r\n \"ETWEvent\",\r\n \"Event\",\r\n \"ExtraHopDBLogin\",\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopDNSResponse\",\r\n \"ExtraHopFTPResponse\",\r\n \"ExtraHopHTTPTransaction\",\r\n \"ExtraHopSMTPMessage\",\r\n \"ExtraHopSYNScanDetect\",\r\n \"ExtraHopTCPOpen\",\r\n \"FileProfile\",\r\n \"MetadataTest_Alert\",\r\n \"NewCustomFieldsFact\",\r\n \"Perf\",\r\n \"PerfHourly\",\r\n \"ProtectionStatus\",\r\n \"Recommendation\",\r\n \"RequiredUpdate\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\",\r\n \"SMIncidentFactArtifact\",\r\n \"SQLAssessmentRecommendation\",\r\n \"SQLQueryPerformanceTest\",\r\n \"SurfaceHubDns\",\r\n \"SurfaceHubDnsFact\",\r\n \"SurfaceHubUserSessionFact\",\r\n \"Syslog\",\r\n \"TestCommonAlertfact\",\r\n \"TestFact\",\r\n \"TestFlashMEvent\",\r\n \"TestFlashWERBackdated\",\r\n \"TestFlashWERBackdated1\",\r\n \"TestUpdatAlertfact\",\r\n \"Update\",\r\n \"UpdateAgent\",\r\n \"UpdateSummary\",\r\n \"ValidationTestFact\",\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RunStepResultId\",\r\n \"displayName\": \"RunStepResultId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RunProfileResultId\",\r\n \"displayName\": \"RunProfileResultId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Partition\",\r\n \"displayName\": \"Partition\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OperationType\",\r\n \"displayName\": \"OperationType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\",\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SequenceNumber1\",\r\n \"displayName\": \"SequenceNumber1\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"displayName\": \"StartTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"displayName\": \"EndTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Result\",\r\n \"displayName\": \"Result\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ConnectorDiscoveryCountersFilteredDeletions\",\r\n \"displayName\": \"ConnectorDiscoveryCountersFilteredDeletions\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ConnectorDiscoveryCountersFilteredObjects\",\r\n \"displayName\": \"ConnectorDiscoveryCountersFilteredObjects\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OutboundFlowCountersJson\",\r\n \"displayName\": \"OutboundFlowCountersJson\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImportCountersNoChange\",\r\n \"displayName\": \"ImportCountersNoChange\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImportCountersAdd\",\r\n \"displayName\": \"ImportCountersAdd\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImportCountersUpdate\",\r\n \"displayName\": \"ImportCountersUpdate\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImportCountersRename\",\r\n \"displayName\": \"ImportCountersRename\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImportCountersDelete\",\r\n \"displayName\": \"ImportCountersDelete\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImportCountersDeleteAdd\",\r\n \"displayName\": \"ImportCountersDeleteAdd\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImportCountersFailure\",\r\n \"displayName\": \"ImportCountersFailure\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersDisconnectorFiltered\",\r\n \"displayName\": \"InboundFlowCountersDisconnectorFiltered\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersDisconnectorJoinedNoFlow\",\r\n \"displayName\": \"InboundFlowCountersDisconnectorJoinedNoFlow\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersDisconnectorJoinedFlow\",\r\n \"displayName\": \"InboundFlowCountersDisconnectorJoinedFlow\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersDisconnectorJoinedRemoveMv\",\r\n \"displayName\": \"InboundFlowCountersDisconnectorJoinedRemoveMv\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersDisconnectorProjectedNoFlow\",\r\n \"displayName\": \"InboundFlowCountersDisconnectorProjectedNoFlow\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersDisconnectorProjectedFlow\",\r\n \"displayName\": \"InboundFlowCountersDisconnectorProjectedFlow\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersDisconnectorProjectedRemoveMv\",\r\n \"displayName\": \"InboundFlowCountersDisconnectorProjectedRemoveMv\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersDisconnectorRemains\",\r\n \"displayName\": \"InboundFlowCountersDisconnectorRemains\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersConnectorFilteredRemoveMv\",\r\n \"displayName\": \"InboundFlowCountersConnectorFilteredRemoveMv\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersConnectorFilteredLeaveMv\",\r\n \"displayName\": \"InboundFlowCountersConnectorFilteredLeaveMv\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersConnectorFlow\",\r\n \"displayName\": \"InboundFlowCountersConnectorFlow\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersConnectorFlowRemoveMv\",\r\n \"displayName\": \"InboundFlowCountersConnectorFlowRemoveMv\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersConnectorNoFlow\",\r\n \"displayName\": \"InboundFlowCountersConnectorNoFlow\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersConnectorDeleteRemoveMv\",\r\n \"displayName\": \"InboundFlowCountersConnectorDeleteRemoveMv\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersConnectorDeleteLeaveMv\",\r\n \"displayName\": \"InboundFlowCountersConnectorDeleteLeaveMv\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersConnectorDeleteAddProcessed\",\r\n \"displayName\": \"InboundFlowCountersConnectorDeleteAddProcessed\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InboundFlowCountersFlowFailure\",\r\n \"displayName\": \"InboundFlowCountersFlowFailure\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExportCountersAdd\",\r\n \"displayName\": \"ExportCountersAdd\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExportCountersUpdate\",\r\n \"displayName\": \"ExportCountersUpdate\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExportCountersRename\",\r\n \"displayName\": \"ExportCountersRename\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExportCountersDelete\",\r\n \"displayName\": \"ExportCountersDelete\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExportCountersDeleteAdd\",\r\n \"displayName\": \"ExportCountersDeleteAdd\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExportCountersFailure\",\r\n \"displayName\": \"ExportCountersFailure\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"AadSyncRunStepResult\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AssessmentId\",\r\n \"displayName\": \"AssessmentId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AssessmentName\",\r\n \"displayName\": \"AssessmentName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RecommendationId\",\r\n \"displayName\": \"RecommendationId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Recommendation\",\r\n \"displayName\": \"Recommendation\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Description\",\r\n \"displayName\": \"Description\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"ConfigurationAlert\",\r\n \"SQLAssessmentRecommendation\",\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RecommendationResult\",\r\n \"displayName\": \"RecommendationResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FocusAreaId\",\r\n \"displayName\": \"FocusAreaId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FocusArea\",\r\n \"displayName\": \"FocusArea\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ActionAreaId\",\r\n \"displayName\": \"ActionAreaId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ActionArea\",\r\n \"displayName\": \"ActionArea\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RecommendationScore\",\r\n \"displayName\": \"RecommendationScore\",\r\n \"type\": \"Float\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RecommendationWeight\",\r\n \"displayName\": \"RecommendationWeight\",\r\n \"type\": \"Float\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetCount\",\r\n \"displayName\": \"TargetCount\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Computer\",\r\n \"displayName\": \"Computer\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"ASMFeature\",\r\n \"ASMProduct\",\r\n \"ConfigurationAlert\",\r\n \"ConfigurationChange\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\",\r\n \"ETWEvent\",\r\n \"Event\",\r\n \"Perf\",\r\n \"PerfHourly\",\r\n \"ProtectionStatus\",\r\n \"Recommendation\",\r\n \"RequiredUpdate\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\",\r\n \"SQLAssessmentRecommendation\",\r\n \"SQLQueryPerformanceTest\",\r\n \"SurfaceHubDnsFact\",\r\n \"Syslog\",\r\n \"TestFact\",\r\n \"Update\",\r\n \"UpdateAgent\",\r\n \"UpdateSummary\",\r\n \"ValidationTestFact\",\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AffectedObjectType\",\r\n \"displayName\": \"AffectedObjectType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AffectedObjectName\",\r\n \"displayName\": \"AffectedObjectName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AffectedObjectUniqueName\",\r\n \"displayName\": \"AffectedObjectUniqueName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Forest\",\r\n \"displayName\": \"Forest\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Domain\",\r\n \"displayName\": \"Domain\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DomainController\",\r\n \"displayName\": \"DomainController\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IsRollup\",\r\n \"displayName\": \"IsRollup\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IsCopied\",\r\n \"displayName\": \"IsCopied\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RecommendationPeriod\",\r\n \"displayName\": \"RecommendationPeriod\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ADAssessmentRecommendation\",\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertName\",\r\n \"displayName\": \"AlertName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertDescription\",\r\n \"displayName\": \"AlertDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertState\",\r\n \"displayName\": \"AlertState\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PriorityNumber\",\r\n \"displayName\": \"PriorityNumber\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HostName\",\r\n \"displayName\": \"HostName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"Syslog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"StateType\",\r\n \"displayName\": \"StateType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertSeverity\",\r\n \"displayName\": \"AlertSeverity\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QueryExecutionStartTime\",\r\n \"displayName\": \"QueryExecutionStartTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QueryExecutionEndTime\",\r\n \"displayName\": \"QueryExecutionEndTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"displayName\": \"Query\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RemediationJobId\",\r\n \"displayName\": \"RemediationJobId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RemediationRunbookName\",\r\n \"displayName\": \"RemediationRunbookName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertPriority\",\r\n \"displayName\": \"AlertPriority\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourceDisplayName\",\r\n \"displayName\": \"SourceDisplayName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourceFullName\",\r\n \"displayName\": \"SourceFullName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertId\",\r\n \"displayName\": \"AlertId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RepeatCount\",\r\n \"displayName\": \"RepeatCount\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ResolvedBy\",\r\n \"displayName\": \"ResolvedBy\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastModifiedBy\",\r\n \"displayName\": \"LastModifiedBy\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TimeRaised\",\r\n \"displayName\": \"TimeRaised\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TimeResolved\",\r\n \"displayName\": \"TimeResolved\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TimeLastModified\",\r\n \"displayName\": \"TimeLastModified\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertContext\",\r\n \"displayName\": \"AlertContext\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TicketId\",\r\n \"displayName\": \"TicketId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom1\",\r\n \"displayName\": \"Custom1\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom2\",\r\n \"displayName\": \"Custom2\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom3\",\r\n \"displayName\": \"Custom3\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom4\",\r\n \"displayName\": \"Custom4\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom5\",\r\n \"displayName\": \"Custom5\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom6\",\r\n \"displayName\": \"Custom6\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom7\",\r\n \"displayName\": \"Custom7\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom8\",\r\n \"displayName\": \"Custom8\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom9\",\r\n \"displayName\": \"Custom9\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Custom10\",\r\n \"displayName\": \"Custom10\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ManagementGroupName\",\r\n \"displayName\": \"ManagementGroupName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\",\r\n \"AlertHistory\",\r\n \"ConfigurationAlert\",\r\n \"ConfigurationChange\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"Event\",\r\n \"PerfHourly\",\r\n \"ProtectionStatus\",\r\n \"Recommendation\",\r\n \"RequiredUpdate\",\r\n \"SecurityEvent\",\r\n \"Update\",\r\n \"UpdateAgent\",\r\n \"UpdateSummary\",\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertUniqueId\",\r\n \"displayName\": \"AlertUniqueId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertTypeDescription\",\r\n \"displayName\": \"AlertTypeDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertTypeNumber\",\r\n \"displayName\": \"AlertTypeNumber\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertError\",\r\n \"displayName\": \"AlertError\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"StatusDescription\",\r\n \"displayName\": \"StatusDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertStatus\",\r\n \"displayName\": \"AlertStatus\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TriggerId\",\r\n \"displayName\": \"TriggerId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Url\",\r\n \"displayName\": \"Url\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ValueDescription\",\r\n \"displayName\": \"ValueDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertValue\",\r\n \"displayName\": \"AlertValue\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Comments\",\r\n \"displayName\": \"Comments\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TemplateId\",\r\n \"displayName\": \"TemplateId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FlagsDescription\",\r\n \"displayName\": \"FlagsDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Flags\",\r\n \"displayName\": \"Flags\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ValueFlagsDescription\",\r\n \"displayName\": \"ValueFlagsDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ValueFlags\",\r\n \"displayName\": \"ValueFlags\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Expression\",\r\n \"displayName\": \"Expression\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ASM_Service\",\r\n \"displayName\": \"ASM_Service\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ASMFeature\",\r\n \"ASMProduct\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ASM_FeatureDisplayName\",\r\n \"displayName\": \"ASM_FeatureDisplayName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ASMFeature\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ASM_FeatureName\",\r\n \"displayName\": \"ASM_FeatureName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ASMFeature\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ASM_ProductName\",\r\n \"displayName\": \"ASM_ProductName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ASMProduct\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ASM_ProuctPublisher\",\r\n \"displayName\": \"ASM_ProuctPublisher\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ASMProduct\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ASM_ProuctVersion\",\r\n \"displayName\": \"ASM_ProuctVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ASMProduct\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ASM_ProuctInstalledDateTime\",\r\n \"displayName\": \"ASM_ProuctInstalledDateTime\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ASMProduct\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Direction\",\r\n \"displayName\": \"Direction\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Priority\",\r\n \"displayName\": \"Priority\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourceIP\",\r\n \"displayName\": \"SourceIP\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\",\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DestinationIP\",\r\n \"displayName\": \"DestinationIP\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AgentID\",\r\n \"displayName\": \"AgentID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Protocol\",\r\n \"displayName\": \"Protocol\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\",\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourcePort\",\r\n \"displayName\": \"SourcePort\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\",\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DestinationPort\",\r\n \"displayName\": \"DestinationPort\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\",\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TcpFlags\",\r\n \"displayName\": \"TcpFlags\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Packets\",\r\n \"displayName\": \"Packets\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Bytes\",\r\n \"displayName\": \"Bytes\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"BytesOut\",\r\n \"displayName\": \"BytesOut\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DurationInMs\",\r\n \"displayName\": \"DurationInMs\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RstCount\",\r\n \"displayName\": \"RstCount\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MaxSampleRtt\",\r\n \"displayName\": \"MaxSampleRtt\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"AzureNetworkFlow\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RawData\",\r\n \"displayName\": \"RawData\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventId\",\r\n \"displayName\": \"EventId\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HealthServiceId\",\r\n \"displayName\": \"HealthServiceId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventName\",\r\n \"displayName\": \"EventName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SurfaceHubDnsFact\",\r\n \"SurfaceHubUserSessionFact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ESTest_PreciseTimeStamp\",\r\n \"displayName\": \"ESTest_PreciseTimeStamp\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ESTest_TenantInstanceName\",\r\n \"displayName\": \"ESTest_TenantInstanceName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ESTest_RoleInstanceName\",\r\n \"displayName\": \"ESTest_RoleInstanceName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ESTest_ContextInCsv_RequestUrl\",\r\n \"displayName\": \"ESTest_ContextInCsv_RequestUrl\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ESTest_ContextInCsv_EsWebVersion\",\r\n \"displayName\": \"ESTest_ContextInCsv_EsWebVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ESTest_OperationName\",\r\n \"displayName\": \"ESTest_OperationName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ESTest_ResultSignature\",\r\n \"displayName\": \"ESTest_ResultSignature\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ESTest_ResultDetails\",\r\n \"displayName\": \"ESTest_ResultDetails\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"CerebroTelemetryIfxOperationV2v1EtwTableVer1v0\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Severity\",\r\n \"displayName\": \"Severity\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\",\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ObjectId\",\r\n \"displayName\": \"ObjectId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"PerfHourly\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IsMonitorAlert\",\r\n \"displayName\": \"IsMonitorAlert\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AlertParameters\",\r\n \"displayName\": \"AlertParameters\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Context\",\r\n \"displayName\": \"Context\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"WorkflowName\",\r\n \"displayName\": \"WorkflowName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\",\r\n \"PerfHourly\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RootObjectId\",\r\n \"displayName\": \"RootObjectId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RootObjectName\",\r\n \"displayName\": \"RootObjectName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"PerfHourly\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ObjectDisplayName\",\r\n \"displayName\": \"ObjectDisplayName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"PerfHourly\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ParentObjectId\",\r\n \"displayName\": \"ParentObjectId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ParentObjectName\",\r\n \"displayName\": \"ParentObjectName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\",\r\n \"ConfigurationObject\",\r\n \"ConfigurationObjectProperty\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Workload\",\r\n \"displayName\": \"Workload\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationAlert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ConfigChangeType\",\r\n \"displayName\": \"ConfigChangeType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ChangeCategory\",\r\n \"displayName\": \"ChangeCategory\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SoftwareType\",\r\n \"displayName\": \"SoftwareType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SoftwareName\",\r\n \"displayName\": \"SoftwareName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Previous\",\r\n \"displayName\": \"Previous\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Current\",\r\n \"displayName\": \"Current\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Publisher\",\r\n \"displayName\": \"Publisher\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"displayName\": \"Location\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcChangeType\",\r\n \"displayName\": \"SvcChangeType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcDisplayName\",\r\n \"displayName\": \"SvcDisplayName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcName\",\r\n \"displayName\": \"SvcName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcState\",\r\n \"displayName\": \"SvcState\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcPreviousState\",\r\n \"displayName\": \"SvcPreviousState\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcStartupType\",\r\n \"displayName\": \"SvcStartupType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcPreviousStartupType\",\r\n \"displayName\": \"SvcPreviousStartupType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcAccount\",\r\n \"displayName\": \"SvcAccount\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcPreviousAccount\",\r\n \"displayName\": \"SvcPreviousAccount\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcPath\",\r\n \"displayName\": \"SvcPath\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcPreviousPath\",\r\n \"displayName\": \"SvcPreviousPath\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SvcDescription\",\r\n \"displayName\": \"SvcDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationChange\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Path\",\r\n \"displayName\": \"Path\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationObject\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ObjectType\",\r\n \"displayName\": \"ObjectType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ConfigurationObject\",\r\n \"PerfHourly\",\r\n \"Recommendation\",\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Name\",\r\n \"displayName\": \"Name\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationObjectProperty\",\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Value\",\r\n \"displayName\": \"Value\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ConfigurationObjectProperty\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImageID\",\r\n \"displayName\": \"ImageID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Repository\",\r\n \"displayName\": \"Repository\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Image\",\r\n \"displayName\": \"Image\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImageTag\",\r\n \"displayName\": \"ImageTag\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImageSize\",\r\n \"displayName\": \"ImageSize\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"VirtualSize\",\r\n \"displayName\": \"VirtualSize\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Running\",\r\n \"displayName\": \"Running\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Stopped\",\r\n \"displayName\": \"Stopped\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Failed\",\r\n \"displayName\": \"Failed\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Paused\",\r\n \"displayName\": \"Paused\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\",\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TotalContainer\",\r\n \"displayName\": \"TotalContainer\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ContainerImageInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ContainerID\",\r\n \"displayName\": \"ContainerID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ContainerInventory\",\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ContainerHostname\",\r\n \"displayName\": \"ContainerHostname\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ContainerState\",\r\n \"displayName\": \"ContainerState\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Ports\",\r\n \"displayName\": \"Ports\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Links\",\r\n \"displayName\": \"Links\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExitCode\",\r\n \"displayName\": \"ExitCode\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ComposeGroup\",\r\n \"displayName\": \"ComposeGroup\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EnvironmentVar\",\r\n \"displayName\": \"EnvironmentVar\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Command\",\r\n \"displayName\": \"Command\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\",\r\n \"ContainerServiceLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CreatedTime\",\r\n \"displayName\": \"CreatedTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"StartedTime\",\r\n \"displayName\": \"StartedTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FinishedTime\",\r\n \"displayName\": \"FinishedTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerInventory\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TimeOfCommand\",\r\n \"displayName\": \"TimeOfCommand\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerLog\",\r\n \"ContainerServiceLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LogEntry\",\r\n \"displayName\": \"LogEntry\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LogEntrySource\",\r\n \"displayName\": \"LogEntrySource\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ContainerLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProcessId\",\r\n \"displayName\": \"ProcessId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"displayName\": \"tags\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SurfaceHubUserSessionFact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PartitionKey\",\r\n \"displayName\": \"PartitionKey\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Level\",\r\n \"displayName\": \"Level\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProviderGuid\",\r\n \"displayName\": \"ProviderGuid\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventSourceName\",\r\n \"displayName\": \"EventSourceName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Pid\",\r\n \"displayName\": \"Pid\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Tid\",\r\n \"displayName\": \"Tid\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OpcodeName\",\r\n \"displayName\": \"OpcodeName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"KeywordName\",\r\n \"displayName\": \"KeywordName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TaskName\",\r\n \"displayName\": \"TaskName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ChannelName\",\r\n \"displayName\": \"ChannelName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RowKey\",\r\n \"displayName\": \"RowKey\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AzureDeploymentID\",\r\n \"displayName\": \"AzureDeploymentID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"Event\",\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\",\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"Event\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\",\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventMessage\",\r\n \"displayName\": \"EventMessage\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"displayName\": \"Message\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ETWEvent\",\r\n \"Event\",\r\n \"Syslog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Source\",\r\n \"displayName\": \"Source\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventLog\",\r\n \"displayName\": \"EventLog\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventCategory\",\r\n \"displayName\": \"EventCategory\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventLevel\",\r\n \"displayName\": \"EventLevel\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventLevelName\",\r\n \"displayName\": \"EventLevelName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Event\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UserName\",\r\n \"displayName\": \"UserName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ParameterXml\",\r\n \"displayName\": \"ParameterXml\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\",\r\n \"NewCustomFieldsFact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventData\",\r\n \"displayName\": \"EventData\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\",\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventID\",\r\n \"displayName\": \"EventID\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\",\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RenderedDescription\",\r\n \"displayName\": \"RenderedDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\",\r\n \"NewCustomFieldsFact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TimeCollected\",\r\n \"displayName\": \"TimeCollected\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Event\",\r\n \"ProtectionStatus\",\r\n \"RequiredUpdate\",\r\n \"SecurityEvent\",\r\n \"UpdateAgent\",\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourceLocation\",\r\n \"displayName\": \"SourceLocation\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBLogin\",\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopDNSResponse\",\r\n \"ExtraHopFTPResponse\",\r\n \"ExtraHopHTTPTransaction\",\r\n \"ExtraHopSMTPMessage\",\r\n \"ExtraHopSYNScanDetect\",\r\n \"ExtraHopTCPOpen\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DestinationAddress\",\r\n \"displayName\": \"DestinationAddress\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBLogin\",\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopDNSResponse\",\r\n \"ExtraHopFTPResponse\",\r\n \"ExtraHopHTTPTransaction\",\r\n \"ExtraHopSMTPMessage\",\r\n \"ExtraHopTCPOpen\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"User\",\r\n \"displayName\": \"User\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBLogin\",\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopFTPResponse\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Method\",\r\n \"displayName\": \"Method\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopFTPResponse\",\r\n \"ExtraHopHTTPTransaction\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DestinationPortNumber\",\r\n \"displayName\": \"DestinationPortNumber\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopHTTPTransaction\",\r\n \"ExtraHopTCPOpen\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourcePortNumber\",\r\n \"displayName\": \"SourcePortNumber\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopHTTPTransaction\",\r\n \"ExtraHopTCPOpen\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Duration_ms\",\r\n \"displayName\": \"Duration_ms\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopHTTPTransaction\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ResponseTTLB_ms\",\r\n \"displayName\": \"ResponseTTLB_ms\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopHTTPTransaction\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HOPName\",\r\n \"displayName\": \"HOPName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopHTTPTransaction\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QueryString\",\r\n \"displayName\": \"QueryString\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopDNSResponse\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DBErrorCode\",\r\n \"displayName\": \"DBErrorCode\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DataCenter\",\r\n \"displayName\": \"DataCenter\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDBTransaction\",\r\n \"ExtraHopHTTPTransaction\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QueryType\",\r\n \"displayName\": \"QueryType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDNSResponse\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QueryResult\",\r\n \"displayName\": \"QueryResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopDNSResponse\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"StatusCode\",\r\n \"displayName\": \"StatusCode\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopFTPResponse\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FilePath\",\r\n \"displayName\": \"FilePath\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopFTPResponse\",\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"URIString\",\r\n \"displayName\": \"URIString\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopHTTPTransaction\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ResponseCode\",\r\n \"displayName\": \"ResponseCode\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopHTTPTransaction\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Recipient\",\r\n \"displayName\": \"Recipient\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopSMTPMessage\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"displayName\": \"SenderName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopSMTPMessage\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AttachmentFileSize\",\r\n \"displayName\": \"AttachmentFileSize\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopSMTPMessage\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SYNSENT_NEWCONNESTAB\",\r\n \"displayName\": \"SYNSENT_NEWCONNESTAB\",\r\n \"type\": \"Float\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopSYNScanDetect\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PeerListSize\",\r\n \"displayName\": \"PeerListSize\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ExtraHopSYNScanDetect\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Sha1\",\r\n \"displayName\": \"Sha1\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Sha256\",\r\n \"displayName\": \"Sha256\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ETag\",\r\n \"displayName\": \"ETag\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HasSample\",\r\n \"displayName\": \"HasSample\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DeterminationType\",\r\n \"displayName\": \"DeterminationType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DeterminationValue\",\r\n \"displayName\": \"DeterminationValue\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DeterminedBy\",\r\n \"displayName\": \"DeterminedBy\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubmissionFileId\",\r\n \"displayName\": \"SubmissionFileId\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsDetections\",\r\n \"displayName\": \"MsDetections\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ThirdPartyDetections\",\r\n \"displayName\": \"ThirdPartyDetections\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AllDetections\",\r\n \"displayName\": \"AllDetections\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CreationDateTime\",\r\n \"displayName\": \"CreationDateTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DeterminationDateTime\",\r\n \"displayName\": \"DeterminationDateTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastChangeDateTime\",\r\n \"displayName\": \"LastChangeDateTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HasTelemetry\",\r\n \"displayName\": \"HasTelemetry\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InvFirstObserved\",\r\n \"displayName\": \"InvFirstObserved\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InvLastObserved\",\r\n \"displayName\": \"InvLastObserved\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TelFirstObserved\",\r\n \"displayName\": \"TelFirstObserved\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TelLastObserved\",\r\n \"displayName\": \"TelLastObserved\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TelemetryPrevalence\",\r\n \"displayName\": \"TelemetryPrevalence\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InventoryPrevalence\",\r\n \"displayName\": \"InventoryPrevalence\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FirstObserved\",\r\n \"displayName\": \"FirstObserved\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastObserved\",\r\n \"displayName\": \"LastObserved\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Md5\",\r\n \"displayName\": \"Md5\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AggregateBasedOpinion\",\r\n \"displayName\": \"AggregateBasedOpinion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AggregateBasedOpinionFidelity\",\r\n \"displayName\": \"AggregateBasedOpinionFidelity\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PrevalentThreatName\",\r\n \"displayName\": \"PrevalentThreatName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PrevalentThreatMachineCount\",\r\n \"displayName\": \"PrevalentThreatMachineCount\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PrevalentThreatFirstDetectionInLast30Days\",\r\n \"displayName\": \"PrevalentThreatFirstDetectionInLast30Days\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PrevalentThreatLastDetection\",\r\n \"displayName\": \"PrevalentThreatLastDetection\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Size\",\r\n \"displayName\": \"Size\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PartialCrc1\",\r\n \"displayName\": \"PartialCrc1\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PartialCrc2\",\r\n \"displayName\": \"PartialCrc2\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PartialCrc3\",\r\n \"displayName\": \"PartialCrc3\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LsHash\",\r\n \"displayName\": \"LsHash\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FileType\",\r\n \"displayName\": \"FileType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Ctph\",\r\n \"displayName\": \"Ctph\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Kcrc1\",\r\n \"displayName\": \"Kcrc1\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Kcrc2\",\r\n \"displayName\": \"Kcrc2\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Kcrc3\",\r\n \"displayName\": \"Kcrc3\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Kcrc3n\",\r\n \"displayName\": \"Kcrc3n\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuthenticodeHash256\",\r\n \"displayName\": \"AuthenticodeHash256\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FileOriginalName\",\r\n \"displayName\": \"FileOriginalName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FilePublisher\",\r\n \"displayName\": \"FilePublisher\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FileProductName\",\r\n \"displayName\": \"FileProductName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FileDescription\",\r\n \"displayName\": \"FileDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FileVersion\",\r\n \"displayName\": \"FileVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PeHeaderChecksum\",\r\n \"displayName\": \"PeHeaderChecksum\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PeTimestamp\",\r\n \"displayName\": \"PeTimestamp\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IsRuntimePacked\",\r\n \"displayName\": \"IsRuntimePacked\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Signer\",\r\n \"displayName\": \"Signer\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Issuer\",\r\n \"displayName\": \"Issuer\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SignerHash\",\r\n \"displayName\": \"SignerHash\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IsValidCertificate\",\r\n \"displayName\": \"IsValidCertificate\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CertInvalidDetails\",\r\n \"displayName\": \"CertInvalidDetails\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorDetermination\",\r\n \"displayName\": \"AcDeterminatorDetermination\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorFidelity\",\r\n \"displayName\": \"AcDeterminatorFidelity\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorSignFamily\",\r\n \"displayName\": \"AcDeterminatorSignFamily\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorTimeStamp\",\r\n \"displayName\": \"AcDeterminatorTimeStamp\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorMachineLearningClassification\",\r\n \"displayName\": \"AcDeterminatorMachineLearningClassification\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorMachineLearningFamilyName\",\r\n \"displayName\": \"AcDeterminatorMachineLearningFamilyName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorMachineLearningConfidence\",\r\n \"displayName\": \"AcDeterminatorMachineLearningConfidence\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorMachineLearningPrecision\",\r\n \"displayName\": \"AcDeterminatorMachineLearningPrecision\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorMachineLearningVersion\",\r\n \"displayName\": \"AcDeterminatorMachineLearningVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorMachineLearningTimeStamp\",\r\n \"displayName\": \"AcDeterminatorMachineLearningTimeStamp\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcDeterminatorMetaFeatures\",\r\n \"displayName\": \"AcDeterminatorMetaFeatures\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcBaseLabelV2Family\",\r\n \"displayName\": \"AcBaseLabelV2Family\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcBaseLabelV2DetectionName\",\r\n \"displayName\": \"AcBaseLabelV2DetectionName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcBaseLabelV2LabelType\",\r\n \"displayName\": \"AcBaseLabelV2LabelType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcBaseLabelV2Category\",\r\n \"displayName\": \"AcBaseLabelV2Category\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcBaseLabelV2LabelScore\",\r\n \"displayName\": \"AcBaseLabelV2LabelScore\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AcBaseLabelV2PrevalenceReportCount\",\r\n \"displayName\": \"AcBaseLabelV2PrevalenceReportCount\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsPrimaryScanResultIsSuspicious\",\r\n \"displayName\": \"MsPrimaryScanResultIsSuspicious\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsPrimaryScanResult\",\r\n \"displayName\": \"MsPrimaryScanResult\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsAmPhase1RelScanResult\",\r\n \"displayName\": \"MsAmPhase1RelScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsAmPhase1DailyParanoidScanResult\",\r\n \"displayName\": \"MsAmPhase1DailyParanoidScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"McAfeeScanResult\",\r\n \"displayName\": \"McAfeeScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"McAfeeBetaScanResult\",\r\n \"displayName\": \"McAfeeBetaScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TrendScanResult\",\r\n \"displayName\": \"TrendScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"BitDefenderScanResult\",\r\n \"displayName\": \"BitDefenderScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DrWebScanResult\",\r\n \"displayName\": \"DrWebScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsAsPreRelRelScanResult\",\r\n \"displayName\": \"MsAsPreRelRelScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EsetScanResult\",\r\n \"displayName\": \"EsetScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AntigenKasperskyScanResult\",\r\n \"displayName\": \"AntigenKasperskyScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AntigenNormanScanResult\",\r\n \"displayName\": \"AntigenNormanScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SophosScanResult\",\r\n \"displayName\": \"SophosScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AhnlabScanResult\",\r\n \"displayName\": \"AhnlabScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AntigenCommandScanResult\",\r\n \"displayName\": \"AntigenCommandScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AntigenMicrosoftScanResult\",\r\n \"displayName\": \"AntigenMicrosoftScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SymantecScanResult\",\r\n \"displayName\": \"SymantecScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsAmPhase1RelGenericScanResult\",\r\n \"displayName\": \"MsAmPhase1RelGenericScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"KasperskyScanResult\",\r\n \"displayName\": \"KasperskyScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AvgScanResult\",\r\n \"displayName\": \"AvgScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IkarusScanResult\",\r\n \"displayName\": \"IkarusScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AviraAntivirScanResult\",\r\n \"displayName\": \"AviraAntivirScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RisingScanResult\",\r\n \"displayName\": \"RisingScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsAmRelDssRelScanResult\",\r\n \"displayName\": \"MsAmRelDssRelScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsMsrtRelScanResult\",\r\n \"displayName\": \"MsMsrtRelScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsDtClassifierScanResult\",\r\n \"displayName\": \"MsDtClassifierScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MsAmPhase1RelLowFiScanResult\",\r\n \"displayName\": \"MsAmPhase1RelLowFiScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PliScanResult\",\r\n \"displayName\": \"PliScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FortinetScanResult\",\r\n \"displayName\": \"FortinetScanResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FullMsScanResults\",\r\n \"displayName\": \"FullMsScanResults\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FullThirdPartyScanResults\",\r\n \"displayName\": \"FullThirdPartyScanResults\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"FileProfile\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_Priority\",\r\n \"displayName\": \"MetadataTest_Priority\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_Severity\",\r\n \"displayName\": \"MetadataTest_Severity\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_Source\",\r\n \"displayName\": \"MetadataTest_Source\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_Id\",\r\n \"displayName\": \"MetadataTest_Id\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_Name\",\r\n \"displayName\": \"MetadataTest_Name\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_IsMonitor\",\r\n \"displayName\": \"MetadataTest_IsMonitor\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_RepeatCount\",\r\n \"displayName\": \"MetadataTest_Frequency\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_ResolutionState\",\r\n \"displayName\": \"MetadataTest_ResolutionState\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_State\",\r\n \"displayName\": \"MetadataTest_State\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_TimeRaised\",\r\n \"displayName\": \"MetadataTest_RaisedAt\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_TimeLastModified\",\r\n \"displayName\": \"MetadataTest_ModifiedAt\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_Key1\",\r\n \"displayName\": \"MetadataTest_Key1\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MetadataTest_Alert_Key2\",\r\n \"displayName\": \"MetadataTest_Key2\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"MetadataTest_Alert\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ObjectName\",\r\n \"displayName\": \"ObjectName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Perf\",\r\n \"PerfHourly\",\r\n \"SecurityEvent\",\r\n \"SQLQueryPerformanceTest\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CounterName\",\r\n \"displayName\": \"CounterName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Perf\",\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InstanceName\",\r\n \"displayName\": \"InstanceName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Perf\",\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Average\",\r\n \"displayName\": \"CounterValue\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Perf\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CounterPath\",\r\n \"displayName\": \"CounterPath\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Perf\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Min\",\r\n \"displayName\": \"Min\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Perf\",\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Max\",\r\n \"displayName\": \"Max\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Perf\",\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SampleCount\",\r\n \"displayName\": \"SampleCount\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Perf\",\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"BucketStartTime\",\r\n \"displayName\": \"BucketStartTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Perf\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"BucketEndTime\",\r\n \"displayName\": \"BucketEndTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Perf\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"StandardDeviation\",\r\n \"displayName\": \"StandardDeviation\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Perf\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ObjectFullName\",\r\n \"displayName\": \"ObjectFullName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"WorkflowDisplayName\",\r\n \"displayName\": \"WorkflowDisplayName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RuleId\",\r\n \"displayName\": \"RuleId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SampleValue\",\r\n \"displayName\": \"SampleValue\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Percentile95\",\r\n \"displayName\": \"Percentile95\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"PerfHourly\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourceHealthServiceId\",\r\n \"displayName\": \"SourceHealthServiceId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ProtectionStatus\",\r\n \"RequiredUpdate\",\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DeviceName\",\r\n \"displayName\": \"DeviceName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DetectionId\",\r\n \"displayName\": \"DetectionId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Threat\",\r\n \"displayName\": \"Threat\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ThreatStatusRank\",\r\n \"displayName\": \"ThreatStatusRank\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ThreatStatus\",\r\n \"displayName\": \"ThreatStatus\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ThreatStatusDetails\",\r\n \"displayName\": \"ThreatStatusDetails\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProtectionStatusRank\",\r\n \"displayName\": \"ProtectionStatusRank\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProtectionStatus\",\r\n \"displayName\": \"ProtectionStatus\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProtectionStatusDetails\",\r\n \"displayName\": \"ProtectionStatusDetails\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SignatureVersion\",\r\n \"displayName\": \"SignatureVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TypeofProtection\",\r\n \"displayName\": \"TypeofProtection\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ScanDate\",\r\n \"displayName\": \"ScanDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DateCollected\",\r\n \"displayName\": \"DateCollected\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"ProtectionStatus\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastOccurred\",\r\n \"displayName\": \"LastOccurred\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastModified\",\r\n \"displayName\": \"LastModified\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"KBLink\",\r\n \"displayName\": \"KBLink\",\r\n \"type\": \"Uri\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DataSource\",\r\n \"displayName\": \"DataSource\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RecommendationProperties\",\r\n \"displayName\": \"RecommendationProperties\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RecommendationStatus\",\r\n \"displayName\": \"RecommendationStatus\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AdvisorWorkload\",\r\n \"displayName\": \"AdvisorWorkload\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Score\",\r\n \"displayName\": \"Score\",\r\n \"type\": \"Float\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ReleaseDate\",\r\n \"displayName\": \"ReleaseDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Recommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DateStampUTC\",\r\n \"displayName\": \"DateStampUTC\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"RequiredUpdate\",\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UpdateTitle\",\r\n \"displayName\": \"UpdateTitle\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"RequiredUpdate\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UpdateSeverity\",\r\n \"displayName\": \"UpdateSeverity\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"RequiredUpdate\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PublishDate\",\r\n \"displayName\": \"PublishDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"RequiredUpdate\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Server\",\r\n \"displayName\": \"Server\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"RequiredUpdate\",\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"displayName\": \"Product\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"RequiredUpdate\",\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UpdateClassification\",\r\n \"displayName\": \"UpdateClassification\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"RequiredUpdate\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"KBID\",\r\n \"displayName\": \"KBID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"RequiredUpdate\",\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Account\",\r\n \"displayName\": \"Account\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AccountType\",\r\n \"displayName\": \"AccountType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Channel\",\r\n \"displayName\": \"Channel\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Task\",\r\n \"displayName\": \"Task\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Activity\",\r\n \"displayName\": \"Activity\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventOriginId\",\r\n \"displayName\": \"EventOriginId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AccessList\",\r\n \"displayName\": \"AccessList\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AccessMask\",\r\n \"displayName\": \"AccessMask\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AccessReason\",\r\n \"displayName\": \"AccessReason\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AccountDomain\",\r\n \"displayName\": \"AccountDomain\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AccountExpires\",\r\n \"displayName\": \"AccountExpires\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AccountName\",\r\n \"displayName\": \"AccountName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AccountSessionIdentifier\",\r\n \"displayName\": \"AccountSessionIdentifier\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AllowedToDelegateTo\",\r\n \"displayName\": \"AllowedToDelegateTo\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Attributes\",\r\n \"displayName\": \"Attributes\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuditPolicyChanges\",\r\n \"displayName\": \"AuditPolicyChanges\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuditsDiscarded\",\r\n \"displayName\": \"AuditsDiscarded\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuthenticationLevel\",\r\n \"displayName\": \"AuthenticationLevel\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuthenticationPackageName\",\r\n \"displayName\": \"AuthenticationPackageName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuthenticationProvider\",\r\n \"displayName\": \"AuthenticationProvider\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuthenticationServer\",\r\n \"displayName\": \"AuthenticationServer\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuthenticationService\",\r\n \"displayName\": \"AuthenticationService\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AuthenticationType\",\r\n \"displayName\": \"AuthenticationType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CACertificateHash\",\r\n \"displayName\": \"CACertificateHash\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CalledStationID\",\r\n \"displayName\": \"CalledStationID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CallingStationID\",\r\n \"displayName\": \"CallingStationID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CAPublicKeyHash\",\r\n \"displayName\": \"CAPublicKeyHash\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CategoryId\",\r\n \"displayName\": \"CategoryId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CertificateDatabaseHash\",\r\n \"displayName\": \"CertificateDatabaseHash\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ClientAddress\",\r\n \"displayName\": \"ClientAddress\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ClientIPAddress\",\r\n \"displayName\": \"ClientIPAddress\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ClientName\",\r\n \"displayName\": \"ClientName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CommandLine\",\r\n \"displayName\": \"CommandLine\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DCDNSName\",\r\n \"displayName\": \"DCDNSName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DisplayName\",\r\n \"displayName\": \"DisplayName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Disposition\",\r\n \"displayName\": \"Disposition\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DomainBehaviorVersion\",\r\n \"displayName\": \"DomainBehaviorVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DomainName\",\r\n \"displayName\": \"DomainName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DomainPolicyChanged\",\r\n \"displayName\": \"DomainPolicyChanged\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DomainSid\",\r\n \"displayName\": \"DomainSid\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EAPType\",\r\n \"displayName\": \"EAPType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ErrorCode\",\r\n \"displayName\": \"ErrorCode\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExtendedQuarantineState\",\r\n \"displayName\": \"ExtendedQuarantineState\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FailureReason\",\r\n \"displayName\": \"FailureReason\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FileHash\",\r\n \"displayName\": \"FileHash\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FilePathNoUser\",\r\n \"displayName\": \"FilePathNoUser\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Filter\",\r\n \"displayName\": \"Filter\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ForceLogoff\",\r\n \"displayName\": \"ForceLogoff\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Fqbn\",\r\n \"displayName\": \"Fqbn\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FullyQualifiedSubjectMachineName\",\r\n \"displayName\": \"FullyQualifiedSubjectMachineName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FullyQualifiedSubjectUserName\",\r\n \"displayName\": \"FullyQualifiedSubjectUserName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HandleId\",\r\n \"displayName\": \"HandleId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HomeDirectory\",\r\n \"displayName\": \"HomeDirectory\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HomePath\",\r\n \"displayName\": \"HomePath\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ImpersonationLevel\",\r\n \"displayName\": \"ImpersonationLevel\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InterfaceUuid\",\r\n \"displayName\": \"InterfaceUuid\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IpAddress\",\r\n \"displayName\": \"IpAddress\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IpPort\",\r\n \"displayName\": \"IpPort\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"KeyLength\",\r\n \"displayName\": \"KeyLength\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LmPackageName\",\r\n \"displayName\": \"LmPackageName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LockoutDuration\",\r\n \"displayName\": \"LockoutDuration\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LockoutObservationWindow\",\r\n \"displayName\": \"LockoutObservationWindow\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LockoutThreshold\",\r\n \"displayName\": \"LockoutThreshold\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LoggingResult\",\r\n \"displayName\": \"LoggingResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LogonGuid\",\r\n \"displayName\": \"LogonGuid\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LogonHours\",\r\n \"displayName\": \"LogonHours\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LogonID\",\r\n \"displayName\": \"LogonID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LogonProcessName\",\r\n \"displayName\": \"LogonProcessName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LogonType\",\r\n \"displayName\": \"LogonType\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LogonTypeName\",\r\n \"displayName\": \"LogonTypeName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MachineAccountQuota\",\r\n \"displayName\": \"MachineAccountQuota\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MachineInventory\",\r\n \"displayName\": \"MachineInventory\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MaxPasswordAge\",\r\n \"displayName\": \"MaxPasswordAge\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MemberName\",\r\n \"displayName\": \"MemberName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MemberSid\",\r\n \"displayName\": \"MemberSid\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MinPasswordAge\",\r\n \"displayName\": \"MinPasswordAge\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MinPasswordLength\",\r\n \"displayName\": \"MinPasswordLength\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MixedDomainMode\",\r\n \"displayName\": \"MixedDomainMode\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NASIdentifier\",\r\n \"displayName\": \"NASIdentifier\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NASIPv4Address\",\r\n \"displayName\": \"NASIPv4Address\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NASIPv6Address\",\r\n \"displayName\": \"NASIPv6Address\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NASPort\",\r\n \"displayName\": \"NASPort\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NASPortType\",\r\n \"displayName\": \"NASPortType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NetworkPolicyName\",\r\n \"displayName\": \"NetworkPolicyName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewDate\",\r\n \"displayName\": \"NewDate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewMaxUsers\",\r\n \"displayName\": \"NewMaxUsers\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewProcessId\",\r\n \"displayName\": \"NewProcessId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewProcessName\",\r\n \"displayName\": \"NewProcessName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewRemark\",\r\n \"displayName\": \"NewRemark\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewShareFlags\",\r\n \"displayName\": \"NewShareFlags\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewTime\",\r\n \"displayName\": \"NewTime\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewUacValue\",\r\n \"displayName\": \"NewUacValue\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewValue\",\r\n \"displayName\": \"NewValue\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NewValueType\",\r\n \"displayName\": \"NewValueType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ObjectValueName\",\r\n \"displayName\": \"ObjectValueName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OemInformation\",\r\n \"displayName\": \"OemInformation\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OldMaxUsers\",\r\n \"displayName\": \"OldMaxUsers\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OldRemark\",\r\n \"displayName\": \"OldRemark\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OldShareFlags\",\r\n \"displayName\": \"OldShareFlags\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OldUacValue\",\r\n \"displayName\": \"OldUacValue\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OldValue\",\r\n \"displayName\": \"OldValue\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OldValueType\",\r\n \"displayName\": \"OldValueType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PackageName\",\r\n \"displayName\": \"PackageName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ParentProcessName\",\r\n \"displayName\": \"ParentProcessName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PasswordHistoryLength\",\r\n \"displayName\": \"PasswordHistoryLength\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PasswordLastSet\",\r\n \"displayName\": \"PasswordLastSet\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PasswordProperties\",\r\n \"displayName\": \"PasswordProperties\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PreviousDate\",\r\n \"displayName\": \"PreviousDate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PreviousTime\",\r\n \"displayName\": \"PreviousTime\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PrimaryGroupId\",\r\n \"displayName\": \"PrimaryGroupId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PrivateKeyUsageCount\",\r\n \"displayName\": \"PrivateKeyUsageCount\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PrivilegeList\",\r\n \"displayName\": \"PrivilegeList\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Process\",\r\n \"displayName\": \"Process\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProcessName\",\r\n \"displayName\": \"ProcessName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\",\r\n \"Syslog\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProfilePath\",\r\n \"displayName\": \"ProfilePath\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProtocolSequence\",\r\n \"displayName\": \"ProtocolSequence\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProxyPolicyName\",\r\n \"displayName\": \"ProxyPolicyName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QuarantineHelpURL\",\r\n \"displayName\": \"QuarantineHelpURL\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QuarantineSessionID\",\r\n \"displayName\": \"QuarantineSessionID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QuarantineSessionIdentifier\",\r\n \"displayName\": \"QuarantineSessionIdentifier\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QuarantineState\",\r\n \"displayName\": \"QuarantineState\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QuarantineSystemHealthResult\",\r\n \"displayName\": \"QuarantineSystemHealthResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RelativeTargetName\",\r\n \"displayName\": \"RelativeTargetName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RemoteIpAddress\",\r\n \"displayName\": \"RemoteIpAddress\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RemotePort\",\r\n \"displayName\": \"RemotePort\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Requester\",\r\n \"displayName\": \"Requester\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RequestId\",\r\n \"displayName\": \"RequestId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RowsDeleted\",\r\n \"displayName\": \"RowsDeleted\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SamAccountName\",\r\n \"displayName\": \"SamAccountName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ScriptPath\",\r\n \"displayName\": \"ScriptPath\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SecurityDescriptor\",\r\n \"displayName\": \"SecurityDescriptor\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ServiceAccount\",\r\n \"displayName\": \"ServiceAccount\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ServiceFileName\",\r\n \"displayName\": \"ServiceFileName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ServiceName\",\r\n \"displayName\": \"ServiceName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\",\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ServiceStartType\",\r\n \"displayName\": \"ServiceStartType\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ServiceType\",\r\n \"displayName\": \"ServiceType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SessionName\",\r\n \"displayName\": \"SessionName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ShareLocalPath\",\r\n \"displayName\": \"ShareLocalPath\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ShareName\",\r\n \"displayName\": \"ShareName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SidHistory\",\r\n \"displayName\": \"SidHistory\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Status\",\r\n \"displayName\": \"Status\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubjectAccount\",\r\n \"displayName\": \"SubjectAccount\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubcategoryGuid\",\r\n \"displayName\": \"SubcategoryGuid\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubcategoryId\",\r\n \"displayName\": \"SubcategoryId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"displayName\": \"Subject\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubjectDomainName\",\r\n \"displayName\": \"SubjectDomainName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubjectKeyIdentifier\",\r\n \"displayName\": \"SubjectKeyIdentifier\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubjectLogonId\",\r\n \"displayName\": \"SubjectLogonId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubjectMachineName\",\r\n \"displayName\": \"SubjectMachineName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubjectMachineSID\",\r\n \"displayName\": \"SubjectMachineSID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubjectUserName\",\r\n \"displayName\": \"SubjectUserName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubjectUserSid\",\r\n \"displayName\": \"SubjectUserSid\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SubStatus\",\r\n \"displayName\": \"SubStatus\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TableId\",\r\n \"displayName\": \"TableId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetAccount\",\r\n \"displayName\": \"TargetAccount\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetDomainName\",\r\n \"displayName\": \"TargetDomainName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetInfo\",\r\n \"displayName\": \"TargetInfo\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetLogonGuid\",\r\n \"displayName\": \"TargetLogonGuid\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetLogonId\",\r\n \"displayName\": \"TargetLogonId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetServerName\",\r\n \"displayName\": \"TargetServerName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetSid\",\r\n \"displayName\": \"TargetSid\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetUser\",\r\n \"displayName\": \"TargetUser\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetUserName\",\r\n \"displayName\": \"TargetUserName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TargetUserSid\",\r\n \"displayName\": \"TargetUserSid\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TemplateContent\",\r\n \"displayName\": \"TemplateContent\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TemplateDSObjectFQDN\",\r\n \"displayName\": \"TemplateDSObjectFQDN\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TemplateInternalName\",\r\n \"displayName\": \"TemplateInternalName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TemplateOID\",\r\n \"displayName\": \"TemplateOID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TemplateSchemaVersion\",\r\n \"displayName\": \"TemplateSchemaVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TemplateVersion\",\r\n \"displayName\": \"TemplateVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TokenElevationType\",\r\n \"displayName\": \"TokenElevationType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TransmittedServices\",\r\n \"displayName\": \"TransmittedServices\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UserAccountControl\",\r\n \"displayName\": \"UserAccountControl\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UserParameters\",\r\n \"displayName\": \"UserParameters\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UserPrincipalName\",\r\n \"displayName\": \"UserPrincipalName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UserWorkstations\",\r\n \"displayName\": \"UserWorkstations\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Workstation\",\r\n \"displayName\": \"Workstation\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"WorkstationName\",\r\n \"displayName\": \"WorkstationName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"StorageAccount\",\r\n \"displayName\": \"StorageAccount\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\",\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AzureTableName\",\r\n \"displayName\": \"AzureTableName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SecurityEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ApplicationName\",\r\n \"displayName\": \"ApplicationName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ApplicationTypeName\",\r\n \"displayName\": \"ApplicationTypeName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ApplicationTypeVersion\",\r\n \"displayName\": \"ApplicationTypeVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricOperationalEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UpgradeDomains\",\r\n \"displayName\": \"UpgradeDomains\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricOperationalEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ServiceTypeName\",\r\n \"displayName\": \"ServiceTypeName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PartitionId\",\r\n \"displayName\": \"PartitionId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricOperationalEvent\",\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ActorType\",\r\n \"displayName\": \"ActorType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ActorId\",\r\n \"displayName\": \"ActorId\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ActorIdKind\",\r\n \"displayName\": \"ActorIdKind\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IsStateful\",\r\n \"displayName\": \"IsStateful\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ReplicaOrInstanceId\",\r\n \"displayName\": \"ReplicaOrInstanceId\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NodeName\",\r\n \"displayName\": \"NodeName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NodeId\",\r\n \"displayName\": \"NodeId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CountOfWaitingMethodCalls\",\r\n \"displayName\": \"CountOfWaitingMethodCalls\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MethodName\",\r\n \"displayName\": \"MethodName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MethodSignature\",\r\n \"displayName\": \"MethodSignature\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MethodExecutionTimeTicks\",\r\n \"displayName\": \"MethodExecutionTimeTicks\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Exception\",\r\n \"displayName\": \"Exception\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SaveStateExecutionTimeTicks\",\r\n \"displayName\": \"SaveStateExecutionTimeTicks\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ReplicaId\",\r\n \"displayName\": \"ReplicaId\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableActorEvent\",\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SlowCancellationTimeMillis\",\r\n \"displayName\": \"SlowCancellationTimeMillis\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"WasCanceled\",\r\n \"displayName\": \"WasCanceled\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ActualCancellationTimeMillis\",\r\n \"displayName\": \"ActualCancellationTimeMillis\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InstanceId\",\r\n \"displayName\": \"InstanceId\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"ServiceFabricReliableServiceEvent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_SourceHealthServiceId\",\r\n \"displayName\": \"SCSM_SourceHealthServiceId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ActualCost\",\r\n \"displayName\": \"SCSM_ActualCost\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ActualDowntimeEndDate\",\r\n \"displayName\": \"SCSM_ActualDowntimeEndDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ActualDowntimeStartDate\",\r\n \"displayName\": \"SCSM_ActualDowntimeStartDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ActualEndDate\",\r\n \"displayName\": \"SCSM_ActualEndDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ActualStartDate\",\r\n \"displayName\": \"SCSM_ActualStartDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ActualWork\",\r\n \"displayName\": \"SCSM_ActualWork\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Classification\",\r\n \"displayName\": \"SCSM_Classification\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ClosedDate\",\r\n \"displayName\": \"SCSM_ClosedDate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ContactMethod\",\r\n \"displayName\": \"SCSM_ContactMethod\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_CreatedDate\",\r\n \"displayName\": \"SCSM_CreatedDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Description\",\r\n \"displayName\": \"SCSM_Description\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_DisplayName\",\r\n \"displayName\": \"SCSM_DisplayName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Escalated\",\r\n \"displayName\": \"SCSM_Escalated\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_FirstAssignedDate\",\r\n \"displayName\": \"SCSM_FirstAssignedDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_FirstResponseDate\",\r\n \"displayName\": \"SCSM_FirstResponseDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_HasCreatedKnowledgeArticle\",\r\n \"displayName\": \"SCSM_HasCreatedKnowledgeArticle\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ID\",\r\n \"displayName\": \"SCSM_ID\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Impact\",\r\n \"displayName\": \"SCSM_Impact\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_IsDowntime\",\r\n \"displayName\": \"SCSM_IsDowntime\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_IsParent\",\r\n \"displayName\": \"SCSM_IsParent\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_LastModifiedSource\",\r\n \"displayName\": \"SCSM_LastModifiedSource\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_NeedsKnowledgeArticle\",\r\n \"displayName\": \"SCSM_NeedsKnowledgeArticle\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_PlannedCost\",\r\n \"displayName\": \"SCSM_PlannedCost\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_PlannedWork\",\r\n \"displayName\": \"SCSM_PlannedWork\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Priority\",\r\n \"displayName\": \"SCSM_Priority\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_RequiredBy\",\r\n \"displayName\": \"SCSM_RequiredBy\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ResolutionCategory\",\r\n \"displayName\": \"SCSM_ResolutionCategory\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ResolutionDescription\",\r\n \"displayName\": \"SCSM_ResolutionDescription\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ResolvedDate\",\r\n \"displayName\": \"SCSM_ResolvedDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ScheduledDowntimeEndDate\",\r\n \"displayName\": \"SCSM_ScheduledDowntimeEndDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ScheduledDowntimeStartDate\",\r\n \"displayName\": \"SCSM_ScheduledDowntimeStartDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ScheduledEndDate\",\r\n \"displayName\": \"SCSM_ScheduledEndDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ScheduledStartDate\",\r\n \"displayName\": \"SCSM_ScheduledStartDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Source\",\r\n \"displayName\": \"SCSM_Source\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Status\",\r\n \"displayName\": \"SCSM_Status\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_TargetResolutionTime\",\r\n \"displayName\": \"SCSM_TargetResolutionTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_TierQueue\",\r\n \"displayName\": \"SCSM_TierQueue\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Title\",\r\n \"displayName\": \"SCSM_Title\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Urgency\",\r\n \"displayName\": \"SCSM_Urgency\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_UserInput\",\r\n \"displayName\": \"SCSM_UserInput\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Name\",\r\n \"displayName\": \"SCSM_Name\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_Path\",\r\n \"displayName\": \"SCSM_Path\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_FullName\",\r\n \"displayName\": \"SCSM_FullName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_LastModified\",\r\n \"displayName\": \"SCSM_LastModified\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_TimeAdded\",\r\n \"displayName\": \"SCSM_TimeAdded\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_LastModifiedBy\",\r\n \"displayName\": \"SCSM_LastModifiedBy\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_AffectedUser\",\r\n \"displayName\": \"SCSM_AffectedUser\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_AssignedToUser\",\r\n \"displayName\": \"SCSM_AssignedToUser\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_PrimaryOwner\",\r\n \"displayName\": \"SCSM_PrimaryOwner\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_AffectsService\",\r\n \"displayName\": \"SCSM_AffectsService\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_AboutConfigurationItem\",\r\n \"displayName\": \"SCSM_AboutConfigurationItem\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_SLO\",\r\n \"displayName\": \"SCSM_SLO\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ManagementGroupId\",\r\n \"displayName\": \"SCSM_ManagementGroupId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ODSDeliveryTime\",\r\n \"displayName\": \"SCSM_ODSDeliveryTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SCSM_ManagementGroupName\",\r\n \"displayName\": \"SCSM_ManagementGroupName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SMIncidentFactArtifact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SqlInstanceName\",\r\n \"displayName\": \"SqlInstanceName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DatabaseName\",\r\n \"displayName\": \"DatabaseName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SQLAssessmentRecommendation\",\r\n \"SQLQueryPerformanceTest\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AffectedObjectResult\",\r\n \"displayName\": \"AffectedObjectResult\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SQLAssessmentRecommendation\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QueryHash\",\r\n \"displayName\": \"QueryHash\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SQLQueryPerformanceTest\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TotalWorkerTime\",\r\n \"displayName\": \"TotalWorkerTime\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SQLQueryPerformanceTest\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AverageCPUTime\",\r\n \"displayName\": \"AverageCPUTime\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SQLQueryPerformanceTest\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ExecutionCount\",\r\n \"displayName\": \"ExecutionCount\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SQLQueryPerformanceTest\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CreationTime\",\r\n \"displayName\": \"CreationTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SQLQueryPerformanceTest\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastExecutionTime\",\r\n \"displayName\": \"LastExecutionTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SQLQueryPerformanceTest\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"QueryName\",\r\n \"displayName\": \"QueryName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"SurfaceHubDns\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ComputerName\",\r\n \"displayName\": \"ComputerName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"SurfaceHubDns\",\r\n \"SurfaceHubUserSessionFact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"EventTime\",\r\n \"displayName\": \"EventTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Syslog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Facility\",\r\n \"displayName\": \"Facility\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Syslog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SeverityLevel\",\r\n \"displayName\": \"SeverityLevel\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Syslog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProcessID\",\r\n \"displayName\": \"ProcessID\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Syslog\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"HostIP\",\r\n \"displayName\": \"HostIP\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Syslog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PreciseTimeStamp\",\r\n \"displayName\": \"PreciseTimeStamp\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Syslog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Priority_CommonForUpdate\",\r\n \"displayName\": \"Test_Priority_CommonForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Severity_CommonForUpdate\",\r\n \"displayName\": \"Test_Severity_CommonForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Source_CommonForUpdate\",\r\n \"displayName\": \"Test_Source_CommonForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Id_CommonForUpdate\",\r\n \"displayName\": \"Test_Id_CommonForUpdate\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Name_CommonForUpdate\",\r\n \"displayName\": \"Test_Name_CommonForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_IsMonitor_CommonForUpdate\",\r\n \"displayName\": \"Test_IsMonitor_CommonForUpdate\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_RepeatCount_ForUpdate\",\r\n \"displayName\": \"Test_RepeatCount_ForUpdate\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\",\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_ResolutionState_ForUpdate\",\r\n \"displayName\": \"Test_ResolutionState_ForUpdate\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\",\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_State_CommonForUpdate\",\r\n \"displayName\": \"Test_State_CommonForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_TimeRaised_CommonForUpdate\",\r\n \"displayName\": \"Test_TimeRaised_CommonForUpdate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_TimeLastModified_CommonForUpdate\",\r\n \"displayName\": \"Test_ModifiedAt_CommonForUpdate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Key1_CommonForUpdate\",\r\n \"displayName\": \"Test_Key1_CommonForUpdate\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"TestCommonAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RecordStruct\",\r\n \"displayName\": \"RecordStruct\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"TestFlashMEvent\",\r\n \"TestFlashWERBackdated\",\r\n \"TestFlashWERBackdated1\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Record\",\r\n \"displayName\": \"Record\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"TestFlashMEvent\",\r\n \"TestFlashWERBackdated\",\r\n \"TestFlashWERBackdated1\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ParamExecutableName\",\r\n \"displayName\": \"ParamExecutableName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestFlashMEvent\",\r\n \"TestFlashWERBackdated\",\r\n \"TestFlashWERBackdated1\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TheProcessName\",\r\n \"displayName\": \"TheProcessName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestFlashMEvent\",\r\n \"TestFlashWERBackdated\",\r\n \"TestFlashWERBackdated1\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Priority_ForUpdate\",\r\n \"displayName\": \"Test_Priority_ForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Severity_ForUpdate\",\r\n \"displayName\": \"Test_Severity_ForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Source_ForUpdate\",\r\n \"displayName\": \"Test_Source_ForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Id_ForUpdate\",\r\n \"displayName\": \"Test_Id_ForUpdate\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Name_ForUpdate\",\r\n \"displayName\": \"Test_Name_ForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_IsMonitor_ForUpdate\",\r\n \"displayName\": \"Test_IsMonitor_ForUpdate\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_State_ForUpdate\",\r\n \"displayName\": \"Test_State_ForUpdate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_TimeRaised_ForUpdate\",\r\n \"displayName\": \"Test_TimeRaised_ForUpdate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_TimeLastModified_ForUpdate\",\r\n \"displayName\": \"Test_ModifiedAt_ForUpdate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Test_Alert_Key1_ForUpdate\",\r\n \"displayName\": \"Test_Key1_ForUpdate\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"TestUpdatAlertfact\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SourceComputerId\",\r\n \"displayName\": \"SourceComputerId\",\r\n \"type\": \"Guid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Update\",\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"displayName\": \"Title\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MSRCSeverity\",\r\n \"displayName\": \"MSRCSeverity\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Classification\",\r\n \"displayName\": \"Classification\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"PublishedDate\",\r\n \"displayName\": \"PublishedDate\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UpdateState\",\r\n \"displayName\": \"UpdateState\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"UpdateID\",\r\n \"displayName\": \"UpdateID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RevisionNumber\",\r\n \"displayName\": \"RevisionNumber\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Optional\",\r\n \"displayName\": \"Optional\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RebootBehavior\",\r\n \"displayName\": \"RebootBehavior\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MSRCBulletinID\",\r\n \"displayName\": \"MSRCBulletinID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Approved\",\r\n \"displayName\": \"Approved\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ApprovalSource\",\r\n \"displayName\": \"ApprovalSource\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InstallTimePredictionSeconds\",\r\n \"displayName\": \"InstallTimePredictionSeconds\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InstallTimeDeviationRangeSeconds\",\r\n \"displayName\": \"InstallTimeDeviationRangeSeconds\",\r\n \"type\": \"Double\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"InstallTimeAvailable\",\r\n \"displayName\": \"InstallTimeAvailable\",\r\n \"type\": \"Bool\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"Update\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastUpdateUTC\",\r\n \"displayName\": \"LastUpdateUTC\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DaysSinceLastUpdate\",\r\n \"displayName\": \"DaysSinceLastUpdate\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"DaysSinceLastUpdateBucket\",\r\n \"displayName\": \"DaysSinceLastUpdateBucket\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AutomaticUpdateEnabled\",\r\n \"displayName\": \"AutomaticUpdateEnabled\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AutomaticUpdateValue\",\r\n \"displayName\": \"AutomaticUpdateValue\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"WindowsUpdateAgentVersion\",\r\n \"displayName\": \"WindowsUpdateAgentVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateAgent\",\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"WSUSServer\",\r\n \"displayName\": \"WSUSServer\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateAgent\",\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OSVersion\",\r\n \"displayName\": \"OSVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateAgent\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastUpdateApplied\",\r\n \"displayName\": \"LastUpdateApplied\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OldestMissingSecurityUpdateInDays\",\r\n \"displayName\": \"OldestMissingSecurityUpdateInDays\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OldestMissingSecurityUpdateBucket\",\r\n \"displayName\": \"OldestMissingSecurityUpdateBucket\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"WindowsUpdateSetting\",\r\n \"displayName\": \"WindowsUpdateSetting\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OsVersion\",\r\n \"displayName\": \"OsVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"NETRuntimeVersion\",\r\n \"displayName\": \"NETRuntimeVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CriticalUpdatesCategoryMissingCount\",\r\n \"displayName\": \"CriticalUpdatesMissing\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SecurityUpdatesCategoryMissingCount\",\r\n \"displayName\": \"SecurityUpdatesMissing\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"OtherCategoryMissingCount\",\r\n \"displayName\": \"OtherUpdatesMissing\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TotalMissingCount\",\r\n \"displayName\": \"TotalUpdatesMissing\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"UpdateSummary\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FileUri\",\r\n \"displayName\": \"FileUri\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FileOffset\",\r\n \"displayName\": \"FileOffset\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"displayName\": \"Date\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"displayName\": \"Time\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"sSiteName\",\r\n \"displayName\": \"sSiteName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"sComputerName\",\r\n \"displayName\": \"sComputerName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"sIP\",\r\n \"displayName\": \"sIP\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csMethod\",\r\n \"displayName\": \"csMethod\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csUriStem\",\r\n \"displayName\": \"csUriStem\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csUriQuery\",\r\n \"displayName\": \"csUriQuery\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"sPort\",\r\n \"displayName\": \"sPort\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csUserName\",\r\n \"displayName\": \"csUserName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"cIP\",\r\n \"displayName\": \"cIP\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csVersion\",\r\n \"displayName\": \"csVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csUserAgent\",\r\n \"displayName\": \"csUserAgent\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csCookie\",\r\n \"displayName\": \"csCookie\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csReferer\",\r\n \"displayName\": \"csReferer\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csHost\",\r\n \"displayName\": \"csHost\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"scStatus\",\r\n \"displayName\": \"scStatus\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"scSubStatus\",\r\n \"displayName\": \"scSubStatus\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"scWin32Status\",\r\n \"displayName\": \"scWin32Status\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"scBytes\",\r\n \"displayName\": \"scBytes\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"csBytes\",\r\n \"displayName\": \"csBytes\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TimeTaken\",\r\n \"displayName\": \"TimeTaken\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"MaliciousIP\",\r\n \"displayName\": \"MaliciousIP\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IndicatorThreatType\",\r\n \"displayName\": \"IndicatorThreatType\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TLPLevel\",\r\n \"displayName\": \"TLPLevel\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Confidence\",\r\n \"displayName\": \"Confidence\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FirstReportedDateTime\",\r\n \"displayName\": \"FirstReportedDateTime\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LastReportedDateTime\",\r\n \"displayName\": \"LastReportedDateTime\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IsActive\",\r\n \"displayName\": \"IsActive\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ReportReferenceLink\",\r\n \"displayName\": \"ReportReferenceLink\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"AdditionalInformation\",\r\n \"displayName\": \"AdditionalInformation\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"W3CIISLog\",\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"RoleInstance\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"W3CIISLog\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"CommunicationDirection\",\r\n \"displayName\": \"CommunicationDirection\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FirewallAction\",\r\n \"displayName\": \"FirewallAction\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RemoteIP\",\r\n \"displayName\": \"RemoteIP\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WindowsFirewall\",\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"FullDestinationAddress\",\r\n \"displayName\": \"FullDestinationAddress\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RequestSizeInBytes\",\r\n \"displayName\": \"RequestSizeInBytes\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Info\",\r\n \"displayName\": \"Info\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WindowsFirewall\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SessionStartTime\",\r\n \"displayName\": \"SessionStartTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SessionEndTime\",\r\n \"displayName\": \"SessionEndTime\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LocalIP\",\r\n \"displayName\": \"LocalIP\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LocalSubnet\",\r\n \"displayName\": \"LocalSubnet\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LocalMAC\",\r\n \"displayName\": \"LocalMAC\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LocalPortNumber\",\r\n \"displayName\": \"LocalPortNumber\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RemoteMAC\",\r\n \"displayName\": \"RemoteMAC\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"RemotePortNumber\",\r\n \"displayName\": \"RemotePortNumber\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SessionID\",\r\n \"displayName\": \"SessionID\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SequenceNumber\",\r\n \"displayName\": \"SequenceNumber\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SessionState\",\r\n \"displayName\": \"SessionState\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SentBytes\",\r\n \"displayName\": \"SentBytes\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ReceivedBytes\",\r\n \"displayName\": \"ReceivedBytes\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"TotalBytes\",\r\n \"displayName\": \"TotalBytes\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ProtocolName\",\r\n \"displayName\": \"ProtocolName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IPVersion\",\r\n \"displayName\": \"IPVersion\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"SentPackets\",\r\n \"displayName\": \"SentPackets\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ReceivedPackets\",\r\n \"displayName\": \"ReceivedPackets\",\r\n \"type\": \"BigInt\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ApplicationProtocol\",\r\n \"displayName\": \"ApplicationProtocol\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"ApplicationServiceName\",\r\n \"displayName\": \"ApplicationServiceName\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LatencyMilliseconds\",\r\n \"displayName\": \"LatencyMilliseconds\",\r\n \"type\": \"Int\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LatencySamplingTimeStamp\",\r\n \"displayName\": \"LatencySamplingTimeStamp\",\r\n \"type\": \"DateTime\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"LatencySamplingFailureRate\",\r\n \"displayName\": \"LatencySamplingFailureRate\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": false,\r\n \"ownerType\": [\r\n \"WireData\"\r\n ],\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"displayName\": \"Type\",\r\n \"type\": \"string\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": true,\r\n \"display\": true,\r\n \"ownerType\": null,\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"displayName\": null,\r\n \"type\": \"uuid\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": false,\r\n \"hidden\": true,\r\n \"display\": false,\r\n \"ownerType\": null,\r\n \"extraction\": null\r\n },\r\n {\r\n \"name\": \"IPScanDST_CF_724003043\",\r\n \"displayName\": \"IPScanDST_CF\",\r\n \"type\": \"String\",\r\n \"indexed\": true,\r\n \"stored\": true,\r\n \"facet\": true,\r\n \"hidden\": false,\r\n \"display\": true,\r\n \"ownerType\": [\r\n \"Syslog\"\r\n ],\r\n \"extraction\": {\r\n \"type\": \"Flash\",\r\n \"xmlProgram\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"readableProgram\": \"Substring(RegSubstr(v, new RegularExpression(), new RegularExpression(new Token(new Regex(\\\"[0-9]+(\\\\\\\\,[0-9]{3})*(\\\\\\\\.[0-9]+)?\\\", RegexOptions.Compiled), \\\"Number\\\", 104, false), new Token(new Regex(\\\"\\\\\\\\.\\\", RegexOptions.Compiled), \\\"Dot\\\", 107, true), new Token(new Regex(\\\"[0-9]+(\\\\\\\\,[0-9]{3})*(\\\\\\\\.[0-9]+)?\\\", RegexOptions.Compiled), \\\"Number\\\", 104, false)), new RegularExpression(new Token(new Regex(\\\"\\\\\\\\p{Zs}+\\\", RegexOptions.Compiled), \\\"WhiteSpace\\\", 106, false), new Token(new Regex(\\\"[-.\\\\\\\\p{Lu}\\\\\\\\p{Ll}0-9]+\\\", RegexOptions.Compiled), \\\"Alphanumeric\\\", 105, false), new Token(new Regex(\\\"=\\\", RegexOptions.Compiled), \\\"Equal\\\", 107, true)), -1))\",\r\n \"sourceType\": \"Syslog\",\r\n \"sourceField\": \"Message\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "177833" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "86e568c2-bd07-4084-a31c-d6ce9c693549" + ], + "x-ms-correlation-request-id": [ + "86e568c2-bd07-4084-a31c-d6ce9c693549" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151218T191047Z:86e568c2-bd07-4084-a31c-d6ce9c693549" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 18 Dec 2015 19:10:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "df1ec963-d784-4d11-a779-1b3eeb9ecb78" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSearchResultsAndUpdate.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSearchResultsAndUpdate.json new file mode 100644 index 000000000000..43911642cfce --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanGetSearchResultsAndUpdate.json @@ -0,0 +1,140 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OI-Default-East-US/providers/Microsoft.OperationalInsights/workspaces/rasha/search?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JLURlZmF1bHQtRWFzdC1VUy9wcm92aWRlcnMvTWljcm9zb2Z0Lk9wZXJhdGlvbmFsSW5zaWdodHMvd29ya3NwYWNlcy9yYXNoYS9zZWFyY2g/YXBpLXZlcnNpb249MjAxNS0wMy0yMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"top\": 25,\r\n \"query\": \"*\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "34" + ], + "x-ms-client-request-id": [ + "c44059b3-7e9b-4987-a11c-6e2e634427de" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OI-Default-East-US/providers/Microsoft.OperationalInsights/workspaces/rasha/search/6b3ab1f5-640f-403a-9351-ac03bca7e29d\",\r\n \"__metadata\": {\r\n \"resultType\": \"raw\",\r\n \"total\": 49796124,\r\n \"top\": 25,\r\n \"RequestId\": \"6b3ab1f5-640f-403a-9351-ac03bca7e29d\",\r\n \"CoreResponses\": [],\r\n \"CoreSummaries\": [\r\n {\r\n \"Status\": \"Pending\",\r\n \"NumberOfDocuments\": 211176680\r\n }\r\n ],\r\n \"Status\": \"Pending\",\r\n \"NumberOfDocuments\": 211176680,\r\n \"StartTime\": \"2015-12-18T19:09:52.0789777Z\",\r\n \"LastUpdated\": \"2015-12-18T19:09:52.6102371Z\",\r\n \"ETag\": \"635860625926102371\",\r\n \"sort\": [\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"order\": \"desc\"\r\n }\r\n ],\r\n \"requestTime\": 855\r\n },\r\n \"value\": [\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T13:08:19Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.59.234.11\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.59.234.11_0_9213_2015-12-18T13:08:19.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 6,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"24837d7b-479a-b005-0d05-bbaf7ce304d4\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 71,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T16:31:46Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.222.112.26\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.222.112.26_0_11039_2015-12-18T16:31:46.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 7,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"0b5c1365-3d61-1941-69f5-c2b40db5f063\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 31,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T18:19:55Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58463,\r\n \"RemoteIP\": \"40.121.91.215\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 443,\r\n \"SessionID\": \"10.177.104.13_58463_40.121.91.215_443_12146_2015-12-18T18:19:55.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 602,\r\n \"TotalBytes\": 602,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 620,\r\n \"ProcessName\": \"C:\\\\Program Files\\\\Microsoft Monitoring Agent\\\\Agent\\\\HealthService.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"25.0%\",\r\n \"id\": \"c5659bc6-5eb4-6dde-bbae-93b9b8b428e6\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 46,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"HTTPS\",\r\n \"ApplicationServiceName\": \"https\",\r\n \"ProcessExe_CF\": \"HealthService.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:00:03Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:12Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58763,\r\n \"RemoteIP\": \"40.121.91.215\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 443,\r\n \"SessionID\": \"10.177.104.13_58763_40.121.91.215_443_12623_2015-12-18T19:00:03.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 903,\r\n \"TotalBytes\": 903,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 6,\r\n \"ProcessID\": 620,\r\n \"ProcessName\": \"C:\\\\Program Files\\\\Microsoft Monitoring Agent\\\\Agent\\\\HealthService.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"25.0%\",\r\n \"id\": \"a155c47c-f71b-5eff-d093-9912ca465e1e\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 6,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"HTTPS\",\r\n \"ApplicationServiceName\": \"https\",\r\n \"ProcessExe_CF\": \"HealthService.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:00:44Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:05:45Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 500,\r\n \"RemoteIP\": \"10.161.32.38\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 500,\r\n \"SessionID\": \"10.177.104.13_500_10.161.32.38_500_12633_2015-12-18T19:00:44.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 104,\r\n \"TotalBytes\": 104,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 1,\r\n \"ProcessID\": 1108,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\svchost.exe\",\r\n \"LatencyMilliseconds\": 20,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"dea6f73d-843e-476c-6c89-a80aa8c85300\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 2,\r\n \"SessionState\": \"UDP - N/A\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"ISAKMP\",\r\n \"ApplicationServiceName\": \"isakmp\",\r\n \"ProcessExe_CF\": \"svchost.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:04:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:05:36Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58776,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 52709,\r\n \"SessionID\": \"10.177.104.13_58776_10.219.0.214_52709_12643_2015-12-18T19:04:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 40,\r\n \"TotalBytes\": 40,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 2,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"e27ee708-694b-6ea9-51e6-3f7753dcf975\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 2,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:04:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:05:36Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58777,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 135,\r\n \"SessionID\": \"10.177.104.13_58777_10.219.0.214_135_12644_2015-12-18T19:04:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 40,\r\n \"TotalBytes\": 40,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 2,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"979a971b-b0d7-1daf-5ffe-df693cada290\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 1,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"EPMAP\",\r\n \"ApplicationServiceName\": \"epmap\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:04:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:05:36Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58778,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 49156,\r\n \"SessionID\": \"10.177.104.13_58778_10.219.0.214_49156_12645_2015-12-18T19:04:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 40,\r\n \"TotalBytes\": 40,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 2,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"7a46b719-781c-7144-7d79-67fb6e21f20c\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 2,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:06:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58779,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 52709,\r\n \"SessionID\": \"10.177.104.13_58779_10.219.0.214_52709_12646_2015-12-18T19:06:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 308,\r\n \"TotalBytes\": 308,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 3,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"db2c2623-cebb-d739-625d-1847d97e012b\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 0,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:06:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58780,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 135,\r\n \"SessionID\": \"10.177.104.13_58780_10.219.0.214_135_12647_2015-12-18T19:06:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 340,\r\n \"TotalBytes\": 340,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 3,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"33a43aa1-7fd2-2cfa-39ec-d6b1225c031b\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 0,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"EPMAP\",\r\n \"ApplicationServiceName\": \"epmap\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:06:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58781,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 49156,\r\n \"SessionID\": \"10.177.104.13_58781_10.219.0.214_49156_12648_2015-12-18T19:06:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 372,\r\n \"TotalBytes\": 372,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 3,\r\n \"ProcessID\": 4316,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\wbem\\\\wmiprvse.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"fdcd4731-6ca9-4c00-35fe-f208e8048687\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 0,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"wmiprvse.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:06Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 62943,\r\n \"RemoteIP\": \"157.54.21.15\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 49155,\r\n \"SessionID\": \"10.177.104.13_62943_157.54.21.15_49155_0_2015-12-17T09:26:06.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 7092,\r\n \"TotalBytes\": 7092,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 35,\r\n \"ProcessID\": 6664,\r\n \"ProcessName\": \"C:\\\\Program Files\\\\Microsoft Monitoring Agent\\\\Agent\\\\MonitoringHost.exe\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"dbf0721d-1e1e-f56e-b23a-829606315bfe\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 975,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"MonitoringHost.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:08Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.54.21.15\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.54.21.15_0_4_2015-12-17T09:26:08.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"de71685d-1d89-20ad-737a-25a088fe43e3\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 228,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:27Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.161.32.38\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.161.32.38_0_14_2015-12-17T09:26:27.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 20,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"b003a868-ae5c-a4de-137d-7c104a7af2a4\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 227,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:29Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.59.236.165\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.59.236.165_0_15_2015-12-17T09:26:29.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 1784,\r\n \"ProcessName\": \"TrustedInstaller\",\r\n \"LatencyMilliseconds\": 6,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"00b19a00-81a3-ad20-ca70-65d8266eae8e\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 228,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"TrustedInstaller\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:38Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.219.0.214_0_19_2015-12-17T09:26:38.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"5268bc99-f718-f1f6-555d-665cabef54f2\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 228,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:38Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:09Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 137,\r\n \"RemoteIP\": \"157.54.14.154\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 137,\r\n \"SessionID\": \"10.177.104.13_137_157.54.14.154_137_22_2015-12-17T09:26:38.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 64,\r\n \"TotalBytes\": 64,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 1,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"25599900-f1b5-9ac3-7695-74313e5e4686\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 1119,\r\n \"SessionState\": \"UDP - N/A\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"NBTNS\",\r\n \"ApplicationServiceName\": \"netbios-ns\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:38Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:09Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 137,\r\n \"RemoteIP\": \"157.54.14.179\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 137,\r\n \"SessionID\": \"10.177.104.13_137_157.54.14.179_137_23_2015-12-17T09:26:38.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 64,\r\n \"TotalBytes\": 64,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 1,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"6f3bfd8a-5eff-62e2-1bdf-13238e01687e\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 1119,\r\n \"SessionState\": \"UDP - N/A\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"NBTNS\",\r\n \"ApplicationServiceName\": \"netbios-ns\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:38Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:09Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 137,\r\n \"RemoteIP\": \"157.54.14.163\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 137,\r\n \"SessionID\": \"10.177.104.13_137_157.54.14.163_137_24_2015-12-17T09:26:38.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 64,\r\n \"TotalBytes\": 64,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 1,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"620510bd-3875-f81c-5409-e3b7eb25740d\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 1119,\r\n \"SessionState\": \"UDP - N/A\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"NBTNS\",\r\n \"ApplicationServiceName\": \"netbios-ns\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:41Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.184.232.13\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.184.232.13_0_25_2015-12-17T09:26:41.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"2ac1228a-bd44-8eb9-486b-cb75c27e1e7f\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:41Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.54.14.154\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.54.14.154_0_26_2015-12-17T09:26:41.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"71acccf6-60ef-b909-c3b5-db90ebb2e30d\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:41Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.54.14.179\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.54.14.179_0_27_2015-12-17T09:26:41.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"455e83c5-f377-c457-4d19-fcfb3e417e62\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:41Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.54.14.163\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.54.14.163_0_28_2015-12-17T09:26:41.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"db311c8c-48ef-4088-f850-df507551f482\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:52Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.170.4.135\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.170.4.135_0_33_2015-12-17T09:26:52.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 7,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"82b53876-5fbd-9f44-69a4-1b7d71cd70b4\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:27:48Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.161.32.10\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.161.32.10_0_44_2015-12-17T09:27:48.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 20,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"ff7d103d-7f6d-e925-7cd7-8f94bd7028b6\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "d74ca007-d4e5-4579-be16-b5f86f4662a3" + ], + "x-ms-correlation-request-id": [ + "d74ca007-d4e5-4579-be16-b5f86f4662a3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151218T190951Z:d74ca007-d4e5-4579-be16-b5f86f4662a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 18 Dec 2015 19:09:51 GMT" + ], + "Location": [ + "https://https//api-dogfood.resources.windows-int.net/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OI-Default-East-US/providers/Microsoft.OperationalInsights/workspaces/rasha/search?api-version=2015-03-20/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OI-Default-East-US/providers/Microsoft.OperationalInsights/workspaces/rasha/search/6b3ab1f5-640f-403a-9351-ac03bca7e29d&api-version=2015-03-20" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OI-Default-East-US/providers/Microsoft.OperationalInsights/workspaces/rasha/search/6b3ab1f5-640f-403a-9351-ac03bca7e29d?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGYxZWM5NjMtZDc4NC00ZDExLWE3NzktMWIzZWViOWVjYjc4L3Jlc291cmNlZ3JvdXBzL09JLURlZmF1bHQtRWFzdC1VUy9wcm92aWRlcnMvTWljcm9zb2Z0Lk9wZXJhdGlvbmFsSW5zaWdodHMvd29ya3NwYWNlcy9yYXNoYS9zZWFyY2gvNmIzYWIxZjUtNjQwZi00MDNhLTkzNTEtYWMwM2JjYTdlMjlkP2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9882af1e-7041-4dd5-90ec-c3416c111b31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OI-Default-East-US/providers/Microsoft.OperationalInsights/workspaces/rasha/search/6b3ab1f5-640f-403a-9351-ac03bca7e29d\",\r\n \"__metadata\": {\r\n \"resultType\": \"raw\",\r\n \"total\": 49796124,\r\n \"top\": 25,\r\n \"partialResults\": true,\r\n \"RequestId\": \"6b3ab1f5-640f-403a-9351-ac03bca7e29d\",\r\n \"CoreResponses\": [],\r\n \"CoreSummaries\": [\r\n {\r\n \"Status\": \"Pending\",\r\n \"NumberOfDocuments\": 185821085\r\n },\r\n {\r\n \"Status\": \"Error\",\r\n \"NumberOfDocuments\": 25355595\r\n }\r\n ],\r\n \"Status\": \"Pending\",\r\n \"NumberOfDocuments\": 211176680,\r\n \"StartTime\": \"2015-12-18T19:09:52.0789777Z\",\r\n \"LastUpdated\": \"2015-12-18T19:09:56.6884741Z\",\r\n \"ETag\": \"635860625966884741\",\r\n \"sort\": [\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"order\": \"desc\"\r\n }\r\n ],\r\n \"requestTime\": 983\r\n },\r\n \"value\": [\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T13:08:19Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.59.234.11\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.59.234.11_0_9213_2015-12-18T13:08:19.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 6,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"24837d7b-479a-b005-0d05-bbaf7ce304d4\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 71,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T16:31:46Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.222.112.26\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.222.112.26_0_11039_2015-12-18T16:31:46.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 7,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"0b5c1365-3d61-1941-69f5-c2b40db5f063\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 31,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T18:19:55Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58463,\r\n \"RemoteIP\": \"40.121.91.215\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 443,\r\n \"SessionID\": \"10.177.104.13_58463_40.121.91.215_443_12146_2015-12-18T18:19:55.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 602,\r\n \"TotalBytes\": 602,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 620,\r\n \"ProcessName\": \"C:\\\\Program Files\\\\Microsoft Monitoring Agent\\\\Agent\\\\HealthService.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"25.0%\",\r\n \"id\": \"c5659bc6-5eb4-6dde-bbae-93b9b8b428e6\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 46,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"HTTPS\",\r\n \"ApplicationServiceName\": \"https\",\r\n \"ProcessExe_CF\": \"HealthService.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:00:03Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:12Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58763,\r\n \"RemoteIP\": \"40.121.91.215\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 443,\r\n \"SessionID\": \"10.177.104.13_58763_40.121.91.215_443_12623_2015-12-18T19:00:03.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 903,\r\n \"TotalBytes\": 903,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 6,\r\n \"ProcessID\": 620,\r\n \"ProcessName\": \"C:\\\\Program Files\\\\Microsoft Monitoring Agent\\\\Agent\\\\HealthService.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"25.0%\",\r\n \"id\": \"a155c47c-f71b-5eff-d093-9912ca465e1e\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 6,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"HTTPS\",\r\n \"ApplicationServiceName\": \"https\",\r\n \"ProcessExe_CF\": \"HealthService.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:00:44Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:05:45Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 500,\r\n \"RemoteIP\": \"10.161.32.38\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 500,\r\n \"SessionID\": \"10.177.104.13_500_10.161.32.38_500_12633_2015-12-18T19:00:44.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 104,\r\n \"TotalBytes\": 104,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 1,\r\n \"ProcessID\": 1108,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\svchost.exe\",\r\n \"LatencyMilliseconds\": 20,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"dea6f73d-843e-476c-6c89-a80aa8c85300\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 2,\r\n \"SessionState\": \"UDP - N/A\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"ISAKMP\",\r\n \"ApplicationServiceName\": \"isakmp\",\r\n \"ProcessExe_CF\": \"svchost.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:04:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:05:36Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58776,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 52709,\r\n \"SessionID\": \"10.177.104.13_58776_10.219.0.214_52709_12643_2015-12-18T19:04:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 40,\r\n \"TotalBytes\": 40,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 2,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"e27ee708-694b-6ea9-51e6-3f7753dcf975\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 2,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:04:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:05:36Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58777,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 135,\r\n \"SessionID\": \"10.177.104.13_58777_10.219.0.214_135_12644_2015-12-18T19:04:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 40,\r\n \"TotalBytes\": 40,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 2,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"979a971b-b0d7-1daf-5ffe-df693cada290\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 1,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"EPMAP\",\r\n \"ApplicationServiceName\": \"epmap\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:04:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:05:36Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58778,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 49156,\r\n \"SessionID\": \"10.177.104.13_58778_10.219.0.214_49156_12645_2015-12-18T19:04:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 40,\r\n \"TotalBytes\": 40,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 2,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"7a46b719-781c-7144-7d79-67fb6e21f20c\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 2,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:06:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58779,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 52709,\r\n \"SessionID\": \"10.177.104.13_58779_10.219.0.214_52709_12646_2015-12-18T19:06:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 308,\r\n \"TotalBytes\": 308,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 3,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"db2c2623-cebb-d739-625d-1847d97e012b\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 0,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:06:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58780,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 135,\r\n \"SessionID\": \"10.177.104.13_58780_10.219.0.214_135_12647_2015-12-18T19:06:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 340,\r\n \"TotalBytes\": 340,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 3,\r\n \"ProcessID\": 880,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\lsass.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"33a43aa1-7fd2-2cfa-39ec-d6b1225c031b\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Outbound\",\r\n \"SequenceNumber\": 0,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"EPMAP\",\r\n \"ApplicationServiceName\": \"epmap\",\r\n \"ProcessExe_CF\": \"lsass.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-18T19:06:11Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 58781,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 49156,\r\n \"SessionID\": \"10.177.104.13_58781_10.219.0.214_49156_12648_2015-12-18T19:06:11.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 372,\r\n \"TotalBytes\": 372,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 3,\r\n \"ProcessID\": 4316,\r\n \"ProcessName\": \"C:\\\\Windows\\\\system32\\\\wbem\\\\wmiprvse.exe\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"fdcd4731-6ca9-4c00-35fe-f208e8048687\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 0,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"wmiprvse.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:06Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 62943,\r\n \"RemoteIP\": \"157.54.21.15\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 49155,\r\n \"SessionID\": \"10.177.104.13_62943_157.54.21.15_49155_0_2015-12-17T09:26:06.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 7092,\r\n \"TotalBytes\": 7092,\r\n \"ProtocolName\": \"TCP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 35,\r\n \"ProcessID\": 6664,\r\n \"ProcessName\": \"C:\\\\Program Files\\\\Microsoft Monitoring Agent\\\\Agent\\\\MonitoringHost.exe\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"dbf0721d-1e1e-f56e-b23a-829606315bfe\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 975,\r\n \"SessionState\": \"Established\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"Unknown\",\r\n \"ProcessExe_CF\": \"MonitoringHost.exe\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:08Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.54.21.15\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.54.21.15_0_4_2015-12-17T09:26:08.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"de71685d-1d89-20ad-737a-25a088fe43e3\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 228,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:27Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.161.32.38\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.161.32.38_0_14_2015-12-17T09:26:27.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 20,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"b003a868-ae5c-a4de-137d-7c104a7af2a4\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 227,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:29Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.59.236.165\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.59.236.165_0_15_2015-12-17T09:26:29.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 1784,\r\n \"ProcessName\": \"TrustedInstaller\",\r\n \"LatencyMilliseconds\": 6,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"00b19a00-81a3-ad20-ca70-65d8266eae8e\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 228,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"TrustedInstaller\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:38Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.219.0.214\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.219.0.214_0_19_2015-12-17T09:26:38.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"5268bc99-f718-f1f6-555d-665cabef54f2\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 228,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:38Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:09Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 137,\r\n \"RemoteIP\": \"157.54.14.154\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 137,\r\n \"SessionID\": \"10.177.104.13_137_157.54.14.154_137_22_2015-12-17T09:26:38.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 64,\r\n \"TotalBytes\": 64,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 1,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"25599900-f1b5-9ac3-7695-74313e5e4686\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 1119,\r\n \"SessionState\": \"UDP - N/A\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"NBTNS\",\r\n \"ApplicationServiceName\": \"netbios-ns\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:38Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:09Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 137,\r\n \"RemoteIP\": \"157.54.14.179\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 137,\r\n \"SessionID\": \"10.177.104.13_137_157.54.14.179_137_23_2015-12-17T09:26:38.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 64,\r\n \"TotalBytes\": 64,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 1,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"6f3bfd8a-5eff-62e2-1bdf-13238e01687e\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 1119,\r\n \"SessionState\": \"UDP - N/A\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"NBTNS\",\r\n \"ApplicationServiceName\": \"netbios-ns\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:38Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:09Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 137,\r\n \"RemoteIP\": \"157.54.14.163\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 137,\r\n \"SessionID\": \"10.177.104.13_137_157.54.14.163_137_24_2015-12-17T09:26:38.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 64,\r\n \"TotalBytes\": 64,\r\n \"ProtocolName\": \"UDP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 1,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"620510bd-3875-f81c-5409-e3b7eb25740d\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Inbound\",\r\n \"SequenceNumber\": 1119,\r\n \"SessionState\": \"UDP - N/A\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"NBTNS\",\r\n \"ApplicationServiceName\": \"netbios-ns\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:41Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.184.232.13\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.184.232.13_0_25_2015-12-17T09:26:41.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"2ac1228a-bd44-8eb9-486b-cb75c27e1e7f\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:41Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.54.14.154\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.54.14.154_0_26_2015-12-17T09:26:41.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"71acccf6-60ef-b909-c3b5-db90ebb2e30d\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:41Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.54.14.179\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.54.14.179_0_27_2015-12-17T09:26:41.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 1,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"455e83c5-f377-c457-4d19-fcfb3e417e62\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:41Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"157.54.14.163\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_157.54.14.163_0_28_2015-12-17T09:26:41.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 4,\r\n \"ProcessName\": \"System\",\r\n \"LatencyMilliseconds\": 0,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"db311c8c-48ef-4088-f850-df507551f482\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"System\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:26:52Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:10Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.170.4.135\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.170.4.135_0_33_2015-12-17T09:26:52.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 7,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"82b53876-5fbd-9f44-69a4-1b7d71cd70b4\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n },\r\n {\r\n \"Computer\": \"OMPERFSRV92.redmond.corp.microsoft.com\",\r\n \"MG\": \"00000000-0000-0000-0000-000000000001\",\r\n \"ManagementGroupName\": \"AOI-54bd7c21-cc2a-40fb-898f-ffd15604043e\",\r\n \"SourceSystem\": \"OpsManager\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\",\r\n \"SessionStartTime\": \"2015-12-17T09:27:48Z\",\r\n \"SessionEndTime\": \"2015-12-18T19:06:11Z\",\r\n \"LocalIP\": \"10.177.104.13\",\r\n \"LocalSubnet\": \"10.177.104.0/23\",\r\n \"LocalMAC\": \"78-e3-b5-08-7b-ba\",\r\n \"LocalPortNumber\": 0,\r\n \"RemoteIP\": \"10.161.32.10\",\r\n \"RemoteMAC\": \"e8-65-49-cd-41-c1\",\r\n \"RemotePortNumber\": 0,\r\n \"SessionID\": \"10.177.104.13_0_10.161.32.10_0_44_2015-12-17T09:27:48.000Z\",\r\n \"SentBytes\": 0,\r\n \"ReceivedBytes\": 120,\r\n \"TotalBytes\": 120,\r\n \"ProtocolName\": \"ICMP\",\r\n \"SentPackets\": 0,\r\n \"ReceivedPackets\": 4,\r\n \"ProcessID\": 0,\r\n \"ProcessName\": \"Idle\",\r\n \"LatencyMilliseconds\": 20,\r\n \"LatencySamplingTimeStamp\": \"2015-12-18T11:06:08Z\",\r\n \"LatencySamplingFailureRate\": \"0.0%\",\r\n \"id\": \"ff7d103d-7f6d-e925-7cd7-8f94bd7028b6\",\r\n \"Type\": \"WireData\",\r\n \"Direction\": \"Unknown\",\r\n \"SequenceNumber\": 226,\r\n \"SessionState\": \"Unknown\",\r\n \"IPVersion\": \"IPv4\",\r\n \"ApplicationProtocol\": \"Unknown\",\r\n \"ApplicationServiceName\": \"N/A\",\r\n \"ProcessExe_CF\": \"Idle\",\r\n \"__metadata\": {\r\n \"Type\": \"WireData\",\r\n \"TimeGenerated\": \"2015-12-18T19:06:24.28Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30028" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "cf8c77a2-6db6-4bdd-b24b-6fa393a43b3f" + ], + "x-ms-correlation-request-id": [ + "cf8c77a2-6db6-4bdd-b24b-6fa393a43b3f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151218T191000Z:cf8c77a2-6db6-4bdd-b24b-6fa393a43b3f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 18 Dec 2015 19:09:59 GMT" + ], + "Location": [ + "https://https//api-dogfood.resources.windows-int.net/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourcegroups/OI-Default-East-US/providers/Microsoft.OperationalInsights/workspaces/rasha/search/6b3ab1f5-640f-403a-9351-ac03bca7e29d?api-version=2015-03-20/subscriptions/df1ec963-d784-4d11-a779-1b3eeb9ecb78/resourceGroups/OI-Default-East-US/providers/Microsoft.OperationalInsights/workspaces/rasha/search/6b3ab1f5-640f-403a-9351-ac03bca7e29d&api-version=2015-03-20" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "df1ec963-d784-4d11-a779-1b3eeb9ecb78" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.StorageInsightOperationsTests/CanCreateUpdateDeleteStorageInsight.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.StorageInsightOperationsTests/CanCreateUpdateDeleteStorageInsight.json new file mode 100644 index 000000000000..ae7b70379f2d --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.StorageInsightOperationsTests/CanCreateUpdateDeleteStorageInsight.json @@ -0,0 +1,695 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "3b43ec98-7693-4539-9a51-2b64660991b7" + ], + "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/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest4795\",\r\n \"name\": \"OIAutoRest4795\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "0c218ccd-e540-4d0a-9a4c-56733a401c34" + ], + "x-ms-correlation-request-id": [ + "0c218ccd-e540-4d0a-9a4c-56733a401c34" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234703Z:0c218ccd-e540-4d0a-9a4c-56733a401c34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n },\r\n \"name\": \"AzTest1971\",\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "125" + ], + "x-ms-client-request-id": [ + "38b89330-4c69-44b2-8f82-345de788b78e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"fdc7a587-27c7-4edb-b386-b290e9f4b451\",\r\n \"portalUrl\": \"https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest4795%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest1971\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest4795/providers/microsoft.operationalinsights/workspaces/aztest1971\",\r\n \"name\": \"AzTest1971\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "757" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "ae397f18-2da1-435a-bba7-7ba2c40e9d31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "569046c7-33d3-44c9-b183-e9209b3859b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234706Z:569046c7-33d3-44c9-b183-e9209b3859b8" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"fdc7a587-27c7-4edb-b386-b290e9f4b451\",\r\n \"portalUrl\": \"https://eus.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest4795%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest1971\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest4795/providers/microsoft.operationalinsights/workspaces/aztest1971\",\r\n \"name\": \"AzTest1971\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "da17926b-7e8e-4a8b-9588-6cc6252ccec6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "98113518-bd08-4b73-9c08-05f07ca963a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234736Z:98113518-bd08-4b73-9c08-05f07ca963a6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971/storageInsightConfigs/AzTestSI6390?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzEvc3RvcmFnZUluc2lnaHRDb25maWdzL0F6VGVzdFNJNjM5MD9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"containers\": [\r\n \"wad-iis-logfiles\"\r\n ],\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\",\r\n \"LinuxSyslogVer2v0\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\",\r\n \"key\": \"1234\"\r\n }\r\n },\r\n \"name\": \"AzTestSI6390\",\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "433" + ], + "x-ms-client-request-id": [ + "82da00c6-2f00-4575-a074-032d761243a1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"containers\": [\r\n \"wad-iis-logfiles\"\r\n ],\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\",\r\n \"LinuxSyslogVer2v0\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\"\r\n },\r\n \"status\": {\r\n \"state\": \"OK\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest4795/providers/microsoft.operationalinsights/workspaces/aztest1971/storageinsightconfigs/AzTestSI6390\",\r\n \"name\": \"AzTestSI6390\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "363d47c4-12aa-4d57-b905-4bba3d0d7c97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a0522f74-8ce1-4f7d-a137-2d218f2ac6e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234737Z:a0522f74-8ce1-4f7d-a137-2d218f2ac6e5" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971/storageInsightConfigs/AzTestSI6390?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzEvc3RvcmFnZUluc2lnaHRDb25maWdzL0F6VGVzdFNJNjM5MD9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9156d2ae-3b64-4795-b588-92ba85a26f7e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"containers\": [\r\n \"wad-iis-logfiles\"\r\n ],\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\",\r\n \"LinuxSyslogVer2v0\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\"\r\n },\r\n \"status\": {\r\n \"state\": \"OK\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest4795/providers/microsoft.operationalinsights/workspaces/aztest1971/storageinsightconfigs/AzTestSI6390\",\r\n \"name\": \"AzTestSI6390\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "44f82d29-d454-4b25-a1c4-4a0a6267241c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "11536852-e9c2-408b-a135-628d0b2c5bc6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234737Z:11536852-e9c2-408b-a135-628d0b2c5bc6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971/storageInsightConfigs/AzTestSI6390?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzEvc3RvcmFnZUluc2lnaHRDb25maWdzL0F6VGVzdFNJNjM5MD9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96fd0fa2-aaa4-4983-9e7c-6faf98ec4e47" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "fe1d92ed-272a-442b-a0c0-d9762479dadb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "e937dde9-30ff-4608-bf35-7437177f1195" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234738Z:e937dde9-30ff-4608-bf35-7437177f1195" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971/storageInsightConfigs/AzTestSI6883?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzEvc3RvcmFnZUluc2lnaHRDb25maWdzL0F6VGVzdFNJNjg4Mz9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\",\r\n \"LinuxSyslogVer2v0\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\",\r\n \"key\": \"1234\"\r\n }\r\n },\r\n \"name\": \"AzTestSI6883\",\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "378" + ], + "x-ms-client-request-id": [ + "562e620a-851c-49b1-b4ab-5d45018ef0b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"containers\": [],\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\",\r\n \"LinuxSyslogVer2v0\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\"\r\n },\r\n \"status\": {\r\n \"state\": \"OK\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest4795/providers/microsoft.operationalinsights/workspaces/aztest1971/storageinsightconfigs/AzTestSI6883\",\r\n \"name\": \"AzTestSI6883\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "668" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "a98958db-f0ea-4b0e-8736-49ea158b8f82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "7dfc1d8e-8a9f-4b3a-ada7-a49252f341cb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234737Z:7dfc1d8e-8a9f-4b3a-ada7-a49252f341cb" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971/storageInsightConfigs/AzTestSI6883?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzEvc3RvcmFnZUluc2lnaHRDb25maWdzL0F6VGVzdFNJNjg4Mz9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"containers\": [\r\n \"wad-iis-logfiles\"\r\n ],\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\",\r\n \"key\": \"9876\"\r\n },\r\n \"status\": {\r\n \"state\": \"OK\"\r\n }\r\n },\r\n \"name\": \"AzTestSI6883\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "426" + ], + "x-ms-client-request-id": [ + "cc93df47-db04-41b0-be42-84310f4b6776" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"containers\": [\r\n \"wad-iis-logfiles\"\r\n ],\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\"\r\n },\r\n \"status\": {\r\n \"state\": \"OK\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest4795/providers/microsoft.operationalinsights/workspaces/aztest1971/storageinsightconfigs/AzTestSI6883\",\r\n \"name\": \"AzTestSI6883\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2d2b1166-d62c-44ca-b713-bd1bad74852a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "18e35256-f6fe-4196-9645-ff68b032bd6f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234738Z:18e35256-f6fe-4196-9645-ff68b032bd6f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971/storageInsightConfigs?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzEvc3RvcmFnZUluc2lnaHRDb25maWdzP2FwaS12ZXJzaW9uPTIwMTUtMDMtMjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79f13d03-04d2-4a9c-8263-9611d130c17a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"containers\": [\r\n \"wad-iis-logfiles\"\r\n ],\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\",\r\n \"LinuxSyslogVer2v0\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\"\r\n },\r\n \"status\": {\r\n \"state\": \"OK\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest4795/providers/microsoft.operationalinsights/workspaces/aztest1971/storageinsightconfigs/AzTestSI6390\",\r\n \"name\": \"AzTestSI6390\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"containers\": [],\r\n \"tables\": [\r\n \"WADWindowsEventLogsTable\",\r\n \"LinuxSyslogVer2v0\"\r\n ],\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/microsoft.storage/storageaccounts/AzTestFakeSA197\"\r\n },\r\n \"status\": {\r\n \"state\": \"OK\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest4795/providers/microsoft.operationalinsights/workspaces/aztest1971/storageinsightconfigs/AzTestSI6883\",\r\n \"name\": \"AzTestSI6883\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "01edebc0-1294-4858-a298-fb81fea74047" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "106823af-d37c-4246-be53-197fb414f00e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234737Z:106823af-d37c-4246-be53-197fb414f00e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest4795/providers/Microsoft.OperationalInsights/workspaces/AzTest1971/storageInsightConfigs/AzTestSI6390?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q0Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDE5NzEvc3RvcmFnZUluc2lnaHRDb25maWdzL0F6VGVzdFNJNjM5MD9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e359c61-3c6e-4574-9648-e8ed0069ce2c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:47:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "60ff9b1c-2edb-41cd-b0d1-6723730f2e2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1b758865-5813-418d-a8c2-953935690f6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T234738Z:1b758865-5813-418d-a8c2-953935690f6b" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CanCreateUpdateDeleteStorageInsight": [ + "OIAutoRest4795", + "AzTest1971", + "AzTestSI6390", + "AzTestFakeSA197", + "AzTestSI6883" + ] + }, + "Variables": { + "SubscriptionId": "a6383be3-f0e8-4968-93d5-10f2625f5bb5" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.StorageInsightOperationsTests/StorageInsightCreateFailsWithoutWorkspace.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.StorageInsightOperationsTests/StorageInsightCreateFailsWithoutWorkspace.json new file mode 100644 index 000000000000..88e9710c1a0e --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.StorageInsightOperationsTests/StorageInsightCreateFailsWithoutWorkspace.json @@ -0,0 +1,137 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest1012?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QxMDEyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "aa5f2e04-30a8-4c98-92dd-58cfbff568e6" + ], + "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/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest1012\",\r\n \"name\": \"OIAutoRest1012\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:48:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "e01c632f-4384-44ef-b6ef-6d3bd3249c4c" + ], + "x-ms-correlation-request-id": [ + "e01c632f-4384-44ef-b6ef-6d3bd3249c4c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T234827Z:e01c632f-4384-44ef-b6ef-6d3bd3249c4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest1012/providers/Microsoft.OperationalInsights/workspaces/AzTest5680/storageInsightConfigs/AzTestSI2330?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QxMDEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDU2ODAvc3RvcmFnZUluc2lnaHRDb25maWdzL0F6VGVzdFNJMjMzMD9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest1012/providers/microsoft.storage/storageaccounts/AzTestFakeSA8410\",\r\n \"key\": \"1234\"\r\n }\r\n },\r\n \"name\": \"AzTestSI2330\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "304" + ], + "x-ms-client-request-id": [ + "11b9c8da-7abc-4aca-b594-934bdeed1f09" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.OperationalInsights/workspaces/AzTest5680' under resource group 'OIAutoRest1012' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 23:48:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "979eabda-d308-428f-a2ea-7900378bde1d" + ], + "x-ms-correlation-request-id": [ + "979eabda-d308-428f-a2ea-7900378bde1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T234828Z:979eabda-d308-428f-a2ea-7900378bde1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "StorageInsightCreateFailsWithoutWorkspace": [ + "OIAutoRest1012", + "AzTestSI2330", + "AzTestFakeSA8410", + "AzTest5680" + ] + }, + "Variables": { + "SubscriptionId": "a6383be3-f0e8-4968-93d5-10f2625f5bb5" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanCreateListDeleteWorkspace.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanCreateListDeleteWorkspace.json new file mode 100644 index 000000000000..164cd09c43b2 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanCreateListDeleteWorkspace.json @@ -0,0 +1,209 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6735?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2NzM1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "f25f3a7d-cae9-4d3f-bb79-0551e8fef880" + ], + "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/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6735\",\r\n \"name\": \"OIAutoRest6735\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:24:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "e49e0705-45d2-4f8a-b792-527bc83ce8a4" + ], + "x-ms-correlation-request-id": [ + "e49e0705-45d2-4f8a-b792-527bc83ce8a4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T222426Z:e49e0705-45d2-4f8a-b792-527bc83ce8a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6735/providers/Microsoft.OperationalInsights/workspaces/AzTest9178?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2NzM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDkxNzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n }\r\n },\r\n \"name\": \"AzTest9178\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "172" + ], + "x-ms-client-request-id": [ + "311cd47d-8057-46c6-9c70-351ae918f996" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"313e15be-4858-4033-adce-cdd4f545cd29\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest6735%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest9178\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest6735/providers/microsoft.operationalinsights/workspaces/aztest9178\",\r\n \"name\": \"AzTest9178\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "804" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:24:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "b37ef0ba-5521-4d35-948b-546402d68b18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "597" + ], + "x-ms-correlation-request-id": [ + "91030498-295d-4e8d-ab9d-c3c271e4041e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T222437Z:91030498-295d-4e8d-ab9d-c3c271e4041e" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6735/providers/Microsoft.OperationalInsights/workspaces/AzTest9178?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2NzM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDkxNzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"313e15be-4858-4033-adce-cdd4f545cd29\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest6735%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest9178\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest6735/providers/microsoft.operationalinsights/workspaces/aztest9178\",\r\n \"name\": \"AzTest9178\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:25:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "24e5766c-767c-4ec4-af25-9fe61f3d011c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "40c89895-5ecb-4185-bb7c-f0f5ab695e2a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T222507Z:40c89895-5ecb-4185-bb7c-f0f5ab695e2a" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CanCreateListDeleteWorkspace": [ + "OIAutoRest6735", + "AzTest9178" + ] + }, + "Variables": { + "SubscriptionId": "a6383be3-f0e8-4968-93d5-10f2625f5bb5" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanEnableDisableListIntelligencePacks.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanEnableDisableListIntelligencePacks.json new file mode 100644 index 000000000000..8ecef8e743ff --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanEnableDisableListIntelligencePacks.json @@ -0,0 +1,653 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "aeaed079-2730-4720-9df7-3a64746dc4b6" + ], + "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/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest5212\",\r\n \"name\": \"OIAutoRest5212\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:33:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a9391bc3-4d39-4f68-81c1-305715bfc4f1" + ], + "x-ms-correlation-request-id": [ + "a9391bc3-4d39-4f68-81c1-305715bfc4f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223338Z:a9391bc3-4d39-4f68-81c1-305715bfc4f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n }\r\n },\r\n \"name\": \"AzTest5239\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "172" + ], + "x-ms-client-request-id": [ + "54e6c37f-7596-4865-88cc-d3204372697a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"fdeff28b-ae43-4f90-8261-b252c653b99b\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest5212%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest5239\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest5212/providers/microsoft.operationalinsights/workspaces/aztest5239\",\r\n \"name\": \"AzTest5239\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "804" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:33:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "1f9f564b-3279-4225-a637-aa55843643d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "774e75ba-f6fc-46e2-83af-239984580318" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223349Z:774e75ba-f6fc-46e2-83af-239984580318" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"fdeff28b-ae43-4f90-8261-b252c653b99b\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest5212%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest5239\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest5212/providers/microsoft.operationalinsights/workspaces/aztest5239\",\r\n \"name\": \"AzTest5239\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:34:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "59587e0e-eca9-4e00-9ec5-f37045dfa754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "b94e348a-3cf5-44cb-b7ae-59222a93bbb1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223419Z:b94e348a-3cf5-44cb-b7ae-59222a93bbb1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks/ChangeTracking/Enable?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3MvQ2hhbmdlVHJhY2tpbmcvRW5hYmxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60774aef-ccff-4cc8-bc8a-a688df1f261f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:34:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b29cafa-b5c0-4d57-951f-cb172e846756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "63b2d0f0-9867-4737-89bd-b673a8a513e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223420Z:63b2d0f0-9867-4737-89bd-b673a8a513e9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks/SiteRecovery/Enable?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3MvU2l0ZVJlY292ZXJ5L0VuYWJsZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9767166-6c1c-4b4b-a01a-3505ada99627" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:34:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd3c5d5d-ea99-4ff2-b583-0c3bd57243c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "4c669ff9-0eeb-47c1-9448-ae7d9fb4957c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223420Z:4c669ff9-0eeb-47c1-9448-ae7d9fb4957c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33be0407-cc0a-451e-a646-80307121c427" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"name\": \"CapacityPerformance\",\r\n \"enabled\": false,\r\n \"displayname\": \"Capacity and Performance\"\r\n },\r\n {\r\n \"name\": \"Security\",\r\n \"enabled\": false,\r\n \"displayname\": \"Security and Audit\"\r\n },\r\n {\r\n \"name\": \"Updates\",\r\n \"enabled\": false,\r\n \"displayname\": \"Update Management\"\r\n },\r\n {\r\n \"name\": \"AntiMalware\",\r\n \"enabled\": false,\r\n \"displayname\": \"Antimalware Assessment\"\r\n },\r\n {\r\n \"name\": \"LogManagement\",\r\n \"enabled\": true,\r\n \"displayname\": \"Log Management\"\r\n },\r\n {\r\n \"name\": \"ChangeTracking\",\r\n \"enabled\": true,\r\n \"displayname\": \"Change Tracking\"\r\n },\r\n {\r\n \"name\": \"SQLAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"SQL Assessment\"\r\n },\r\n {\r\n \"name\": \"SCOMAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"System Center Operations Manager Assessment (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Assessment\"\r\n },\r\n {\r\n \"name\": \"AlertManagement\",\r\n \"enabled\": false,\r\n \"displayname\": \"Alert Management\"\r\n },\r\n {\r\n \"name\": \"AzureAutomation\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Automation\"\r\n },\r\n {\r\n \"name\": \"WireData\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data\"\r\n },\r\n {\r\n \"name\": \"SiteRecovery\",\r\n \"enabled\": true,\r\n \"displayname\": \"Azure Site Recovery\"\r\n },\r\n {\r\n \"name\": \"Backup\",\r\n \"enabled\": false,\r\n \"displayname\": \"Backup\"\r\n },\r\n {\r\n \"name\": \"SurfaceHub\",\r\n \"enabled\": false,\r\n \"displayname\": \"Surface Hub\"\r\n },\r\n {\r\n \"name\": \"NetworkMonitoring\",\r\n \"enabled\": false,\r\n \"displayname\": \"Network Performance Monitor (Preview)\"\r\n },\r\n {\r\n \"name\": \"Containers\",\r\n \"enabled\": false,\r\n \"displayname\": \"Containers\"\r\n },\r\n {\r\n \"name\": \"AzureNetworking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Networking Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADReplication\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Replication Status\"\r\n },\r\n {\r\n \"name\": \"Office365\",\r\n \"enabled\": false,\r\n \"displayname\": \"Office 365 (Preview)\"\r\n },\r\n {\r\n \"name\": \"CompatibilityAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Upgrade Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"KeyVault\",\r\n \"enabled\": false,\r\n \"displayname\": \"Key Vault (Preview)\"\r\n },\r\n {\r\n \"name\": \"ServiceFabric\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Fabric\"\r\n },\r\n {\r\n \"name\": \"DnsAnalytics\",\r\n \"enabled\": false,\r\n \"displayname\": \"DDI Analytics\"\r\n },\r\n {\r\n \"name\": \"ApplicationInsights\",\r\n \"enabled\": false,\r\n \"displayname\": \"Application Insights (Preview)\"\r\n },\r\n {\r\n \"name\": \"WireData2\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data 2.0\"\r\n },\r\n {\r\n \"name\": \"AgentHealthAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Agent Health \"\r\n },\r\n {\r\n \"name\": \"AzureActivity\",\r\n \"enabled\": false,\r\n \"displayname\": \"Activity Log Analytics\"\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n \"enabled\": false,\r\n \"displayname\": \"HDInsight Monitoring\"\r\n },\r\n {\r\n \"name\": \"VMware\",\r\n \"enabled\": false,\r\n \"displayname\": \"VMware (Preview)\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:34:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "5343ac27-225a-4d4e-b51b-5763feadbb6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "6cfded15-355b-465a-884e-120cbfa23c31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223420Z:6cfded15-355b-465a-884e-120cbfa23c31" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a9350af-ff87-498b-9913-0c658d1e405e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"name\": \"CapacityPerformance\",\r\n \"enabled\": false,\r\n \"displayname\": \"Capacity and Performance\"\r\n },\r\n {\r\n \"name\": \"Security\",\r\n \"enabled\": false,\r\n \"displayname\": \"Security and Audit\"\r\n },\r\n {\r\n \"name\": \"Updates\",\r\n \"enabled\": false,\r\n \"displayname\": \"Update Management\"\r\n },\r\n {\r\n \"name\": \"AntiMalware\",\r\n \"enabled\": false,\r\n \"displayname\": \"Antimalware Assessment\"\r\n },\r\n {\r\n \"name\": \"LogManagement\",\r\n \"enabled\": true,\r\n \"displayname\": \"Log Management\"\r\n },\r\n {\r\n \"name\": \"ChangeTracking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Change Tracking\"\r\n },\r\n {\r\n \"name\": \"SQLAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"SQL Assessment\"\r\n },\r\n {\r\n \"name\": \"SCOMAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"System Center Operations Manager Assessment (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Assessment\"\r\n },\r\n {\r\n \"name\": \"AlertManagement\",\r\n \"enabled\": false,\r\n \"displayname\": \"Alert Management\"\r\n },\r\n {\r\n \"name\": \"AzureAutomation\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Automation\"\r\n },\r\n {\r\n \"name\": \"WireData\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data\"\r\n },\r\n {\r\n \"name\": \"SiteRecovery\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Site Recovery\"\r\n },\r\n {\r\n \"name\": \"Backup\",\r\n \"enabled\": false,\r\n \"displayname\": \"Backup\"\r\n },\r\n {\r\n \"name\": \"SurfaceHub\",\r\n \"enabled\": false,\r\n \"displayname\": \"Surface Hub\"\r\n },\r\n {\r\n \"name\": \"NetworkMonitoring\",\r\n \"enabled\": false,\r\n \"displayname\": \"Network Performance Monitor (Preview)\"\r\n },\r\n {\r\n \"name\": \"Containers\",\r\n \"enabled\": false,\r\n \"displayname\": \"Containers\"\r\n },\r\n {\r\n \"name\": \"AzureNetworking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Networking Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADReplication\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Replication Status\"\r\n },\r\n {\r\n \"name\": \"Office365\",\r\n \"enabled\": false,\r\n \"displayname\": \"Office 365 (Preview)\"\r\n },\r\n {\r\n \"name\": \"CompatibilityAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Upgrade Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"KeyVault\",\r\n \"enabled\": false,\r\n \"displayname\": \"Key Vault (Preview)\"\r\n },\r\n {\r\n \"name\": \"ServiceFabric\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Fabric\"\r\n },\r\n {\r\n \"name\": \"DnsAnalytics\",\r\n \"enabled\": false,\r\n \"displayname\": \"DDI Analytics\"\r\n },\r\n {\r\n \"name\": \"ApplicationInsights\",\r\n \"enabled\": false,\r\n \"displayname\": \"Application Insights (Preview)\"\r\n },\r\n {\r\n \"name\": \"WireData2\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data 2.0\"\r\n },\r\n {\r\n \"name\": \"AgentHealthAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Agent Health \"\r\n },\r\n {\r\n \"name\": \"AzureActivity\",\r\n \"enabled\": false,\r\n \"displayname\": \"Activity Log Analytics\"\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n \"enabled\": false,\r\n \"displayname\": \"HDInsight Monitoring\"\r\n },\r\n {\r\n \"name\": \"VMware\",\r\n \"enabled\": false,\r\n \"displayname\": \"VMware (Preview)\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:34:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "57da8628-2e38-4e4f-a604-2da40b258112" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "ed1abab8-fd98-4361-b53d-a98f605fce03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223421Z:ed1abab8-fd98-4361-b53d-a98f605fce03" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks/ChangeTracking/Disable?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3MvQ2hhbmdlVHJhY2tpbmcvRGlzYWJsZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29845e3c-038e-4cc2-be6c-d9be7350ad7b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:34:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "0f456d06-4b8e-4f6c-8d4c-2102b9317bd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "23ac909f-242c-4241-91f2-fba36b1ee64c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223421Z:23ac909f-242c-4241-91f2-fba36b1ee64c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks/SiteRecovery/Disable?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3MvU2l0ZVJlY292ZXJ5L0Rpc2FibGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa2fdc40-44f1-4c68-99a9-3f6c49c12a6a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:34:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "c34ca137-da52-4aad-977a-a9c3570453bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "f3135388-068a-4aa7-940f-71fdf5328eb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20161102T223421Z:f3135388-068a-4aa7-940f-71fdf5328eb4" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CanEnableDisableListIntelligencePacks": [ + "OIAutoRest5212", + "AzTest5239" + ] + }, + "Variables": { + "SubscriptionId": "a6383be3-f0e8-4968-93d5-10f2625f5bb5" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanPerformWorkspaceActions.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanPerformWorkspaceActions.json new file mode 100644 index 000000000000..e81799c5510b --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanPerformWorkspaceActions.json @@ -0,0 +1,568 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "cfdb4d69-0e97-4e1d-b4d0-b223fe99e81c" + ], + "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/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest3867\",\r\n \"name\": \"OIAutoRest3867\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:30:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "050058b3-7a84-4cde-8a57-d09f1d8a880f" + ], + "x-ms-correlation-request-id": [ + "050058b3-7a84-4cde-8a57-d09f1d8a880f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T223042Z:050058b3-7a84-4cde-8a57-d09f1d8a880f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/Microsoft.OperationalInsights/linkTargets?api-version=2015-03-20", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy9saW5rVGFyZ2V0cz9hcGktdmVyc2lvbj0yMDE1LTAzLTIw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af67f04d-4c6d-4005-a7fb-c43d67f14873" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:30:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b6213dc-a882-48d7-9ac1-29257627b7b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "146ac59f-a1da-46ee-ae62-54e85bfa7c5b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T223047Z:146ac59f-a1da-46ee-ae62-54e85bfa7c5b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"customerId\": \"b00fe960-7ebc-43ca-a996-a7404e31e1de\"\r\n },\r\n \"name\": \"AzTest4139\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "148" + ], + "x-ms-client-request-id": [ + "92c487a7-c221-4dc2-9a8b-980da074d21f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"Account b00fe960-7ebc-43ca-a996-a7404e31e1de is not a valid link target\",\r\n \"target\": \"CustomerId\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "137" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:30:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "0cab6ab1-ad17-4d43-b0c2-d80708d5b31d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "596" + ], + "x-ms-correlation-request-id": [ + "89d8c414-50c2-4c18-8b24-c29ef9aca121" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T223053Z:89d8c414-50c2-4c18-8b24-c29ef9aca121" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"AzTest4139\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "65" + ], + "x-ms-client-request-id": [ + "10c5fdce-6bf1-4cdc-bd0b-195dd3e078c0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"2de58464-fabb-41c4-83ed-7ad08cd960a5\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest3867%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest4139\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 0\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest3867/providers/microsoft.operationalinsights/workspaces/aztest4139\",\r\n \"name\": \"AzTest4139\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "765" + ], + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:30:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "bedd3c4c-8ded-47aa-ad64-3be5a1409e4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "595" + ], + "x-ms-correlation-request-id": [ + "1841f36e-e4fa-4146-9459-af96475e7385" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T223059Z:1841f36e-e4fa-4146-9459-af96475e7385" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"2de58464-fabb-41c4-83ed-7ad08cd960a5\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest3867%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest4139\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 0\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest3867/providers/microsoft.operationalinsights/workspaces/aztest4139\",\r\n \"name\": \"AzTest4139\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:31:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "668908cc-ced5-46ec-9784-f472f2fb8857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "67accf4b-4fe2-4334-9f08-be52774ed9d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T223129Z:67accf4b-4fe2-4334-9f08-be52774ed9d8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139/sharedKeys?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzkvc2hhcmVkS2V5cz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9d4a63b-64b7-4098-8c9b-d0f80bf2b999" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySharedKey\": \"Ap8RM7UKhXP8V4prlfaEJ41keEczLUY3Ccsf7PBCfVkUpZV8PSIxrBzwUe61HWAZMtWbDczlsSworKDxgeq2wA==\",\r\n \"secondarySharedKey\": \"/Qj3MhqCLGEah2zNPw0dGNE9k1BScnEFnp0cHPzJnKBzUGx3abaSjjEQ0VhB5YTBLiKDWyCUEe/43bmxGHXMrA==\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:31:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5", + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "ee96d685-469f-47da-9bf0-a9c61e4f2e31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "8aefb9b4-09c2-4383-9a32-31872344252d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T223130Z:8aefb9b4-09c2-4383-9a32-31872344252d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139/managementGroups?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzkvbWFuYWdlbWVudEdyb3Vwcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "021a34d0-376b-41fd-b52d-07d27a549093" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:31:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-request-id": [ + "f55e68ca-bb13-4ae2-8488-fd881c4784c1" + ], + "x-ms-correlation-request-id": [ + "f55e68ca-bb13-4ae2-8488-fd881c4784c1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T223130Z:f55e68ca-bb13-4ae2-8488-fd881c4784c1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139/usages?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzkvdXNhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ef381ad-914b-4168-9cd5-c1c623a9f7a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": {\r\n \"value\": \"DataAnalyzed\",\r\n \"localizedValue\": \"Data Analyzed\"\r\n },\r\n \"unit\": \"Bytes\",\r\n \"currentValue\": 0.0,\r\n \"limit\": 524288000.0,\r\n \"nextResetTime\": \"2016-11-03T00:00:00Z\",\r\n \"quotaPeriod\": \"P1D\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 02 Nov 2016 22:31:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-request-id": [ + "a430df24-8c00-4bac-9958-76c6862645de" + ], + "x-ms-correlation-request-id": [ + "a430df24-8c00-4bac-9958-76c6862645de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20161102T223130Z:a430df24-8c00-4bac-9958-76c6862645de" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CanPerformWorkspaceActions": [ + "OIAutoRest3867", + "AzTest4139" + ] + }, + "Variables": { + "SubscriptionId": "a6383be3-f0e8-4968-93d5-10f2625f5bb5" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json new file mode 100644 index 000000000000..87adaaedfa2d --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json @@ -0,0 +1,41 @@ +{ + "version": "1.0.0-*", + "description": "OperationalInsights.Tests Class Library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "summary": "OperationalInsights.Tests Tests.", + "tags": [ "" ], + "projectUrl": "", + "licenseUrl": "", + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "compile": "../../../../tools/DisableTestRunParallel.cs" + }, + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "imports": ["dnxcore50", "portable-net45+win8"], + "dependencies": { + "System.Diagnostics.Tracing": "4.1.0" + } + } + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.4.0-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)", + "Microsoft.Azure.ResourceManager": "1.0.0-preview", + "Microsoft.Azure.Management.OperationalInsights": "[1.0.0-preview, 2.0.0)", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.sln b/src/ResourceManagement/OperationalInsights/OperationalInsights.sln new file mode 100644 index 000000000000..74a2dbb4831b --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.sln @@ -0,0 +1,58 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.OperationalInsights", "Microsoft.Azure.Management.OperationalInsights\Microsoft.Azure.Management.OperationalInsights.xproj", "{9F94C9B6-2FFA-42C5-B1F9-57AEC6EE17B1}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "OperationalInsights.Test", "OperationalInsights.Test\OperationalInsights.Test.xproj", "{36862D74-CF80-4758-A212-EAAD501F3CCC}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime\Microsoft.Rest.ClientRuntime.xproj", "{EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure\Microsoft.Rest.ClientRuntime.Azure.xproj", "{D5296EAB-C13E-4A88-9532-BD0677D18EC9}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure.Authentication", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure.Authentication\Microsoft.Rest.ClientRuntime.Azure.Authentication.xproj", "{6319205D-BBFC-4150-BEAE-31B1C9B911DD}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\..\TestFramework\Microsoft.Azure.Test.HttpRecorder\HttpRecorder.xproj", "{5D12D45A-E55F-410E-B8AF-9DC90E81B237}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9F94C9B6-2FFA-42C5-B1F9-57AEC6EE17B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9F94C9B6-2FFA-42C5-B1F9-57AEC6EE17B1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9F94C9B6-2FFA-42C5-B1F9-57AEC6EE17B1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9F94C9B6-2FFA-42C5-B1F9-57AEC6EE17B1}.Release|Any CPU.Build.0 = Release|Any CPU + {36862D74-CF80-4758-A212-EAAD501F3CCC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {36862D74-CF80-4758-A212-EAAD501F3CCC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {36862D74-CF80-4758-A212-EAAD501F3CCC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {36862D74-CF80-4758-A212-EAAD501F3CCC}.Release|Any CPU.Build.0 = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Release|Any CPU.Build.0 = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.Build.0 = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Release|Any CPU.Build.0 = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/ResourceManagement/OperationalInsights/global.json b/src/ResourceManagement/OperationalInsights/global.json new file mode 100644 index 000000000000..08c57d9a95d5 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/global.json @@ -0,0 +1,3 @@ +{ + "projects": [ "../../ClientRuntime", "../../TestFramework", "Microsoft.Azure.Management.OperationalInsights", "OperationalInsights.Tests" ] +} \ No newline at end of file From 6179ab4d87307185a9b04099115325be78716335 Mon Sep 17 00:00:00 2001 From: "REDMOND\\xizha" Date: Fri, 18 Nov 2016 08:18:24 -0800 Subject: [PATCH 002/137] Addressed all comments from Azure team --- .../Generated/DataSourcesOperations.cs | 518 +++--- .../DataSourcesOperationsExtensions.cs | 96 +- .../Generated/IDataSourcesOperations.cs | 94 +- .../Generated/ILinkedServicesOperations.cs | 93 +- .../IOperationalInsightsManagementClient.cs | 28 +- .../Generated/ISavedSearchesOperations.cs | 158 ++ .../Generated/ISearchOperations.cs | 171 -- .../Generated/IStorageInsightsOperations.cs | 98 +- .../Generated/IWorkspacesOperations.cs | 297 ++- .../Generated/LinkedServicesOperations.cs | 602 +++--- .../LinkedServicesOperationsExtensions.cs | 119 +- .../Generated/Models/Account.cs | 63 - .../Generated/Models/CoreSummary.cs | 29 +- .../Generated/Models/DataSource.cs | 54 +- .../Generated/Models/DataSourceFilter.cs | 27 +- .../Generated/Models/DataSourceKind.cs | 29 + .../Generated/Models/EntityStatus.cs | 5 +- .../Generated/Models/IntelligencePack.cs | 15 +- .../Generated/Models/LinkTarget.cs | 61 + .../Generated/Models/LinkedService.cs | 32 +- .../Models/LinkedServiceListResult.cs | 36 + .../Generated/Models/ManagementGroup.cs | 46 +- .../Generated/Models/MetricName.cs | 15 +- .../Generated/Models/Page.cs | 22 +- .../Generated/Models/Page1.cs | 22 +- .../Generated/Models/Page2.cs | 22 +- .../Generated/Models/Resource.cs | 39 +- .../Generated/Models/SavedSearch.cs | 132 ++ .../SavedSearchCreateOrUpdateParameters.cs | 126 ++ .../Generated/Models/SavedSearchValue.cs | 83 - .../Models/SavedSearchesListResult.cs | 43 + .../Generated/Models/SchemaValue.cs | 85 - ...archCreateOrUpdateSavedSearchParameters.cs | 78 - .../Generated/Models/SearchError.cs | 14 +- .../Models/SearchGetSavedSearchResult.cs | 83 - .../Models/SearchGetSchemaResponse.cs | 22 +- .../SearchGetSearchResultsParameters.cs | 73 - .../Models/SearchGetSearchResultsResponse.cs | 63 - .../{Highlight.cs => SearchHighlight.cs} | 26 +- .../Models/SearchListSavedSearchResult.cs | 49 - .../Generated/Models/SearchMetadata.cs | 77 +- ...adataSchema.cs => SearchMetadataSchema.cs} | 24 +- .../Generated/Models/SearchParameters.cs | 73 + .../Generated/Models/SearchResultsResponse.cs | 60 + .../Generated/Models/SearchSchemaValue.cs | 99 + .../Generated/Models/SearchSort.cs | 15 +- .../Generated/Models/SharedKeys.cs | 16 +- .../Generated/Models/Sku.cs | 22 +- .../Generated/Models/SkuNameEnum.cs | 8 +- .../Generated/Models/StorageAccount.cs | 15 +- .../Generated/Models/StorageInsight.cs | 46 +- .../Generated/Models/StorageInsightStatus.cs | 12 +- .../Generated/Models/Tag.cs | 33 +- .../Generated/Models/UsageMetric.cs | 32 +- .../Generated/Models/Workspace.cs | 82 +- .../WorkspaceListManagementGroupsResult.cs | 38 + .../Generated/Models/WorkspaceListResult.cs | 35 + .../OperationalInsightsManagementClient.cs | 137 +- .../Generated/SavedSearchesOperations.cs | 1086 +++++++++++ .../SavedSearchesOperationsExtensions.cs | 244 +++ .../Generated/SearchOperations.cs | 1500 --------------- .../Generated/SearchOperationsExtensions.cs | 378 ---- .../Generated/StorageInsightsOperations.cs | 516 +++--- .../StorageInsightsOperationsExtensions.cs | 109 +- .../Generated/WorkspacesOperations.cs | 1628 ++++++++++------- .../WorkspacesOperationsExtensions.cs | 349 ++-- .../Helpers/TestHelper.cs | 16 +- .../DataSourceOperationsTests.Scenario.cs | 8 +- .../LinkedServiceOperationsTests.Scenario.cs | 7 +- .../SearchOperationsTests.Scenario.cs | 58 +- .../StorageInsightOperationsTests.Scenario.cs | 2 +- .../WorkspaceOperationsTests.Scenario .cs | 12 +- ...nCreateOrUpdateAndDeleteSavedSearches.json | 2 +- .../CanCreateListDeleteWorkspace.json | 66 +- ...CanEnableDisableListIntelligencePacks.json | 168 +- .../CanPerformWorkspaceActions.json | 162 +- 76 files changed, 5628 insertions(+), 5175 deletions(-) create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISavedSearchesOperations.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISearchOperations.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Account.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceKind.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkTarget.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedServiceListResult.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearch.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchCreateOrUpdateParameters.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchValue.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchesListResult.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SchemaValue.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchCreateOrUpdateSavedSearchParameters.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSavedSearchResult.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsParameters.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsResponse.cs rename src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/{Highlight.cs => SearchHighlight.cs} (51%) delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchListSavedSearchResult.cs rename src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/{MetadataSchema.cs => SearchMetadataSchema.cs} (51%) create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchParameters.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchResultsResponse.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSchemaValue.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListManagementGroupsResult.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListResult.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperations.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperationsExtensions.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperations.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperationsExtensions.cs diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs index caee1985e78c..283ec3dc5b25 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs @@ -1,30 +1,18 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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.OData; using Microsoft.Rest.Azure; using Models; /// /// DataSourcesOperations operations. /// - internal partial class DataSourcesOperations : IServiceOperations, IDataSourcesOperations + internal partial class DataSourcesOperations : Microsoft.Rest.IServiceOperations, IDataSourcesOperations { /// /// Initializes a new instance of the DataSourcesOperations class. @@ -32,11 +20,14 @@ internal partial class DataSourcesOperations : IServiceOperations /// Reference to the service client. /// + /// + /// Thrown when a required parameter is null + /// internal DataSourcesOperations(OperationalInsightsManagementClient client) { if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } this.Client = client; } @@ -50,16 +41,16 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// Create or update a data source. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the data source + /// Name of the Log Analytics Workspace that will contain the datasource /// - /// - /// The parameters required to create or update a data source. + /// + /// The name of the datasource resource. /// /// - /// The parameters required to create or update a data source. + /// The parameters required to create or update a datasource. /// /// /// Headers that will be added to request. @@ -67,72 +58,100 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, DataSource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, DataSource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } - if (name == null) + if (dataSourceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "name"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "dataSourceName"); } if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("name", name); + tracingParameters.Add("dataSourceName", dataSourceName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{name}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{name}", Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{dataSourceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{dataSourceName}", System.Uri.EscapeDataString(dataSourceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -158,9 +177,9 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) string _requestContent = null; 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"); + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials if (this.Client.Credentials != null) @@ -171,43 +190,43 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -217,7 +236,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -230,16 +249,16 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } // Deserialize Response @@ -248,21 +267,21 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -271,13 +290,13 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// Deletes a data source instance. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the data source. + /// Name of the Log Analytics Workspace that will contains the datasource. /// /// - /// Name of the data source. + /// Name of the datasource. /// /// /// Headers that will be added to request. @@ -285,67 +304,88 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (dataSourceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "dataSourceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "dataSourceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("dataSourceName", dataSourceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{dataSourceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{dataSourceName}", Uri.EscapeDataString(dataSourceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{dataSourceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{dataSourceName}", System.Uri.EscapeDataString(dataSourceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -378,30 +418,35 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -411,7 +456,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -420,22 +465,22 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets a data source instance. + /// Gets a datasource instance. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the data source. + /// Name of the Log Analytics Workspace that contain the the datasource. /// /// - /// Name of the data source + /// Name of the datasource /// /// /// Headers that will be added to request. @@ -443,67 +488,91 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (dataSourceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "dataSourceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "dataSourceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("dataSourceName", dataSourceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{dataSourceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{dataSourceName}", Uri.EscapeDataString(dataSourceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources/{dataSourceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{dataSourceName}", System.Uri.EscapeDataString(dataSourceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -536,43 +605,43 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -582,7 +651,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -595,21 +664,21 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -622,7 +691,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// OData parameters to apply to the operation. /// /// - /// The resource group name of the data sources. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The workspace that contains the data sources. @@ -636,50 +705,74 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListInWorkspaceWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task>> ListByWorkspaceWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (odataQuery == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "odataQuery"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "odataQuery"); } if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("skiptoken", skiptoken); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListInWorkspace", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByWorkspace", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/dataSources").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); @@ -690,25 +783,25 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) } if (skiptoken != null) { - _queryParameters.Add(string.Format("$skiptoken={0}", Uri.EscapeDataString(skiptoken))); + _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); } if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -741,43 +834,43 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -787,7 +880,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -800,21 +893,21 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -832,43 +925,52 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListInWorkspaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task>> ListByWorkspaceNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListInWorkspaceNext", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByWorkspaceNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -901,43 +1003,43 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -947,7 +1049,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -960,21 +1062,21 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs index ce17e2068374..8423aa00bcb3 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs @@ -1,18 +1,12 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - using System; - using System.Collections; - using System.Collections.Generic; - using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; + using Microsoft.Rest.Azure; + using Models; /// /// Extension methods for DataSourcesOperations. @@ -26,20 +20,20 @@ public static partial class DataSourcesOperationsExtensions /// The operations group for this extension method. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the data source + /// Name of the Log Analytics Workspace that will contain the datasource /// - /// - /// The parameters required to create or update a data source. + /// + /// The name of the datasource resource. /// /// - /// The parameters required to create or update a data source. + /// The parameters required to create or update a datasource. /// - public static DataSource CreateOrUpdate(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string name, DataSource parameters) + public static DataSource CreateOrUpdate(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName, DataSource parameters) { - return Task.Factory.StartNew(s => ((IDataSourcesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDataSourcesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, dataSourceName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -49,23 +43,23 @@ public static DataSource CreateOrUpdate(this IDataSourcesOperations operations, /// The operations group for this extension method. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the data source + /// Name of the Log Analytics Workspace that will contain the datasource /// - /// - /// The parameters required to create or update a data source. + /// + /// The name of the datasource resource. /// /// - /// The parameters required to create or update a data source. + /// The parameters required to create or update a datasource. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string name, DataSource parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName, DataSource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, dataSourceName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -78,17 +72,17 @@ public static DataSource CreateOrUpdate(this IDataSourcesOperations operations, /// The operations group for this extension method. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the data source. + /// Name of the Log Analytics Workspace that will contains the datasource. /// /// - /// Name of the data source. + /// Name of the datasource. /// public static void Delete(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName) { - Task.Factory.StartNew(s => ((IDataSourcesOperations)s).DeleteAsync(resourceGroupName, workspaceName, dataSourceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + System.Threading.Tasks.Task.Factory.StartNew(s => ((IDataSourcesOperations)s).DeleteAsync(resourceGroupName, workspaceName, dataSourceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -98,61 +92,61 @@ public static void Delete(this IDataSourcesOperations operations, string resourc /// The operations group for this extension method. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the data source. + /// Name of the Log Analytics Workspace that will contains the datasource. /// /// - /// Name of the data source. + /// Name of the datasource. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task DeleteAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, dataSourceName, null, cancellationToken).ConfigureAwait(false); } /// - /// Gets a data source instance. + /// Gets a datasource instance. /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the data source. + /// Name of the Log Analytics Workspace that contain the the datasource. /// /// - /// Name of the data source + /// Name of the datasource /// public static DataSource Get(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName) { - return Task.Factory.StartNew(s => ((IDataSourcesOperations)s).GetAsync(resourceGroupName, workspaceName, dataSourceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDataSourcesOperations)s).GetAsync(resourceGroupName, workspaceName, dataSourceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets a data source instance. + /// Gets a datasource instance. /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the data source. + /// Name of the Log Analytics Workspace that contain the the datasource. /// /// - /// Name of the data source + /// Name of the datasource /// /// /// The cancellation token. /// - public static async Task GetAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task GetAsync(this IDataSourcesOperations operations, string resourceGroupName, string workspaceName, string dataSourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, dataSourceName, null, cancellationToken).ConfigureAwait(false)) { @@ -171,7 +165,7 @@ public static DataSource Get(this IDataSourcesOperations operations, string reso /// OData parameters to apply to the operation. /// /// - /// The resource group name of the data sources. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The workspace that contains the data sources. @@ -179,9 +173,9 @@ public static DataSource Get(this IDataSourcesOperations operations, string reso /// /// Token for paging support. /// - public static IPage ListInWorkspace(this IDataSourcesOperations operations, ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string)) + public static Microsoft.Rest.Azure.IPage ListByWorkspace(this IDataSourcesOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string)) { - return Task.Factory.StartNew(s => ((IDataSourcesOperations)s).ListInWorkspaceAsync(odataQuery, resourceGroupName, workspaceName, skiptoken), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDataSourcesOperations)s).ListByWorkspaceAsync(odataQuery, resourceGroupName, workspaceName, skiptoken), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -195,7 +189,7 @@ public static DataSource Get(this IDataSourcesOperations operations, string reso /// OData parameters to apply to the operation. /// /// - /// The resource group name of the data sources. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The workspace that contains the data sources. @@ -206,9 +200,9 @@ public static DataSource Get(this IDataSourcesOperations operations, string reso /// /// The cancellation token. /// - public static async Task> ListInWorkspaceAsync(this IDataSourcesOperations operations, ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByWorkspaceAsync(this IDataSourcesOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListInWorkspaceWithHttpMessagesAsync(odataQuery, resourceGroupName, workspaceName, skiptoken, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByWorkspaceWithHttpMessagesAsync(odataQuery, resourceGroupName, workspaceName, skiptoken, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -224,9 +218,9 @@ public static DataSource Get(this IDataSourcesOperations operations, string reso /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListInWorkspaceNext(this IDataSourcesOperations operations, string nextPageLink) + public static Microsoft.Rest.Azure.IPage ListByWorkspaceNext(this IDataSourcesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IDataSourcesOperations)s).ListInWorkspaceNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDataSourcesOperations)s).ListByWorkspaceNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -242,9 +236,9 @@ public static IPage ListInWorkspaceNext(this IDataSourcesOperations /// /// The cancellation token. /// - public static async Task> ListInWorkspaceNextAsync(this IDataSourcesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByWorkspaceNextAsync(this IDataSourcesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListInWorkspaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByWorkspaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs index 2800aca6ce56..3e27b1e785e4 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs @@ -1,16 +1,9 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - using System; - using System.Collections.Generic; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; using Microsoft.Rest.Azure; using Models; @@ -23,16 +16,18 @@ public partial interface IDataSourcesOperations /// Create or update a data source. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The name of the parent workspace that will contain the data source + /// Name of the Log Analytics Workspace that will contain the + /// datasource /// - /// - /// The parameters required to create or update a data source. + /// + /// The name of the datasource resource. /// /// - /// The parameters required to create or update a data source. + /// The parameters required to create or update a datasource. /// /// /// The headers that will be added to request. @@ -40,18 +35,29 @@ public partial interface IDataSourcesOperations /// /// The cancellation token. /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, DataSource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, DataSource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Deletes a data source instance. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The name of the workspace that contains the data source. + /// Name of the Log Analytics Workspace that will contains the + /// datasource. /// /// - /// Name of the data source. + /// Name of the datasource. /// /// /// The headers that will be added to request. @@ -59,18 +65,26 @@ public partial interface IDataSourcesOperations /// /// The cancellation token. /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets a data source instance. + /// Gets a datasource instance. /// /// - /// The resource group name of the data source. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The name of the workspace that contains the data source. + /// Name of the Log Analytics Workspace that contain the the + /// datasource. /// /// - /// Name of the data source + /// Name of the datasource /// /// /// The headers that will be added to request. @@ -78,7 +92,16 @@ public partial interface IDataSourcesOperations /// /// The cancellation token. /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string dataSourceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets the first page of data source instances in a workspace with /// the link to the next page. @@ -87,7 +110,8 @@ public partial interface IDataSourcesOperations /// OData parameters to apply to the operation. /// /// - /// The resource group name of the data sources. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// /// The workspace that contains the data sources. @@ -101,7 +125,16 @@ public partial interface IDataSourcesOperations /// /// The cancellation token. /// - Task>> ListInWorkspaceWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByWorkspaceWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets the first page of data source instances in a workspace with /// the link to the next page. @@ -115,6 +148,15 @@ public partial interface IDataSourcesOperations /// /// The cancellation token. /// - Task>> ListInWorkspaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByWorkspaceNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs index 278e73047821..71260ccdf653 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs @@ -1,15 +1,9 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; @@ -22,13 +16,14 @@ public partial interface ILinkedServicesOperations /// Create or update a linked service. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The name of the parent workspace that will contain the linked - /// service + /// Name of the Log Analytics Workspace that will contain the + /// linkedServices resource /// - /// + /// /// The parameters required to create or update a linked service. /// /// @@ -40,15 +35,26 @@ public partial interface ILinkedServicesOperations /// /// The cancellation token. /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, LinkedService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, LinkedService parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Deletes a linked service instance. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The name of the workspace that contains the linked service. + /// Name of the Log Analytics Workspace that will contain the + /// linkedServices resource /// /// /// Name of the linked service. @@ -59,15 +65,23 @@ public partial interface ILinkedServicesOperations /// /// The cancellation token. /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets a linked service instance. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The name of the workspace that contains the linked service. + /// Name of the Log Analytics Workspace that will contain the + /// linkedServices resource /// /// /// Name of the linked service. @@ -78,30 +92,26 @@ public partial interface ILinkedServicesOperations /// /// The cancellation token. /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets the first page of linked services instances in a workspace - /// with the link to the next page. + /// Gets the linked services instances in a workspace. /// /// - /// The resource group name of the linked services. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The workspace that contains the linked services. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the first page of linked services instances in a workspace - /// with the link to the next page. - /// - /// - /// The NextLink from the previous successful call to List operation. + /// Name of the Log Analytics Workspace that will contain the linked + /// services. /// /// /// The headers that will be added to request. @@ -109,6 +119,15 @@ public partial interface ILinkedServicesOperations /// /// The cancellation token. /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IOperationalInsightsManagementClient.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IOperationalInsightsManagementClient.cs index 655009db8962..edfb5569dc15 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IOperationalInsightsManagementClient.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IOperationalInsightsManagementClient.cs @@ -1,15 +1,9 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - using System; - using System.Collections.Generic; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; @@ -17,27 +11,27 @@ namespace Microsoft.Azure.Management.OperationalInsights /// /// .Net client wrapper for the REST API for Azure Operational Insights /// - public partial interface IOperationalInsightsManagementClient : IDisposable + public partial interface IOperationalInsightsManagementClient : System.IDisposable { /// /// The base URI of the service. /// - Uri BaseUri { get; set; } + System.Uri BaseUri { get; set; } /// /// Gets or sets json serialization settings. /// - JsonSerializerSettings SerializationSettings { get; } + Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - JsonSerializerSettings DeserializationSettings { get; } + Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } /// - /// Gets Azure subscription credentials. + /// Credentials needed for the client to connect to Azure. /// - ServiceClientCredentials Credentials { get; } + Microsoft.Rest.ServiceClientCredentials Credentials { get; } /// /// Gets subscription credentials which uniquely identify Microsoft @@ -58,8 +52,8 @@ public partial interface IOperationalInsightsManagementClient : IDisposable int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } @@ -85,9 +79,9 @@ public partial interface IOperationalInsightsManagementClient : IDisposable IStorageInsightsOperations StorageInsights { get; } /// - /// Gets the ISearchOperations. + /// Gets the ISavedSearchesOperations. /// - ISearchOperations Search { get; } + ISavedSearchesOperations SavedSearches { get; } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISavedSearchesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISavedSearchesOperations.cs new file mode 100644 index 000000000000..af50c15b1cf0 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISavedSearchesOperations.cs @@ -0,0 +1,158 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// SavedSearchesOperations operations. + /// + public partial interface ISavedSearchesOperations + { + /// + /// Deletes the specified saved search in a given workspace. + /// + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// Name of the saved search. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Creates or updates a saved search for a given workspace. + /// + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the saved search. + /// + /// + /// The parameters required to save a search. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, SavedSearchCreateOrUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Gets the specified saved search for a given workspace. + /// + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the saved search. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Gets the saved searches for a given Log Analytics Workspace + /// + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Gets the results from a saved search for a given workspace. + /// + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The name of the saved search. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISearchOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISearchOperations.cs deleted file mode 100644 index 1d0dc9745ff9..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISearchOperations.cs +++ /dev/null @@ -1,171 +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.OperationalInsights -{ - 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; - - /// - /// SearchOperations operations. - /// - public partial interface ISearchOperations - { - /// - /// Deletes the specified saved search in a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task DeleteSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Creates or updates a saved search for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The parameters required to save a search. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task CreateOrUpdateSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, SearchCreateOrUpdateSavedSearchParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the specified saved search for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the saved searches for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> ListSavedSearchesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the results from a saved search for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetSavedSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the schema for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetSchemaWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the search results for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The parameters required to execute a search query. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchGetSearchResultsParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets updated search results for a given search query. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the search that will have results updated. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> UpdateSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string id, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs index 18f230cb4b2b..5ed31d83dacb 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs @@ -1,15 +1,9 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; @@ -22,14 +16,15 @@ public partial interface IStorageInsightsOperations /// Create or update a storage insight. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The name of the parent workspace that will contain the storage - /// insight + /// Log Analytics Workspace name that will contain the + /// storageInsightsConfigs resource /// - /// - /// The parameters required to create or update a storage insight. + /// + /// Name of the storageInsightsConfigs resource /// /// /// The parameters required to create or update a storage insight. @@ -40,18 +35,28 @@ public partial interface IStorageInsightsOperations /// /// The cancellation token. /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, StorageInsight parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, StorageInsight parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets a storage insight instance. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// /// The name of the workspace that contains the storage insight. /// /// - /// The name of the storage insight + /// Name of the storageInsightsConfigs resource /// /// /// The headers that will be added to request. @@ -59,18 +64,29 @@ public partial interface IStorageInsightsOperations /// /// The cancellation token. /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Deletes a storage insight instance. + /// Deletes a storageInsightsConfigs resource /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The name of the workspace that contains the storage insight. + /// Log Analytics Workspace name that will contain the + /// storageInsightsConfigs resource /// /// - /// The name of the storage insight. + /// Name of the storageInsightsConfigs resource /// /// /// The headers that will be added to request. @@ -78,16 +94,23 @@ public partial interface IStorageInsightsOperations /// /// The cancellation token. /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets the first page of storage insight instances in a workspace - /// with the link to the next page. + /// Lists the storage insight instances within a workspace /// /// - /// The resource group name of the storage insights. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// The workspace that contains the storage insights. + /// Log Analytics Workspace name that will contain the + /// storageInsightsConfigs resource /// /// /// The headers that will be added to request. @@ -95,10 +118,18 @@ public partial interface IStorageInsightsOperations /// /// The cancellation token. /// - Task>> ListInWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets the first page of storage insight instances in a workspace - /// with the link to the next page. + /// Lists the storage insight instances within a workspace /// /// /// The NextLink from the previous successful call to List operation. @@ -109,6 +140,15 @@ public partial interface IStorageInsightsOperations /// /// The cancellation token. /// - Task>> ListInWorkspaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByWorkspaceNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs index fe22d768b318..257057714b7d 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs @@ -1,15 +1,9 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; @@ -22,10 +16,11 @@ public partial interface IWorkspacesOperations /// Disables an intelligence back for a given workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The name of the intelligence pack to be disabled. @@ -36,15 +31,22 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task DisableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DisableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Enables an intelligence back for a given workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The name of the intelligence pack to be enabled. @@ -55,16 +57,23 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task EnableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task EnableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Lists all the intelligence packs possible and whether they are /// enabled or disabled for a given workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The headers that will be added to request. @@ -72,15 +81,25 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task>> ListIntelligencePacksWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListIntelligencePacksWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets the shared keys for a workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// - /// A unique workspace name. + /// Name of the Log Analytics Workspace. /// /// /// The headers that will be added to request. @@ -88,12 +107,22 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task> GetSharedKeysWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetSharedKeysWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets a list of usage metrics for a workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// /// The name of the workspace. @@ -104,12 +133,22 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets a list of management groups connected to a workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// /// The name of the workspace. @@ -120,13 +159,22 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task>> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets the first page of workspace instances in a resource group - /// with the link to the next page. + /// Gets workspaces in a resource group. /// /// - /// The resource group name of the workspaces. + /// The name of the resource group to get. The name is case + /// insensitive. /// /// /// The headers that will be added to request. @@ -134,10 +182,18 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task>> ListInResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets the first page of workspace instances in a subscription with - /// the link to the next page. + /// Gets the workspaces in a subscription. /// /// /// The headers that will be added to request. @@ -145,15 +201,27 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task>> ListInSubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Deletes a workspace instance. + /// Create or update a workspace. /// /// /// The resource group name of the workspace. /// /// - /// A unique workspace instance name. + /// The name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. /// /// /// The headers that will be added to request. @@ -161,15 +229,24 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Workspace parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets a workspace instance. + /// Deletes a workspace instance. /// /// /// The resource group name of the workspace. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The headers that will be added to request. @@ -177,18 +254,21 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Create or update a workspace. + /// Gets a workspace instance. /// /// /// The resource group name of the workspace. /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The parameters required to create or update a workspace. + /// + /// Name of the Log Analytics Workspace. /// /// /// The headers that will be added to request. @@ -196,42 +276,78 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, Workspace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Create or update a workspace. + /// Get a list of workspaces which the current user has administrator + /// privileges and are not associated with an Azure Subscription. The + /// subscriptionId parameter in the Url is ignored. /// - /// - /// The resource group name of the workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, Workspace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListLinkTargetsWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets a list of accounts with administrator privileges that are not - /// associated with an existing workspace. + /// Gets the schema for a given workspace. /// + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - Task>> ListLinkTargetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetSchemaWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets a list of management groups connected to a workspace. + /// Submit a search for a given workspace. The response will contain an + /// id to track the search. User can use the id to poll the search + /// status and get the full search result later if the search takes + /// long time to finish. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The parameters required to execute a search query. /// /// /// The headers that will be added to request. @@ -239,13 +355,29 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task>> ListManagementGroupsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets the first page of workspace instances in a resource group - /// with the link to the next page. + /// Gets updated search results for a given search query. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the search that will have results updated. You can get + /// the id from the response of the response of the GetResults call. /// /// /// The headers that will be added to request. @@ -253,13 +385,27 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task>> ListInResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> UpdateSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string id, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Gets the first page of workspace instances in a subscription with - /// the link to the next page. + /// Create or update a workspace. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. /// /// /// The headers that will be added to request. @@ -267,6 +413,15 @@ public partial interface IWorkspacesOperations /// /// The cancellation token. /// - Task>> ListInSubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Workspace parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs index 4b282d2b4801..ceffbce92338 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs @@ -1,29 +1,18 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; /// /// LinkedServicesOperations operations. /// - internal partial class LinkedServicesOperations : IServiceOperations, ILinkedServicesOperations + internal partial class LinkedServicesOperations : Microsoft.Rest.IServiceOperations, ILinkedServicesOperations { /// /// Initializes a new instance of the LinkedServicesOperations class. @@ -31,11 +20,14 @@ internal partial class LinkedServicesOperations : IServiceOperations /// Reference to the service client. /// + /// + /// Thrown when a required parameter is null + /// internal LinkedServicesOperations(OperationalInsightsManagementClient client) { if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } this.Client = client; } @@ -49,12 +41,13 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// Create or update a linked service. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the linked service + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// - /// + /// /// The parameters required to create or update a linked service. /// /// @@ -66,26 +59,50 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, LinkedService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, LinkedService parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } - if (name == null) + if (linkedServiceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "name"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "linkedServiceName"); } if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { @@ -93,49 +110,49 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("name", name); + tracingParameters.Add("linkedServiceName", linkedServiceName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{name}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{name}", Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{linkedServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{linkedServiceName}", System.Uri.EscapeDataString(linkedServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -161,9 +178,9 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) string _requestContent = null; 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"); + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials if (this.Client.Credentials != null) @@ -174,43 +191,43 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -220,7 +237,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -233,16 +250,16 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } // Deserialize Response @@ -251,21 +268,21 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -274,10 +291,11 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// Deletes a linked service instance. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the linked service. + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// /// /// Name of the linked service. @@ -288,67 +306,88 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (linkedServiceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "linkedServiceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "linkedServiceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("linkedServiceName", linkedServiceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{linkedServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{linkedServiceName}", Uri.EscapeDataString(linkedServiceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{linkedServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{linkedServiceName}", System.Uri.EscapeDataString(linkedServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -381,30 +420,35 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -414,7 +458,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -423,7 +467,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -432,10 +476,11 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// Gets a linked service instance. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the linked service. + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// /// /// Name of the linked service. @@ -446,67 +491,91 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string linkedServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (linkedServiceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "linkedServiceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "linkedServiceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("linkedServiceName", linkedServiceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{linkedServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{linkedServiceName}", Uri.EscapeDataString(linkedServiceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices/{linkedServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{linkedServiceName}", System.Uri.EscapeDataString(linkedServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -539,43 +608,43 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -585,7 +654,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -598,34 +667,33 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the first page of linked services instances in a workspace with the - /// link to the next page. + /// Gets the linked services instances in a workspace. /// /// - /// The resource group name of the linked services. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The workspace that contains the linked services. + /// Name of the Log Analytics Workspace that will contain the linked services. /// /// /// Headers that will be added to request. @@ -633,221 +701,85 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByWorkspace", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/linkedServices").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(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()); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } - if (this.Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the first page of linked services instances in a workspace with the - /// link to the next page. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -880,43 +812,43 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -926,7 +858,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -939,21 +871,21 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs index 8c2e5f21280e..a2fe68410679 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs @@ -1,17 +1,12 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; + using Microsoft.Rest.Azure; + using Models; /// /// Extension methods for LinkedServicesOperations. @@ -25,20 +20,21 @@ public static partial class LinkedServicesOperationsExtensions /// The operations group for this extension method. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the linked service + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// - /// + /// /// The parameters required to create or update a linked service. /// /// /// The parameters required to create or update a linked service. /// - public static LinkedService CreateOrUpdate(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string name, LinkedService parameters) + public static LinkedService CreateOrUpdate(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName, LinkedService parameters) { - return Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, linkedServiceName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -48,12 +44,13 @@ public static LinkedService CreateOrUpdate(this ILinkedServicesOperations operat /// The operations group for this extension method. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the linked service + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// - /// + /// /// The parameters required to create or update a linked service. /// /// @@ -62,9 +59,9 @@ public static LinkedService CreateOrUpdate(this ILinkedServicesOperations operat /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string name, LinkedService parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName, LinkedService parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, linkedServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -77,17 +74,18 @@ public static LinkedService CreateOrUpdate(this ILinkedServicesOperations operat /// The operations group for this extension method. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the linked service. + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// /// /// Name of the linked service. /// public static void Delete(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName) { - Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).DeleteAsync(resourceGroupName, workspaceName, linkedServiceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + System.Threading.Tasks.Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).DeleteAsync(resourceGroupName, workspaceName, linkedServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -97,10 +95,11 @@ public static void Delete(this ILinkedServicesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the linked service. + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// /// /// Name of the linked service. @@ -108,7 +107,7 @@ public static void Delete(this ILinkedServicesOperations operations, string reso /// /// The cancellation token. /// - public static async Task DeleteAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task DeleteAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, linkedServiceName, null, cancellationToken).ConfigureAwait(false); } @@ -120,17 +119,18 @@ public static void Delete(this ILinkedServicesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the linked service. + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// /// /// Name of the linked service. /// public static LinkedService Get(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName) { - return Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).GetAsync(resourceGroupName, workspaceName, linkedServiceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).GetAsync(resourceGroupName, workspaceName, linkedServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -140,10 +140,11 @@ public static LinkedService Get(this ILinkedServicesOperations operations, strin /// The operations group for this extension method. /// /// - /// The resource group name of the linked service. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the linked service. + /// Name of the Log Analytics Workspace that will contain the linkedServices + /// resource /// /// /// Name of the linked service. @@ -151,7 +152,7 @@ public static LinkedService Get(this ILinkedServicesOperations operations, strin /// /// The cancellation token. /// - public static async Task GetAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task GetAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, linkedServiceName, null, cancellationToken).ConfigureAwait(false)) { @@ -160,78 +161,40 @@ public static LinkedService Get(this ILinkedServicesOperations operations, strin } /// - /// Gets the first page of linked services instances in a workspace with the - /// link to the next page. + /// Gets the linked services instances in a workspace. /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the linked services. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The workspace that contains the linked services. + /// Name of the Log Analytics Workspace that will contain the linked services. /// - public static IPage List(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName) + public static LinkedServiceListResult ListByWorkspace(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).ListAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).ListByWorkspaceAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets the first page of linked services instances in a workspace with the - /// link to the next page. + /// Gets the linked services instances in a workspace. /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the linked services. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The workspace that contains the linked services. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the first page of linked services instances in a workspace with the - /// link to the next page. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this ILinkedServicesOperations operations, string nextPageLink) - { - return Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets the first page of linked services instances in a workspace with the - /// link to the next page. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. + /// Name of the Log Analytics Workspace that will contain the linked services. /// /// /// The cancellation token. /// - public static async Task> ListNextAsync(this ILinkedServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task ListByWorkspaceAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByWorkspaceWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Account.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Account.cs deleted file mode 100644 index 0c7d1afbb782..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Account.cs +++ /dev/null @@ -1,63 +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.OperationalInsights.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// - /// Metadata for an Operational Insights account that isn't linked to a - /// workspace. - /// - public partial class Account - { - /// - /// Initializes a new instance of the Account class. - /// - public Account() { } - - /// - /// Initializes a new instance of the Account class. - /// - public Account(string customerId = default(string), string accountName = default(string), string workspaceName = default(string), string location = default(string)) - { - CustomerId = customerId; - AccountName = accountName; - WorkspaceName = workspaceName; - Location = location; - } - - /// - /// Gets or sets the unique ID of the account. - /// - [JsonProperty(PropertyName = "customerId")] - public string CustomerId { get; set; } - - /// - /// Gets or sets the name of the account. - /// - [JsonProperty(PropertyName = "accountName")] - public string AccountName { get; set; } - - /// - /// Gets or sets the DNS valid workspace name associated with the - /// account. - /// - [JsonProperty(PropertyName = "workspaceName")] - public string WorkspaceName { get; set; } - - /// - /// Gets or sets the Azure region that the account was created in. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/CoreSummary.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/CoreSummary.cs index 142603f5c34b..ac8cf0b99216 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/CoreSummary.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/CoreSummary.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The core summary of a search. @@ -25,7 +19,10 @@ public CoreSummary() { } /// /// Initializes a new instance of the CoreSummary class. /// - public CoreSummary(string status = default(string), long? numberOfDocuments = default(long?)) + /// The number of documents of a core + /// summary. + /// The status of a core summary. + public CoreSummary(long numberOfDocuments, string status = default(string)) { Status = status; NumberOfDocuments = numberOfDocuments; @@ -34,14 +31,24 @@ public CoreSummary() { } /// /// Gets or sets the status of a core summary. /// - [JsonProperty(PropertyName = "Status")] + [Newtonsoft.Json.JsonProperty(PropertyName = "Status")] public string Status { get; set; } /// /// Gets or sets the number of documents of a core summary. /// - [JsonProperty(PropertyName = "NumberOfDocuments")] - public long? NumberOfDocuments { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "NumberOfDocuments")] + public long NumberOfDocuments { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs index 2c83dc0bc54a..b3f749f4a551 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs @@ -1,19 +1,13 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// - /// Data sources under OMS Workspace. + /// Datasources under OMS Workspace. /// public partial class DataSource : Resource { @@ -25,7 +19,22 @@ public DataSource() { } /// /// Initializes a new instance of the DataSource class. /// - public DataSource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), object properties = default(object), string eTag = default(string), string kind = default(string)) + /// Possible values include: 'AzureActivityLog', + /// 'ChangeTrackingPath', 'ChangeTrackingDefaultPath', + /// 'ChangeTrackingDefaultRegistry', 'ChangeTrackingCustomRegistry', + /// 'CustomLog', 'CustomLogCollection', 'GenericDataSource', 'IISLogs', + /// 'LinuxPerformanceObject', 'LinuxPerformanceCollection', + /// 'LinuxSyslog', 'LinuxSyslogCollection', 'WindowsEvent', + /// 'WindowsPerformanceCounter' + /// Resource Id + /// Resource name + /// Resource type + /// Resource location + /// Resource tags + /// The data source properties in raw json + /// format, each kind of data source have it's own schema. + /// The ETag of the data source. + public DataSource(string kind, string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), object properties = default(object), string eTag = default(string)) : base(id, name, type, location, tags) { Properties = properties; @@ -37,20 +46,39 @@ public DataSource() { } /// Gets or sets the data source properties in raw json format, each /// kind of data source have it's own schema. /// - [JsonProperty(PropertyName = "properties")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] public object Properties { get; set; } /// /// Gets or sets the ETag of the data source. /// - [JsonProperty(PropertyName = "eTag")] + [Newtonsoft.Json.JsonProperty(PropertyName = "eTag")] public string ETag { get; set; } /// - /// Gets or sets the kind of the resource. + /// Gets or sets possible values include: 'AzureActivityLog', + /// 'ChangeTrackingPath', 'ChangeTrackingDefaultPath', + /// 'ChangeTrackingDefaultRegistry', 'ChangeTrackingCustomRegistry', + /// 'CustomLog', 'CustomLogCollection', 'GenericDataSource', 'IISLogs', + /// 'LinuxPerformanceObject', 'LinuxPerformanceCollection', + /// 'LinuxSyslog', 'LinuxSyslogCollection', 'WindowsEvent', + /// 'WindowsPerformanceCounter' /// - [JsonProperty(PropertyName = "kind")] + [Newtonsoft.Json.JsonProperty(PropertyName = "kind")] public string Kind { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Kind == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Kind"); + } + } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceFilter.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceFilter.cs index f52b7c14d5b9..1c189ca899cf 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceFilter.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceFilter.cs @@ -1,19 +1,13 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// - /// DataSource filter. + /// DataSource filter. Right now, only filter by kind is supported. /// public partial class DataSourceFilter { @@ -25,15 +19,28 @@ public DataSourceFilter() { } /// /// Initializes a new instance of the DataSourceFilter class. /// + /// Possible values include: 'AzureActivityLog', + /// 'ChangeTrackingPath', 'ChangeTrackingDefaultPath', + /// 'ChangeTrackingDefaultRegistry', 'ChangeTrackingCustomRegistry', + /// 'CustomLog', 'CustomLogCollection', 'GenericDataSource', 'IISLogs', + /// 'LinuxPerformanceObject', 'LinuxPerformanceCollection', + /// 'LinuxSyslog', 'LinuxSyslogCollection', 'WindowsEvent', + /// 'WindowsPerformanceCounter' public DataSourceFilter(string kind = default(string)) { Kind = kind; } /// - /// The datasource kind. + /// Gets or sets possible values include: 'AzureActivityLog', + /// 'ChangeTrackingPath', 'ChangeTrackingDefaultPath', + /// 'ChangeTrackingDefaultRegistry', 'ChangeTrackingCustomRegistry', + /// 'CustomLog', 'CustomLogCollection', 'GenericDataSource', 'IISLogs', + /// 'LinuxPerformanceObject', 'LinuxPerformanceCollection', + /// 'LinuxSyslog', 'LinuxSyslogCollection', 'WindowsEvent', + /// 'WindowsPerformanceCounter' /// - [JsonProperty(PropertyName = "kind")] + [Newtonsoft.Json.JsonProperty(PropertyName = "kind")] public string Kind { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceKind.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceKind.cs new file mode 100644 index 000000000000..3a597fa4c516 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSourceKind.cs @@ -0,0 +1,29 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + + /// + /// Defines values for DataSourceKind. + /// + public static class DataSourceKind + { + public const string AzureActivityLog = "AzureActivityLog"; + public const string ChangeTrackingPath = "ChangeTrackingPath"; + public const string ChangeTrackingDefaultPath = "ChangeTrackingDefaultPath"; + public const string ChangeTrackingDefaultRegistry = "ChangeTrackingDefaultRegistry"; + public const string ChangeTrackingCustomRegistry = "ChangeTrackingCustomRegistry"; + public const string CustomLog = "CustomLog"; + public const string CustomLogCollection = "CustomLogCollection"; + public const string GenericDataSource = "GenericDataSource"; + public const string IISLogs = "IISLogs"; + public const string LinuxPerformanceObject = "LinuxPerformanceObject"; + public const string LinuxPerformanceCollection = "LinuxPerformanceCollection"; + public const string LinuxSyslog = "LinuxSyslog"; + public const string LinuxSyslogCollection = "LinuxSyslogCollection"; + public const string WindowsEvent = "WindowsEvent"; + public const string WindowsPerformanceCounter = "WindowsPerformanceCounter"; + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/EntityStatus.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/EntityStatus.cs index 02ba3b3003fc..197b729a6bc0 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/EntityStatus.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/EntityStatus.cs @@ -1,12 +1,9 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime.Serialization; /// /// Defines values for EntityStatus. diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/IntelligencePack.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/IntelligencePack.cs index fa936c139fe8..726e7f0ade4d 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/IntelligencePack.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/IntelligencePack.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// Intelligence Pack containing a string name and boolean indicating if @@ -26,6 +20,9 @@ public IntelligencePack() { } /// /// Initializes a new instance of the IntelligencePack class. /// + /// The name of the intelligence pack. + /// The enabled boolean for the intelligence + /// pack. public IntelligencePack(string name = default(string), bool? enabled = default(bool?)) { Name = name; @@ -35,13 +32,13 @@ public IntelligencePack() { } /// /// Gets or sets the name of the intelligence pack. /// - [JsonProperty(PropertyName = "name")] + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets the enabled boolean for the intelligence pack. /// - [JsonProperty(PropertyName = "enabled")] + [Newtonsoft.Json.JsonProperty(PropertyName = "enabled")] public bool? Enabled { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkTarget.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkTarget.cs new file mode 100644 index 000000000000..4137b169654f --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkTarget.cs @@ -0,0 +1,61 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// Metadata for a workspace that isn't linked to an Azure subscription. + /// + public partial class LinkTarget + { + /// + /// Initializes a new instance of the LinkTarget class. + /// + public LinkTarget() { } + + /// + /// Initializes a new instance of the LinkTarget class. + /// + /// The GUID that uniquely identifies the + /// workspace. + /// The display name of the + /// workspace. + /// The DNS valid workspace name. + /// The location of the workspace. + public LinkTarget(string customerId = default(string), string displayName = default(string), string workspaceName = default(string), string location = default(string)) + { + CustomerId = customerId; + DisplayName = displayName; + WorkspaceName = workspaceName; + Location = location; + } + + /// + /// Gets or sets the GUID that uniquely identifies the workspace. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "customerId")] + public string CustomerId { get; set; } + + /// + /// Gets or sets the display name of the workspace. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "accountName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets the DNS valid workspace name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "workspaceName")] + public string WorkspaceName { get; set; } + + /// + /// Gets or sets the location of the workspace. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs index 2e7e80860cf4..58fae4aa4f7c 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs @@ -1,21 +1,15 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The top level Linked service resource container. /// - [JsonTransformation] + [Microsoft.Rest.Serialization.JsonTransformation] public partial class LinkedService : Resource { /// @@ -26,27 +20,37 @@ public LinkedService() { } /// /// Initializes a new instance of the LinkedService class. /// - public LinkedService(string resourceId, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) + /// The resource id of the resource that will + /// be linked to the workspace. + /// Resource Id + /// Resource name + /// Resource type + /// Resource location + /// Resource tags + public LinkedService(string resourceId, string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) : base(id, name, type, location, tags) { ResourceId = resourceId; } /// - /// Gets or sets the resource id of the resource that will be linked - /// to the workspace. + /// Gets or sets the resource id of the resource that will be linked to + /// the workspace. /// - [JsonProperty(PropertyName = "properties.resourceId")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.resourceId")] public string ResourceId { get; set; } /// - /// Validate the object. Throws ValidationException if validation fails. + /// Validate the object. /// + /// + /// Thrown if validation fails + /// public virtual void Validate() { if (ResourceId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "ResourceId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ResourceId"); } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedServiceListResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedServiceListResult.cs new file mode 100644 index 000000000000..cf3f6fc2be15 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedServiceListResult.cs @@ -0,0 +1,36 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// The list linked service operation response. + /// + public partial class LinkedServiceListResult + { + /// + /// Initializes a new instance of the LinkedServiceListResult class. + /// + public LinkedServiceListResult() { } + + /// + /// Initializes a new instance of the LinkedServiceListResult class. + /// + /// Gets or sets a list of linked service + /// instances. + public LinkedServiceListResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) + { + Value = value; + } + + /// + /// Gets or sets a list of linked service instances. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ManagementGroup.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ManagementGroup.cs index e9ab52ab0d18..0ae2e1929f03 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ManagementGroup.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ManagementGroup.cs @@ -1,21 +1,15 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// A management group that is connected to a workspace /// - [JsonTransformation] + [Microsoft.Rest.Serialization.JsonTransformation] public partial class ManagementGroup { /// @@ -26,7 +20,21 @@ public ManagementGroup() { } /// /// Initializes a new instance of the ManagementGroup class. /// - public ManagementGroup(int? serverCount = default(int?), bool? isGateway = default(bool?), string name = default(string), string id = default(string), DateTime? created = default(DateTime?), DateTime? dataReceived = default(DateTime?), string version = default(string), string sku = default(string)) + /// The number of servers connected to the + /// management group. + /// Gets or sets a value indicating whether the + /// management group is a gateway. + /// The name of the management group. + /// The unique ID of the management group. + /// The datetime that the management group was + /// created. + /// The last datetime that the management + /// group received data. + /// The version of System Center that is managing + /// the management group. + /// The SKU of System Center that is managing the + /// management group. + public ManagementGroup(int? serverCount = default(int?), bool? isGateway = default(bool?), string name = default(string), string id = default(string), System.DateTime? created = default(System.DateTime?), System.DateTime? dataReceived = default(System.DateTime?), string version = default(string), string sku = default(string)) { ServerCount = serverCount; IsGateway = isGateway; @@ -42,53 +50,53 @@ public ManagementGroup() { } /// Gets or sets the number of servers connected to the management /// group. /// - [JsonProperty(PropertyName = "properties.serverCount")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serverCount")] public int? ServerCount { get; set; } /// /// Gets or sets a value indicating whether the management group is a /// gateway. /// - [JsonProperty(PropertyName = "properties.isGateway")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.isGateway")] public bool? IsGateway { get; set; } /// /// Gets or sets the name of the management group. /// - [JsonProperty(PropertyName = "properties.name")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.name")] public string Name { get; set; } /// /// Gets or sets the unique ID of the management group. /// - [JsonProperty(PropertyName = "properties.id")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.id")] public string Id { get; set; } /// /// Gets or sets the datetime that the management group was created. /// - [JsonProperty(PropertyName = "properties.created")] - public DateTime? Created { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.created")] + public System.DateTime? Created { get; set; } /// /// Gets or sets the last datetime that the management group received /// data. /// - [JsonProperty(PropertyName = "properties.dataReceived")] - public DateTime? DataReceived { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.dataReceived")] + public System.DateTime? DataReceived { get; set; } /// /// Gets or sets the version of System Center that is managing the /// management group. /// - [JsonProperty(PropertyName = "properties.version")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.version")] public string Version { get; set; } /// /// Gets or sets the SKU of System Center that is managing the /// management group. /// - [JsonProperty(PropertyName = "properties.sku")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.sku")] public string Sku { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetricName.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetricName.cs index 2b17d3c94322..dd86f2f6fdb3 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetricName.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetricName.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The name of a metric. @@ -25,6 +19,9 @@ public MetricName() { } /// /// Initializes a new instance of the MetricName class. /// + /// The system name of the metric. + /// The localized name of the + /// metric. public MetricName(string value = default(string), string localizedValue = default(string)) { Value = value; @@ -34,13 +31,13 @@ public MetricName() { } /// /// Gets or sets the system name of the metric. /// - [JsonProperty(PropertyName = "value")] + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] public string Value { get; set; } /// /// Gets or sets the localized name of the metric. /// - [JsonProperty(PropertyName = "localizedValue")] + [Newtonsoft.Json.JsonProperty(PropertyName = "localizedValue")] public string LocalizedValue { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs index f5a79cd718c7..c3a8c9ed2ec6 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs @@ -1,37 +1,33 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System.Collections.Generic; - using System.Linq; - using Newtonsoft.Json; - using Microsoft.Rest.Azure; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [JsonObject] - public class Page : IPage + [Newtonsoft.Json.JsonObject] + public class Page : Microsoft.Rest.Azure.IPage { /// /// Gets the link to the next page. /// - [JsonProperty("nextLink")] - public string NextPageLink { get; private set; } + [Newtonsoft.Json.JsonProperty("nextLink")] + public System.String NextPageLink { get; private set; } - [JsonProperty("value")] - private IList Items{ get; set; } + [Newtonsoft.Json.JsonProperty("value")] + private System.Collections.Generic.IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public IEnumerator GetEnumerator() + public System.Collections.Generic.IEnumerator GetEnumerator() { - return (Items == null) ? Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs index 4a6cf708b539..9ec3f72c55dd 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs @@ -1,37 +1,33 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System.Collections.Generic; - using System.Linq; - using Newtonsoft.Json; - using Microsoft.Rest.Azure; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [JsonObject] - public class Page1 : IPage + [Newtonsoft.Json.JsonObject] + public class Page1 : Microsoft.Rest.Azure.IPage { /// /// Gets the link to the next page. /// - [JsonProperty("")] - public string NextPageLink { get; private set; } + [Newtonsoft.Json.JsonProperty("")] + public System.String NextPageLink { get; private set; } - [JsonProperty("value")] - private IList Items{ get; set; } + [Newtonsoft.Json.JsonProperty("value")] + private System.Collections.Generic.IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public IEnumerator GetEnumerator() + public System.Collections.Generic.IEnumerator GetEnumerator() { - return (Items == null) ? Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page2.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page2.cs index 8f184231f4d8..5e8213a57784 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page2.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page2.cs @@ -1,37 +1,33 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System.Collections.Generic; - using System.Linq; - using Newtonsoft.Json; - using Microsoft.Rest.Azure; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [JsonObject] - public class Page2 : IPage + [Newtonsoft.Json.JsonObject] + public class Page2 : Microsoft.Rest.Azure.IPage { /// /// Gets the link to the next page. /// - [JsonProperty("@odata.nextLink")] - public string NextPageLink { get; private set; } + [Newtonsoft.Json.JsonProperty("@odata.nextLink")] + public System.String NextPageLink { get; private set; } - [JsonProperty("value")] - private IList Items{ get; set; } + [Newtonsoft.Json.JsonProperty("value")] + private System.Collections.Generic.IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public IEnumerator GetEnumerator() + public System.Collections.Generic.IEnumerator GetEnumerator() { - return (Items == null) ? Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs index ec15e3df1bfe..57c0555555a1 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs @@ -1,21 +1,15 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The resource definition. /// - public partial class Resource : IResource + public partial class Resource : Microsoft.Rest.Azure.IResource { /// /// Initializes a new instance of the Resource class. @@ -25,7 +19,12 @@ public Resource() { } /// /// Initializes a new instance of the Resource class. /// - public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) + /// Resource Id + /// Resource name + /// Resource type + /// Resource location + /// Resource tags + public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) { Id = id; Name = name; @@ -35,34 +34,34 @@ public Resource() { } } /// - /// Resource Id + /// Gets resource Id /// - [JsonProperty(PropertyName = "id")] + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] public string Id { get; private set; } /// - /// Resource name + /// Gets or sets resource name /// - [JsonProperty(PropertyName = "name")] + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Resource type + /// Gets resource type /// - [JsonProperty(PropertyName = "type")] + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] public string Type { get; private set; } /// - /// Resource location + /// Gets or sets resource location /// - [JsonProperty(PropertyName = "location")] + [Newtonsoft.Json.JsonProperty(PropertyName = "location")] public string Location { get; set; } /// - /// Resource tags + /// Gets or sets resource tags /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] + public System.Collections.Generic.IDictionary Tags { get; set; } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearch.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearch.cs new file mode 100644 index 000000000000..e50a7994147b --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearch.cs @@ -0,0 +1,132 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// Value object for saved search results. + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class SavedSearch + { + /// + /// Initializes a new instance of the SavedSearch class. + /// + public SavedSearch() { } + + /// + /// Initializes a new instance of the SavedSearch class. + /// + /// The category of the saved search. This helps + /// the user to find a saved search faster. + /// Saved search display name. + /// The query expression for the saved search. + /// Please see + /// https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-search-reference + /// for reference. + /// The version number of the query lanuage. Only + /// verion 1 is allowed here. + /// The id of the saved search. + /// The etag of the saved search. + /// The tags attached to the saved search. + public SavedSearch(string category, string displayName, string query, long version, string id = default(string), string etag = default(string), System.Collections.Generic.IList tags = default(System.Collections.Generic.IList)) + { + Id = id; + Etag = etag; + Category = category; + DisplayName = displayName; + Query = query; + Version = version; + Tags = tags; + } + + /// + /// Gets or sets the id of the saved search. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the etag of the saved search. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "etag")] + public string Etag { get; set; } + + /// + /// Gets or sets the category of the saved search. This helps the user + /// to find a saved search faster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Category")] + public string Category { get; set; } + + /// + /// Gets or sets saved search display name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.DisplayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets the query expression for the saved search. Please see + /// https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-search-reference + /// for reference. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Query")] + public string Query { get; set; } + + /// + /// Gets or sets the version number of the query lanuage. Only verion 1 + /// is allowed here. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Version")] + public long Version { get; set; } + + /// + /// Gets or sets the tags attached to the saved search. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Tags")] + public System.Collections.Generic.IList Tags { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Category == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Category"); + } + if (DisplayName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "DisplayName"); + } + if (Query == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Query"); + } + if (this.Version > 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMaximum, "Version", 1); + } + if (this.Version < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMinimum, "Version", 1); + } + if (this.Tags != null) + { + foreach (var element in this.Tags) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchCreateOrUpdateParameters.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchCreateOrUpdateParameters.cs new file mode 100644 index 000000000000..690fc127d500 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchCreateOrUpdateParameters.cs @@ -0,0 +1,126 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// Parameters for creating/updating a saved search + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class SavedSearchCreateOrUpdateParameters + { + /// + /// Initializes a new instance of the + /// SavedSearchCreateOrUpdateParameters class. + /// + public SavedSearchCreateOrUpdateParameters() { } + + /// + /// Initializes a new instance of the + /// SavedSearchCreateOrUpdateParameters class. + /// + /// The category of the saved search. This helps + /// the user to find a saved search faster. + /// Saved search display name. + /// The query expression for the saved search. + /// Please see + /// https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-search-reference + /// for reference. + /// The version number of the query lanuage. Only + /// verion 1 is allowed here. + /// The etag of the saved search. + /// The tags attached to the saved search. + public SavedSearchCreateOrUpdateParameters(string category, string displayName, string query, long version, string etag = default(string), System.Collections.Generic.IList tags = default(System.Collections.Generic.IList)) + { + Etag = etag; + Category = category; + DisplayName = displayName; + Query = query; + Version = version; + Tags = tags; + } + + /// + /// Gets or sets the etag of the saved search. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "etag")] + public string Etag { get; set; } + + /// + /// Gets or sets the category of the saved search. This helps the user + /// to find a saved search faster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Category")] + public string Category { get; set; } + + /// + /// Gets or sets saved search display name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.DisplayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets the query expression for the saved search. Please see + /// https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-search-reference + /// for reference. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Query")] + public string Query { get; set; } + + /// + /// Gets or sets the version number of the query lanuage. Only verion 1 + /// is allowed here. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Version")] + public long Version { get; set; } + + /// + /// Gets or sets the tags attached to the saved search. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Tags")] + public System.Collections.Generic.IList Tags { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Category == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Category"); + } + if (DisplayName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "DisplayName"); + } + if (Query == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Query"); + } + if (this.Version > 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMaximum, "Version", 1); + } + if (this.Version < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMinimum, "Version", 1); + } + if (this.Tags != null) + { + foreach (var element in this.Tags) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchValue.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchValue.cs deleted file mode 100644 index 3388984f8220..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchValue.cs +++ /dev/null @@ -1,83 +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.OperationalInsights.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// - /// Value object for saved search results. - /// - [JsonTransformation] - public partial class SavedSearchValue - { - /// - /// Initializes a new instance of the SavedSearchValue class. - /// - public SavedSearchValue() { } - - /// - /// Initializes a new instance of the SavedSearchValue class. - /// - public SavedSearchValue(string id = default(string), string etag = default(string), string category = default(string), string displayName = default(string), string query = default(string), long? version = default(long?), IList tags = default(IList)) - { - Id = id; - Etag = etag; - Category = category; - DisplayName = displayName; - Query = query; - Version = version; - Tags = tags; - } - - /// - /// Gets or sets the id of the saved search. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; set; } - - /// - /// Gets or sets the etag of the saved search. - /// - [JsonProperty(PropertyName = "etag")] - public string Etag { get; set; } - - /// - /// Gets or sets the category. - /// - [JsonProperty(PropertyName = "properties.Category")] - public string Category { get; set; } - - /// - /// Gets or sets the display name. - /// - [JsonProperty(PropertyName = "properties.DisplayName")] - public string DisplayName { get; set; } - - /// - /// Gets or sets the query. - /// - [JsonProperty(PropertyName = "properties.Query")] - public string Query { get; set; } - - /// - /// Gets or sets the version number. - /// - [JsonProperty(PropertyName = "properties.Version")] - public long? Version { get; set; } - - /// - /// Gets or sets the tags attached to the saved search. - /// - [JsonProperty(PropertyName = "properties.Tags")] - public IList Tags { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchesListResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchesListResult.cs new file mode 100644 index 000000000000..e117aff14d31 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchesListResult.cs @@ -0,0 +1,43 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// The saved search operation response. + /// + public partial class SavedSearchesListResult + { + /// + /// Initializes a new instance of the SavedSearchesListResult class. + /// + public SavedSearchesListResult() { } + + /// + /// Initializes a new instance of the SavedSearchesListResult class. + /// + /// The metadata from search results. + /// The array of result values. + public SavedSearchesListResult(SearchMetadata metadata = default(SearchMetadata), System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) + { + Metadata = metadata; + Value = value; + } + + /// + /// Gets or sets the metadata from search results. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "__metadata")] + public SearchMetadata Metadata { get; set; } + + /// + /// Gets or sets the array of result values. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SchemaValue.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SchemaValue.cs deleted file mode 100644 index ce05f7833a77..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SchemaValue.cs +++ /dev/null @@ -1,85 +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.OperationalInsights.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// - /// Value object for schema results. - /// - public partial class SchemaValue - { - /// - /// Initializes a new instance of the SchemaValue class. - /// - public SchemaValue() { } - - /// - /// Initializes a new instance of the SchemaValue class. - /// - public SchemaValue(string name = default(string), string displayName = default(string), string type = default(string), bool? indexed = default(bool?), bool? stored = default(bool?), bool? facet = default(bool?), IList ownerType = default(IList)) - { - Name = name; - DisplayName = displayName; - Type = type; - Indexed = indexed; - Stored = stored; - Facet = facet; - OwnerType = ownerType; - } - - /// - /// Gets or sets the name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets the display name. - /// - [JsonProperty(PropertyName = "displayName")] - public string DisplayName { get; set; } - - /// - /// Gets or sets the type. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; set; } - - /// - /// Gets or sets the boolean that indicates the field is searchable as - /// free text. - /// - [JsonProperty(PropertyName = "indexed")] - public bool? Indexed { get; set; } - - /// - /// Gets or sets the boolean that indicates whether or not the field - /// is stored. - /// - [JsonProperty(PropertyName = "stored")] - public bool? Stored { get; set; } - - /// - /// Gets or sets the boolean that indicates whether or not the field - /// is a facet. - /// - [JsonProperty(PropertyName = "facet")] - public bool? Facet { get; set; } - - /// - /// Gets or sets the array of workflows containing the field. - /// - [JsonProperty(PropertyName = "ownerType")] - public IList OwnerType { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchCreateOrUpdateSavedSearchParameters.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchCreateOrUpdateSavedSearchParameters.cs deleted file mode 100644 index db403d2da6ad..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchCreateOrUpdateSavedSearchParameters.cs +++ /dev/null @@ -1,78 +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.OperationalInsights.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// - /// Parameters for putting a saved search. - /// - [JsonTransformation] - public partial class SearchCreateOrUpdateSavedSearchParameters - { - /// - /// Initializes a new instance of the - /// SearchCreateOrUpdateSavedSearchParameters class. - /// - public SearchCreateOrUpdateSavedSearchParameters() { } - - /// - /// Initializes a new instance of the - /// SearchCreateOrUpdateSavedSearchParameters class. - /// - public SearchCreateOrUpdateSavedSearchParameters(string etag = default(string), string category = default(string), string displayName = default(string), string query = default(string), long? version = default(long?), IList tags = default(IList)) - { - Etag = etag; - Category = category; - DisplayName = displayName; - Query = query; - Version = version; - Tags = tags; - } - - /// - /// Gets or sets the etag of the saved search. - /// - [JsonProperty(PropertyName = "etag")] - public string Etag { get; set; } - - /// - /// Gets or sets the category. - /// - [JsonProperty(PropertyName = "properties.Category")] - public string Category { get; set; } - - /// - /// Gets or sets the display name. - /// - [JsonProperty(PropertyName = "properties.DisplayName")] - public string DisplayName { get; set; } - - /// - /// Gets or sets the query. - /// - [JsonProperty(PropertyName = "properties.Query")] - public string Query { get; set; } - - /// - /// Gets or sets the version number. - /// - [JsonProperty(PropertyName = "properties.Version")] - public long? Version { get; set; } - - /// - /// Gets or sets the tags attached to the saved search. - /// - [JsonProperty(PropertyName = "properties.Tags")] - public IList Tags { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchError.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchError.cs index 28faea489234..f6e9b41ddf6e 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchError.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchError.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// Details for a search error. @@ -25,6 +19,8 @@ public SearchError() { } /// /// Initializes a new instance of the SearchError class. /// + /// The error type. + /// The error message. public SearchError(string type = default(string), string message = default(string)) { Type = type; @@ -34,13 +30,13 @@ public SearchError() { } /// /// Gets or sets the error type. /// - [JsonProperty(PropertyName = "type")] + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets the error message. /// - [JsonProperty(PropertyName = "message")] + [Newtonsoft.Json.JsonProperty(PropertyName = "message")] public string Message { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSavedSearchResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSavedSearchResult.cs deleted file mode 100644 index 8180863d2aa2..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSavedSearchResult.cs +++ /dev/null @@ -1,83 +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.OperationalInsights.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// - /// Value object for saved search results. - /// - [JsonTransformation] - public partial class SearchGetSavedSearchResult - { - /// - /// Initializes a new instance of the SearchGetSavedSearchResult class. - /// - public SearchGetSavedSearchResult() { } - - /// - /// Initializes a new instance of the SearchGetSavedSearchResult class. - /// - public SearchGetSavedSearchResult(string id = default(string), string etag = default(string), string category = default(string), string displayName = default(string), string query = default(string), long? version = default(long?), IList tags = default(IList)) - { - Id = id; - Etag = etag; - Category = category; - DisplayName = displayName; - Query = query; - Version = version; - Tags = tags; - } - - /// - /// Gets or sets the id of the saved search. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; set; } - - /// - /// Gets or sets the etag of the saved search. - /// - [JsonProperty(PropertyName = "etag")] - public string Etag { get; set; } - - /// - /// Gets or sets the category. - /// - [JsonProperty(PropertyName = "properties.Category")] - public string Category { get; set; } - - /// - /// Gets or sets the display name. - /// - [JsonProperty(PropertyName = "properties.DisplayName")] - public string DisplayName { get; set; } - - /// - /// Gets or sets the query. - /// - [JsonProperty(PropertyName = "properties.Query")] - public string Query { get; set; } - - /// - /// Gets or sets the version number. - /// - [JsonProperty(PropertyName = "properties.Version")] - public long? Version { get; set; } - - /// - /// Gets or sets the tags attached to the saved search. - /// - [JsonProperty(PropertyName = "properties.Tags")] - public IList Tags { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSchemaResponse.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSchemaResponse.cs index b46b5a92d6bf..aa61cf6f899a 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSchemaResponse.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSchemaResponse.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The get schema operation response. @@ -25,23 +19,25 @@ public SearchGetSchemaResponse() { } /// /// Initializes a new instance of the SearchGetSchemaResponse class. /// - public SearchGetSchemaResponse(SearchMetadata __metadata = default(SearchMetadata), IList value = default(IList)) + /// The metadata from search results. + /// The array of result values. + public SearchGetSchemaResponse(SearchMetadata metadata = default(SearchMetadata), System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) { - __metadata = __metadata; + Metadata = metadata; Value = value; } /// /// Gets or sets the metadata from search results. /// - [JsonProperty(PropertyName = "__metadata")] - public SearchMetadata __metadata { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "__metadata")] + public SearchMetadata Metadata { get; set; } /// /// Gets or sets the array of result values. /// - [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value { get; set; } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsParameters.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsParameters.cs deleted file mode 100644 index 55e16085ec0d..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsParameters.cs +++ /dev/null @@ -1,73 +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.OperationalInsights.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// - /// Parameters specifying the search query and range. - /// - public partial class SearchGetSearchResultsParameters - { - /// - /// Initializes a new instance of the SearchGetSearchResultsParameters - /// class. - /// - public SearchGetSearchResultsParameters() { } - - /// - /// Initializes a new instance of the SearchGetSearchResultsParameters - /// class. - /// - public SearchGetSearchResultsParameters(long? top = default(long?), Highlight highlight = default(Highlight), string query = default(string), DateTime? start = default(DateTime?), DateTime? end = default(DateTime?)) - { - Top = top; - Highlight = highlight; - Query = query; - Start = start; - End = end; - } - - /// - /// Gets or sets the number to get from the top. - /// - [JsonProperty(PropertyName = "top")] - public long? Top { get; set; } - - /// - /// Gets or sets the highlight that looks for all occurences of a - /// string. - /// - [JsonProperty(PropertyName = "highlight")] - public Highlight Highlight { get; set; } - - /// - /// Gets or sets the query to search. - /// - [JsonProperty(PropertyName = "query")] - public string Query { get; set; } - - /// - /// Gets or sets the start date filter, so the only query results - /// returned are after this date. - /// - [JsonProperty(PropertyName = "start")] - public DateTime? Start { get; set; } - - /// - /// Gets or sets the end date filter, so the only query results - /// returned are before this date. - /// - [JsonProperty(PropertyName = "end")] - public DateTime? End { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsResponse.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsResponse.cs deleted file mode 100644 index ee480f09f76f..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchGetSearchResultsResponse.cs +++ /dev/null @@ -1,63 +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.OperationalInsights.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// - /// The get search result operation response. - /// - public partial class SearchGetSearchResultsResponse - { - /// - /// Initializes a new instance of the SearchGetSearchResultsResponse - /// class. - /// - public SearchGetSearchResultsResponse() { } - - /// - /// Initializes a new instance of the SearchGetSearchResultsResponse - /// class. - /// - public SearchGetSearchResultsResponse(string id = default(string), SearchMetadata __metadata = default(SearchMetadata), IList value = default(IList), SearchError error = default(SearchError)) - { - Id = id; - __metadata = __metadata; - Value = value; - Error = error; - } - - /// - /// Gets or sets the id of the search, which includes the full url. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; set; } - - /// - /// Gets or sets the metadata from search results. - /// - [JsonProperty(PropertyName = "__metadata")] - public SearchMetadata __metadata { get; set; } - - /// - /// Gets or sets the array of result values. - /// - [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } - - /// - /// Gets or sets the error. - /// - [JsonProperty(PropertyName = "error")] - public SearchError Error { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Highlight.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchHighlight.cs similarity index 51% rename from src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Highlight.cs rename to src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchHighlight.cs index c2d6ae845b39..e25ec891cbc9 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Highlight.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchHighlight.cs @@ -1,31 +1,29 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// Highlight details. /// - public partial class Highlight + public partial class SearchHighlight { /// - /// Initializes a new instance of the Highlight class. + /// Initializes a new instance of the SearchHighlight class. /// - public Highlight() { } + public SearchHighlight() { } /// - /// Initializes a new instance of the Highlight class. + /// Initializes a new instance of the SearchHighlight class. /// - public Highlight(string pre = default(string), string post = default(string)) + /// The string that is put before a matched + /// result. + /// The string that is put after a matched + /// result. + public SearchHighlight(string pre = default(string), string post = default(string)) { Pre = pre; Post = post; @@ -34,13 +32,13 @@ public Highlight() { } /// /// Gets or sets the string that is put before a matched result. /// - [JsonProperty(PropertyName = "pre")] + [Newtonsoft.Json.JsonProperty(PropertyName = "pre")] public string Pre { get; set; } /// /// Gets or sets the string that is put after a matched result. /// - [JsonProperty(PropertyName = "post")] + [Newtonsoft.Json.JsonProperty(PropertyName = "post")] public string Post { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchListSavedSearchResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchListSavedSearchResult.cs deleted file mode 100644 index 3697faf5ed60..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchListSavedSearchResult.cs +++ /dev/null @@ -1,49 +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.OperationalInsights.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// - /// The saved search operation response. - /// - public partial class SearchListSavedSearchResult - { - /// - /// Initializes a new instance of the SearchListSavedSearchResult - /// class. - /// - public SearchListSavedSearchResult() { } - - /// - /// Initializes a new instance of the SearchListSavedSearchResult - /// class. - /// - public SearchListSavedSearchResult(SearchMetadata __metadata = default(SearchMetadata), IList value = default(IList)) - { - __metadata = __metadata; - Value = value; - } - - /// - /// Gets or sets the metadata from search results. - /// - [JsonProperty(PropertyName = "__metadata")] - public SearchMetadata __metadata { get; set; } - - /// - /// Gets or sets the array of result values. - /// - [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs index 8e17f4f34811..ffeb01bdd279 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// Metadata for search results. @@ -25,9 +19,28 @@ public SearchMetadata() { } /// /// Initializes a new instance of the SearchMetadata class. /// - public SearchMetadata(string requestId = default(string), string resultType = default(string), long? total = default(long?), long? top = default(long?), string id = default(string), IList coreSummaries = default(IList), string status = default(string), DateTime? startTime = default(DateTime?), DateTime? lastUpdated = default(DateTime?), string eTag = default(string), IList sort = default(IList), long? requestTime = default(long?), string aggregatedValueField = default(string), string aggregatedGroupingFields = default(string), long? sum = default(long?), long? max = default(long?), MetadataSchema schema = default(MetadataSchema)) + /// The request id of the search. + /// The search result type. + /// The total search results. + /// The number of top search results. + /// The id of the search results request. + /// The core summaries. + /// The status of the search results. + /// The start time for the search. + /// The time of last update. + /// The ETag of the search results. + /// Gets or sets sort. + /// The request time. + /// The aggregated value + /// field. + /// The aggregated grouping + /// fields. + /// The sum. + /// The max. + /// The schema. + public SearchMetadata(string searchId = default(string), string resultType = default(string), long? total = default(long?), long? top = default(long?), string id = default(string), System.Collections.Generic.IList coreSummaries = default(System.Collections.Generic.IList), string status = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? lastUpdated = default(System.DateTime?), string eTag = default(string), System.Collections.Generic.IList sort = default(System.Collections.Generic.IList), long? requestTime = default(long?), string aggregatedValueField = default(string), string aggregatedGroupingFields = default(string), long? sum = default(long?), long? max = default(long?), SearchMetadataSchema schema = default(SearchMetadataSchema)) { - RequestId = requestId; + SearchId = searchId; ResultType = resultType; Total = total; Top = top; @@ -49,104 +62,104 @@ public SearchMetadata() { } /// /// Gets or sets the request id of the search. /// - [JsonProperty(PropertyName = "RequestId")] - public string RequestId { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "RequestId")] + public string SearchId { get; set; } /// /// Gets or sets the search result type. /// - [JsonProperty(PropertyName = "resultType")] + [Newtonsoft.Json.JsonProperty(PropertyName = "resultType")] public string ResultType { get; set; } /// /// Gets or sets the total search results. /// - [JsonProperty(PropertyName = "total")] + [Newtonsoft.Json.JsonProperty(PropertyName = "total")] public long? Total { get; set; } /// /// Gets or sets the number of top search results. /// - [JsonProperty(PropertyName = "top")] + [Newtonsoft.Json.JsonProperty(PropertyName = "top")] public long? Top { get; set; } /// /// Gets or sets the id of the search results request. /// - [JsonProperty(PropertyName = "id")] + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Gets or sets the core summaries. /// - [JsonProperty(PropertyName = "CoreSummaries")] - public IList CoreSummaries { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "CoreSummaries")] + public System.Collections.Generic.IList CoreSummaries { get; set; } /// /// Gets or sets the status of the search results. /// - [JsonProperty(PropertyName = "Status")] + [Newtonsoft.Json.JsonProperty(PropertyName = "Status")] public string Status { get; set; } /// /// Gets or sets the start time for the search. /// - [JsonProperty(PropertyName = "StartTime")] - public DateTime? StartTime { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "StartTime")] + public System.DateTime? StartTime { get; set; } /// /// Gets or sets the time of last update. /// - [JsonProperty(PropertyName = "LastUpdated")] - public DateTime? LastUpdated { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "LastUpdated")] + public System.DateTime? LastUpdated { get; set; } /// /// Gets or sets the ETag of the search results. /// - [JsonProperty(PropertyName = "ETag")] + [Newtonsoft.Json.JsonProperty(PropertyName = "ETag")] public string ETag { get; set; } /// /// Gets or sets sort. /// - [JsonProperty(PropertyName = "sort")] - public IList Sort { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "sort")] + public System.Collections.Generic.IList Sort { get; set; } /// /// Gets or sets the request time. /// - [JsonProperty(PropertyName = "requestTime")] + [Newtonsoft.Json.JsonProperty(PropertyName = "requestTime")] public long? RequestTime { get; set; } /// /// Gets or sets the aggregated value field. /// - [JsonProperty(PropertyName = "aggregatedValueField")] + [Newtonsoft.Json.JsonProperty(PropertyName = "aggregatedValueField")] public string AggregatedValueField { get; set; } /// /// Gets or sets the aggregated grouping fields. /// - [JsonProperty(PropertyName = "aggregatedGroupingFields")] + [Newtonsoft.Json.JsonProperty(PropertyName = "aggregatedGroupingFields")] public string AggregatedGroupingFields { get; set; } /// /// Gets or sets the sum. /// - [JsonProperty(PropertyName = "sum")] + [Newtonsoft.Json.JsonProperty(PropertyName = "sum")] public long? Sum { get; set; } /// /// Gets or sets the max. /// - [JsonProperty(PropertyName = "max")] + [Newtonsoft.Json.JsonProperty(PropertyName = "max")] public long? Max { get; set; } /// /// Gets or sets the schema. /// - [JsonProperty(PropertyName = "schema")] - public MetadataSchema Schema { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "schema")] + public SearchMetadataSchema Schema { get; set; } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetadataSchema.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadataSchema.cs similarity index 51% rename from src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetadataSchema.cs rename to src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadataSchema.cs index 59edd2067d95..39cbbc70d1e3 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/MetadataSchema.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadataSchema.cs @@ -1,31 +1,27 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// Metadata items for saved search items. /// - public partial class MetadataSchema + public partial class SearchMetadataSchema { /// - /// Initializes a new instance of the MetadataSchema class. + /// Initializes a new instance of the SearchMetadataSchema class. /// - public MetadataSchema() { } + public SearchMetadataSchema() { } /// - /// Initializes a new instance of the MetadataSchema class. + /// Initializes a new instance of the SearchMetadataSchema class. /// - public MetadataSchema(string name = default(string), int? version = default(int?)) + /// The name. + /// The version. + public SearchMetadataSchema(string name = default(string), int? version = default(int?)) { Name = name; Version = version; @@ -34,13 +30,13 @@ public MetadataSchema() { } /// /// Gets or sets the name. /// - [JsonProperty(PropertyName = "name")] + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets the version. /// - [JsonProperty(PropertyName = "version")] + [Newtonsoft.Json.JsonProperty(PropertyName = "version")] public int? Version { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchParameters.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchParameters.cs new file mode 100644 index 000000000000..c87e59ebc566 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchParameters.cs @@ -0,0 +1,73 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// Parameters specifying the search query and range. + /// + public partial class SearchParameters + { + /// + /// Initializes a new instance of the SearchParameters class. + /// + public SearchParameters() { } + + /// + /// Initializes a new instance of the SearchParameters class. + /// + /// The number to get from the top. + /// The highlight that looks for all occurences + /// of a string. + /// The query to search. + /// The start date filter, so the only query + /// results returned are after this date. + /// The end date filter, so the only query results + /// returned are before this date. + public SearchParameters(long? top = default(long?), SearchHighlight highlight = default(SearchHighlight), string query = default(string), System.DateTime? start = default(System.DateTime?), System.DateTime? end = default(System.DateTime?)) + { + Top = top; + Highlight = highlight; + Query = query; + Start = start; + End = end; + } + + /// + /// Gets or sets the number to get from the top. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "top")] + public long? Top { get; set; } + + /// + /// Gets or sets the highlight that looks for all occurences of a + /// string. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "highlight")] + public SearchHighlight Highlight { get; set; } + + /// + /// Gets or sets the query to search. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "query")] + public string Query { get; set; } + + /// + /// Gets or sets the start date filter, so the only query results + /// returned are after this date. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "start")] + public System.DateTime? Start { get; set; } + + /// + /// Gets or sets the end date filter, so the only query results + /// returned are before this date. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "end")] + public System.DateTime? End { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchResultsResponse.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchResultsResponse.cs new file mode 100644 index 000000000000..c18ae53436c0 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchResultsResponse.cs @@ -0,0 +1,60 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// The get search result operation response. + /// + public partial class SearchResultsResponse + { + /// + /// Initializes a new instance of the SearchResultsResponse class. + /// + public SearchResultsResponse() { } + + /// + /// Initializes a new instance of the SearchResultsResponse class. + /// + /// The id of the search, which includes the full + /// url. + /// The metadata from search results. + /// The array of result values. + /// The error. + public SearchResultsResponse(string id = default(string), SearchMetadata metadata = default(SearchMetadata), System.Collections.Generic.IList value = default(System.Collections.Generic.IList), SearchError error = default(SearchError)) + { + Id = id; + Metadata = metadata; + Value = value; + Error = error; + } + + /// + /// Gets or sets the id of the search, which includes the full url. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the metadata from search results. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "__metadata")] + public SearchMetadata Metadata { get; set; } + + /// + /// Gets or sets the array of result values. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value { get; set; } + + /// + /// Gets or sets the error. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "error")] + public SearchError Error { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSchemaValue.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSchemaValue.cs new file mode 100644 index 000000000000..e9fb4684eea1 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSchemaValue.cs @@ -0,0 +1,99 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// Value object for schema results. + /// + public partial class SearchSchemaValue + { + /// + /// Initializes a new instance of the SearchSchemaValue class. + /// + public SearchSchemaValue() { } + + /// + /// Initializes a new instance of the SearchSchemaValue class. + /// + /// The boolean that indicates the field is + /// searchable as free text. + /// The boolean that indicates whether or not the + /// field is stored. + /// The boolean that indicates whether or not the + /// field is a facet. + /// The name. + /// The display name. + /// The type. + /// The array of workflows containing the + /// field. + public SearchSchemaValue(bool indexed, bool stored, bool facet, string name = default(string), string displayName = default(string), string type = default(string), System.Collections.Generic.IList ownerType = default(System.Collections.Generic.IList)) + { + Name = name; + DisplayName = displayName; + Type = type; + Indexed = indexed; + Stored = stored; + Facet = facet; + OwnerType = ownerType; + } + + /// + /// Gets or sets the name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the display name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "displayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets the type. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the boolean that indicates the field is searchable as + /// free text. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "indexed")] + public bool Indexed { get; set; } + + /// + /// Gets or sets the boolean that indicates whether or not the field is + /// stored. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "stored")] + public bool Stored { get; set; } + + /// + /// Gets or sets the boolean that indicates whether or not the field is + /// a facet. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "facet")] + public bool Facet { get; set; } + + /// + /// Gets or sets the array of workflows containing the field. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "ownerType")] + public System.Collections.Generic.IList OwnerType { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs index b5a6c8bbdbd1..1e67518e3239 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The sort parameters for search. @@ -25,6 +19,9 @@ public SearchSort() { } /// /// Initializes a new instance of the SearchSort class. /// + /// The name of the field the search query is sorted + /// on. + /// The sort order of the search. public SearchSort(string name = default(string), string order = default(string)) { Name = name; @@ -34,13 +31,13 @@ public SearchSort() { } /// /// Gets or sets the name of the field the search query is sorted on. /// - [JsonProperty(PropertyName = "name")] + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets the sort order of the search. /// - [JsonProperty(PropertyName = "order")] + [Newtonsoft.Json.JsonProperty(PropertyName = "order")] public string Order { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SharedKeys.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SharedKeys.cs index cb87595206f8..0fd847a25fd8 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SharedKeys.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SharedKeys.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The shared keys for a workspace. @@ -25,6 +19,10 @@ public SharedKeys() { } /// /// Initializes a new instance of the SharedKeys class. /// + /// The primary shared key of a + /// workspace. + /// The secondary shared key of a + /// workspace. public SharedKeys(string primarySharedKey = default(string), string secondarySharedKey = default(string)) { PrimarySharedKey = primarySharedKey; @@ -34,13 +32,13 @@ public SharedKeys() { } /// /// Gets or sets the primary shared key of a workspace. /// - [JsonProperty(PropertyName = "primarySharedKey")] + [Newtonsoft.Json.JsonProperty(PropertyName = "primarySharedKey")] public string PrimarySharedKey { get; set; } /// /// Gets or sets the secondary shared key of a workspace. /// - [JsonProperty(PropertyName = "secondarySharedKey")] + [Newtonsoft.Json.JsonProperty(PropertyName = "secondarySharedKey")] public string SecondarySharedKey { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Sku.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Sku.cs index 6b748c8dd41c..8761a1987806 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Sku.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Sku.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The SKU (tier) of a workspace. @@ -25,6 +19,9 @@ public Sku() { } /// /// Initializes a new instance of the Sku class. /// + /// The name of the SKU. Possible values include: + /// 'Free', 'Standard', 'Premium', 'Unlimited', 'PerNode', + /// 'Standalone' public Sku(string name) { Name = name; @@ -32,19 +29,22 @@ public Sku(string name) /// /// Gets or sets the name of the SKU. Possible values include: 'Free', - /// 'Standard', 'Premium' + /// 'Standard', 'Premium', 'Unlimited', 'PerNode', 'Standalone' /// - [JsonProperty(PropertyName = "name")] + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Validate the object. Throws ValidationException if validation fails. + /// Validate the object. /// + /// + /// Thrown if validation fails + /// public virtual void Validate() { if (Name == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SkuNameEnum.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SkuNameEnum.cs index 0bf88e3414db..f3f26f28f7a2 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SkuNameEnum.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SkuNameEnum.cs @@ -1,12 +1,9 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime.Serialization; /// /// Defines values for SkuNameEnum. @@ -16,5 +13,8 @@ public static class SkuNameEnum public const string Free = "Free"; public const string Standard = "Standard"; public const string Premium = "Premium"; + public const string Unlimited = "Unlimited"; + public const string PerNode = "PerNode"; + public const string Standalone = "Standalone"; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs index 0d33f5b09852..cf94cddf69a1 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// Describes a storage account connection. @@ -25,6 +19,9 @@ public StorageAccount() { } /// /// Initializes a new instance of the StorageAccount class. /// + /// The Azure Resource Manager ID of the storage + /// account resource. + /// The storage account key. public StorageAccount(string id = default(string), string key = default(string)) { Id = id; @@ -35,13 +32,13 @@ public StorageAccount() { } /// Gets or sets the Azure Resource Manager ID of the storage account /// resource. /// - [JsonProperty(PropertyName = "id")] + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Gets or sets the storage account key. /// - [JsonProperty(PropertyName = "key")] + [Newtonsoft.Json.JsonProperty(PropertyName = "key")] public string Key { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs index 39cb500c46c4..f7aaf1b5114f 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs @@ -1,21 +1,15 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The top level storage insight resource container. /// - [JsonTransformation] + [Microsoft.Rest.Serialization.JsonTransformation] public partial class StorageInsight : Resource { /// @@ -26,7 +20,20 @@ public StorageInsight() { } /// /// Initializes a new instance of the StorageInsight class. /// - public StorageInsight(StorageAccount storageAccount, String id = default(String), String name = default(String), String type = default(String), String location = default(String), IDictionary tags = default(IDictionary), IList containers = default(IList), IList tables = default(IList), StorageInsightStatus status = default(StorageInsightStatus), string eTag = default(string)) + /// The storage account connection + /// details + /// Resource Id + /// Resource name + /// Resource type + /// Resource location + /// Resource tags + /// The names of the blob containers that the + /// workspace should read + /// The names of the Azure tables that the + /// workspace should read + /// The status of the storage insight + /// The ETag of the storage insight. + public StorageInsight(StorageAccount storageAccount, string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList containers = default(System.Collections.Generic.IList), System.Collections.Generic.IList tables = default(System.Collections.Generic.IList), StorageInsightStatus status = default(StorageInsightStatus), string eTag = default(string)) : base(id, name, type, location, tags) { Containers = containers; @@ -40,42 +47,45 @@ public StorageInsight() { } /// Gets or sets the names of the blob containers that the workspace /// should read /// - [JsonProperty(PropertyName = "properties.containers")] - public IList Containers { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.containers")] + public System.Collections.Generic.IList Containers { get; set; } /// /// Gets or sets the names of the Azure tables that the workspace /// should read /// - [JsonProperty(PropertyName = "properties.tables")] - public IList Tables { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.tables")] + public System.Collections.Generic.IList Tables { get; set; } /// /// Gets or sets the storage account connection details /// - [JsonProperty(PropertyName = "properties.storageAccount")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccount")] public StorageAccount StorageAccount { get; set; } /// /// Gets or sets the status of the storage insight /// - [JsonProperty(PropertyName = "properties.status")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.status")] public StorageInsightStatus Status { get; set; } /// /// Gets or sets the ETag of the storage insight. /// - [JsonProperty(PropertyName = "eTag")] + [Newtonsoft.Json.JsonProperty(PropertyName = "eTag")] public string ETag { get; set; } /// - /// Validate the object. Throws ValidationException if validation fails. + /// Validate the object. /// + /// + /// Thrown if validation fails + /// public virtual void Validate() { if (StorageAccount == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccount"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "StorageAccount"); } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs index 9debfef95ff7..dd0d81b29b6b 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The status of the storage insight. @@ -25,6 +19,8 @@ public StorageInsightStatus() { } /// /// Initializes a new instance of the StorageInsightStatus class. /// + /// The state of the storage insight connection to + /// the workspace public StorageInsightStatus(string state = default(string)) { State = state; @@ -34,7 +30,7 @@ public StorageInsightStatus() { } /// Gets or sets the state of the storage insight connection to the /// workspace /// - [JsonProperty(PropertyName = "state")] + [Newtonsoft.Json.JsonProperty(PropertyName = "state")] public string State { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Tag.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Tag.cs index 1589c1052d3c..810d1fc2fe5b 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Tag.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Tag.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// A tag of a saved search. @@ -25,7 +19,9 @@ public Tag() { } /// /// Initializes a new instance of the Tag class. /// - public Tag(string name = default(string), string value = default(string)) + /// The tag name. + /// The tag value. + public Tag(string name, string value) { Name = name; Value = value; @@ -34,14 +30,31 @@ public Tag() { } /// /// Gets or sets the tag name. /// - [JsonProperty(PropertyName = "Name")] + [Newtonsoft.Json.JsonProperty(PropertyName = "Name")] public string Name { get; set; } /// /// Gets or sets the tag value. /// - [JsonProperty(PropertyName = "Value")] + [Newtonsoft.Json.JsonProperty(PropertyName = "Value")] public string Value { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + } + if (Value == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Value"); + } + } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/UsageMetric.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/UsageMetric.cs index 043fdaf16f89..83d8b649c0a2 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/UsageMetric.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/UsageMetric.cs @@ -1,16 +1,10 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// A metric describing the usage of a resource. @@ -25,7 +19,15 @@ public UsageMetric() { } /// /// Initializes a new instance of the UsageMetric class. /// - public UsageMetric(MetricName name = default(MetricName), string unit = default(string), double? currentValue = default(double?), double? limit = default(double?), DateTime? nextResetTime = default(DateTime?), string quotaPeriod = default(string)) + /// The name of the metric. + /// The units used for the metric. + /// The current value of the metric. + /// The quota limit for the metric. + /// The time that the metric's value will + /// reset. + /// The quota period that determines the + /// length of time between value resets. + public UsageMetric(MetricName name = default(MetricName), string unit = default(string), double? currentValue = default(double?), double? limit = default(double?), System.DateTime? nextResetTime = default(System.DateTime?), string quotaPeriod = default(string)) { Name = name; Unit = unit; @@ -38,38 +40,38 @@ public UsageMetric() { } /// /// Gets or sets the name of the metric. /// - [JsonProperty(PropertyName = "name")] + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public MetricName Name { get; set; } /// /// Gets or sets the units used for the metric. /// - [JsonProperty(PropertyName = "unit")] + [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] public string Unit { get; set; } /// /// Gets or sets the current value of the metric. /// - [JsonProperty(PropertyName = "currentValue")] + [Newtonsoft.Json.JsonProperty(PropertyName = "currentValue")] public double? CurrentValue { get; set; } /// /// Gets or sets the quota limit for the metric. /// - [JsonProperty(PropertyName = "limit")] + [Newtonsoft.Json.JsonProperty(PropertyName = "limit")] public double? Limit { get; set; } /// /// Gets or sets the time that the metric's value will reset. /// - [JsonProperty(PropertyName = "nextResetTime")] - public DateTime? NextResetTime { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "nextResetTime")] + public System.DateTime? NextResetTime { get; set; } /// /// Gets or sets the quota period that determines the length of time /// between value resets. /// - [JsonProperty(PropertyName = "quotaPeriod")] + [Newtonsoft.Json.JsonProperty(PropertyName = "quotaPeriod")] public string QuotaPeriod { get; set; } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs index b8f8fc03441e..f9b0441ec1b1 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs @@ -1,21 +1,15 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights.Models { - using System; using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; /// /// The top level Workspace resource container. /// - [JsonTransformation] + [Microsoft.Rest.Serialization.JsonTransformation] public partial class Workspace : Resource { /// @@ -26,7 +20,31 @@ public Workspace() { } /// /// Initializes a new instance of the Workspace class. /// - public Workspace(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string source = default(string), string customerId = default(string), string portalUrl = default(string), Sku sku = default(Sku), string eTag = default(string)) + /// Resource Id + /// Resource name + /// Resource type + /// Resource location + /// Resource tags + /// The provisioning state of the + /// workspace. Possible values include: 'Creating', 'Succeeded', + /// 'Failed', 'Canceled', 'Deleting', 'ProvisioningAccount' + /// The source of the workspace. Source defines + /// where the workspace was created. 'Azure' implies it was created in + /// Azure. 'External' implies it was created via the Operational + /// Insights Portal. This value is set on the service side and + /// read-only on the client side. + /// The ID associated with the workspace. + /// Setting this value at creation time allows the workspace being + /// created to be linked to an existing workspace. + /// The URL of the Operational Insights portal + /// for this workspace. This value is set on the service side and + /// read-only on the client side. + /// The SKU of the workspace. + /// The workspace data retention in days. + /// -1 means Unlimited retention for the Unlimited Sku. 730 days is the + /// maximum allowed for all other Skus. + /// The ETag of the workspace. + public Workspace(string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string provisioningState = default(string), string source = default(string), string customerId = default(string), string portalUrl = default(string), Sku sku = default(Sku), int? retentionInDays = default(int?), string eTag = default(string)) : base(id, name, type, location, tags) { ProvisioningState = provisioningState; @@ -34,6 +52,7 @@ public Workspace() { } CustomerId = customerId; PortalUrl = portalUrl; Sku = sku; + RetentionInDays = retentionInDays; ETag = eTag; } @@ -42,17 +61,17 @@ public Workspace() { } /// values include: 'Creating', 'Succeeded', 'Failed', 'Canceled', /// 'Deleting', 'ProvisioningAccount' /// - [JsonProperty(PropertyName = "properties.provisioningState")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; set; } /// - /// Gets or set the source of the workspace. Source defines where the - /// workspace was created. 'Azure' implies it was created in Azure. + /// Gets or sets the source of the workspace. Source defines where the + /// workspace was created. 'Azure' implies it was created in Azure. /// 'External' implies it was created via the Operational Insights - /// Portal. This value is set on the service side and read-only on - /// the client side. + /// Portal. This value is set on the service side and read-only on the + /// client side. /// - [JsonProperty(PropertyName = "properties.source")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.source")] public string Source { get; set; } /// @@ -60,38 +79,57 @@ public Workspace() { } /// value at creation time allows the workspace being created to be /// linked to an existing workspace. /// - [JsonProperty(PropertyName = "properties.customerId")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.customerId")] public string CustomerId { get; set; } /// /// Gets or sets the URL of the Operational Insights portal for this - /// workspace. This value is set on the service side and read-only - /// on the client side. + /// workspace. This value is set on the service side and read-only on + /// the client side. /// - [JsonProperty(PropertyName = "properties.portalUrl")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.portalUrl")] public string PortalUrl { get; set; } /// /// Gets or sets the SKU of the workspace. /// - [JsonProperty(PropertyName = "properties.sku")] + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.sku")] public Sku Sku { get; set; } + /// + /// Gets or sets the workspace data retention in days. -1 means + /// Unlimited retention for the Unlimited Sku. 730 days is the maximum + /// allowed for all other Skus. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.retentionInDays")] + public int? RetentionInDays { get; set; } + /// /// Gets or sets the ETag of the workspace. /// - [JsonProperty(PropertyName = "eTag")] + [Newtonsoft.Json.JsonProperty(PropertyName = "eTag")] public string ETag { get; set; } /// - /// Validate the object. Throws ValidationException if validation fails. + /// Validate the object. /// + /// + /// Thrown if validation fails + /// public virtual void Validate() { if (this.Sku != null) { this.Sku.Validate(); } + if (this.RetentionInDays > 730) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMaximum, "RetentionInDays", 730); + } + if (this.RetentionInDays < -1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMinimum, "RetentionInDays", -1); + } } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListManagementGroupsResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListManagementGroupsResult.cs new file mode 100644 index 000000000000..a442b2f03b4c --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListManagementGroupsResult.cs @@ -0,0 +1,38 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// The list workspace managmement groups operation response. + /// + public partial class WorkspaceListManagementGroupsResult + { + /// + /// Initializes a new instance of the + /// WorkspaceListManagementGroupsResult class. + /// + public WorkspaceListManagementGroupsResult() { } + + /// + /// Initializes a new instance of the + /// WorkspaceListManagementGroupsResult class. + /// + /// Gets or sets a list of management groups + /// attached to the workspace. + public WorkspaceListManagementGroupsResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) + { + Value = value; + } + + /// + /// Gets or sets a list of management groups attached to the workspace. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListResult.cs new file mode 100644 index 000000000000..69aca73c9a36 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListResult.cs @@ -0,0 +1,35 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// The list workspaces operation response. + /// + public partial class WorkspaceListResult + { + /// + /// Initializes a new instance of the WorkspaceListResult class. + /// + public WorkspaceListResult() { } + + /// + /// Initializes a new instance of the WorkspaceListResult class. + /// + /// A list of workspaces. + public WorkspaceListResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) + { + Value = value; + } + + /// + /// Gets or sets a list of workspaces. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/OperationalInsightsManagementClient.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/OperationalInsightsManagementClient.cs index 89077972f6b1..c99b1c0240dc 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/OperationalInsightsManagementClient.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/OperationalInsightsManagementClient.cs @@ -1,50 +1,38 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - using System; using System.Linq; - using System.Collections.Generic; - using System.Diagnostics; - 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; /// /// .Net client wrapper for the REST API for Azure Operational Insights /// - public partial class OperationalInsightsManagementClient : ServiceClient, IOperationalInsightsManagementClient, IAzureClient + public partial class OperationalInsightsManagementClient : Microsoft.Rest.ServiceClient, IOperationalInsightsManagementClient, IAzureClient { /// /// The base URI of the service. /// - public Uri BaseUri { get; set; } + public System.Uri BaseUri { get; set; } /// /// Gets or sets json serialization settings. /// - public JsonSerializerSettings SerializationSettings { get; private set; } + public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public JsonSerializerSettings DeserializationSettings { get; private set; } + public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } /// - /// Gets Azure subscription credentials. + /// Credentials needed for the client to connect to Azure. /// - public ServiceClientCredentials Credentials { get; private set; } + public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } /// /// Gets subscription credentials which uniquely identify Microsoft Azure @@ -91,9 +79,9 @@ public partial class OperationalInsightsManagementClient : ServiceClient - /// Gets the ISearchOperations. + /// Gets the ISavedSearchesOperations. /// - public virtual ISearchOperations Search { get; private set; } + public virtual ISavedSearchesOperations SavedSearches { get; private set; } /// /// Initializes a new instance of the OperationalInsightsManagementClient class. @@ -101,7 +89,7 @@ public partial class OperationalInsightsManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected OperationalInsightsManagementClient(params DelegatingHandler[] handlers) : base(handlers) + protected OperationalInsightsManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) { this.Initialize(); } @@ -115,7 +103,7 @@ protected OperationalInsightsManagementClient(params DelegatingHandler[] handler /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected OperationalInsightsManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected OperationalInsightsManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) { this.Initialize(); } @@ -129,11 +117,14 @@ protected OperationalInsightsManagementClient(HttpClientHandler rootHandler, par /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected OperationalInsightsManagementClient(Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + /// + /// Thrown when a required parameter is null + /// + protected OperationalInsightsManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } this.BaseUri = baseUri; } @@ -150,11 +141,14 @@ protected OperationalInsightsManagementClient(Uri baseUri, params DelegatingHand /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected OperationalInsightsManagementClient(Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + /// + /// Thrown when a required parameter is null + /// + protected OperationalInsightsManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } this.BaseUri = baseUri; } @@ -163,16 +157,19 @@ protected OperationalInsightsManagementClient(Uri baseUri, HttpClientHandler roo /// Initializes a new instance of the OperationalInsightsManagementClient class. /// /// - /// Required. Gets Azure subscription credentials. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - public OperationalInsightsManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + /// + /// Thrown when a required parameter is null + /// + public OperationalInsightsManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } this.Credentials = credentials; if (this.Credentials != null) @@ -185,7 +182,7 @@ public OperationalInsightsManagementClient(ServiceClientCredentials credentials, /// Initializes a new instance of the OperationalInsightsManagementClient class. /// /// - /// Required. Gets Azure subscription credentials. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The http client handler used to handle http transport. @@ -193,11 +190,14 @@ public OperationalInsightsManagementClient(ServiceClientCredentials credentials, /// /// Optional. The delegating handlers to add to the http client pipeline. /// - public OperationalInsightsManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + /// + /// Thrown when a required parameter is null + /// + public OperationalInsightsManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } this.Credentials = credentials; if (this.Credentials != null) @@ -213,20 +213,23 @@ public OperationalInsightsManagementClient(ServiceClientCredentials credentials, /// Optional. The base URI of the service. /// /// - /// Required. Gets Azure subscription credentials. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - public OperationalInsightsManagementClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + /// + /// Thrown when a required parameter is null + /// + public OperationalInsightsManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } this.BaseUri = baseUri; this.Credentials = credentials; @@ -243,7 +246,7 @@ public OperationalInsightsManagementClient(Uri baseUri, ServiceClientCredentials /// Optional. The base URI of the service. /// /// - /// Required. Gets Azure subscription credentials. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The http client handler used to handle http transport. @@ -251,15 +254,18 @@ public OperationalInsightsManagementClient(Uri baseUri, ServiceClientCredentials /// /// Optional. The delegating handlers to add to the http client pipeline. /// - public OperationalInsightsManagementClient(Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + /// + /// Thrown when a required parameter is null + /// + public OperationalInsightsManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } this.BaseUri = baseUri; this.Credentials = credentials; @@ -269,6 +275,10 @@ public OperationalInsightsManagementClient(Uri baseUri, ServiceClientCredentials } } + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); /// /// Initializes client properties. /// @@ -278,39 +288,40 @@ private void Initialize() this.DataSources = new DataSourcesOperations(this); this.Workspaces = new WorkspacesOperations(this); this.StorageInsights = new StorageInsightsOperations(this); - this.Search = new SearchOperations(this); - this.BaseUri = new Uri("https://management.azure.com"); + this.SavedSearches = new SavedSearchesOperations(this); + this.BaseUri = new System.Uri("https://management.azure.com"); this.AcceptLanguage = "en-US"; this.LongRunningOperationRetryTimeout = 30; this.GenerateClientRequestId = true; - SerializationSettings = new JsonSerializerSettings + SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings { - Formatting = Formatting.Indented, - DateFormatHandling = DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = DateTimeZoneHandling.Utc, - NullValueHandling = NullValueHandling.Ignore, - ReferenceLoopHandling = ReferenceLoopHandling.Serialize, - ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new List + Formatting = Newtonsoft.Json.Formatting.Indented, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + Converters = new System.Collections.Generic.List { - new Iso8601TimeSpanConverter() + new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings = new JsonSerializerSettings + SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); + DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings { - DateFormatHandling = DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = DateTimeZoneHandling.Utc, - NullValueHandling = NullValueHandling.Ignore, - ReferenceLoopHandling = ReferenceLoopHandling.Serialize, - ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new List + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + Converters = new System.Collections.Generic.List { - new Iso8601TimeSpanConverter() + new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() } }; - DeserializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + CustomInitialize(); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperations.cs new file mode 100644 index 000000000000..e627b3d6d9e2 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperations.cs @@ -0,0 +1,1086 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// SavedSearchesOperations operations. + /// + internal partial class SavedSearchesOperations : Microsoft.Rest.IServiceOperations, ISavedSearchesOperations + { + /// + /// Initializes a new instance of the SavedSearchesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SavedSearchesOperations(OperationalInsightsManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the OperationalInsightsManagementClient + /// + public OperationalInsightsManagementClient Client { get; private set; } + + /// + /// Deletes the specified saved search in a given workspace. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// Name of the saved search. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (savedSearchName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "savedSearchName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("savedSearchName", savedSearchName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{savedSearchName}", System.Uri.EscapeDataString(savedSearchName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Creates or updates a saved search for a given workspace. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the saved search. + /// + /// + /// The parameters required to save a search. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, SavedSearchCreateOrUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (savedSearchName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "savedSearchName"); + } + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("savedSearchName", savedSearchName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{savedSearchName}", System.Uri.EscapeDataString(savedSearchName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the specified saved search for a given workspace. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the saved search. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (savedSearchName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "savedSearchName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("savedSearchName", savedSearchName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{savedSearchName}", System.Uri.EscapeDataString(savedSearchName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the saved searches for a given Log Analytics Workspace + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByWorkspace", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the results from a saved search for a given workspace. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The name of the saved search. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (savedSearchName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "savedSearchName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("savedSearchName", savedSearchName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetResults", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchName}/results").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{savedSearchName}", System.Uri.EscapeDataString(savedSearchName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperationsExtensions.cs new file mode 100644 index 000000000000..3534d3748185 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperationsExtensions.cs @@ -0,0 +1,244 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for SavedSearchesOperations. + /// + public static partial class SavedSearchesOperationsExtensions + { + /// + /// Deletes the specified saved search in a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// Name of the saved search. + /// + public static void Delete(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName) + { + System.Threading.Tasks.Task.Factory.StartNew(s => ((ISavedSearchesOperations)s).DeleteAsync(resourceGroupName, workspaceName, savedSearchName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified saved search in a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// Name of the saved search. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates or updates a saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the saved search. + /// + /// + /// The parameters required to save a search. + /// + public static SavedSearch CreateOrUpdate(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, SavedSearchCreateOrUpdateParameters parameters) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ISavedSearchesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, savedSearchName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the saved search. + /// + /// + /// The parameters required to save a search. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, SavedSearchCreateOrUpdateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the specified saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the saved search. + /// + public static SavedSearch Get(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ISavedSearchesOperations)s).GetAsync(resourceGroupName, workspaceName, savedSearchName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the specified saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the saved search. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the saved searches for a given Log Analytics Workspace + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + public static SavedSearchesListResult ListByWorkspace(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ISavedSearchesOperations)s).ListByWorkspaceAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the saved searches for a given Log Analytics Workspace + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task ListByWorkspaceAsync(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByWorkspaceWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the results from a saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The name of the saved search. + /// + public static SearchResultsResponse GetResults(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ISavedSearchesOperations)s).GetResultsAsync(resourceGroupName, workspaceName, savedSearchName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the results from a saved search for a given workspace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The name of the saved search. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetResultsAsync(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperations.cs deleted file mode 100644 index 8a53ab953b77..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperations.cs +++ /dev/null @@ -1,1500 +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.OperationalInsights -{ - 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; - - /// - /// SearchOperations operations. - /// - internal partial class SearchOperations : IServiceOperations, ISearchOperations - { - /// - /// Initializes a new instance of the SearchOperations class. - /// - /// - /// Reference to the service client. - /// - internal SearchOperations(OperationalInsightsManagementClient client) - { - if (client == null) - { - throw new ArgumentNullException("client"); - } - this.Client = client; - } - - /// - /// Gets a reference to the OperationalInsightsManagementClient - /// - public OperationalInsightsManagementClient Client { get; private set; } - - /// - /// Deletes the specified saved search in a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task DeleteSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (workspaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); - } - if (savedSearchId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "savedSearchId"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2015-03-20"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("savedSearchId", savedSearchId); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteSavedSearch", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchId}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{savedSearchId}", Uri.EscapeDataString(savedSearchId)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); - } - if (this.Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - _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")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Creates or updates a saved search for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The parameters required to save a search. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task CreateOrUpdateSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, SearchCreateOrUpdateSavedSearchParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (workspaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); - } - if (savedSearchId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "savedSearchId"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2015-03-20"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("savedSearchId", savedSearchId); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateSavedSearch", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchId}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{savedSearchId}", Uri.EscapeDataString(savedSearchId)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _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; - 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) - { - 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)); - _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")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the specified saved search for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetSavedSearchWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (workspaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); - } - if (savedSearchId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "savedSearchId"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2015-03-20"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("savedSearchId", savedSearchId); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSavedSearch", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchId}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{savedSearchId}", Uri.EscapeDataString(savedSearchId)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); - } - if (this.Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the saved searches for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> ListSavedSearchesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (workspaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2015-03-20"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListSavedSearches", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); - } - if (this.Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the results from a saved search for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetSavedSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (workspaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); - } - if (savedSearchId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "savedSearchId"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2015-03-20"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("savedSearchId", savedSearchId); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSavedSearchResults", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/savedSearches/{savedSearchId}/results").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{savedSearchId}", Uri.EscapeDataString(savedSearchId)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); - } - if (this.Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the schema for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetSchemaWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (workspaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2015-03-20"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSchema", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/schema").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); - } - if (this.Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the search results for a given workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The parameters required to execute a search query. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchGetSearchResultsParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (workspaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2015-03-20"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSearchResults", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); - } - if (this.Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - 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) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets updated search results for a given search query. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the search that will have results updated. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> UpdateSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string id, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (workspaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); - } - if (id == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "id"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2015-03-20"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("id", id); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateSearchResults", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search/{id}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{id}", Uri.EscapeDataString(id)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); - } - if (this.Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - 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/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperationsExtensions.cs deleted file mode 100644 index ddbe595c9d95..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SearchOperationsExtensions.cs +++ /dev/null @@ -1,378 +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.OperationalInsights -{ - 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 SearchOperations. - /// - public static partial class SearchOperationsExtensions - { - /// - /// Deletes the specified saved search in a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - public static void DeleteSavedSearch(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId) - { - Task.Factory.StartNew(s => ((ISearchOperations)s).DeleteSavedSearchAsync(resourceGroupName, workspaceName, savedSearchId), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Deletes the specified saved search in a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteSavedSearchAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, CancellationToken cancellationToken = default(CancellationToken)) - { - await operations.DeleteSavedSearchWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchId, null, cancellationToken).ConfigureAwait(false); - } - - /// - /// Creates or updates a saved search for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The parameters required to save a search. - /// - public static void CreateOrUpdateSavedSearch(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, SearchCreateOrUpdateSavedSearchParameters parameters) - { - Task.Factory.StartNew(s => ((ISearchOperations)s).CreateOrUpdateSavedSearchAsync(resourceGroupName, workspaceName, savedSearchId, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Creates or updates a saved search for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The parameters required to save a search. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateSavedSearchAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, SearchCreateOrUpdateSavedSearchParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - await operations.CreateOrUpdateSavedSearchWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchId, parameters, null, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets the specified saved search for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - public static SearchGetSavedSearchResult GetSavedSearch(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId) - { - return Task.Factory.StartNew(s => ((ISearchOperations)s).GetSavedSearchAsync(resourceGroupName, workspaceName, savedSearchId), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets the specified saved search for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The cancellation token. - /// - public static async Task GetSavedSearchAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetSavedSearchWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the saved searches for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - public static SearchListSavedSearchResult ListSavedSearches(this ISearchOperations operations, string resourceGroupName, string workspaceName) - { - return Task.Factory.StartNew(s => ((ISearchOperations)s).ListSavedSearchesAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets the saved searches for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The cancellation token. - /// - public static async Task ListSavedSearchesAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListSavedSearchesWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the results from a saved search for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - public static SearchGetSearchResultsResponse GetSavedSearchResults(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId) - { - return Task.Factory.StartNew(s => ((ISearchOperations)s).GetSavedSearchResultsAsync(resourceGroupName, workspaceName, savedSearchId), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets the results from a saved search for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the saved search. - /// - /// - /// The cancellation token. - /// - public static async Task GetSavedSearchResultsAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string savedSearchId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetSavedSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the schema for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - public static SearchGetSchemaResponse GetSchema(this ISearchOperations operations, string resourceGroupName, string workspaceName) - { - return Task.Factory.StartNew(s => ((ISearchOperations)s).GetSchemaAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets the schema for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The cancellation token. - /// - public static async Task GetSchemaAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetSchemaWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the search results for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The parameters required to execute a search query. - /// - public static SearchGetSearchResultsResponse GetSearchResults(this ISearchOperations operations, string resourceGroupName, string workspaceName, SearchGetSearchResultsParameters parameters) - { - return Task.Factory.StartNew(s => ((ISearchOperations)s).GetSearchResultsAsync(resourceGroupName, workspaceName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets the search results for a given workspace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The parameters required to execute a search query. - /// - /// - /// The cancellation token. - /// - public static async Task GetSearchResultsAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, SearchGetSearchResultsParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets updated search results for a given search query. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the search that will have results updated. - /// - public static IEnumerable UpdateSearchResults(this ISearchOperations operations, string resourceGroupName, string workspaceName, string id) - { - return Task.Factory.StartNew(s => ((ISearchOperations)s).UpdateSearchResultsAsync(resourceGroupName, workspaceName, id), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets updated search results for a given search query. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// A unique workspace instance name. - /// - /// - /// The id of the search that will have results updated. - /// - /// - /// The cancellation token. - /// - public static async Task> UpdateSearchResultsAsync(this ISearchOperations operations, string resourceGroupName, string workspaceName, string id, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.UpdateSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, id, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs index c0fa04b3ab14..955b55ad63f6 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs @@ -1,29 +1,18 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; /// /// StorageInsightsOperations operations. /// - internal partial class StorageInsightsOperations : IServiceOperations, IStorageInsightsOperations + internal partial class StorageInsightsOperations : Microsoft.Rest.IServiceOperations, IStorageInsightsOperations { /// /// Initializes a new instance of the StorageInsightsOperations class. @@ -31,11 +20,14 @@ internal partial class StorageInsightsOperations : IServiceOperations /// Reference to the service client. /// + /// + /// Thrown when a required parameter is null + /// internal StorageInsightsOperations(OperationalInsightsManagementClient client) { if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } this.Client = client; } @@ -49,13 +41,14 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// Create or update a storage insight. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the storage insight + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// - /// - /// The parameters required to create or update a storage insight. + /// + /// Name of the storageInsightsConfigs resource /// /// /// The parameters required to create or update a storage insight. @@ -66,26 +59,50 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string name, StorageInsight parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, StorageInsight parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } - if (name == null) + if (storageInsightName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "name"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "storageInsightName"); } if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { @@ -93,49 +110,49 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-03-20"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("name", name); + tracingParameters.Add("storageInsightName", storageInsightName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{name}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{name}", Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{storageInsightName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{storageInsightName}", System.Uri.EscapeDataString(storageInsightName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -161,9 +178,9 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) string _requestContent = null; 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"); + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials if (this.Client.Credentials != null) @@ -174,43 +191,43 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 201 && (int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -220,7 +237,7 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -233,16 +250,16 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } // Deserialize Response @@ -251,21 +268,21 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -274,13 +291,13 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// Gets a storage insight instance. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace that contains the storage insight. /// /// - /// The name of the storage insight + /// Name of the storageInsightsConfigs resource /// /// /// Headers that will be added to request. @@ -288,67 +305,91 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (storageInsightName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "storageInsightName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "storageInsightName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-03-20"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("storageInsightName", storageInsightName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{storageInsightName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{storageInsightName}", Uri.EscapeDataString(storageInsightName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{storageInsightName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{storageInsightName}", System.Uri.EscapeDataString(storageInsightName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -381,43 +422,43 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -427,7 +468,7 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -440,36 +481,37 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes a storage insight instance. + /// Deletes a storageInsightsConfigs resource /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the storage insight. + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// /// - /// The name of the storage insight. + /// Name of the storageInsightsConfigs resource /// /// /// Headers that will be added to request. @@ -477,67 +519,88 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string storageInsightName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (storageInsightName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "storageInsightName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "storageInsightName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-03-20"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("storageInsightName", storageInsightName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{storageInsightName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{storageInsightName}", Uri.EscapeDataString(storageInsightName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs/{storageInsightName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{storageInsightName}", System.Uri.EscapeDataString(storageInsightName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -570,30 +633,35 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -603,7 +671,7 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -612,20 +680,20 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the first page of storage insight instances in a workspace with the - /// link to the next page. + /// Lists the storage insight instances within a workspace /// /// - /// The resource group name of the storage insights. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The workspace that contains the storage insights. + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// /// /// Headers that will be added to request. @@ -633,61 +701,85 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListInWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task>> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-03-20"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListInWorkspace", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByWorkspace", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/storageInsightConfigs").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -720,43 +812,43 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -766,7 +858,7 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -779,28 +871,27 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the first page of storage insight instances in a workspace with the - /// link to the next page. + /// Lists the storage insight instances within a workspace /// /// /// The NextLink from the previous successful call to List operation. @@ -811,43 +902,52 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListInWorkspaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task>> ListByWorkspaceNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListInWorkspaceNext", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByWorkspaceNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -880,43 +980,43 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -926,7 +1026,7 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -939,21 +1039,21 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs index 59afed38d965..b4f33a704ad3 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs @@ -1,17 +1,12 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; + using Microsoft.Rest.Azure; + using Models; /// /// Extension methods for StorageInsightsOperations. @@ -25,20 +20,21 @@ public static partial class StorageInsightsOperationsExtensions /// The operations group for this extension method. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the storage insight + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// - /// - /// The parameters required to create or update a storage insight. + /// + /// Name of the storageInsightsConfigs resource /// /// /// The parameters required to create or update a storage insight. /// - public static StorageInsight CreateOrUpdate(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string name, StorageInsight parameters) + public static StorageInsight CreateOrUpdate(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName, StorageInsight parameters) { - return Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, storageInsightName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -48,13 +44,14 @@ public static StorageInsight CreateOrUpdate(this IStorageInsightsOperations oper /// The operations group for this extension method. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the parent workspace that will contain the storage insight + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// - /// - /// The parameters required to create or update a storage insight. + /// + /// Name of the storageInsightsConfigs resource /// /// /// The parameters required to create or update a storage insight. @@ -62,9 +59,9 @@ public static StorageInsight CreateOrUpdate(this IStorageInsightsOperations oper /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string name, StorageInsight parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName, StorageInsight parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, storageInsightName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -77,17 +74,17 @@ public static StorageInsight CreateOrUpdate(this IStorageInsightsOperations oper /// The operations group for this extension method. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace that contains the storage insight. /// /// - /// The name of the storage insight + /// Name of the storageInsightsConfigs resource /// public static StorageInsight Get(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName) { - return Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).GetAsync(resourceGroupName, workspaceName, storageInsightName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).GetAsync(resourceGroupName, workspaceName, storageInsightName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -97,18 +94,18 @@ public static StorageInsight Get(this IStorageInsightsOperations operations, str /// The operations group for this extension method. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace that contains the storage insight. /// /// - /// The name of the storage insight + /// Name of the storageInsightsConfigs resource /// /// /// The cancellation token. /// - public static async Task GetAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task GetAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, storageInsightName, null, cancellationToken).ConfigureAwait(false)) { @@ -117,93 +114,94 @@ public static StorageInsight Get(this IStorageInsightsOperations operations, str } /// - /// Deletes a storage insight instance. + /// Deletes a storageInsightsConfigs resource /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the storage insight. + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// /// - /// The name of the storage insight. + /// Name of the storageInsightsConfigs resource /// public static void Delete(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName) { - Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).DeleteAsync(resourceGroupName, workspaceName, storageInsightName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + System.Threading.Tasks.Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).DeleteAsync(resourceGroupName, workspaceName, storageInsightName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Deletes a storage insight instance. + /// Deletes a storageInsightsConfigs resource /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the storage insight. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the storage insight. + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// /// - /// The name of the storage insight. + /// Name of the storageInsightsConfigs resource /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task DeleteAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, string storageInsightName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, storageInsightName, null, cancellationToken).ConfigureAwait(false); } /// - /// Gets the first page of storage insight instances in a workspace with the - /// link to the next page. + /// Lists the storage insight instances within a workspace /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the storage insights. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The workspace that contains the storage insights. + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// - public static IPage ListInWorkspace(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName) + public static Microsoft.Rest.Azure.IPage ListByWorkspace(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).ListInWorkspaceAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).ListByWorkspaceAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets the first page of storage insight instances in a workspace with the - /// link to the next page. + /// Lists the storage insight instances within a workspace /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the storage insights. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The workspace that contains the storage insights. + /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// resource /// /// /// The cancellation token. /// - public static async Task> ListInWorkspaceAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByWorkspaceAsync(this IStorageInsightsOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListInWorkspaceWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByWorkspaceWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the first page of storage insight instances in a workspace with the - /// link to the next page. + /// Lists the storage insight instances within a workspace /// /// /// The operations group for this extension method. @@ -211,14 +209,13 @@ public static IPage ListInWorkspace(this IStorageInsightsOperati /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListInWorkspaceNext(this IStorageInsightsOperations operations, string nextPageLink) + public static Microsoft.Rest.Azure.IPage ListByWorkspaceNext(this IStorageInsightsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).ListInWorkspaceNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IStorageInsightsOperations)s).ListByWorkspaceNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets the first page of storage insight instances in a workspace with the - /// link to the next page. + /// Lists the storage insight instances within a workspace /// /// /// The operations group for this extension method. @@ -229,9 +226,9 @@ public static IPage ListInWorkspaceNext(this IStorageInsightsOpe /// /// The cancellation token. /// - public static async Task> ListInWorkspaceNextAsync(this IStorageInsightsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByWorkspaceNextAsync(this IStorageInsightsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListInWorkspaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByWorkspaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs index a13f990678a8..3125bbb5aad9 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs @@ -1,29 +1,18 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; /// /// WorkspacesOperations operations. /// - internal partial class WorkspacesOperations : IServiceOperations, IWorkspacesOperations + internal partial class WorkspacesOperations : Microsoft.Rest.IServiceOperations, IWorkspacesOperations { /// /// Initializes a new instance of the WorkspacesOperations class. @@ -31,11 +20,14 @@ internal partial class WorkspacesOperations : IServiceOperations /// Reference to the service client. /// + /// + /// Thrown when a required parameter is null + /// internal WorkspacesOperations(OperationalInsightsManagementClient client) { if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } this.Client = client; } @@ -49,10 +41,10 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// Disables an intelligence back for a given workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The name of the intelligence pack to be disabled. @@ -63,67 +55,88 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task DisableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task DisableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (intelligencePackName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "intelligencePackName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "intelligencePackName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("intelligencePackName", intelligencePackName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DisableIntelligencePack", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "DisableIntelligencePack", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks/{intelligencePackName}/Disable").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{intelligencePackName}", Uri.EscapeDataString(intelligencePackName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks/{intelligencePackName}/Disable").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{intelligencePackName}", System.Uri.EscapeDataString(intelligencePackName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -156,30 +169,35 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -189,7 +207,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -198,7 +216,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -207,10 +225,10 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// Enables an intelligence back for a given workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The name of the intelligence pack to be enabled. @@ -221,67 +239,88 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task EnableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task EnableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (intelligencePackName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "intelligencePackName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "intelligencePackName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("intelligencePackName", intelligencePackName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "EnableIntelligencePack", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "EnableIntelligencePack", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks/{intelligencePackName}/Enable").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{intelligencePackName}", Uri.EscapeDataString(intelligencePackName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks/{intelligencePackName}/Enable").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{intelligencePackName}", System.Uri.EscapeDataString(intelligencePackName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -314,30 +353,35 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -347,7 +391,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -356,7 +400,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -366,10 +410,10 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// disabled for a given workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// Headers that will be added to request. @@ -377,61 +421,85 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListIntelligencePacksWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task>> ListIntelligencePacksWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListIntelligencePacks", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListIntelligencePacks", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -464,43 +532,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -510,7 +578,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -523,21 +591,21 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -546,10 +614,10 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// Gets the shared keys for a workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace name. + /// Name of the Log Analytics Workspace. /// /// /// Headers that will be added to request. @@ -557,61 +625,85 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> GetSharedKeysWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> GetSharedKeysWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSharedKeys", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetSharedKeys", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/sharedKeys").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/sharedKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -644,43 +736,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -690,7 +782,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -703,21 +795,21 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -726,7 +818,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// Gets a list of usage metrics for a workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace. @@ -737,61 +829,85 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListUsages", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListUsages", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/usages").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/usages").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -824,43 +940,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -870,7 +986,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -883,21 +999,21 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -906,7 +1022,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// Gets a list of management groups connected to a workspace. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace. @@ -917,61 +1033,85 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListManagementGroups", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListManagementGroups", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/managementGroups").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/managementGroups").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -1004,43 +1144,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1050,7 +1190,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1063,31 +1203,30 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the first page of workspace instances in a resource group with the - /// link to the next page. + /// Gets workspaces in a resource group. /// /// - /// The resource group name of the workspaces. + /// The name of the resource group to get. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -1095,55 +1234,79 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListInResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListInResourceGroup", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -1176,43 +1339,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1222,7 +1385,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1235,28 +1398,27 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the first page of workspace instances in a subscription with the link - /// to the next page. + /// Gets the workspaces in a subscription. /// /// /// Headers that will be added to request. @@ -1264,49 +1426,58 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListInSubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListInSubscription", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.OperationalInsights/workspaces").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.OperationalInsights/workspaces").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -1339,43 +1510,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1385,7 +1556,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1398,25 +1569,53 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } + /// + /// Create or update a workspace. + /// + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Workspace parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync( + resourceGroupName, workspaceName, parameters, customHeaders, cancellationToken); + return await this.Client.GetPutOrPatchOperationResultAsync(_response, + customHeaders, + cancellationToken); + } + /// /// Deletes a workspace instance. /// @@ -1424,7 +1623,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// The resource group name of the workspace. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// Headers that will be added to request. @@ -1432,61 +1631,67 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -1519,30 +1724,35 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1552,7 +1762,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1561,7 +1771,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -1573,7 +1783,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// The resource group name of the workspace. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// Headers that will be added to request. @@ -1581,61 +1791,70 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); } if (workspaceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workspaceName}", Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -1668,43 +1887,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1714,7 +1933,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1727,135 +1946,88 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Create or update a workspace. - /// - /// - /// The resource group name of the workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, Workspace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync( - resourceGroupName, name, parameters, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); - } - - /// - /// Create or update a workspace. + /// Get a list of workspaces which the current user has administrator + /// privileges and are not associated with an Azure Subscription. The + /// subscriptionId parameter in the Url is ignored. /// - /// - /// The resource group name of the workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, Workspace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task>> ListLinkTargetsWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "name"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2015-11-01-preview"; + string apiVersion = "2015-03-20"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("name", name); - tracingParameters.Add("parameters", parameters); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListLinkTargets", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{name}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{name}", Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.OperationalInsights/linkTargets").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -1879,12 +2051,6 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Serialize Request string _requestContent = null; - 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) { @@ -1894,43 +2060,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1940,7 +2106,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1953,96 +2119,119 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _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); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets a list of accounts with administrator privileges that are not - /// associated with an existing workspace. + /// Gets the schema for a given workspace. /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListLinkTargetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> GetSchemaWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-03-20"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListLinkTargets", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetSchema", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.OperationalInsights/linkTargets").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/schema").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -2075,43 +2264,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2121,7 +2310,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2134,30 +2323,38 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets a list of management groups connected to a workspace. + /// Submit a search for a given workspace. The response will contain an id to + /// track the search. User can use the id to poll the search status and get the + /// full search result later if the search takes long time to finish. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The parameters required to execute a search query. /// /// /// Headers that will be added to request. @@ -2165,43 +2362,90 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListManagementGroupsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> GetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - if (nextPageLink == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListManagementGroupsNext", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetSearchResults", tracingParameters); } // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -2225,6 +2469,12 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -2234,43 +2484,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2280,7 +2530,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2293,31 +2543,37 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the first page of workspace instances in a resource group with the - /// link to the next page. + /// Gets updated search results for a given search query. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the search that will have results updated. You can get the id + /// from the response of the response of the GetResults call. /// /// /// Headers that will be added to request. @@ -2325,43 +2581,91 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListInResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> UpdateSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string id, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - if (nextPageLink == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (id == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "id"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-03-20"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("id", id); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListInResourceGroupNext", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "UpdateSearchResults", tracingParameters); } // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search/{id}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{id}", System.Uri.EscapeDataString(id)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -2394,43 +2698,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.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)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2440,7 +2744,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2453,31 +2757,36 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the first page of workspace instances in a subscription with the link - /// to the next page. + /// Create or update a workspace. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. /// /// /// Headers that will be added to request. @@ -2485,43 +2794,94 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// The cancellation token. /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task>> ListInSubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Workspace parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - if (nextPageLink == null) + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (workspaceName != null) + { + if (workspaceName.Length > 63) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "workspaceName", 63); + } + if (workspaceName.Length < 4) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "workspaceName", 4); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(workspaceName, "^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$")) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "workspaceName", "^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$"); + } + } + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2015-11-01-preview"; // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workspaceName", workspaceName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListInSubscriptionNext", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } if (this.Client.AcceptLanguage != null) { @@ -2545,6 +2905,12 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -2554,43 +2920,43 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Send Request if (_shouldTrace) { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - HttpStatusCode _statusCode = _httpResponse.StatusCode; + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new Microsoft.Rest.Azure.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); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (JsonException) + catch (Newtonsoft.Json.JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.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); + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2600,7 +2966,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2613,21 +2979,39 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } - catch (JsonException ex) + catch (Newtonsoft.Json.JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - ServiceClientTracing.Exit(_invocationId, _result); + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs index b9717f78c718..6f51ea135448 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs @@ -1,17 +1,12 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.OperationalInsights { - 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; + using Microsoft.Rest.Azure; + using Models; /// /// Extension methods for WorkspacesOperations. @@ -25,17 +20,17 @@ public static partial class WorkspacesOperationsExtensions /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The name of the intelligence pack to be disabled. /// public static void DisableIntelligencePack(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName) { - Task.Factory.StartNew(s => ((IWorkspacesOperations)s).DisableIntelligencePackAsync(resourceGroupName, workspaceName, intelligencePackName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).DisableIntelligencePackAsync(resourceGroupName, workspaceName, intelligencePackName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -45,10 +40,10 @@ public static void DisableIntelligencePack(this IWorkspacesOperations operations /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The name of the intelligence pack to be disabled. @@ -56,7 +51,7 @@ public static void DisableIntelligencePack(this IWorkspacesOperations operations /// /// The cancellation token. /// - public static async Task DisableIntelligencePackAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task DisableIntelligencePackAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { await operations.DisableIntelligencePackWithHttpMessagesAsync(resourceGroupName, workspaceName, intelligencePackName, null, cancellationToken).ConfigureAwait(false); } @@ -68,17 +63,17 @@ public static void DisableIntelligencePack(this IWorkspacesOperations operations /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The name of the intelligence pack to be enabled. /// public static void EnableIntelligencePack(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName) { - Task.Factory.StartNew(s => ((IWorkspacesOperations)s).EnableIntelligencePackAsync(resourceGroupName, workspaceName, intelligencePackName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).EnableIntelligencePackAsync(resourceGroupName, workspaceName, intelligencePackName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -88,10 +83,10 @@ public static void EnableIntelligencePack(this IWorkspacesOperations operations, /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The name of the intelligence pack to be enabled. @@ -99,7 +94,7 @@ public static void EnableIntelligencePack(this IWorkspacesOperations operations, /// /// The cancellation token. /// - public static async Task EnableIntelligencePackAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task EnableIntelligencePackAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string intelligencePackName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { await operations.EnableIntelligencePackWithHttpMessagesAsync(resourceGroupName, workspaceName, intelligencePackName, null, cancellationToken).ConfigureAwait(false); } @@ -112,14 +107,14 @@ public static void EnableIntelligencePack(this IWorkspacesOperations operations, /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// - public static IList ListIntelligencePacks(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + public static System.Collections.Generic.IList ListIntelligencePacks(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListIntelligencePacksAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListIntelligencePacksAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -130,15 +125,15 @@ public static IList ListIntelligencePacks(this IWorkspacesOper /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The cancellation token. /// - public static async Task> ListIntelligencePacksAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task> ListIntelligencePacksAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.ListIntelligencePacksWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -153,14 +148,14 @@ public static IList ListIntelligencePacks(this IWorkspacesOper /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace name. + /// Name of the Log Analytics Workspace. /// public static SharedKeys GetSharedKeys(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).GetSharedKeysAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).GetSharedKeysAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -170,15 +165,15 @@ public static SharedKeys GetSharedKeys(this IWorkspacesOperations operations, st /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// A unique workspace name. + /// Name of the Log Analytics Workspace. /// /// /// The cancellation token. /// - public static async Task GetSharedKeysAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task GetSharedKeysAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.GetSharedKeysWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -193,14 +188,14 @@ public static SharedKeys GetSharedKeys(this IWorkspacesOperations operations, st /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace. /// - public static IEnumerable ListUsages(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + public static System.Collections.Generic.IEnumerable ListUsages(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListUsagesAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListUsagesAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -210,7 +205,7 @@ public static IEnumerable ListUsages(this IWorkspacesOperations ope /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace. @@ -218,7 +213,7 @@ public static IEnumerable ListUsages(this IWorkspacesOperations ope /// /// The cancellation token. /// - public static async Task> ListUsagesAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListUsagesAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.ListUsagesWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -233,14 +228,14 @@ public static IEnumerable ListUsages(this IWorkspacesOperations ope /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace. /// - public static IPage ListManagementGroups(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + public static WorkspaceListManagementGroupsResult ListManagementGroups(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListManagementGroupsAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListManagementGroupsAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -250,7 +245,7 @@ public static IPage ListManagementGroups(this IWorkspacesOperat /// The operations group for this extension method. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The name of the workspace. @@ -258,7 +253,7 @@ public static IPage ListManagementGroups(this IWorkspacesOperat /// /// The cancellation token. /// - public static async Task> ListManagementGroupsAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task ListManagementGroupsAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.ListManagementGroupsWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -267,56 +262,52 @@ public static IPage ListManagementGroups(this IWorkspacesOperat } /// - /// Gets the first page of workspace instances in a resource group with the - /// link to the next page. + /// Gets workspaces in a resource group. /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the workspaces. + /// The name of the resource group to get. The name is case insensitive. /// - public static IPage ListInResourceGroup(this IWorkspacesOperations operations, string resourceGroupName) + public static WorkspaceListResult ListByResourceGroup(this IWorkspacesOperations operations, string resourceGroupName) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListInResourceGroupAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListByResourceGroupAsync(resourceGroupName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets the first page of workspace instances in a resource group with the - /// link to the next page. + /// Gets workspaces in a resource group. /// /// /// The operations group for this extension method. /// /// - /// The resource group name of the workspaces. + /// The name of the resource group to get. The name is case insensitive. /// /// /// The cancellation token. /// - public static async Task> ListInResourceGroupAsync(this IWorkspacesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task ListByResourceGroupAsync(this IWorkspacesOperations operations, string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListInResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the first page of workspace instances in a subscription with the link - /// to the next page. + /// Gets the workspaces in a subscription. /// /// /// The operations group for this extension method. /// - public static IPage ListInSubscription(this IWorkspacesOperations operations) + public static WorkspaceListResult List(this IWorkspacesOperations operations) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListInSubscriptionAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets the first page of workspace instances in a subscription with the link - /// to the next page. + /// Gets the workspaces in a subscription. /// /// /// The operations group for this extension method. @@ -324,16 +315,16 @@ public static IPage ListInSubscription(this IWorkspacesOperations ope /// /// The cancellation token. /// - public static async Task> ListInSubscriptionAsync(this IWorkspacesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task ListAsync(this IWorkspacesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListInSubscriptionWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes a workspace instance. + /// Create or update a workspace. /// /// /// The operations group for this extension method. @@ -342,15 +333,18 @@ public static IPage ListInSubscription(this IWorkspacesOperations ope /// The resource group name of the workspace. /// /// - /// A unique workspace instance name. + /// The name of the workspace. /// - public static void Delete(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + /// + /// The parameters required to create or update a workspace. + /// + public static Workspace CreateOrUpdate(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, Workspace parameters) { - Task.Factory.StartNew(s => ((IWorkspacesOperations)s).DeleteAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Deletes a workspace instance. + /// Create or update a workspace. /// /// /// The operations group for this extension method. @@ -359,18 +353,24 @@ public static void Delete(this IWorkspacesOperations operations, string resource /// The resource group name of the workspace. /// /// - /// A unique workspace instance name. + /// The name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, Workspace parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Gets a workspace instance. + /// Deletes a workspace instance. /// /// /// The operations group for this extension method. @@ -379,15 +379,15 @@ public static void Delete(this IWorkspacesOperations operations, string resource /// The resource group name of the workspace. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// - public static Workspace Get(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + public static void Delete(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).GetAsync(resourceGroupName, workspaceName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).DeleteAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets a workspace instance. + /// Deletes a workspace instance. /// /// /// The operations group for this extension method. @@ -396,21 +396,18 @@ public static Workspace Get(this IWorkspacesOperations operations, string resour /// The resource group name of the workspace. /// /// - /// A unique workspace instance name. + /// Name of the Log Analytics Workspace. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task DeleteAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false); } /// - /// Create or update a workspace. + /// Gets a workspace instance. /// /// /// The operations group for this extension method. @@ -418,19 +415,16 @@ public static Workspace Get(this IWorkspacesOperations operations, string resour /// /// The resource group name of the workspace. /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The parameters required to create or update a workspace. + /// + /// Name of the Log Analytics Workspace. /// - public static Workspace CreateOrUpdate(this IWorkspacesOperations operations, string resourceGroupName, string name, Workspace parameters) + public static Workspace Get(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).CreateOrUpdateAsync(resourceGroupName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).GetAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Create or update a workspace. + /// Gets a workspace instance. /// /// /// The operations group for this extension method. @@ -438,200 +432,231 @@ public static Workspace CreateOrUpdate(this IWorkspacesOperations operations, st /// /// The resource group name of the workspace. /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The parameters required to create or update a workspace. + /// + /// Name of the Log Analytics Workspace. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IWorkspacesOperations operations, string resourceGroupName, string name, Workspace parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task GetAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Create or update a workspace. + /// Get a list of workspaces which the current user has administrator + /// privileges and are not associated with an Azure Subscription. The + /// subscriptionId parameter in the Url is ignored. /// /// /// The operations group for this extension method. /// - /// - /// The resource group name of the workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// - public static Workspace BeginCreateOrUpdate(this IWorkspacesOperations operations, string resourceGroupName, string name, Workspace parameters) + public static System.Collections.Generic.IList ListLinkTargets(this IWorkspacesOperations operations) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, name, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListLinkTargetsAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Create or update a workspace. + /// Get a list of workspaces which the current user has administrator + /// privileges and are not associated with an Azure Subscription. The + /// subscriptionId parameter in the Url is ignored. /// /// /// The operations group for this extension method. /// - /// - /// The resource group name of the workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// - /// - /// The parameters required to create or update a workspace. - /// /// /// The cancellation token. /// - public static async Task BeginCreateOrUpdateAsync(this IWorkspacesOperations operations, string resourceGroupName, string name, Workspace parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task> ListLinkTargetsAsync(this IWorkspacesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListLinkTargetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of accounts with administrator privileges that are not - /// associated with an existing workspace. + /// Gets the schema for a given workspace. /// /// /// The operations group for this extension method. /// - public static IList ListLinkTargets(this IWorkspacesOperations operations) + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + public static SearchGetSchemaResponse GetSchema(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListLinkTargetsAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).GetSchemaAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets a list of accounts with administrator privileges that are not - /// associated with an existing workspace. + /// Gets the schema for a given workspace. /// /// /// The operations group for this extension method. /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// /// /// The cancellation token. /// - public static async Task> ListLinkTargetsAsync(this IWorkspacesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task GetSchemaAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListLinkTargetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetSchemaWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of management groups connected to a workspace. + /// Submit a search for a given workspace. The response will contain an id to + /// track the search. User can use the id to poll the search status and get the + /// full search result later if the search takes long time to finish. /// /// /// The operations group for this extension method. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name /// - public static IPage ListManagementGroupsNext(this IWorkspacesOperations operations, string nextPageLink) + /// + /// The parameters required to execute a search query. + /// + public static SearchResultsResponse GetSearchResults(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, SearchParameters parameters) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListManagementGroupsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).GetSearchResultsAsync(resourceGroupName, workspaceName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets a list of management groups connected to a workspace. + /// Submit a search for a given workspace. The response will contain an id to + /// track the search. User can use the id to poll the search status and get the + /// full search result later if the search takes long time to finish. /// /// /// The operations group for this extension method. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The parameters required to execute a search query. /// /// /// The cancellation token. /// - public static async Task> ListManagementGroupsNextAsync(this IWorkspacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task GetSearchResultsAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, SearchParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListManagementGroupsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the first page of workspace instances in a resource group with the - /// link to the next page. + /// Gets updated search results for a given search query. /// /// /// The operations group for this extension method. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the search that will have results updated. You can get the id + /// from the response of the response of the GetResults call. /// - public static IPage ListInResourceGroupNext(this IWorkspacesOperations operations, string nextPageLink) + public static SearchResultsResponse UpdateSearchResults(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string id) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListInResourceGroupNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).UpdateSearchResultsAsync(resourceGroupName, workspaceName, id), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets the first page of workspace instances in a resource group with the - /// link to the next page. + /// Gets updated search results for a given search query. /// /// /// The operations group for this extension method. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the search that will have results updated. You can get the id + /// from the response of the response of the GetResults call. /// /// /// The cancellation token. /// - public static async Task> ListInResourceGroupNextAsync(this IWorkspacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task UpdateSearchResultsAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string id, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListInResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, id, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the first page of workspace instances in a subscription with the link - /// to the next page. + /// Create or update a workspace. /// /// /// The operations group for this extension method. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. /// - public static IPage ListInSubscriptionNext(this IWorkspacesOperations operations, string nextPageLink) + public static Workspace BeginCreateOrUpdate(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, Workspace parameters) { - return Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListInSubscriptionNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, workspaceName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Gets the first page of workspace instances in a subscription with the link - /// to the next page. + /// Create or update a workspace. /// /// /// The operations group for this extension method. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The resource group name of the workspace. + /// + /// + /// The name of the workspace. + /// + /// + /// The parameters required to create or update a workspace. /// /// /// The cancellation token. /// - public static async Task> ListInSubscriptionNextAsync(this IWorkspacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async System.Threading.Tasks.Task BeginCreateOrUpdateAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, Workspace parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - using (var _result = await operations.ListInSubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs index c75570f4ee3a..883ab640a9e5 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs @@ -97,6 +97,11 @@ internal static void ValidateWorkspace(Workspace expected, Workspace actual) Assert.Equal(expected.Name, actual.Name); Assert.Equal(expected.Location, actual.Location); Assert.Equal(WorkspaceResourceType, actual.Type); + if (expected.RetentionInDays.HasValue) + { + Assert.Equal(expected.RetentionInDays, actual.RetentionInDays); + } + if (expected.Tags != null) { Assert.Equal(expected.Tags.Count, actual.Tags.Count); @@ -110,15 +115,14 @@ internal static void ValidateWorkspace(Workspace expected, Workspace actual) Assert.Null(actual.Tags); } - var workspaceProperties = actual; Assert.Equal( expected != null && expected.Sku != null ? expected.Sku.Name : SkuNameEnum.Free, - workspaceProperties.Sku.Name, + actual.Sku.Name, StringComparer.OrdinalIgnoreCase); - Assert.NotNull(workspaceProperties.PortalUrl); - Assert.Equal("Succeeded", workspaceProperties.ProvisioningState, StringComparer.OrdinalIgnoreCase); - Assert.Equal("Azure", workspaceProperties.Source, StringComparer.OrdinalIgnoreCase); - Assert.NotNull(workspaceProperties.CustomerId); + Assert.NotNull(actual.PortalUrl); + Assert.Equal("Succeeded", actual.ProvisioningState, StringComparer.OrdinalIgnoreCase); + Assert.Equal("Azure", actual.Source, StringComparer.OrdinalIgnoreCase); + Assert.NotNull(actual.CustomerId); } /// diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs index e0f3b747662d..b46171e9ad63 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs @@ -79,7 +79,7 @@ public void CanCreateUpdateDeleteDataSource() TestHelper.ValidateDatasource(createParameters, createResponse); // List the data sources in the workspace - var listResponse = client.DataSources.ListInWorkspace(new ODataQuery(ds=> ds.Kind == "AzureAuditLog" ), resourceGroupName, workspaceName); + var listResponse = client.DataSources.ListByWorkspace(new ODataQuery(ds=> ds.Kind == "AzureAuditLog" ), resourceGroupName, workspaceName); Assert.Equal(2, listResponse.Count()); Assert.Null(listResponse.NextPageLink); Assert.Single(listResponse.Where(w => w.Name.Equals(dataSourceName, StringComparison.OrdinalIgnoreCase))); @@ -134,7 +134,7 @@ public void CanPageThroughDataSourceList() var createParameters = new DataSource { Name = windowsEventDataSourceName, - Kind = "WindowsEvent", + Kind = DataSourceKind.WindowsEvent, Properties = JToken.Parse("{\"eventLogName\": \"" + ("windowsEvent" + i) + "\", \"eventTypes\": [{\"eventType\": \"Error\"}]}") }; @@ -143,12 +143,12 @@ public void CanPageThroughDataSourceList() } // List the data sources in the workspace - var listResponse = client.DataSources.ListInWorkspace(new ODataQuery(ds => ds.Kind == "WindowsEvent"), resourceGroupName, workspaceName); + var listResponse = client.DataSources.ListByWorkspace(new ODataQuery(ds => ds.Kind == "WindowsEvent"), resourceGroupName, workspaceName); Assert.Equal(200, listResponse.Count()); Assert.NotNull(listResponse.NextPageLink); // Get the next page - var listResponseNextPage = client.DataSources.ListInWorkspaceNext(listResponse.NextPageLink); + var listResponseNextPage = client.DataSources.ListByWorkspaceNext(listResponse.NextPageLink); Assert.Null(listResponseNextPage.NextPageLink); Assert.Equal(100, listResponseNextPage.Count()); } diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs index 967c5f54eb0d..d574d52c4bb2 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs @@ -56,10 +56,9 @@ public void CanCreateUpdateDeleteLinkedService() TestHelper.ValidateLinkedService(createParameters, getResponse); // List the linked services in the workspace - var listResponse = client.LinkedServices.List(resourceGroupName, workspaceName); - Assert.Equal(1, listResponse.Count()); - Assert.Null(listResponse.NextPageLink); - Assert.Single(listResponse.Where(w => w.ResourceId.Equals(accountResourceId, StringComparison.OrdinalIgnoreCase))); + var listResponse = client.LinkedServices.ListByWorkspace(resourceGroupName, workspaceName); + Assert.Equal(1, listResponse.Value.Count); + Assert.Single(listResponse.Value.Where(w => w.ResourceId.Equals(accountResourceId, StringComparison.OrdinalIgnoreCase))); var accountResourceId2 = string.Format(accountResourceIdFromat, subId, resourceGroupName, automationAccountName2); var updateParameters = new LinkedService diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs index da7224d932c4..5f5032a453ec 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs @@ -37,21 +37,21 @@ public void CanGetSearchResultsAndUpdate() string workspaceName = "rasha"; int topCount = 25; - SearchGetSearchResultsParameters parameters = new SearchGetSearchResultsParameters(); + SearchParameters parameters = new SearchParameters(); parameters.Query = "*"; parameters.Top = topCount; - var searchResult = client.Search.GetSearchResults(resourceGroupName, workspaceName, parameters); + var searchResult = client.Workspaces.GetSearchResults(resourceGroupName, workspaceName, parameters); Assert.NotNull(searchResult); - Assert.NotNull(searchResult.__metadata); + Assert.NotNull(searchResult.Metadata); Assert.NotNull(searchResult.Value); Assert.Equal(searchResult.Value.Count, topCount); - var updatedSearchResult = client.Search.UpdateSearchResults( + var updatedSearchResult = client.Workspaces.UpdateSearchResults( resourceGroupName, workspaceName, - searchResult.__metadata.RequestId); + searchResult.Metadata.SearchId); Assert.NotNull(updatedSearchResult); - Assert.NotNull(searchResult.__metadata); + Assert.NotNull(searchResult.Metadata); Assert.NotNull(searchResult.Value); } } @@ -66,11 +66,11 @@ public void CanGetSchema() string resourceGroupName = "mms-eus"; string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; - var schemaResult = client.Search.GetSchema(resourceGroupName, workspaceName); + var schemaResult = client.Workspaces.GetSchema(resourceGroupName, workspaceName); Assert.NotNull(schemaResult); - Assert.NotNull(schemaResult.__metadata); - Assert.Equal(schemaResult.__metadata.ResultType, "schema"); + Assert.NotNull(schemaResult.Metadata); + Assert.Equal(schemaResult.Metadata.ResultType, "schema"); Assert.NotNull(schemaResult.Value); Assert.NotEqual(schemaResult.Value.Count, 0); } @@ -86,7 +86,7 @@ public void CanGetSavedSearchesAndResults() string resourceGroupName = "mms-eus"; string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; - var savedSearchesResult = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + var savedSearchesResult = client.SavedSearches.ListByWorkspace(resourceGroupName, workspaceName); Assert.NotNull(savedSearchesResult); Assert.NotNull(savedSearchesResult.Value); @@ -95,7 +95,7 @@ public void CanGetSavedSearchesAndResults() String[] idStrings = savedSearchesResult.Value[0].Id.Split('/'); string id = idStrings[idStrings.Length - 1]; - var savedSearchResult = client.Search.GetSavedSearch( + var savedSearchResult = client.SavedSearches.Get( resourceGroupName, workspaceName, id); @@ -107,9 +107,9 @@ public void CanGetSavedSearchesAndResults() Assert.NotNull(savedSearchResult.Query); Assert.NotEqual(savedSearchResult.Query, ""); - var savedSearchResults = client.Search.GetSavedSearchResults(resourceGroupName, workspaceName, id); + var savedSearchResults = client.SavedSearches.GetResults(resourceGroupName, workspaceName, id); Assert.NotNull(savedSearchResults); - Assert.NotNull(savedSearchResults.__metadata); + Assert.NotNull(savedSearchResults.Metadata); Assert.NotNull(savedSearchResults.Value); Assert.NotEqual(savedSearchResults.Value.Count, 0); } @@ -126,23 +126,30 @@ public void CanCreateOrUpdateAndDeleteSavedSearches() string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; string newSavedSearchId = "test-new-saved-search-id-2015"; - SearchCreateOrUpdateSavedSearchParameters parameters = new SearchCreateOrUpdateSavedSearchParameters(); + SavedSearchCreateOrUpdateParameters parameters = new SavedSearchCreateOrUpdateParameters(); parameters.Version = 1; parameters.Query = "* | measure Count() by Computer"; parameters.DisplayName = "Create or Update Saved Search Test"; parameters.Category = " Saved Search Test Category"; parameters.Tags = new List() { new Tag() { Name = "Group", Value = "Computer" } }; - var result = client.Search.ListSavedSearches(resourceGroupName, workspaceName); - - client.Search.CreateOrUpdateSavedSearch( + var result = client.SavedSearches.ListByWorkspace(resourceGroupName, workspaceName); + + var savedSearchCreateResponse = client.SavedSearches.CreateOrUpdate( resourceGroupName, workspaceName, newSavedSearchId, parameters); + Assert.NotNull(savedSearchCreateResponse.Id); + Assert.NotNull(savedSearchCreateResponse.Etag); + Assert.Equal(savedSearchCreateResponse.Query, parameters.Query); + Assert.Equal(savedSearchCreateResponse.DisplayName, parameters.DisplayName); + Assert.Equal(savedSearchCreateResponse.Tags[0].Name, parameters.Tags[0].Name); + Assert.Equal(savedSearchCreateResponse.Tags[0].Value, parameters.Tags[0].Value); + // Verify that the saved search was saved - var savedSearchesResult = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + var savedSearchesResult = client.SavedSearches.ListByWorkspace(resourceGroupName, workspaceName); Assert.NotNull(savedSearchesResult); Assert.NotNull(savedSearchesResult.Value); Assert.NotEqual(savedSearchesResult.Value.Count, 0); @@ -167,14 +174,21 @@ public void CanCreateOrUpdateAndDeleteSavedSearches() // Test updating a saved search parameters.Query = "*"; parameters.Tags = new List() { new Tag() { Name = "Source", Value = "Test2" } }; - client.Search.CreateOrUpdateSavedSearch( + var savedSearchUpdateResponse = client.SavedSearches.CreateOrUpdate( resourceGroupName, workspaceName, newSavedSearchId, parameters); + Assert.NotNull(savedSearchUpdateResponse.Id); + Assert.NotNull(savedSearchUpdateResponse.Etag); + Assert.Equal(savedSearchUpdateResponse.Query, parameters.Query); + Assert.Equal(savedSearchUpdateResponse.DisplayName, parameters.DisplayName); + Assert.Equal(savedSearchUpdateResponse.Tags[0].Name, parameters.Tags[0].Name); + Assert.Equal(savedSearchUpdateResponse.Tags[0].Value, parameters.Tags[0].Value); + // Verify that the saved search was saved - savedSearchesResult = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + savedSearchesResult = client.SavedSearches.ListByWorkspace(resourceGroupName, workspaceName); Assert.NotNull(savedSearchesResult); Assert.NotNull(savedSearchesResult.Value); Assert.NotEqual(savedSearchesResult.Value.Count, 0); @@ -196,8 +210,8 @@ public void CanCreateOrUpdateAndDeleteSavedSearches() Assert.True(foundSavedSearch); // Test the function to delete a saved search - client.Search.DeleteSavedSearch(resourceGroupName, workspaceName, newSavedSearchId); - savedSearchesResult = client.Search.ListSavedSearches(resourceGroupName, workspaceName); + client.SavedSearches.Delete(resourceGroupName, workspaceName, newSavedSearchId); + savedSearchesResult = client.SavedSearches.ListByWorkspace(resourceGroupName, workspaceName); foundSavedSearch = false; for (int i = 0; i < savedSearchesResult.Value.Count; i++) diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs index df9e8ef4c6a1..029ecb651dbb 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs @@ -98,7 +98,7 @@ public void CanCreateUpdateDeleteStorageInsight() TestHelper.ValidateStorageInsight(storageInsightTwo, createResponse); // List the storage insights in the workspace - var listResponse = client.StorageInsights.ListInWorkspace(resourceGroupName, workspaceName); + var listResponse = client.StorageInsights.ListByWorkspace(resourceGroupName, workspaceName); Assert.Equal(2, listResponse.Count()); Assert.Null(listResponse.NextPageLink); Assert.Single(listResponse.Where(w => w.Name.Equals(storageInsightName, StringComparison.OrdinalIgnoreCase))); diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs index 122d9ebbc72c..b280a9be2502 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs @@ -30,7 +30,8 @@ public void CanCreateListDeleteWorkspace() Name = workspaceName, Location = resourceGroup.Location, Tags = new Dictionary { { "tag1", "val1" } }, - Sku = new Sku(SkuNameEnum.Free) + Sku = new Sku(SkuNameEnum.PerNode), + RetentionInDays = 30 }; var workspaceResponse = client.Workspaces.CreateOrUpdate( @@ -64,7 +65,7 @@ public void CanPerformWorkspaceActions() { Name = workspaceName, Location = resourceGroup.Location, - CustomerId = Guid.NewGuid().ToString() + CustomerId = Guid.NewGuid().ToString(), }; TestHelper.VerifyCloudException( @@ -76,6 +77,7 @@ public void CanPerformWorkspaceActions() { Name = workspaceName, Location = resourceGroup.Location, + Sku = new Sku(SkuNameEnum.Free) }; var workspaceResponse = client.Workspaces.CreateOrUpdate( @@ -91,8 +93,7 @@ public void CanPerformWorkspaceActions() // List the management groups connected to the workspace var managementGroupsResponse = client.Workspaces.ListManagementGroups(resourceGroupName, workspaceName); - Assert.Null(managementGroupsResponse.NextPageLink); - Assert.Equal(0, managementGroupsResponse.Count()); + Assert.Equal(0, managementGroupsResponse.Value.Count()); // List the usage for a workspace var usagesResponse = client.Workspaces.ListUsages(resourceGroupName, workspaceName); @@ -124,7 +125,8 @@ public async void CanEnableDisableListIntelligencePacks() Name = workspaceName, Location = resourceGroup.Location, Tags = new Dictionary { { "tag1", "val1" } }, - Sku = new Sku(SkuNameEnum.Free) + Sku = new Sku(SkuNameEnum.PerNode), + RetentionInDays = 30 }; var workspaceResponse = client.Workspaces.CreateOrUpdate( diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanCreateOrUpdateAndDeleteSavedSearches.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanCreateOrUpdateAndDeleteSavedSearches.json index 42acaaba2057..641bb3d91986 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanCreateOrUpdateAndDeleteSavedSearches.json +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.SearchOperationsTests/CanCreateOrUpdateAndDeleteSavedSearches.json @@ -427,7 +427,7 @@ "ASP.NET" ] }, - "StatusCode": 202 + "StatusCode": 200 } ], "Names": {}, diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanCreateListDeleteWorkspace.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanCreateListDeleteWorkspace.json index 164cd09c43b2..b39e381120a3 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanCreateListDeleteWorkspace.json +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanCreateListDeleteWorkspace.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6735?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2NzM1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3448?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzNDQ4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "41" ], "x-ms-client-request-id": [ - "f25f3a7d-cae9-4d3f-bb79-0551e8fef880" + "5c759e66-f81d-4f64-886d-0c043e7f5412" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest6735\",\r\n \"name\": \"OIAutoRest6735\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest3448\",\r\n \"name\": \"OIAutoRest3448\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "193" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:24:26 GMT" + "Tue, 15 Nov 2016 04:42:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "e49e0705-45d2-4f8a-b792-527bc83ce8a4" + "541e05e1-fd80-427a-a3cb-9f0979be75d8" ], "x-ms-correlation-request-id": [ - "e49e0705-45d2-4f8a-b792-527bc83ce8a4" + "541e05e1-fd80-427a-a3cb-9f0979be75d8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T222426Z:e49e0705-45d2-4f8a-b792-527bc83ce8a4" + "WESTUS2:20161115T044207Z:541e05e1-fd80-427a-a3cb-9f0979be75d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,32 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6735/providers/Microsoft.OperationalInsights/workspaces/AzTest9178?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2NzM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDkxNzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3448/providers/Microsoft.OperationalInsights/workspaces/AzTest6713?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzNDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDY3MTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n }\r\n },\r\n \"name\": \"AzTest9178\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"PerNode\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"name\": \"AzTest6713\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "172" + "203" ], "x-ms-client-request-id": [ - "311cd47d-8057-46c6-9c70-351ae918f996" + "28e78382-aa91-4b21-ae62-63f22f09856a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"313e15be-4858-4033-adce-cdd4f545cd29\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest6735%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest9178\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest6735/providers/microsoft.operationalinsights/workspaces/aztest9178\",\r\n \"name\": \"AzTest9178\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"f548bb3b-0a92-4677-8dd6-f5619ecdab76\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest3448%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest6713\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest3448/providers/microsoft.operationalinsights/workspaces/aztest6713\",\r\n \"name\": \"AzTest6713\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "804" + "808" ], "Content-Type": [ "application/json" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:24:36 GMT" + "Tue, 15 Nov 2016 04:42:15 GMT" ], "Pragma": [ "no-cache" @@ -106,7 +106,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "b37ef0ba-5521-4d35-948b-546402d68b18" + "1cc4bdc1-647e-4209-b0a0-d119278f530a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,29 +122,29 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "597" + "1199" ], "x-ms-correlation-request-id": [ - "91030498-295d-4e8d-ab9d-c3c271e4041e" + "0cb1c8c9-7ea7-4f8f-95b5-17709e318277" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T222437Z:91030498-295d-4e8d-ab9d-c3c271e4041e" + "WESTUS2:20161115T044216Z:0cb1c8c9-7ea7-4f8f-95b5-17709e318277" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest6735/providers/Microsoft.OperationalInsights/workspaces/AzTest9178?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q2NzM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDkxNzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3448/providers/Microsoft.OperationalInsights/workspaces/AzTest6713?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzNDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDY3MTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"313e15be-4858-4033-adce-cdd4f545cd29\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest6735%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest9178\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest6735/providers/microsoft.operationalinsights/workspaces/aztest9178\",\r\n \"name\": \"AzTest9178\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"f548bb3b-0a92-4677-8dd6-f5619ecdab76\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest3448%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest6713\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest3448/providers/microsoft.operationalinsights/workspaces/aztest6713\",\r\n \"name\": \"AzTest6713\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -153,7 +153,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:25:07 GMT" + "Tue, 15 Nov 2016 04:42:46 GMT" ], "Pragma": [ "no-cache" @@ -169,7 +169,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "24e5766c-767c-4ec4-af25-9fe61f3d011c" + "13a81460-a996-47d6-a7f1-029f3bf64cb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,13 +185,13 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14983" ], "x-ms-correlation-request-id": [ - "40c89895-5ecb-4185-bb7c-f0f5ab695e2a" + "e46f1a61-2884-4515-ade9-f53a09454ad7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T222507Z:40c89895-5ecb-4185-bb7c-f0f5ab695e2a" + "WESTUS2:20161115T044246Z:e46f1a61-2884-4515-ade9-f53a09454ad7" ] }, "StatusCode": 200 @@ -199,8 +199,8 @@ ], "Names": { "CanCreateListDeleteWorkspace": [ - "OIAutoRest6735", - "AzTest9178" + "OIAutoRest3448", + "AzTest6713" ] }, "Variables": { diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanEnableDisableListIntelligencePacks.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanEnableDisableListIntelligencePacks.json index 8ecef8e743ff..0c98c5869d81 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanEnableDisableListIntelligencePacks.json +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanEnableDisableListIntelligencePacks.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "41" ], "x-ms-client-request-id": [ - "aeaed079-2730-4720-9df7-3a64746dc4b6" + "9e0d406a-f18c-4bdd-8a59-264a3c4099c0" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest5212\",\r\n \"name\": \"OIAutoRest5212\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest5240\",\r\n \"name\": \"OIAutoRest5240\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "193" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:33:38 GMT" + "Tue, 15 Nov 2016 04:43:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "a9391bc3-4d39-4f68-81c1-305715bfc4f1" + "f7708e9b-a465-4573-84fe-02f4fe7fd5b2" ], "x-ms-correlation-request-id": [ - "a9391bc3-4d39-4f68-81c1-305715bfc4f1" + "f7708e9b-a465-4573-84fe-02f4fe7fd5b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223338Z:a9391bc3-4d39-4f68-81c1-305715bfc4f1" + "WESTUS2:20161115T044303Z:f7708e9b-a465-4573-84fe-02f4fe7fd5b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,32 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240/providers/Microsoft.OperationalInsights/workspaces/AzTest6311?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDYzMTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n }\r\n },\r\n \"name\": \"AzTest5239\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"PerNode\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"name\": \"AzTest6311\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "172" + "203" ], "x-ms-client-request-id": [ - "54e6c37f-7596-4865-88cc-d3204372697a" + "5b1fbf9f-cd9b-4440-bb8f-e563e1d3b7ce" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"fdeff28b-ae43-4f90-8261-b252c653b99b\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest5212%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest5239\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest5212/providers/microsoft.operationalinsights/workspaces/aztest5239\",\r\n \"name\": \"AzTest5239\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"2ed6db10-4670-4391-a3a4-184609167188\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest5240%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest6311\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest5240/providers/microsoft.operationalinsights/workspaces/aztest6311\",\r\n \"name\": \"AzTest6311\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "804" + "808" ], "Content-Type": [ "application/json" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:33:48 GMT" + "Tue, 15 Nov 2016 04:43:13 GMT" ], "Pragma": [ "no-cache" @@ -106,7 +106,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "1f9f564b-3279-4225-a637-aa55843643d0" + "f91d2ae8-cc8d-4014-8972-1e95f1b11a07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -125,26 +125,26 @@ "1199" ], "x-ms-correlation-request-id": [ - "774e75ba-f6fc-46e2-83af-239984580318" + "85b3e929-6696-481d-82dd-0d7966a9b966" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223349Z:774e75ba-f6fc-46e2-83af-239984580318" + "WESTUS2:20161115T044314Z:85b3e929-6696-481d-82dd-0d7966a9b966" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240/providers/Microsoft.OperationalInsights/workspaces/AzTest6311?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDYzMTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"fdeff28b-ae43-4f90-8261-b252c653b99b\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest5212%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest5239\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest5212/providers/microsoft.operationalinsights/workspaces/aztest5239\",\r\n \"name\": \"AzTest5239\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"2ed6db10-4670-4391-a3a4-184609167188\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest5240%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest6311\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"retentionInDays\": 30\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest5240/providers/microsoft.operationalinsights/workspaces/aztest6311\",\r\n \"name\": \"AzTest6311\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -153,7 +153,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:34:18 GMT" + "Tue, 15 Nov 2016 04:43:44 GMT" ], "Pragma": [ "no-cache" @@ -169,7 +169,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "59587e0e-eca9-4e00-9ec5-f37045dfa754" + "77daa058-dc2e-47a2-8abc-813226427080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,32 +185,32 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14993" ], "x-ms-correlation-request-id": [ - "b94e348a-3cf5-44cb-b7ae-59222a93bbb1" + "db35f544-5627-4c93-850f-b7dd21ff4ccf" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223419Z:b94e348a-3cf5-44cb-b7ae-59222a93bbb1" + "WESTUS2:20161115T044344Z:db35f544-5627-4c93-850f-b7dd21ff4ccf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks/ChangeTracking/Enable?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3MvQ2hhbmdlVHJhY2tpbmcvRW5hYmxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240/providers/Microsoft.OperationalInsights/workspaces/AzTest6311/intelligencePacks/ChangeTracking/Enable?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDYzMTEvaW50ZWxsaWdlbmNlUGFja3MvQ2hhbmdlVHJhY2tpbmcvRW5hYmxlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60774aef-ccff-4cc8-bc8a-a688df1f261f" + "e5786320-f54d-42e3-b5b7-1a52ebdbb3ef" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -225,7 +225,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:34:19 GMT" + "Tue, 15 Nov 2016 04:43:44 GMT" ], "Pragma": [ "no-cache" @@ -241,7 +241,7 @@ "no-cache" ], "x-ms-request-id": [ - "7b29cafa-b5c0-4d57-951f-cb172e846756" + "7e324520-eaf0-456c-a4f0-0c45e3aaa3cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -260,29 +260,29 @@ "1198" ], "x-ms-correlation-request-id": [ - "63b2d0f0-9867-4737-89bd-b673a8a513e9" + "a469b84d-8c21-433d-95c9-a95a16237e92" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223420Z:63b2d0f0-9867-4737-89bd-b673a8a513e9" + "WESTUS2:20161115T044345Z:a469b84d-8c21-433d-95c9-a95a16237e92" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks/SiteRecovery/Enable?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3MvU2l0ZVJlY292ZXJ5L0VuYWJsZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240/providers/Microsoft.OperationalInsights/workspaces/AzTest6311/intelligencePacks/SiteRecovery/Enable?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDYzMTEvaW50ZWxsaWdlbmNlUGFja3MvU2l0ZVJlY292ZXJ5L0VuYWJsZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9767166-6c1c-4b4b-a01a-3505ada99627" + "1962cc17-7d47-453c-91dc-909baccb3e3f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -297,7 +297,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:34:19 GMT" + "Tue, 15 Nov 2016 04:43:44 GMT" ], "Pragma": [ "no-cache" @@ -313,7 +313,7 @@ "no-cache" ], "x-ms-request-id": [ - "cd3c5d5d-ea99-4ff2-b583-0c3bd57243c2" + "c68ae2e9-cd04-4cbb-9adf-35c0b4324ccd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -332,32 +332,32 @@ "1197" ], "x-ms-correlation-request-id": [ - "4c669ff9-0eeb-47c1-9448-ae7d9fb4957c" + "d40ab7f7-f326-44b0-ad48-08dc73d0e65d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223420Z:4c669ff9-0eeb-47c1-9448-ae7d9fb4957c" + "WESTUS2:20161115T044345Z:d40ab7f7-f326-44b0-ad48-08dc73d0e65d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240/providers/Microsoft.OperationalInsights/workspaces/AzTest6311/intelligencePacks?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDYzMTEvaW50ZWxsaWdlbmNlUGFja3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33be0407-cc0a-451e-a646-80307121c427" + "3414bb77-a033-40a4-97f3-54e65e1fcb3e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"CapacityPerformance\",\r\n \"enabled\": false,\r\n \"displayname\": \"Capacity and Performance\"\r\n },\r\n {\r\n \"name\": \"Security\",\r\n \"enabled\": false,\r\n \"displayname\": \"Security and Audit\"\r\n },\r\n {\r\n \"name\": \"Updates\",\r\n \"enabled\": false,\r\n \"displayname\": \"Update Management\"\r\n },\r\n {\r\n \"name\": \"AntiMalware\",\r\n \"enabled\": false,\r\n \"displayname\": \"Antimalware Assessment\"\r\n },\r\n {\r\n \"name\": \"LogManagement\",\r\n \"enabled\": true,\r\n \"displayname\": \"Log Management\"\r\n },\r\n {\r\n \"name\": \"ChangeTracking\",\r\n \"enabled\": true,\r\n \"displayname\": \"Change Tracking\"\r\n },\r\n {\r\n \"name\": \"SQLAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"SQL Assessment\"\r\n },\r\n {\r\n \"name\": \"SCOMAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"System Center Operations Manager Assessment (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Assessment\"\r\n },\r\n {\r\n \"name\": \"AlertManagement\",\r\n \"enabled\": false,\r\n \"displayname\": \"Alert Management\"\r\n },\r\n {\r\n \"name\": \"AzureAutomation\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Automation\"\r\n },\r\n {\r\n \"name\": \"WireData\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data\"\r\n },\r\n {\r\n \"name\": \"SiteRecovery\",\r\n \"enabled\": true,\r\n \"displayname\": \"Azure Site Recovery\"\r\n },\r\n {\r\n \"name\": \"Backup\",\r\n \"enabled\": false,\r\n \"displayname\": \"Backup\"\r\n },\r\n {\r\n \"name\": \"SurfaceHub\",\r\n \"enabled\": false,\r\n \"displayname\": \"Surface Hub\"\r\n },\r\n {\r\n \"name\": \"NetworkMonitoring\",\r\n \"enabled\": false,\r\n \"displayname\": \"Network Performance Monitor (Preview)\"\r\n },\r\n {\r\n \"name\": \"Containers\",\r\n \"enabled\": false,\r\n \"displayname\": \"Containers\"\r\n },\r\n {\r\n \"name\": \"AzureNetworking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Networking Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADReplication\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Replication Status\"\r\n },\r\n {\r\n \"name\": \"Office365\",\r\n \"enabled\": false,\r\n \"displayname\": \"Office 365 (Preview)\"\r\n },\r\n {\r\n \"name\": \"CompatibilityAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Upgrade Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"KeyVault\",\r\n \"enabled\": false,\r\n \"displayname\": \"Key Vault (Preview)\"\r\n },\r\n {\r\n \"name\": \"ServiceFabric\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Fabric\"\r\n },\r\n {\r\n \"name\": \"DnsAnalytics\",\r\n \"enabled\": false,\r\n \"displayname\": \"DDI Analytics\"\r\n },\r\n {\r\n \"name\": \"ApplicationInsights\",\r\n \"enabled\": false,\r\n \"displayname\": \"Application Insights (Preview)\"\r\n },\r\n {\r\n \"name\": \"WireData2\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data 2.0\"\r\n },\r\n {\r\n \"name\": \"AgentHealthAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Agent Health \"\r\n },\r\n {\r\n \"name\": \"AzureActivity\",\r\n \"enabled\": false,\r\n \"displayname\": \"Activity Log Analytics\"\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n \"enabled\": false,\r\n \"displayname\": \"HDInsight Monitoring\"\r\n },\r\n {\r\n \"name\": \"VMware\",\r\n \"enabled\": false,\r\n \"displayname\": \"VMware (Preview)\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"name\": \"CapacityPerformance\",\r\n \"enabled\": false,\r\n \"displayname\": \"Capacity and Performance\"\r\n },\r\n {\r\n \"name\": \"Security\",\r\n \"enabled\": false,\r\n \"displayname\": \"Security and Audit\"\r\n },\r\n {\r\n \"name\": \"Updates\",\r\n \"enabled\": false,\r\n \"displayname\": \"Update Management\"\r\n },\r\n {\r\n \"name\": \"AntiMalware\",\r\n \"enabled\": false,\r\n \"displayname\": \"Antimalware Assessment\"\r\n },\r\n {\r\n \"name\": \"LogManagement\",\r\n \"enabled\": true,\r\n \"displayname\": \"Log Management\"\r\n },\r\n {\r\n \"name\": \"ChangeTracking\",\r\n \"enabled\": true,\r\n \"displayname\": \"Change Tracking\"\r\n },\r\n {\r\n \"name\": \"SQLAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"SQL Assessment\"\r\n },\r\n {\r\n \"name\": \"SCOMAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"System Center Operations Manager Assessment (Preview)\"\r\n },\r\n {\r\n \"name\": \"ServiceDesk\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Desk(Preview)\"\r\n },\r\n {\r\n \"name\": \"ADAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Assessment\"\r\n },\r\n {\r\n \"name\": \"AlertManagement\",\r\n \"enabled\": false,\r\n \"displayname\": \"Alert Management\"\r\n },\r\n {\r\n \"name\": \"AzureAutomation\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Automation\"\r\n },\r\n {\r\n \"name\": \"WireData\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data\"\r\n },\r\n {\r\n \"name\": \"SiteRecovery\",\r\n \"enabled\": true,\r\n \"displayname\": \"Azure Site Recovery\"\r\n },\r\n {\r\n \"name\": \"Backup\",\r\n \"enabled\": false,\r\n \"displayname\": \"Backup\"\r\n },\r\n {\r\n \"name\": \"SurfaceHub\",\r\n \"enabled\": false,\r\n \"displayname\": \"Surface Hub\"\r\n },\r\n {\r\n \"name\": \"NetworkMonitoring\",\r\n \"enabled\": false,\r\n \"displayname\": \"Network Performance Monitor (Preview)\"\r\n },\r\n {\r\n \"name\": \"Containers\",\r\n \"enabled\": false,\r\n \"displayname\": \"Containers\"\r\n },\r\n {\r\n \"name\": \"AppDependencyMonitor\",\r\n \"enabled\": false,\r\n \"displayname\": \"Application Dependency Monitor\"\r\n },\r\n {\r\n \"name\": \"ServiceMap\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Map\"\r\n },\r\n {\r\n \"name\": \"AzureNetworking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Networking Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADReplication\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Replication Status\"\r\n },\r\n {\r\n \"name\": \"Office365\",\r\n \"enabled\": false,\r\n \"displayname\": \"Office 365 (Preview)\"\r\n },\r\n {\r\n \"name\": \"CompatibilityAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Upgrade Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"KeyVault\",\r\n \"enabled\": false,\r\n \"displayname\": \"Key Vault (Preview)\"\r\n },\r\n {\r\n \"name\": \"ServiceFabric\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Fabric\"\r\n },\r\n {\r\n \"name\": \"DnsAnalytics\",\r\n \"enabled\": false,\r\n \"displayname\": \"DDI Analytics\"\r\n },\r\n {\r\n \"name\": \"ApplicationInsights\",\r\n \"enabled\": false,\r\n \"displayname\": \"Application Insights (Preview)\"\r\n },\r\n {\r\n \"name\": \"WireData2\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data 2.0\"\r\n },\r\n {\r\n \"name\": \"AgentHealthAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Agent Health \"\r\n },\r\n {\r\n \"name\": \"AzureActivity\",\r\n \"enabled\": false,\r\n \"displayname\": \"Activity Log Analytics\"\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n \"enabled\": false,\r\n \"displayname\": \"HDInsight Monitoring\"\r\n },\r\n {\r\n \"name\": \"VMware\",\r\n \"enabled\": false,\r\n \"displayname\": \"VMware (Preview)\"\r\n },\r\n {\r\n \"name\": \"LogicAppB2B\",\r\n \"enabled\": false,\r\n \"displayname\": \"Logic Apps B2B (Preview)\"\r\n }\r\n]", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -369,7 +369,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:34:20 GMT" + "Tue, 15 Nov 2016 04:43:45 GMT" ], "Pragma": [ "no-cache" @@ -391,7 +391,7 @@ "no-cache" ], "x-ms-request-id": [ - "5343ac27-225a-4d4e-b51b-5763feadbb6a" + "bddab68b-f45e-4914-9bcf-2f1eff229072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -407,35 +407,35 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14992" ], "x-ms-correlation-request-id": [ - "6cfded15-355b-465a-884e-120cbfa23c31" + "d69b8dee-eff3-4ccf-8c9b-970167fb82f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223420Z:6cfded15-355b-465a-884e-120cbfa23c31" + "WESTUS2:20161115T044345Z:d69b8dee-eff3-4ccf-8c9b-970167fb82f2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240/providers/Microsoft.OperationalInsights/workspaces/AzTest6311/intelligencePacks?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDYzMTEvaW50ZWxsaWdlbmNlUGFja3M/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a9350af-ff87-498b-9913-0c658d1e405e" + "9f97afef-2be2-4631-8856-017362867406" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"CapacityPerformance\",\r\n \"enabled\": false,\r\n \"displayname\": \"Capacity and Performance\"\r\n },\r\n {\r\n \"name\": \"Security\",\r\n \"enabled\": false,\r\n \"displayname\": \"Security and Audit\"\r\n },\r\n {\r\n \"name\": \"Updates\",\r\n \"enabled\": false,\r\n \"displayname\": \"Update Management\"\r\n },\r\n {\r\n \"name\": \"AntiMalware\",\r\n \"enabled\": false,\r\n \"displayname\": \"Antimalware Assessment\"\r\n },\r\n {\r\n \"name\": \"LogManagement\",\r\n \"enabled\": true,\r\n \"displayname\": \"Log Management\"\r\n },\r\n {\r\n \"name\": \"ChangeTracking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Change Tracking\"\r\n },\r\n {\r\n \"name\": \"SQLAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"SQL Assessment\"\r\n },\r\n {\r\n \"name\": \"SCOMAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"System Center Operations Manager Assessment (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Assessment\"\r\n },\r\n {\r\n \"name\": \"AlertManagement\",\r\n \"enabled\": false,\r\n \"displayname\": \"Alert Management\"\r\n },\r\n {\r\n \"name\": \"AzureAutomation\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Automation\"\r\n },\r\n {\r\n \"name\": \"WireData\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data\"\r\n },\r\n {\r\n \"name\": \"SiteRecovery\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Site Recovery\"\r\n },\r\n {\r\n \"name\": \"Backup\",\r\n \"enabled\": false,\r\n \"displayname\": \"Backup\"\r\n },\r\n {\r\n \"name\": \"SurfaceHub\",\r\n \"enabled\": false,\r\n \"displayname\": \"Surface Hub\"\r\n },\r\n {\r\n \"name\": \"NetworkMonitoring\",\r\n \"enabled\": false,\r\n \"displayname\": \"Network Performance Monitor (Preview)\"\r\n },\r\n {\r\n \"name\": \"Containers\",\r\n \"enabled\": false,\r\n \"displayname\": \"Containers\"\r\n },\r\n {\r\n \"name\": \"AzureNetworking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Networking Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADReplication\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Replication Status\"\r\n },\r\n {\r\n \"name\": \"Office365\",\r\n \"enabled\": false,\r\n \"displayname\": \"Office 365 (Preview)\"\r\n },\r\n {\r\n \"name\": \"CompatibilityAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Upgrade Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"KeyVault\",\r\n \"enabled\": false,\r\n \"displayname\": \"Key Vault (Preview)\"\r\n },\r\n {\r\n \"name\": \"ServiceFabric\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Fabric\"\r\n },\r\n {\r\n \"name\": \"DnsAnalytics\",\r\n \"enabled\": false,\r\n \"displayname\": \"DDI Analytics\"\r\n },\r\n {\r\n \"name\": \"ApplicationInsights\",\r\n \"enabled\": false,\r\n \"displayname\": \"Application Insights (Preview)\"\r\n },\r\n {\r\n \"name\": \"WireData2\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data 2.0\"\r\n },\r\n {\r\n \"name\": \"AgentHealthAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Agent Health \"\r\n },\r\n {\r\n \"name\": \"AzureActivity\",\r\n \"enabled\": false,\r\n \"displayname\": \"Activity Log Analytics\"\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n \"enabled\": false,\r\n \"displayname\": \"HDInsight Monitoring\"\r\n },\r\n {\r\n \"name\": \"VMware\",\r\n \"enabled\": false,\r\n \"displayname\": \"VMware (Preview)\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"name\": \"CapacityPerformance\",\r\n \"enabled\": false,\r\n \"displayname\": \"Capacity and Performance\"\r\n },\r\n {\r\n \"name\": \"Security\",\r\n \"enabled\": false,\r\n \"displayname\": \"Security and Audit\"\r\n },\r\n {\r\n \"name\": \"Updates\",\r\n \"enabled\": false,\r\n \"displayname\": \"Update Management\"\r\n },\r\n {\r\n \"name\": \"AntiMalware\",\r\n \"enabled\": false,\r\n \"displayname\": \"Antimalware Assessment\"\r\n },\r\n {\r\n \"name\": \"LogManagement\",\r\n \"enabled\": true,\r\n \"displayname\": \"Log Management\"\r\n },\r\n {\r\n \"name\": \"ChangeTracking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Change Tracking\"\r\n },\r\n {\r\n \"name\": \"SQLAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"SQL Assessment\"\r\n },\r\n {\r\n \"name\": \"SCOMAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"System Center Operations Manager Assessment (Preview)\"\r\n },\r\n {\r\n \"name\": \"ServiceDesk\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Desk(Preview)\"\r\n },\r\n {\r\n \"name\": \"ADAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Assessment\"\r\n },\r\n {\r\n \"name\": \"AlertManagement\",\r\n \"enabled\": false,\r\n \"displayname\": \"Alert Management\"\r\n },\r\n {\r\n \"name\": \"AzureAutomation\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Automation\"\r\n },\r\n {\r\n \"name\": \"WireData\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data\"\r\n },\r\n {\r\n \"name\": \"SiteRecovery\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Site Recovery\"\r\n },\r\n {\r\n \"name\": \"Backup\",\r\n \"enabled\": false,\r\n \"displayname\": \"Backup\"\r\n },\r\n {\r\n \"name\": \"SurfaceHub\",\r\n \"enabled\": false,\r\n \"displayname\": \"Surface Hub\"\r\n },\r\n {\r\n \"name\": \"NetworkMonitoring\",\r\n \"enabled\": false,\r\n \"displayname\": \"Network Performance Monitor (Preview)\"\r\n },\r\n {\r\n \"name\": \"Containers\",\r\n \"enabled\": false,\r\n \"displayname\": \"Containers\"\r\n },\r\n {\r\n \"name\": \"AppDependencyMonitor\",\r\n \"enabled\": false,\r\n \"displayname\": \"Application Dependency Monitor\"\r\n },\r\n {\r\n \"name\": \"ServiceMap\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Map\"\r\n },\r\n {\r\n \"name\": \"AzureNetworking\",\r\n \"enabled\": false,\r\n \"displayname\": \"Azure Networking Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"ADReplication\",\r\n \"enabled\": false,\r\n \"displayname\": \"AD Replication Status\"\r\n },\r\n {\r\n \"name\": \"Office365\",\r\n \"enabled\": false,\r\n \"displayname\": \"Office 365 (Preview)\"\r\n },\r\n {\r\n \"name\": \"CompatibilityAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Upgrade Analytics (Preview)\"\r\n },\r\n {\r\n \"name\": \"KeyVault\",\r\n \"enabled\": false,\r\n \"displayname\": \"Key Vault (Preview)\"\r\n },\r\n {\r\n \"name\": \"ServiceFabric\",\r\n \"enabled\": false,\r\n \"displayname\": \"Service Fabric\"\r\n },\r\n {\r\n \"name\": \"DnsAnalytics\",\r\n \"enabled\": false,\r\n \"displayname\": \"DDI Analytics\"\r\n },\r\n {\r\n \"name\": \"ApplicationInsights\",\r\n \"enabled\": false,\r\n \"displayname\": \"Application Insights (Preview)\"\r\n },\r\n {\r\n \"name\": \"WireData2\",\r\n \"enabled\": false,\r\n \"displayname\": \"Wire Data 2.0\"\r\n },\r\n {\r\n \"name\": \"AgentHealthAssessment\",\r\n \"enabled\": false,\r\n \"displayname\": \"Agent Health \"\r\n },\r\n {\r\n \"name\": \"AzureActivity\",\r\n \"enabled\": false,\r\n \"displayname\": \"Activity Log Analytics\"\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n \"enabled\": false,\r\n \"displayname\": \"HDInsight Monitoring\"\r\n },\r\n {\r\n \"name\": \"VMware\",\r\n \"enabled\": false,\r\n \"displayname\": \"VMware (Preview)\"\r\n },\r\n {\r\n \"name\": \"LogicAppB2B\",\r\n \"enabled\": false,\r\n \"displayname\": \"Logic Apps B2B (Preview)\"\r\n }\r\n]", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -447,7 +447,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:34:21 GMT" + "Tue, 15 Nov 2016 04:43:46 GMT" ], "Pragma": [ "no-cache" @@ -469,7 +469,7 @@ "no-cache" ], "x-ms-request-id": [ - "57da8628-2e38-4e4f-a604-2da40b258112" + "17fd2d77-2b69-4d89-990e-c62851dccb44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -485,32 +485,32 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14991" ], "x-ms-correlation-request-id": [ - "ed1abab8-fd98-4361-b53d-a98f605fce03" + "b3814000-1ccb-4ca3-8f0a-e3958c11e42f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223421Z:ed1abab8-fd98-4361-b53d-a98f605fce03" + "WESTUS2:20161115T044346Z:b3814000-1ccb-4ca3-8f0a-e3958c11e42f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks/ChangeTracking/Disable?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3MvQ2hhbmdlVHJhY2tpbmcvRGlzYWJsZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240/providers/Microsoft.OperationalInsights/workspaces/AzTest6311/intelligencePacks/ChangeTracking/Disable?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDYzMTEvaW50ZWxsaWdlbmNlUGFja3MvQ2hhbmdlVHJhY2tpbmcvRGlzYWJsZT9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29845e3c-038e-4cc2-be6c-d9be7350ad7b" + "458c7605-94ba-4377-8fbc-b0f7ebbaebb7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -525,7 +525,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:34:20 GMT" + "Tue, 15 Nov 2016 04:43:45 GMT" ], "Pragma": [ "no-cache" @@ -541,7 +541,7 @@ "no-cache" ], "x-ms-request-id": [ - "0f456d06-4b8e-4f6c-8d4c-2102b9317bd4" + "a8f10ae7-fe6e-4d40-bed8-5ddfebefe07d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,29 +560,29 @@ "1196" ], "x-ms-correlation-request-id": [ - "23ac909f-242c-4241-91f2-fba36b1ee64c" + "a47c5ad3-75b1-4439-8fcc-01fc2d437f29" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223421Z:23ac909f-242c-4241-91f2-fba36b1ee64c" + "WESTUS2:20161115T044346Z:a47c5ad3-75b1-4439-8fcc-01fc2d437f29" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5212/providers/Microsoft.OperationalInsights/workspaces/AzTest5239/intelligencePacks/SiteRecovery/Disable?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDUyMzkvaW50ZWxsaWdlbmNlUGFja3MvU2l0ZVJlY292ZXJ5L0Rpc2FibGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest5240/providers/Microsoft.OperationalInsights/workspaces/AzTest6311/intelligencePacks/SiteRecovery/Disable?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3Q1MjQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDYzMTEvaW50ZWxsaWdlbmNlUGFja3MvU2l0ZVJlY292ZXJ5L0Rpc2FibGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa2fdc40-44f1-4c68-99a9-3f6c49c12a6a" + "e468d352-a373-476b-bf40-9e1abde3987f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -597,7 +597,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:34:20 GMT" + "Tue, 15 Nov 2016 04:43:45 GMT" ], "Pragma": [ "no-cache" @@ -613,7 +613,7 @@ "no-cache" ], "x-ms-request-id": [ - "c34ca137-da52-4aad-977a-a9c3570453bf" + "254bd7a1-9d52-45c3-8e58-67a387f075e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -632,10 +632,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "f3135388-068a-4aa7-940f-71fdf5328eb4" + "d9e3a2e3-c88e-4c08-9ee4-45423343b613" ], "x-ms-routing-request-id": [ - "WESTUS2:20161102T223421Z:f3135388-068a-4aa7-940f-71fdf5328eb4" + "WESTUS2:20161115T044346Z:d9e3a2e3-c88e-4c08-9ee4-45423343b613" ] }, "StatusCode": 200 @@ -643,8 +643,8 @@ ], "Names": { "CanEnableDisableListIntelligencePacks": [ - "OIAutoRest5212", - "AzTest5239" + "OIAutoRest5240", + "AzTest6311" ] }, "Variables": { diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanPerformWorkspaceActions.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanPerformWorkspaceActions.json index e81799c5510b..3e576a172455 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanPerformWorkspaceActions.json +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/SessionRecords/OperationalInsights.Test.ScenarioTests.WorkspaceOperationsTests/CanPerformWorkspaceActions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3387?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzMzg3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "41" ], "x-ms-client-request-id": [ - "cfdb4d69-0e97-4e1d-b4d0-b223fe99e81c" + "542c3232-4767-4401-8bae-f78ce3ba94f1" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest3867\",\r\n \"name\": \"OIAutoRest3867\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourceGroups/OIAutoRest3387\",\r\n \"name\": \"OIAutoRest3387\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "193" @@ -38,7 +38,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:30:42 GMT" + "Tue, 15 Nov 2016 04:41:01 GMT" ], "Pragma": [ "no-cache" @@ -47,13 +47,13 @@ "1198" ], "x-ms-request-id": [ - "050058b3-7a84-4cde-8a57-d09f1d8a880f" + "88f16dfa-e973-4aa0-8a07-cc8018de8000" ], "x-ms-correlation-request-id": [ - "050058b3-7a84-4cde-8a57-d09f1d8a880f" + "88f16dfa-e973-4aa0-8a07-cc8018de8000" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T223042Z:050058b3-7a84-4cde-8a57-d09f1d8a880f" + "WESTUS2:20161115T044101Z:88f16dfa-e973-4aa0-8a07-cc8018de8000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -68,14 +68,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af67f04d-4c6d-4005-a7fb-c43d67f14873" + "0b5505bf-e968-49ce-a7dd-08530812eb08" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, "ResponseBody": "[]", @@ -87,7 +87,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:30:47 GMT" + "Tue, 15 Nov 2016 04:41:02 GMT" ], "Pragma": [ "no-cache" @@ -109,7 +109,7 @@ "no-cache" ], "x-ms-request-id": [ - "0b6213dc-a882-48d7-9ac1-29257627b7b9" + "a9ee361a-d278-46b6-9f52-96ef0456236b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -125,22 +125,22 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14976" ], "x-ms-correlation-request-id": [ - "146ac59f-a1da-46ee-ae62-54e85bfa7c5b" + "470efeeb-c28b-407f-b0b5-00d8ee139084" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T223047Z:146ac59f-a1da-46ee-ae62-54e85bfa7c5b" + "WESTUS2:20161115T044103Z:470efeeb-c28b-407f-b0b5-00d8ee139084" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3387/providers/Microsoft.OperationalInsights/workspaces/AzTest3958?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM5NTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customerId\": \"b00fe960-7ebc-43ca-a996-a7404e31e1de\"\r\n },\r\n \"name\": \"AzTest4139\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customerId\": \"a20f0ff6-e076-47c6-892b-4c2c7b25840e\"\r\n },\r\n \"name\": \"AzTest3958\",\r\n \"location\": \"australiasoutheast\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -149,17 +149,17 @@ "148" ], "x-ms-client-request-id": [ - "92c487a7-c221-4dc2-9a8b-980da074d21f" + "5d770b99-1ca8-48ea-89e3-5fdd16c20faa" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"Account b00fe960-7ebc-43ca-a996-a7404e31e1de is not a valid link target\",\r\n \"target\": \"CustomerId\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"Account a20f0ff6-e076-47c6-892b-4c2c7b25840e is not a valid link target\",\r\n \"target\": \"CustomerId\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "137" @@ -171,7 +171,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:30:52 GMT" + "Tue, 15 Nov 2016 04:41:09 GMT" ], "Pragma": [ "no-cache" @@ -181,7 +181,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "0cab6ab1-ad17-4d43-b0c2-d80708d5b31d" + "96938f0c-7575-429d-a49e-dac024e74603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -197,41 +197,41 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "596" + "1199" ], "x-ms-correlation-request-id": [ - "89d8c414-50c2-4c18-8b24-c29ef9aca121" + "e0502012-d555-4db4-b6cf-ab2af529509d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T223053Z:89d8c414-50c2-4c18-8b24-c29ef9aca121" + "WESTUS2:20161115T044109Z:e0502012-d555-4db4-b6cf-ab2af529509d" ] }, "StatusCode": 400 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3387/providers/Microsoft.OperationalInsights/workspaces/AzTest3958?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM5NTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"AzTest4139\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n }\r\n },\r\n \"name\": \"AzTest3958\",\r\n \"location\": \"australiasoutheast\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "65" + "133" ], "x-ms-client-request-id": [ - "10c5fdce-6bf1-4cdc-bd0b-195dd3e078c0" + "373a3c3c-4fb2-45a9-a4ac-b363cdbcdd72" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"2de58464-fabb-41c4-83ed-7ad08cd960a5\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest3867%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest4139\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 0\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest3867/providers/microsoft.operationalinsights/workspaces/aztest4139\",\r\n \"name\": \"AzTest4139\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"aa9332cb-dfb8-4757-95d9-9c1e9063560c\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest3387%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest3958\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest3387/providers/microsoft.operationalinsights/workspaces/aztest3958\",\r\n \"name\": \"AzTest3958\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", "ResponseHeaders": { "Content-Length": [ "765" @@ -243,7 +243,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:30:58 GMT" + "Tue, 15 Nov 2016 04:41:16 GMT" ], "Pragma": [ "no-cache" @@ -253,7 +253,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "bedd3c4c-8ded-47aa-ad64-3be5a1409e4a" + "b694b79e-e097-4fcc-956f-f811bae1860f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -269,29 +269,29 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "595" + "1198" ], "x-ms-correlation-request-id": [ - "1841f36e-e4fa-4146-9459-af96475e7385" + "16b748bd-547b-40c6-a639-131e9ec8a18c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T223059Z:1841f36e-e4fa-4146-9459-af96475e7385" + "WESTUS2:20161115T044116Z:16b748bd-547b-40c6-a639-131e9ec8a18c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzk/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3387/providers/Microsoft.OperationalInsights/workspaces/AzTest3958?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM5NTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"2de58464-fabb-41c4-83ed-7ad08cd960a5\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest3867%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest4139\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 0\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest3867/providers/microsoft.operationalinsights/workspaces/aztest4139\",\r\n \"name\": \"AzTest4139\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"aa9332cb-dfb8-4757-95d9-9c1e9063560c\",\r\n \"portalUrl\": \"https://seau.mms.microsoft.com/Account?tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&resource=%2fsubscriptions%2fa6383be3-f0e8-4968-93d5-10f2625f5bb5%2fresourcegroups%2foiautorest3387%2fproviders%2fmicrosoft.operationalinsights%2fworkspaces%2faztest3958\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"retentionInDays\": 7\r\n },\r\n \"id\": \"/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/oiautorest3387/providers/microsoft.operationalinsights/workspaces/aztest3958\",\r\n \"name\": \"AzTest3958\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -299,15 +299,15 @@ "Cache-Control": [ "no-cache" ], + "Connection": [ + "close" + ], "Date": [ - "Wed, 02 Nov 2016 22:31:29 GMT" + "Tue, 15 Nov 2016 04:41:46 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5", "Microsoft-IIS/8.5" @@ -316,7 +316,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "668908cc-ced5-46ec-9784-f472f2fb8857" + "fb2f40c1-bd38-429d-80ab-5fe117bc5ee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -332,35 +332,35 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14974" ], "x-ms-correlation-request-id": [ - "67accf4b-4fe2-4334-9f08-be52774ed9d8" + "71bba9cf-020b-4ec6-a9d1-f868b5b5ae63" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T223129Z:67accf4b-4fe2-4334-9f08-be52774ed9d8" + "WESTUS2:20161115T044146Z:71bba9cf-020b-4ec6-a9d1-f868b5b5ae63" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139/sharedKeys?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzkvc2hhcmVkS2V5cz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3387/providers/Microsoft.OperationalInsights/workspaces/AzTest3958/sharedKeys?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM5NTgvc2hhcmVkS2V5cz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9d4a63b-64b7-4098-8c9b-d0f80bf2b999" + "632d874f-3373-4ff7-91cb-416bc76271ef" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"primarySharedKey\": \"Ap8RM7UKhXP8V4prlfaEJ41keEczLUY3Ccsf7PBCfVkUpZV8PSIxrBzwUe61HWAZMtWbDczlsSworKDxgeq2wA==\",\r\n \"secondarySharedKey\": \"/Qj3MhqCLGEah2zNPw0dGNE9k1BScnEFnp0cHPzJnKBzUGx3abaSjjEQ0VhB5YTBLiKDWyCUEe/43bmxGHXMrA==\"\r\n}", + "ResponseBody": "{\r\n \"primarySharedKey\": \"EuLLecAxd3od/g3sydH8FXnhpzk8UCRG2qwXt4HsVGCKBWn6yxO2LHbZVOrgYBcMhr4SCt07aTN+2uT0EnbB8A==\",\r\n \"secondarySharedKey\": \"QFUogZ9DcSlRLd52vaoLRrWcDqAshlued3bFyXIY/rbwqpzAyxlKdZOCqk2ZGUedq5C8nffJPT5/IiRZF7nlkg==\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -372,7 +372,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:31:29 GMT" + "Tue, 15 Nov 2016 04:41:47 GMT" ], "Pragma": [ "no-cache" @@ -394,7 +394,7 @@ "no-cache" ], "x-ms-request-id": [ - "ee96d685-469f-47da-9bf0-a9c61e4f2e31" + "1848a218-c9a9-44d4-8fb2-514f76466247" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -410,32 +410,32 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14988" ], "x-ms-correlation-request-id": [ - "8aefb9b4-09c2-4383-9a32-31872344252d" + "34ba2db9-ba2e-4f38-a766-6b1f94c550cb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T223130Z:8aefb9b4-09c2-4383-9a32-31872344252d" + "WESTUS2:20161115T044148Z:34ba2db9-ba2e-4f38-a766-6b1f94c550cb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139/managementGroups?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzkvbWFuYWdlbWVudEdyb3Vwcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3387/providers/Microsoft.OperationalInsights/workspaces/AzTest3958/managementGroups?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM5NTgvbWFuYWdlbWVudEdyb3Vwcz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "021a34d0-376b-41fd-b52d-07d27a549093" + "2265ad16-3394-4d48-a00a-3b40b8011862" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -450,7 +450,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:31:29 GMT" + "Tue, 15 Nov 2016 04:41:48 GMT" ], "Pragma": [ "no-cache" @@ -474,38 +474,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14987" ], "x-ms-request-id": [ - "f55e68ca-bb13-4ae2-8488-fd881c4784c1" + "b2b66878-e9bf-46f7-8c0b-2665ac4a56e0" ], "x-ms-correlation-request-id": [ - "f55e68ca-bb13-4ae2-8488-fd881c4784c1" + "b2b66878-e9bf-46f7-8c0b-2665ac4a56e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T223130Z:f55e68ca-bb13-4ae2-8488-fd881c4784c1" + "WESTUS2:20161115T044148Z:b2b66878-e9bf-46f7-8c0b-2665ac4a56e0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3867/providers/Microsoft.OperationalInsights/workspaces/AzTest4139/usages?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzODY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDQxMzkvdXNhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/resourcegroups/OIAutoRest3387/providers/Microsoft.OperationalInsights/workspaces/AzTest3958/usages?api-version=2015-11-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTYzODNiZTMtZjBlOC00OTY4LTkzZDUtMTBmMjYyNWY1YmI1L3Jlc291cmNlZ3JvdXBzL09JQXV0b1Jlc3QzMzg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL0F6VGVzdDM5NTgvdXNhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ef381ad-914b-4168-9cd5-c1c623a9f7a2" + "4296911f-a304-420f-8d1a-bc366a93df2e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/2.0.0" + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": {\r\n \"value\": \"DataAnalyzed\",\r\n \"localizedValue\": \"Data Analyzed\"\r\n },\r\n \"unit\": \"Bytes\",\r\n \"currentValue\": 0.0,\r\n \"limit\": 524288000.0,\r\n \"nextResetTime\": \"2016-11-03T00:00:00Z\",\r\n \"quotaPeriod\": \"P1D\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": {\r\n \"value\": \"DataAnalyzed\",\r\n \"localizedValue\": \"Data Analyzed\"\r\n },\r\n \"unit\": \"Bytes\",\r\n \"currentValue\": 0.0,\r\n \"limit\": 524288000.0,\r\n \"nextResetTime\": \"2016-11-16T00:00:00Z\",\r\n \"quotaPeriod\": \"P1D\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -517,7 +517,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 22:31:30 GMT" + "Tue, 15 Nov 2016 04:41:49 GMT" ], "Pragma": [ "no-cache" @@ -541,16 +541,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "14986" ], "x-ms-request-id": [ - "a430df24-8c00-4bac-9958-76c6862645de" + "0ac3c4fe-39b3-4231-ab17-7ffa6d45b4d0" ], "x-ms-correlation-request-id": [ - "a430df24-8c00-4bac-9958-76c6862645de" + "0ac3c4fe-39b3-4231-ab17-7ffa6d45b4d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T223130Z:a430df24-8c00-4bac-9958-76c6862645de" + "WESTUS2:20161115T044149Z:0ac3c4fe-39b3-4231-ab17-7ffa6d45b4d0" ] }, "StatusCode": 200 @@ -558,8 +558,8 @@ ], "Names": { "CanPerformWorkspaceActions": [ - "OIAutoRest3867", - "AzTest4139" + "OIAutoRest3387", + "AzTest3958" ] }, "Variables": { From 87b4c223938eedbe9083efed4848374d8ebe8ddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= Date: Mon, 21 Nov 2016 11:15:26 -0800 Subject: [PATCH 003/137] Several changes derived from modifications to the Swagger specs --- .../Insights.Tests/BasicTests/AlertsTests.cs | 2 +- .../BasicTests/EventDataTests.cs | 3 +- .../BasicTests/LogProfilesTests.cs | 4 +- .../ServiceDiagnosticSettingsTests.cs | 4 +- .../Insights/Insights.Tests/project.json | 5 +- .../Insights/EventCategoriesOperations.cs | 8 +- .../EventCategoriesOperationsExtensions.cs | 10 +- .../Generated/Insights/EventsOperations.cs | 49 +++- .../Insights/EventsOperationsExtensions.cs | 96 ++++++- .../Insights/IEventCategoriesOperations.cs | 10 +- .../Generated/Insights/IEventsOperations.cs | 53 +++- .../Generated/Insights/IInsightsClient.cs | 6 +- .../Insights/IMetricDefinitionsOperations.cs | 10 +- .../Generated/Insights/IMetricsOperations.cs | 19 +- .../Insights/ITenantEventsOperations.cs | 68 ++++- .../Insights/IUsageMetricsOperations.cs | 2 +- .../Generated/Insights/InsightsClient.cs | 2 +- .../Insights/MetricDefinitionsOperations.cs | 9 +- .../MetricDefinitionsOperationsExtensions.cs | 16 +- .../Generated/Insights/MetricsOperations.cs | 18 +- .../Insights/MetricsOperationsExtensions.cs | 34 ++- .../Insights/Models/AggregationType.cs | 2 +- .../Insights/Models/EventChannels.cs | 2 +- .../Generated/Insights/Models/EventData.cs | 177 ++++++++----- .../Generated/Insights/Models/EventLevel.cs | 2 +- .../Insights/Models/HttpRequestInfo.cs | 2 +- .../Insights/Models/LocalizableString.cs | 17 +- .../Generated/Insights/Models/Metric.cs | 23 +- .../Insights/Models/MetricAvailability.cs | 10 +- .../Insights/Models/MetricDefinition.cs | 40 ++- .../Generated/Insights/Models/MetricValue.cs | 16 +- .../Generated/Insights/Models/Page.cs | 2 +- .../Generated/Insights/Models/Page1.cs | 2 +- .../Insights/Models/SenderAuthorization.cs | 16 +- .../Generated/Insights/Models/Unit.cs | 2 +- .../Generated/Insights/Models/UsageMetric.cs | 15 +- .../Insights/TenantEventsOperations.cs | 57 ++++- .../TenantEventsOperationsExtensions.cs | 112 ++++++++- .../Insights/UsageMetricsOperations.cs | 2 +- .../UsageMetricsOperationsExtensions.cs | 34 +-- .../Insights/AlertRuleIncidentsOperations.cs | 191 +++++++++++++- .../AlertRuleIncidentsOperationsExtensions.cs | 42 +++- .../Insights/AlertRulesOperations.cs | 6 +- .../AlertRulesOperationsExtensions.cs | 10 +- .../Insights/AutoscaleSettingsOperations.cs | 2 +- .../AutoscaleSettingsOperationsExtensions.cs | 2 +- .../Insights/IAlertRuleIncidentsOperations.cs | 27 +- .../Insights/IAlertRulesOperations.cs | 6 +- .../Insights/IAutoscaleSettingsOperations.cs | 2 +- .../Insights/IIncidentsOperations.cs | 45 ---- .../Insights/IInsightsManagementClient.cs | 19 +- .../Insights/ILogProfilesOperations.cs | 6 +- .../IServiceDiagnosticSettingsOperations.cs | 4 +- .../Insights/IncidentsOperations.cs | 234 ------------------ .../Insights/IncidentsOperationsExtensions.cs | 61 ----- .../Insights/InsightsManagementClient.cs | 18 +- .../Insights/LogProfilesOperations.cs | 6 +- .../LogProfilesOperationsExtensions.cs | 10 +- .../Insights/Models/AlertRuleResource.cs | 10 +- .../Insights/Models/AutoscaleNotification.cs | 4 +- .../Insights/Models/AutoscaleProfile.cs | 13 +- .../Models/AutoscaleSettingResource.cs | 19 +- .../Models/ComparisonOperationType.cs | 2 +- .../Insights/Models/ConditionOperator.cs | 2 +- .../Insights/Models/EmailNotification.cs | 16 +- .../Management/Insights/Models/Incident.cs | 10 +- .../Models/LocationThresholdRuleCondition.cs | 15 +- .../LogProfileCreateOrUpdateParameters.cs | 90 ------- .../Insights/Models/LogProfileProperties.cs | 110 ++++++++ .../Insights/Models/LogProfileResource.cs | 53 ++-- .../Management/Insights/Models/LogSettings.cs | 13 +- .../ManagementEventAggregationCondition.cs | 9 +- .../Models/ManagementEventRuleCondition.cs | 17 +- .../Insights/Models/MetricSettings.cs | 2 +- .../Insights/Models/MetricStatisticType.cs | 2 +- .../Insights/Models/MetricTrigger.cs | 62 +++-- .../Management/Insights/Models/Page.cs | 2 +- .../Management/Insights/Models/Page1.cs | 2 +- .../Management/Insights/Models/Recurrence.cs | 27 +- .../Insights/Models/RecurrenceFrequency.cs | 2 +- .../Insights/Models/RecurrentSchedule.cs | 124 +++++++++- .../Management/Insights/Models/Resource.cs | 2 +- .../Insights/Models/RetentionPolicy.cs | 8 +- .../Management/Insights/Models/RuleAction.cs | 2 +- .../Insights/Models/RuleCondition.cs | 2 +- .../Insights/Models/RuleDataSource.cs | 2 +- .../Insights/Models/RuleEmailAction.cs | 21 +- .../RuleManagementEventClaimsDataSource.cs | 2 +- .../Models/RuleManagementEventDataSource.cs | 5 +- .../Insights/Models/RuleMetricDataSource.cs | 5 +- .../Insights/Models/RuleWebhookAction.cs | 16 +- .../Management/Insights/Models/ScaleAction.cs | 40 ++- .../Insights/Models/ScaleCapacity.cs | 10 +- .../Insights/Models/ScaleDirection.cs | 2 +- .../Management/Insights/Models/ScaleRule.cs | 22 +- .../Management/Insights/Models/ScaleType.cs | 25 ++ .../Models/ServiceDiagnosticSettings.cs | 86 +++++++ ...gnosticSettingsCreateOrUpdateParameters.cs | 76 ------ .../ServiceDiagnosticSettingsResource.cs | 47 ++-- .../Insights/Models/ThresholdRuleCondition.cs | 21 +- .../Models/TimeAggregationOperator.cs | 2 +- .../Insights/Models/TimeAggregationType.cs | 2 +- .../Management/Insights/Models/TimeWindow.cs | 9 +- .../Insights/Models/WebhookNotification.cs | 9 +- .../ServiceDiagnosticSettingsOperations.cs | 4 +- ...eDiagnosticSettingsOperationsExtensions.cs | 6 +- .../Microsoft.Azure.Insights/error.txt | 0 .../Microsoft.Azure.Insights/generate.cmd | 2 +- .../Microsoft.Azure.Insights/project.json | 6 +- 109 files changed, 1686 insertions(+), 1006 deletions(-) delete mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IIncidentsOperations.cs delete mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IncidentsOperations.cs delete mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IncidentsOperationsExtensions.cs delete mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileCreateOrUpdateParameters.cs create mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileProperties.cs create mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleType.cs create mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettings.cs delete mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettingsCreateOrUpdateParameters.cs create mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/error.txt diff --git a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/AlertsTests.cs b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/AlertsTests.cs index 2fdfce570b88..c980c928ce17 100644 --- a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/AlertsTests.cs +++ b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/AlertsTests.cs @@ -102,7 +102,7 @@ public void ListIncidentsTest() var handler = new RecordedDelegatingHandler(response); var insightsClient = GetInsightsManagementClient(handler); - var actualIncidents = insightsClient.Incidents.ListByAlertRule( + var actualIncidents = insightsClient.AlertRuleIncidents.ListByAlertRule( resourceGroupName: "rg1", ruleName: "r1"); diff --git a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/EventDataTests.cs b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/EventDataTests.cs index a7e9f0aefd0a..b3ce7bf9da4f 100644 --- a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/EventDataTests.cs +++ b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/EventDataTests.cs @@ -174,7 +174,6 @@ private static void AreEqual(SenderAuthorization exp, SenderAuthorization act) if (exp != null) { Assert.Equal(exp.Action, act.Action); - Assert.Equal(exp.Condition, act.Condition); Assert.Equal(exp.Role, act.Role); Assert.Equal(exp.Scope, act.Scope); } @@ -185,7 +184,7 @@ private static List GetEventDataCollection() return new List() { new EventData( - authorization: new SenderAuthorization(action: "action", condition: "condition", role: "role" , scope: "scope"), + authorization: new SenderAuthorization(action: "action", role: "role" , scope: "scope"), claims: new Dictionary { {"prop1", "val1"} }, correlationId: Guid.NewGuid().ToString("N"), description: "description", diff --git a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/LogProfilesTests.cs b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/LogProfilesTests.cs index 09cdd5f6d8fe..3a852c509a48 100644 --- a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/LogProfilesTests.cs +++ b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/LogProfilesTests.cs @@ -127,9 +127,9 @@ private static LogProfileResource CreateLogProfile() }; } - private static LogProfileCreateOrUpdateParameters CreateLogProfileParams() + private static LogProfileProperties CreateLogProfileParams() { - return new LogProfileCreateOrUpdateParameters + return new LogProfileProperties { StorageAccountId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.storage/storageaccounts/sa1", ServiceBusRuleId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.servicebus/namespaces/sb1/authorizationrules/ar1", diff --git a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs index f47e2f13c5e3..49ea9aa753c9 100644 --- a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs +++ b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs @@ -68,9 +68,9 @@ public void LogProfiles_GetTest() AreEqual(expResponse, actualResponse); } - private static ServiceDiagnosticSettingsCreateOrUpdateParameters CreateDiagnosticSettingsParams() + private static ServiceDiagnosticSettings CreateDiagnosticSettingsParams() { - return new ServiceDiagnosticSettingsCreateOrUpdateParameters + return new ServiceDiagnosticSettings { StorageAccountId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.storage/storageaccounts/sa1", ServiceBusRuleId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.servicebus/namespaces/ns1/authorizationRules/authrule", diff --git a/src/ResourceManagement/Insights/Insights.Tests/project.json b/src/ResourceManagement/Insights/Insights.Tests/project.json index 5344a52246a3..eb085530c3ed 100644 --- a/src/ResourceManagement/Insights/Insights.Tests/project.json +++ b/src/ResourceManagement/Insights/Insights.Tests/project.json @@ -32,9 +32,8 @@ "type": "platform", "version": "1.0.0" }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.3.5-preview,2.0.0)", - "Microsoft.Azure.Insights": "0.14.0-preview", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.4.0-preview,2.0.0)", + "Microsoft.Azure.Insights": "0.14.1-preview", "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029" } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventCategoriesOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventCategoriesOperations.cs index f433791d8074..e1a26eec1123 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventCategoriesOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventCategoriesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,7 +42,9 @@ internal EventCategoriesOperations(InsightsClient client) public InsightsClient Client { get; private set; } /// - /// The list of event categories. + /// get the list of available event categories supported in the Activity Log + /// Service. The current list includes the following: Aministrative, Security, + /// ServiceHealth, Alert, Recommendation, Policy. /// /// /// Headers that will be added to request. @@ -75,7 +77,7 @@ internal EventCategoriesOperations(InsightsClient client) } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/microsoft.insights/eventtypes/management/eventcategories").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/microsoft.insights/eventcategories").ToString(); System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventCategoriesOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventCategoriesOperationsExtensions.cs index 35fa60c1b24d..35167a713c31 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventCategoriesOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventCategoriesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,7 +18,9 @@ namespace Microsoft.Azure.Insights public static partial class EventCategoriesOperationsExtensions { /// - /// The list of event categories. + /// get the list of available event categories supported in the Activity Log + /// Service. The current list includes the following: Aministrative, Security, + /// ServiceHealth, Alert, Recommendation, Policy. /// /// /// The operations group for this extension method. @@ -29,7 +31,9 @@ public static System.Collections.Generic.IEnumerable List(thi } /// - /// The list of event categories. + /// get the list of available event categories supported in the Activity Log + /// Service. The current list includes the following: Aministrative, Security, + /// ServiceHealth, Alert, Recommendation, Policy. /// /// /// The operations group for this extension method. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventsOperations.cs index 995901eb57fe..d5e88ba90cba 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,17 +42,35 @@ internal EventsOperations(InsightsClient client) public InsightsClient Client { get; private set; } /// - /// Provides the list of events. + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// OData parameters to apply to the operation. /// /// - /// The list of property names to be returned. Possible values are: + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: /// authorization, channels, claims, correlationId, description, eventDataId, - /// eventName, eventTimestamp, httpRequest, level, operationId, - /// operationName, properties, resourceGroupName, resourceProviderName, - /// resourceId, status, submissionTimestamp, subStatus, subscriptionId + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId /// /// /// Headers that will be added to request. @@ -237,7 +255,24 @@ internal EventsOperations(InsightsClient client) } /// - /// Provides the list of events. + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventsOperationsExtensions.cs index c7a1c3fd3d90..0b1b18d7e722 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/EventsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,7 +18,24 @@ namespace Microsoft.Azure.Insights public static partial class EventsOperationsExtensions { /// - /// Provides the list of events. + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The operations group for this extension method. @@ -27,11 +44,12 @@ public static partial class EventsOperationsExtensions /// OData parameters to apply to the operation. /// /// - /// The list of property names to be returned. Possible values are: + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: /// authorization, channels, claims, correlationId, description, eventDataId, - /// eventName, eventTimestamp, httpRequest, level, operationId, - /// operationName, properties, resourceGroupName, resourceProviderName, - /// resourceId, status, submissionTimestamp, subStatus, subscriptionId + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId /// public static Microsoft.Rest.Azure.IPage List(this IEventsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string)) { @@ -39,7 +57,24 @@ public static partial class EventsOperationsExtensions } /// - /// Provides the list of events. + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The operations group for this extension method. @@ -48,11 +83,12 @@ public static partial class EventsOperationsExtensions /// OData parameters to apply to the operation. /// /// - /// The list of property names to be returned. Possible values are: + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: /// authorization, channels, claims, correlationId, description, eventDataId, - /// eventName, eventTimestamp, httpRequest, level, operationId, - /// operationName, properties, resourceGroupName, resourceProviderName, - /// resourceId, status, submissionTimestamp, subStatus, subscriptionId + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId /// /// /// The cancellation token. @@ -66,7 +102,24 @@ public static partial class EventsOperationsExtensions } /// - /// Provides the list of events. + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The operations group for this extension method. @@ -80,7 +133,24 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IEventsOperati } /// - /// Provides the list of events. + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The operations group for this extension method. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IEventCategoriesOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IEventCategoriesOperations.cs index e1c7db18f863..0d1e7f6c1a55 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IEventCategoriesOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IEventCategoriesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,7 +17,10 @@ namespace Microsoft.Azure.Insights public partial interface IEventCategoriesOperations { /// - /// The list of event categories. + /// get the list of available event categories supported in the + /// Activity Log Service. The current list includes the following: + /// Aministrative, Security, ServiceHealth, Alert, Recommendation, + /// Policy. /// /// /// The headers that will be added to request. @@ -31,6 +34,9 @@ public partial interface IEventCategoriesOperations /// /// Thrown when unable to deserialize the response /// + /// + /// Thrown when a required parameter is null + /// System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IEventsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IEventsOperations.cs index 151cb6776c9b..978e76c6e863 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IEventsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IEventsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,16 +17,36 @@ namespace Microsoft.Azure.Insights public partial interface IEventsOperations { /// - /// Provides the list of events. + /// Provides the list of events. The **$filter** is very restricted and + /// allows only the following patterns. - List events for a resource + /// group: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceUri eq + /// '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation'. + /// -List events for a resource provider: $filter=eventTimestamp ge + /// '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, + /// Operation' and correlationId eq '<CorrelationID>'. No other + /// syntax is allowed. /// /// /// OData parameters to apply to the operation. /// /// - /// The list of property names to be returned. Possible values are: - /// authorization, channels, claims, correlationId, description, - /// eventDataId, eventName, eventTimestamp, httpRequest, level, - /// operationId, operationName, properties, resourceGroupName, + /// Used to fetch events with only the given properties. The filter is + /// a comma separated list of property names to be returned. Possible + /// values are: authorization, channels, claims, correlationId, + /// description, eventDataId, eventName, eventTimestamp, httpRequest, + /// level, operationId, operationName, properties, resourceGroupName, /// resourceProviderName, resourceId, status, submissionTimestamp, /// subStatus, subscriptionId /// @@ -47,7 +67,26 @@ public partial interface IEventsOperations /// System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Provides the list of events. + /// Provides the list of events. The **$filter** is very restricted and + /// allows only the following patterns. - List events for a resource + /// group: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceUri eq + /// '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation'. + /// -List events for a resource provider: $filter=eventTimestamp ge + /// '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, + /// Operation' and correlationId eq '<CorrelationID>'. No other + /// syntax is allowed. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IInsightsClient.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IInsightsClient.cs index 885e3b9f60f5..111a5e675981 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IInsightsClient.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IInsightsClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -54,8 +54,8 @@ public partial interface IInsightsClient : System.IDisposable int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IMetricDefinitionsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IMetricDefinitionsOperations.cs index 1d10da3a359a..257c9edc38b3 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IMetricDefinitionsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IMetricDefinitionsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,7 +17,13 @@ namespace Microsoft.Azure.Insights public partial interface IMetricDefinitionsOperations { /// - /// Lists the metric definitions for the resource. + /// Lists the metric definitions for the resource. The **$filter** + /// parameter is optional, and can be used to only retrieve certain + /// metric definitions. For example, get just the definition for the + /// CPU percentage counter: $filter=name.value eq '\Processor(_Total)\% + /// Processor Time'. This $filter is very restricted and allows only + /// these 'name eq <value>' clauses separated by or operators. No + /// other syntax is allowed. /// /// /// The identifier of the resource. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IMetricsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IMetricsOperations.cs index b2d120733ef2..e7b906cd43f4 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IMetricsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IMetricsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,7 +17,22 @@ namespace Microsoft.Azure.Insights public partial interface IMetricsOperations { /// - /// Lists the metric values for a resource. + /// Lists the metric values for a resource. The $filter is used to + /// reduce the set of metric data returned. Some common properties for + /// this expression will be: name.value, aggregationType, startTime, + /// endTime, timeGrain. The filter expression uses these properties + /// with comparison operators (eg. eq, gt, lt) and multiple expressions + /// can be combined with parentheses and 'and/or' operators. Some + /// example filter expressions are: - $filter=(name.value eq + /// 'RunsSucceeded') and aggregationType eq 'Total' and startTime eq + /// 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1M', - $filter=(name.value eq 'RunsSucceeded') and + /// (aggregationType eq 'Total' or aggregationType eq 'Average') and + /// startTime eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1H', - $filter=(name.value eq 'ActionsCompleted' or + /// name.value eq 'RunsSucceeded') and (aggregationType eq 'Total' or + /// aggregationType eq 'Average') and startTime eq 2016-02-20 and + /// endTime eq 2016-02-21 and timeGrain eq duration'PT1M'. /// /// /// The identifier of the resource. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/ITenantEventsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/ITenantEventsOperations.cs index 5b3186911844..339871ad0a5d 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/ITenantEventsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/ITenantEventsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,16 +17,42 @@ namespace Microsoft.Azure.Insights public partial interface ITenantEventsOperations { /// - /// Provides the list of tenant events. + /// get the Activity Logs for the Tenant. Everything that is applicable + /// to the API to get the Activity Log for the subscription is + /// applicable to this API (the parameters, $filter, etc.). One thing + /// to point out here is that this API does *not* retrieve the logs at + /// the individual subscription of the tenant but only surfaces the + /// logs that were generated at the tenant level. The **$filter** is + /// very restricted and allows only the following patterns. - List + /// events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceGroupName eq + /// '<ResourceGroupName>'. - List events for resource: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceProvider eq '<ResourceProviderName>'. - List events + /// for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, + /// Operation' and correlationId eq '<CorrelationID>'. No other + /// syntax is allowed. /// /// /// OData parameters to apply to the operation. /// /// - /// The list of property names to be returned. Possible values are: - /// authorization, channels, claims, correlationId, description, - /// eventDataId, eventName, eventTimestamp, httpRequest, level, - /// operationId, operationName, properties, resourceGroupName, + /// Used to fetch events with only the given properties. The filter is + /// a comma separated list of property names to be returned. Possible + /// values are: authorization, channels, claims, correlationId, + /// description, eventDataId, eventName, eventTimestamp, httpRequest, + /// level, operationId, operationName, properties, resourceGroupName, /// resourceProviderName, resourceId, status, submissionTimestamp, /// subStatus, subscriptionId /// @@ -42,9 +68,37 @@ public partial interface ITenantEventsOperations /// /// Thrown when unable to deserialize the response /// + /// + /// Thrown when a required parameter is null + /// System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Provides the list of tenant events. + /// get the Activity Logs for the Tenant. Everything that is applicable + /// to the API to get the Activity Log for the subscription is + /// applicable to this API (the parameters, $filter, etc.). One thing + /// to point out here is that this API does *not* retrieve the logs at + /// the individual subscription of the tenant but only surfaces the + /// logs that were generated at the tenant level. The **$filter** is + /// very restricted and allows only the following patterns. - List + /// events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceGroupName eq + /// '<ResourceGroupName>'. - List events for resource: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceProvider eq '<ResourceProviderName>'. - List events + /// for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, + /// Operation' and correlationId eq '<CorrelationID>'. No other + /// syntax is allowed. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IUsageMetricsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IUsageMetricsOperations.cs index 576808722578..7de1d078bbde 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IUsageMetricsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/IUsageMetricsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/InsightsClient.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/InsightsClient.cs index 1207c894b148..f50661528c02 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/InsightsClient.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/InsightsClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperations.cs index 5c260ff4b8cb..36cbfeb8e089 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,7 +42,12 @@ internal MetricDefinitionsOperations(InsightsClient client) public InsightsClient Client { get; private set; } /// - /// Lists the metric definitions for the resource. + /// Lists the metric definitions for the resource. The **$filter** parameter is + /// optional, and can be used to only retrieve certain metric definitions. For + /// example, get just the definition for the CPU percentage counter: + /// $filter=name.value eq '\Processor(_Total)\% Processor Time'. This $filter + /// is very restricted and allows only these 'name eq <value>' clauses + /// separated by or operators. No other syntax is allowed. /// /// /// The identifier of the resource. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperationsExtensions.cs index d5a38ddaf2c0..a15ff262a5c8 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,7 +18,12 @@ namespace Microsoft.Azure.Insights public static partial class MetricDefinitionsOperationsExtensions { /// - /// Lists the metric definitions for the resource. + /// Lists the metric definitions for the resource. The **$filter** parameter is + /// optional, and can be used to only retrieve certain metric definitions. For + /// example, get just the definition for the CPU percentage counter: + /// $filter=name.value eq '\Processor(_Total)\% Processor Time'. This $filter + /// is very restricted and allows only these 'name eq <value>' clauses + /// separated by or operators. No other syntax is allowed. /// /// /// The operations group for this extension method. @@ -35,7 +40,12 @@ public static partial class MetricDefinitionsOperationsExtensions } /// - /// Lists the metric definitions for the resource. + /// Lists the metric definitions for the resource. The **$filter** parameter is + /// optional, and can be used to only retrieve certain metric definitions. For + /// example, get just the definition for the CPU percentage counter: + /// $filter=name.value eq '\Processor(_Total)\% Processor Time'. This $filter + /// is very restricted and allows only these 'name eq <value>' clauses + /// separated by or operators. No other syntax is allowed. /// /// /// The operations group for this extension method. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperations.cs index 0e028125937e..f05009ac6dfc 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,7 +42,21 @@ internal MetricsOperations(InsightsClient client) public InsightsClient Client { get; private set; } /// - /// Lists the metric values for a resource. + /// Lists the metric values for a resource. The $filter is used to reduce the + /// set of metric data returned. Some common properties for this expression + /// will be: name.value, aggregationType, startTime, endTime, timeGrain. The + /// filter expression uses these properties with comparison operators (eg. eq, + /// gt, lt) and multiple expressions can be combined with parentheses and + /// 'and/or' operators. Some example filter expressions are: - + /// $filter=(name.value eq 'RunsSucceeded') and aggregationType eq 'Total' and + /// startTime eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1M', - $filter=(name.value eq 'RunsSucceeded') and + /// (aggregationType eq 'Total' or aggregationType eq 'Average') and startTime + /// eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq duration'PT1H', - + /// $filter=(name.value eq 'ActionsCompleted' or name.value eq 'RunsSucceeded') + /// and (aggregationType eq 'Total' or aggregationType eq 'Average') and + /// startTime eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1M'. /// /// /// The identifier of the resource. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperationsExtensions.cs index 2e126ce565a4..32a95f91b6b0 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,7 +18,21 @@ namespace Microsoft.Azure.Insights public static partial class MetricsOperationsExtensions { /// - /// Lists the metric values for a resource. + /// Lists the metric values for a resource. The $filter is used to reduce the + /// set of metric data returned. Some common properties for this expression + /// will be: name.value, aggregationType, startTime, endTime, timeGrain. The + /// filter expression uses these properties with comparison operators (eg. eq, + /// gt, lt) and multiple expressions can be combined with parentheses and + /// 'and/or' operators. Some example filter expressions are: - + /// $filter=(name.value eq 'RunsSucceeded') and aggregationType eq 'Total' and + /// startTime eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1M', - $filter=(name.value eq 'RunsSucceeded') and + /// (aggregationType eq 'Total' or aggregationType eq 'Average') and startTime + /// eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq duration'PT1H', - + /// $filter=(name.value eq 'ActionsCompleted' or name.value eq 'RunsSucceeded') + /// and (aggregationType eq 'Total' or aggregationType eq 'Average') and + /// startTime eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1M'. /// /// /// The operations group for this extension method. @@ -35,7 +49,21 @@ public static partial class MetricsOperationsExtensions } /// - /// Lists the metric values for a resource. + /// Lists the metric values for a resource. The $filter is used to reduce the + /// set of metric data returned. Some common properties for this expression + /// will be: name.value, aggregationType, startTime, endTime, timeGrain. The + /// filter expression uses these properties with comparison operators (eg. eq, + /// gt, lt) and multiple expressions can be combined with parentheses and + /// 'and/or' operators. Some example filter expressions are: - + /// $filter=(name.value eq 'RunsSucceeded') and aggregationType eq 'Total' and + /// startTime eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1M', - $filter=(name.value eq 'RunsSucceeded') and + /// (aggregationType eq 'Total' or aggregationType eq 'Average') and startTime + /// eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq duration'PT1H', - + /// $filter=(name.value eq 'ActionsCompleted' or name.value eq 'RunsSucceeded') + /// and (aggregationType eq 'Total' or aggregationType eq 'Average') and + /// startTime eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1M'. /// /// /// The operations group for this extension method. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/AggregationType.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/AggregationType.cs index 89a50406e325..af98affd34d9 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/AggregationType.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/AggregationType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventChannels.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventChannels.cs index 6953a9c89b40..190339c6ef92 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventChannels.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventChannels.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventData.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventData.cs index f79ceeadf33b..5fd6511672ea 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventData.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventData.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,57 +25,71 @@ public EventData() { } /// /// the event channels. The regular event logs, /// that you see in the Azure Management Portals, flow through the - /// 'Operation' channel. Possible values include: 'Admin', - /// 'Operation', 'Debug', 'Analytics' + /// 'Operation' channel. Possible values include: 'Admin', 'Operation', + /// 'Debug', 'Analytics' /// the event level. Possible values include: /// 'Critical', 'Error', 'Warning', 'Informational', 'Verbose' - /// the occurrence time of event in ISO - /// 8601 format - /// the event submission time in ISO - /// 8601 format. This value should not be confused eventTimestamp. As - /// there might be a delay between the occurence time of the event, - /// and the time that the event is submitted to the Azure logging + /// the timestamp of when the event was + /// generated by the Azure service processing the request corresponding + /// the event. It in ISO 8601 format. + /// the timestamp of when the event + /// became available for querying via this API. It is in ISO 8601 + /// format. This value should not be confused eventTimestamp. As there + /// might be a delay between the occurence time of the event, and the + /// time that the event is submitted to the Azure logging /// infrastructure. /// the authorization used by the user who - /// has performed the operation that led to this event. + /// has performed the operation that led to this event. This captures + /// the RBAC properties of the event. These usually include the + /// 'action', 'role' and the 'scope' /// key value pairs to identify ARM /// permissions. /// the email address of the user who has /// performed the operation, the UPN claim or SPN claim based on /// availability. /// the description of the event. - /// the resource Id. + /// the Id of this event as required by ARM for RBAC. + /// It contains the EventDataID and a timestamp information. /// the event data Id. This is a unique /// identifier for an event. - /// the correlation Id. The correlation Id - /// is shared among the events that belong to the same - /// deployment. + /// the correlation Id, usually a GUID in + /// the string format. The correlation Id is shared among the events + /// that belong to the same uber operation. /// the event name. This value should not be - /// confused with OperationName. For practical purposes, - /// OperationName might be more appealing to end users. + /// confused with OperationName. For practical purposes, OperationName + /// might be more appealing to end users. /// the event category. - /// the HTTP request info. The client IP - /// address of the user who initiated the event is captured as part - /// of the HTTP request info. - /// the resource group name. - /// the resource provider - /// name. - /// the resource uri + /// the HTTP request info. Usually includes + /// the 'clientRequestId', 'clientIpAddress' (IP address of the user + /// who initiated the event) and 'method' (HTTP method e.g. + /// PUT). + /// the resource group name of the + /// impacted resource. + /// the resource provider name of + /// the impacted resource. + /// the resource uri that uniquely identifies + /// the resource that caused this event. /// the resource type /// It is usually a GUID shared among the - /// events corresponding to single operation. This value should not - /// be confused with EventName. + /// events corresponding to single operation. This value should not be + /// confused with EventName. /// the operation name. - /// the property bag that includes details + /// the set of <Key, Value> pairs + /// (usually a Dictionary<String, String>) that includes details /// about the event. - /// the event status. Some typical values are: - /// Started, Succeeded, Failed. For more information see: - /// https://msdn.microsoft.com/en-us/library/azure/dn931934.aspx + /// a string describing the status of the + /// operation. Some typical values are: Started, In progress, + /// Succeeded, Failed, Resolved. /// the event sub status. Most of the time, - /// when included, this captures the HTTP status code. For more - /// information see: - /// https://msdn.microsoft.com/en-us/library/azure/dn931934.aspx - /// the Azure subscription Id + /// when included, this captures the HTTP status code of the REST call. + /// Common values are: OK (HTTP Status Code: 200), Created (HTTP Status + /// Code: 201), Accepted (HTTP Status Code: 202), No Content (HTTP + /// Status Code: 204), Bad Request(HTTP Status Code: 400), Not Found + /// (HTTP Status Code: 404), Conflict (HTTP Status Code: 409), Internal + /// Server Error (HTTP Status Code: 500), Service Unavailable (HTTP + /// Status Code:503), Gateway Timeout (HTTP Status Code: 504) + /// the Azure subscription Id usually a + /// GUID. /// the Azure tenant Id public EventData(EventChannels channels, EventLevel level, System.DateTime eventTimestamp, System.DateTime submissionTimestamp, SenderAuthorization authorization = default(SenderAuthorization), System.Collections.Generic.IDictionary claims = default(System.Collections.Generic.IDictionary), string caller = default(string), string description = default(string), string id = default(string), string eventDataId = default(string), string correlationId = default(string), LocalizableString eventName = default(LocalizableString), LocalizableString category = default(LocalizableString), HttpRequestInfo httpRequest = default(HttpRequestInfo), string resourceGroupName = default(string), LocalizableString resourceProviderName = default(LocalizableString), string resourceId = default(string), LocalizableString resourceType = default(LocalizableString), string operationId = default(string), LocalizableString operationName = default(LocalizableString), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary), LocalizableString status = default(LocalizableString), LocalizableString subStatus = default(LocalizableString), string subscriptionId = default(string), string tenantId = default(string)) { @@ -108,7 +122,9 @@ public EventData() { } /// /// Gets or sets the authorization used by the user who has performed - /// the operation that led to this event. + /// the operation that led to this event. This captures the RBAC + /// properties of the event. These usually include the 'action', 'role' + /// and the 'scope' /// [Newtonsoft.Json.JsonProperty(PropertyName = "authorization")] public SenderAuthorization Authorization { get; set; } @@ -142,7 +158,8 @@ public EventData() { } public string Description { get; set; } /// - /// Gets or sets the resource Id. + /// Gets or sets the Id of this event as required by ARM for RBAC. It + /// contains the EventDataID and a timestamp information. /// [Newtonsoft.Json.JsonProperty(PropertyName = "id")] public string Id { get; set; } @@ -155,16 +172,17 @@ public EventData() { } public string EventDataId { get; set; } /// - /// Gets or sets the correlation Id. The correlation Id is shared - /// among the events that belong to the same deployment. + /// Gets or sets the correlation Id, usually a GUID in the string + /// format. The correlation Id is shared among the events that belong + /// to the same uber operation. /// [Newtonsoft.Json.JsonProperty(PropertyName = "correlationId")] public string CorrelationId { get; set; } /// - /// Gets or sets the event name. This value should not be confused - /// with OperationName. For practical purposes, OperationName might - /// be more appealing to end users. + /// Gets or sets the event name. This value should not be confused with + /// OperationName. For practical purposes, OperationName might be more + /// appealing to end users. /// [Newtonsoft.Json.JsonProperty(PropertyName = "eventName")] public LocalizableString EventName { get; set; } @@ -176,9 +194,9 @@ public EventData() { } public LocalizableString Category { get; set; } /// - /// Gets or sets the HTTP request info. The client IP address of the - /// user who initiated the event is captured as part of the HTTP - /// request info. + /// Gets or sets the HTTP request info. Usually includes the + /// 'clientRequestId', 'clientIpAddress' (IP address of the user who + /// initiated the event) and 'method' (HTTP method e.g. PUT). /// [Newtonsoft.Json.JsonProperty(PropertyName = "httpRequest")] public HttpRequestInfo HttpRequest { get; set; } @@ -191,19 +209,20 @@ public EventData() { } public EventLevel Level { get; set; } /// - /// Gets or sets the resource group name. + /// Gets or sets the resource group name of the impacted resource. /// [Newtonsoft.Json.JsonProperty(PropertyName = "resourceGroupName")] public string ResourceGroupName { get; set; } /// - /// Gets or sets the resource provider name. + /// Gets or sets the resource provider name of the impacted resource. /// [Newtonsoft.Json.JsonProperty(PropertyName = "resourceProviderName")] public LocalizableString ResourceProviderName { get; set; } /// - /// Gets or sets the resource uri + /// Gets or sets the resource uri that uniquely identifies the resource + /// that caused this event. /// [Newtonsoft.Json.JsonProperty(PropertyName = "resourceId")] public string ResourceId { get; set; } @@ -229,46 +248,54 @@ public EventData() { } public LocalizableString OperationName { get; set; } /// - /// Gets or sets the property bag that includes details about the - /// event. + /// Gets or sets the set of &lt;Key, Value&gt; pairs (usually a + /// Dictionary&lt;String, String&gt;) that includes details + /// about the event. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] public System.Collections.Generic.IDictionary Properties { get; set; } /// - /// Gets or sets the event status. Some typical values are: Started, - /// Succeeded, Failed. For more information see: - /// https://msdn.microsoft.com/en-us/library/azure/dn931934.aspx + /// Gets or sets a string describing the status of the operation. Some + /// typical values are: Started, In progress, Succeeded, Failed, + /// Resolved. /// [Newtonsoft.Json.JsonProperty(PropertyName = "status")] public LocalizableString Status { get; set; } /// - /// Gets or sets the event sub status. Most of the time, when - /// included, this captures the HTTP status code. For more - /// information see: - /// https://msdn.microsoft.com/en-us/library/azure/dn931934.aspx + /// Gets or sets the event sub status. Most of the time, when included, + /// this captures the HTTP status code of the REST call. Common values + /// are: OK (HTTP Status Code: 200), Created (HTTP Status Code: 201), + /// Accepted (HTTP Status Code: 202), No Content (HTTP Status Code: + /// 204), Bad Request(HTTP Status Code: 400), Not Found (HTTP Status + /// Code: 404), Conflict (HTTP Status Code: 409), Internal Server Error + /// (HTTP Status Code: 500), Service Unavailable (HTTP Status + /// Code:503), Gateway Timeout (HTTP Status Code: 504) /// [Newtonsoft.Json.JsonProperty(PropertyName = "subStatus")] public LocalizableString SubStatus { get; set; } /// - /// Gets or sets the occurrence time of event in ISO 8601 format + /// Gets or sets the timestamp of when the event was generated by the + /// Azure service processing the request corresponding the event. It in + /// ISO 8601 format. /// [Newtonsoft.Json.JsonProperty(PropertyName = "eventTimestamp")] public System.DateTime EventTimestamp { get; set; } /// - /// Gets or sets the event submission time in ISO 8601 format. This - /// value should not be confused eventTimestamp. As there might be a - /// delay between the occurence time of the event, and the time that - /// the event is submitted to the Azure logging infrastructure. + /// Gets or sets the timestamp of when the event became available for + /// querying via this API. It is in ISO 8601 format. This value should + /// not be confused eventTimestamp. As there might be a delay between + /// the occurence time of the event, and the time that the event is + /// submitted to the Azure logging infrastructure. /// [Newtonsoft.Json.JsonProperty(PropertyName = "submissionTimestamp")] public System.DateTime SubmissionTimestamp { get; set; } /// - /// Gets or sets the Azure subscription Id + /// Gets or sets the Azure subscription Id usually a GUID. /// [Newtonsoft.Json.JsonProperty(PropertyName = "subscriptionId")] public string SubscriptionId { get; set; } @@ -287,6 +314,34 @@ public EventData() { } /// public virtual void Validate() { + if (this.EventName != null) + { + this.EventName.Validate(); + } + if (this.Category != null) + { + this.Category.Validate(); + } + if (this.ResourceProviderName != null) + { + this.ResourceProviderName.Validate(); + } + if (this.ResourceType != null) + { + this.ResourceType.Validate(); + } + if (this.OperationName != null) + { + this.OperationName.Validate(); + } + if (this.Status != null) + { + this.Status.Validate(); + } + if (this.SubStatus != null) + { + this.SubStatus.Validate(); + } } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventLevel.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventLevel.cs index 6f21050d16c9..de80b1b60efc 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventLevel.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/EventLevel.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/HttpRequestInfo.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/HttpRequestInfo.cs index e9360f0a6042..52405fc6a672 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/HttpRequestInfo.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/HttpRequestInfo.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/LocalizableString.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/LocalizableString.cs index f28f04fad61b..0473a143203e 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/LocalizableString.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/LocalizableString.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,7 +25,7 @@ public LocalizableString() { } /// /// the invariant value. /// the locale specific value. - public LocalizableString(string value = default(string), string localizedValue = default(string)) + public LocalizableString(string value, string localizedValue = default(string)) { Value = value; LocalizedValue = localizedValue; @@ -43,5 +43,18 @@ public LocalizableString() { } [Newtonsoft.Json.JsonProperty(PropertyName = "localizedValue")] public string LocalizedValue { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Value == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Value"); + } + } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Metric.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Metric.cs index 6e9fbf266d47..24697ef74be0 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Metric.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Metric.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -23,14 +23,14 @@ public Metric() { } /// /// Initializes a new instance of the Metric class. /// - /// the name and the display name of the - /// metric. - /// the unit of the metric. Possible values - /// include: 'Count', 'Bytes', 'Seconds', 'CountPerSecond', - /// 'BytesPerSecond', 'Percent', 'MilliSeconds' + /// the name and the display name of the metric, + /// i.e. it is localizable string. + /// the unit of the metric. Possible values include: + /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond', + /// 'Percent', 'MilliSeconds' /// Array of data points representing the metric /// values. - public Metric(LocalizableString name, Unit? unit, System.Collections.Generic.IList data) + public Metric(LocalizableString name, Unit unit, System.Collections.Generic.IList data) { Name = name; Unit = unit; @@ -38,7 +38,8 @@ public Metric(LocalizableString name, Unit? unit, System.Collections.Generic.ILi } /// - /// Gets or sets the name and the display name of the metric. + /// Gets or sets the name and the display name of the metric, i.e. it + /// is localizable string. /// [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public LocalizableString Name { get; set; } @@ -49,7 +50,7 @@ public Metric(LocalizableString name, Unit? unit, System.Collections.Generic.ILi /// 'Percent', 'MilliSeconds' /// [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] - public Unit? Unit { get; set; } + public Unit Unit { get; set; } /// /// Gets or sets array of data points representing the metric values. @@ -73,6 +74,10 @@ public virtual void Validate() { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Data"); } + if (this.Name != null) + { + this.Name.Validate(); + } if (this.Data != null) { foreach (var element in this.Data) diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricAvailability.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricAvailability.cs index 79594ee448c8..a358beacfec8 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricAvailability.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricAvailability.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,10 +25,10 @@ public MetricAvailability() { } /// Initializes a new instance of the MetricAvailability class. /// /// the time grain specifies the aggregation - /// interval for the metric. Expressed as a duration 'PT1M', 'P1D' + /// interval for the metric. Expressed as a duration 'PT1M', 'P1D', /// etc. /// the retention period for the metric at the - /// specified timegrain. Expressed as a duration 'PT1M', 'P1D' + /// specified timegrain. Expressed as a duration 'PT1M', 'P1D', /// etc. public MetricAvailability(System.TimeSpan? timeGrain = default(System.TimeSpan?), System.TimeSpan? retention = default(System.TimeSpan?)) { @@ -38,14 +38,14 @@ public MetricAvailability() { } /// /// Gets or sets the time grain specifies the aggregation interval for - /// the metric. Expressed as a duration 'PT1M', 'P1D' etc. + /// the metric. Expressed as a duration 'PT1M', 'P1D', etc. /// [Newtonsoft.Json.JsonProperty(PropertyName = "timeGrain")] public System.TimeSpan? TimeGrain { get; set; } /// /// Gets or sets the retention period for the metric at the specified - /// timegrain. Expressed as a duration 'PT1M', 'P1D' etc. + /// timegrain. Expressed as a duration 'PT1M', 'P1D', etc. /// [Newtonsoft.Json.JsonProperty(PropertyName = "retention")] public System.TimeSpan? Retention { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricDefinition.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricDefinition.cs index 0a94967e3fab..72c618568142 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricDefinition.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricDefinition.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -24,12 +24,12 @@ public MetricDefinition() { } /// Initializes a new instance of the MetricDefinition class. /// /// the resource identifier of the resource - /// that has emitted the metric. - /// the name and the display name of the - /// metric. - /// the unit of the metric. Possible values - /// include: 'Count', 'Bytes', 'Seconds', 'CountPerSecond', - /// 'BytesPerSecond', 'Percent', 'MilliSeconds' + /// that emitted the metric. + /// the name and the display name of the metric, + /// i.e. it is a localizable string. + /// the unit of the metric. Possible values include: + /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond', + /// 'Percent', 'MilliSeconds' /// the primary aggregation type /// value defining how to use the values for display. Possible values /// include: 'None', 'Average', 'Count', 'Minimum', 'Maximum', @@ -49,14 +49,15 @@ public MetricDefinition() { } } /// - /// Gets or sets the resource identifier of the resource that has - /// emitted the metric. + /// Gets or sets the resource identifier of the resource that emitted + /// the metric. /// [Newtonsoft.Json.JsonProperty(PropertyName = "resourceId")] public string ResourceId { get; set; } /// - /// Gets or sets the name and the display name of the metric. + /// Gets or sets the name and the display name of the metric, i.e. it + /// is a localizable string. /// [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public LocalizableString Name { get; set; } @@ -70,9 +71,9 @@ public MetricDefinition() { } public Unit? Unit { get; set; } /// - /// Gets or sets the primary aggregation type value defining how to - /// use the values for display. Possible values include: 'None', - /// 'Average', 'Count', 'Minimum', 'Maximum', 'Total' + /// Gets or sets the primary aggregation type value defining how to use + /// the values for display. Possible values include: 'None', 'Average', + /// 'Count', 'Minimum', 'Maximum', 'Total' /// [Newtonsoft.Json.JsonProperty(PropertyName = "primaryAggregationType")] public AggregationType? PrimaryAggregationType { get; set; } @@ -90,5 +91,18 @@ public MetricDefinition() { } [Newtonsoft.Json.JsonProperty(PropertyName = "id")] public string Id { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Name != null) + { + this.Name.Validate(); + } + } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricValue.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricValue.cs index 5982290dcc09..ed93e020c462 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricValue.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/MetricValue.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -23,19 +23,19 @@ public MetricValue() { } /// /// Initializes a new instance of the MetricValue class. /// - /// the timestamp for the metric value in ISO + /// the timestamp for the metric value in ISO /// 8601 format. /// the average value in the time range. /// the least value in the time range. /// the greatest value in the time range. /// the sum of all of the values in the time /// range. - /// the number of samples in the time range. Can - /// be used to determine the number of values that contributed to the + /// the number of samples in the time range. Can be + /// used to determine the number of values that contributed to the /// average value. - public MetricValue(System.DateTime timestamp, double? average = default(double?), double? minimum = default(double?), double? maximum = default(double?), double? total = default(double?), long? count = default(long?)) + public MetricValue(System.DateTime timeStamp, double? average = default(double?), double? minimum = default(double?), double? maximum = default(double?), double? total = default(double?), long? count = default(long?)) { - Timestamp = timestamp; + TimeStamp = timeStamp; Average = average; Minimum = minimum; Maximum = maximum; @@ -46,8 +46,8 @@ public MetricValue() { } /// /// Gets or sets the timestamp for the metric value in ISO 8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timestamp")] - public System.DateTime Timestamp { get; set; } + [Newtonsoft.Json.JsonProperty(PropertyName = "timeStamp")] + public System.DateTime TimeStamp { get; set; } /// /// Gets or sets the average value in the time range. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Page.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Page.cs index 31cd1584bed0..92e2a6b0a157 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Page.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Page.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Page1.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Page1.cs index 0dd0b684fc0c..48ed67f34acd 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Page1.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Page1.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/SenderAuthorization.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/SenderAuthorization.cs index 1dbe45ffdb3b..252f03e03705 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/SenderAuthorization.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/SenderAuthorization.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,14 +25,12 @@ public SenderAuthorization() { } /// /// the permissible actions. For instance: /// microsoft.support/supporttickets/write - /// the condition. - /// the role of the user. For instance: - /// Subscription Admin + /// the role of the user. For instance: Subscription + /// Admin /// the scope. - public SenderAuthorization(string action = default(string), string condition = default(string), string role = default(string), string scope = default(string)) + public SenderAuthorization(string action = default(string), string role = default(string), string scope = default(string)) { Action = action; - Condition = condition; Role = role; Scope = scope; } @@ -44,12 +42,6 @@ public SenderAuthorization() { } [Newtonsoft.Json.JsonProperty(PropertyName = "action")] public string Action { get; set; } - /// - /// Gets or sets the condition. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "condition")] - public string Condition { get; set; } - /// /// Gets or sets the role of the user. For instance: Subscription Admin /// diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Unit.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Unit.cs index ff1f9fe6f083..ddc1f81c334a 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Unit.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/Unit.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/UsageMetric.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/UsageMetric.cs index c97906d55bf6..8192c4e83b27 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/UsageMetric.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/Models/UsageMetric.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -86,5 +86,18 @@ public UsageMetric() { } [Newtonsoft.Json.JsonProperty(PropertyName = "quotaPeriod")] public System.TimeSpan? QuotaPeriod { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Name != null) + { + this.Name.Validate(); + } + } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/TenantEventsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/TenantEventsOperations.cs index f7be759ea6fb..dd275f5047ce 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/TenantEventsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/TenantEventsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,17 +42,39 @@ internal TenantEventsOperations(InsightsClient client) public InsightsClient Client { get; private set; } /// - /// Provides the list of tenant events. + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// OData parameters to apply to the operation. /// /// - /// The list of property names to be returned. Possible values are: + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: /// authorization, channels, claims, correlationId, description, eventDataId, - /// eventName, eventTimestamp, httpRequest, level, operationId, - /// operationName, properties, resourceGroupName, resourceProviderName, - /// resourceId, status, submissionTimestamp, subStatus, subscriptionId + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId /// /// /// Headers that will be added to request. @@ -229,7 +251,28 @@ internal TenantEventsOperations(InsightsClient client) } /// - /// Provides the list of tenant events. + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/TenantEventsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/TenantEventsOperationsExtensions.cs index 5e4fab8d0937..e8f170266317 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/TenantEventsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/TenantEventsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,7 +18,28 @@ namespace Microsoft.Azure.Insights public static partial class TenantEventsOperationsExtensions { /// - /// Provides the list of tenant events. + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The operations group for this extension method. @@ -27,11 +48,12 @@ public static partial class TenantEventsOperationsExtensions /// OData parameters to apply to the operation. /// /// - /// The list of property names to be returned. Possible values are: + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: /// authorization, channels, claims, correlationId, description, eventDataId, - /// eventName, eventTimestamp, httpRequest, level, operationId, - /// operationName, properties, resourceGroupName, resourceProviderName, - /// resourceId, status, submissionTimestamp, subStatus, subscriptionId + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId /// public static Microsoft.Rest.Azure.IPage List(this ITenantEventsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string)) { @@ -39,7 +61,28 @@ public static partial class TenantEventsOperationsExtensions } /// - /// Provides the list of tenant events. + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The operations group for this extension method. @@ -48,11 +91,12 @@ public static partial class TenantEventsOperationsExtensions /// OData parameters to apply to the operation. /// /// - /// The list of property names to be returned. Possible values are: + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: /// authorization, channels, claims, correlationId, description, eventDataId, - /// eventName, eventTimestamp, httpRequest, level, operationId, - /// operationName, properties, resourceGroupName, resourceProviderName, - /// resourceId, status, submissionTimestamp, subStatus, subscriptionId + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId /// /// /// The cancellation token. @@ -66,7 +110,28 @@ public static partial class TenantEventsOperationsExtensions } /// - /// Provides the list of tenant events. + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The operations group for this extension method. @@ -80,7 +145,28 @@ public static Microsoft.Rest.Azure.IPage ListNext(this ITenantEventsO } /// - /// Provides the list of tenant events. + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. /// /// /// The operations group for this extension method. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/UsageMetricsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/UsageMetricsOperations.cs index d79cac76825b..3c2988e29e89 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/UsageMetricsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/UsageMetricsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/UsageMetricsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/UsageMetricsOperationsExtensions.cs index 2d0861dd7f4e..e7b1921b2a4c 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/UsageMetricsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/UsageMetricsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,22 +17,22 @@ namespace Microsoft.Azure.Insights /// public static partial class UsageMetricsOperationsExtensions { - /// - /// The List operation lists the usage metrics for the resource. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The identifier of the resource. - /// - /// - /// The client Api Version. - /// - /// - /// OData parameters to apply to the operation. - /// - public static System.Collections.Generic.IEnumerable List(this IUsageMetricsOperations operations, string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + /// + /// The List operation lists the usage metrics for the resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// The client Api Version. + /// + /// + /// OData parameters to apply to the operation. + /// + public static System.Collections.Generic.IEnumerable List(this IUsageMetricsOperations operations, string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((IUsageMetricsOperations)s).ListAsync(resourceUri, apiVersion, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRuleIncidentsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRuleIncidentsOperations.cs index 21a85249bd6b..713be16a1bcf 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRuleIncidentsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRuleIncidentsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -239,5 +239,194 @@ internal AlertRuleIncidentsOperations(InsightsManagementClient client) return _result; } + /// + /// Gets a list of incidents associated to an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (ruleName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByAlertRule", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}/incidents").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRuleIncidentsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRuleIncidentsOperationsExtensions.cs index 0f2ed4acc473..b53f11593eea 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRuleIncidentsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRuleIncidentsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -63,5 +63,45 @@ public static Incident Get(this IAlertRuleIncidentsOperations operations, string } } + /// + /// Gets a list of incidents associated to an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + public static System.Collections.Generic.IEnumerable ListByAlertRule(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRuleIncidentsOperations)s).ListByAlertRuleAsync(resourceGroupName, ruleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of incidents associated to an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByAlertRuleAsync(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByAlertRuleWithHttpMessagesAsync(resourceGroupName, ruleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRulesOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRulesOperations.cs index 280406adf40e..0195410762ec 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRulesOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -42,7 +42,9 @@ internal AlertRulesOperations(InsightsManagementClient client) public InsightsManagementClient Client { get; private set; } /// - /// Creates or updates an alert rule + /// Creates or updates an alert rule. + /// Request method: PUT Request URI: + /// https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/microsoft.insights/alertRules/{alert-rule-name}?api-version={api-version} /// /// /// The name of the resource group. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRulesOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRulesOperationsExtensions.cs index c8f15efb98f7..363e35b947e8 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRulesOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AlertRulesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,7 +18,9 @@ namespace Microsoft.Azure.Management.Insights public static partial class AlertRulesOperationsExtensions { /// - /// Creates or updates an alert rule + /// Creates or updates an alert rule. + /// Request method: PUT Request URI: + /// https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/microsoft.insights/alertRules/{alert-rule-name}?api-version={api-version} /// /// /// The operations group for this extension method. @@ -38,7 +40,9 @@ public static AlertRuleResource CreateOrUpdate(this IAlertRulesOperations operat } /// - /// Creates or updates an alert rule + /// Creates or updates an alert rule. + /// Request method: PUT Request URI: + /// https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/microsoft.insights/alertRules/{alert-rule-name}?api-version={api-version} /// /// /// The operations group for this extension method. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AutoscaleSettingsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AutoscaleSettingsOperations.cs index 8eba4ea6476c..4f1c102d2b3e 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AutoscaleSettingsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AutoscaleSettingsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AutoscaleSettingsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AutoscaleSettingsOperationsExtensions.cs index 54bc1c392f10..2b6bb599cab2 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AutoscaleSettingsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/AutoscaleSettingsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAlertRuleIncidentsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAlertRuleIncidentsOperations.cs index 9073b6480382..258f36fc2307 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAlertRuleIncidentsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAlertRuleIncidentsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -44,5 +44,30 @@ public partial interface IAlertRuleIncidentsOperations /// Thrown when a required parameter is null /// System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, string incidentName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Gets a list of incidents associated to an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAlertRulesOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAlertRulesOperations.cs index c00320b0b66b..daa38172b621 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAlertRulesOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAlertRulesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,7 +17,9 @@ namespace Microsoft.Azure.Management.Insights public partial interface IAlertRulesOperations { /// - /// Creates or updates an alert rule + /// Creates or updates an alert rule. + /// Request method: PUT Request URI: + /// https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/microsoft.insights/alertRules/{alert-rule-name}?api-version={api-version} /// /// /// The name of the resource group. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAutoscaleSettingsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAutoscaleSettingsOperations.cs index 2dd55afdfcee..6806f73655cc 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAutoscaleSettingsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IAutoscaleSettingsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IIncidentsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IIncidentsOperations.cs deleted file mode 100644 index 8e47a5c533e2..000000000000 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IIncidentsOperations.cs +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Insights -{ - using Microsoft.Rest.Azure; - using Models; - - /// - /// IncidentsOperations operations. - /// - public partial interface IIncidentsOperations - { - /// - /// Gets a list of incidents associated to an alert rule - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the rule. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - System.Threading.Tasks.Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); - } -} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IInsightsManagementClient.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IInsightsManagementClient.cs index cef56ed70b23..fb14f33bd220 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IInsightsManagementClient.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IInsightsManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -54,8 +54,8 @@ public partial interface IInsightsManagementClient : System.IDisposable int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } @@ -71,19 +71,14 @@ public partial interface IInsightsManagementClient : System.IDisposable IServiceDiagnosticSettingsOperations ServiceDiagnosticSettings { get; } /// - /// Gets the IAlertRuleIncidentsOperations. - /// - IAlertRuleIncidentsOperations AlertRuleIncidents { get; } - - /// - /// Gets the IIncidentsOperations. + /// Gets the IAlertRulesOperations. /// - IIncidentsOperations Incidents { get; } + IAlertRulesOperations AlertRules { get; } /// - /// Gets the IAlertRulesOperations. + /// Gets the IAlertRuleIncidentsOperations. /// - IAlertRulesOperations AlertRules { get; } + IAlertRuleIncidentsOperations AlertRuleIncidents { get; } /// /// Gets the ILogProfilesOperations. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ILogProfilesOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ILogProfilesOperations.cs index 66e2932ec739..7a28c4446f33 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ILogProfilesOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ILogProfilesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -58,7 +58,7 @@ public partial interface ILogProfilesOperations /// System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Create or update the log profile. + /// Create or update a log profile in Azure Monitoring REST API. /// /// /// The name of the log profile. @@ -81,7 +81,7 @@ public partial interface ILogProfilesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileCreateOrUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileProperties parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// List the log profiles. /// diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IServiceDiagnosticSettingsOperations.cs index 77f33eaa8a29..704411d99fe8 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IServiceDiagnosticSettingsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IServiceDiagnosticSettingsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -63,6 +63,6 @@ public partial interface IServiceDiagnosticSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsCreateOrUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettings parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IncidentsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IncidentsOperations.cs deleted file mode 100644 index cc5909d0fb2a..000000000000 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IncidentsOperations.cs +++ /dev/null @@ -1,234 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Insights -{ - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - - /// - /// IncidentsOperations operations. - /// - internal partial class IncidentsOperations : Microsoft.Rest.IServiceOperations, IIncidentsOperations - { - /// - /// Initializes a new instance of the IncidentsOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal IncidentsOperations(InsightsManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - this.Client = client; - } - - /// - /// Gets a reference to the InsightsManagementClient - /// - public InsightsManagementClient Client { get; private set; } - - /// - /// Gets a list of incidents associated to an alert rule - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the rule. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async System.Threading.Tasks.Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - if (resourceGroupName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (ruleName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); - } - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2016-03-01"; - // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("ruleName", ruleName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByAlertRule", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}/incidents").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) - { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception - } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IncidentsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IncidentsOperationsExtensions.cs deleted file mode 100644 index 1b3181f10c8e..000000000000 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IncidentsOperationsExtensions.cs +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Insights -{ - using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; - - /// - /// Extension methods for IncidentsOperations. - /// - public static partial class IncidentsOperationsExtensions - { - /// - /// Gets a list of incidents associated to an alert rule - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the rule. - /// - public static System.Collections.Generic.IEnumerable ListByAlertRule(this IIncidentsOperations operations, string resourceGroupName, string ruleName) - { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IIncidentsOperations)s).ListByAlertRuleAsync(resourceGroupName, ruleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets a list of incidents associated to an alert rule - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the rule. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByAlertRuleAsync(this IIncidentsOperations operations, string resourceGroupName, string ruleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - using (var _result = await operations.ListByAlertRuleWithHttpMessagesAsync(resourceGroupName, ruleName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/InsightsManagementClient.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/InsightsManagementClient.cs index 01570596ee8c..2224a854abac 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/InsightsManagementClient.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/InsightsManagementClient.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -71,19 +71,14 @@ public partial class InsightsManagementClient : Microsoft.Rest.ServiceClient - /// Gets the IAlertRuleIncidentsOperations. - /// - public virtual IAlertRuleIncidentsOperations AlertRuleIncidents { get; private set; } - - /// - /// Gets the IIncidentsOperations. + /// Gets the IAlertRulesOperations. /// - public virtual IIncidentsOperations Incidents { get; private set; } + public virtual IAlertRulesOperations AlertRules { get; private set; } /// - /// Gets the IAlertRulesOperations. + /// Gets the IAlertRuleIncidentsOperations. /// - public virtual IAlertRulesOperations AlertRules { get; private set; } + public virtual IAlertRuleIncidentsOperations AlertRuleIncidents { get; private set; } /// /// Gets the ILogProfilesOperations. @@ -293,9 +288,8 @@ private void Initialize() { this.AutoscaleSettings = new AutoscaleSettingsOperations(this); this.ServiceDiagnosticSettings = new ServiceDiagnosticSettingsOperations(this); - this.AlertRuleIncidents = new AlertRuleIncidentsOperations(this); - this.Incidents = new IncidentsOperations(this); this.AlertRules = new AlertRulesOperations(this); + this.AlertRuleIncidents = new AlertRuleIncidentsOperations(this); this.LogProfiles = new LogProfilesOperations(this); this.BaseUri = new System.Uri("https://management.azure.com"); this.AcceptLanguage = "en-US"; diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperations.cs index d076f415a8c8..491d42133dd4 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -373,7 +373,7 @@ internal LogProfilesOperations(InsightsManagementClient client) } /// - /// Create or update the log profile. + /// Create or update a log profile in Azure Monitoring REST API. /// /// /// The name of the log profile. @@ -399,7 +399,7 @@ internal LogProfilesOperations(InsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileCreateOrUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileProperties parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (logProfileName == null) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperationsExtensions.cs index 59b976d14215..1c663cecaa0c 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -83,7 +83,7 @@ public static LogProfileResource Get(this ILogProfilesOperations operations, str } /// - /// Create or update the log profile. + /// Create or update a log profile in Azure Monitoring REST API. /// /// /// The operations group for this extension method. @@ -94,13 +94,13 @@ public static LogProfileResource Get(this ILogProfilesOperations operations, str /// /// Parameters supplied to the operation. /// - public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations operations, string logProfileName, LogProfileCreateOrUpdateParameters parameters) + public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations operations, string logProfileName, LogProfileProperties parameters) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).CreateOrUpdateAsync(logProfileName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Create or update the log profile. + /// Create or update a log profile in Azure Monitoring REST API. /// /// /// The operations group for this extension method. @@ -114,7 +114,7 @@ public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations oper /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ILogProfilesOperations operations, string logProfileName, LogProfileCreateOrUpdateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ILogProfilesOperations operations, string logProfileName, LogProfileProperties parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(logProfileName, parameters, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AlertRuleResource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AlertRuleResource.cs index 5e559255a0dd..b2f354a862e5 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AlertRuleResource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AlertRuleResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -37,8 +37,8 @@ public AlertRuleResource() { } /// will be included in the alert email. /// the condition that results in the alert /// rule being activated. - /// the actions that are performed when the - /// alert rule becomes active, and when an alert condition is + /// the array of actions that are performed when + /// the alert rule becomes active, and when an alert condition is /// resolved. /// Last time the rule was updated in /// ISO8601 format. @@ -81,8 +81,8 @@ public AlertRuleResource() { } public RuleCondition Condition { get; set; } /// - /// Gets or sets the actions that are performed when the alert rule - /// becomes active, and when an alert condition is resolved. + /// Gets or sets the array of actions that are performed when the alert + /// rule becomes active, and when an alert condition is resolved. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.actions")] public System.Collections.Generic.IList Actions { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleNotification.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleNotification.cs index 549faceaa0ac..63d0e1754530 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleNotification.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleNotification.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -52,7 +52,7 @@ static AutoscaleNotification() public System.Collections.Generic.IList Webhooks { get; set; } /// - /// the operation associated with the notification and it's value must + /// the operation associated with the notification and its value must /// be "scale" /// [Newtonsoft.Json.JsonProperty(PropertyName = "operation")] diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleProfile.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleProfile.cs index cfd286eff0ea..d84a0f6358d1 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleProfile.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleProfile.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -30,8 +30,7 @@ public AutoscaleProfile() { } /// triggers and parameters for the scaling action. A maximum of 10 /// rules can be specified. /// the specific date-time for the profile. - /// This element is not used if the Recurrence element is - /// used. + /// This element is not used if the Recurrence element is used. /// the repeating times at which this profile /// begins. This element is not used if the FixedDate element is /// used. @@ -73,8 +72,8 @@ public AutoscaleProfile() { } public TimeWindow FixedDate { get; set; } /// - /// Gets or sets the repeating times at which this profile begins. - /// This element is not used if the FixedDate element is used. + /// Gets or sets the repeating times at which this profile begins. This + /// element is not used if the FixedDate element is used. /// [Newtonsoft.Json.JsonProperty(PropertyName = "recurrence")] public Recurrence Recurrence { get; set; } @@ -117,6 +116,10 @@ public virtual void Validate() { this.FixedDate.Validate(); } + if (this.Recurrence != null) + { + this.Recurrence.Validate(); + } } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleSettingResource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleSettingResource.cs index 54d6eb80188e..8b8be9eb35e0 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleSettingResource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/AutoscaleSettingResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,9 +25,9 @@ public AutoscaleSettingResource() { } /// Initializes a new instance of the AutoscaleSettingResource class. /// /// Resource location - /// the collection of automatic scaling - /// profiles that specify different scaling parameters for different - /// time periods. A maximum of 20 profiles can be specified. + /// the collection of automatic scaling profiles + /// that specify different scaling parameters for different time + /// periods. A maximum of 20 profiles can be specified. /// the name of the /// autoscale setting. /// Azure resource Id @@ -36,8 +36,9 @@ public AutoscaleSettingResource() { } /// Resource tags /// the collection of /// notifications. - /// the enabled flag. Specifies whether - /// automatic scaling is enabled for the resource. + /// the enabled flag. Specifies whether automatic + /// scaling is enabled for the resource. The default value is + /// 'true'. /// the resource identifier of the /// resource that the autoscale setting should be added to. public AutoscaleSettingResource(string location, System.Collections.Generic.IList profiles, string autoscaleSettingResourceName, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList notifications = default(System.Collections.Generic.IList), bool? enabled = default(bool?), string targetResourceUri = default(string)) @@ -52,8 +53,8 @@ public AutoscaleSettingResource() { } /// /// Gets or sets the collection of automatic scaling profiles that - /// specify different scaling parameters for different time periods. - /// A maximum of 20 profiles can be specified. + /// specify different scaling parameters for different time periods. A + /// maximum of 20 profiles can be specified. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.profiles")] public System.Collections.Generic.IList Profiles { get; set; } @@ -66,7 +67,7 @@ public AutoscaleSettingResource() { } /// /// Gets or sets the enabled flag. Specifies whether automatic scaling - /// is enabled for the resource. + /// is enabled for the resource. The default value is 'true'. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.enabled")] public bool? Enabled { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ComparisonOperationType.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ComparisonOperationType.cs index cb372e3fd8ca..3506b4f380a5 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ComparisonOperationType.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ComparisonOperationType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ConditionOperator.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ConditionOperator.cs index e547f5c9144e..9c6ca37a10f6 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ConditionOperator.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ConditionOperator.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/EmailNotification.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/EmailNotification.cs index 9cf3a8752e6d..a8fa1f179313 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/EmailNotification.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/EmailNotification.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -11,7 +11,7 @@ namespace Microsoft.Azure.Management.Insights.Models using System.Linq; /// - /// Email notification. + /// Email notification of an autoscale event. /// public partial class EmailNotification { @@ -25,10 +25,11 @@ public EmailNotification() { } /// /// a value indicating /// whether to send email to subscription administrator. - /// a value - /// indicating whether to send email to subscription - /// co-administrators. - /// the custom email list. + /// a value indicating + /// whether to send email to subscription co-administrators. + /// the custom e-mails list. This value can + /// be null or empty, in which case this attribute will be + /// ignored. public EmailNotification(bool? sendToSubscriptionAdministrator = default(bool?), bool? sendToSubscriptionCoAdministrators = default(bool?), System.Collections.Generic.IList customEmails = default(System.Collections.Generic.IList)) { SendToSubscriptionAdministrator = sendToSubscriptionAdministrator; @@ -51,7 +52,8 @@ public EmailNotification() { } public bool? SendToSubscriptionCoAdministrators { get; set; } /// - /// Gets or sets the custom email list. + /// Gets or sets the custom e-mails list. This value can be null or + /// empty, in which case this attribute will be ignored. /// [Newtonsoft.Json.JsonProperty(PropertyName = "customEmails")] public System.Collections.Generic.IList CustomEmails { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Incident.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Incident.cs index f31f4dc92bcb..eefbe85edb73 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Incident.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Incident.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -31,8 +31,8 @@ public Incident() { } /// The time at which the incident was /// activated in ISO8601 format. /// The time at which the incident was - /// resolved in ISO8601 format. If null, it means the incident is - /// still active. + /// resolved in ISO8601 format. If null, it means the incident is still + /// active. public Incident(string name = default(string), string ruleName = default(string), bool? isActive = default(bool?), System.DateTime? activatedTime = default(System.DateTime?), System.DateTime? resolvedTime = default(System.DateTime?)) { Name = name; @@ -69,8 +69,8 @@ public Incident() { } public System.DateTime? ActivatedTime { get; private set; } /// - /// Gets the time at which the incident was resolved in ISO8601 - /// format. If null, it means the incident is still active. + /// Gets the time at which the incident was resolved in ISO8601 format. + /// If null, it means the incident is still active. /// [Newtonsoft.Json.JsonProperty(PropertyName = "resolvedTime")] public System.DateTime? ResolvedTime { get; private set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LocationThresholdRuleCondition.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LocationThresholdRuleCondition.cs index 6e652879153c..9d55a40f575c 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LocationThresholdRuleCondition.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LocationThresholdRuleCondition.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -26,10 +26,11 @@ public LocationThresholdRuleCondition() { } /// Initializes a new instance of the LocationThresholdRuleCondition /// class. /// - /// the number of locations that - /// must fail to activate the alert. + /// the number of locations that must + /// fail to activate the alert. /// the resource from which the rule collects - /// its data. + /// its data. For this type dataSource will always be of type + /// RuleMetricDataSource. /// the period of time (in ISO 8601 duration /// format) that is used to monitor alert activity based on the /// threshold. If specified then it must be between 5 minutes and 1 @@ -43,6 +44,8 @@ public LocationThresholdRuleCondition() { } /// /// Gets or sets the resource from which the rule collects its data. + /// For this type dataSource will always be of type + /// RuleMetricDataSource. /// [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] public RuleDataSource DataSource { get; set; } @@ -56,8 +59,8 @@ public LocationThresholdRuleCondition() { } public System.TimeSpan? WindowSize { get; set; } /// - /// Gets or sets the number of locations that must fail to activate - /// the alert. + /// Gets or sets the number of locations that must fail to activate the + /// alert. /// [Newtonsoft.Json.JsonProperty(PropertyName = "failedLocationCount")] public int FailedLocationCount { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileCreateOrUpdateParameters.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileCreateOrUpdateParameters.cs deleted file mode 100644 index 34d4de6a3441..000000000000 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileCreateOrUpdateParameters.cs +++ /dev/null @@ -1,90 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Insights.Models -{ - using System.Linq; - - /// - /// Paramters to create a new Log Profile - /// - [Microsoft.Rest.Serialization.JsonTransformation] - public partial class LogProfileCreateOrUpdateParameters - { - /// - /// Initializes a new instance of the - /// LogProfileCreateOrUpdateParameters class. - /// - public LogProfileCreateOrUpdateParameters() { } - - /// - /// Initializes a new instance of the - /// LogProfileCreateOrUpdateParameters class. - /// - /// the resource id of the storage - /// account. - /// the resource id of the service bus - /// rule. - /// the locations. - /// the categories. - /// the retention policy for this - /// log. - public LogProfileCreateOrUpdateParameters(string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList locations = default(System.Collections.Generic.IList), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) - { - StorageAccountId = storageAccountId; - ServiceBusRuleId = serviceBusRuleId; - Locations = locations; - Categories = categories; - RetentionPolicy = retentionPolicy; - } - - /// - /// Gets or sets the resource id of the storage account. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccountId")] - public string StorageAccountId { get; set; } - - /// - /// Gets or sets the resource id of the service bus rule. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceBusRuleId")] - public string ServiceBusRuleId { get; set; } - - /// - /// Gets or sets the locations. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.locations")] - public System.Collections.Generic.IList Locations { get; set; } - - /// - /// Gets or sets the categories. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.categories")] - public System.Collections.Generic.IList Categories { get; set; } - - /// - /// Gets or sets the retention policy for this log. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.retentionPolicy")] - public RetentionPolicy RetentionPolicy { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (this.RetentionPolicy != null) - { - this.RetentionPolicy.Validate(); - } - } - } -} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileProperties.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileProperties.cs new file mode 100644 index 000000000000..99f545f7555d --- /dev/null +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileProperties.cs @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Insights.Models +{ + using System.Linq; + + /// + /// The log profile properties. + /// + public partial class LogProfileProperties + { + /// + /// Initializes a new instance of the LogProfileProperties class. + /// + public LogProfileProperties() { } + + /// + /// Initializes a new instance of the LogProfileProperties class. + /// + /// the resource id of the storage + /// account to which you would like to send the Activity Log. + /// List of regions for which Activity Log + /// events should be stored or streamed. It is a comma separated list + /// of valid ARM locations including the 'global' location. + /// The service bus rule ID of the + /// service bus namespace in which you would like to have Event Hubs + /// created for streaming the Activity Log. The rule ID is of the + /// format: '{service bus resource ID}/authorizationrules/{key + /// name}'. + /// the categories of the logs. These + /// categories are created as is convenient to the user. Some values + /// are: 'Write', 'Delete', and/or 'Action.' + /// the retention policy for the events + /// in the log. + public LogProfileProperties(string storageAccountId, System.Collections.Generic.IList locations, string serviceBusRuleId = default(string), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) + { + StorageAccountId = storageAccountId; + ServiceBusRuleId = serviceBusRuleId; + Locations = locations; + Categories = categories; + RetentionPolicy = retentionPolicy; + } + + /// + /// Gets or sets the resource id of the storage account to which you + /// would like to send the Activity Log. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "storageAccountId")] + public string StorageAccountId { get; set; } + + /// + /// Gets or sets the service bus rule ID of the service bus namespace + /// in which you would like to have Event Hubs created for streaming + /// the Activity Log. The rule ID is of the format: '{service bus + /// resource ID}/authorizationrules/{key name}'. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "serviceBusRuleId")] + public string ServiceBusRuleId { get; set; } + + /// + /// Gets or sets list of regions for which Activity Log events should + /// be stored or streamed. It is a comma separated list of valid ARM + /// locations including the 'global' location. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "locations")] + public System.Collections.Generic.IList Locations { get; set; } + + /// + /// Gets or sets the categories of the logs. These categories are + /// created as is convenient to the user. Some values are: 'Write', + /// 'Delete', and/or 'Action.' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "categories")] + public System.Collections.Generic.IList Categories { get; set; } + + /// + /// Gets or sets the retention policy for the events in the log. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "retentionPolicy")] + public RetentionPolicy RetentionPolicy { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StorageAccountId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "StorageAccountId"); + } + if (Locations == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Locations"); + } + if (this.RetentionPolicy != null) + { + this.RetentionPolicy.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileResource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileResource.cs index aaae36bed4ed..5a888ec626fe 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileResource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,19 +25,26 @@ public LogProfileResource() { } /// Initializes a new instance of the LogProfileResource class. /// /// Resource location + /// the resource id of the storage + /// account to which you would like to send the Activity Log. + /// List of regions for which Activity Log + /// events should be stored or streamed. It is a comma separated list + /// of valid ARM locations including the 'global' location. /// Azure resource Id /// Azure resource name /// Azure resource type /// Resource tags - /// the resource id of the storage - /// account. - /// the resource id of the service bus - /// rule. - /// the locations. - /// the categories. - /// the retention policy for this - /// log. - public LogProfileResource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList locations = default(System.Collections.Generic.IList), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) + /// The service bus rule ID of the + /// service bus namespace in which you would like to have Event Hubs + /// created for streaming the Activity Log. The rule ID is of the + /// format: '{service bus resource ID}/authorizationrules/{key + /// name}'. + /// the categories of the logs. These + /// categories are created as is convenient to the user. Some values + /// are: 'Write', 'Delete', and/or 'Action.' + /// the retention policy for the events + /// in the log. + public LogProfileResource(string location, string storageAccountId, System.Collections.Generic.IList locations, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string serviceBusRuleId = default(string), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) : base(location, id, name, type, tags) { StorageAccountId = storageAccountId; @@ -48,31 +55,39 @@ public LogProfileResource() { } } /// - /// Gets or sets the resource id of the storage account. + /// Gets or sets the resource id of the storage account to which you + /// would like to send the Activity Log. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccountId")] public string StorageAccountId { get; set; } /// - /// Gets or sets the resource id of the service bus rule. + /// Gets or sets the service bus rule ID of the service bus namespace + /// in which you would like to have Event Hubs created for streaming + /// the Activity Log. The rule ID is of the format: '{service bus + /// resource ID}/authorizationrules/{key name}'. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceBusRuleId")] public string ServiceBusRuleId { get; set; } /// - /// Gets or sets the locations. + /// Gets or sets list of regions for which Activity Log events should + /// be stored or streamed. It is a comma separated list of valid ARM + /// locations including the 'global' location. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.locations")] public System.Collections.Generic.IList Locations { get; set; } /// - /// Gets or sets the categories. + /// Gets or sets the categories of the logs. These categories are + /// created as is convenient to the user. Some values are: 'Write', + /// 'Delete', and/or 'Action.' /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.categories")] public System.Collections.Generic.IList Categories { get; set; } /// - /// Gets or sets the retention policy for this log. + /// Gets or sets the retention policy for the events in the log. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.retentionPolicy")] public RetentionPolicy RetentionPolicy { get; set; } @@ -86,6 +101,14 @@ public LogProfileResource() { } public override void Validate() { base.Validate(); + if (StorageAccountId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "StorageAccountId"); + } + if (Locations == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Locations"); + } if (this.RetentionPolicy != null) { this.RetentionPolicy.Validate(); diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogSettings.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogSettings.cs index c9c6d7b1d18e..38e10d17dc59 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogSettings.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogSettings.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -26,8 +26,10 @@ public LogSettings() { } /// /// a value indicating whether this log is /// enabled. - /// the name of the logs to which this setting - /// is applied. + /// Name of a Diagnostic Log category for a + /// resource type this setting is applied to. To obtain the list of + /// Diagnostic Log categories for a resource, first perform a GET + /// diagnostic settings operation. /// the retention policy for this /// log. public LogSettings(bool enabled, string category = default(string), RetentionPolicy retentionPolicy = default(RetentionPolicy)) @@ -38,7 +40,10 @@ public LogSettings() { } } /// - /// Gets or sets the name of the logs to which this setting is applied. + /// Gets or sets name of a Diagnostic Log category for a resource type + /// this setting is applied to. To obtain the list of Diagnostic Log + /// categories for a resource, first perform a GET diagnostic settings + /// operation. /// [Newtonsoft.Json.JsonProperty(PropertyName = "category")] public string Category { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ManagementEventAggregationCondition.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ManagementEventAggregationCondition.cs index 10981d654b39..1708cdc91ac5 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ManagementEventAggregationCondition.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ManagementEventAggregationCondition.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -11,7 +11,7 @@ namespace Microsoft.Azure.Management.Insights.Models using System.Linq; /// - /// A management event aggregation condition. + /// How the data that is collected should be combined over time. /// public partial class ManagementEventAggregationCondition { @@ -28,7 +28,8 @@ public ManagementEventAggregationCondition() { } /// the condition operator. Possible /// values include: 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', /// 'LessThanOrEqual' - /// the condition threshold. + /// The threshold value that activates the + /// alert. /// the period of time (in ISO 8601 duration /// format) that is used to monitor alert activity based on the /// threshold. If specified then it must be between 5 minutes and 1 @@ -48,7 +49,7 @@ public ManagementEventAggregationCondition() { } public ConditionOperator? OperatorProperty { get; set; } /// - /// Gets or sets the condition threshold. + /// Gets or sets the threshold value that activates the alert. /// [Newtonsoft.Json.JsonProperty(PropertyName = "threshold")] public double? Threshold { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ManagementEventRuleCondition.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ManagementEventRuleCondition.cs index 479d873a6016..1b21c7b6001f 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ManagementEventRuleCondition.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ManagementEventRuleCondition.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -27,8 +27,12 @@ public ManagementEventRuleCondition() { } /// class. /// /// the resource from which the rule collects - /// its data. - /// the aggregation condition. + /// its data. For this type dataSource will always be of type + /// RuleManagementEventDataSource. + /// How the data that is collected should be + /// combined over time and when the alert is activated. Note that for + /// management event alerts aggregation is optional – if it is not + /// provided then any event will cause the alert to activate. public ManagementEventRuleCondition(RuleDataSource dataSource = default(RuleDataSource), ManagementEventAggregationCondition aggregation = default(ManagementEventAggregationCondition)) { DataSource = dataSource; @@ -37,12 +41,17 @@ public ManagementEventRuleCondition() { } /// /// Gets or sets the resource from which the rule collects its data. + /// For this type dataSource will always be of type + /// RuleManagementEventDataSource. /// [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] public RuleDataSource DataSource { get; set; } /// - /// Gets or sets the aggregation condition. + /// Gets or sets how the data that is collected should be combined over + /// time and when the alert is activated. Note that for management + /// event alerts aggregation is optional – if it is not provided then + /// any event will cause the alert to activate. /// [Newtonsoft.Json.JsonProperty(PropertyName = "aggregation")] public ManagementEventAggregationCondition Aggregation { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricSettings.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricSettings.cs index 393854390a20..b52b101be9ba 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricSettings.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricSettings.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricStatisticType.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricStatisticType.cs index 9bf801ece6f4..5baf73f84408 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricStatisticType.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricStatisticType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricTrigger.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricTrigger.cs index 0d5a38a15cf7..db22ded56f7a 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricTrigger.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/MetricTrigger.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -28,8 +28,8 @@ public MetricTrigger() { } /// the resource identifier of the /// resource the rule monitors. /// the granularity of metrics the rule - /// monitors. Must be one of the predefined values returned from - /// metric definitions for the metric. Must be between 12 hours and 1 + /// monitors. Must be one of the predefined values returned from metric + /// definitions for the metric. Must be between 12 hours and 1 /// minute. /// the metric statistic type. How the metrics /// from multiple instances are combined. Possible values include: @@ -42,13 +42,13 @@ public MetricTrigger() { } /// that is collected should be combined over time. The default value /// is Average. Possible values include: 'Average', 'Minimum', /// 'Maximum', 'Total', 'Count' - /// the operator that is used to - /// compare the metric data and the threshold. Possible values - /// include: 'Equals', 'NotEquals', 'GreaterThan', - /// 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' + /// the operator that is used to compare + /// the metric data and the threshold. Possible values include: + /// 'Equals', 'NotEquals', 'GreaterThan', 'GreaterThanOrEqual', + /// 'LessThan', 'LessThanOrEqual' /// the threshold of the metric that triggers /// the scale action. - public MetricTrigger(string metricName = default(string), string metricResourceUri = default(string), System.TimeSpan? timeGrain = default(System.TimeSpan?), MetricStatisticType? statistic = default(MetricStatisticType?), System.TimeSpan? timeWindow = default(System.TimeSpan?), TimeAggregationType? timeAggregation = default(TimeAggregationType?), ComparisonOperationType? operatorProperty = default(ComparisonOperationType?), double? threshold = default(double?)) + public MetricTrigger(string metricName, string metricResourceUri, System.TimeSpan timeGrain, MetricStatisticType statistic, System.TimeSpan timeWindow, TimeAggregationType timeAggregation, ComparisonOperationType operatorProperty, double threshold) { MetricName = metricName; MetricResourceUri = metricResourceUri; @@ -80,7 +80,7 @@ public MetricTrigger() { } /// the metric. Must be between 12 hours and 1 minute. /// [Newtonsoft.Json.JsonProperty(PropertyName = "timeGrain")] - public System.TimeSpan? TimeGrain { get; set; } + public System.TimeSpan TimeGrain { get; set; } /// /// Gets or sets the metric statistic type. How the metrics from @@ -88,41 +88,57 @@ public MetricTrigger() { } /// 'Average', 'Min', 'Max', 'Sum' /// [Newtonsoft.Json.JsonProperty(PropertyName = "statistic")] - public MetricStatisticType? Statistic { get; set; } + public MetricStatisticType Statistic { get; set; } /// - /// Gets or sets the range of time in which instance data is - /// collected. This value must be greater than the delay in metric - /// collection, which can vary from resource-to-resource. Must be - /// between 12 hours and 5 minutes. + /// Gets or sets the range of time in which instance data is collected. + /// This value must be greater than the delay in metric collection, + /// which can vary from resource-to-resource. Must be between 12 hours + /// and 5 minutes. /// [Newtonsoft.Json.JsonProperty(PropertyName = "timeWindow")] - public System.TimeSpan? TimeWindow { get; set; } + public System.TimeSpan TimeWindow { get; set; } /// /// Gets or sets time aggregation type. How the data that is collected /// should be combined over time. The default value is Average. - /// Possible values include: 'Average', 'Minimum', 'Maximum', - /// 'Total', 'Count' + /// Possible values include: 'Average', 'Minimum', 'Maximum', 'Total', + /// 'Count' /// [Newtonsoft.Json.JsonProperty(PropertyName = "timeAggregation")] - public TimeAggregationType? TimeAggregation { get; set; } + public TimeAggregationType TimeAggregation { get; set; } /// /// Gets or sets the operator that is used to compare the metric data - /// and the threshold. Possible values include: 'Equals', - /// 'NotEquals', 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', - /// 'LessThanOrEqual' + /// and the threshold. Possible values include: 'Equals', 'NotEquals', + /// 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' /// [Newtonsoft.Json.JsonProperty(PropertyName = "operator")] - public ComparisonOperationType? OperatorProperty { get; set; } + public ComparisonOperationType OperatorProperty { get; set; } /// /// Gets or sets the threshold of the metric that triggers the scale /// action. /// [Newtonsoft.Json.JsonProperty(PropertyName = "threshold")] - public double? Threshold { get; set; } + public double Threshold { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MetricName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricName"); + } + if (MetricResourceUri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricResourceUri"); + } + } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Page.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Page.cs index 25df1fc76e2e..d517340cdb2a 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Page.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Page.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Page1.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Page1.cs index 3b1f5b16c6c2..69676959c407 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Page1.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Page1.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Recurrence.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Recurrence.cs index 6fc90a148c32..51c2b1dc84f8 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Recurrence.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Recurrence.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -27,11 +27,11 @@ public Recurrence() { } /// the recurrence frequency. How often the /// schedule profile should take effect. This value must be Week, /// meaning each week will have the same set of profiles. Possible - /// values include: 'None', 'Second', 'Minute', 'Hour', 'Day', - /// 'Week', 'Month', 'Year' + /// values include: 'None', 'Second', 'Minute', 'Hour', 'Day', 'Week', + /// 'Month', 'Year' /// the scheduling constraints for when the /// profile begins. - public Recurrence(RecurrenceFrequency? frequency = default(RecurrenceFrequency?), RecurrentSchedule schedule = default(RecurrentSchedule)) + public Recurrence(RecurrenceFrequency frequency, RecurrentSchedule schedule) { Frequency = frequency; Schedule = schedule; @@ -44,7 +44,7 @@ public Recurrence() { } /// 'None', 'Second', 'Minute', 'Hour', 'Day', 'Week', 'Month', 'Year' /// [Newtonsoft.Json.JsonProperty(PropertyName = "frequency")] - public RecurrenceFrequency? Frequency { get; set; } + public RecurrenceFrequency Frequency { get; set; } /// /// Gets or sets the scheduling constraints for when the profile @@ -53,5 +53,22 @@ public Recurrence() { } [Newtonsoft.Json.JsonProperty(PropertyName = "schedule")] public RecurrentSchedule Schedule { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Schedule == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Schedule"); + } + if (this.Schedule != null) + { + this.Schedule.Validate(); + } + } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrenceFrequency.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrenceFrequency.cs index 02b8e51d6f78..81137fd8db6a 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrenceFrequency.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrenceFrequency.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrentSchedule.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrentSchedule.cs index d15df2507ec0..780a48b8e485 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrentSchedule.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrentSchedule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -24,16 +24,56 @@ public RecurrentSchedule() { } /// Initializes a new instance of the RecurrentSchedule class. /// /// the time zone for the hours of the profile. - /// See examples of valid timezone ids over here: - /// https://msdn.microsoft.com/en-us/library/azure/dn931928.aspx + /// See examples of valid timezone are: Dateline Standard Time, UTC-11, + /// Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard + /// Time (Mexico), Pacific Standard Time, US Mountain Standard Time, + /// Mountain Standard Time (Mexico), Mountain Standard Time, Central + /// America Standard Time, Central Standard Time, Central Standard Time + /// (Mexico), Canada Central Standard Time, SA Pacific Standard Time, + /// Eastern Standard Time, US Eastern Standard Time, Venezuela Standard + /// Time, Paraguay Standard Time, Atlantic Standard Time, Central + /// Brazilian Standard Time, SA Western Standard Time, Pacific SA + /// Standard Time, Newfoundland Standard Time, E. South America + /// Standard Time, Argentina Standard Time, SA Eastern Standard Time, + /// Greenland Standard Time, Montevideo Standard Time, Bahia Standard + /// Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, + /// Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard + /// Time, Greenwich Standard Time, W. Europe Standard Time, Central + /// Europe Standard Time, Romance Standard Time, Central European + /// Standard Time, W. Central Africa Standard Time, Namibia Standard + /// Time, Jordan Standard Time, GTB Standard Time, Middle East Standard + /// Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard + /// Time, South Africa Standard Time, FLE Standard Time, Turkey + /// Standard Time, Israel Standard Time, Kaliningrad Standard Time, + /// Libya Standard Time, Arabic Standard Time, Arab Standard Time, + /// Belarus Standard Time, Russian Standard Time, E. Africa Standard + /// Time, Iran Standard Time, Arabian Standard Time, Azerbaijan + /// Standard Time, Russia Time Zone 3, Mauritius Standard Time, + /// Georgian Standard Time, Caucasus Standard Time, Afghanistan + /// Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, + /// Pakistan Standard Time, India Standard Time, Sri Lanka Standard + /// Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh + /// Standard Time, N. Central Asia Standard Time, Myanmar Standard + /// Time, SE Asia Standard Time, North Asia Standard Time, China + /// Standard Time, North Asia East Standard Time, Singapore Standard + /// Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar + /// Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk + /// Standard Time, Cen. Australia Standard Time, AUS Central Standard + /// Time, E. Australia Standard Time, AUS Eastern Standard Time, West + /// Pacific Standard Time, Tasmania Standard Time, Magadan Standard + /// Time, Vladivostok Standard Time, Russia Time Zone 10, Central + /// Pacific Standard Time, Russia Time Zone 11, New Zealand Standard + /// Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga + /// Standard Time, Samoa Standard Time, Line Islands Standard + /// Time /// the collection of days that the profile takes /// effect on. Possible values are Sunday through Saturday. /// A collection of hours that the profile takes - /// effect on. Values supported are 0 to 23 on the 24-hour clock - /// (AM/PM times are not supported). + /// effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM + /// times are not supported). /// A collection of minutes at which the profile /// takes effect at. - public RecurrentSchedule(string timeZone = default(string), System.Collections.Generic.IList days = default(System.Collections.Generic.IList), System.Collections.Generic.IList hours = default(System.Collections.Generic.IList), System.Collections.Generic.IList minutes = default(System.Collections.Generic.IList)) + public RecurrentSchedule(string timeZone, System.Collections.Generic.IList days, System.Collections.Generic.IList hours, System.Collections.Generic.IList minutes) { TimeZone = timeZone; Days = days; @@ -43,8 +83,47 @@ public RecurrentSchedule() { } /// /// Gets or sets the time zone for the hours of the profile. See - /// examples of valid timezone ids over here: - /// https://msdn.microsoft.com/en-us/library/azure/dn931928.aspx + /// examples of valid timezone are: Dateline Standard Time, UTC-11, + /// Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard + /// Time (Mexico), Pacific Standard Time, US Mountain Standard Time, + /// Mountain Standard Time (Mexico), Mountain Standard Time, Central + /// America Standard Time, Central Standard Time, Central Standard Time + /// (Mexico), Canada Central Standard Time, SA Pacific Standard Time, + /// Eastern Standard Time, US Eastern Standard Time, Venezuela Standard + /// Time, Paraguay Standard Time, Atlantic Standard Time, Central + /// Brazilian Standard Time, SA Western Standard Time, Pacific SA + /// Standard Time, Newfoundland Standard Time, E. South America + /// Standard Time, Argentina Standard Time, SA Eastern Standard Time, + /// Greenland Standard Time, Montevideo Standard Time, Bahia Standard + /// Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, + /// Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard + /// Time, Greenwich Standard Time, W. Europe Standard Time, Central + /// Europe Standard Time, Romance Standard Time, Central European + /// Standard Time, W. Central Africa Standard Time, Namibia Standard + /// Time, Jordan Standard Time, GTB Standard Time, Middle East Standard + /// Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard + /// Time, South Africa Standard Time, FLE Standard Time, Turkey + /// Standard Time, Israel Standard Time, Kaliningrad Standard Time, + /// Libya Standard Time, Arabic Standard Time, Arab Standard Time, + /// Belarus Standard Time, Russian Standard Time, E. Africa Standard + /// Time, Iran Standard Time, Arabian Standard Time, Azerbaijan + /// Standard Time, Russia Time Zone 3, Mauritius Standard Time, + /// Georgian Standard Time, Caucasus Standard Time, Afghanistan + /// Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, + /// Pakistan Standard Time, India Standard Time, Sri Lanka Standard + /// Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh + /// Standard Time, N. Central Asia Standard Time, Myanmar Standard + /// Time, SE Asia Standard Time, North Asia Standard Time, China + /// Standard Time, North Asia East Standard Time, Singapore Standard + /// Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar + /// Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk + /// Standard Time, Cen. Australia Standard Time, AUS Central Standard + /// Time, E. Australia Standard Time, AUS Eastern Standard Time, West + /// Pacific Standard Time, Tasmania Standard Time, Magadan Standard + /// Time, Vladivostok Standard Time, Russia Time Zone 10, Central + /// Pacific Standard Time, Russia Time Zone 11, New Zealand Standard + /// Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga + /// Standard Time, Samoa Standard Time, Line Islands Standard Time /// [Newtonsoft.Json.JsonProperty(PropertyName = "timeZone")] public string TimeZone { get; set; } @@ -58,8 +137,8 @@ public RecurrentSchedule() { } /// /// Gets or sets a collection of hours that the profile takes effect - /// on. Values supported are 0 to 23 on the 24-hour clock (AM/PM - /// times are not supported). + /// on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times + /// are not supported). /// [Newtonsoft.Json.JsonProperty(PropertyName = "hours")] public System.Collections.Generic.IList Hours { get; set; } @@ -71,5 +150,30 @@ public RecurrentSchedule() { } [Newtonsoft.Json.JsonProperty(PropertyName = "minutes")] public System.Collections.Generic.IList Minutes { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (TimeZone == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "TimeZone"); + } + if (Days == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Days"); + } + if (Hours == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Hours"); + } + if (Minutes == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Minutes"); + } + } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Resource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Resource.cs index 9bf907afa30e..1844e6ddbda3 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Resource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/Resource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RetentionPolicy.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RetentionPolicy.cs index f222e8052c6b..cc010ea24097 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RetentionPolicy.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RetentionPolicy.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -25,7 +25,8 @@ public RetentionPolicy() { } /// /// a value indicating whether the retention /// policy is enabled. - /// the number of days for the retention. + /// the number of days for the retention in days. A + /// value of 0 will retain the events indefinitely. public RetentionPolicy(bool enabled, int days) { Enabled = enabled; @@ -40,7 +41,8 @@ public RetentionPolicy(bool enabled, int days) public bool Enabled { get; set; } /// - /// Gets or sets the number of days for the retention. + /// Gets or sets the number of days for the retention in days. A value + /// of 0 will retain the events indefinitely. /// [Newtonsoft.Json.JsonProperty(PropertyName = "days")] public int Days { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleAction.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleAction.cs index 69f7cbe41f0d..34e5df7ea29d 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleAction.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleAction.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleCondition.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleCondition.cs index 5ba952be1e4b..fd25240b7bab 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleCondition.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleCondition.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleDataSource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleDataSource.cs index ab527d5df44b..3ff121627a2a 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleDataSource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleDataSource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleEmailAction.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleEmailAction.cs index a35175386b77..618f41b22a95 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleEmailAction.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleEmailAction.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -12,7 +12,7 @@ namespace Microsoft.Azure.Management.Insights.Models /// /// Specifies the action to send email when the rule condition is - /// evaluated. + /// evaluated. The discriminator is always RuleEmailAction in this case. /// [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleEmailAction")] public partial class RuleEmailAction : RuleAction @@ -25,12 +25,11 @@ public RuleEmailAction() { } /// /// Initializes a new instance of the RuleEmailAction class. /// - /// the flag to send e-mails to the - /// service owners. Whether the administrators (service and - /// co-adiminstrators) of the service should be notified when the - /// alert is activated. - /// the list of administrator's custom - /// email addresses notifiy of the activation of the alert. + /// Whether the administrators + /// (service and co-adiminstrators) of the service should be notified + /// when the alert is activated. + /// the list of administrator's custom email + /// addresses notifiy of the activation of the alert. public RuleEmailAction(bool? sendToServiceOwners = default(bool?), System.Collections.Generic.IList customEmails = default(System.Collections.Generic.IList)) { SendToServiceOwners = sendToServiceOwners; @@ -38,9 +37,9 @@ public RuleEmailAction() { } } /// - /// Gets or sets the flag to send e-mails to the service owners. - /// Whether the administrators (service and co-adiminstrators) of the - /// service should be notified when the alert is activated. + /// Gets or sets whether the administrators (service and + /// co-adiminstrators) of the service should be notified when the alert + /// is activated. /// [Newtonsoft.Json.JsonProperty(PropertyName = "sendToServiceOwners")] public bool? SendToServiceOwners { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleManagementEventClaimsDataSource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleManagementEventClaimsDataSource.cs index 0bd01bdae0d8..7e2acff3deb6 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleManagementEventClaimsDataSource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleManagementEventClaimsDataSource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleManagementEventDataSource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleManagementEventDataSource.cs index 9a057e10248d..2f4cab87a8be 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleManagementEventDataSource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleManagementEventDataSource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -11,7 +11,8 @@ namespace Microsoft.Azure.Management.Insights.Models using System.Linq; /// - /// A rule management event data source. + /// A rule management event data source. The discriminator fields is always + /// RuleManagementEventDataSource in this case. /// [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleManagementEventDataSource")] public partial class RuleManagementEventDataSource : RuleDataSource diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleMetricDataSource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleMetricDataSource.cs index 21cbe1f91515..76ced5891bf5 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleMetricDataSource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleMetricDataSource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -11,7 +11,8 @@ namespace Microsoft.Azure.Management.Insights.Models using System.Linq; /// - /// A rule metric data source. + /// A rule metric data source. The discriminator value is always + /// RuleMetricDataSource in this case. /// [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource")] public partial class RuleMetricDataSource : RuleDataSource diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleWebhookAction.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleWebhookAction.cs index cb73e3db1f24..f781bdef0b04 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleWebhookAction.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RuleWebhookAction.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -12,7 +12,7 @@ namespace Microsoft.Azure.Management.Insights.Models /// /// Specifies the action to post to service when the rule condition is - /// evaluated. + /// evaluated. The discriminator is always RuleWebhookAction in this case. /// [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleWebhookAction")] public partial class RuleWebhookAction : RuleAction @@ -25,10 +25,11 @@ public RuleWebhookAction() { } /// /// Initializes a new instance of the RuleWebhookAction class. /// - /// the service uri to Post the - /// notitication. + /// the service uri to Post the notitication + /// when the alert activates or resolves. /// the dictionary of custom properties to - /// include with the post operation. + /// include with the post operation. These data are appended to the + /// webhook payload. public RuleWebhookAction(string serviceUri = default(string), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary)) { ServiceUri = serviceUri; @@ -36,14 +37,15 @@ public RuleWebhookAction() { } } /// - /// Gets or sets the service uri to Post the notitication. + /// Gets or sets the service uri to Post the notitication when the + /// alert activates or resolves. /// [Newtonsoft.Json.JsonProperty(PropertyName = "serviceUri")] public string ServiceUri { get; set; } /// /// Gets or sets the dictionary of custom properties to include with - /// the post operation. + /// the post operation. These data are appended to the webhook payload. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] public System.Collections.Generic.IDictionary Properties { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleAction.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleAction.cs index 34a500714d8e..e7894a6c3d86 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleAction.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleAction.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -26,25 +26,22 @@ public ScaleAction() { } /// the scale direction. Whether the scaling /// action increases or decreases the number of instances. Possible /// values include: 'None', 'Increase', 'Decrease' + /// the type of action that should occur when the + /// scale rule fires. Possible values include: 'ChangeCount', + /// 'PercentChangeCount', 'ExactCount' /// the amount of time to wait since the last - /// scaling action before this action occurs. It must be between 1 - /// week and 1 minute. + /// scaling action before this action occurs. It must be between 1 week + /// and 1 minute in ISO 8601 format. /// the number of instances that are involved in /// the scaling action. This value must be 1 or greater. The default /// value is 1. - public ScaleAction(ScaleDirection direction, System.TimeSpan cooldown, string value = default(string)) + public ScaleAction(ScaleDirection direction, ScaleType type, System.TimeSpan cooldown, string value = default(string)) { Direction = direction; + Type = type; Value = value; Cooldown = cooldown; } - /// - /// Static constructor for ScaleAction class. - /// - static ScaleAction() - { - Type = "ChangeCount"; - } /// /// Gets or sets the scale direction. Whether the scaling action @@ -54,10 +51,18 @@ static ScaleAction() [Newtonsoft.Json.JsonProperty(PropertyName = "direction")] public ScaleDirection Direction { get; set; } + /// + /// Gets or sets the type of action that should occur when the scale + /// rule fires. Possible values include: 'ChangeCount', + /// 'PercentChangeCount', 'ExactCount' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public ScaleType Type { get; set; } + /// /// Gets or sets the number of instances that are involved in the - /// scaling action. This value must be 1 or greater. The default - /// value is 1. + /// scaling action. This value must be 1 or greater. The default value + /// is 1. /// [Newtonsoft.Json.JsonProperty(PropertyName = "value")] public string Value { get; set; } @@ -65,18 +70,11 @@ static ScaleAction() /// /// Gets or sets the amount of time to wait since the last scaling /// action before this action occurs. It must be between 1 week and 1 - /// minute. + /// minute in ISO 8601 format. /// [Newtonsoft.Json.JsonProperty(PropertyName = "cooldown")] public System.TimeSpan Cooldown { get; set; } - /// - /// the type of action that should occur, this must be set to - /// ChangeCount. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] - public static string Type { get; private set; } - /// /// Validate the object. /// diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleCapacity.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleCapacity.cs index 5d127d6c1895..95b5dbce0dbe 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleCapacity.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleCapacity.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -26,8 +26,8 @@ public ScaleCapacity() { } /// the minimum number of instances for the /// resource. /// the maximum number of instances for the - /// resource. The actual maximum number may be limited by the cores - /// that are available. + /// resource. The actual maximum number of instances is limited by the + /// cores that are available in the subscription. /// the number of instances that will be /// set if metrics are not available for evaluation. The default is /// only used if the current instance count is lower than the @@ -47,8 +47,8 @@ public ScaleCapacity(string minimum, string maximum, string defaultProperty) /// /// Gets or sets the maximum number of instances for the resource. The - /// actual maximum number may be limited by the cores that are - /// available. + /// actual maximum number of instances is limited by the cores that are + /// available in the subscription. /// [Newtonsoft.Json.JsonProperty(PropertyName = "maximum")] public string Maximum { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleDirection.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleDirection.cs index cb4b5ada0ab1..9973ffedc81f 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleDirection.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleDirection.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleRule.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleRule.cs index 4c10c39ae4ba..e495486a0a97 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleRule.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleRule.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -18,21 +18,17 @@ public partial class ScaleRule /// /// Initializes a new instance of the ScaleRule class. /// - public ScaleRule() - { - ScaleAction = new ScaleAction(); - } + public ScaleRule() { } /// /// Initializes a new instance of the ScaleRule class. /// - /// the parameters for the scaling - /// action. /// the trigger that results in a scaling /// action. - public ScaleRule(ScaleAction scaleAction, MetricTrigger metricTrigger = default(MetricTrigger)) + /// the parameters for the scaling + /// action. + public ScaleRule(MetricTrigger metricTrigger, ScaleAction scaleAction) { - ScaleAction = new ScaleAction(); MetricTrigger = metricTrigger; ScaleAction = scaleAction; } @@ -57,10 +53,18 @@ public ScaleRule() /// public virtual void Validate() { + if (MetricTrigger == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricTrigger"); + } if (ScaleAction == null) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ScaleAction"); } + if (this.MetricTrigger != null) + { + this.MetricTrigger.Validate(); + } if (this.ScaleAction != null) { this.ScaleAction.Validate(); diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleType.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleType.cs new file mode 100644 index 000000000000..f890f163e600 --- /dev/null +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ScaleType.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Insights.Models +{ + + /// + /// Defines values for ScaleType. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum ScaleType + { + [System.Runtime.Serialization.EnumMember(Value = "ChangeCount")] + ChangeCount, + [System.Runtime.Serialization.EnumMember(Value = "PercentChangeCount")] + PercentChangeCount, + [System.Runtime.Serialization.EnumMember(Value = "ExactCount")] + ExactCount + } +} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettings.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettings.cs new file mode 100644 index 000000000000..db506f7427cf --- /dev/null +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettings.cs @@ -0,0 +1,86 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Insights.Models +{ + using System.Linq; + + /// + /// The diagnostic settings for service. + /// + public partial class ServiceDiagnosticSettings + { + /// + /// Initializes a new instance of the ServiceDiagnosticSettings class. + /// + public ServiceDiagnosticSettings() { } + + /// + /// Initializes a new instance of the ServiceDiagnosticSettings class. + /// + /// The resource ID of the storage + /// account to which you would like to send Diagnostic Logs. + /// The service bus rule ID of the + /// service bus namespace in which you would like to have Event Hubs + /// created for streaming Diagnostic Logs. The rule ID is of the + /// format: '{service bus resource ID}/authorizationrules/{key + /// name}'. + /// the list of metric settings. + /// the list of logs settings. + /// The workspace ID (resource ID of a Log + /// Analytics workspace) for a Log Analytics workspace to which you + /// would like to send Diagnostic Logs. Example: + /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 + public ServiceDiagnosticSettings(string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList metrics = default(System.Collections.Generic.IList), System.Collections.Generic.IList logs = default(System.Collections.Generic.IList), string workspaceId = default(string)) + { + StorageAccountId = storageAccountId; + ServiceBusRuleId = serviceBusRuleId; + Metrics = metrics; + Logs = logs; + WorkspaceId = workspaceId; + } + + /// + /// Gets or sets the resource ID of the storage account to which you + /// would like to send Diagnostic Logs. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "storageAccountId")] + public string StorageAccountId { get; set; } + + /// + /// Gets or sets the service bus rule ID of the service bus namespace + /// in which you would like to have Event Hubs created for streaming + /// Diagnostic Logs. The rule ID is of the format: '{service bus + /// resource ID}/authorizationrules/{key name}'. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "serviceBusRuleId")] + public string ServiceBusRuleId { get; set; } + + /// + /// Gets or sets the list of metric settings. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "metrics")] + public System.Collections.Generic.IList Metrics { get; set; } + + /// + /// Gets or sets the list of logs settings. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "logs")] + public System.Collections.Generic.IList Logs { get; set; } + + /// + /// Gets or sets the workspace ID (resource ID of a Log Analytics + /// workspace) for a Log Analytics workspace to which you would like to + /// send Diagnostic Logs. Example: + /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "workspaceId")] + public string WorkspaceId { get; set; } + + } +} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettingsCreateOrUpdateParameters.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettingsCreateOrUpdateParameters.cs deleted file mode 100644 index 1389c16bbf6f..000000000000 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettingsCreateOrUpdateParameters.cs +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Insights.Models -{ - using System.Linq; - - /// - /// Parameters supplied to the Create or Update service configuration. - /// - [Microsoft.Rest.Serialization.JsonTransformation] - public partial class ServiceDiagnosticSettingsCreateOrUpdateParameters - { - /// - /// Initializes a new instance of the - /// ServiceDiagnosticSettingsCreateOrUpdateParameters class. - /// - public ServiceDiagnosticSettingsCreateOrUpdateParameters() { } - - /// - /// Initializes a new instance of the - /// ServiceDiagnosticSettingsCreateOrUpdateParameters class. - /// - /// the resource id of the storage - /// account. - /// the id of the service bus - /// rule. - /// the list of metrics. - /// the list of logs. - /// the OMS workspace Id. - public ServiceDiagnosticSettingsCreateOrUpdateParameters(string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList metrics = default(System.Collections.Generic.IList), System.Collections.Generic.IList logs = default(System.Collections.Generic.IList), string workspaceId = default(string)) - { - StorageAccountId = storageAccountId; - ServiceBusRuleId = serviceBusRuleId; - Metrics = metrics; - Logs = logs; - WorkspaceId = workspaceId; - } - - /// - /// Gets or sets the resource id of the storage account. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccountId")] - public string StorageAccountId { get; set; } - - /// - /// Gets or sets the id of the service bus rule. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceBusRuleId")] - public string ServiceBusRuleId { get; set; } - - /// - /// Gets or sets the list of metrics. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.metrics")] - public System.Collections.Generic.IList Metrics { get; set; } - - /// - /// Gets or sets the list of logs. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.logs")] - public System.Collections.Generic.IList Logs { get; set; } - - /// - /// Gets or sets the OMS workspace Id. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.workspaceId")] - public string WorkspaceId { get; set; } - - } -} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettingsResource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettingsResource.cs index a92eac342214..f69b4b8391e4 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettingsResource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettingsResource.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -17,27 +17,33 @@ namespace Microsoft.Azure.Management.Insights.Models public partial class ServiceDiagnosticSettingsResource : Resource { /// - /// Initializes a new instance of the - /// ServiceDiagnosticSettingsResource class. + /// Initializes a new instance of the ServiceDiagnosticSettingsResource + /// class. /// public ServiceDiagnosticSettingsResource() { } /// - /// Initializes a new instance of the - /// ServiceDiagnosticSettingsResource class. + /// Initializes a new instance of the ServiceDiagnosticSettingsResource + /// class. /// /// Resource location /// Azure resource Id /// Azure resource name /// Azure resource type /// Resource tags - /// the resource id of the storage - /// account. - /// the id of the service bus - /// rule. - /// the list of metrics. - /// the list of logs. - /// the OMS workspace Id. + /// The resource ID of the storage + /// account to which you would like to send Diagnostic Logs. + /// The service bus rule ID of the + /// service bus namespace in which you would like to have Event Hubs + /// created for streaming Diagnostic Logs. The rule ID is of the + /// format: '{service bus resource ID}/authorizationrules/{key + /// name}'. + /// the list of metric settings. + /// the list of logs settings. + /// The workspace ID (resource ID of a Log + /// Analytics workspace) for a Log Analytics workspace to which you + /// would like to send Diagnostic Logs. Example: + /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 public ServiceDiagnosticSettingsResource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList metrics = default(System.Collections.Generic.IList), System.Collections.Generic.IList logs = default(System.Collections.Generic.IList), string workspaceId = default(string)) : base(location, id, name, type, tags) { @@ -49,31 +55,38 @@ public ServiceDiagnosticSettingsResource() { } } /// - /// Gets or sets the resource id of the storage account. + /// Gets or sets the resource ID of the storage account to which you + /// would like to send Diagnostic Logs. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccountId")] public string StorageAccountId { get; set; } /// - /// Gets or sets the id of the service bus rule. + /// Gets or sets the service bus rule ID of the service bus namespace + /// in which you would like to have Event Hubs created for streaming + /// Diagnostic Logs. The rule ID is of the format: '{service bus + /// resource ID}/authorizationrules/{key name}'. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceBusRuleId")] public string ServiceBusRuleId { get; set; } /// - /// Gets or sets the list of metrics. + /// Gets or sets the list of metric settings. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.metrics")] public System.Collections.Generic.IList Metrics { get; set; } /// - /// Gets or sets the list of logs. + /// Gets or sets the list of logs settings. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.logs")] public System.Collections.Generic.IList Logs { get; set; } /// - /// Gets or sets the OMS workspace Id. + /// Gets or sets the workspace ID (resource ID of a Log Analytics + /// workspace) for a Log Analytics workspace to which you would like to + /// send Diagnostic Logs. Example: + /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.workspaceId")] public string WorkspaceId { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ThresholdRuleCondition.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ThresholdRuleCondition.cs index 9c292a138c21..fcb1be4f4d06 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ThresholdRuleCondition.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ThresholdRuleCondition.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -30,17 +30,18 @@ public ThresholdRuleCondition() { } /// the threshold value that activates the /// alert. /// the resource from which the rule collects - /// its data. + /// its data. For this type dataSource will always be of type + /// RuleMetricDataSource. /// the period of time (in ISO 8601 duration /// format) that is used to monitor alert activity based on the /// threshold. If specified then it must be between 5 minutes and 1 /// day. /// the time aggregation operator. How - /// the data that is collected should be combined over time. The - /// default value is the PrimaryAggregationType of the Metric. - /// Possible values include: 'Average', 'Minimum', 'Maximum', - /// 'Total', 'Last' - public ThresholdRuleCondition(ConditionOperator? operatorProperty, double threshold, RuleDataSource dataSource = default(RuleDataSource), System.TimeSpan? windowSize = default(System.TimeSpan?), TimeAggregationOperator? timeAggregation = default(TimeAggregationOperator?)) + /// the data that are collected should be combined over time. The + /// default value is the PrimaryAggregationType of the Metric. Possible + /// values include: 'Average', 'Minimum', 'Maximum', 'Total', + /// 'Last' + public ThresholdRuleCondition(ConditionOperator operatorProperty, double threshold, RuleDataSource dataSource = default(RuleDataSource), System.TimeSpan? windowSize = default(System.TimeSpan?), TimeAggregationOperator? timeAggregation = default(TimeAggregationOperator?)) { DataSource = dataSource; OperatorProperty = operatorProperty; @@ -51,6 +52,8 @@ public ThresholdRuleCondition() { } /// /// Gets or sets the resource from which the rule collects its data. + /// For this type dataSource will always be of type + /// RuleMetricDataSource. /// [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] public RuleDataSource DataSource { get; set; } @@ -61,7 +64,7 @@ public ThresholdRuleCondition() { } /// 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' /// [Newtonsoft.Json.JsonProperty(PropertyName = "operator")] - public ConditionOperator? OperatorProperty { get; set; } + public ConditionOperator OperatorProperty { get; set; } /// /// Gets or sets the threshold value that activates the alert. @@ -78,7 +81,7 @@ public ThresholdRuleCondition() { } public System.TimeSpan? WindowSize { get; set; } /// - /// Gets or sets the time aggregation operator. How the data that is + /// Gets or sets the time aggregation operator. How the data that are /// collected should be combined over time. The default value is the /// PrimaryAggregationType of the Metric. Possible values include: /// 'Average', 'Minimum', 'Maximum', 'Total', 'Last' diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeAggregationOperator.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeAggregationOperator.cs index 729d3ca1ba1b..4b09fee4ab69 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeAggregationOperator.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeAggregationOperator.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeAggregationType.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeAggregationType.cs index be5a5ce8af00..25d280cab005 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeAggregationType.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeAggregationType.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeWindow.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeWindow.cs index 494215c80ee9..e55989d4ae59 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeWindow.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeWindow.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -11,8 +11,7 @@ namespace Microsoft.Azure.Management.Insights.Models using System.Linq; /// - /// A specific date-time for the profile. This element is not used if the - /// Recurrence element is used. + /// A specific date-time for the profile. /// public partial class TimeWindow { @@ -28,8 +27,8 @@ public TimeWindow() { } /// format. /// the end time for the profile in ISO 8601 /// format. - /// the time zone of the start and end times - /// for the profile. See examples of valid timezone ids over here: + /// the time zone of the start and end times for + /// the profile. See examples of valid timezone ids over here: /// https://msdn.microsoft.com/en-us/library/azure/dn931928.aspx public TimeWindow(System.DateTime start, System.DateTime end, string timeZone = default(string)) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/WebhookNotification.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/WebhookNotification.cs index 9e218e7a1091..f05ac63ec22b 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/WebhookNotification.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/WebhookNotification.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -11,7 +11,7 @@ namespace Microsoft.Azure.Management.Insights.Models using System.Linq; /// - /// Webhook notification. + /// Webhook notification of an autoscale event. /// public partial class WebhookNotification { @@ -25,7 +25,8 @@ public WebhookNotification() { } /// /// the service address to receive the /// notification. - /// a property bag of settings. + /// a property bag of settings. This value can + /// be empty. public WebhookNotification(string serviceUri = default(string), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary)) { ServiceUri = serviceUri; @@ -39,7 +40,7 @@ public WebhookNotification() { } public string ServiceUri { get; set; } /// - /// Gets or sets a property bag of settings. + /// Gets or sets a property bag of settings. This value can be empty. /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] public System.Collections.Generic.IDictionary Properties { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperations.cs index dbd798b75e83..c47819c434d4 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperations.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -248,7 +248,7 @@ internal ServiceDiagnosticSettingsOperations(InsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsCreateOrUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettings parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceUri == null) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperationsExtensions.cs index 5e9f69874543..fef4c7c130e0 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperationsExtensions.cs @@ -2,7 +2,7 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -63,7 +63,7 @@ public static ServiceDiagnosticSettingsResource Get(this IServiceDiagnosticSetti /// /// Parameters supplied to the operation. /// - public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsCreateOrUpdateParameters parameters) + public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettings parameters) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServiceDiagnosticSettingsOperations)s).CreateOrUpdateAsync(resourceUri, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -83,7 +83,7 @@ public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiag /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsCreateOrUpdateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettings parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceUri, parameters, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/error.txt b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/error.txt new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/generate.cmd b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/generate.cmd index cff85f5ccaae..b608e371e8ff 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/generate.cmd +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/generate.cmd @@ -5,7 +5,7 @@ @echo off -set autoRestVersion=0.17.0-Nightly20160914 +set autoRestVersion=1.0.0-Nightly20161116 if "%1" == "" ( set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/insights/compositeInsightsClient.json" ) else ( diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json index 7150c5b2002a..1ad2eee3ed7f 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json @@ -1,5 +1,5 @@ { - "version": "0.14.0-preview", + "version": "0.14.1-preview", "description": "Microsoft Azure Insights Library", "authors": [ "Microsoft" ], @@ -18,8 +18,8 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.2,3.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.3,3.0.0)" }, "frameworks": { From b92ea8320e26dbe88f58834c172098fffe43e1b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= Date: Tue, 22 Nov 2016 14:35:42 -0800 Subject: [PATCH 004/137] Changes derived from Swagger Spec modifications and bug fixes --- .../BasicTests/LogProfilesTests.cs | 7 +- .../Insights.Tests/BasicTests/MetricsTests.cs | 4 +- .../ServiceDiagnosticSettingsTests.cs | 7 +- .../Insights/MetricDefinitionsOperations.cs | 5 - .../Generated/Insights/MetricsOperations.cs | 5 - .../Insights/ILogProfilesOperations.cs | 2 +- .../IServiceDiagnosticSettingsOperations.cs | 2 +- .../Insights/LogProfilesOperations.cs | 2 +- .../LogProfilesOperationsExtensions.cs | 4 +- .../Insights/Models/LogProfileProperties.cs | 110 ------------------ .../Models/ServiceDiagnosticSettings.cs | 86 -------------- .../ServiceDiagnosticSettingsOperations.cs | 6 +- ...eDiagnosticSettingsOperationsExtensions.cs | 4 +- 13 files changed, 22 insertions(+), 222 deletions(-) delete mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileProperties.cs delete mode 100644 src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettings.cs diff --git a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/LogProfilesTests.cs b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/LogProfilesTests.cs index 3a852c509a48..9a75e7fccc61 100644 --- a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/LogProfilesTests.cs +++ b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/LogProfilesTests.cs @@ -127,9 +127,9 @@ private static LogProfileResource CreateLogProfile() }; } - private static LogProfileProperties CreateLogProfileParams() + private static LogProfileResource CreateLogProfileParams() { - return new LogProfileProperties + return new LogProfileResource { StorageAccountId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.storage/storageaccounts/sa1", ServiceBusRuleId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.servicebus/namespaces/sb1/authorizationrules/ar1", @@ -139,7 +139,8 @@ private static LogProfileProperties CreateLogProfileParams() { Days = 4, Enabled = true, - } + }, + Location = "" }; } diff --git a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/MetricsTests.cs b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/MetricsTests.cs index ce61ca67fc15..daa0f9544cdd 100644 --- a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/MetricsTests.cs +++ b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/MetricsTests.cs @@ -82,7 +82,7 @@ private IList GetMetricCollection(string resourceId) Count = 1, Maximum = 10.0, Minimum = 10.0, - Timestamp = DateTime.Parse("2014-08-20T12:15:23.00Z"), + TimeStamp = DateTime.Parse("2014-08-20T12:15:23.00Z"), Total = 10.0 } } @@ -126,7 +126,7 @@ private void AreEqual(MetricValue exp, MetricValue act) Assert.Equal(exp.Count, act.Count); Assert.Equal(exp.Maximum, act.Maximum); Assert.Equal(exp.Minimum, act.Minimum); - Assert.Equal(exp.Timestamp.ToUniversalTime(), act.Timestamp.ToUniversalTime()); + Assert.Equal(exp.TimeStamp.ToUniversalTime(), act.TimeStamp.ToUniversalTime()); Assert.Equal(exp.Total, act.Total); } } diff --git a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs index 49ea9aa753c9..6ac6a8173d99 100644 --- a/src/ResourceManagement/Insights/Insights.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs +++ b/src/ResourceManagement/Insights/Insights.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs @@ -68,9 +68,9 @@ public void LogProfiles_GetTest() AreEqual(expResponse, actualResponse); } - private static ServiceDiagnosticSettings CreateDiagnosticSettingsParams() + private static ServiceDiagnosticSettingsResource CreateDiagnosticSettingsParams() { - return new ServiceDiagnosticSettings + return new ServiceDiagnosticSettingsResource { StorageAccountId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.storage/storageaccounts/sa1", ServiceBusRuleId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.servicebus/namespaces/ns1/authorizationRules/authrule", @@ -98,7 +98,8 @@ private static ServiceDiagnosticSettings CreateDiagnosticSettingsParams() }, TimeGrain = TimeSpan.FromMinutes(1) } - } + }, + Location = "" }; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperations.cs index 36cbfeb8e089..6048f464bc63 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricDefinitionsOperations.cs @@ -79,10 +79,6 @@ internal MetricDefinitionsOperations(InsightsClient client) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); } - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2016-03-01"; // Tracing bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; @@ -101,7 +97,6 @@ internal MetricDefinitionsOperations(InsightsClient client) var _baseUrl = this.Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/metricDefinitions").ToString(); _url = _url.Replace("{resourceUri}", resourceUri); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (odataQuery != null) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperations.cs index f05009ac6dfc..8fb8636cf89d 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Insights/MetricsOperations.cs @@ -88,10 +88,6 @@ internal MetricsOperations(InsightsClient client) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); } - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2016-09-01"; // Tracing bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; @@ -110,7 +106,6 @@ internal MetricsOperations(InsightsClient client) var _baseUrl = this.Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/metrics").ToString(); _url = _url.Replace("{resourceUri}", resourceUri); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (odataQuery != null) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ILogProfilesOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ILogProfilesOperations.cs index 7a28c4446f33..92d006d4d42b 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ILogProfilesOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ILogProfilesOperations.cs @@ -81,7 +81,7 @@ public partial interface ILogProfilesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileProperties parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// List the log profiles. /// diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IServiceDiagnosticSettingsOperations.cs index 704411d99fe8..864608358b26 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IServiceDiagnosticSettingsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/IServiceDiagnosticSettingsOperations.cs @@ -63,6 +63,6 @@ public partial interface IServiceDiagnosticSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettings parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperations.cs index 491d42133dd4..cc289689cbd0 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperations.cs @@ -399,7 +399,7 @@ internal LogProfilesOperations(InsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileProperties parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (logProfileName == null) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperationsExtensions.cs index 1c663cecaa0c..0582e546bb47 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/LogProfilesOperationsExtensions.cs @@ -94,7 +94,7 @@ public static LogProfileResource Get(this ILogProfilesOperations operations, str /// /// Parameters supplied to the operation. /// - public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations operations, string logProfileName, LogProfileProperties parameters) + public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations operations, string logProfileName, LogProfileResource parameters) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).CreateOrUpdateAsync(logProfileName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -114,7 +114,7 @@ public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations oper /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ILogProfilesOperations operations, string logProfileName, LogProfileProperties parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ILogProfilesOperations operations, string logProfileName, LogProfileResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(logProfileName, parameters, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileProperties.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileProperties.cs deleted file mode 100644 index 99f545f7555d..000000000000 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileProperties.cs +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Insights.Models -{ - using System.Linq; - - /// - /// The log profile properties. - /// - public partial class LogProfileProperties - { - /// - /// Initializes a new instance of the LogProfileProperties class. - /// - public LogProfileProperties() { } - - /// - /// Initializes a new instance of the LogProfileProperties class. - /// - /// the resource id of the storage - /// account to which you would like to send the Activity Log. - /// List of regions for which Activity Log - /// events should be stored or streamed. It is a comma separated list - /// of valid ARM locations including the 'global' location. - /// The service bus rule ID of the - /// service bus namespace in which you would like to have Event Hubs - /// created for streaming the Activity Log. The rule ID is of the - /// format: '{service bus resource ID}/authorizationrules/{key - /// name}'. - /// the categories of the logs. These - /// categories are created as is convenient to the user. Some values - /// are: 'Write', 'Delete', and/or 'Action.' - /// the retention policy for the events - /// in the log. - public LogProfileProperties(string storageAccountId, System.Collections.Generic.IList locations, string serviceBusRuleId = default(string), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) - { - StorageAccountId = storageAccountId; - ServiceBusRuleId = serviceBusRuleId; - Locations = locations; - Categories = categories; - RetentionPolicy = retentionPolicy; - } - - /// - /// Gets or sets the resource id of the storage account to which you - /// would like to send the Activity Log. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "storageAccountId")] - public string StorageAccountId { get; set; } - - /// - /// Gets or sets the service bus rule ID of the service bus namespace - /// in which you would like to have Event Hubs created for streaming - /// the Activity Log. The rule ID is of the format: '{service bus - /// resource ID}/authorizationrules/{key name}'. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serviceBusRuleId")] - public string ServiceBusRuleId { get; set; } - - /// - /// Gets or sets list of regions for which Activity Log events should - /// be stored or streamed. It is a comma separated list of valid ARM - /// locations including the 'global' location. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "locations")] - public System.Collections.Generic.IList Locations { get; set; } - - /// - /// Gets or sets the categories of the logs. These categories are - /// created as is convenient to the user. Some values are: 'Write', - /// 'Delete', and/or 'Action.' - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "categories")] - public System.Collections.Generic.IList Categories { get; set; } - - /// - /// Gets or sets the retention policy for the events in the log. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "retentionPolicy")] - public RetentionPolicy RetentionPolicy { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (StorageAccountId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "StorageAccountId"); - } - if (Locations == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Locations"); - } - if (this.RetentionPolicy != null) - { - this.RetentionPolicy.Validate(); - } - } - } -} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettings.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettings.cs deleted file mode 100644 index db506f7427cf..000000000000 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/ServiceDiagnosticSettings.cs +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Insights.Models -{ - using System.Linq; - - /// - /// The diagnostic settings for service. - /// - public partial class ServiceDiagnosticSettings - { - /// - /// Initializes a new instance of the ServiceDiagnosticSettings class. - /// - public ServiceDiagnosticSettings() { } - - /// - /// Initializes a new instance of the ServiceDiagnosticSettings class. - /// - /// The resource ID of the storage - /// account to which you would like to send Diagnostic Logs. - /// The service bus rule ID of the - /// service bus namespace in which you would like to have Event Hubs - /// created for streaming Diagnostic Logs. The rule ID is of the - /// format: '{service bus resource ID}/authorizationrules/{key - /// name}'. - /// the list of metric settings. - /// the list of logs settings. - /// The workspace ID (resource ID of a Log - /// Analytics workspace) for a Log Analytics workspace to which you - /// would like to send Diagnostic Logs. Example: - /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 - public ServiceDiagnosticSettings(string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList metrics = default(System.Collections.Generic.IList), System.Collections.Generic.IList logs = default(System.Collections.Generic.IList), string workspaceId = default(string)) - { - StorageAccountId = storageAccountId; - ServiceBusRuleId = serviceBusRuleId; - Metrics = metrics; - Logs = logs; - WorkspaceId = workspaceId; - } - - /// - /// Gets or sets the resource ID of the storage account to which you - /// would like to send Diagnostic Logs. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "storageAccountId")] - public string StorageAccountId { get; set; } - - /// - /// Gets or sets the service bus rule ID of the service bus namespace - /// in which you would like to have Event Hubs created for streaming - /// Diagnostic Logs. The rule ID is of the format: '{service bus - /// resource ID}/authorizationrules/{key name}'. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serviceBusRuleId")] - public string ServiceBusRuleId { get; set; } - - /// - /// Gets or sets the list of metric settings. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "metrics")] - public System.Collections.Generic.IList Metrics { get; set; } - - /// - /// Gets or sets the list of logs settings. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "logs")] - public System.Collections.Generic.IList Logs { get; set; } - - /// - /// Gets or sets the workspace ID (resource ID of a Log Analytics - /// workspace) for a Log Analytics workspace to which you would like to - /// send Diagnostic Logs. Example: - /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "workspaceId")] - public string WorkspaceId { get; set; } - - } -} diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperations.cs index c47819c434d4..24d85a39b6b9 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperations.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperations.cs @@ -248,7 +248,7 @@ internal ServiceDiagnosticSettingsOperations(InsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettings parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceUri == null) { @@ -258,6 +258,10 @@ internal ServiceDiagnosticSettingsOperations(InsightsManagementClient client) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); } + if (parameters != null) + { + parameters.Validate(); + } if (this.Client.SubscriptionId == null) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperationsExtensions.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperationsExtensions.cs index fef4c7c130e0..aa8b53d811cc 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperationsExtensions.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/ServiceDiagnosticSettingsOperationsExtensions.cs @@ -63,7 +63,7 @@ public static ServiceDiagnosticSettingsResource Get(this IServiceDiagnosticSetti /// /// Parameters supplied to the operation. /// - public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettings parameters) + public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsResource parameters) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServiceDiagnosticSettingsOperations)s).CreateOrUpdateAsync(resourceUri, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -83,7 +83,7 @@ public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiag /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettings parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceUri, parameters, null, cancellationToken).ConfigureAwait(false)) { From 1075827778e376c6d0653e1f7b472e865d59c708 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= Date: Mon, 28 Nov 2016 10:21:47 -0800 Subject: [PATCH 005/137] Improvements in documentation and adding a reference to a commit in the generate.cmd file --- .../Insights/Models/RecurrentSchedule.cs | 58 ++++++------ .../Management/Insights/Models/TimeWindow.cs | 91 +++++++++++++++++-- .../Microsoft.Azure.Insights/generate.cmd | 7 +- 3 files changed, 118 insertions(+), 38 deletions(-) diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrentSchedule.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrentSchedule.cs index 780a48b8e485..4f90a5a2b31f 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrentSchedule.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/RecurrentSchedule.cs @@ -23,33 +23,33 @@ public RecurrentSchedule() { } /// /// Initializes a new instance of the RecurrentSchedule class. /// - /// the time zone for the hours of the profile. - /// See examples of valid timezone are: Dateline Standard Time, UTC-11, - /// Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard - /// Time (Mexico), Pacific Standard Time, US Mountain Standard Time, - /// Mountain Standard Time (Mexico), Mountain Standard Time, Central - /// America Standard Time, Central Standard Time, Central Standard Time - /// (Mexico), Canada Central Standard Time, SA Pacific Standard Time, - /// Eastern Standard Time, US Eastern Standard Time, Venezuela Standard - /// Time, Paraguay Standard Time, Atlantic Standard Time, Central - /// Brazilian Standard Time, SA Western Standard Time, Pacific SA - /// Standard Time, Newfoundland Standard Time, E. South America - /// Standard Time, Argentina Standard Time, SA Eastern Standard Time, - /// Greenland Standard Time, Montevideo Standard Time, Bahia Standard - /// Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, - /// Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard - /// Time, Greenwich Standard Time, W. Europe Standard Time, Central - /// Europe Standard Time, Romance Standard Time, Central European - /// Standard Time, W. Central Africa Standard Time, Namibia Standard - /// Time, Jordan Standard Time, GTB Standard Time, Middle East Standard - /// Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard - /// Time, South Africa Standard Time, FLE Standard Time, Turkey - /// Standard Time, Israel Standard Time, Kaliningrad Standard Time, - /// Libya Standard Time, Arabic Standard Time, Arab Standard Time, - /// Belarus Standard Time, Russian Standard Time, E. Africa Standard - /// Time, Iran Standard Time, Arabian Standard Time, Azerbaijan - /// Standard Time, Russia Time Zone 3, Mauritius Standard Time, - /// Georgian Standard Time, Caucasus Standard Time, Afghanistan + /// the timezone for the hours of the profile. + /// Some examples of valid timezones are: Dateline Standard Time, + /// UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific + /// Standard Time (Mexico), Pacific Standard Time, US Mountain Standard + /// Time, Mountain Standard Time (Mexico), Mountain Standard Time, + /// Central America Standard Time, Central Standard Time, Central + /// Standard Time (Mexico), Canada Central Standard Time, SA Pacific + /// Standard Time, Eastern Standard Time, US Eastern Standard Time, + /// Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard + /// Time, Central Brazilian Standard Time, SA Western Standard Time, + /// Pacific SA Standard Time, Newfoundland Standard Time, E. South + /// America Standard Time, Argentina Standard Time, SA Eastern Standard + /// Time, Greenland Standard Time, Montevideo Standard Time, Bahia + /// Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard + /// Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT + /// Standard Time, Greenwich Standard Time, W. Europe Standard Time, + /// Central Europe Standard Time, Romance Standard Time, Central + /// European Standard Time, W. Central Africa Standard Time, Namibia + /// Standard Time, Jordan Standard Time, GTB Standard Time, Middle East + /// Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe + /// Standard Time, South Africa Standard Time, FLE Standard Time, + /// Turkey Standard Time, Israel Standard Time, Kaliningrad Standard + /// Time, Libya Standard Time, Arabic Standard Time, Arab Standard + /// Time, Belarus Standard Time, Russian Standard Time, E. Africa + /// Standard Time, Iran Standard Time, Arabian Standard Time, + /// Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard + /// Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan /// Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, /// Pakistan Standard Time, India Standard Time, Sri Lanka Standard /// Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh @@ -82,8 +82,8 @@ public RecurrentSchedule(string timeZone, System.Collections.Generic.IList - /// Gets or sets the time zone for the hours of the profile. See - /// examples of valid timezone are: Dateline Standard Time, UTC-11, + /// Gets or sets the timezone for the hours of the profile. Some + /// examples of valid timezones are: Dateline Standard Time, UTC-11, /// Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard /// Time (Mexico), Pacific Standard Time, US Mountain Standard Time, /// Mountain Standard Time (Mexico), Mountain Standard Time, Central diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeWindow.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeWindow.cs index e55989d4ae59..900dd61616f2 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeWindow.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/TimeWindow.cs @@ -27,9 +27,49 @@ public TimeWindow() { } /// format. /// the end time for the profile in ISO 8601 /// format. - /// the time zone of the start and end times for - /// the profile. See examples of valid timezone ids over here: - /// https://msdn.microsoft.com/en-us/library/azure/dn931928.aspx + /// the timezone of the start and end times for + /// the profile. Some examples of valid timezones are: Dateline + /// Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard + /// Time, Pacific Standard Time (Mexico), Pacific Standard Time, US + /// Mountain Standard Time, Mountain Standard Time (Mexico), Mountain + /// Standard Time, Central America Standard Time, Central Standard + /// Time, Central Standard Time (Mexico), Canada Central Standard Time, + /// SA Pacific Standard Time, Eastern Standard Time, US Eastern + /// Standard Time, Venezuela Standard Time, Paraguay Standard Time, + /// Atlantic Standard Time, Central Brazilian Standard Time, SA Western + /// Standard Time, Pacific SA Standard Time, Newfoundland Standard + /// Time, E. South America Standard Time, Argentina Standard Time, SA + /// Eastern Standard Time, Greenland Standard Time, Montevideo Standard + /// Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, + /// Azores Standard Time, Cape Verde Standard Time, Morocco Standard + /// Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe + /// Standard Time, Central Europe Standard Time, Romance Standard Time, + /// Central European Standard Time, W. Central Africa Standard Time, + /// Namibia Standard Time, Jordan Standard Time, GTB Standard Time, + /// Middle East Standard Time, Egypt Standard Time, Syria Standard + /// Time, E. Europe Standard Time, South Africa Standard Time, FLE + /// Standard Time, Turkey Standard Time, Israel Standard Time, + /// Kaliningrad Standard Time, Libya Standard Time, Arabic Standard + /// Time, Arab Standard Time, Belarus Standard Time, Russian Standard + /// Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard + /// Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius + /// Standard Time, Georgian Standard Time, Caucasus Standard Time, + /// Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg + /// Standard Time, Pakistan Standard Time, India Standard Time, Sri + /// Lanka Standard Time, Nepal Standard Time, Central Asia Standard + /// Time, Bangladesh Standard Time, N. Central Asia Standard Time, + /// Myanmar Standard Time, SE Asia Standard Time, North Asia Standard + /// Time, China Standard Time, North Asia East Standard Time, Singapore + /// Standard Time, W. Australia Standard Time, Taipei Standard Time, + /// Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard + /// Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS + /// Central Standard Time, E. Australia Standard Time, AUS Eastern + /// Standard Time, West Pacific Standard Time, Tasmania Standard Time, + /// Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone + /// 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand + /// Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, + /// Tonga Standard Time, Samoa Standard Time, Line Islands Standard + /// Time public TimeWindow(System.DateTime start, System.DateTime end, string timeZone = default(string)) { TimeZone = timeZone; @@ -38,9 +78,48 @@ public TimeWindow() { } } /// - /// Gets or sets the time zone of the start and end times for the - /// profile. See examples of valid timezone ids over here: - /// https://msdn.microsoft.com/en-us/library/azure/dn931928.aspx + /// Gets or sets the timezone of the start and end times for the + /// profile. Some examples of valid timezones are: Dateline Standard + /// Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, + /// Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain + /// Standard Time, Mountain Standard Time (Mexico), Mountain Standard + /// Time, Central America Standard Time, Central Standard Time, Central + /// Standard Time (Mexico), Canada Central Standard Time, SA Pacific + /// Standard Time, Eastern Standard Time, US Eastern Standard Time, + /// Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard + /// Time, Central Brazilian Standard Time, SA Western Standard Time, + /// Pacific SA Standard Time, Newfoundland Standard Time, E. South + /// America Standard Time, Argentina Standard Time, SA Eastern Standard + /// Time, Greenland Standard Time, Montevideo Standard Time, Bahia + /// Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard + /// Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT + /// Standard Time, Greenwich Standard Time, W. Europe Standard Time, + /// Central Europe Standard Time, Romance Standard Time, Central + /// European Standard Time, W. Central Africa Standard Time, Namibia + /// Standard Time, Jordan Standard Time, GTB Standard Time, Middle East + /// Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe + /// Standard Time, South Africa Standard Time, FLE Standard Time, + /// Turkey Standard Time, Israel Standard Time, Kaliningrad Standard + /// Time, Libya Standard Time, Arabic Standard Time, Arab Standard + /// Time, Belarus Standard Time, Russian Standard Time, E. Africa + /// Standard Time, Iran Standard Time, Arabian Standard Time, + /// Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard + /// Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan + /// Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, + /// Pakistan Standard Time, India Standard Time, Sri Lanka Standard + /// Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh + /// Standard Time, N. Central Asia Standard Time, Myanmar Standard + /// Time, SE Asia Standard Time, North Asia Standard Time, China + /// Standard Time, North Asia East Standard Time, Singapore Standard + /// Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar + /// Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk + /// Standard Time, Cen. Australia Standard Time, AUS Central Standard + /// Time, E. Australia Standard Time, AUS Eastern Standard Time, West + /// Pacific Standard Time, Tasmania Standard Time, Magadan Standard + /// Time, Vladivostok Standard Time, Russia Time Zone 10, Central + /// Pacific Standard Time, Russia Time Zone 11, New Zealand Standard + /// Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga + /// Standard Time, Samoa Standard Time, Line Islands Standard Time /// [Newtonsoft.Json.JsonProperty(PropertyName = "timeZone")] public string TimeZone { get; set; } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/generate.cmd b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/generate.cmd index b608e371e8ff..20be0457d8e5 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/generate.cmd +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/generate.cmd @@ -7,7 +7,7 @@ @echo off set autoRestVersion=1.0.0-Nightly20161116 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/insights/compositeInsightsClient.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/1f823636981e779b6d4155aa18d042146e1270fb/insights/compositeInsightsClient.json" ) else ( set specFile="%1" ) @@ -18,7 +18,7 @@ if exist %generateFolder% rd /S /Q %generateFolder% call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Insights %autoRestVersion% %generateFolder% "-FT 1" if "%2" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-insights/compositeInsightsManagementClient.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/1f823636981e779b6d4155aa18d042146e1270fb/arm-insights/compositeInsightsManagementClient.json" ) else ( set specFile="%2" ) @@ -26,4 +26,5 @@ if "%2" == "" ( set generateFolder=%~dp0Generated\Management\Insights if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.Insights %autoRestVersion% %generateFolder% "-FT 1" \ No newline at end of file +call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.Insights %autoRestVersion% %generateFolder% "-FT 1" + \ No newline at end of file From b4b67aaa8e5eb28763cc3257930b28d0de82d8af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= Date: Tue, 29 Nov 2016 16:07:50 -0800 Subject: [PATCH 006/137] Making StorageAccountId optional in LogProfileResource --- .../Management/Insights/Models/LogProfileResource.cs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileResource.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileResource.cs index 5a888ec626fe..0ebeb90cb615 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileResource.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Generated/Management/Insights/Models/LogProfileResource.cs @@ -25,8 +25,6 @@ public LogProfileResource() { } /// Initializes a new instance of the LogProfileResource class. /// /// Resource location - /// the resource id of the storage - /// account to which you would like to send the Activity Log. /// List of regions for which Activity Log /// events should be stored or streamed. It is a comma separated list /// of valid ARM locations including the 'global' location. @@ -34,6 +32,8 @@ public LogProfileResource() { } /// Azure resource name /// Azure resource type /// Resource tags + /// the resource id of the storage + /// account to which you would like to send the Activity Log. /// The service bus rule ID of the /// service bus namespace in which you would like to have Event Hubs /// created for streaming the Activity Log. The rule ID is of the @@ -44,7 +44,7 @@ public LogProfileResource() { } /// are: 'Write', 'Delete', and/or 'Action.' /// the retention policy for the events /// in the log. - public LogProfileResource(string location, string storageAccountId, System.Collections.Generic.IList locations, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string serviceBusRuleId = default(string), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) + public LogProfileResource(string location, System.Collections.Generic.IList locations, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) : base(location, id, name, type, tags) { StorageAccountId = storageAccountId; @@ -101,10 +101,6 @@ public LogProfileResource() { } public override void Validate() { base.Validate(); - if (StorageAccountId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "StorageAccountId"); - } if (Locations == null) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Locations"); From ad0492f5dd340061cfe18c4ec6005e874f03a71a Mon Sep 17 00:00:00 2001 From: "REDMOND\\xizha" Date: Thu, 26 Jan 2017 10:33:07 -0800 Subject: [PATCH 007/137] checking the latest version of the SDK generated from the swagger which has been reviewed/approved and merged into azure-rest-api-specs repository --- .../Generated/DataSourcesOperations.cs | 10 +- .../DataSourcesOperationsExtensions.cs | 12 +- .../Generated/IDataSourcesOperations.cs | 8 +- .../Generated/ILinkedServicesOperations.cs | 10 +- .../Generated/ISavedSearchesOperations.cs | 2 +- .../Generated/IStorageInsightsOperations.cs | 5 +- .../Generated/IWorkspacesOperations.cs | 44 +++- .../Generated/LinkedServicesOperations.cs | 14 +- .../LinkedServicesOperationsExtensions.cs | 20 +- .../Generated/Models/DataSource.cs | 21 +- .../Generated/Models/LinkedService.cs | 13 +- .../Models/LinkedServiceListResult.cs | 36 --- .../Generated/Models/Page.cs | 2 +- .../Generated/Models/Page1.cs | 2 +- .../Generated/Models/ProxyResource.cs | 59 +++++ .../Generated/Models/Resource.cs | 21 +- .../Generated/Models/SavedSearch.cs | 4 +- .../SavedSearchCreateOrUpdateParameters.cs | 126 ---------- .../Generated/Models/SearchMetadata.cs | 18 +- .../Generated/Models/SearchMetadataSchema.cs | 10 +- .../Generated/Models/SearchParameters.cs | 17 +- .../Generated/Models/SearchResultsResponse.cs | 4 +- .../Generated/Models/SearchSchemaValue.cs | 8 +- .../Generated/Models/SearchSort.cs | 6 +- .../Generated/Models/SearchSortEnum.cs | 16 ++ .../Generated/Models/StorageAccount.cs | 19 +- .../Generated/Models/StorageInsight.cs | 25 +- .../Generated/Models/StorageInsightState.cs | 16 ++ .../Generated/Models/StorageInsightStatus.cs | 28 ++- .../Generated/Models/Workspace.cs | 9 +- .../WorkspaceListManagementGroupsResult.cs | 38 --- .../Generated/Models/WorkspaceListResult.cs | 35 --- .../Generated/SavedSearchesOperations.cs | 2 +- .../SavedSearchesOperationsExtensions.cs | 4 +- .../Generated/StorageInsightsOperations.cs | 5 +- .../StorageInsightsOperationsExtensions.cs | 10 +- .../Generated/WorkspacesOperations.cs | 218 ++++++++++-------- .../WorkspacesOperationsExtensions.cs | 74 +++++- .../Helpers/TestHelper.cs | 3 - .../DataSourceOperationsTests.Scenario.cs | 9 +- .../LinkedServiceOperationsTests.Scenario.cs | 7 +- .../SearchOperationsTests.Scenario.cs | 2 +- .../StorageInsightOperationsTests.Scenario.cs | 7 - .../WorkspaceOperationsTests.Scenario .cs | 6 +- 44 files changed, 517 insertions(+), 488 deletions(-) delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedServiceListResult.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ProxyResource.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchCreateOrUpdateParameters.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSortEnum.cs create mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightState.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListManagementGroupsResult.cs delete mode 100644 src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListResult.cs diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs index 283ec3dc5b25..144df1f97ff1 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperations.cs @@ -293,7 +293,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contains the datasource. + /// Name of the Log Analytics Workspace that contains the datasource. /// /// /// Name of the datasource. @@ -477,7 +477,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that contain the the datasource. + /// Name of the Log Analytics Workspace that contains the datasource. /// /// /// Name of the datasource @@ -697,7 +697,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) /// The workspace that contains the data sources. /// /// - /// Token for paging support. + /// Starting point of the collection of data source instances. /// /// /// Headers that will be added to request. @@ -893,7 +893,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1062,7 +1062,7 @@ internal DataSourcesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs index 8423aa00bcb3..8529e825c30a 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/DataSourcesOperationsExtensions.cs @@ -75,7 +75,7 @@ public static DataSource CreateOrUpdate(this IDataSourcesOperations operations, /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contains the datasource. + /// Name of the Log Analytics Workspace that contains the datasource. /// /// /// Name of the datasource. @@ -95,7 +95,7 @@ public static void Delete(this IDataSourcesOperations operations, string resourc /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contains the datasource. + /// Name of the Log Analytics Workspace that contains the datasource. /// /// /// Name of the datasource. @@ -118,7 +118,7 @@ public static void Delete(this IDataSourcesOperations operations, string resourc /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that contain the the datasource. + /// Name of the Log Analytics Workspace that contains the datasource. /// /// /// Name of the datasource @@ -138,7 +138,7 @@ public static DataSource Get(this IDataSourcesOperations operations, string reso /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that contain the the datasource. + /// Name of the Log Analytics Workspace that contains the datasource. /// /// /// Name of the datasource @@ -171,7 +171,7 @@ public static DataSource Get(this IDataSourcesOperations operations, string reso /// The workspace that contains the data sources. /// /// - /// Token for paging support. + /// Starting point of the collection of data source instances. /// public static Microsoft.Rest.Azure.IPage ListByWorkspace(this IDataSourcesOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery, string resourceGroupName, string workspaceName, string skiptoken = default(string)) { @@ -195,7 +195,7 @@ public static DataSource Get(this IDataSourcesOperations operations, string reso /// The workspace that contains the data sources. /// /// - /// Token for paging support. + /// Starting point of the collection of data source instances. /// /// /// The cancellation token. diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs index 3e27b1e785e4..36ea4c59e104 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IDataSourcesOperations.cs @@ -53,8 +53,7 @@ public partial interface IDataSourcesOperations /// insensitive. /// /// - /// Name of the Log Analytics Workspace that will contains the - /// datasource. + /// Name of the Log Analytics Workspace that contains the datasource. /// /// /// Name of the datasource. @@ -80,8 +79,7 @@ public partial interface IDataSourcesOperations /// insensitive. /// /// - /// Name of the Log Analytics Workspace that contain the the - /// datasource. + /// Name of the Log Analytics Workspace that contains the datasource. /// /// /// Name of the datasource @@ -117,7 +115,7 @@ public partial interface IDataSourcesOperations /// The workspace that contains the data sources. /// /// - /// Token for paging support. + /// Starting point of the collection of data source instances. /// /// /// The headers that will be added to request. diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs index 71260ccdf653..4053ca9f79f5 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ILinkedServicesOperations.cs @@ -24,7 +24,7 @@ public partial interface ILinkedServicesOperations /// linkedServices resource /// /// - /// The parameters required to create or update a linked service. + /// Name of the linkedServices resource /// /// /// The parameters required to create or update a linked service. @@ -53,7 +53,7 @@ public partial interface ILinkedServicesOperations /// insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the + /// Name of the Log Analytics Workspace that contains the /// linkedServices resource /// /// @@ -80,7 +80,7 @@ public partial interface ILinkedServicesOperations /// insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the + /// Name of the Log Analytics Workspace that contains the /// linkedServices resource /// /// @@ -110,7 +110,7 @@ public partial interface ILinkedServicesOperations /// insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linked + /// Name of the Log Analytics Workspace that contains the linked /// services. /// /// @@ -128,6 +128,6 @@ public partial interface ILinkedServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISavedSearchesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISavedSearchesOperations.cs index af50c15b1cf0..8dd6ced8ad30 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISavedSearchesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/ISavedSearchesOperations.cs @@ -69,7 +69,7 @@ public partial interface ISavedSearchesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, SavedSearchCreateOrUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, SavedSearch parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets the specified saved search for a given workspace. /// diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs index 5ed31d83dacb..4edbf7a8c93d 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IStorageInsightsOperations.cs @@ -53,7 +53,8 @@ public partial interface IStorageInsightsOperations /// insensitive. /// /// - /// The name of the workspace that contains the storage insight. + /// Log Analytics Workspace name that contains the + /// storageInsightsConfigs resource /// /// /// Name of the storageInsightsConfigs resource @@ -82,7 +83,7 @@ public partial interface IStorageInsightsOperations /// insensitive. /// /// - /// Log Analytics Workspace name that will contain the + /// Log Analytics Workspace name that contains the /// storageInsightsConfigs resource /// /// diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs index 257057714b7d..6b063acde6af 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/IWorkspacesOperations.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.Management.OperationalInsights public partial interface IWorkspacesOperations { /// - /// Disables an intelligence back for a given workspace. + /// Disables an intelligence pack for a given workspace. /// /// /// The name of the resource group to get. The name is case @@ -39,7 +39,7 @@ public partial interface IWorkspacesOperations /// System.Threading.Tasks.Task DisableIntelligencePackWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string intelligencePackName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// - /// Enables an intelligence back for a given workspace. + /// Enables an intelligence pack for a given workspace. /// /// /// The name of the resource group to get. The name is case @@ -168,7 +168,7 @@ public partial interface IWorkspacesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets workspaces in a resource group. /// @@ -191,7 +191,7 @@ public partial interface IWorkspacesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Gets the workspaces in a subscription. /// @@ -210,7 +210,7 @@ public partial interface IWorkspacesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Create or update a workspace. /// @@ -377,7 +377,7 @@ public partial interface IWorkspacesOperations /// /// /// The id of the search that will have results updated. You can get - /// the id from the response of the response of the GetResults call. + /// the id from the response of the GetResults call. /// /// /// The headers that will be added to request. @@ -423,5 +423,37 @@ public partial interface IWorkspacesOperations /// Thrown when a required parameter is null /// System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Workspace parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Submit a search for a given workspace. The response will contain an + /// id to track the search. User can use the id to poll the search + /// status and get the full search result later if the search takes + /// long time to finish. + /// + /// + /// The name of the resource group to get. The name is case + /// insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The parameters required to execute a search query. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> BeginGetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs index ceffbce92338..30b3e59bca49 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperations.cs @@ -48,7 +48,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// resource /// /// - /// The parameters required to create or update a linked service. + /// Name of the linkedServices resource /// /// /// The parameters required to create or update a linked service. @@ -294,7 +294,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linkedServices + /// Name of the Log Analytics Workspace that contains the linkedServices /// resource /// /// @@ -479,7 +479,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linkedServices + /// Name of the Log Analytics Workspace that contains the linkedServices /// resource /// /// @@ -693,7 +693,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linked services. + /// Name of the Log Analytics Workspace that contains the linked services. /// /// /// Headers that will be added to request. @@ -713,7 +713,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> ListByWorkspaceWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { @@ -858,7 +858,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -871,7 +871,7 @@ internal LinkedServicesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs index a2fe68410679..0a3b54275778 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/LinkedServicesOperationsExtensions.cs @@ -27,7 +27,7 @@ public static partial class LinkedServicesOperationsExtensions /// resource /// /// - /// The parameters required to create or update a linked service. + /// Name of the linkedServices resource /// /// /// The parameters required to create or update a linked service. @@ -51,7 +51,7 @@ public static LinkedService CreateOrUpdate(this ILinkedServicesOperations operat /// resource /// /// - /// The parameters required to create or update a linked service. + /// Name of the linkedServices resource /// /// /// The parameters required to create or update a linked service. @@ -77,7 +77,7 @@ public static LinkedService CreateOrUpdate(this ILinkedServicesOperations operat /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linkedServices + /// Name of the Log Analytics Workspace that contains the linkedServices /// resource /// /// @@ -98,7 +98,7 @@ public static void Delete(this ILinkedServicesOperations operations, string reso /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linkedServices + /// Name of the Log Analytics Workspace that contains the linkedServices /// resource /// /// @@ -122,7 +122,7 @@ public static void Delete(this ILinkedServicesOperations operations, string reso /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linkedServices + /// Name of the Log Analytics Workspace that contains the linkedServices /// resource /// /// @@ -143,7 +143,7 @@ public static LinkedService Get(this ILinkedServicesOperations operations, strin /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linkedServices + /// Name of the Log Analytics Workspace that contains the linkedServices /// resource /// /// @@ -170,9 +170,9 @@ public static LinkedService Get(this ILinkedServicesOperations operations, strin /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linked services. + /// Name of the Log Analytics Workspace that contains the linked services. /// - public static LinkedServiceListResult ListByWorkspace(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName) + public static System.Collections.Generic.IEnumerable ListByWorkspace(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILinkedServicesOperations)s).ListByWorkspaceAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -187,12 +187,12 @@ public static LinkedServiceListResult ListByWorkspace(this ILinkedServicesOperat /// The name of the resource group to get. The name is case insensitive. /// /// - /// Name of the Log Analytics Workspace that will contain the linked services. + /// Name of the Log Analytics Workspace that contains the linked services. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ListByWorkspaceAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByWorkspaceAsync(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.ListByWorkspaceWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs index b3f749f4a551..fca989a55b09 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/DataSource.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.Management.OperationalInsights.Models /// /// Datasources under OMS Workspace. /// - public partial class DataSource : Resource + public partial class DataSource : ProxyResource { /// /// Initializes a new instance of the DataSource class. @@ -19,6 +19,8 @@ public DataSource() { } /// /// Initializes a new instance of the DataSource class. /// + /// The data source properties in raw json + /// format, each kind of data source have it's own schema. /// Possible values include: 'AzureActivityLog', /// 'ChangeTrackingPath', 'ChangeTrackingDefaultPath', /// 'ChangeTrackingDefaultRegistry', 'ChangeTrackingCustomRegistry', @@ -26,16 +28,13 @@ public DataSource() { } /// 'LinuxPerformanceObject', 'LinuxPerformanceCollection', /// 'LinuxSyslog', 'LinuxSyslogCollection', 'WindowsEvent', /// 'WindowsPerformanceCounter' - /// Resource Id - /// Resource name - /// Resource type - /// Resource location + /// Resource ID. + /// Resource name. + /// Resource type. /// Resource tags - /// The data source properties in raw json - /// format, each kind of data source have it's own schema. /// The ETag of the data source. - public DataSource(string kind, string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), object properties = default(object), string eTag = default(string)) - : base(id, name, type, location, tags) + public DataSource(object properties, string kind, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string eTag = default(string)) + : base(id, name, type, tags) { Properties = properties; ETag = eTag; @@ -75,6 +74,10 @@ public DataSource() { } /// public virtual void Validate() { + if (Properties == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Properties"); + } if (Kind == null) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Kind"); diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs index 58fae4aa4f7c..03a2a4cf8b2c 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedService.cs @@ -10,7 +10,7 @@ namespace Microsoft.Azure.Management.OperationalInsights.Models /// The top level Linked service resource container. /// [Microsoft.Rest.Serialization.JsonTransformation] - public partial class LinkedService : Resource + public partial class LinkedService : ProxyResource { /// /// Initializes a new instance of the LinkedService class. @@ -22,13 +22,12 @@ public LinkedService() { } /// /// The resource id of the resource that will /// be linked to the workspace. - /// Resource Id - /// Resource name - /// Resource type - /// Resource location + /// Resource ID. + /// Resource name. + /// Resource type. /// Resource tags - public LinkedService(string resourceId, string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) - : base(id, name, type, location, tags) + public LinkedService(string resourceId, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + : base(id, name, type, tags) { ResourceId = resourceId; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedServiceListResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedServiceListResult.cs deleted file mode 100644 index cf3f6fc2be15..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/LinkedServiceListResult.cs +++ /dev/null @@ -1,36 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.OperationalInsights.Models -{ - using System.Linq; - - /// - /// The list linked service operation response. - /// - public partial class LinkedServiceListResult - { - /// - /// Initializes a new instance of the LinkedServiceListResult class. - /// - public LinkedServiceListResult() { } - - /// - /// Initializes a new instance of the LinkedServiceListResult class. - /// - /// Gets or sets a list of linked service - /// instances. - public LinkedServiceListResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) - { - Value = value; - } - - /// - /// Gets or sets a list of linked service instances. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "value")] - public System.Collections.Generic.IList Value { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs index c3a8c9ed2ec6..fa78486561a6 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page.cs @@ -15,7 +15,7 @@ public class Page : Microsoft.Rest.Azure.IPage /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("nextLink")] + [Newtonsoft.Json.JsonProperty("")] public System.String NextPageLink { get; private set; } [Newtonsoft.Json.JsonProperty("value")] diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs index 9ec3f72c55dd..f73371e2004f 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Page1.cs @@ -15,7 +15,7 @@ public class Page1 : Microsoft.Rest.Azure.IPage /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("")] + [Newtonsoft.Json.JsonProperty("nextLink")] public System.String NextPageLink { get; private set; } [Newtonsoft.Json.JsonProperty("value")] diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ProxyResource.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ProxyResource.cs new file mode 100644 index 000000000000..dba759bb0141 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/ProxyResource.cs @@ -0,0 +1,59 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + using System.Linq; + + /// + /// Common properties of proxy resource. + /// + public partial class ProxyResource + { + /// + /// Initializes a new instance of the ProxyResource class. + /// + public ProxyResource() { } + + /// + /// Initializes a new instance of the ProxyResource class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags + public ProxyResource(string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + { + Id = id; + Name = name; + Type = type; + Tags = tags; + } + + /// + /// Gets resource ID. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets resource tags + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] + public System.Collections.Generic.IDictionary Tags { get; set; } + + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs index 57c0555555a1..b95265397972 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Resource.cs @@ -19,12 +19,12 @@ public Resource() { } /// /// Initializes a new instance of the Resource class. /// + /// Resource location /// Resource Id /// Resource name /// Resource type - /// Resource location /// Resource tags - public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) { Id = id; Name = name; @@ -40,10 +40,10 @@ public Resource() { } public string Id { get; private set; } /// - /// Gets or sets resource name + /// Gets resource name /// [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; set; } + public string Name { get; private set; } /// /// Gets resource type @@ -63,5 +63,18 @@ public Resource() { } [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] public System.Collections.Generic.IDictionary Tags { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + } + } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearch.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearch.cs index e50a7994147b..6763fb062e3d 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearch.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearch.cs @@ -44,10 +44,10 @@ public SavedSearch() { } } /// - /// Gets or sets the id of the saved search. + /// Gets the id of the saved search. /// [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; set; } + public string Id { get; private set; } /// /// Gets or sets the etag of the saved search. diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchCreateOrUpdateParameters.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchCreateOrUpdateParameters.cs deleted file mode 100644 index 690fc127d500..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SavedSearchCreateOrUpdateParameters.cs +++ /dev/null @@ -1,126 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.OperationalInsights.Models -{ - using System.Linq; - - /// - /// Parameters for creating/updating a saved search - /// - [Microsoft.Rest.Serialization.JsonTransformation] - public partial class SavedSearchCreateOrUpdateParameters - { - /// - /// Initializes a new instance of the - /// SavedSearchCreateOrUpdateParameters class. - /// - public SavedSearchCreateOrUpdateParameters() { } - - /// - /// Initializes a new instance of the - /// SavedSearchCreateOrUpdateParameters class. - /// - /// The category of the saved search. This helps - /// the user to find a saved search faster. - /// Saved search display name. - /// The query expression for the saved search. - /// Please see - /// https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-search-reference - /// for reference. - /// The version number of the query lanuage. Only - /// verion 1 is allowed here. - /// The etag of the saved search. - /// The tags attached to the saved search. - public SavedSearchCreateOrUpdateParameters(string category, string displayName, string query, long version, string etag = default(string), System.Collections.Generic.IList tags = default(System.Collections.Generic.IList)) - { - Etag = etag; - Category = category; - DisplayName = displayName; - Query = query; - Version = version; - Tags = tags; - } - - /// - /// Gets or sets the etag of the saved search. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "etag")] - public string Etag { get; set; } - - /// - /// Gets or sets the category of the saved search. This helps the user - /// to find a saved search faster. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Category")] - public string Category { get; set; } - - /// - /// Gets or sets saved search display name. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.DisplayName")] - public string DisplayName { get; set; } - - /// - /// Gets or sets the query expression for the saved search. Please see - /// https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-search-reference - /// for reference. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Query")] - public string Query { get; set; } - - /// - /// Gets or sets the version number of the query lanuage. Only verion 1 - /// is allowed here. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Version")] - public long Version { get; set; } - - /// - /// Gets or sets the tags attached to the saved search. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.Tags")] - public System.Collections.Generic.IList Tags { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Category == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Category"); - } - if (DisplayName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "DisplayName"); - } - if (Query == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Query"); - } - if (this.Version > 1) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMaximum, "Version", 1); - } - if (this.Version < 1) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMinimum, "Version", 1); - } - if (this.Tags != null) - { - foreach (var element in this.Tags) - { - if (element != null) - { - element.Validate(); - } - } - } - } - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs index ffeb01bdd279..cc2e602e3d21 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadata.cs @@ -21,7 +21,7 @@ public SearchMetadata() { } /// /// The request id of the search. /// The search result type. - /// The total search results. + /// The total number of search results. /// The number of top search results. /// The id of the search results request. /// The core summaries. @@ -29,14 +29,16 @@ public SearchMetadata() { } /// The start time for the search. /// The time of last update. /// The ETag of the search results. - /// Gets or sets sort. + /// How the results are sorted. /// The request time. /// The aggregated value /// field. /// The aggregated grouping /// fields. - /// The sum. - /// The max. + /// The sum of all aggregates returned in the result + /// set. + /// The max of all aggregates returned in the result + /// set. /// The schema. public SearchMetadata(string searchId = default(string), string resultType = default(string), long? total = default(long?), long? top = default(long?), string id = default(string), System.Collections.Generic.IList coreSummaries = default(System.Collections.Generic.IList), string status = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? lastUpdated = default(System.DateTime?), string eTag = default(string), System.Collections.Generic.IList sort = default(System.Collections.Generic.IList), long? requestTime = default(long?), string aggregatedValueField = default(string), string aggregatedGroupingFields = default(string), long? sum = default(long?), long? max = default(long?), SearchMetadataSchema schema = default(SearchMetadataSchema)) { @@ -72,7 +74,7 @@ public SearchMetadata() { } public string ResultType { get; set; } /// - /// Gets or sets the total search results. + /// Gets or sets the total number of search results. /// [Newtonsoft.Json.JsonProperty(PropertyName = "total")] public long? Total { get; set; } @@ -120,7 +122,7 @@ public SearchMetadata() { } public string ETag { get; set; } /// - /// Gets or sets sort. + /// Gets or sets how the results are sorted. /// [Newtonsoft.Json.JsonProperty(PropertyName = "sort")] public System.Collections.Generic.IList Sort { get; set; } @@ -144,13 +146,13 @@ public SearchMetadata() { } public string AggregatedGroupingFields { get; set; } /// - /// Gets or sets the sum. + /// Gets or sets the sum of all aggregates returned in the result set. /// [Newtonsoft.Json.JsonProperty(PropertyName = "sum")] public long? Sum { get; set; } /// - /// Gets or sets the max. + /// Gets or sets the max of all aggregates returned in the result set. /// [Newtonsoft.Json.JsonProperty(PropertyName = "max")] public long? Max { get; set; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadataSchema.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadataSchema.cs index 39cbbc70d1e3..8ce9e2ac6953 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadataSchema.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchMetadataSchema.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.OperationalInsights.Models using System.Linq; /// - /// Metadata items for saved search items. + /// Schema metadata for search. /// public partial class SearchMetadataSchema { @@ -19,8 +19,8 @@ public SearchMetadataSchema() { } /// /// Initializes a new instance of the SearchMetadataSchema class. /// - /// The name. - /// The version. + /// The name of the metadata schema. + /// The version of the metadata schema. public SearchMetadataSchema(string name = default(string), int? version = default(int?)) { Name = name; @@ -28,13 +28,13 @@ public SearchMetadataSchema() { } } /// - /// Gets or sets the name. + /// Gets or sets the name of the metadata schema. /// [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Gets or sets the version. + /// Gets or sets the version of the metadata schema. /// [Newtonsoft.Json.JsonProperty(PropertyName = "version")] public int? Version { get; set; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchParameters.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchParameters.cs index c87e59ebc566..2c5267e519cc 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchParameters.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchParameters.cs @@ -19,15 +19,15 @@ public SearchParameters() { } /// /// Initializes a new instance of the SearchParameters class. /// + /// The query to search. /// The number to get from the top. /// The highlight that looks for all occurences /// of a string. - /// The query to search. /// The start date filter, so the only query /// results returned are after this date. /// The end date filter, so the only query results /// returned are before this date. - public SearchParameters(long? top = default(long?), SearchHighlight highlight = default(SearchHighlight), string query = default(string), System.DateTime? start = default(System.DateTime?), System.DateTime? end = default(System.DateTime?)) + public SearchParameters(string query, long? top = default(long?), SearchHighlight highlight = default(SearchHighlight), System.DateTime? start = default(System.DateTime?), System.DateTime? end = default(System.DateTime?)) { Top = top; Highlight = highlight; @@ -69,5 +69,18 @@ public SearchParameters() { } [Newtonsoft.Json.JsonProperty(PropertyName = "end")] public System.DateTime? End { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Query == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Query"); + } + } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchResultsResponse.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchResultsResponse.cs index c18ae53436c0..0c670bacd9b1 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchResultsResponse.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchResultsResponse.cs @@ -33,10 +33,10 @@ public SearchResultsResponse() { } } /// - /// Gets or sets the id of the search, which includes the full url. + /// Gets the id of the search, which includes the full url. /// [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; set; } + public string Id { get; private set; } /// /// Gets or sets the metadata from search results. diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSchemaValue.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSchemaValue.cs index e9fb4684eea1..1ebb04ce9df4 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSchemaValue.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSchemaValue.cs @@ -25,8 +25,8 @@ public SearchSchemaValue() { } /// field is stored. /// The boolean that indicates whether or not the /// field is a facet. - /// The name. - /// The display name. + /// The name of the schema. + /// The display name of the schema. /// The type. /// The array of workflows containing the /// field. @@ -42,13 +42,13 @@ public SearchSchemaValue() { } } /// - /// Gets or sets the name. + /// Gets or sets the name of the schema. /// [Newtonsoft.Json.JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Gets or sets the display name. + /// Gets or sets the display name of the schema. /// [Newtonsoft.Json.JsonProperty(PropertyName = "displayName")] public string DisplayName { get; set; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs index 1e67518e3239..d34c10567f1e 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSort.cs @@ -21,7 +21,8 @@ public SearchSort() { } /// /// The name of the field the search query is sorted /// on. - /// The sort order of the search. + /// The sort order of the search. Possible values + /// include: 'asc', 'desc' public SearchSort(string name = default(string), string order = default(string)) { Name = name; @@ -35,7 +36,8 @@ public SearchSort() { } public string Name { get; set; } /// - /// Gets or sets the sort order of the search. + /// Gets or sets the sort order of the search. Possible values include: + /// 'asc', 'desc' /// [Newtonsoft.Json.JsonProperty(PropertyName = "order")] public string Order { get; set; } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSortEnum.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSortEnum.cs new file mode 100644 index 000000000000..03b73d4fd48e --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/SearchSortEnum.cs @@ -0,0 +1,16 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + + /// + /// Defines values for SearchSortEnum. + /// + public static class SearchSortEnum + { + public const string Asc = "asc"; + public const string Desc = "desc"; + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs index cf94cddf69a1..2e1e53734b10 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageAccount.cs @@ -22,7 +22,7 @@ public StorageAccount() { } /// The Azure Resource Manager ID of the storage /// account resource. /// The storage account key. - public StorageAccount(string id = default(string), string key = default(string)) + public StorageAccount(string id, string key) { Id = id; Key = key; @@ -41,5 +41,22 @@ public StorageAccount() { } [Newtonsoft.Json.JsonProperty(PropertyName = "key")] public string Key { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Id == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Id"); + } + if (Key == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Key"); + } + } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs index f7aaf1b5114f..fefbc416bfd2 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsight.cs @@ -10,7 +10,7 @@ namespace Microsoft.Azure.Management.OperationalInsights.Models /// The top level storage insight resource container. /// [Microsoft.Rest.Serialization.JsonTransformation] - public partial class StorageInsight : Resource + public partial class StorageInsight : ProxyResource { /// /// Initializes a new instance of the StorageInsight class. @@ -22,10 +22,9 @@ public StorageInsight() { } /// /// The storage account connection /// details - /// Resource Id - /// Resource name - /// Resource type - /// Resource location + /// Resource ID. + /// Resource name. + /// Resource type. /// Resource tags /// The names of the blob containers that the /// workspace should read @@ -33,8 +32,8 @@ public StorageInsight() { } /// workspace should read /// The status of the storage insight /// The ETag of the storage insight. - public StorageInsight(StorageAccount storageAccount, string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList containers = default(System.Collections.Generic.IList), System.Collections.Generic.IList tables = default(System.Collections.Generic.IList), StorageInsightStatus status = default(StorageInsightStatus), string eTag = default(string)) - : base(id, name, type, location, tags) + public StorageInsight(StorageAccount storageAccount, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList containers = default(System.Collections.Generic.IList), System.Collections.Generic.IList tables = default(System.Collections.Generic.IList), StorageInsightStatus status = default(StorageInsightStatus), string eTag = default(string)) + : base(id, name, type, tags) { Containers = containers; Tables = tables; @@ -64,10 +63,10 @@ public StorageInsight() { } public StorageAccount StorageAccount { get; set; } /// - /// Gets or sets the status of the storage insight + /// Gets the status of the storage insight /// [Newtonsoft.Json.JsonProperty(PropertyName = "properties.status")] - public StorageInsightStatus Status { get; set; } + public StorageInsightStatus Status { get; private set; } /// /// Gets or sets the ETag of the storage insight. @@ -87,6 +86,14 @@ public virtual void Validate() { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "StorageAccount"); } + if (this.StorageAccount != null) + { + this.StorageAccount.Validate(); + } + if (this.Status != null) + { + this.Status.Validate(); + } } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightState.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightState.cs new file mode 100644 index 000000000000..bb268fcc54f5 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightState.cs @@ -0,0 +1,16 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.OperationalInsights.Models +{ + + /// + /// Defines values for StorageInsightState. + /// + public static class StorageInsightState + { + public const string OK = "OK"; + public const string ERROR = "ERROR"; + } +} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs index dd0d81b29b6b..49bd02794860 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/StorageInsightStatus.cs @@ -20,18 +20,40 @@ public StorageInsightStatus() { } /// Initializes a new instance of the StorageInsightStatus class. /// /// The state of the storage insight connection to - /// the workspace - public StorageInsightStatus(string state = default(string)) + /// the workspace. Possible values include: 'OK', 'ERROR' + /// Description of the state of the storage + /// insight. + public StorageInsightStatus(string state, string description = default(string)) { State = state; + Description = description; } /// /// Gets or sets the state of the storage insight connection to the - /// workspace + /// workspace. Possible values include: 'OK', 'ERROR' /// [Newtonsoft.Json.JsonProperty(PropertyName = "state")] public string State { get; set; } + /// + /// Gets or sets description of the state of the storage insight. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (State == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "State"); + } + } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs index f9b0441ec1b1..12849af6be0d 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/Workspace.cs @@ -20,10 +20,10 @@ public Workspace() { } /// /// Initializes a new instance of the Workspace class. /// + /// Resource location /// Resource Id /// Resource name /// Resource type - /// Resource location /// Resource tags /// The provisioning state of the /// workspace. Possible values include: 'Creating', 'Succeeded', @@ -44,8 +44,8 @@ public Workspace() { } /// -1 means Unlimited retention for the Unlimited Sku. 730 days is the /// maximum allowed for all other Skus. /// The ETag of the workspace. - public Workspace(string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string provisioningState = default(string), string source = default(string), string customerId = default(string), string portalUrl = default(string), Sku sku = default(Sku), int? retentionInDays = default(int?), string eTag = default(string)) - : base(id, name, type, location, tags) + public Workspace(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string provisioningState = default(string), string source = default(string), string customerId = default(string), string portalUrl = default(string), Sku sku = default(Sku), int? retentionInDays = default(int?), string eTag = default(string)) + : base(location, id, name, type, tags) { ProvisioningState = provisioningState; Source = source; @@ -116,8 +116,9 @@ public Workspace() { } /// /// Thrown if validation fails /// - public virtual void Validate() + public override void Validate() { + base.Validate(); if (this.Sku != null) { this.Sku.Validate(); diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListManagementGroupsResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListManagementGroupsResult.cs deleted file mode 100644 index a442b2f03b4c..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListManagementGroupsResult.cs +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.OperationalInsights.Models -{ - using System.Linq; - - /// - /// The list workspace managmement groups operation response. - /// - public partial class WorkspaceListManagementGroupsResult - { - /// - /// Initializes a new instance of the - /// WorkspaceListManagementGroupsResult class. - /// - public WorkspaceListManagementGroupsResult() { } - - /// - /// Initializes a new instance of the - /// WorkspaceListManagementGroupsResult class. - /// - /// Gets or sets a list of management groups - /// attached to the workspace. - public WorkspaceListManagementGroupsResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) - { - Value = value; - } - - /// - /// Gets or sets a list of management groups attached to the workspace. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "value")] - public System.Collections.Generic.IList Value { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListResult.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListResult.cs deleted file mode 100644 index 69aca73c9a36..000000000000 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/Models/WorkspaceListResult.cs +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.OperationalInsights.Models -{ - using System.Linq; - - /// - /// The list workspaces operation response. - /// - public partial class WorkspaceListResult - { - /// - /// Initializes a new instance of the WorkspaceListResult class. - /// - public WorkspaceListResult() { } - - /// - /// Initializes a new instance of the WorkspaceListResult class. - /// - /// A list of workspaces. - public WorkspaceListResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) - { - Value = value; - } - - /// - /// Gets or sets a list of workspaces. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "value")] - public System.Collections.Generic.IList Value { get; set; } - - } -} diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperations.cs index e627b3d6d9e2..6d846f39383c 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperations.cs @@ -254,7 +254,7 @@ internal SavedSearchesOperations(OperationalInsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, SavedSearchCreateOrUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string savedSearchName, SavedSearch parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperationsExtensions.cs index 3534d3748185..56171299ac9d 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/SavedSearchesOperationsExtensions.cs @@ -74,7 +74,7 @@ public static void Delete(this ISavedSearchesOperations operations, string resou /// /// The parameters required to save a search. /// - public static SavedSearch CreateOrUpdate(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, SavedSearchCreateOrUpdateParameters parameters) + public static SavedSearch CreateOrUpdate(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, SavedSearch parameters) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((ISavedSearchesOperations)s).CreateOrUpdateAsync(resourceGroupName, workspaceName, savedSearchName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -100,7 +100,7 @@ public static SavedSearch CreateOrUpdate(this ISavedSearchesOperations operation /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, SavedSearchCreateOrUpdateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ISavedSearchesOperations operations, string resourceGroupName, string workspaceName, string savedSearchName, SavedSearch parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workspaceName, savedSearchName, parameters, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs index 955b55ad63f6..1e8980b9eac7 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperations.cs @@ -294,7 +294,8 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the storage insight. + /// Log Analytics Workspace name that contains the storageInsightsConfigs + /// resource /// /// /// Name of the storageInsightsConfigs resource @@ -507,7 +508,7 @@ internal StorageInsightsOperations(OperationalInsightsManagementClient client) /// The name of the resource group to get. The name is case insensitive. /// /// - /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// Log Analytics Workspace name that contains the storageInsightsConfigs /// resource /// /// diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs index b4f33a704ad3..e087d10a120d 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/StorageInsightsOperationsExtensions.cs @@ -77,7 +77,8 @@ public static StorageInsight CreateOrUpdate(this IStorageInsightsOperations oper /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the storage insight. + /// Log Analytics Workspace name that contains the storageInsightsConfigs + /// resource /// /// /// Name of the storageInsightsConfigs resource @@ -97,7 +98,8 @@ public static StorageInsight Get(this IStorageInsightsOperations operations, str /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace that contains the storage insight. + /// Log Analytics Workspace name that contains the storageInsightsConfigs + /// resource /// /// /// Name of the storageInsightsConfigs resource @@ -123,7 +125,7 @@ public static StorageInsight Get(this IStorageInsightsOperations operations, str /// The name of the resource group to get. The name is case insensitive. /// /// - /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// Log Analytics Workspace name that contains the storageInsightsConfigs /// resource /// /// @@ -144,7 +146,7 @@ public static void Delete(this IStorageInsightsOperations operations, string res /// The name of the resource group to get. The name is case insensitive. /// /// - /// Log Analytics Workspace name that will contain the storageInsightsConfigs + /// Log Analytics Workspace name that contains the storageInsightsConfigs /// resource /// /// diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs index 3125bbb5aad9..3921154f0327 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperations.cs @@ -38,7 +38,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) public OperationalInsightsManagementClient Client { get; private set; } /// - /// Disables an intelligence back for a given workspace. + /// Disables an intelligence pack for a given workspace. /// /// /// The name of the resource group to get. The name is case insensitive. @@ -222,7 +222,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) } /// - /// Enables an intelligence back for a given workspace. + /// Enables an intelligence pack for a given workspace. /// /// /// The name of the resource group to get. The name is case insensitive. @@ -999,7 +999,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1045,7 +1045,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> ListManagementGroupsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { @@ -1190,7 +1190,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1203,7 +1203,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1246,7 +1246,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { @@ -1385,7 +1385,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1398,7 +1398,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1438,7 +1438,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (this.Client.SubscriptionId == null) { @@ -1556,7 +1556,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1569,7 +1569,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -2357,6 +2357,33 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// The parameters required to execute a search query. /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task> GetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginGetSearchResultsWithHttpMessagesAsync( + resourceGroupName, workspaceName, parameters, customHeaders, cancellationToken); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); + } + + /// + /// Gets updated search results for a given search query. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The id of the search that will have results updated. You can get the id + /// from the response of the GetResults call. + /// + /// /// Headers that will be added to request. /// /// @@ -2374,7 +2401,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> UpdateSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string id, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { @@ -2399,9 +2426,9 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); } - if (parameters == null) + if (id == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "id"); } if (this.Client.SubscriptionId == null) { @@ -2417,16 +2444,17 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("id", id); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetSearchResults", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "UpdateSearchResults", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search/{id}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); + _url = _url.Replace("{id}", System.Uri.EscapeDataString(id)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) @@ -2469,12 +2497,6 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (this.Client.Credentials != null) { @@ -2495,7 +2517,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2563,17 +2585,16 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) } /// - /// Gets updated search results for a given search query. + /// Create or update a workspace. /// /// - /// The name of the resource group to get. The name is case insensitive. + /// The resource group name of the workspace. /// /// - /// Log Analytics workspace name + /// The name of the workspace. /// - /// - /// The id of the search that will have results updated. You can get the id - /// from the response of the response of the GetResults call. + /// + /// The parameters required to create or update a workspace. /// /// /// Headers that will be added to request. @@ -2593,40 +2614,44 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> UpdateSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, string id, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Workspace parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); } - if (resourceGroupName != null) + if (workspaceName == null) { - if (resourceGroupName.Length > 90) + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } + if (workspaceName != null) + { + if (workspaceName.Length > 63) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "workspaceName", 63); } - if (resourceGroupName.Length < 1) + if (workspaceName.Length < 4) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "workspaceName", 4); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (!System.Text.RegularExpressions.Regex.IsMatch(workspaceName, "^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$")) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "workspaceName", "^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$"); } } - if (workspaceName == null) + if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); } - if (id == null) + if (parameters != null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "id"); + parameters.Validate(); } if (this.Client.SubscriptionId == null) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2015-03-20"; + string apiVersion = "2015-11-01-preview"; // Tracing bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2636,17 +2661,16 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workspaceName", workspaceName); - tracingParameters.Add("id", id); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "UpdateSearchResults", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search/{id}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); - _url = _url.Replace("{id}", System.Uri.EscapeDataString(id)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) @@ -2660,7 +2684,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Create HTTP transport objects System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) @@ -2689,6 +2713,12 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -2709,7 +2739,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2744,7 +2774,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2757,7 +2787,25 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -2777,16 +2825,18 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) } /// - /// Create or update a workspace. + /// Submit a search for a given workspace. The response will contain an id to + /// track the search. User can use the id to poll the search status and get the + /// full search result later if the search takes long time to finish. /// /// - /// The resource group name of the workspace. + /// The name of the resource group to get. The name is case insensitive. /// /// - /// The name of the workspace. + /// Log Analytics workspace name /// /// - /// The parameters required to create or update a workspace. + /// The parameters required to execute a search query. /// /// /// Headers that will be added to request. @@ -2806,31 +2856,31 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workspaceName, Workspace parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> BeginGetSearchResultsWithHttpMessagesAsync(string resourceGroupName, string workspaceName, SearchParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { if (resourceGroupName == null) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); } - if (workspaceName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); - } - if (workspaceName != null) + if (resourceGroupName != null) { - if (workspaceName.Length > 63) + if (resourceGroupName.Length > 90) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "workspaceName", 63); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxLength, "resourceGroupName", 90); } - if (workspaceName.Length < 4) + if (resourceGroupName.Length < 1) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "workspaceName", 4); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MinLength, "resourceGroupName", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(workspaceName, "^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$")) + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "workspaceName", "^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$"); + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); } } + if (workspaceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "workspaceName"); + } if (parameters == null) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); @@ -2843,7 +2893,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2015-11-01-preview"; + string apiVersion = "2015-03-20"; // Tracing bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2856,11 +2906,11 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginGetSearchResults", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workspaceName}", System.Uri.EscapeDataString(workspaceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); @@ -2876,7 +2926,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) // Create HTTP transport objects System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) @@ -2931,7 +2981,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2966,7 +3016,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2979,25 +3029,7 @@ internal WorkspacesOperations(OperationalInsightsManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs index 6f51ea135448..112e74e2f104 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Generated/WorkspacesOperationsExtensions.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.OperationalInsights public static partial class WorkspacesOperationsExtensions { /// - /// Disables an intelligence back for a given workspace. + /// Disables an intelligence pack for a given workspace. /// /// /// The operations group for this extension method. @@ -34,7 +34,7 @@ public static void DisableIntelligencePack(this IWorkspacesOperations operations } /// - /// Disables an intelligence back for a given workspace. + /// Disables an intelligence pack for a given workspace. /// /// /// The operations group for this extension method. @@ -57,7 +57,7 @@ public static void DisableIntelligencePack(this IWorkspacesOperations operations } /// - /// Enables an intelligence back for a given workspace. + /// Enables an intelligence pack for a given workspace. /// /// /// The operations group for this extension method. @@ -77,7 +77,7 @@ public static void EnableIntelligencePack(this IWorkspacesOperations operations, } /// - /// Enables an intelligence back for a given workspace. + /// Enables an intelligence pack for a given workspace. /// /// /// The operations group for this extension method. @@ -233,7 +233,7 @@ public static System.Collections.Generic.IEnumerable ListUsages(thi /// /// The name of the workspace. /// - public static WorkspaceListManagementGroupsResult ListManagementGroups(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) + public static System.Collections.Generic.IEnumerable ListManagementGroups(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListManagementGroupsAsync(resourceGroupName, workspaceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -253,7 +253,7 @@ public static WorkspaceListManagementGroupsResult ListManagementGroups(this IWor /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ListManagementGroupsAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListManagementGroupsAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.ListManagementGroupsWithHttpMessagesAsync(resourceGroupName, workspaceName, null, cancellationToken).ConfigureAwait(false)) { @@ -270,7 +270,7 @@ public static WorkspaceListManagementGroupsResult ListManagementGroups(this IWor /// /// The name of the resource group to get. The name is case insensitive. /// - public static WorkspaceListResult ListByResourceGroup(this IWorkspacesOperations operations, string resourceGroupName) + public static System.Collections.Generic.IEnumerable ListByResourceGroup(this IWorkspacesOperations operations, string resourceGroupName) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListByResourceGroupAsync(resourceGroupName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -287,7 +287,7 @@ public static WorkspaceListResult ListByResourceGroup(this IWorkspacesOperations /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ListByResourceGroupAsync(this IWorkspacesOperations operations, string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IWorkspacesOperations operations, string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { @@ -301,7 +301,7 @@ public static WorkspaceListResult ListByResourceGroup(this IWorkspacesOperations /// /// The operations group for this extension method. /// - public static WorkspaceListResult List(this IWorkspacesOperations operations) + public static System.Collections.Generic.IEnumerable List(this IWorkspacesOperations operations) { return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -315,7 +315,7 @@ public static WorkspaceListResult List(this IWorkspacesOperations operations) /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ListAsync(this IWorkspacesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IWorkspacesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -582,7 +582,7 @@ public static SearchResultsResponse GetSearchResults(this IWorkspacesOperations /// /// /// The id of the search that will have results updated. You can get the id - /// from the response of the response of the GetResults call. + /// from the response of the GetResults call. /// public static SearchResultsResponse UpdateSearchResults(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, string id) { @@ -603,7 +603,7 @@ public static SearchResultsResponse UpdateSearchResults(this IWorkspacesOperatio /// /// /// The id of the search that will have results updated. You can get the id - /// from the response of the response of the GetResults call. + /// from the response of the GetResults call. /// /// /// The cancellation token. @@ -662,5 +662,55 @@ public static Workspace BeginCreateOrUpdate(this IWorkspacesOperations operation } } + /// + /// Submit a search for a given workspace. The response will contain an id to + /// track the search. User can use the id to poll the search status and get the + /// full search result later if the search takes long time to finish. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The parameters required to execute a search query. + /// + public static SearchResultsResponse BeginGetSearchResults(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, SearchParameters parameters) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWorkspacesOperations)s).BeginGetSearchResultsAsync(resourceGroupName, workspaceName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Submit a search for a given workspace. The response will contain an id to + /// track the search. User can use the id to poll the search status and get the + /// full search result later if the search takes long time to finish. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to get. The name is case insensitive. + /// + /// + /// Log Analytics workspace name + /// + /// + /// The parameters required to execute a search query. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginGetSearchResultsAsync(this IWorkspacesOperations operations, string resourceGroupName, string workspaceName, SearchParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.BeginGetSearchResultsWithHttpMessagesAsync(resourceGroupName, workspaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs index 883ab640a9e5..8ffffed867f9 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/Helpers/TestHelper.cs @@ -94,7 +94,6 @@ internal static void ValidateWorkspace(Workspace expected, Workspace actual) { Assert.NotNull(actual); Assert.NotNull(actual.Id); - Assert.Equal(expected.Name, actual.Name); Assert.Equal(expected.Location, actual.Location); Assert.Equal(WorkspaceResourceType, actual.Type); if (expected.RetentionInDays.HasValue) @@ -134,7 +133,6 @@ internal static void ValidateDatasource(DataSource expected, DataSource actual) { Assert.NotNull(actual); Assert.NotNull(actual.Id); - Assert.Equal(expected.Name, actual.Name); Assert.Equal(expected.Kind, actual.Kind); Assert.Equal(DataSourceResourceType, actual.Type); @@ -164,7 +162,6 @@ internal static void ValidateStorageInsight(StorageInsight expected, StorageInsi { Assert.NotNull(actual); Assert.NotNull(actual.Id); - Assert.Equal(expected.Name, actual.Name); Assert.Equal(StorageInsightResourceType, actual.Type); if (expected.Tags != null) { diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs index b46171e9ad63..c7264556ccc0 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/DataSourceOperationsTests.Scenario.cs @@ -43,7 +43,6 @@ public void CanCreateUpdateDeleteDataSource() var workspace = new Workspace() { - Name = workspaceName, Location = resourceGroup.Location, Sku = new Sku(SkuNameEnum.Standard) }; @@ -59,7 +58,6 @@ public void CanCreateUpdateDeleteDataSource() string dataSourceName = TestUtilities.GenerateName("AzTestDS"); var createParameters = new DataSource { - Name = dataSourceName, Kind = "AzureAuditLog", Properties = JToken.Parse("{\"LinkedResourceId\":\"/subscriptions/0b88dfdb-55b3-4fb0-b474-5b6dcbe6b2ef/providers/microsoft.insights/eventtypes/management\"}") }; @@ -73,7 +71,7 @@ public void CanCreateUpdateDeleteDataSource() // Create a second data source for list testing var dataSourceNameTwo = TestUtilities.GenerateName("AzTestDS"); - createParameters.Name = dataSourceNameTwo; + //createParameters.Name = dataSourceNameTwo; createParameters.Properties = JToken.Parse("{'LinkedResourceId':'/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/microsoft.insights/eventtypes/management'}"); createResponse = client.DataSources.CreateOrUpdate(resourceGroupName, workspaceName, dataSourceNameTwo, createParameters); TestHelper.ValidateDatasource(createParameters, createResponse); @@ -87,7 +85,7 @@ public void CanCreateUpdateDeleteDataSource() // Perform an update on one of the data sources createResponse.Properties = JToken.Parse("{'LinkedResourceId':'/subscriptions/1b51d7a0-d97f-456f-914e-18cdcbedf1ce/providers/microsoft.insights/eventtypes/management'}"); - createResponse.Name = dataSourceNameTwo; + //createResponse.Name = dataSourceNameTwo; var updateResponse = client.DataSources.CreateOrUpdate(resourceGroupName, workspaceName, createResponse.Name, createResponse); TestHelper.ValidateDatasource(createResponse, updateResponse); @@ -115,7 +113,6 @@ public void CanPageThroughDataSourceList() var workspace = new Workspace() { - Name = workspaceName, Location = resourceGroup.Location, Sku = new Sku(SkuNameEnum.Standard) }; @@ -133,7 +130,6 @@ public void CanPageThroughDataSourceList() string windowsEventDataSourceName = TestUtilities.GenerateName("AzTestDSWE"); var createParameters = new DataSource { - Name = windowsEventDataSourceName, Kind = DataSourceKind.WindowsEvent, Properties = JToken.Parse("{\"eventLogName\": \"" + ("windowsEvent" + i) + "\", \"eventTypes\": [{\"eventType\": \"Error\"}]}") }; @@ -171,7 +167,6 @@ public void DataSourceCreateFailsWithoutWorkspace() var createParameters = new DataSource { - Name = dataSourceName, Kind = "AzureAuditLog", Properties = JToken.Parse("{'LinkedResourceId':'/subscriptions/a6383be3-f0e8-4968-93d5-10f2625f5bb5/providers/microsoft.insights/eventtypes/management'}") }; diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs index d574d52c4bb2..3a73d66353f7 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/LinkedServiceOperationsTests.Scenario.cs @@ -45,7 +45,6 @@ public void CanCreateUpdateDeleteLinkedService() // Create a linked service var createParameters = new LinkedService { - Name = linkedServiceName, ResourceId = accountResourceId }; var createResponse = client.LinkedServices.CreateOrUpdate(resourceGroupName, workspaceName, linkedServiceName, createParameters); @@ -57,13 +56,12 @@ public void CanCreateUpdateDeleteLinkedService() // List the linked services in the workspace var listResponse = client.LinkedServices.ListByWorkspace(resourceGroupName, workspaceName); - Assert.Equal(1, listResponse.Value.Count); - Assert.Single(listResponse.Value.Where(w => w.ResourceId.Equals(accountResourceId, StringComparison.OrdinalIgnoreCase))); + Assert.Equal(1, listResponse.Count()); + Assert.Single(listResponse.Where(w => w.ResourceId.Equals(accountResourceId, StringComparison.OrdinalIgnoreCase))); var accountResourceId2 = string.Format(accountResourceIdFromat, subId, resourceGroupName, automationAccountName2); var updateParameters = new LinkedService { - Name = linkedServiceName, ResourceId = accountResourceId2 }; @@ -92,7 +90,6 @@ public void LinkedServiceCreateFailsWithoutWorkspace() var createParameters = new LinkedService { - Name = linkedServiceName, ResourceId = accountResourceId }; diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs index 5f5032a453ec..5417a0221871 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs @@ -126,7 +126,7 @@ public void CanCreateOrUpdateAndDeleteSavedSearches() string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; string newSavedSearchId = "test-new-saved-search-id-2015"; - SavedSearchCreateOrUpdateParameters parameters = new SavedSearchCreateOrUpdateParameters(); + SavedSearch parameters = new SavedSearch(); parameters.Version = 1; parameters.Query = "* | measure Count() by Computer"; parameters.DisplayName = "Create or Update Saved Search Test"; diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs index 029ecb651dbb..9a460d6ccb70 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/StorageInsightOperationsTests.Scenario.cs @@ -43,7 +43,6 @@ public void CanCreateUpdateDeleteStorageInsight() var workspace = new Workspace() { - Name = workspaceName, Location = resourceGroup.Location, Sku = new Sku(SkuNameEnum.Standard) }; @@ -59,8 +58,6 @@ public void CanCreateUpdateDeleteStorageInsight() var storageInsight = new StorageInsight { - Name = storageInsightName, - Location = resourceGroup.Location, Tables = new[] { "WADWindowsEventLogsTable", "LinuxSyslogVer2v0" }, Containers = new[] { "wad-iis-logfiles" }, StorageAccount = @@ -82,8 +79,6 @@ public void CanCreateUpdateDeleteStorageInsight() var storageInsightNameTwo = TestUtilities.GenerateName("AzTestSI"); var storageInsightTwo = new StorageInsight { - Name = storageInsightNameTwo, - Location = resourceGroup.Location, Tables = new[] { "WADWindowsEventLogsTable", "LinuxSyslogVer2v0" }, Containers = null, StorageAccount = @@ -142,8 +137,6 @@ public void StorageInsightCreateFailsWithoutWorkspace() string workspaceName = TestUtilities.GenerateName("AzTest"); var storageInsight = new StorageInsight { - Name = storageInsightName, - Location = resourceGroup.Location, StorageAccount = new StorageAccount { diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs index b280a9be2502..fb6773ea741d 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs @@ -27,7 +27,6 @@ public void CanCreateListDeleteWorkspace() string workspaceName = TestUtilities.GenerateName("AzTest"); var workspace = new Workspace() { - Name = workspaceName, Location = resourceGroup.Location, Tags = new Dictionary { { "tag1", "val1" } }, Sku = new Sku(SkuNameEnum.PerNode), @@ -63,7 +62,6 @@ public void CanPerformWorkspaceActions() var workspace = new Workspace() { - Name = workspaceName, Location = resourceGroup.Location, CustomerId = Guid.NewGuid().ToString(), }; @@ -75,7 +73,6 @@ public void CanPerformWorkspaceActions() // Create a real workspace workspace = new Workspace() { - Name = workspaceName, Location = resourceGroup.Location, Sku = new Sku(SkuNameEnum.Free) }; @@ -93,7 +90,7 @@ public void CanPerformWorkspaceActions() // List the management groups connected to the workspace var managementGroupsResponse = client.Workspaces.ListManagementGroups(resourceGroupName, workspaceName); - Assert.Equal(0, managementGroupsResponse.Value.Count()); + Assert.Equal(0, managementGroupsResponse.Count()); // List the usage for a workspace var usagesResponse = client.Workspaces.ListUsages(resourceGroupName, workspaceName); @@ -122,7 +119,6 @@ public async void CanEnableDisableListIntelligencePacks() string workspaceName = TestUtilities.GenerateName("AzTest"); var workspace = new Workspace() { - Name = workspaceName, Location = resourceGroup.Location, Tags = new Dictionary { { "tag1", "val1" } }, Sku = new Sku(SkuNameEnum.PerNode), From be1db2840b3aa37c235d8de6bfdbed3e2a0a4b44 Mon Sep 17 00:00:00 2001 From: "REDMOND\\xizha" Date: Thu, 2 Feb 2017 15:15:25 -0800 Subject: [PATCH 008/137] addressing the comments --- .../WorkspaceOperationsTests.Scenario.cs | 218 ++++++++++++++++++ 1 file changed, 218 insertions(+) create mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario.cs diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario.cs new file mode 100644 index 000000000000..8921ae0400e5 --- /dev/null +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario.cs @@ -0,0 +1,218 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.OperationalInsights; +using Microsoft.Azure.Management.Resources; +using System; +using System.Collections.Generic; +using System.Linq; +using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Azure.Management.OperationalInsights.Models; +using OperationalInsights.Tests.Helpers; +using System.Net; + +namespace OperationalInsights.Test.ScenarioTests +{ + public class WorkspaceOperationsTests : TestBase + { + [Fact] + public void CanCreateListDeleteWorkspace() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + string workspaceName = TestUtilities.GenerateName("AzTest"); + var workspace = new Workspace() + { + Location = resourceGroup.Location, + Tags = new Dictionary { { "tag1", "val1" } }, + Sku = new Sku(SkuNameEnum.PerNode), + RetentionInDays = 30 + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + + TestHelper.ValidateWorkspace(workspace, workspaceResponse); + } + } + + [Fact] + public void CanPerformWorkspaceActions() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + // Query link targets for an identity + var linkTargetsResponse = client.Workspaces.ListLinkTargets(); + Assert.Equal(0, linkTargetsResponse.Count); + + // Attempt to link a workspace to an invalid account + string workspaceName = TestUtilities.GenerateName("AzTest"); + + var workspace = new Workspace() + { + Location = resourceGroup.Location, + CustomerId = Guid.NewGuid().ToString(), + }; + + TestHelper.VerifyCloudException( + HttpStatusCode.BadRequest, + () => client.Workspaces.CreateOrUpdate(resourceGroupName, workspaceName, workspace)); + + // Create a real workspace + workspace = new Workspace() + { + Location = resourceGroup.Location, + Sku = new Sku(SkuNameEnum.Free) + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + TestHelper.ValidateWorkspace(workspace, workspaceResponse); + + // Get the shared keys for a workspace + var getKeysResponse = client.Workspaces.GetSharedKeys(resourceGroupName, workspaceName); + Assert.NotNull(getKeysResponse.PrimarySharedKey); + Assert.NotNull(getKeysResponse.SecondarySharedKey); + + // List the management groups connected to the workspace + var managementGroupsResponse = client.Workspaces.ListManagementGroups(resourceGroupName, workspaceName); + Assert.Equal(0, managementGroupsResponse.Count()); + + // List the usage for a workspace + var usagesResponse = client.Workspaces.ListUsages(resourceGroupName, workspaceName); + Assert.Equal(1, usagesResponse.Count()); + + var metric = usagesResponse.Single(); + Assert.Equal("DataAnalyzed", metric.Name.Value); + Assert.NotNull(metric.NextResetTime); + Assert.Equal("Bytes", metric.Unit); + Assert.Equal("P1D", metric.QuotaPeriod); + } + } + + [Fact] + public async void CanEnableDisableListIntelligencePacks() + { + using (MockContext context = MockContext.Start(GetType().FullName)) + { + var resourceClient = TestHelper.GetResourceManagementClient(this, context); + var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + + string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); + var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); + + // create a test workspace + string workspaceName = TestUtilities.GenerateName("AzTest"); + var workspace = new Workspace() + { + Location = resourceGroup.Location, + Tags = new Dictionary { { "tag1", "val1" } }, + Sku = new Sku(SkuNameEnum.PerNode), + RetentionInDays = 30 + }; + + var workspaceResponse = client.Workspaces.CreateOrUpdate( + resourceGroupName, + workspaceName, + workspace); + TestHelper.ValidateWorkspace(workspace, workspaceResponse); + + // Enable an intelligence pack + await client.Workspaces.EnableIntelligencePackAsync( + resourceGroupName, + workspaceName, + "ChangeTracking"); + await client.Workspaces.EnableIntelligencePackAsync( + resourceGroupName, + workspaceName, + "SiteRecovery"); + + var listResponse = client.Workspaces.ListIntelligencePacks(resourceGroupName, workspaceName); + Assert.NotNull(listResponse); + + foreach (var ip in listResponse) + { + if (ip.Name.Equals("ChangeTracking")) + { + Assert.True(ip.Enabled); + } + else if (ip.Name.Equals("SiteRecovery")) + { + Assert.True(ip.Enabled); + } + else if (ip.Name.Equals("LogManagement")) + { + Assert.True(ip.Enabled); + } + else + { + Assert.False(ip.Enabled); + } + } + + // Disable an intelligence pack + await client.Workspaces.DisableIntelligencePackAsync( + resourceGroupName, + workspaceName, + "ChangeTracking"); + + await client.Workspaces.DisableIntelligencePackAsync( + resourceGroupName, + workspaceName, + "SiteRecovery"); + + listResponse = client.Workspaces.ListIntelligencePacks(resourceGroupName, workspaceName); + Assert.NotNull(listResponse); + + foreach (var ip in listResponse) + { + if (ip.Name.Equals("ChangeTracking")) + { + Assert.False(ip.Enabled); + } + else if (ip.Name.Equals("SiteRecovery")) + { + Assert.False(ip.Enabled); + } + else if (ip.Name.Equals("LogManagement")) + { + Assert.True(ip.Enabled); + } + else + { + Assert.False(ip.Enabled); + } + } + } + } + } +} + From 78e6ff03ba9450006f4df182917511dbe2a961a5 Mon Sep 17 00:00:00 2001 From: "REDMOND\\xizha" Date: Thu, 2 Feb 2017 16:12:37 -0800 Subject: [PATCH 009/137] addressing other comments --- .../Properties/AssemblyInfo.cs | 4 +- .../generate.cmd | 4 +- .../project.json | 2 +- .../SearchOperationsTests.Scenario.cs | 13 +- .../WorkspaceOperationsTests.Scenario .cs | 204 ------------------ .../OperationalInsights.Test/project.json | 2 +- 6 files changed, 18 insertions(+), 211 deletions(-) delete mode 100644 src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Properties/AssemblyInfo.cs b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Properties/AssemblyInfo.cs index 00f2240933a3..8cc4ae95bf00 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/Properties/AssemblyInfo.cs @@ -11,8 +11,8 @@ [assembly: AssemblyProduct("Azure .NET SDK")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] -[assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.0.0")] +[assembly: AssemblyVersion("0.18.0.0")] +[assembly: AssemblyFileVersion("0.18.0.0")] [assembly: AssemblyTitle("Microsoft Azure OperationalInsights Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure OperationalInsights management operations.")] [assembly: AssemblyCulture("")] diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/generate.cmd b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/generate.cmd index 9c7f7c716244..ddca0e89ee6d 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/generate.cmd +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/generate.cmd @@ -4,9 +4,9 @@ :: @echo off -set autoRestVersion=0.17.0-Nightly20160621 +set autoRestVersion=1.0.0-Nightly20170126 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-operationalinsights/compositeOperationalInsights.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/a2afb19c0d17535c1d0c3ebf05258e25375fc5a3/arm-operationalinsights/compositeOperationalInsights.json" ) else ( set specFile="%1" ) diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json index ae1736ec24aa..a6e4b36266e1 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-preview", + "version": "0.18.0-preview", "description": "Provides Microsoft Azure Operational Insights management operations", "authors": [ "Microsoft" ], diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs index 5417a0221871..e11cc953d196 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/SearchOperationsTests.Scenario.cs @@ -32,7 +32,9 @@ public void CanGetSearchResultsAndUpdate() { var client = TestHelper.GetOperationalInsightsManagementClient(this, context); - // Rasha's workspace is the only one in int with cold data, which is necessary to test the update search method + // Since we are testing search operations, we can't just create a brand new workspace + // because there are no ARM APIs to ingest data to a workspace. + // But any workspace with data ingested should be good for this test. string resourceGroupName = "OI-Default-East-US"; string workspaceName = "rasha"; int topCount = 25; @@ -63,6 +65,9 @@ public void CanGetSchema() { var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + // Since we are testing search operations, we can't just create a brand new workspace + // because there are no ARM APIs to ingest data to a workspace. + // But any workspace with data ingested should be good for this test. string resourceGroupName = "mms-eus"; string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; @@ -83,6 +88,9 @@ public void CanGetSavedSearchesAndResults() { var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + // Since we are testing search operations, we can't just create a brand new workspace + // because there are no ARM APIs to ingest data to a workspace. + // But any workspace with data ingested should be good for this test. string resourceGroupName = "mms-eus"; string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; @@ -122,6 +130,9 @@ public void CanCreateOrUpdateAndDeleteSavedSearches() { var client = TestHelper.GetOperationalInsightsManagementClient(this, context); + // Since we are testing search operations, we can't just create a brand new workspace + // because there are no ARM APIs to ingest data to a workspace. + // But any workspace with data ingested should be good for this test. string resourceGroupName = "mms-eus"; string workspaceName = "workspace-861bd466-5400-44be-9552-5ba40823c3aa"; string newSavedSearchId = "test-new-saved-search-id-2015"; diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs deleted file mode 100644 index fb6773ea741d..000000000000 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/ScenarioTests/WorkspaceOperationsTests.Scenario .cs +++ /dev/null @@ -1,204 +0,0 @@ -using Microsoft.Azure.Management.OperationalInsights; -using Microsoft.Azure.Management.Resources; -using System; -using System.Collections.Generic; -using System.Linq; -using Xunit; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using Microsoft.Azure.Management.OperationalInsights.Models; -using OperationalInsights.Tests.Helpers; -using System.Net; - -namespace OperationalInsights.Test.ScenarioTests -{ - public class WorkspaceOperationsTests : TestBase - { - [Fact] - public void CanCreateListDeleteWorkspace() - { - using (MockContext context = MockContext.Start(GetType().FullName)) - { - var resourceClient = TestHelper.GetResourceManagementClient(this, context); - var client = TestHelper.GetOperationalInsightsManagementClient(this, context); - - string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); - var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); - - string workspaceName = TestUtilities.GenerateName("AzTest"); - var workspace = new Workspace() - { - Location = resourceGroup.Location, - Tags = new Dictionary { { "tag1", "val1" } }, - Sku = new Sku(SkuNameEnum.PerNode), - RetentionInDays = 30 - }; - - var workspaceResponse = client.Workspaces.CreateOrUpdate( - resourceGroupName, - workspaceName, - workspace); - - TestHelper.ValidateWorkspace(workspace, workspaceResponse); - } - } - - [Fact] - public void CanPerformWorkspaceActions() - { - using (MockContext context = MockContext.Start(GetType().FullName)) - { - var resourceClient = TestHelper.GetResourceManagementClient(this, context); - var client = TestHelper.GetOperationalInsightsManagementClient(this, context); - - string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); - var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); - - // Query link targets for an identity - var linkTargetsResponse = client.Workspaces.ListLinkTargets(); - Assert.Equal(0, linkTargetsResponse.Count); - - // Attempt to link a workspace to an invalid account - string workspaceName = TestUtilities.GenerateName("AzTest"); - - var workspace = new Workspace() - { - Location = resourceGroup.Location, - CustomerId = Guid.NewGuid().ToString(), - }; - - TestHelper.VerifyCloudException( - HttpStatusCode.BadRequest, - () => client.Workspaces.CreateOrUpdate(resourceGroupName, workspaceName, workspace)); - - // Create a real workspace - workspace = new Workspace() - { - Location = resourceGroup.Location, - Sku = new Sku(SkuNameEnum.Free) - }; - - var workspaceResponse = client.Workspaces.CreateOrUpdate( - resourceGroupName, - workspaceName, - workspace); - TestHelper.ValidateWorkspace(workspace, workspaceResponse); - - // Get the shared keys for a workspace - var getKeysResponse = client.Workspaces.GetSharedKeys(resourceGroupName, workspaceName); - Assert.NotNull(getKeysResponse.PrimarySharedKey); - Assert.NotNull(getKeysResponse.SecondarySharedKey); - - // List the management groups connected to the workspace - var managementGroupsResponse = client.Workspaces.ListManagementGroups(resourceGroupName, workspaceName); - Assert.Equal(0, managementGroupsResponse.Count()); - - // List the usage for a workspace - var usagesResponse = client.Workspaces.ListUsages(resourceGroupName, workspaceName); - Assert.Equal(1, usagesResponse.Count()); - - var metric = usagesResponse.Single(); - Assert.Equal("DataAnalyzed", metric.Name.Value); - Assert.NotNull(metric.NextResetTime); - Assert.Equal("Bytes", metric.Unit); - Assert.Equal("P1D", metric.QuotaPeriod); - } - } - - [Fact] - public async void CanEnableDisableListIntelligencePacks() - { - using (MockContext context = MockContext.Start(GetType().FullName)) - { - var resourceClient = TestHelper.GetResourceManagementClient(this, context); - var client = TestHelper.GetOperationalInsightsManagementClient(this, context); - - string resourceGroupName = TestUtilities.GenerateName("OIAutoRest"); - var resourceGroup = TestHelper.CreateResourceGroup(resourceGroupName, resourceClient); - - // create a test workspace - string workspaceName = TestUtilities.GenerateName("AzTest"); - var workspace = new Workspace() - { - Location = resourceGroup.Location, - Tags = new Dictionary { { "tag1", "val1" } }, - Sku = new Sku(SkuNameEnum.PerNode), - RetentionInDays = 30 - }; - - var workspaceResponse = client.Workspaces.CreateOrUpdate( - resourceGroupName, - workspaceName, - workspace); - TestHelper.ValidateWorkspace(workspace, workspaceResponse); - - // Enable an intelligence pack - await client.Workspaces.EnableIntelligencePackAsync( - resourceGroupName, - workspaceName, - "ChangeTracking"); - await client.Workspaces.EnableIntelligencePackAsync( - resourceGroupName, - workspaceName, - "SiteRecovery"); - - var listResponse = client.Workspaces.ListIntelligencePacks(resourceGroupName, workspaceName); - Assert.NotNull(listResponse); - - foreach (var ip in listResponse) - { - if (ip.Name.Equals("ChangeTracking")) - { - Assert.True(ip.Enabled); - } - else if (ip.Name.Equals("SiteRecovery")) - { - Assert.True(ip.Enabled); - } - else if (ip.Name.Equals("LogManagement")) - { - Assert.True(ip.Enabled); - } - else - { - Assert.False(ip.Enabled); - } - } - - // Disable an intelligence pack - await client.Workspaces.DisableIntelligencePackAsync( - resourceGroupName, - workspaceName, - "ChangeTracking"); - - await client.Workspaces.DisableIntelligencePackAsync( - resourceGroupName, - workspaceName, - "SiteRecovery"); - - listResponse = client.Workspaces.ListIntelligencePacks(resourceGroupName, workspaceName); - Assert.NotNull(listResponse); - - foreach (var ip in listResponse) - { - if (ip.Name.Equals("ChangeTracking")) - { - Assert.False(ip.Enabled); - } - else if (ip.Name.Equals("SiteRecovery")) - { - Assert.False(ip.Enabled); - } - else if (ip.Name.Equals("LogManagement")) - { - Assert.True(ip.Enabled); - } - else - { - Assert.False(ip.Enabled); - } - } - } - } - } -} - diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json index 87adaaedfa2d..9dfc405110a0 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json @@ -9,7 +9,7 @@ "projectUrl": "", "licenseUrl": "", }, - + "buildOptions": { "delaySign": true, "publicSign": false, From 793e52e52c84a96044af614f21c2140aee5fe1c2 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 15 Feb 2017 10:50:01 -0800 Subject: [PATCH 010/137] #ConnectionDraining Initial push after autogenerating all files. Contains only changes related to ConnectionDraining in ApplicationGateway and files which only change is the version number of the api calls. --- .../ApplicationGatewaysOperations.cs | 16 +- .../Generated/LoadBalancersOperations.cs | 10 +- .../LocalNetworkGatewaysOperations.cs | 8 +- .../Generated/Models/ApplicationGateway.cs | 10 + ...icationGatewayBackendHealthHttpSettings.cs | 13 + .../ApplicationGatewayBackendHttpSettings.cs | 25 +- .../ApplicationGatewayConnectionDraining.cs | 78 + ...ewayWebApplicationFirewallConfiguration.cs | 5 +- .../Generated/NetworkInterfacesOperations.cs | 14 +- .../NetworkSecurityGroupsOperations.cs | 10 +- .../Generated/NetworkWatchersOperations.cs | 26 +- .../Generated/PacketCapturesOperations.cs | 12 +- .../Generated/PublicIpAddressesOperations.cs | 10 +- .../Generated/RouteTablesOperations.cs | 10 +- .../Generated/RoutesOperations.cs | 8 +- .../Generated/SecurityRulesOperations.cs | 8 +- .../Generated/SubnetsOperations.cs | 8 +- .../Generated/UsagesOperations.cs | 2 +- ...tualNetworkGatewayConnectionsOperations.cs | 14 +- .../VirtualNetworkGatewaysOperations.cs | 21 +- .../VirtualNetworkPeeringsOperations.cs | 8 +- .../Generated/VirtualNetworksOperations.cs | 12 +- .../ApplicationGatewayApiTest.json | 2194 ++++++++++------- .../Tests/ApplicationGatewayTests.cs | 21 + .../Network/Network.Tests/project.json | 2 +- 25 files changed, 1552 insertions(+), 993 deletions(-) create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayConnectionDraining.cs diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index 12ac060c040b..1304539a2f17 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -116,7 +116,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -328,7 +328,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -506,7 +506,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -764,7 +764,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -943,7 +943,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1159,7 +1159,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1324,7 +1324,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1497,7 +1497,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs index 79d6a64e5960..13b32fbe0c2e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs @@ -119,7 +119,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 3cb5b396148c..482a33ce2fcc 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -533,7 +533,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -749,7 +749,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs index 78410098a118..4e956405a223 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs @@ -226,6 +226,16 @@ public ApplicationGateway() { } /// public virtual void Validate() { + if (BackendHttpSettingsCollection != null) + { + foreach (var element in BackendHttpSettingsCollection) + { + if (element != null) + { + element.Validate(); + } + } + } if (WebApplicationFirewallConfiguration != null) { WebApplicationFirewallConfiguration.Validate(); diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthHttpSettings.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthHttpSettings.cs index 4eddf6d181a6..854167647433 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthHttpSettings.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthHttpSettings.cs @@ -55,6 +55,19 @@ public ApplicationGatewayBackendHealthHttpSettings() { } [JsonProperty(PropertyName = "servers")] public IList Servers { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (BackendHttpSettings != null) + { + BackendHttpSettings.Validate(); + } + } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs index 8b2a1c9329a1..1f6e27130b67 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs @@ -52,12 +52,14 @@ public ApplicationGatewayBackendHttpSettings() { } /// Provisioning state of the backend /// http settings resource. Possible values are: 'Updating', /// 'Deleting', and 'Failed'. + /// Connection draining of the backend + /// http settings resource. /// Name of the resource that is unique within a /// resource group. This name can be used to access the /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - public ApplicationGatewayBackendHttpSettings(string id = default(string), int? port = default(int?), string protocol = default(string), string cookieBasedAffinity = default(string), int? requestTimeout = default(int?), SubResource probe = default(SubResource), IList authenticationCertificates = default(IList), string provisioningState = default(string), string name = default(string), string etag = default(string)) + public ApplicationGatewayBackendHttpSettings(string id = default(string), int? port = default(int?), string protocol = default(string), string cookieBasedAffinity = default(string), int? requestTimeout = default(int?), SubResource probe = default(SubResource), IList authenticationCertificates = default(IList), string provisioningState = default(string), ApplicationGatewayConnectionDraining connectionDraining = default(ApplicationGatewayConnectionDraining), string name = default(string), string etag = default(string)) : base(id) { Port = port; @@ -67,6 +69,7 @@ public ApplicationGatewayBackendHttpSettings() { } Probe = probe; AuthenticationCertificates = authenticationCertificates; ProvisioningState = provisioningState; + ConnectionDraining = connectionDraining; Name = name; Etag = etag; } @@ -120,6 +123,13 @@ public ApplicationGatewayBackendHttpSettings() { } [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; set; } + /// + /// Gets or sets connection draining of the backend http settings + /// resource. + /// + [JsonProperty(PropertyName = "properties.connectionDraining")] + public ApplicationGatewayConnectionDraining ConnectionDraining { get; set; } + /// /// Gets or sets name of the resource that is unique within a resource /// group. This name can be used to access the resource. @@ -134,6 +144,19 @@ public ApplicationGatewayBackendHttpSettings() { } [JsonProperty(PropertyName = "etag")] public string Etag { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ConnectionDraining != null) + { + ConnectionDraining.Validate(); + } + } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayConnectionDraining.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayConnectionDraining.cs new file mode 100644 index 000000000000..fa71d24ffcf8 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayConnectionDraining.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Connection draining allows open connections to a backend server to be + /// active for a specified time after the backend server got removed from + /// the configuration. + /// + public partial class ApplicationGatewayConnectionDraining + { + /// + /// Initializes a new instance of the + /// ApplicationGatewayConnectionDraining class. + /// + public ApplicationGatewayConnectionDraining() { } + + /// + /// Initializes a new instance of the + /// ApplicationGatewayConnectionDraining class. + /// + /// Whether connection draining is enabled or + /// not. + /// The number of seconds connection + /// draining is active. Acceptable values are from 1 second to 3600 + /// seconds. + public ApplicationGatewayConnectionDraining(bool enabled, int drainTimeoutInSec) + { + Enabled = enabled; + DrainTimeoutInSec = drainTimeoutInSec; + } + + /// + /// Gets or sets whether connection draining is enabled or not. + /// + [JsonProperty(PropertyName = "enabled")] + public bool Enabled { get; set; } + + /// + /// Gets or sets the number of seconds connection draining is active. + /// Acceptable values are from 1 second to 3600 seconds. + /// + [JsonProperty(PropertyName = "drainTimeoutInSec")] + public int DrainTimeoutInSec { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (DrainTimeoutInSec > 3600) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "DrainTimeoutInSec", 3600); + } + if (DrainTimeoutInSec < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "DrainTimeoutInSec", 1); + } + } + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs index a0cd36776df6..e0f7a766596c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs @@ -30,7 +30,7 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } /// ApplicationGatewayWebApplicationFirewallConfiguration class. /// /// Whether the web application firewall is - /// enabled. + /// enabled or not. /// Web application firewall mode. Possible /// values are: 'Detection' and 'Prevention'. Possible values include: /// 'Detection', 'Prevention' @@ -41,7 +41,8 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } } /// - /// Gets or sets whether the web application firewall is enabled. + /// Gets or sets whether the web application firewall is enabled or + /// not. /// [JsonProperty(PropertyName = "enabled")] public bool Enabled { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs index 723657e7d927..40a02eb86e16 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs @@ -119,7 +119,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1363,7 +1363,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1538,7 +1538,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1757,7 +1757,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1951,7 +1951,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs index 8b82365b9833..aeca4d060053 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs @@ -119,7 +119,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -331,7 +331,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -703,7 +703,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -880,7 +880,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs index 0ef0fd49a6e1..070dc4e02b9e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs @@ -101,7 +101,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -320,7 +320,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -529,7 +529,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -908,7 +908,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1282,7 +1282,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1462,7 +1462,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1692,7 +1692,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1922,7 +1922,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2152,7 +2152,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2382,7 +2382,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2612,7 +2612,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2842,7 +2842,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs index 4459a7140da5..d0991beed77d 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs @@ -129,7 +129,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -400,7 +400,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -612,7 +612,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -819,7 +819,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -993,7 +993,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1170,7 +1170,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs index 4dd5820a250c..a7824035e5a0 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs @@ -119,7 +119,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs index 39e2fe1ff1d0..cdf2aeeb916f 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs @@ -119,7 +119,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -336,7 +336,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs index 17ba6d4c38af..49913de1c6f5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs @@ -126,7 +126,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -350,7 +350,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,7 +548,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs index 6c8b1eeae757..8fce4b56a92e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs @@ -126,7 +126,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +738,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs index 255d5e338fdd..e6ba2ddfeaac 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs @@ -129,7 +129,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -358,7 +358,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -740,7 +740,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs index 53b5fca23708..7565dd077bdd 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs @@ -94,7 +94,7 @@ internal UsagesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs index c30231873f58..c17abfa1ae4e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -121,7 +121,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -368,7 +368,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -790,7 +790,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1423,7 +1423,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index 52db217a6d15..eb992e20de22 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -561,7 +561,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1064,7 +1064,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1237,7 +1237,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1439,7 +1439,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1639,7 +1639,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1841,7 +1841,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2170,4 +2170,5 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) } } -} \ No newline at end of file +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs index 991ea3a2c9e4..e9249a583ea6 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs @@ -126,7 +126,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs index b58e1a3fd0fb..8dc887aadf03 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs @@ -119,7 +119,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -903,7 +903,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 103d8cfe9627..b51333120569 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourcegroups/csmrg769?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlZ3JvdXBzL2NzbXJnNzY5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg1399?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnMTM5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "29" ], "x-ms-client-request-id": [ - "d905a864-c17e-4e37-928c-78bf070d19e4" + "d2f3b90b-36c3-482b-9ad0-2a43568bd99c" ], "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/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769\",\r\n \"name\": \"csmrg769\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399\",\r\n \"name\": \"csmrg1399\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "169" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:55:11 GMT" + "Wed, 15 Feb 2017 06:05:16 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "1199" ], "x-ms-request-id": [ - "f466812d-3782-44e1-98e8-586e4da33710" + "d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" ], "x-ms-correlation-request-id": [ - "f466812d-3782-44e1-98e8-586e4da33710" + "d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185512Z:f466812d-3782-44e1-98e8-586e4da33710" + "WESTUS2:20170215T060517Z:d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,10 +62,10 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDU0NDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet6012\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3173\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -73,19 +74,20 @@ "530" ], "x-ms-client-request-id": [ - "63a53e67-40f9-4dd1-9693-60ddf3fa20a1" + "3fdc6888-46a0-403a-985e-1c7af6ee12ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5442\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442\",\r\n \"etag\": \"W/\\\"0763bf9d-0c64-45c1-9392-af3541db258c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1fe40fcf-5e27-42c1-b5ad-550e4b089427\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6012\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\",\r\n \"etag\": \"W/\\\"0763bf9d-0c64-45c1-9392-af3541db258c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceTunnels\": []\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3173\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\",\r\n \"etag\": \"W/\\\"0763bf9d-0c64-45c1-9392-af3541db258c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceTunnels\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1558" + "1495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97,23 +99,23 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:55:13 GMT" + "Wed, 15 Feb 2017 06:05:25 GMT" ], "Pragma": [ "no-cache" ], "Retry-After": [ - "10" + "3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6ad39ea5-606a-47ea-8bc4-d5b7c3cd1b4b" + "71222849-9014-4ff9-9246-f27a40349b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/6ad39ea5-606a-47ea-8bc4-d5b7c3cd1b4b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,22 +124,23 @@ "1199" ], "x-ms-correlation-request-id": [ - "2a476aae-fa1e-4f9b-8623-b9837ba8067d" + "721da15b-1fb1-4e31-aaf4-d15b7e24da03" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185514Z:2a476aae-fa1e-4f9b-8623-b9837ba8067d" + "WESTUS2:20170215T060525Z:721da15b-1fb1-4e31-aaf4-d15b7e24da03" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/6ad39ea5-606a-47ea-8bc4-d5b7c3cd1b4b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YWQzOWVhNS02MDZhLTQ3ZWEtOGJjNC1kNWI3YzNjZDFiNGI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -152,7 +155,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:55:43 GMT" + "Wed, 15 Feb 2017 06:05:55 GMT" ], "Pragma": [ "no-cache" @@ -168,34 +171,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "34a266d1-5b04-427a-9837-a153c4c1fe5e" + "fef3bf8d-a7a9-4538-8f18-607ccf8bff00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14989" ], "x-ms-correlation-request-id": [ - "10b62899-808b-45d8-a436-0acebb681810" + "a3bfea55-e664-4b7a-8a28-69d0d52c218b" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185544Z:10b62899-808b-45d8-a436-0acebb681810" + "WESTUS2:20170215T060555Z:a3bfea55-e664-4b7a-8a28-69d0d52c218b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDU0NDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5442\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442\",\r\n \"etag\": \"W/\\\"497b5788-8a0b-48c6-940b-25fbdbc95672\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1fe40fcf-5e27-42c1-b5ad-550e4b089427\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6012\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\",\r\n \"etag\": \"W/\\\"497b5788-8a0b-48c6-940b-25fbdbc95672\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceTunnels\": []\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3173\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\",\r\n \"etag\": \"W/\\\"497b5788-8a0b-48c6-940b-25fbdbc95672\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceTunnels\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -207,7 +211,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:55:44 GMT" + "Wed, 15 Feb 2017 06:05:55 GMT" ], "Pragma": [ "no-cache" @@ -216,7 +220,7 @@ "chunked" ], "ETag": [ - "W/\"497b5788-8a0b-48c6-940b-25fbdbc95672\"" + "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -226,40 +230,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6a688399-e9af-4216-bba7-a34bbda8a593" + "76396307-58ac-433d-8db8-a9dd6f67f9bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14988" ], "x-ms-correlation-request-id": [ - "6c62f4ea-cabe-4ed9-a12e-d6e87c788fc5" + "81180793-4f56-45fd-86d6-da679dd60d04" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185544Z:6c62f4ea-cabe-4ed9-a12e-d6e87c788fc5" + "WESTUS2:20170215T060555Z:81180793-4f56-45fd-86d6-da679dd60d04" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDU0NDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8c6f44d-7ea7-4f37-b29e-165e789de571" + "abac72f6-7a67-4f8c-9040-7dbad7838019" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5442\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442\",\r\n \"etag\": \"W/\\\"497b5788-8a0b-48c6-940b-25fbdbc95672\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1fe40fcf-5e27-42c1-b5ad-550e4b089427\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6012\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\",\r\n \"etag\": \"W/\\\"497b5788-8a0b-48c6-940b-25fbdbc95672\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceTunnels\": []\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3173\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\",\r\n \"etag\": \"W/\\\"497b5788-8a0b-48c6-940b-25fbdbc95672\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceTunnels\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -271,7 +276,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:55:44 GMT" + "Wed, 15 Feb 2017 06:06:28 GMT" ], "Pragma": [ "no-cache" @@ -280,7 +285,7 @@ "chunked" ], "ETag": [ - "W/\"497b5788-8a0b-48c6-940b-25fbdbc95672\"" + "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -290,40 +295,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c0b701f5-2d26-407a-83b4-ed29c520dbb1" + "3dba8b2e-907e-43c4-82b6-a8fe9f66f005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14986" ], "x-ms-correlation-request-id": [ - "330a8ff4-9157-4f93-89a5-e5ca3bdae210" + "8d65d120-7954-4a81-ab79-53122e6375a7" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185544Z:330a8ff4-9157-4f93-89a5-e5ca3bdae210" + "WESTUS2:20170215T060628Z:8d65d120-7954-4a81-ab79-53122e6375a7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDU0NDIvc3VibmV0cy9henNtbmV0NjAxMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca52f60f-7165-4ed7-bb9e-e0ae61c6cf07" + "35b1dd89-126b-4e5c-95a4-48af265ad9fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6012\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\",\r\n \"etag\": \"W/\\\"497b5788-8a0b-48c6-940b-25fbdbc95672\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceTunnels\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -335,7 +341,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:55:44 GMT" + "Wed, 15 Feb 2017 06:06:29 GMT" ], "Pragma": [ "no-cache" @@ -344,7 +350,7 @@ "chunked" ], "ETag": [ - "W/\"497b5788-8a0b-48c6-940b-25fbdbc95672\"" + "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -354,49 +360,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "baa03ae0-06c3-43fc-9963-28d9e19fe92a" + "0d00b048-5830-45d0-bc8a-b9aac817699c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14985" ], "x-ms-correlation-request-id": [ - "3a372403-88b8-4e63-9e90-ff56794a4ed1" + "b6a45196-27dc-4e45-8852-eee72b5c6ae5" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185544Z:3a372403-88b8-4e63-9e90-ff56794a4ed1" + "WESTUS2:20170215T060629Z:b6a45196-27dc-4e45-8852-eee72b5c6ae5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2F6c21uZXQ1ODE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n }\r\n },\r\n \"name\": \"azsmnet6005\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet1422\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n }\r\n },\r\n \"name\": \"azsmnet1400\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet8510\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet667\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet9977\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet3426\"\r\n },\r\n {\r\n \"name\": \"azsmnet9377\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\"\r\n }\r\n },\r\n \"name\": \"azsmnet9782\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet5127\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5077\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet7866\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n }\r\n },\r\n \"name\": \"azsmnet6462\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n },\r\n \"name\": \"azsmnet9951\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "7159" + "7291" ], "x-ms-client-request-id": [ - "86bdc701-9869-4e12-a6b1-aa1c1c90921f" + "e2394a38-e3d2-484d-bc43-9524b4c4d6e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5816\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b2f17f49-1c3a-4a0f-83f4-4baeaeb4d471\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6005\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/gatewayIPConfigurations/azsmnet6005\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet1422\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1400\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet8510\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet667\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3426\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9377\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet9782\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5127\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5077\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet7866\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6462\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9951\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9977\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\",\r\n \"etag\": \"W/\\\"41d3d182-d7ad-45e6-a566-fa2b1f58c210\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "15026" + "15222" ], "Content-Type": [ "application/json; charset=utf-8" @@ -408,7 +415,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:55:45 GMT" + "Wed, 15 Feb 2017 06:06:33 GMT" ], "Pragma": [ "no-cache" @@ -421,10 +428,10 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8b60ce83-d098-4e84-8bd0-dc6f470ab91b" + "8248159d-4703-478e-a374-caf55cf6018e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -433,22 +440,23 @@ "1198" ], "x-ms-correlation-request-id": [ - "cb033712-8deb-402a-b33b-e69fb9271827" + "8bc80e2d-9764-416f-a803-dcb8504ec49e" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185546Z:cb033712-8deb-402a-b33b-e69fb9271827" + "WESTUS2:20170215T060633Z:8bc80e2d-9764-416f-a803-dcb8504ec49e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -463,7 +471,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:56:15 GMT" + "Wed, 15 Feb 2017 06:07:14 GMT" ], "Pragma": [ "no-cache" @@ -471,6 +479,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -479,31 +490,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5c83607f-cb14-4e1e-a371-2ea101adc791" + "0cbaaef0-3a4d-4cb9-bd1e-2b03b584f103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14984" ], "x-ms-correlation-request-id": [ - "40b2f862-21d0-4070-a300-15ac52079765" + "833e5df5-7b8d-4a48-bb4a-0acc6beec7ed" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185616Z:40b2f862-21d0-4070-a300-15ac52079765" + "WESTUS2:20170215T060714Z:833e5df5-7b8d-4a48-bb4a-0acc6beec7ed" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -518,7 +530,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:56:46 GMT" + "Wed, 15 Feb 2017 06:07:44 GMT" ], "Pragma": [ "no-cache" @@ -526,6 +538,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -534,31 +549,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2d38425c-6819-4c3d-aed4-ceb8725616dd" + "c71fdb82-875c-40f3-9c38-d25e6ae0278a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14983" ], "x-ms-correlation-request-id": [ - "ae1308d5-919a-4540-8efe-fbdecd964713" + "4b449db4-455f-457f-bbcc-eb049687ac8b" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185646Z:ae1308d5-919a-4540-8efe-fbdecd964713" + "WESTUS2:20170215T060745Z:4b449db4-455f-457f-bbcc-eb049687ac8b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -573,7 +589,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:57:16 GMT" + "Wed, 15 Feb 2017 06:08:14 GMT" ], "Pragma": [ "no-cache" @@ -581,6 +597,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -589,31 +608,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "db41213d-5267-4bd4-9eb2-ba7f4d8399ac" + "82d0465a-fb2d-40cf-8a29-c0cbcd5d5307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14982" ], "x-ms-correlation-request-id": [ - "512509b0-4f79-4535-bed9-8c11aff3ab88" + "c424b1f7-1caa-4b50-8979-cef6ba6ef87a" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185716Z:512509b0-4f79-4535-bed9-8c11aff3ab88" + "WESTUS2:20170215T060815Z:c424b1f7-1caa-4b50-8979-cef6ba6ef87a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -628,7 +648,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:57:46 GMT" + "Wed, 15 Feb 2017 06:08:44 GMT" ], "Pragma": [ "no-cache" @@ -636,6 +656,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -644,31 +667,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "50a13cd6-de7b-4540-ab85-503067dfdc7b" + "217865fb-2d85-4c08-9375-5e1569da6003" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14981" ], "x-ms-correlation-request-id": [ - "c850593c-cb0a-4957-a0f5-3e347929182d" + "f5e700da-94d7-48aa-9fd8-c71c5c57c044" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185746Z:c850593c-cb0a-4957-a0f5-3e347929182d" + "WESTUS2:20170215T060845Z:f5e700da-94d7-48aa-9fd8-c71c5c57c044" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -683,7 +707,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:58:16 GMT" + "Wed, 15 Feb 2017 06:09:15 GMT" ], "Pragma": [ "no-cache" @@ -691,6 +715,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -699,31 +726,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc823763-5b79-49f9-ba28-76ff231fed95" + "75c20090-ffc4-4eae-bb86-91b6acc218da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14980" ], "x-ms-correlation-request-id": [ - "6509886c-a92c-493c-80b4-23c7e3086074" + "9d0dc019-1fd1-403c-b2f0-9602f76c5e19" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185817Z:6509886c-a92c-493c-80b4-23c7e3086074" + "WESTUS2:20170215T060916Z:9d0dc019-1fd1-403c-b2f0-9602f76c5e19" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -738,7 +766,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:58:47 GMT" + "Wed, 15 Feb 2017 06:09:45 GMT" ], "Pragma": [ "no-cache" @@ -746,6 +774,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -754,31 +785,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d9adf988-4691-4b19-91a5-3ba8baa9beda" + "d4a38a06-2926-4450-b939-fe42d2245037" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14979" ], "x-ms-correlation-request-id": [ - "5bb99b52-41a6-48b8-b991-9ce71947337c" + "fee4f667-3ae4-4c67-9f5d-346e72c65f63" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185847Z:5bb99b52-41a6-48b8-b991-9ce71947337c" + "WESTUS2:20170215T060946Z:fee4f667-3ae4-4c67-9f5d-346e72c65f63" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -793,7 +825,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:59:17 GMT" + "Wed, 15 Feb 2017 06:10:15 GMT" ], "Pragma": [ "no-cache" @@ -801,6 +833,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -809,31 +844,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "07402c68-00c0-4e0f-9fee-7df7f6a525f7" + "5c1bdd26-2aa4-4a38-91e8-375a0ecc8fc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14979" ], "x-ms-correlation-request-id": [ - "648d875f-a679-4f52-b183-2737d383481e" + "0a8bcab8-56a9-4192-9565-6ea59e008862" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185917Z:648d875f-a679-4f52-b183-2737d383481e" + "WESTUS2:20170215T061016Z:0a8bcab8-56a9-4192-9565-6ea59e008862" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -848,7 +884,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 18:59:47 GMT" + "Wed, 15 Feb 2017 06:10:46 GMT" ], "Pragma": [ "no-cache" @@ -856,6 +892,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -864,31 +903,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4fc0119b-0c46-40f6-a06e-5bf12e97e6fb" + "7187bf34-8b72-4e68-bdc7-3ae9e83eef28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14978" ], "x-ms-correlation-request-id": [ - "720c881c-7468-462c-8762-793a71ee0c4a" + "7e8a394e-efa5-4dc9-be63-d4d29fbf4cbb" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T185947Z:720c881c-7468-462c-8762-793a71ee0c4a" + "WESTUS2:20170215T061046Z:7e8a394e-efa5-4dc9-be63-d4d29fbf4cbb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -903,7 +943,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:00:17 GMT" + "Wed, 15 Feb 2017 06:11:16 GMT" ], "Pragma": [ "no-cache" @@ -911,6 +951,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -919,31 +962,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2a6c3d3e-c35a-456e-b092-1acc744af560" + "bb0a4cc7-b9e3-41f2-aecb-b621784eceee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14977" ], "x-ms-correlation-request-id": [ - "d44a9dc7-c454-4718-b16c-580cd87891fc" + "ddc4d1e4-7afd-41c7-8cf8-18c39f2f100a" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190017Z:d44a9dc7-c454-4718-b16c-580cd87891fc" + "WESTUS2:20170215T061117Z:ddc4d1e4-7afd-41c7-8cf8-18c39f2f100a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -958,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:00:47 GMT" + "Wed, 15 Feb 2017 06:11:46 GMT" ], "Pragma": [ "no-cache" @@ -966,6 +1010,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -974,31 +1021,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7904769e-b699-460f-a7dd-27b51a9ebb8d" + "3769f175-65fb-429b-b191-2748f21721fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14975" ], "x-ms-correlation-request-id": [ - "08073e85-6016-4e09-affe-5d521e8db0f9" + "62b24489-9a61-4fec-80cb-f1c95dcdc1a8" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190047Z:08073e85-6016-4e09-affe-5d521e8db0f9" + "WESTUS2:20170215T061147Z:62b24489-9a61-4fec-80cb-f1c95dcdc1a8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1013,7 +1061,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:01:17 GMT" + "Wed, 15 Feb 2017 06:12:17 GMT" ], "Pragma": [ "no-cache" @@ -1021,6 +1069,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1029,31 +1080,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b6607aac-4c96-4e53-bd1e-5374718f8e56" + "cc600879-2929-41dd-a1bd-7f7c796e88b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14974" ], "x-ms-correlation-request-id": [ - "4498d5ee-71c2-44a7-810a-9b642e711945" + "b41b615f-40c2-40d0-8f4c-05bf0ed44e1c" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190117Z:4498d5ee-71c2-44a7-810a-9b642e711945" + "WESTUS2:20170215T061217Z:b41b615f-40c2-40d0-8f4c-05bf0ed44e1c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1068,7 +1120,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:01:47 GMT" + "Wed, 15 Feb 2017 06:12:47 GMT" ], "Pragma": [ "no-cache" @@ -1076,6 +1128,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1084,31 +1139,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fec9f140-7c22-4d0a-bcfa-30a8f0d0d8a4" + "d3ab99e1-5468-445b-ada5-01054f23c04a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14973" ], "x-ms-correlation-request-id": [ - "560c2459-3d8c-4d4a-bba8-194b2a174a9c" + "4b7c2895-b1af-4628-9e52-f8988f7dc243" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190148Z:560c2459-3d8c-4d4a-bba8-194b2a174a9c" + "WESTUS2:20170215T061248Z:4b7c2895-b1af-4628-9e52-f8988f7dc243" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1123,7 +1179,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:02:17 GMT" + "Wed, 15 Feb 2017 06:13:17 GMT" ], "Pragma": [ "no-cache" @@ -1131,6 +1187,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1139,31 +1198,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0faf5638-76a4-44c3-9653-a5e0f18791c5" + "889edc54-25fb-4cba-8344-29a8301154df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14972" ], "x-ms-correlation-request-id": [ - "48b5a5c0-8a62-4e3c-b562-bb860e5c6d79" + "00d78a52-a792-4f13-9f14-71126cbf0b8e" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190218Z:48b5a5c0-8a62-4e3c-b562-bb860e5c6d79" + "WESTUS2:20170215T061318Z:00d78a52-a792-4f13-9f14-71126cbf0b8e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1178,7 +1238,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:02:47 GMT" + "Wed, 15 Feb 2017 06:13:48 GMT" ], "Pragma": [ "no-cache" @@ -1186,6 +1246,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1194,31 +1257,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1b170fc0-143a-473c-9e20-2679855cf26d" + "4b5fa86b-b4eb-47de-951d-ab60bfa97e85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14971" ], "x-ms-correlation-request-id": [ - "2ec7ffc2-ed04-49a1-a2c1-2b0eb8f67403" + "346f0b4c-d126-4926-b6df-c7dd5e92c19e" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190248Z:2ec7ffc2-ed04-49a1-a2c1-2b0eb8f67403" + "WESTUS2:20170215T061348Z:346f0b4c-d126-4926-b6df-c7dd5e92c19e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1233,7 +1297,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:03:17 GMT" + "Wed, 15 Feb 2017 06:14:18 GMT" ], "Pragma": [ "no-cache" @@ -1241,6 +1305,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1249,31 +1316,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8abb3969-ef4e-4da4-aa3a-18e558d5be48" + "074f0b39-19de-4281-9ee9-11faca2a6bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14970" ], "x-ms-correlation-request-id": [ - "b82e27d8-1016-4503-ae39-c630fb724d3e" + "b74fbae6-38bd-4956-8ff0-9fdee973c3b5" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190318Z:b82e27d8-1016-4503-ae39-c630fb724d3e" + "WESTUS2:20170215T061419Z:b74fbae6-38bd-4956-8ff0-9fdee973c3b5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1288,7 +1356,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:03:48 GMT" + "Wed, 15 Feb 2017 06:14:48 GMT" ], "Pragma": [ "no-cache" @@ -1296,6 +1364,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1304,31 +1375,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6de408e1-dfe5-43b5-94bf-afd88fae78ff" + "71732e8e-9282-47cd-89b9-940e023c7711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14969" ], "x-ms-correlation-request-id": [ - "923c9c28-c871-4506-bde0-03affd9c0fb7" + "64dc5351-2768-40ef-9c2e-a87ec4864dd3" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190348Z:923c9c28-c871-4506-bde0-03affd9c0fb7" + "WESTUS2:20170215T061449Z:64dc5351-2768-40ef-9c2e-a87ec4864dd3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1343,7 +1415,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:04:18 GMT" + "Wed, 15 Feb 2017 06:15:19 GMT" ], "Pragma": [ "no-cache" @@ -1351,6 +1423,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1359,31 +1434,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dae89d53-3aa5-44ae-b68a-80db3af0d55f" + "92f9d80e-7a81-4674-999f-515aab0638a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14969" ], "x-ms-correlation-request-id": [ - "985f2396-014c-4625-ba55-f1f859d9b2f0" + "4df38055-0e63-4195-8d24-270c923786e2" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190418Z:985f2396-014c-4625-ba55-f1f859d9b2f0" + "WESTUS2:20170215T061519Z:4df38055-0e63-4195-8d24-270c923786e2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1398,7 +1474,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:04:48 GMT" + "Wed, 15 Feb 2017 06:15:49 GMT" ], "Pragma": [ "no-cache" @@ -1406,6 +1482,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1414,31 +1493,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6f0a0273-3429-429f-bea7-715c80f2f93a" + "34f28e15-7e87-46b6-a2c4-3fcb86afd325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14968" ], "x-ms-correlation-request-id": [ - "929ded12-ce24-4fe0-a50b-bb959cf3c5a7" + "33848f38-a9b0-4897-bc36-102a830e68e5" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190448Z:929ded12-ce24-4fe0-a50b-bb959cf3c5a7" + "WESTUS2:20170215T061550Z:33848f38-a9b0-4897-bc36-102a830e68e5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1453,7 +1533,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:05:18 GMT" + "Wed, 15 Feb 2017 06:16:20 GMT" ], "Pragma": [ "no-cache" @@ -1461,6 +1541,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1469,31 +1552,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c6fb272a-7ed9-4366-9d79-a7c06990733d" + "39d7d8a3-e7b4-44b9-8280-37a9bf87d5ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14967" ], "x-ms-correlation-request-id": [ - "ee9883a1-3999-4d91-9010-60223600bd32" + "3a925edc-6ebf-40c5-a8d0-605aacb99182" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190518Z:ee9883a1-3999-4d91-9010-60223600bd32" + "WESTUS2:20170215T061620Z:3a925edc-6ebf-40c5-a8d0-605aacb99182" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1508,7 +1592,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:05:48 GMT" + "Wed, 15 Feb 2017 06:16:50 GMT" ], "Pragma": [ "no-cache" @@ -1516,6 +1600,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1524,31 +1611,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "97dd76cb-df47-4a39-8e35-ae659b74af12" + "0741b92a-2d00-4b69-951d-e9e8cc42eaed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14966" ], "x-ms-correlation-request-id": [ - "b5c50891-02af-48ca-bf50-3f50d498dd4a" + "a7c0de83-ace9-43d7-bc73-308ebfa35b85" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190549Z:b5c50891-02af-48ca-bf50-3f50d498dd4a" + "WESTUS2:20170215T061650Z:a7c0de83-ace9-43d7-bc73-308ebfa35b85" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1563,7 +1651,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:06:18 GMT" + "Wed, 15 Feb 2017 06:17:20 GMT" ], "Pragma": [ "no-cache" @@ -1571,6 +1659,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1579,31 +1670,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e9d57368-1f14-43bd-8b06-10861f39e633" + "cd2a13b2-92cf-4060-81c2-159969eb0818" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14965" ], "x-ms-correlation-request-id": [ - "41777017-c727-4294-b5a2-b0032a5415e3" + "8c4eb7a1-66d3-4035-bc47-07c013620038" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190619Z:41777017-c727-4294-b5a2-b0032a5415e3" + "WESTUS2:20170215T061720Z:8c4eb7a1-66d3-4035-bc47-07c013620038" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1618,7 +1710,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:06:48 GMT" + "Wed, 15 Feb 2017 06:17:50 GMT" ], "Pragma": [ "no-cache" @@ -1626,6 +1718,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1634,31 +1729,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "145ef3f5-fb6d-4804-ad12-8f6115bc44c2" + "fa4338b0-f756-4bc1-9af4-ecd64a7c240c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14964" ], "x-ms-correlation-request-id": [ - "faa5d980-e1b7-45f2-ba6a-76928b7824a9" + "a8c056ca-ec66-476c-ac83-01e22fc9e4ac" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190649Z:faa5d980-e1b7-45f2-ba6a-76928b7824a9" + "WESTUS2:20170215T061751Z:a8c056ca-ec66-476c-ac83-01e22fc9e4ac" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1673,7 +1769,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:07:18 GMT" + "Wed, 15 Feb 2017 06:18:21 GMT" ], "Pragma": [ "no-cache" @@ -1681,6 +1777,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1689,31 +1788,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b51ee013-211d-4d15-96f8-694c537bed4c" + "383b373f-127e-4bc5-b3c8-f6b655486c91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14963" ], "x-ms-correlation-request-id": [ - "ea4c2613-c347-4aa8-88f1-41df74e3795f" + "056520b7-d369-4326-beaf-9fc81b1b437a" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190719Z:ea4c2613-c347-4aa8-88f1-41df74e3795f" + "WESTUS2:20170215T061821Z:056520b7-d369-4326-beaf-9fc81b1b437a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1728,7 +1828,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:07:48 GMT" + "Wed, 15 Feb 2017 06:18:51 GMT" ], "Pragma": [ "no-cache" @@ -1736,6 +1836,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1744,31 +1847,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "89968e29-7cef-4bc2-93f5-7c19f6272b20" + "f5013689-116c-4b24-a80b-29eb28469028" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14962" ], "x-ms-correlation-request-id": [ - "54f7efdf-2bf6-41f3-af0f-7f87cd1c7732" + "a6382ecf-ac7d-4f23-80f7-ec46de3b3265" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190749Z:54f7efdf-2bf6-41f3-af0f-7f87cd1c7732" + "WESTUS2:20170215T061851Z:a6382ecf-ac7d-4f23-80f7-ec46de3b3265" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1783,7 +1887,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:08:19 GMT" + "Wed, 15 Feb 2017 06:19:21 GMT" ], "Pragma": [ "no-cache" @@ -1791,6 +1895,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1799,31 +1906,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0ca7d170-f863-49e2-84b7-68b892f6d83d" + "877effb3-2733-4be8-9169-69d6985a9d9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14961" ], "x-ms-correlation-request-id": [ - "47b0a18d-f739-4eae-8638-663bf5d2a55e" + "1ae17592-ac56-4a8f-8b18-e68e800d6d41" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190819Z:47b0a18d-f739-4eae-8638-663bf5d2a55e" + "WESTUS2:20170215T061921Z:1ae17592-ac56-4a8f-8b18-e68e800d6d41" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1838,7 +1946,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:08:49 GMT" + "Wed, 15 Feb 2017 06:19:51 GMT" ], "Pragma": [ "no-cache" @@ -1846,6 +1954,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1854,34 +1965,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "580a8937-c095-4d86-b237-01c48666336b" + "57230833-a2f2-492c-aac1-1c76e94582db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14960" ], "x-ms-correlation-request-id": [ - "6f5b9c5d-26bb-46bb-965d-b0abd2ab36f0" + "66b5adaa-4867-4942-a36d-7b34c63b9a1c" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190849Z:6f5b9c5d-26bb-46bb-965d-b0abd2ab36f0" + "WESTUS2:20170215T061952Z:66b5adaa-4867-4942-a36d-7b34c63b9a1c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1893,7 +2005,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:09:19 GMT" + "Wed, 15 Feb 2017 06:20:22 GMT" ], "Pragma": [ "no-cache" @@ -1909,34 +2021,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "82ce0577-5834-44d8-a3aa-c27ed4e8e993" + "aa569cb5-cf89-494b-bc4f-0d07bc82ae4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14960" ], "x-ms-correlation-request-id": [ - "6f881507-d640-45ee-9970-c4ebb594014f" + "0edff2ea-98a5-4214-bef7-10bd029ba9cb" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190919Z:6f881507-d640-45ee-9970-c4ebb594014f" + "WESTUS2:20170215T062022Z:0edff2ea-98a5-4214-bef7-10bd029ba9cb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1948,7 +2061,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:09:49 GMT" + "Wed, 15 Feb 2017 06:20:22 GMT" ], "Pragma": [ "no-cache" @@ -1956,6 +2069,9 @@ "Transfer-Encoding": [ "chunked" ], + "ETag": [ + "W/\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1964,34 +2080,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e391d36f-5371-48c8-97a3-917f586a1fab" + "a7b67055-77b3-449c-ba29-1b96a7cef455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14959" ], "x-ms-correlation-request-id": [ - "27effde1-2af3-44ac-98b0-b703cd934343" + "195f11bb-fada-4751-b621-a5b86bbfeebc" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T190949Z:27effde1-2af3-44ac-98b0-b703cd934343" + "WESTUS2:20170215T062022Z:195f11bb-fada-4751-b621-a5b86bbfeebc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "831783c6-e142-4dea-ac54-0f7449fcf022" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2003,7 +2126,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:10:19 GMT" + "Wed, 15 Feb 2017 06:29:48 GMT" ], "Pragma": [ "no-cache" @@ -2011,6 +2134,9 @@ "Transfer-Encoding": [ "chunked" ], + "ETag": [ + "W/\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2019,34 +2145,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "70e18cdf-033d-4f7d-a906-3fdbf56abdd0" + "beb72cba-9ba4-4a19-af1b-5f7db44a7937" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14999" ], "x-ms-correlation-request-id": [ - "02b31e42-8ebd-409d-b7f2-e4ed393aa385" + "0b541ba7-f6f5-4ca0-860d-7c0f8b6c30c9" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191019Z:02b31e42-8ebd-409d-b7f2-e4ed393aa385" + "CENTRALUS:20170215T062948Z:0b541ba7-f6f5-4ca0-860d-7c0f8b6c30c9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8b814552-e665-40a2-903e-94803671fa93" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2058,7 +2191,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:10:49 GMT" + "Wed, 15 Feb 2017 06:44:04 GMT" ], "Pragma": [ "no-cache" @@ -2066,6 +2199,9 @@ "Transfer-Encoding": [ "chunked" ], + "ETag": [ + "W/\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2074,35 +2210,45 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc0b8d5f-5baa-4071-a7c7-8dca99258193" + "28b90ab9-a86b-4089-8acd-3ffd6b4e64dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14996" ], "x-ms-correlation-request-id": [ - "87f297aa-c58d-4f10-a63c-2a13f50f650f" + "432bd57a-9290-4fd3-a012-225c9af92563" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191049Z:87f297aa-c58d-4f10-a63c-2a13f50f650f" + "CENTRALUS:20170215T064405Z:432bd57a-9290-4fd3-a012-225c9af92563" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ed23ef29-0572-482a-8422-b3ec0c5e725e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { + "Content-Length": [ + "4" + ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2113,50 +2259,51 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:11:19 GMT" + "Wed, 15 Feb 2017 06:30:17 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + ], + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "c32dd326-125c-46a7-a592-7ec2f1c10a41" + "e0c8c88a-c232-47c3-b283-c70aa32018ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "feb34e32-1d55-4dbe-91c3-b1e102922691" + "41b092b5-84eb-45eb-a73b-009abfdf0ab8" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191119Z:feb34e32-1d55-4dbe-91c3-b1e102922691" + "CENTRALUS:20170215T063018Z:41b092b5-84eb-45eb-a73b-009abfdf0ab8" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Unhealthy\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2168,7 +2315,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:11:49 GMT" + "Wed, 15 Feb 2017 06:30:47 GMT" ], "Pragma": [ "no-cache" @@ -2176,6 +2323,9 @@ "Transfer-Encoding": [ "chunked" ], + "Location": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2184,35 +2334,51 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "981d970b-7d38-4481-a832-c62508d00e1b" + "e0c8c88a-c232-47c3-b283-c70aa32018ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14998" ], "x-ms-correlation-request-id": [ - "2b3c6493-31f7-44ac-9c7d-e85cec311ff0" + "8ab45254-be18-4387-beac-9a2208781346" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191150Z:2b3c6493-31f7-44ac-9c7d-e85cec311ff0" + "CENTRALUS:20170215T063048Z:8ab45254-be18-4387-beac-9a2208781346" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "471" + ], + "x-ms-client-request-id": [ + "7d672790-5114-465a-9889-db3a1d7cb35d" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { + "Content-Length": [ + "1509" + ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2223,50 +2389,60 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:12:19 GMT" + "Wed, 15 Feb 2017 06:30:49 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "eedfbced-ea50-4933-9c61-4cd135b1a585" + "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "2a66641c-6df5-4981-8df6-91c96c075a92" + "3d78a611-c9a4-4cb9-8efd-8d6fa963fb90" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191220Z:2a66641c-6df5-4981-8df6-91c96c075a92" + "CENTRALUS:20170215T063050Z:3d78a611-c9a4-4cb9-8efd-8d6fa963fb90" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2046" + ], + "x-ms-client-request-id": [ + "9a2079e2-b549-4528-8e13-3d7f5d00e741" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"b39fc270-8250-4b50-a8fd-424b69dc1bb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b39fc270-8250-4b50-a8fd-424b69dc1bb8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2278,7 +2454,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:12:49 GMT" + "Wed, 15 Feb 2017 06:30:51 GMT" ], "Pragma": [ "no-cache" @@ -2286,6 +2462,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2294,34 +2473,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "01c16989-688a-444b-9b73-6cc02ea9ef76" + "4a050275-6023-4176-b8b9-1fb4c5495a05" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "11aa13a9-625e-48a8-8d2e-2b6d13e1e81c" + "b383ca4c-ba7a-46b9-97e8-286483c0b620" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191250Z:11aa13a9-625e-48a8-8d2e-2b6d13e1e81c" + "CENTRALUS:20170215T063052Z:b383ca4c-ba7a-46b9-97e8-286483c0b620" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2333,7 +2516,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:13:19 GMT" + "Wed, 15 Feb 2017 06:30:50 GMT" ], "Pragma": [ "no-cache" @@ -2341,6 +2524,9 @@ "Transfer-Encoding": [ "chunked" ], + "ETag": [ + "W/\"786fc028-5f3c-4a96-9f1b-be41eabc275f\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2349,34 +2535,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3318f94b-4e19-45cd-9934-f6eae99fd950" + "0da9e6c0-7c0a-43f4-89b9-c4ea753845e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14997" ], "x-ms-correlation-request-id": [ - "c3ec65df-b543-49a9-bd9e-ae2fd09017e6" + "b451dd5d-604e-4758-b006-914c3e7b0aae" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191320Z:c3ec65df-b543-49a9-bd9e-ae2fd09017e6" + "CENTRALUS:20170215T063050Z:b451dd5d-604e-4758-b006-914c3e7b0aae" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4cdc4caa-d37c-4bb5-89d5-86d89d93cb0c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2388,7 +2581,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:13:50 GMT" + "Wed, 15 Feb 2017 06:30:50 GMT" ], "Pragma": [ "no-cache" @@ -2396,6 +2589,9 @@ "Transfer-Encoding": [ "chunked" ], + "ETag": [ + "W/\"786fc028-5f3c-4a96-9f1b-be41eabc275f\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2404,34 +2600,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aec8ff7d-6d54-4a12-aaf7-ab77212ea2a3" + "36b6fc39-6cb3-43a7-9b5d-3286d3f301d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14996" ], "x-ms-correlation-request-id": [ - "331e63c0-9dd5-4e05-bbe5-1b963192688a" + "2f19e339-325f-4941-a4f1-85c474db9a5d" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191350Z:331e63c0-9dd5-4e05-bbe5-1b963192688a" + "CENTRALUS:20170215T063051Z:2f19e339-325f-4941-a4f1-85c474db9a5d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2443,7 +2640,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:14:20 GMT" + "Wed, 15 Feb 2017 06:40:30 GMT" ], "Pragma": [ "no-cache" @@ -2451,6 +2648,9 @@ "Transfer-Encoding": [ "chunked" ], + "ETag": [ + "W/\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2459,34 +2659,115 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a4f17ad2-8c38-48c1-83f6-b9a3d6411235" + "9a9df301-56aa-4fd0-9532-ef7ded81ed8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14974" ], "x-ms-correlation-request-id": [ - "2e513927-5277-47be-994c-5835e7515e25" + "bff8845b-fd14-4229-b9e7-e2c8e24cea2e" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191420Z:2e513927-5277-47be-994c-5835e7515e25" + "CENTRALUS:20170215T064030Z:bff8845b-fd14-4229-b9e7-e2c8e24cea2e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/8b60ce83-d098-4e84-8bd0-dc6f470ab91b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84YjYwY2U4My1kMDk4LTRlODQtOGJkMC1kYzZmNDcwYWI5MWI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "471" + ], + "x-ms-client-request-id": [ + "38aae05b-e98d-42c5-b530-bda459e7436f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1509" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Feb 2017 06:30:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "31c62262-91c7-45ef-8c21-7d717c337a7c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2016-12-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "e86f1604-569e-47c1-8fec-a98e4c149f0f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170215T063051Z:e86f1604-569e-47c1-8fec-a98e4c149f0f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2046" + ], + "x-ms-client-request-id": [ + "ea41e0bc-544d-4f67-85b0-891f64e2e8ae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"e50c0a70-0521-4f44-919f-a20ff19228e2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"e50c0a70-0521-4f44-919f-a20ff19228e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2498,7 +2779,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:14:50 GMT" + "Wed, 15 Feb 2017 06:40:30 GMT" ], "Pragma": [ "no-cache" @@ -2506,6 +2787,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2514,34 +2798,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d588b029-9385-4292-8d5d-1455ffcf73cb" + "5183ed56-0494-4453-a87f-f2fb9526ff4e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "313ad62d-5226-4eac-87ca-00ef9d4f14b5" + "e63b5c21-6c0a-46c8-b09e-ebd1db27fb2c" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191450Z:313ad62d-5226-4eac-87ca-00ef9d4f14b5" + "CENTRALUS:20170215T064030Z:e63b5c21-6c0a-46c8-b09e-ebd1db27fb2c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2F6c21uZXQ1ODE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5816\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b2f17f49-1c3a-4a0f-83f4-4baeaeb4d471\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6005\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/gatewayIPConfigurations/azsmnet6005\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet1422\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1400\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet8510\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet667\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3426\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9377\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet9782\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5127\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5077\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet7866\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6462\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9951\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9977\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2553,7 +2841,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:14:50 GMT" + "Wed, 15 Feb 2017 06:30:51 GMT" ], "Pragma": [ "no-cache" @@ -2562,7 +2850,7 @@ "chunked" ], "ETag": [ - "W/\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\"" + "W/\"46896004-bae1-46c5-9443-58bae607eb26\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2572,40 +2860,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "38aaecea-1b71-4db4-9365-300b08c188c1" + "999b0d3c-537a-4a7c-bc74-3cb8848a8f8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14995" ], "x-ms-correlation-request-id": [ - "96b353dc-5082-4152-85fc-d551f15a2015" + "26e61b27-eef6-4bce-b4c1-ff2872ca7f30" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191450Z:96b353dc-5082-4152-85fc-d551f15a2015" + "CENTRALUS:20170215T063052Z:26e61b27-eef6-4bce-b4c1-ff2872ca7f30" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2F6c21uZXQ1ODE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "472d6436-23db-448d-b596-7cf988f1be5d" + "fda72df0-4107-4201-8501-9ac5c68cc895" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5816\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b2f17f49-1c3a-4a0f-83f4-4baeaeb4d471\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6005\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/gatewayIPConfigurations/azsmnet6005\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet1422\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1400\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet8510\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet667\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3426\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9377\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet9782\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5127\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5077\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet7866\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6462\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9951\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9977\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2617,7 +2906,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:14:50 GMT" + "Wed, 15 Feb 2017 06:30:51 GMT" ], "Pragma": [ "no-cache" @@ -2626,7 +2915,7 @@ "chunked" ], "ETag": [ - "W/\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\"" + "W/\"46896004-bae1-46c5-9443-58bae607eb26\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2636,40 +2925,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "faa6141d-0c9e-45ed-aa2a-621601e6498e" + "0bbef9f2-69ff-4a3c-9f31-8dbda784eca6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14994" ], "x-ms-correlation-request-id": [ - "c2e38f8a-5b23-4fd5-ad52-8652a1b323fa" + "aec1bf95-2577-45db-ac38-8f6944765d82" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191450Z:c2e38f8a-5b23-4fd5-ad52-8652a1b323fa" + "CENTRALUS:20170215T063052Z:aec1bf95-2577-45db-ac38-8f6944765d82" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2F6c21uZXQ1ODE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "916fd1f6-479d-44d7-a916-3f44b8612994" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5816\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b2f17f49-1c3a-4a0f-83f4-4baeaeb4d471\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6005\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/gatewayIPConfigurations/azsmnet6005\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet1422\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1400\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet6012\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet8510\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet667\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3426\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9377\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet9782\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5127\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/authenticationCertificates/azsmnet1422\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5077\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet8510\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet7866\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendIPConfigurations/azsmnet1400\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/frontendPorts/azsmnet667\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6462\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet6462\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet5077\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9951\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/requestRoutingRules/azsmnet9951\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/httpListeners/azsmnet7866\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9977\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/probes/azsmnet9977\",\r\n \"etag\": \"W/\\\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2681,7 +2965,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:21:55 GMT" + "Wed, 15 Feb 2017 06:44:04 GMT" ], "Pragma": [ "no-cache" @@ -2690,7 +2974,7 @@ "chunked" ], "ETag": [ - "W/\"82e0da5e-f7cf-45fc-acd9-984152fea6f2\"" + "W/\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2700,44 +2984,36 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b9c3c3c7-ed35-4c78-8ca8-421c234ed8c9" + "12086126-14f6-4115-94f4-e3fcf6f59beb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14997" ], "x-ms-correlation-request-id": [ - "b984a019-1944-4afd-86e7-515bbc1ff4b5" + "4a815a3c-3c6a-445a-835d-b65a9a5756b7" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192155Z:b984a019-1944-4afd-86e7-515bbc1ff4b5" + "CENTRALUS:20170215T064404Z:4a815a3c-3c6a-445a-835d-b65a9a5756b7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendhealth?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2F6c21uZXQ1ODE2L2JhY2tlbmRoZWFsdGg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b4053b4a-a5e0-4a8a-9c6c-8d01ef393878" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2748,13 +3024,13 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:14:50 GMT" + "Wed, 15 Feb 2017 06:31:22 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operationResults/aefa655f-9b46-48f0-8893-00237860dd06?api-version=2016-09-01" + "Transfer-Encoding": [ + "chunked" ], "Retry-After": [ "10" @@ -2763,39 +3039,40 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "aefa655f-9b46-48f0-8893-00237860dd06" + "5d9553fe-326c-49cc-9cf6-6e2594cab7af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" ], "x-ms-correlation-request-id": [ - "2be7d2d7-f7eb-4299-812b-dcdb7456ba87" + "025a039f-15b1-419d-aec3-6bd0a496de38" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191451Z:2be7d2d7-f7eb-4299-812b-dcdb7456ba87" + "CENTRALUS:20170215T063122Z:025a039f-15b1-419d-aec3-6bd0a496de38" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operationResults/aefa655f-9b46-48f0-8893-00237860dd06?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9hZWZhNjU1Zi05YjQ2LTQ4ZjAtODg5My0wMDIzNzg2MGRkMDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2806,13 +3083,13 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:21 GMT" + "Wed, 15 Feb 2017 06:31:52 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operationResults/aefa655f-9b46-48f0-8893-00237860dd06?api-version=2016-09-01" + "Transfer-Encoding": [ + "chunked" ], "Retry-After": [ "10" @@ -2821,35 +3098,39 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "aefa655f-9b46-48f0-8893-00237860dd06" + "cf2321c7-59ba-40cf-99ab-6f2bc24f318a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14992" ], "x-ms-correlation-request-id": [ - "e7562e7b-ff96-4d92-9e15-0cf0107e4843" + "2d81a75a-f9fa-481f-8b79-9459e513aae5" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191521Z:e7562e7b-ff96-4d92-9e15-0cf0107e4843" + "CENTRALUS:20170215T063153Z:2d81a75a-f9fa-481f-8b79-9459e513aae5" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operationResults/aefa655f-9b46-48f0-8893-00237860dd06?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9hZWZhNjU1Zi05YjQ2LTQ4ZjAtODg5My0wMDIzNzg2MGRkMDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet3426\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet9782\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unknown\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Unknown\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendHttpSettingsCollection/azsmnet5127\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unknown\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Unknown\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2861,7 +3142,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:50 GMT" + "Wed, 15 Feb 2017 06:32:22 GMT" ], "Pragma": [ "no-cache" @@ -2869,8 +3150,8 @@ "Transfer-Encoding": [ "chunked" ], - "Location": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operationResults/aefa655f-9b46-48f0-8893-00237860dd06?api-version=2016-09-01" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2880,50 +3161,36 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aefa655f-9b46-48f0-8893-00237860dd06" + "9f1cebbc-8953-41a3-9703-3247fba99bea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14991" ], "x-ms-correlation-request-id": [ - "01a406e5-e476-439b-90ae-1a5cba4ff294" + "e3fe1b0a-21b8-40c5-ba6f-ef6136501c95" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191551Z:01a406e5-e476-439b-90ae-1a5cba4ff294" + "CENTRALUS:20170215T063223Z:e3fe1b0a-21b8-40c5-ba6f-ef6136501c95" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzY1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "470" - ], - "x-ms-client-request-id": [ - "2261a0f1-ff39-43fb-872d-4c657266cb94" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3657\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657\",\r\n \"etag\": \"W/\\\"6f8a688b-5658-4f44-bea0-1b461027ae46\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7108889d-4a7b-40a6-87af-ae39f8161cf7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"6f8a688b-5658-4f44-bea0-1b461027ae46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1506" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2934,59 +3201,54 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:52 GMT" + "Wed, 15 Feb 2017 06:32:53 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "3a75712a-b69b-4a07-b868-eee0ada5c5f7" + "Vary": [ + "Accept-Encoding" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/3a75712a-b69b-4a07-b868-eee0ada5c5f7?api-version=2016-09-01" + "x-ms-request-id": [ + "99cc3cef-c2a2-4fca-88eb-831e81f96ad8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-correlation-request-id": [ - "c621df35-fe1a-4c91-b2b8-dac915e74285" + "1ee5b5d2-8bdd-4311-a876-2ed62663f238" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191552Z:c621df35-fe1a-4c91-b2b8-dac915e74285" + "CENTRALUS:20170215T063253Z:1ee5b5d2-8bdd-4311-a876-2ed62663f238" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzY1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9377\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6f8a688b-5658-4f44-bea0-1b461027ae46\\\"\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"7108889d-4a7b-40a6-87af-ae39f8161cf7\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6f8a688b-5658-4f44-bea0-1b461027ae46\\\"\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1966" - ], - "x-ms-client-request-id": [ - "a16857e1-78cb-479d-9e6f-824cdeeea43a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3657\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657\",\r\n \"etag\": \"W/\\\"2c920d8e-2397-4e61-889f-38a1f4da0142\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7108889d-4a7b-40a6-87af-ae39f8161cf7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2c920d8e-2397-4e61-889f-38a1f4da0142\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2998,7 +3260,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:52 GMT" + "Wed, 15 Feb 2017 06:33:23 GMT" ], "Pragma": [ "no-cache" @@ -3017,37 +3279,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d9064127-d4d0-4bf6-a055-a03ce6170a63" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/d9064127-d4d0-4bf6-a055-a03ce6170a63?api-version=2016-09-01" + "76d399fd-eabd-416e-a33c-f0e30a0b56aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" ], "x-ms-correlation-request-id": [ - "216a445a-c1ac-4211-a8aa-c43c996255c4" + "8dd5429e-5f68-46bd-aff5-3614f4f7701c" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191553Z:216a445a-c1ac-4211-a8aa-c43c996255c4" + "CENTRALUS:20170215T063324Z:8dd5429e-5f68-46bd-aff5-3614f4f7701c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzY1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3657\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657\",\r\n \"etag\": \"W/\\\"6f8a688b-5658-4f44-bea0-1b461027ae46\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7108889d-4a7b-40a6-87af-ae39f8161cf7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"6f8a688b-5658-4f44-bea0-1b461027ae46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3059,7 +3319,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:52 GMT" + "Wed, 15 Feb 2017 06:33:53 GMT" ], "Pragma": [ "no-cache" @@ -3067,8 +3327,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"6f8a688b-5658-4f44-bea0-1b461027ae46\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3078,40 +3338,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0ce3ed4a-6adc-4e93-984a-e945d265fb34" + "1f6f930f-dd88-4a90-8ba4-e73b2fcef1b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14988" ], "x-ms-correlation-request-id": [ - "ad4f83b2-cf82-4f16-8916-131596160d7c" + "fa3a26e8-a72b-4600-8507-623ed59bbb15" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191552Z:ad4f83b2-cf82-4f16-8916-131596160d7c" + "CENTRALUS:20170215T063354Z:fa3a26e8-a72b-4600-8507-623ed59bbb15" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzY1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a5ccb902-7556-423e-ad1f-f29a55a66227" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3657\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657\",\r\n \"etag\": \"W/\\\"6f8a688b-5658-4f44-bea0-1b461027ae46\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7108889d-4a7b-40a6-87af-ae39f8161cf7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"6f8a688b-5658-4f44-bea0-1b461027ae46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3123,7 +3378,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:52 GMT" + "Wed, 15 Feb 2017 06:34:24 GMT" ], "Pragma": [ "no-cache" @@ -3131,8 +3386,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"6f8a688b-5658-4f44-bea0-1b461027ae46\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3142,34 +3397,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2a41f348-afc1-423a-ad2b-a8a84c0e098c" + "422aef92-fea8-4234-93b8-898478412b27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14987" ], "x-ms-correlation-request-id": [ - "7a73939a-3de5-4860-934f-58fe4df58130" + "f3ad4300-a3e7-41c4-8672-fce49f090d5f" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191552Z:7a73939a-3de5-4860-934f-58fe4df58130" + "CENTRALUS:20170215T063424Z:f3ad4300-a3e7-41c4-8672-fce49f090d5f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzY1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3657\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657\",\r\n \"etag\": \"W/\\\"c4ca8dba-6822-46ac-989e-bf6667cd7292\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7108889d-4a7b-40a6-87af-ae39f8161cf7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3657/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"c4ca8dba-6822-46ac-989e-bf6667cd7292\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3181,7 +3437,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:18:53 GMT" + "Wed, 15 Feb 2017 06:34:54 GMT" ], "Pragma": [ "no-cache" @@ -3189,8 +3445,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"c4ca8dba-6822-46ac-989e-bf6667cd7292\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3200,50 +3456,36 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0541875d-5b98-4a27-9cfe-3457f1f75f97" + "89048c86-ad82-4eb4-8e01-0390816aa5e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14986" ], "x-ms-correlation-request-id": [ - "f8233fc9-fbb5-4102-a8ab-7fc160c13e4c" + "b6168ec2-beb5-416e-a6ac-54f96c330212" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191854Z:f8233fc9-fbb5-4102-a8ab-7fc160c13e4c" + "CENTRALUS:20170215T063455Z:b6168ec2-beb5-416e-a6ac-54f96c330212" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzM0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "470" - ], - "x-ms-client-request-id": [ - "8abb232b-c7e4-4165-9c1b-aac046fd338d" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3349\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349\",\r\n \"etag\": \"W/\\\"b869e0cc-4c72-42d5-b410-5c47f2715528\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a998773-c259-4ad8-ab9a-a7bd08531287\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b869e0cc-4c72-42d5-b410-5c47f2715528\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1506" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -3254,59 +3496,113 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:52 GMT" + "Wed, 15 Feb 2017 06:35:25 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "313c4977-a4df-4846-b24a-8c4f10ba3926" + "Vary": [ + "Accept-Encoding" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/313c4977-a4df-4846-b24a-8c4f10ba3926?api-version=2016-09-01" + "x-ms-request-id": [ + "79073859-567e-4974-ad7e-d40a4620bb3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" ], "x-ms-correlation-request-id": [ - "a1e3bb77-b31c-4400-9390-3d524cd3dd86" + "13dcc8cc-c212-4240-a2ce-90666b0881e5" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191553Z:a1e3bb77-b31c-4400-9390-3d524cd3dd86" + "CENTRALUS:20170215T063525Z:13dcc8cc-c212-4240-a2ce-90666b0881e5" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzM0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9377\",\r\n \"etag\": \"W/\\\"a63b9c99-8fa8-44b3-9e8c-ad42c36fb8cf\\\"\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"b869e0cc-4c72-42d5-b410-5c47f2715528\\\"\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"3a998773-c259-4ad8-ab9a-a7bd08531287\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"b869e0cc-4c72-42d5-b410-5c47f2715528\\\"\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "1966" + "Expires": [ + "-1" ], - "x-ms-client-request-id": [ - "ccf626f9-8387-4e11-b9cd-70bac21be777" + "Cache-Control": [ + "no-cache" ], - "accept-language": [ - "en-US" + "Date": [ + "Wed, 15 Feb 2017 06:35:56 GMT" ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "75044b96-b044-42d0-af08-a1d8bbab74b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "ccad75cd-a010-44b0-8acc-dcf691df6371" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170215T063556Z:ccad75cd-a010-44b0-8acc-dcf691df6371" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3349\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349\",\r\n \"etag\": \"W/\\\"b83d3a68-451f-45e4-9997-f5402488191c\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3a998773-c259-4ad8-ab9a-a7bd08531287\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b83d3a68-451f-45e4-9997-f5402488191c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3318,7 +3614,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:18:54 GMT" + "Wed, 15 Feb 2017 06:36:26 GMT" ], "Pragma": [ "no-cache" @@ -3337,37 +3633,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dd54e887-6cad-484b-a30d-5a3dad8b80a0" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/dd54e887-6cad-484b-a30d-5a3dad8b80a0?api-version=2016-09-01" + "55c79dd9-0834-4ecf-8d35-76dfbb39a509" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" ], "x-ms-correlation-request-id": [ - "b77fd867-3b39-4846-9029-0787cb808a75" + "1ccbb544-a3a0-4a82-8d18-4a7674388944" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191854Z:b77fd867-3b39-4846-9029-0787cb808a75" + "CENTRALUS:20170215T063626Z:1ccbb544-a3a0-4a82-8d18-4a7674388944" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzM0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3349\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349\",\r\n \"etag\": \"W/\\\"b869e0cc-4c72-42d5-b410-5c47f2715528\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a998773-c259-4ad8-ab9a-a7bd08531287\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b869e0cc-4c72-42d5-b410-5c47f2715528\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3379,7 +3673,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:52 GMT" + "Wed, 15 Feb 2017 06:36:56 GMT" ], "Pragma": [ "no-cache" @@ -3387,8 +3681,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"b869e0cc-4c72-42d5-b410-5c47f2715528\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3398,40 +3692,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4f91a7b0-bae0-48ce-8f27-e255dfd6e9c4" + "d3508fc5-5fad-4dbd-b51c-9013b2cc720a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14982" ], "x-ms-correlation-request-id": [ - "e4d0102d-ec91-4050-983e-de6247ba9b44" + "aba1e8ca-9c70-44bd-be5e-b69164df2f6d" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191553Z:e4d0102d-ec91-4050-983e-de6247ba9b44" + "CENTRALUS:20170215T063656Z:aba1e8ca-9c70-44bd-be5e-b69164df2f6d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzM0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d0601582-536c-4a9e-b5ad-b48da26c7ed5" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3349\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349\",\r\n \"etag\": \"W/\\\"b869e0cc-4c72-42d5-b410-5c47f2715528\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a998773-c259-4ad8-ab9a-a7bd08531287\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b869e0cc-4c72-42d5-b410-5c47f2715528\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3443,7 +3732,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:15:52 GMT" + "Wed, 15 Feb 2017 06:37:26 GMT" ], "Pragma": [ "no-cache" @@ -3451,8 +3740,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"b869e0cc-4c72-42d5-b410-5c47f2715528\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3462,34 +3751,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "756939e5-78af-4cd5-aa2b-cb8c45ea4e16" + "3a50fb9b-cbc4-4bf9-ba45-c5560eb7d58b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14981" ], "x-ms-correlation-request-id": [ - "09fb5fe9-f1c9-4d91-8498-8b47ee6b23de" + "9f4658ec-a311-4382-801e-a7884383cc36" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191553Z:09fb5fe9-f1c9-4d91-8498-8b47ee6b23de" + "CENTRALUS:20170215T063727Z:9f4658ec-a311-4382-801e-a7884383cc36" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0MzM0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3349\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349\",\r\n \"etag\": \"W/\\\"c9fd30c3-6f45-42e7-9550-f2ac82f0efae\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a998773-c259-4ad8-ab9a-a7bd08531287\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/networkInterfaces/azsmnet3349/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"c9fd30c3-6f45-42e7-9550-f2ac82f0efae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/virtualNetworks/azsmnet5442/subnets/azsmnet3173\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/backendAddressPools/azsmnet9377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"z2h4ihzhl1aufnnnkuhewceueh.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3501,7 +3791,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:21:54 GMT" + "Wed, 15 Feb 2017 06:37:56 GMT" ], "Pragma": [ "no-cache" @@ -3509,8 +3799,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"c9fd30c3-6f45-42e7-9550-f2ac82f0efae\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3520,31 +3810,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "914c5052-ae29-4502-985b-f3b1259c8de6" + "775cae85-1eb7-4843-9d43-65d2d06fd9e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14980" ], "x-ms-correlation-request-id": [ - "d01838ab-d19d-41cc-a0b3-c5846ef2601b" + "e63cba51-35a2-4d25-8dab-ea41ce1d30c3" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192155Z:d01838ab-d19d-41cc-a0b3-c5846ef2601b" + "CENTRALUS:20170215T063757Z:e63cba51-35a2-4d25-8dab-ea41ce1d30c3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/d9064127-d4d0-4bf6-a055-a03ce6170a63?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kOTA2NDEyNy1kNGQwLTRiZjYtYTA1NS1hMDNjZTYxNzBhNjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3559,7 +3850,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:16:23 GMT" + "Wed, 15 Feb 2017 06:38:27 GMT" ], "Pragma": [ "no-cache" @@ -3567,6 +3858,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3575,31 +3869,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "746707c6-865f-461b-b90f-efc6691d3b94" + "59a9d280-8587-4ab7-827d-783dcf6e676a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14979" ], "x-ms-correlation-request-id": [ - "238dd92f-e85e-45c6-98c2-e4bebd5bbfa7" + "97d40bc0-919b-4fc5-bf25-8c41a8bc3597" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191623Z:238dd92f-e85e-45c6-98c2-e4bebd5bbfa7" + "CENTRALUS:20170215T063827Z:97d40bc0-919b-4fc5-bf25-8c41a8bc3597" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/d9064127-d4d0-4bf6-a055-a03ce6170a63?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kOTA2NDEyNy1kNGQwLTRiZjYtYTA1NS1hMDNjZTYxNzBhNjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3614,7 +3909,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:16:53 GMT" + "Wed, 15 Feb 2017 06:38:58 GMT" ], "Pragma": [ "no-cache" @@ -3622,6 +3917,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3630,31 +3928,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3cec442d-b6df-466f-8c5c-f98e98ed6194" + "9b1d2d3b-5891-474b-9b32-eb442cd92a52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14978" ], "x-ms-correlation-request-id": [ - "92b12ecc-75c7-4fe3-8838-a2e52d269b97" + "47d3a78c-e086-4aee-85e2-e74088bc8e35" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191653Z:92b12ecc-75c7-4fe3-8838-a2e52d269b97" + "CENTRALUS:20170215T063858Z:47d3a78c-e086-4aee-85e2-e74088bc8e35" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/d9064127-d4d0-4bf6-a055-a03ce6170a63?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kOTA2NDEyNy1kNGQwLTRiZjYtYTA1NS1hMDNjZTYxNzBhNjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3669,7 +3968,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:17:23 GMT" + "Wed, 15 Feb 2017 06:39:28 GMT" ], "Pragma": [ "no-cache" @@ -3677,6 +3976,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3685,31 +3987,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92cb93c5-f7ea-4cdd-a9a9-41a66e6ad484" + "a33220c7-9d62-40eb-b9b0-63a3891e8c36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14977" ], "x-ms-correlation-request-id": [ - "631440ee-adf2-46c0-ad59-3ce0b5fcc17b" + "820cb1b2-b90d-4317-9a7d-11fab76bd716" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191723Z:631440ee-adf2-46c0-ad59-3ce0b5fcc17b" + "CENTRALUS:20170215T063928Z:820cb1b2-b90d-4317-9a7d-11fab76bd716" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/d9064127-d4d0-4bf6-a055-a03ce6170a63?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kOTA2NDEyNy1kNGQwLTRiZjYtYTA1NS1hMDNjZTYxNzBhNjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3724,7 +4027,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:17:53 GMT" + "Wed, 15 Feb 2017 06:39:58 GMT" ], "Pragma": [ "no-cache" @@ -3732,6 +4035,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3740,34 +4046,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ace0f2d8-c5d2-41e8-85d2-c86231ce4268" + "8660098c-0633-484d-82d4-00501eb0bac9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14976" ], "x-ms-correlation-request-id": [ - "76afb705-b0bb-43be-896d-ed8031f1752a" + "1b041af5-71db-49e0-a1c7-696a684aea84" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191753Z:76afb705-b0bb-43be-896d-ed8031f1752a" + "CENTRALUS:20170215T063959Z:1b041af5-71db-49e0-a1c7-696a684aea84" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/d9064127-d4d0-4bf6-a055-a03ce6170a63?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kOTA2NDEyNy1kNGQwLTRiZjYtYTA1NS1hMDNjZTYxNzBhNjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3779,7 +4086,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:18:23 GMT" + "Wed, 15 Feb 2017 06:40:29 GMT" ], "Pragma": [ "no-cache" @@ -3795,34 +4102,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a7152ea4-9f5e-4871-9fa2-a3e893f676ce" + "41e48435-ecc4-4e6d-a80a-4bdb40ee6836" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14975" ], "x-ms-correlation-request-id": [ - "4b0d44d1-cf8d-43bf-a076-8d0401c3e912" + "ef7413fb-67d7-4346-82f5-ad4b4e2d9ce5" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191823Z:4b0d44d1-cf8d-43bf-a076-8d0401c3e912" + "CENTRALUS:20170215T064029Z:ef7413fb-67d7-4346-82f5-ad4b4e2d9ce5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/d9064127-d4d0-4bf6-a055-a03ce6170a63?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kOTA2NDEyNy1kNGQwLTRiZjYtYTA1NS1hMDNjZTYxNzBhNjM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3834,7 +4142,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:18:53 GMT" + "Wed, 15 Feb 2017 06:41:00 GMT" ], "Pragma": [ "no-cache" @@ -3842,6 +4150,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3850,31 +4161,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "429f2b9d-54b2-4ad5-9c9f-451086c38d4b" + "450b8168-e034-41b2-b403-8a36c3378080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14973" ], "x-ms-correlation-request-id": [ - "b9a027e6-d3c4-4e04-bd8c-22fe27fb3963" + "6283fa3c-13f1-47c2-afc8-005cf23935dd" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191854Z:b9a027e6-d3c4-4e04-bd8c-22fe27fb3963" + "CENTRALUS:20170215T064101Z:6283fa3c-13f1-47c2-afc8-005cf23935dd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/dd54e887-6cad-484b-a30d-5a3dad8b80a0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kZDU0ZTg4Ny02Y2FkLTQ4NGItYTMwZC01YTNkYWQ4YjgwYTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3889,7 +4201,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:19:24 GMT" + "Wed, 15 Feb 2017 06:41:30 GMT" ], "Pragma": [ "no-cache" @@ -3897,6 +4209,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3905,31 +4220,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5d4fb554-a525-4983-baa2-e1dbd881dd30" + "4bd44328-f2d1-4431-90db-953fec74ab1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14972" ], "x-ms-correlation-request-id": [ - "dc26f643-d2ca-46b2-994d-5d7279d40808" + "4143ee37-f7db-4e08-b0d2-ba5412d9b1cd" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191924Z:dc26f643-d2ca-46b2-994d-5d7279d40808" + "CENTRALUS:20170215T064131Z:4143ee37-f7db-4e08-b0d2-ba5412d9b1cd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/dd54e887-6cad-484b-a30d-5a3dad8b80a0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kZDU0ZTg4Ny02Y2FkLTQ4NGItYTMwZC01YTNkYWQ4YjgwYTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3944,7 +4260,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:19:54 GMT" + "Wed, 15 Feb 2017 06:42:01 GMT" ], "Pragma": [ "no-cache" @@ -3952,6 +4268,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3960,31 +4279,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0c7de6f7-3e65-4d4e-8c3f-beb812bfa2fc" + "007c9cbf-fb24-4f43-84eb-936eb3564e65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14971" ], "x-ms-correlation-request-id": [ - "51df0717-3e12-47f0-98bf-f0313c11f66a" + "1a185cf3-111b-4528-8439-c788e345e271" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T191954Z:51df0717-3e12-47f0-98bf-f0313c11f66a" + "CENTRALUS:20170215T064201Z:1a185cf3-111b-4528-8439-c788e345e271" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/dd54e887-6cad-484b-a30d-5a3dad8b80a0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kZDU0ZTg4Ny02Y2FkLTQ4NGItYTMwZC01YTNkYWQ4YjgwYTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3999,7 +4319,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:20:24 GMT" + "Wed, 15 Feb 2017 06:42:32 GMT" ], "Pragma": [ "no-cache" @@ -4007,6 +4327,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -4015,31 +4338,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1b636ca8-aa9f-409c-8118-028a5dd8659a" + "03c54ead-fa6a-485f-b31e-afcd61e0dd07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14970" ], "x-ms-correlation-request-id": [ - "cb4ee911-e308-4edf-88e3-f772e4cdd4c8" + "7c3e0380-d7cd-46ca-beed-23121070b5fd" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192024Z:cb4ee911-e308-4edf-88e3-f772e4cdd4c8" + "CENTRALUS:20170215T064232Z:7c3e0380-d7cd-46ca-beed-23121070b5fd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/dd54e887-6cad-484b-a30d-5a3dad8b80a0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kZDU0ZTg4Ny02Y2FkLTQ4NGItYTMwZC01YTNkYWQ4YjgwYTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4054,7 +4378,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:20:54 GMT" + "Wed, 15 Feb 2017 06:43:02 GMT" ], "Pragma": [ "no-cache" @@ -4062,6 +4386,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -4070,31 +4397,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "91f9e3d5-7d55-45ff-ba11-1e65ffe347c2" + "9c0349f1-5646-4e83-80df-dca41c53064b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14969" ], "x-ms-correlation-request-id": [ - "7f881123-eeb0-4496-9d12-ad5ce6bdd19b" + "01db4140-0b8a-4dcf-9c24-0d253a48a99c" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192054Z:7f881123-eeb0-4496-9d12-ad5ce6bdd19b" + "CENTRALUS:20170215T064302Z:01db4140-0b8a-4dcf-9c24-0d253a48a99c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/dd54e887-6cad-484b-a30d-5a3dad8b80a0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kZDU0ZTg4Ny02Y2FkLTQ4NGItYTMwZC01YTNkYWQ4YjgwYTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4109,7 +4437,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:21:24 GMT" + "Wed, 15 Feb 2017 06:43:32 GMT" ], "Pragma": [ "no-cache" @@ -4117,6 +4445,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -4125,31 +4456,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "81b98a92-3e49-4e63-9c44-3326095e1ddd" + "85819383-0eb1-4cdc-ab8c-03bf2de6a814" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14999" ], "x-ms-correlation-request-id": [ - "801e96ab-26c1-48a0-9bc6-ba7021d3d105" + "35d638f5-6ae9-4f21-8281-cef8d0f03ebd" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192125Z:801e96ab-26c1-48a0-9bc6-ba7021d3d105" + "CENTRALUS:20170215T064333Z:35d638f5-6ae9-4f21-8281-cef8d0f03ebd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/dd54e887-6cad-484b-a30d-5a3dad8b80a0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kZDU0ZTg4Ny02Y2FkLTQ4NGItYTMwZC01YTNkYWQ4YjgwYTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4164,7 +4496,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:21:54 GMT" + "Wed, 15 Feb 2017 06:44:03 GMT" ], "Pragma": [ "no-cache" @@ -4180,37 +4512,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "827a7932-a6c7-4fa4-98b3-d67b4d8b4586" + "3e05fed9-1a32-4a66-ac70-7e170645b844" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14998" ], "x-ms-correlation-request-id": [ - "16d33a94-7722-4e59-8c09-1f58b907186d" + "8e1844ee-e11c-43c9-b9e8-ced4f57c53fc" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192155Z:16d33a94-7722-4e59-8c09-1f58b907186d" + "CENTRALUS:20170215T064403Z:8e1844ee-e11c-43c9-b9e8-ced4f57c53fc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/start?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2F6c21uZXQ1ODE2L3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1924acd-81b3-481d-84c5-26d372e741ab" + "28a6eea0-faab-466c-8991-c9592396d220" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "", @@ -4225,53 +4558,54 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:21:55 GMT" + "Wed, 15 Feb 2017 06:44:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operationResults/fd84729b-25ee-40cd-a46b-cac7fa3b1fe9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fd84729b-25ee-40cd-a46b-cac7fa3b1fe9" + "796a9be1-c827-490e-b609-a4ad9394d044" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/fd84729b-25ee-40cd-a46b-cac7fa3b1fe9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "434202c6-6176-4699-b821-a04fbf5a5f5d" + "862caf86-6e94-4e1d-bbe1-0980783d6381" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192155Z:434202c6-6176-4699-b821-a04fbf5a5f5d" + "CENTRALUS:20170215T064404Z:862caf86-6e94-4e1d-bbe1-0980783d6381" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816/stop?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2F6c21uZXQ1ODE2L3N0b3A/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cf51172-a380-4e29-bec2-a005f43b5ea3" + "da8b1d86-c53c-4ec8-8bb6-a706c30a22ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "", @@ -4286,13 +4620,13 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:21:55 GMT" + "Wed, 15 Feb 2017 06:44:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operationResults/6b5a28fb-d487-4180-8d51-c7d0f196b26b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -4302,34 +4636,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6b5a28fb-d487-4180-8d51-c7d0f196b26b" + "a3f3b726-de0a-4182-9301-e00e9195aba1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/6b5a28fb-d487-4180-8d51-c7d0f196b26b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "d5ca8f44-e7c6-4d1b-aca7-b9978e115bd4" + "bb0f4506-dfaf-4279-b000-3eee7134515a" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192156Z:d5ca8f44-e7c6-4d1b-aca7-b9978e115bd4" + "CENTRALUS:20170215T064405Z:bb0f4506-dfaf-4279-b000-3eee7134515a" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/6b5a28fb-d487-4180-8d51-c7d0f196b26b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YjVhMjhmYi1kNDg3LTQxODAtOGQ1MS1jN2QwZjE5NmIyNmI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4344,7 +4679,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:22:25 GMT" + "Wed, 15 Feb 2017 06:44:35 GMT" ], "Pragma": [ "no-cache" @@ -4352,6 +4687,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -4360,31 +4698,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2ab4b20d-6ba3-4fc3-961e-370f3d4faa0d" + "43a3c893-9fe4-4a65-9074-e974f4afdb93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14995" ], "x-ms-correlation-request-id": [ - "2320baaa-02c8-4ef5-a5c4-e59513f0bf11" + "3eb11df9-e9aa-44d4-b409-56fd417396bc" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192226Z:2320baaa-02c8-4ef5-a5c4-e59513f0bf11" + "CENTRALUS:20170215T064435Z:3eb11df9-e9aa-44d4-b409-56fd417396bc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/6b5a28fb-d487-4180-8d51-c7d0f196b26b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YjVhMjhmYi1kNDg3LTQxODAtOGQ1MS1jN2QwZjE5NmIyNmI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4399,7 +4738,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:22:55 GMT" + "Wed, 15 Feb 2017 06:45:05 GMT" ], "Pragma": [ "no-cache" @@ -4407,6 +4746,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -4415,31 +4757,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dba23aad-54d4-4919-9946-5edd71ac29bb" + "dba3b76e-a8e1-4207-a48e-a71fc6445d3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14994" ], "x-ms-correlation-request-id": [ - "c69794fe-e94a-4e8d-8e31-930353886821" + "a03e2bed-226b-4c21-9f85-1c7faf5ca753" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192256Z:c69794fe-e94a-4e8d-8e31-930353886821" + "CENTRALUS:20170215T064506Z:a03e2bed-226b-4c21-9f85-1c7faf5ca753" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/6b5a28fb-d487-4180-8d51-c7d0f196b26b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YjVhMjhmYi1kNDg3LTQxODAtOGQ1MS1jN2QwZjE5NmIyNmI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4454,7 +4797,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:23:25 GMT" + "Wed, 15 Feb 2017 06:45:36 GMT" ], "Pragma": [ "no-cache" @@ -4462,6 +4805,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -4470,31 +4816,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "70b81758-1390-4a7e-8801-cccec0d0c77b" + "9b31e572-145c-4255-8cf0-8da3163c213a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14993" ], "x-ms-correlation-request-id": [ - "8b366adf-c10a-4574-85d3-d933fdfd60ba" + "58764999-f236-4207-bde3-1524f70ef9a7" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192326Z:8b366adf-c10a-4574-85d3-d933fdfd60ba" + "CENTRALUS:20170215T064536Z:58764999-f236-4207-bde3-1524f70ef9a7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/6b5a28fb-d487-4180-8d51-c7d0f196b26b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YjVhMjhmYi1kNDg3LTQxODAtOGQ1MS1jN2QwZjE5NmIyNmI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4509,7 +4856,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:23:55 GMT" + "Wed, 15 Feb 2017 06:46:06 GMT" ], "Pragma": [ "no-cache" @@ -4525,37 +4872,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9fe63cb7-0c8f-45dc-9920-444415406cac" + "bba89165-3e48-4246-aadf-76c872485ab0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14992" ], "x-ms-correlation-request-id": [ - "477ead68-d0bf-4d27-bae4-98a9d64d368a" + "419f83e4-5448-4b8a-a7bd-240a21056c82" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192356Z:477ead68-d0bf-4d27-bae4-98a9d64d368a" + "CENTRALUS:20170215T064607Z:419f83e4-5448-4b8a-a7bd-240a21056c82" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/resourceGroups/csmrg769/providers/Microsoft.Network/applicationGateways/azsmnet5816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2F6c21uZXQ1ODE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5505544-69a4-4939-88e1-b3d034f865f7" + "26a37aba-7ddf-4b09-b56d-a6ab3a908002" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "", @@ -4570,13 +4918,13 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:23:56 GMT" + "Wed, 15 Feb 2017 06:46:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operationResults/0c452f32-7200-475d-8944-eec5e2843dd0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -4586,34 +4934,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0c452f32-7200-475d-8944-eec5e2843dd0" + "2f925788-a452-4929-b3ca-ea32aa3a2049" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/0c452f32-7200-475d-8944-eec5e2843dd0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "9fbbbb8a-a969-491a-8fe0-aeb86b2393a9" + "f80f1bc2-5468-418d-ae64-131e6f1f959f" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192356Z:9fbbbb8a-a969-491a-8fe0-aeb86b2393a9" + "CENTRALUS:20170215T064607Z:f80f1bc2-5468-418d-ae64-131e6f1f959f" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/0c452f32-7200-475d-8944-eec5e2843dd0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wYzQ1MmYzMi03MjAwLTQ3NWQtODk0NC1lZWM1ZTI4NDNkZDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Feb 2017 06:46:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "27928e5f-f661-4b60-8416-2c649e9bb4ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "b1013732-7544-4b27-95f1-4080b1ad73b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170215T064638Z:b1013732-7544-4b27-95f1-4080b1ad73b5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4628,7 +5036,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:24:28 GMT" + "Wed, 15 Feb 2017 06:47:07 GMT" ], "Pragma": [ "no-cache" @@ -4636,6 +5044,9 @@ "Transfer-Encoding": [ "chunked" ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -4644,31 +5055,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2fff425a-5b6b-4c4f-be51-66852e796140" + "7c754182-d2e5-4e91-a739-7576f67eb9a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14990" ], "x-ms-correlation-request-id": [ - "79e18856-a073-49e7-bf4a-385a04186f50" + "6182935e-7800-4d81-9258-dadb60464787" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192428Z:79e18856-a073-49e7-bf4a-385a04186f50" + "CENTRALUS:20170215T064708Z:6182935e-7800-4d81-9258-dadb60464787" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0a4ae132-d38b-487e-9051-a22d852b2834/providers/Microsoft.Network/locations/westus.validation/operations/0c452f32-7200-475d-8944-eec5e2843dd0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGE0YWUxMzItZDM4Yi00ODdlLTkwNTEtYTIyZDg1MmIyODM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wYzQ1MmYzMi03MjAwLTQ3NWQtODk0NC1lZWM1ZTI4NDNkZDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkManagementClient/7.1.2-preview" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4683,7 +5095,7 @@ "no-cache" ], "Date": [ - "Wed, 21 Sep 2016 19:24:58 GMT" + "Wed, 15 Feb 2017 06:47:38 GMT" ], "Pragma": [ "no-cache" @@ -4699,19 +5111,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "39af0181-609a-40b0-abdf-a3d97c5618b1" + "f1a97006-4989-4aa5-8cfb-440d174a51f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14989" ], "x-ms-correlation-request-id": [ - "952037f9-24d0-474f-83fd-6ac37c1b41f5" + "26e78f73-2837-4960-a0c4-d88f01211ad1" ], "x-ms-routing-request-id": [ - "WESTUS:20160921T192459Z:952037f9-24d0-474f-83fd-6ac37c1b41f5" + "CENTRALUS:20170215T064738Z:26e78f73-2837-4960-a0c4-d88f01211ad1" ] }, "StatusCode": 200 @@ -4719,33 +5131,33 @@ ], "Names": { "ApplicationGatewayApiTest": [ - "csmrg769", - "azsmnet5442", - "azsmnet6012", - "azsmnet3173", - "azsmnet5816", - "azsmnet3657", - "azsmnet3349" + "csmrg1399", + "azsmnet8548", + "azsmnet5890", + "azsmnet5901", + "azsmnet5344", + "azsmnet4961", + "azsmnet6912" ], "CreateApplicationGateway": [ - "azsmnet6005", - "azsmnet1400", - "azsmnet8510", - "azsmnet667", - "azsmnet3426", - "azsmnet9377", - "azsmnet9782", - "azsmnet5127", - "azsmnet6462", - "azsmnet9951", - "azsmnet5077", - "azsmnet7866", - "azsmnet9977", - "azsmnet9992", - "azsmnet1422" + "azsmnet3365", + "azsmnet6124", + "azsmnet2727", + "azsmnet9197", + "azsmnet9593", + "azsmnet6875", + "azsmnet1710", + "azsmnet9515", + "azsmnet1800", + "azsmnet3533", + "azsmnet5067", + "azsmnet8609", + "azsmnet2218", + "azsmnet1430", + "azsmnet4388" ] }, "Variables": { - "SubscriptionId": "0a4ae132-d38b-487e-9051-a22d852b2834" + "SubscriptionId": "70a5cb48-f9db-44e5-b819-936d54cc83d4" } } \ No newline at end of file diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 8bd32659b04b..70f57d9158f2 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -202,6 +202,11 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn { Id = GetChildAppGwResourceId(subscriptionId, resourceGroupName, appGwName, "probes", probeName) + }, + ConnectionDraining = new ApplicationGatewayConnectionDraining() + { + Enabled = true, + DrainTimeoutInSec = 42 } }, new ApplicationGatewayBackendHttpSettings() @@ -400,6 +405,19 @@ private void CompareApplicationGateway(ApplicationGateway gw1, ApplicationGatewa Assert.Equal(gw1.Probes.Count, gw2.Probes.Count); Assert.Equal(gw1.BackendAddressPools.Count, gw2.BackendAddressPools.Count); Assert.Equal(gw1.BackendHttpSettingsCollection.Count, gw2.BackendHttpSettingsCollection.Count); + for(int i = 0; i < gw1.BackendHttpSettingsCollection.Count; i++) + { + if(gw1.BackendHttpSettingsCollection[i].ConnectionDraining != null) + { + Assert.NotNull(gw2.BackendHttpSettingsCollection[i].ConnectionDraining); + Assert.Equal(gw1.BackendHttpSettingsCollection[i].ConnectionDraining.Enabled, gw2.BackendHttpSettingsCollection[i].ConnectionDraining.Enabled); + Assert.Equal(gw1.BackendHttpSettingsCollection[i].ConnectionDraining.DrainTimeoutInSec, gw2.BackendHttpSettingsCollection[i].ConnectionDraining.DrainTimeoutInSec); + } + else + { + Assert.Null(gw2.BackendHttpSettingsCollection[i].ConnectionDraining); + } + } Assert.Equal(gw1.HttpListeners.Count, gw2.HttpListeners.Count); Assert.Equal(gw1.RequestRoutingRules.Count, gw2.RequestRoutingRules.Count); Assert.Equal(gw1.SslPolicy.DisabledSslProtocols.Count, gw2.SslPolicy.DisabledSslProtocols.Count); @@ -422,6 +440,9 @@ public void ApplicationGatewayApiTest() var location = "West US"; + var a = HttpMockServer.Mode; + + string resourceGroupName = TestUtilities.GenerateName("csmrg"); resourcesClient.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup diff --git a/src/ResourceManagement/Network/Network.Tests/project.json b/src/ResourceManagement/Network/Network.Tests/project.json index 2535543c3cb6..2fba02787c0a 100644 --- a/src/ResourceManagement/Network/Network.Tests/project.json +++ b/src/ResourceManagement/Network/Network.Tests/project.json @@ -7,7 +7,7 @@ "summary": "Network.Tests Tests.", "tags": [ "" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE" }, "buildOptions": { "delaySign": true, From ff661072526e2e110037afc24087e04d13f0bfad Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 15 Feb 2017 11:05:54 -0800 Subject: [PATCH 011/137] #ConnectionDraining Changed the version number of all call headers in the network testrecordings from 2016-09-01 to 2016-12-01 using the script provided by Deepak (Because in azure-rest-api-specs we moved all missing files to the 2016-12-01 version folder, so the recordings needed to be adjusted!) --- .../NetworkWatcherApiTest.json | 36 +- .../NextHopApiTest.json | 32 +- .../PacketCaptureApiTest.json | 88 +-- .../EmptyRouteTableTest.json | 40 +- .../RouteTableApiTest.json | 72 +- .../SubnetRouteTableTest.json | 42 +- .../RoutesApiTest.json | 98 +-- .../RoutesHopTypeTest.json | 82 +- .../TopologyApiTest.json | 16 +- .../TroubleshootApiTest.json | 310 ++++---- .../VerifyIpFlowApiTest.json | 38 +- .../ViewNsgRuleApiTest.json | 38 +- .../ApplicationGatewayApiTest.json | 2 +- .../CheckDnsAvailabilityTest.json | 4 +- .../ExpandResourceTest.json | 224 +++--- ...ocalNettworkGatewayOperationsApisTest.json | 34 +- ...NetworkGatewayActiveActiveFeatureTest.json | 730 +++++++++--------- .../VirtualNetworkGatewayBgpRouteApiTest.json | 652 ++++++++-------- ...rkGatewayConnectionOperationsApisTest.json | 202 ++--- ...ConnectionSharedKeyOperationsApisTest.json | 194 ++--- ...alNetworkGatewayConnectionWithBgpTest.json | 384 ++++----- ...rtualNetworkGatewayOperationsApisTest.json | 256 +++--- ...alNetworkGatewayP2SOperationsApisTest.json | 224 +++--- .../CreateEmptyLoadBalancer.json | 32 +- .../LoadBalancerApiNicAssociationTest.json | 204 ++--- .../LoadBalancerApiTest.json | 70 +- ...BalancerApiTestWithDistributionPolicy.json | 94 +-- .../LoadBalancerApiTestWithDynamicIp.json | 70 +- .../LoadBalancerApiTestWithStaticIp.json | 70 +- .../LoadBalancerNatPoolTest.json | 72 +- .../LoadBalancerOutboundNatRuleTest.json | 62 +- .../UpdateLoadBalancerRule.json | 76 +- ...rtMultiIpConfigOnDifferentSubnetFails.json | 28 +- .../NetworkInterfaceApiTest.json | 100 +-- .../NetworkInterfaceApiTestIPv6.json | 100 +-- .../NetworkInterfaceDnsSettingsTest.json | 62 +- ...orkInterfaceDnsSettingsTestIdnsSuffix.json | 62 +- ...faceEffectiveNetworkSecurityGroupTest.json | 52 +- ...etworkInterfaceEnableIPForwardingTest.json | 76 +- .../NetworkInterfaceMultiIpConfigTest.json | 100 +-- ...workInterfaceNetworkSecurityGroupTest.json | 88 +-- ...nterfaceWithAcceleratedNetworkingTest.json | 26 +- .../NetworkSecurityGroupApiTest.json | 44 +- .../NetworkSecurityGroupWithRulesApiTest.json | 36 +- .../PublicIpAddressApiTest.json | 26 +- .../PublicIpAddressApiTestIPv6.json | 74 +- ...ApiTestWithIdletTimeoutAndReverseFqdn.json | 36 +- .../SecurityRuleWithRulesApiTest.json | 82 +- .../SubnetApiTest.json | 34 +- .../SubnetResourceNavigationLinksTest.json | 24 +- .../Networks.Tests.UsageTests/UsageTest.json | 24 +- .../VirtualNetworkPeeringApiTest.json | 106 +-- .../VirtualNetworkApiTest.json | 44 +- ...NetworkCheckIpAddressAvailabilityTest.json | 62 +- .../VirtualNetworkPeeringTest.json | 106 +-- 55 files changed, 2970 insertions(+), 2970 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json index f67b34fdf9b2..483ad99cb2b6 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -112,7 +112,7 @@ "9351b98e-77c4-44e2-bf8e-d990ae99baad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,8 +130,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,8 +195,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -257,8 +257,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,8 +316,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -412,7 +412,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -425,7 +425,7 @@ "fb2a42c3-0444-493f-a0fa-9621aa519be3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,8 +443,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,4 +508,4 @@ "Variables": { "SubscriptionId": "651569e2-6573-4e19-8088-a089cb8b97a9" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json index cc8f0c63046f..2a1a14579d64 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json @@ -665,8 +665,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -715,7 +715,7 @@ "e5869a87-83b3-42bd-bf33-e9f605fae491" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +733,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"10.1.3.6\"\r\n}", "RequestHeaders": { @@ -906,7 +906,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -919,7 +919,7 @@ "9cc07329-1fde-4065-a053-e40cec04b207" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,8 +937,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -980,7 +980,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -993,7 +993,7 @@ "7631bf51-f6c8-44ce-b10f-eb7a4f2b911a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,8 +1011,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,4 +1090,4 @@ "Variables": { "SubscriptionId": "651569e2-6573-4e19-8088-a089cb8b97a9" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json index 0295c2e003d9..c41050e1476a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -1097,7 +1097,7 @@ "d475e169-eb3a-4ff1-85fd-1034f270cd84" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1115,8 +1115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1168,7 +1168,7 @@ "538eea79-b0ec-4dba-92e0-7c509ef0b7ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1186,8 +1186,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1242,8 +1242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1366,8 +1366,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1403,7 +1403,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1416,7 +1416,7 @@ "ec9bb288-408a-41d0-ae84-f94fd6fedf27" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,8 +1434,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1496,8 +1496,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1552,8 +1552,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1605,7 +1605,7 @@ "4b310bbd-c281-4968-9e9a-b77e26e00f6e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,8 +1623,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,8 +1679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1738,8 +1738,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1862,8 +1862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1896,7 +1896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1909,7 +1909,7 @@ "c0703af9-ffc0-44bb-a758-a3ad480b26ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1927,8 +1927,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2017,7 +2017,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2030,7 +2030,7 @@ "8702f3e3-43b6-4375-91cb-2702b45111c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2048,8 +2048,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2118,4 +2118,4 @@ "Variables": { "SubscriptionId": "651569e2-6573-4e19-8088-a089cb8b97a9" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json index dba0eb72567a..2bd834c02f21 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "35da7f93-8db2-43da-aaee-cbee33c4e92f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -510,7 +510,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -523,7 +523,7 @@ "2b8e410d-5522-437c-8e5f-16426f3e2b5a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,8 +541,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json index dcc705e9f8ad..7d7c856175ba 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "55728bff-dfad-4ff4-8aad-4ed50245308d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9901\",\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet9901\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -240,7 +240,7 @@ "5fc2c695-c0aa-4819-8ab7-2398c2fc9815" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,8 +258,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet640\",\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -313,7 +313,7 @@ "b7ab5b3a-9865-44ad-b846-198e40e424bf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,8 +331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -444,8 +444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -566,8 +566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,8 +630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,8 +688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -807,8 +807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -895,7 +895,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -908,7 +908,7 @@ "0b9039be-45a5-44ea-a8b3-7fe457a1cd33" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,8 +926,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json index 8bfd77fe8a94..024c07448d3a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet1701\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "db718a7a-2819-4a41-bffb-5feb27c54cd5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616\"\r\n }\r\n },\r\n \"name\": \"azsmnet5364\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "3effea22-c97a-441b-bb82-cfb69337e2da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json index 5eff5e3963b6..c902904a598a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet8055\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "76a65d58-ba0b-4e45-bfe8-c136db94de75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet7452\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "e16412d4-be93-44d3-adb5-c57c17c4b04b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -953,7 +953,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -966,7 +966,7 @@ "7ceea8ac-c52e-4ae5-9538-04668b6876d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,8 +984,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1072,7 +1072,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1085,7 +1085,7 @@ "eb05162d-43fa-4257-a64e-cf2042a84145" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,8 +1103,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1158,8 +1158,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1191,7 +1191,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1204,7 +1204,7 @@ "1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,8 +1222,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1277,8 +1277,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json index e54f51f35003..8760a80a1ab2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9157\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet9228\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "bc0aef85-92ff-4497-91b2-395dbe161889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"azsmnet9790\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "47dc13fe-9612-4fd4-87bd-175568585ebe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n },\r\n \"name\": \"azsmnet4509\"\r\n}", "RequestHeaders": { @@ -844,7 +844,7 @@ "6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,8 +862,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -917,8 +917,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -975,8 +975,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1008,7 +1008,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1021,7 +1021,7 @@ "c12dc6cd-d1e1-4085-8d86-3eac68fdc33d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,8 +1039,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,8 +1094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json index 44c34fc26adc..cd7c02ce37cb 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json @@ -726,8 +726,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -776,7 +776,7 @@ "212074f1-8a6c-46e3-ba4f-d964fbe2c7c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceGroupName\": \"azsmnet2771\"\r\n}", "RequestHeaders": { @@ -902,7 +902,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -918,7 +918,7 @@ "977c0f9b-3ef5-4b33-a841-46dbcee82fe1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,4 +951,4 @@ "Variables": { "SubscriptionId": "651569e2-6573-4e19-8088-a089cb8b97a9" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json index 8b65a547be19..382e7c76626d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet15\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "1ca0e867-c51b-4fef-851d-418988eaf043" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -366,7 +366,7 @@ "1cbebe68-0826-45e7-9f5d-870381f3a44c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,8 +384,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -440,8 +440,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -564,8 +564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -629,8 +629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376\"\r\n }\r\n },\r\n \"name\": \"azsmnet1522\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "df09e118-3cc2-460c-8c31-14fef8a5b18d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,8 +700,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,8 +759,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -818,8 +818,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -936,8 +936,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -995,8 +995,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1113,8 +1113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1172,8 +1172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,8 +1231,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1290,8 +1290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1349,8 +1349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,8 +1408,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,8 +1467,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,8 +1526,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1585,8 +1585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1644,8 +1644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1703,8 +1703,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1762,8 +1762,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1821,8 +1821,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,8 +1880,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1939,8 +1939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1998,8 +1998,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,8 +2057,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2116,8 +2116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2175,8 +2175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2234,8 +2234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2293,8 +2293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,8 +2411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2470,8 +2470,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2529,8 +2529,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2588,8 +2588,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2647,8 +2647,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2706,8 +2706,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2765,8 +2765,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,8 +2824,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2883,8 +2883,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2942,8 +2942,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3001,8 +3001,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,8 +3060,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3119,8 +3119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,8 +3178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3237,8 +3237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3296,8 +3296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3414,8 +3414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3473,8 +3473,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,8 +3532,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,8 +3591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3650,8 +3650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3709,8 +3709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3768,8 +3768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3827,8 +3827,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3886,8 +3886,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3945,8 +3945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4004,8 +4004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,8 +4063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4119,8 +4119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4175,8 +4175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4237,8 +4237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -4287,7 +4287,7 @@ "e7ecc344-7735-4bcd-876b-2ba738043a92" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4429,8 +4429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Storage/storageAccounts/azsmnet62\",\r\n \"storagePath\": \"https://nwtestdbdzq4xsvskrei6.blob.core.windows.net/vhds\"\r\n }\r\n}", "RequestHeaders": { @@ -4472,7 +4472,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -4485,7 +4485,7 @@ "de538d0a-5abe-455c-87cf-ad8890184879" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,8 +4503,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,8 +4562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4633,4 +4633,4 @@ "Variables": { "SubscriptionId": "651569e2-6573-4e19-8088-a089cb8b97a9" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json index 3e08dfcbd1c0..5d04662ccffa 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json @@ -714,8 +714,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -764,7 +764,7 @@ "c8656941-8f2e-429f-a1d8-e8b3f2cb69f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,8 +847,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,8 +912,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -977,8 +977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet3313\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000\"\r\n }\r\n ],\r\n \"resourceGuid\": \"a62c6ffb-62da-4576-82e9-a68a189ac62e\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg\",\r\n \"name\": \"azsmnet8060-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -1092,7 +1092,7 @@ "f6cbe102-c2a0-4c0f-89bf-f1b687a94704" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,8 +1110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,8 +1166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Compute/virtualMachines/azsmnet8060\",\r\n \"direction\": \"Outbound\",\r\n \"protocol\": \"TCP\",\r\n \"localPort\": \"80\",\r\n \"remotePort\": \"80\",\r\n \"localIPAddress\": \"10.17.3.4\",\r\n \"remoteIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -1209,7 +1209,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1222,7 +1222,7 @@ "4264c957-2faa-4692-8c38-242a692e9799" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1255,4 +1255,4 @@ "Variables": { "SubscriptionId": "651569e2-6573-4e19-8088-a089cb8b97a9" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json index c6076e9cba00..1706ef515653 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json @@ -616,8 +616,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -666,7 +666,7 @@ "45676481-77c2-4ebe-bceb-39d71832bc4b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,8 +879,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet1718\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197\"\r\n }\r\n ],\r\n \"resourceGuid\": \"f93d2782-b4c9-4d0b-86d0-598825130420\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg\",\r\n \"name\": \"azsmnet2019-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -994,7 +994,7 @@ "6311637f-6802-48cb-b2df-da99aef9e651" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,8 +1068,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Compute/virtualMachines/azsmnet2019\"\r\n}", "RequestHeaders": { @@ -1111,7 +1111,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1124,7 +1124,7 @@ "eb1dc242-8ea0-44d9-abb5-711a6565abdb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-09-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1157,4 +1157,4 @@ "Variables": { "SubscriptionId": "651569e2-6573-4e19-8088-a089cb8b97a9" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index b51333120569..211e7bf6dd4c 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -5160,4 +5160,4 @@ "Variables": { "SubscriptionId": "70a5cb48-f9db-44e5-b819-936d54cc83d4" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json index 908af05ef340..0efb805f49d7 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -54,7 +54,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json index 1fb74c223777..27c907ea12ce 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3972\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "63049a58-9deb-4787-8a83-b3a45a2c5fe7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet8767\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "9f8c9c9e-889f-4fc1-b65d-8f015db88f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "95323aac-1af9-4bea-9208-20a3ff24e430" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet3666\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet3666\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"6b94f5c4-a02b-433e-8301-ad3edf808428\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "b970f182-e80e-40bd-ae0b-8565ec8d6362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "34e7814c-9cc7-488b-a77c-b8fdae0a8309" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"2dab4ece-7a8f-44b3-b328-2f6b34c8914c\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "57608f26-9c56-4a31-8690-b11106b25ef7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet7454\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet7454\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"044c708c-5c2f-434a-b7db-782cab3e1457\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "9735026c-2b5d-4417-885b-5eb7a95dddf5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752\"\r\n }\r\n },\r\n \"name\": \"azsmnet8571\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/probes/azsmnet359\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet8160\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n },\r\n \"name\": \"azsmnet359\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet3666\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7454\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "78dbe39e-320d-43c2-89f7-2599d29feafe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-09-01&$expand=InboundNatRules%2FbackendIPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=InboundNatRules%2FbackendIPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-09-01&$expand=BackendAddressPools%2FbackendIPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=BackendAddressPools%2FbackendIPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2069,8 +2069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-09-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2133,8 +2133,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-09-01&$expand=IPConfigurations%2FSubnet", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01&$expand=IPConfigurations%2FSubnet", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,8 +2197,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2016-09-01&$expand=IPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNi0wOS0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2016-12-01&$expand=IPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2261,8 +2261,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-09-01&$expand=IPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01&$expand=IPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,8 +2325,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2358,7 +2358,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2371,7 +2371,7 @@ "c194265f-1af9-4890-9dd6-2f6bf311b1f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2389,8 +2389,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,8 +2444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2498,8 +2498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2531,7 +2531,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2544,7 +2544,7 @@ "f449f276-f45b-4305-915f-47738bf7f6fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,8 +2562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,8 +2617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2650,7 +2650,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2663,7 +2663,7 @@ "8d49efb4-581f-4f95-a034-432313b88536" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2681,8 +2681,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2736,8 +2736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2769,7 +2769,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2782,7 +2782,7 @@ "b5d64b99-24d4-4fea-a1e4-60997d40b62c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,8 +2800,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2855,8 +2855,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2888,7 +2888,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2901,7 +2901,7 @@ "bf7ed969-af60-45e7-8c7b-f8d27b559259" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,8 +2919,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json index 83c7f7d6217b..232c2b5408a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9f9e478c-17a1-4c67-a1d8-6f5dbe36c7da\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"daf1ad3d-f575-4d15-84e5-170a27964e4d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "bf766e1a-499b-4db3-9a49-7af4156734ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json index fae9de55ad47..082078034fb3 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4458\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "30d02c07-62ad-4558-98d6-1cd51b453cfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-09-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet29\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "6a608085-a8b7-4e79-91fc-57eef8cbe0b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "3fe7da97-a9b9-4adf-a265-5597f385db0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n }\r\n },\r\n \"name\": \"azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "5414d5de-e04b-4b9a-ba01-72731d714424" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.4,10.0.0.5\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "190d20ca-f34d-4676-a46f-939e0784cec4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "60437720-65a0-4ec6-8b38-cace67f6995d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,8 +1136,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1191,8 +1191,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,8 +1246,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,8 +1356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,8 +1411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1466,8 +1466,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1521,8 +1521,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1576,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1631,8 +1631,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1686,8 +1686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1796,8 +1796,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1851,8 +1851,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1906,8 +1906,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1961,8 +1961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2016,8 +2016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2071,8 +2071,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2126,8 +2126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2181,8 +2181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,8 +2236,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,8 +2291,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2346,8 +2346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2401,8 +2401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2456,8 +2456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2511,8 +2511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,8 +2566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2621,8 +2621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2676,8 +2676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2731,8 +2731,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2786,8 +2786,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2841,8 +2841,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2896,8 +2896,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,8 +2951,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3006,8 +3006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3116,8 +3116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3171,8 +3171,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3226,8 +3226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3281,8 +3281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3336,8 +3336,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3391,8 +3391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3446,8 +3446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3501,8 +3501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3556,8 +3556,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3611,8 +3611,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3666,8 +3666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3727,8 +3727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3782,8 +3782,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3843,8 +3843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3898,8 +3898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,8 +3959,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,8 +4014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4069,8 +4069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4124,8 +4124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4234,8 +4234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,8 +4289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4344,8 +4344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4399,8 +4399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4454,8 +4454,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4509,8 +4509,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4564,8 +4564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,8 +4619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4674,8 +4674,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4729,8 +4729,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4784,8 +4784,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4839,8 +4839,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4894,8 +4894,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4949,8 +4949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5004,8 +5004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5059,8 +5059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5114,8 +5114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5169,8 +5169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5224,8 +5224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5279,8 +5279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5334,8 +5334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,8 +5389,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5444,8 +5444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5499,8 +5499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5554,8 +5554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5609,8 +5609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5664,8 +5664,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5719,8 +5719,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5774,8 +5774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5829,8 +5829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5884,8 +5884,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5939,8 +5939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5994,8 +5994,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6049,8 +6049,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6159,8 +6159,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6214,8 +6214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6269,8 +6269,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6324,8 +6324,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6379,8 +6379,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6434,8 +6434,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6489,8 +6489,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6544,8 +6544,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6599,8 +6599,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6654,8 +6654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6709,8 +6709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6764,8 +6764,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6819,8 +6819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6874,8 +6874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6929,8 +6929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6984,8 +6984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7039,8 +7039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7094,8 +7094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7149,8 +7149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7204,8 +7204,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7259,8 +7259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7314,8 +7314,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7369,8 +7369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7424,8 +7424,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7479,8 +7479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7534,8 +7534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7589,8 +7589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7644,8 +7644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7699,8 +7699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7754,8 +7754,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7809,8 +7809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7864,8 +7864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7919,8 +7919,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7974,8 +7974,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8029,8 +8029,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8084,8 +8084,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8139,8 +8139,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8194,8 +8194,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8249,8 +8249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8304,8 +8304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8359,8 +8359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8414,8 +8414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8469,8 +8469,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8524,8 +8524,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8579,8 +8579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8634,8 +8634,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8689,8 +8689,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8744,8 +8744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8799,8 +8799,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8854,8 +8854,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8909,8 +8909,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8964,8 +8964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9019,8 +9019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9074,8 +9074,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9129,8 +9129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9184,8 +9184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9239,8 +9239,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9294,8 +9294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9349,8 +9349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9404,8 +9404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9459,8 +9459,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9514,8 +9514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9569,8 +9569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9624,8 +9624,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9679,8 +9679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9734,8 +9734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9789,8 +9789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9844,8 +9844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9899,8 +9899,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9954,8 +9954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10009,8 +10009,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10064,8 +10064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json index f93764fe14b4..5b8d5fb67820 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet545\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "63285282-cbb8-4a5b-876f-aa4b1a163faa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7547\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -241,7 +241,7 @@ "a7656262-acdf-45ca-9be7-124d86e5fff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,8 +259,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -315,8 +315,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -371,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,8 +430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -495,8 +495,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -619,8 +619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "4a9c52ec-5191-49a1-b13c-a1690815ab65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.2.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -808,7 +808,7 @@ "8663122b-5345-4a32-963d-2d0a08729eee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,8 +826,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -882,8 +882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1056,8 +1056,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1121,8 +1121,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1186,8 +1186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n }\r\n },\r\n \"name\": \"azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1239,7 +1239,7 @@ "b132e059-7eb1-469f-914d-25c56708cedf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,8 +1257,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n }\r\n },\r\n \"name\": \"azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1310,7 +1310,7 @@ "6e41a746-ca55-49e5-88f9-fe74998f1c05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,8 +1328,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,8 +1387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1446,8 +1446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1505,8 +1505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1564,8 +1564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1623,8 +1623,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1682,8 +1682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1859,8 +1859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1918,8 +1918,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1977,8 +1977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,8 +2036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2095,8 +2095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2154,8 +2154,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2213,8 +2213,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2272,8 +2272,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2331,8 +2331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,8 +2390,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2449,8 +2449,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2508,8 +2508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2567,8 +2567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2626,8 +2626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2685,8 +2685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2744,8 +2744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2803,8 +2803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2862,8 +2862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,8 +2921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2980,8 +2980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3039,8 +3039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,8 +3098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3157,8 +3157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3216,8 +3216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3275,8 +3275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3334,8 +3334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3393,8 +3393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3452,8 +3452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3511,8 +3511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3570,8 +3570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3629,8 +3629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,8 +3688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3747,8 +3747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3806,8 +3806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3865,8 +3865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3924,8 +3924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3983,8 +3983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4042,8 +4042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4101,8 +4101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4160,8 +4160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4219,8 +4219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4278,8 +4278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4337,8 +4337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4396,8 +4396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4455,8 +4455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4514,8 +4514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4573,8 +4573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,8 +4632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4691,8 +4691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4747,8 +4747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4865,8 +4865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4924,8 +4924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4983,8 +4983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5042,8 +5042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5160,8 +5160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5219,8 +5219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5278,8 +5278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5337,8 +5337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5396,8 +5396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5455,8 +5455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5514,8 +5514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5573,8 +5573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5632,8 +5632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5691,8 +5691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5750,8 +5750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5809,8 +5809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5868,8 +5868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5927,8 +5927,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5986,8 +5986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6045,8 +6045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6163,8 +6163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6222,8 +6222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6281,8 +6281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6340,8 +6340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6399,8 +6399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6458,8 +6458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6517,8 +6517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6576,8 +6576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6635,8 +6635,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6694,8 +6694,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6753,8 +6753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6812,8 +6812,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6871,8 +6871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6930,8 +6930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6989,8 +6989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7048,8 +7048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7107,8 +7107,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7166,8 +7166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7225,8 +7225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7284,8 +7284,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7343,8 +7343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7402,8 +7402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7461,8 +7461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7520,8 +7520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7579,8 +7579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7638,8 +7638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7697,8 +7697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7756,8 +7756,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7815,8 +7815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7874,8 +7874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7933,8 +7933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7992,8 +7992,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8051,8 +8051,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8110,8 +8110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8169,8 +8169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8228,8 +8228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8287,8 +8287,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8346,8 +8346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8402,8 +8402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8458,8 +8458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8520,8 +8520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8576,8 +8576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8638,8 +8638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8691,7 +8691,7 @@ "34bf47da-6691-4dbd-9400-89cb5668f526" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8709,8 +8709,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8762,7 +8762,7 @@ "ad4396c8-658d-4849-afd3-e0f31838df91" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8780,8 +8780,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8836,8 +8836,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8892,8 +8892,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8948,8 +8948,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9004,8 +9004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9041,7 +9041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -9069,8 +9069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9100,7 +9100,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9128,8 +9128,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9165,7 +9165,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -9193,8 +9193,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9224,7 +9224,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9252,8 +9252,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9289,7 +9289,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -9317,8 +9317,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9348,7 +9348,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9396,4 +9396,4 @@ "Variables": { "SubscriptionId": "0113c7b2-a5e4-468d-ba23-03355d84410e" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json index 27aa8ff3126d..d6ff23ddebdf 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "4b8f4da0-a5eb-4322-a768-7897aee4afb8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6654\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "5c7f3c04-22aa-4bcb-9b3f-b37081b187cd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -622,7 +622,7 @@ "6058ae5d-6bc6-4d0a-af6f-db9aa1f92372" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "3c0f845a-886c-4824-98d7-99892538c8d2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "d92cddce-5df0-46b3-b974-40633cde5f4a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1115,7 +1115,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,7 +1166,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1217,7 +1217,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1268,7 +1268,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1319,7 +1319,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1370,7 +1370,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1421,7 +1421,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1472,7 +1472,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1523,7 +1523,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1574,7 +1574,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1625,7 +1625,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1676,7 +1676,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1727,7 +1727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1778,7 +1778,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1829,7 +1829,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,7 +1880,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1931,7 +1931,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2033,7 +2033,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2084,7 +2084,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2186,7 +2186,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2237,7 +2237,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2288,7 +2288,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2339,7 +2339,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,7 +2390,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2441,7 +2441,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2492,7 +2492,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2543,7 +2543,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2594,7 +2594,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2645,7 +2645,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2696,7 +2696,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2747,7 +2747,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2798,7 +2798,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2849,7 +2849,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3104,7 +3104,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3155,7 +3155,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,7 +3206,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3257,7 +3257,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3308,7 +3308,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3359,7 +3359,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,7 +3410,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3461,7 +3461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3512,7 +3512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3563,7 +3563,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3614,7 +3614,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3665,7 +3665,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3716,7 +3716,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3767,7 +3767,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3818,7 +3818,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3869,7 +3869,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3926,7 +3926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3977,7 +3977,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4034,7 +4034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -4075,7 +4075,7 @@ "432d7bf3-ed0f-47af-abde-683f1d4d9614" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4103,7 +4103,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n }\r\n}", "RequestHeaders": { @@ -4144,7 +4144,7 @@ "f11e8b40-095e-45e9-a2ac-4e54f2ce0750" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4172,7 +4172,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4223,7 +4223,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4274,7 +4274,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4325,7 +4325,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4382,7 +4382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4433,7 +4433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4490,7 +4490,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4541,7 +4541,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4592,7 +4592,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4643,7 +4643,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4694,7 +4694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,7 +4751,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,7 +4804,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4836,7 +4836,7 @@ "56c95b9b-4460-4322-9a54-fd1d830bfd6b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4845,7 +4845,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4867,7 +4867,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +4918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json index c1228f96e669..a948a5e446bf 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6309\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "eb5f29b8-5fab-44b4-b927-5466cfb76a3f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "6e2f0013-ed22-4360-b73f-5bd09a4ace9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -518,7 +518,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -632,7 +632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -692,7 +692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", "RequestHeaders": { @@ -733,7 +733,7 @@ "8c869573-fa12-4c39-b527-1d87586fb4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -761,7 +761,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -812,7 +812,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,7 +863,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,7 +914,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,7 +965,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1016,7 +1016,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1067,7 +1067,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,7 +1169,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1220,7 +1220,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1271,7 +1271,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1322,7 +1322,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1373,7 +1373,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1424,7 +1424,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1475,7 +1475,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,7 +1526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1577,7 +1577,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1628,7 +1628,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,7 +1679,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1730,7 +1730,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1781,7 +1781,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1832,7 +1832,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1883,7 +1883,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1985,7 +1985,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +2036,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2087,7 +2087,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2138,7 +2138,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2189,7 +2189,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,7 +2291,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2342,7 +2342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,7 +2444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2495,7 +2495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2546,7 +2546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2597,7 +2597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2648,7 +2648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2699,7 +2699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,7 +2750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2852,7 +2852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2903,7 +2903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2954,7 +2954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3005,7 +3005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3056,7 +3056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3158,7 +3158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3209,7 +3209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3260,7 +3260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3311,7 +3311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3362,7 +3362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3413,7 +3413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,7 +3464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3515,7 +3515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3566,7 +3566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3617,7 +3617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,7 +3674,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -3715,7 +3715,7 @@ "b8001171-5f00-409e-87fa-e09c8a5b6379" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3743,7 +3743,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3794,7 +3794,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3848,7 +3848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390/ipConfigurations/azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"80eb4542-6628-4989-a71d-39c6f068cd88\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4ab7c1aa-4feb-4aea-8359-f841f6196a5d\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"65b63583-7d30-4f32-acad-93ec0d844814\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -3949,7 +3949,7 @@ "1a59d7cd-2129-4c2a-a110-32a47303d041" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,7 +3977,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4028,7 +4028,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4079,7 +4079,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4130,7 +4130,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4181,7 +4181,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4232,7 +4232,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,7 +4289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2016-12-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyLength\": 50\r\n}", "RequestHeaders": { @@ -4327,7 +4327,7 @@ "b69cde55-32c9-4a0e-af56-dcdb6dbce3c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4336,7 +4336,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4358,7 +4358,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4409,7 +4409,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4460,7 +4460,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4511,7 +4511,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,7 +4562,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,7 +4619,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4670,7 +4670,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4727,7 +4727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "RequestHeaders": { @@ -4765,7 +4765,7 @@ "bb963c2b-266c-4f13-9b03-5fc08f2b72e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json index 0c816f60f54e..6897cd7e9f13 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "78d32121-6ff0-4710-a9e8-2f78bea12c93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5521\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "8beafd91-d79d-4589-97b2-5b325389aefc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "a6b8605e-b2cb-41c1-b1aa-e513acca5f3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1100,8 +1100,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,8 +1210,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1265,8 +1265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1320,8 +1320,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1375,8 +1375,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,8 +1430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1485,8 +1485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1540,8 +1540,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,8 +1595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,8 +1650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1705,8 +1705,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1760,8 +1760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1815,8 +1815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1870,8 +1870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1925,8 +1925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,8 +1980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2035,8 +2035,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2090,8 +2090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,8 +2145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,8 +2200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2255,8 +2255,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2310,8 +2310,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2365,8 +2365,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2420,8 +2420,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2475,8 +2475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2530,8 +2530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2585,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2640,8 +2640,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,8 +2695,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,8 +2750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,8 +2805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,8 +2860,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2915,8 +2915,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2970,8 +2970,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,8 +3025,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3080,8 +3080,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3135,8 +3135,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3190,8 +3190,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3245,8 +3245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3300,8 +3300,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,8 +3410,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3465,8 +3465,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3520,8 +3520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3575,8 +3575,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3630,8 +3630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,8 +3685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3740,8 +3740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3795,8 +3795,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3850,8 +3850,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3905,8 +3905,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3960,8 +3960,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4015,8 +4015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4070,8 +4070,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4125,8 +4125,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4180,8 +4180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4235,8 +4235,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4290,8 +4290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4345,8 +4345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4400,8 +4400,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4461,8 +4461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443/ipConfigurations/azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"c71d5327-5c99-4026-ab58-7ffc07376d0e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"63abf0e6-b040-4de6-a636-cbd4774187c7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n },\r\n \"resourceGuid\": \"ba330a4b-c210-44c5-97af-d1e51b107ff8\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true\r\n }\r\n}", "RequestHeaders": { @@ -4513,7 +4513,7 @@ "eb58d262-bbdf-45a2-a70d-70193aa3ee9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4531,8 +4531,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4586,8 +4586,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4641,8 +4641,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,8 +4696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,8 +4751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4867,8 +4867,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,8 +4928,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4982,8 +4982,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5015,7 +5015,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -5028,7 +5028,7 @@ "51dc46ba-57d0-4629-b51f-aac4c79cd525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5046,8 +5046,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5156,8 +5156,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5211,8 +5211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5266,8 +5266,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json index cb8ed3dcb2e0..4ff06a86938b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5620\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "9efcedaf-872b-4cd4-b72f-8eee2e7e207c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "4710b952-c826-4161-8f27-50bdd7631b76" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -751,7 +751,7 @@ "2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -779,7 +779,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -830,7 +830,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -881,7 +881,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -932,7 +932,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -983,7 +983,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1034,7 +1034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1085,7 +1085,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1136,7 +1136,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1187,7 +1187,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1238,7 +1238,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1289,7 +1289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1340,7 +1340,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1391,7 +1391,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1442,7 +1442,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1493,7 +1493,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1544,7 +1544,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,7 +1595,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1697,7 +1697,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1748,7 +1748,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1799,7 +1799,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1850,7 +1850,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1901,7 +1901,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1952,7 +1952,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2003,7 +2003,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2054,7 +2054,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2105,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2156,7 +2156,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2207,7 +2207,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2258,7 +2258,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2309,7 +2309,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2360,7 +2360,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,7 +2411,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2462,7 +2462,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2564,7 +2564,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2615,7 +2615,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2666,7 +2666,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,7 +2717,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2768,7 +2768,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2819,7 +2819,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2870,7 +2870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,7 +2921,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2972,7 +2972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3023,7 +3023,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3074,7 +3074,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3125,7 +3125,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3176,7 +3176,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3227,7 +3227,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3278,7 +3278,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3380,7 +3380,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3431,7 +3431,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3482,7 +3482,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,7 +3533,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3584,7 +3584,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3635,7 +3635,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3692,7 +3692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3743,7 +3743,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3800,7 +3800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3857,7 +3857,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,7 +3959,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4010,7 +4010,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4061,7 +4061,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4112,7 +4112,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4163,7 +4163,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4214,7 +4214,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4265,7 +4265,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4316,7 +4316,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4367,7 +4367,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4418,7 +4418,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4469,7 +4469,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4520,7 +4520,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4571,7 +4571,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4622,7 +4622,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4673,7 +4673,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4724,7 +4724,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,7 +4775,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4826,7 +4826,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4877,7 +4877,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,7 +4928,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4979,7 +4979,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5030,7 +5030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5081,7 +5081,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5132,7 +5132,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5183,7 +5183,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5234,7 +5234,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5285,7 +5285,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5336,7 +5336,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5387,7 +5387,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5438,7 +5438,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5489,7 +5489,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5540,7 +5540,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5591,7 +5591,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5642,7 +5642,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,7 +5693,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2016-12-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -5731,7 +5731,7 @@ "6e321e8b-08a6-4dac-9cc1-8538d6076418" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,7 +5740,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5762,7 +5762,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5813,7 +5813,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5864,7 +5864,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5915,7 +5915,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5972,7 +5972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6025,7 +6025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6057,7 +6057,7 @@ "b9215e35-1973-47d3-82e9-3b589a195598" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6066,7 +6066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -6088,7 +6088,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6139,7 +6139,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6190,7 +6190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6241,7 +6241,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6292,7 +6292,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json index 2123f93d4f84..52e4f2ba7502 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "df7c664a-b966-4896-a71c-e9b69c5d241d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7750\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "4c6e88f6-ad73-44ae-8ef4-a6eb09648889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -622,7 +622,7 @@ "218ab0aa-28e0-4540-ad17-302f788f97f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "725a8207-73b2-4243-8160-027ecd1459c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "548cbf18-9be7-408e-8dd7-c88eea8ccc44" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", @@ -1107,7 +1107,7 @@ "d9502d1c-0779-47c8-8eb8-dc11d001b75c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,7 +1135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1176,7 +1176,7 @@ "20852412-192d-4114-8fa5-30be5be0038d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,7 +1204,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ]\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1245,7 +1245,7 @@ "24ba035c-dcb5-46a8-a399-149fc7a893f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1314,7 +1314,7 @@ "8c6beedd-bd46-4d6a-b918-68dd9df39270" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,7 +1342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,7 +1393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1444,7 +1444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1495,7 +1495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1546,7 +1546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1597,7 +1597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1648,7 +1648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1699,7 +1699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1750,7 +1750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1852,7 +1852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1903,7 +1903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1954,7 +1954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,7 +2005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2056,7 +2056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2107,7 +2107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2158,7 +2158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2209,7 +2209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2260,7 +2260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2311,7 +2311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2362,7 +2362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2413,7 +2413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2464,7 +2464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2515,7 +2515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,7 +2566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,7 +2617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,7 +2668,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2719,7 +2719,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2770,7 +2770,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2872,7 +2872,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,7 +2923,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2974,7 +2974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,7 +3025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3076,7 +3076,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3127,7 +3127,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,7 +3178,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3229,7 +3229,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3280,7 +3280,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3331,7 +3331,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3382,7 +3382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3433,7 +3433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,7 +3484,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3535,7 +3535,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3586,7 +3586,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3637,7 +3637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,7 +3688,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,7 +3739,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3790,7 +3790,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3841,7 +3841,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3892,7 +3892,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3943,7 +3943,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +3994,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4045,7 +4045,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4096,7 +4096,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4147,7 +4147,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4198,7 +4198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4255,7 +4255,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4306,7 +4306,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4363,7 +4363,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,7 +4415,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4473,7 +4473,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4524,7 +4524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4581,7 +4581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,7 +4632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4689,7 +4689,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4740,7 +4740,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4797,7 +4797,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4848,7 +4848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4899,7 +4899,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4950,7 +4950,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5001,7 +5001,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5052,7 +5052,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2016-12-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"ProcessorArchitecture\": \"Amd64\"\r\n}", "RequestHeaders": { @@ -5093,7 +5093,7 @@ "434bbfd2-b60a-4b02-98a5-d395c70cf5b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5102,7 +5102,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5124,7 +5124,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5175,7 +5175,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5226,7 +5226,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5277,7 +5277,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5328,7 +5328,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5379,7 +5379,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5430,7 +5430,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-09-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json index 1b57ac4ad1f5..27bd1568b9a4 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\"\r\n}", "RequestHeaders": { @@ -164,7 +164,7 @@ "fbb24308-d599-45e4-a362-a999ca8fc477" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,8 +182,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,8 +304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -337,7 +337,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -350,7 +350,7 @@ "0efa3a1b-3d5e-4924-8bfb-be23c225d20e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json index 341f1e52ed34..e680c3d9052f 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6884\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3dad47db-7a5d-4764-b1a8-45e4c54ecb14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3892\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "33b0df37-361c-4610-a62c-2d0bd11d537e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "5cd1d728-5a6d-42ea-9e42-2cef079e7d37" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "d42fc5c0-cca6-4177-bd4d-8308ba4890c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "7efab2e5-175c-433e-9f27-b08984133322" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9b45499d-e838-4b4e-9ce1-01e6d473764c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "278e7e1b-2137-4663-9235-2bad3fdfc102" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "ede67ae0-aeba-49e6-90df-5a5b53c7f6ce" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "f8b75ac4-426a-4583-9e9c-4676d5661dfd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2038,7 +2038,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2051,7 +2051,7 @@ "892ddc33-a56a-451c-9f96-b4cf3dc159d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,8 +2069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2124,8 +2124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2178,8 +2178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2211,7 +2211,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2224,7 +2224,7 @@ "d91d7f13-838b-49b3-a16c-9fc285b57bd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2242,8 +2242,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2297,8 +2297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2330,7 +2330,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2343,7 +2343,7 @@ "1a21769a-b229-45d2-a730-3d208ae11c57" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,8 +2361,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2416,8 +2416,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2449,7 +2449,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2462,7 +2462,7 @@ "fd9fc03d-a4bb-43e4-9397-c11e79c53925" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,8 +2480,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2535,8 +2535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2568,7 +2568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2581,7 +2581,7 @@ "5fbb2994-1d41-4726-ae24-018ff2a4399b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2599,8 +2599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json index 65b3d174ef03..b09cbc549551 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9199\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9a4ad2fd-6e62-424d-b1ec-14962cca9cf4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bef8bf1d-d1fc-4068-8735-3977bb3c34d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -727,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -760,7 +760,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -773,7 +773,7 @@ "7adb7a95-e3c0-45ff-8fc1-1180b47ae47c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -791,8 +791,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -846,8 +846,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -879,7 +879,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -892,7 +892,7 @@ "d02ab371-ea0c-4a29-b3c1-a316877805ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,8 +910,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json index 26eaf8b9428a..557cc9bd3c91 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "963fb0d9-d9da-442b-ba19-ed37d225501f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "5409a23a-b969-4ec0-b876-2d7fa5fd4bbc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIP\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "11fc7019-b17b-489e-b2b3-0f1f043f637b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIPProtocol\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "0e5113c6-d8c6-4379-b111-8af4d1de4ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -627,8 +627,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -691,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,8 +813,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -871,8 +871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,8 +996,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,8 +1050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1083,7 +1083,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1096,7 +1096,7 @@ "53c70c1f-f3bc-49bc-82ad-3567f6427a52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,8 +1114,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,8 +1169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1202,7 +1202,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1215,7 +1215,7 @@ "e27bbc83-c3a8-4eee-91c5-f17a3aef9423" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,8 +1233,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json index 2ee521a1c63a..1e89d8c1eae2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "264ff5ef-2d86-4608-8e76-eac955cb406e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9826\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1606\",\r\n \"etag\": \"W/\\\"08dd095e-7a95-4523-9219-23493907e2af\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239/subnets/azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2958\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet6449\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/backendAddressPools/azsmnet2958\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/probes/azsmnet2286\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2286\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet3126\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2299\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "04b85831-52ed-4f78-b0ab-a589450ebbdc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "4b0345cf-ec91-4ace-9cca-e9431a22067d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "b6f5aa51-c004-419b-bff0-20344fcaf8ae" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json index 8e26388f246c..84e64b13d512 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5e54fcf7-11ac-48da-aac5-2fa0ba445a1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6881\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet4614\",\r\n \"etag\": \"W/\\\"c27c3a4a-61b2-471d-bc8e-e21fa2a01e7c\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103/subnets/azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1565\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet2497\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/backendAddressPools/azsmnet1565\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/probes/azsmnet914\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet914\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet6108\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4420\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9132b8e7-7535-4edc-93b0-8098b908e34e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "6e738e9c-4fb2-4b3d-a5dd-02972e66cde3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "32b8cf10-7428-4325-a94d-cb75ba3084dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json index d397e4e29297..36470fd821d7 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6030\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9ef85cc4-df4b-4966-ab96-bfaeb3811312" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\",\r\n \"properties\": {\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\"\r\n }\r\n ],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5745\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 107,\r\n \"frontendPortRangeEnd\": 110,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"3b977636-5d80-427b-914a-bf079a283b97\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "a9d5f4ef-f803-4914-aa56-9d99163a25b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -712,7 +712,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -725,7 +725,7 @@ "275fb0d7-293f-4025-8841-d3bd66ce4d17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -852,8 +852,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -885,7 +885,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -898,7 +898,7 @@ "bd3187d4-a3d1-4118-88b2-0938e6beb75e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,8 +916,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json index a68f50568083..fd2b26e6eb40 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet339\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5eacd067-d3d7-4e2a-89a8-8b633e85d30e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609\"\r\n }\r\n },\r\n \"name\": \"azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet4688\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7538\"\r\n }\r\n ],\r\n \"outboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"allocatedOutboundPorts\": 1000,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/backendAddressPools/azsmnet4688\"\r\n }\r\n },\r\n \"name\": \"azsmnet8413\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "afa88ff0-3c18-4dcf-bf65-4c0fae290cba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "6f62b5b3-4ebe-4797-9fdd-e945b7728203" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "632e498b-bc6b-4467-a71a-f7ed2ceece4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json index c934b6368e53..e44730dcf956 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "08de78f1-3bc7-493f-bc67-f4597fb79770" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet2252\",\r\n \"etag\": \"W/\\\"ff72dc07-42e5-4d32-bcd1-6d92b4911872\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "e136fa58-0f19-4a46-9e35-a6a7d24e223d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/probes/azsmnet6266\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet6266\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"0296cf87-5d50-4fce-9fb0-055dae5af2de\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6beeefcf-99bd-4697-828a-71ea9ab26d3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "6cd22eff-f535-476e-895b-85418749a134" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "6bf37bbe-9cc4-4b2c-8776-e67472f3b824" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json index 376f9cce0a3f..ba20fb509f42 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8249\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2177\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2f3e4c16-6339-4b37-b653-d4317887a159" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1712\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json index 5f1d7726a3b6..da8c945d43ac 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1938\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "12fbba8e-ab04-436d-84a1-625f46c202f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet4813\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "d494c757-68f0-45d0-9cf0-dba5c2cdcd05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n }\r\n },\r\n \"name\": \"azsmnet6862\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "59f8cc76-3006-45fc-a35f-52a40040e9b4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,8 +976,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1009,7 +1009,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1022,7 +1022,7 @@ "aa4769b3-0555-4b4d-bf93-ec75ac59336f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,8 +1040,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,8 +1095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1128,7 +1128,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1141,7 +1141,7 @@ "ec9b9318-944d-4129-9cc4-ac5b9aec2f4d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,8 +1159,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1214,8 +1214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1247,7 +1247,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1260,7 +1260,7 @@ "26a085d4-53bb-4078-b6ae-c11c9ff3337d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,8 +1278,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json index 677a7df64691..7b9d10e3c6b3 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5051\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3881820c-25c4-43bc-a03a-305b8451d77f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9491\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "406304b5-998f-438a-8b94-4f8e4c068d71" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipv4ipconfig792\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ipv6ipconfig4450\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv6\",\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "bf2587c6-c933-42bf-8114-047fb0033458" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "c8341a35-6cc2-49f2-8d26-351acab85730" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "bb6bebcd-c58f-481e-9924-778276ae0606" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "ddd5be95-00cf-4031-993d-c2ec96e3812d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json index c569e23189dd..673f1e1b90e3 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet9996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3618ebb7-24be-434f-bbfc-3aeea1ed27e2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996\"\r\n }\r\n },\r\n \"name\": \"azsmnet5670\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f273ca10-2b73-4b7a-adcb-843d2cf4894c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "999431c8-2c8c-40b2-9dd2-285624e3a112" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "610d0d8b-e937-4a27-806e-182f67105689" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json index e798645bba16..57b19b3557fb 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet7512\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "53e216aa-b677-4c58-9fc9-e541fdf21d11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512\"\r\n }\r\n },\r\n \"name\": \"azsmnet6647\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f86d4fc2-8e02-4294-b8bd-e381115a3769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "930e8b36-b134-4dd6-9411-8b5e80fcfec0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "24b51407-43bc-4eb7-b256-69f74a70212d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json index 1f77227a6465..aa9fbdfdfa34 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet1289\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7b73f3ff-87d1-4336-9503-1ecadcd8be0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet9761\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "d3d925f7-f43d-403b-b5e0-aafde256930d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9761\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/securityRules/azsmnet9761\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"df2612a2-9f2c-4641-ae62-31982ad26eec\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980\",\r\n \"location\": \"eastus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612/subnets/azsmnet1289\"\r\n }\r\n },\r\n \"name\": \"azsmnet9385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "f2de0f45-a61a-436c-a77f-f6f1cfa32749" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json index 43313539ddf4..81fd106807d0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet6595\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "e16aeb62-7174-4d4b-9e7b-9dc47d3b300b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "eb361df5-f998-4434-bf5a-062492302f90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8404\",\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682/ipConfigurations/azsmnet8404\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vlmtkxhqcrjuppuzwmwcy12tbb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": true,\r\n \"resourceGuid\": \"7d6b5cca-b79f-4864-9ef4-c15a17a31419\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "37174060-7b1b-4ece-a928-3094a8d18845" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "e0c0e99b-cd17-43b6-bcfa-73ece75e9605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json index ba5539192530..a44bf35a0643 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9820\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "445ecc2b-8cab-47c6-8cf5-f27ef58c6f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3029\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "2db579ed-ab30-4409-abed-01079ed6aadb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3794\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "cbefd58a-85af-4671-b8ef-8267d4df4747" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "a4354010-5717-4653-af48-020895676b17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "5cc2a384-0a40-4da2-9c34-859484e09efe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "0038f628-e452-4f45-812d-7efd6d0cac2d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json index a976470d0b5e..aef34f068bfb 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet2837\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "bc9a8556-b961-40a0-9019-770a3478bece" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet40\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "72821b37-7181-4fba-ac9f-666e4ae59d4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet40\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/securityRules/azsmnet40\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"934e8452-0070-43cf-9b4c-1e68110717eb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465\",\r\n \"location\": \"westus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053/subnets/azsmnet2837\"\r\n }\r\n },\r\n \"name\": \"azsmnet5652\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "ca2465ca-7e5f-4d68-9014-559fd9ea6deb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -780,7 +780,7 @@ "1a83fd25-aad9-4b8c-8589-7b5470a4193c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,8 +798,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -853,8 +853,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -907,8 +907,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -940,7 +940,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -953,7 +953,7 @@ "41bd6817-bafa-41a2-9972-7f4fee825cea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,8 +971,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,8 +1026,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1059,7 +1059,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1072,7 +1072,7 @@ "fb7d529e-41e0-4aff-8e3e-21c68e56fd0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1090,8 +1090,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json index 8221202cde1e..efe657a09e5a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5615\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "944f01c2-77b2-40f8-82a9-e045b2d480b3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"azsmnet1333\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": true\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -438,4 +438,4 @@ "Variables": { "SubscriptionId": "a083c30e-d4e5-4dc1-b310-02aaf36b316a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json index 8e8c6b6cb4a1..c0873c483e65 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7120bd31-52fd-4930-8efa-92cca097ff1c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "5643405a-4d6b-4219-99ec-4f36cefb7a10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json index cc05ea67ce44..f1753246321b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "a57f505b-b51f-4237-9476-5550060e76c9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5872\",\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6d429732-cf6e-4850-b7a9-9540b533611f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,7 +587,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -644,7 +644,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,7 +705,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -756,7 +756,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -788,7 +788,7 @@ "ada432fe-0599-42de-9762-823b41e02fec" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,7 +797,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -819,7 +819,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json index d1ce2d30d43e..a55bc2d58572 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9769\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "d3b1ceb3-fc95-45e0-874d-0553b5bab53b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -404,7 +404,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -461,7 +461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -524,7 +524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -556,7 +556,7 @@ "13308a66-8897-44ea-8df9-b12ca1d98e21" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +565,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -587,7 +587,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json index b28005a4858b..14847b6bb2a5 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv6\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "d39b9d63-14ac-4cb8-8bc6-629171fc57a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "fc579ad7-d1fe-49a3-99ca-9e301fbc0796" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -654,8 +654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -706,7 +706,7 @@ "83a5dde1-2b52-4c78-99bb-7ee5001ab69c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,8 +724,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -779,8 +779,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -837,8 +837,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -901,8 +901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -934,7 +934,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -947,7 +947,7 @@ "a0b157e4-ac6d-46d0-9a73-dbc3fc69280c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -965,8 +965,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json index 892257cd1f96..0a8a05544ddc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\"\r\n },\r\n \"idleTimeoutInMinutes\": 16\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "3250be31-367d-4a1a-96ad-e25adb1815b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"ee1883f7-8770-41a4-a42a-514f7b1ee87d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\",\r\n \"fqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\",\r\n \"reverseFqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\"\r\n },\r\n \"idleTimeoutInMinutes\": 16,\r\n \"resourceGuid\": \"565a8af7-d851-4520-8442-5901971e7630\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6b3e5417-f2af-47bb-a8b4-11ca41ec00f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,7 +759,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -791,7 +791,7 @@ "2ece8ab6-7318-4954-b1ce-93646466f555" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -800,7 +800,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -822,7 +822,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json index 216eac17e051..ffb17767f641 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet8397\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9300ca35-e10e-4803-9a19-ccbe70a88005" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet816\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "b54f2a54-7610-4887-a5e4-3facc44b6e4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -892,7 +892,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -905,7 +905,7 @@ "b6870c53-cd86-4331-93a0-7049be9a172d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,8 +923,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,8 +978,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1011,7 +1011,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1024,7 +1024,7 @@ "8a91f8d2-0056-477a-9c1e-ebc67ec78aaa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1042,8 +1042,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1097,8 +1097,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json index 6f9b9c445a7a..bf091c25077e 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8334\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "2fcae6d6-c43b-4e96-b23c-61c0228b165a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azsmnet5369\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "8b7446cd-d269-455b-a81c-29f8cd144774" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "f78e960c-8975-4d9e-84fa-c28eea2d0bd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-09-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json index 7c858383e5eb..cce327763e55 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet3524\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "ae5fd15b-d60b-4b34-9452-57746445103a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json index 8292271c458d..5557a7e08d3a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "15044d4c-3df8-4152-a39c-c0255289b846" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json index f2fe7d9a7d10..a94124495b22 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json @@ -61,8 +61,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -113,7 +113,7 @@ "bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -131,8 +131,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -308,8 +308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -369,8 +369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -475,7 +475,7 @@ "6f1e3332-1c7e-49be-8de6-e0d05d150ff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,8 +493,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -606,8 +606,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -667,8 +667,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -789,8 +789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowVirtualNetworkAccess\": false,\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391\"\r\n }\r\n },\r\n \"name\": \"azsmnet3453\"\r\n}", "RequestHeaders": { @@ -841,7 +841,7 @@ "d5541592-049c-4c84-8b93-2f151349c8f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,8 +914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -972,8 +972,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1069,7 +1069,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1082,7 +1082,7 @@ "6684a1f4-8428-45c0-bb6b-c25a44d4833c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1100,8 +1100,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1188,7 +1188,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1201,7 +1201,7 @@ "c401ba88-eaec-4651-8550-e2b8795b28c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,8 +1219,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1274,8 +1274,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1307,7 +1307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1320,7 +1320,7 @@ "fbe9a49e-ee49-4cd2-9e6b-aec391eb8078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-09-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,8 +1338,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json index 51e33d9ce6fb..5719245c7dc1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet1873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet997\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "0d9b13a2-9865-4553-b38c-899a1b7f170f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -553,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -586,7 +586,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -599,7 +599,7 @@ "da3c92e3-ca15-4330-9719-bd5536d2cda5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,8 +617,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json index e8b9c1a6fec1..0513cf5598ba 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-09-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3416\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3995e6e8-2a31-4716-9e9d-e974fdc5cee9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.9\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416\"\r\n }\r\n },\r\n \"name\": \"azsmnet4903\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bcea5bd3-3988-4c94-8988-ce1128de88bc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -642,7 +642,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -655,7 +655,7 @@ "d894dfdd-726f-461c-95b3-564fba881898" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,8 +673,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -774,7 +774,7 @@ "de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,8 +792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json index aadca267f180..632369a5eeb3 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet7820\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "e9c55f19-519e-4c28-a7c2-38d4c48caf56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -433,8 +433,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,8 +498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "53c9e2d1-865d-4bc5-9cab-925bf0afb411" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -625,8 +625,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "abbc845f-7549-4105-9ab5-ed3270f676c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1059,8 +1059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1093,7 +1093,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1106,7 +1106,7 @@ "72f70e8c-36a1-4482-87ea-8576fcf7f823" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,8 +1124,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,8 +1180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1214,7 +1214,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1227,7 +1227,7 @@ "bf6e70fe-9654-4caa-ab74-9a2a50cf683c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,8 +1245,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1335,7 +1335,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -1348,7 +1348,7 @@ "1e1eff12-10ca-460f-9ff5-098c619eae9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1366,8 +1366,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1434,4 +1434,4 @@ "Variables": { "SubscriptionId": "9532a63e-f2eb-4649-bb23-5ed01077ce80" } -} \ No newline at end of file +} From cfc379236f598cb5dd765d9e2e35d50cda676a09 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 15 Feb 2017 11:24:15 -0800 Subject: [PATCH 012/137] #ConnectionDraining auto generated files that got changed more than just the api-version. --- .../Generated/INetworkManagementClient.cs | 92 ++++++------- .../Models/ExpressRouteCircuitPeering.cs | 24 ++-- .../Generated/NetworkManagementClient.cs | 124 +++++++++--------- 3 files changed, 121 insertions(+), 119 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/INetworkManagementClient.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/INetworkManagementClient.cs index 5f60a2a0241c..85c97d0d3b0f 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/INetworkManagementClient.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/INetworkManagementClient.cs @@ -75,119 +75,119 @@ public partial interface INetworkManagementClient : System.IDisposable IApplicationGatewaysOperations ApplicationGateways { get; } /// - /// Gets the IRouteTablesOperations. + /// Gets the IExpressRouteCircuitAuthorizationsOperations. /// - IRouteTablesOperations RouteTables { get; } + IExpressRouteCircuitAuthorizationsOperations ExpressRouteCircuitAuthorizations { get; } /// - /// Gets the IRoutesOperations. + /// Gets the IExpressRouteCircuitPeeringsOperations. /// - IRoutesOperations Routes { get; } + IExpressRouteCircuitPeeringsOperations ExpressRouteCircuitPeerings { get; } /// - /// Gets the IPublicIPAddressesOperations. + /// Gets the IExpressRouteCircuitsOperations. /// - IPublicIPAddressesOperations PublicIPAddresses { get; } + IExpressRouteCircuitsOperations ExpressRouteCircuits { get; } /// - /// Gets the INetworkSecurityGroupsOperations. + /// Gets the IExpressRouteServiceProvidersOperations. /// - INetworkSecurityGroupsOperations NetworkSecurityGroups { get; } + IExpressRouteServiceProvidersOperations ExpressRouteServiceProviders { get; } /// - /// Gets the ISecurityRulesOperations. + /// Gets the ILoadBalancersOperations. /// - ISecurityRulesOperations SecurityRules { get; } + ILoadBalancersOperations LoadBalancers { get; } /// - /// Gets the ILoadBalancersOperations. + /// Gets the INetworkInterfacesOperations. /// - ILoadBalancersOperations LoadBalancers { get; } + INetworkInterfacesOperations NetworkInterfaces { get; } /// - /// Gets the IVirtualNetworksOperations. + /// Gets the INetworkSecurityGroupsOperations. /// - IVirtualNetworksOperations VirtualNetworks { get; } + INetworkSecurityGroupsOperations NetworkSecurityGroups { get; } /// - /// Gets the ISubnetsOperations. + /// Gets the ISecurityRulesOperations. /// - ISubnetsOperations Subnets { get; } + ISecurityRulesOperations SecurityRules { get; } /// - /// Gets the IVirtualNetworkPeeringsOperations. + /// Gets the INetworkWatchersOperations. /// - IVirtualNetworkPeeringsOperations VirtualNetworkPeerings { get; } + INetworkWatchersOperations NetworkWatchers { get; } /// - /// Gets the INetworkInterfacesOperations. + /// Gets the IPacketCapturesOperations. /// - INetworkInterfacesOperations NetworkInterfaces { get; } + IPacketCapturesOperations PacketCaptures { get; } /// - /// Gets the IUsagesOperations. + /// Gets the IPublicIPAddressesOperations. /// - IUsagesOperations Usages { get; } + IPublicIPAddressesOperations PublicIPAddresses { get; } /// - /// Gets the IVirtualNetworkGatewaysOperations. + /// Gets the IRouteFiltersOperations. /// - IVirtualNetworkGatewaysOperations VirtualNetworkGateways { get; } + IRouteFiltersOperations RouteFilters { get; } /// - /// Gets the IVirtualNetworkGatewayConnectionsOperations. + /// Gets the IRouteFilterRulesOperations. /// - IVirtualNetworkGatewayConnectionsOperations VirtualNetworkGatewayConnections { get; } + IRouteFilterRulesOperations RouteFilterRules { get; } /// - /// Gets the ILocalNetworkGatewaysOperations. + /// Gets the IRouteTablesOperations. /// - ILocalNetworkGatewaysOperations LocalNetworkGateways { get; } + IRouteTablesOperations RouteTables { get; } /// - /// Gets the INetworkWatchersOperations. + /// Gets the IRoutesOperations. /// - INetworkWatchersOperations NetworkWatchers { get; } + IRoutesOperations Routes { get; } /// - /// Gets the IPacketCapturesOperations. + /// Gets the IBgpServiceCommunitiesOperations. /// - IPacketCapturesOperations PacketCaptures { get; } + IBgpServiceCommunitiesOperations BgpServiceCommunities { get; } /// - /// Gets the IExpressRouteCircuitAuthorizationsOperations. + /// Gets the IUsagesOperations. /// - IExpressRouteCircuitAuthorizationsOperations ExpressRouteCircuitAuthorizations { get; } + IUsagesOperations Usages { get; } /// - /// Gets the IExpressRouteCircuitPeeringsOperations. + /// Gets the IVirtualNetworksOperations. /// - IExpressRouteCircuitPeeringsOperations ExpressRouteCircuitPeerings { get; } + IVirtualNetworksOperations VirtualNetworks { get; } /// - /// Gets the IExpressRouteCircuitsOperations. + /// Gets the ISubnetsOperations. /// - IExpressRouteCircuitsOperations ExpressRouteCircuits { get; } + ISubnetsOperations Subnets { get; } /// - /// Gets the IExpressRouteServiceProvidersOperations. + /// Gets the IVirtualNetworkPeeringsOperations. /// - IExpressRouteServiceProvidersOperations ExpressRouteServiceProviders { get; } + IVirtualNetworkPeeringsOperations VirtualNetworkPeerings { get; } /// - /// Gets the IRouteFiltersOperations. + /// Gets the IVirtualNetworkGatewaysOperations. /// - IRouteFiltersOperations RouteFilters { get; } + IVirtualNetworkGatewaysOperations VirtualNetworkGateways { get; } /// - /// Gets the IRouteFilterRulesOperations. + /// Gets the IVirtualNetworkGatewayConnectionsOperations. /// - IRouteFilterRulesOperations RouteFilterRules { get; } + IVirtualNetworkGatewayConnectionsOperations VirtualNetworkGatewayConnections { get; } /// - /// Gets the IBgpServiceCommunitiesOperations. + /// Gets the ILocalNetworkGatewaysOperations. /// - IBgpServiceCommunitiesOperations BgpServiceCommunities { get; } + ILocalNetworkGatewaysOperations LocalNetworkGateways { get; } /// /// Checks whether a domain name in the cloudapp.net zone is available diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs index d886ee1287cf..6fa656fae80b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs @@ -57,14 +57,14 @@ public ExpressRouteCircuitPeering() { } /// The GatewayManager Etag. /// Gets whether the provider or the /// customer last modified the peering. + /// The reference of the RouteFilter + /// resource. /// Gets name of the resource that is unique within /// a resource group. This name can be used to access the /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - /// The reference of the RouteFilter - /// resource. - public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), string name = default(string), string etag = default(string), RouteFilter routeFilter = default(RouteFilter)) + public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), RouteFilter routeFilter = default(RouteFilter), string name = default(string), string etag = default(string)) : base(id) { PeeringType = peeringType; @@ -82,9 +82,9 @@ public ExpressRouteCircuitPeering() { } ProvisioningState = provisioningState; GatewayManagerEtag = gatewayManagerEtag; LastModifiedBy = lastModifiedBy; + RouteFilter = routeFilter; Name = name; Etag = etag; - RouteFilter = routeFilter; } /// @@ -183,6 +183,12 @@ public ExpressRouteCircuitPeering() { } [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; set; } + /// + /// Gets or sets the reference of the RouteFilter resource. + /// + [JsonProperty(PropertyName = "properties.routeFilter")] + public RouteFilter RouteFilter { get; set; } + /// /// Gets name of the resource that is unique within a resource group. /// This name can be used to access the resource. @@ -196,11 +202,7 @@ public ExpressRouteCircuitPeering() { } /// [JsonProperty(PropertyName = "etag")] public string Etag { get; protected set; } - - /// - /// Gets or sets the reference of the RouteFilter resource. - /// - [JsonProperty(PropertyName = "properties.routeFilter")] - public RouteFilter RouteFilter { get; set; } + } -} \ No newline at end of file +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs index 0f79f4277948..c391afbcc5bb 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs @@ -78,119 +78,119 @@ public partial class NetworkManagementClient : ServiceClient - /// Gets the IRouteTablesOperations. + /// Gets the IExpressRouteCircuitAuthorizationsOperations. /// - public virtual IRouteTablesOperations RouteTables { get; private set; } + public virtual IExpressRouteCircuitAuthorizationsOperations ExpressRouteCircuitAuthorizations { get; private set; } /// - /// Gets the IRoutesOperations. + /// Gets the IExpressRouteCircuitPeeringsOperations. /// - public virtual IRoutesOperations Routes { get; private set; } + public virtual IExpressRouteCircuitPeeringsOperations ExpressRouteCircuitPeerings { get; private set; } /// - /// Gets the IPublicIPAddressesOperations. + /// Gets the IExpressRouteCircuitsOperations. /// - public virtual IPublicIPAddressesOperations PublicIPAddresses { get; private set; } + public virtual IExpressRouteCircuitsOperations ExpressRouteCircuits { get; private set; } /// - /// Gets the INetworkSecurityGroupsOperations. + /// Gets the IExpressRouteServiceProvidersOperations. /// - public virtual INetworkSecurityGroupsOperations NetworkSecurityGroups { get; private set; } + public virtual IExpressRouteServiceProvidersOperations ExpressRouteServiceProviders { get; private set; } /// - /// Gets the ISecurityRulesOperations. + /// Gets the ILoadBalancersOperations. /// - public virtual ISecurityRulesOperations SecurityRules { get; private set; } + public virtual ILoadBalancersOperations LoadBalancers { get; private set; } /// - /// Gets the ILoadBalancersOperations. + /// Gets the INetworkInterfacesOperations. /// - public virtual ILoadBalancersOperations LoadBalancers { get; private set; } + public virtual INetworkInterfacesOperations NetworkInterfaces { get; private set; } /// - /// Gets the IVirtualNetworksOperations. + /// Gets the INetworkSecurityGroupsOperations. /// - public virtual IVirtualNetworksOperations VirtualNetworks { get; private set; } + public virtual INetworkSecurityGroupsOperations NetworkSecurityGroups { get; private set; } /// - /// Gets the ISubnetsOperations. + /// Gets the ISecurityRulesOperations. /// - public virtual ISubnetsOperations Subnets { get; private set; } + public virtual ISecurityRulesOperations SecurityRules { get; private set; } /// - /// Gets the IVirtualNetworkPeeringsOperations. + /// Gets the INetworkWatchersOperations. /// - public virtual IVirtualNetworkPeeringsOperations VirtualNetworkPeerings { get; private set; } + public virtual INetworkWatchersOperations NetworkWatchers { get; private set; } /// - /// Gets the INetworkInterfacesOperations. + /// Gets the IPacketCapturesOperations. /// - public virtual INetworkInterfacesOperations NetworkInterfaces { get; private set; } + public virtual IPacketCapturesOperations PacketCaptures { get; private set; } /// - /// Gets the IUsagesOperations. + /// Gets the IPublicIPAddressesOperations. /// - public virtual IUsagesOperations Usages { get; private set; } + public virtual IPublicIPAddressesOperations PublicIPAddresses { get; private set; } /// - /// Gets the IVirtualNetworkGatewaysOperations. + /// Gets the IRouteFiltersOperations. /// - public virtual IVirtualNetworkGatewaysOperations VirtualNetworkGateways { get; private set; } + public virtual IRouteFiltersOperations RouteFilters { get; private set; } /// - /// Gets the IVirtualNetworkGatewayConnectionsOperations. + /// Gets the IRouteFilterRulesOperations. /// - public virtual IVirtualNetworkGatewayConnectionsOperations VirtualNetworkGatewayConnections { get; private set; } + public virtual IRouteFilterRulesOperations RouteFilterRules { get; private set; } /// - /// Gets the ILocalNetworkGatewaysOperations. + /// Gets the IRouteTablesOperations. /// - public virtual ILocalNetworkGatewaysOperations LocalNetworkGateways { get; private set; } + public virtual IRouteTablesOperations RouteTables { get; private set; } /// - /// Gets the INetworkWatchersOperations. + /// Gets the IRoutesOperations. /// - public virtual INetworkWatchersOperations NetworkWatchers { get; private set; } + public virtual IRoutesOperations Routes { get; private set; } /// - /// Gets the IPacketCapturesOperations. + /// Gets the IBgpServiceCommunitiesOperations. /// - public virtual IPacketCapturesOperations PacketCaptures { get; private set; } + public virtual IBgpServiceCommunitiesOperations BgpServiceCommunities { get; private set; } /// - /// Gets the IExpressRouteCircuitAuthorizationsOperations. + /// Gets the IUsagesOperations. /// - public virtual IExpressRouteCircuitAuthorizationsOperations ExpressRouteCircuitAuthorizations { get; private set; } + public virtual IUsagesOperations Usages { get; private set; } /// - /// Gets the IExpressRouteCircuitPeeringsOperations. + /// Gets the IVirtualNetworksOperations. /// - public virtual IExpressRouteCircuitPeeringsOperations ExpressRouteCircuitPeerings { get; private set; } + public virtual IVirtualNetworksOperations VirtualNetworks { get; private set; } /// - /// Gets the IExpressRouteCircuitsOperations. + /// Gets the ISubnetsOperations. /// - public virtual IExpressRouteCircuitsOperations ExpressRouteCircuits { get; private set; } + public virtual ISubnetsOperations Subnets { get; private set; } /// - /// Gets the IExpressRouteServiceProvidersOperations. + /// Gets the IVirtualNetworkPeeringsOperations. /// - public virtual IExpressRouteServiceProvidersOperations ExpressRouteServiceProviders { get; private set; } + public virtual IVirtualNetworkPeeringsOperations VirtualNetworkPeerings { get; private set; } /// - /// Gets the IRouteFiltersOperations. + /// Gets the IVirtualNetworkGatewaysOperations. /// - public virtual IRouteFiltersOperations RouteFilters { get; private set; } + public virtual IVirtualNetworkGatewaysOperations VirtualNetworkGateways { get; private set; } /// - /// Gets the IRouteFilterRulesOperations. + /// Gets the IVirtualNetworkGatewayConnectionsOperations. /// - public virtual IRouteFilterRulesOperations RouteFilterRules { get; private set; } + public virtual IVirtualNetworkGatewayConnectionsOperations VirtualNetworkGatewayConnections { get; private set; } /// - /// Gets the IBgpServiceCommunitiesOperations. + /// Gets the ILocalNetworkGatewaysOperations. /// - public virtual IBgpServiceCommunitiesOperations BgpServiceCommunities { get; private set; } + public virtual ILocalNetworkGatewaysOperations LocalNetworkGateways { get; private set; } /// /// Initializes a new instance of the NetworkManagementClient class. @@ -394,29 +394,29 @@ public NetworkManagementClient(System.Uri baseUri, ServiceClientCredentials cred private void Initialize() { ApplicationGateways = new ApplicationGatewaysOperations(this); - RouteTables = new RouteTablesOperations(this); - Routes = new RoutesOperations(this); - PublicIPAddresses = new PublicIPAddressesOperations(this); + ExpressRouteCircuitAuthorizations = new ExpressRouteCircuitAuthorizationsOperations(this); + ExpressRouteCircuitPeerings = new ExpressRouteCircuitPeeringsOperations(this); + ExpressRouteCircuits = new ExpressRouteCircuitsOperations(this); + ExpressRouteServiceProviders = new ExpressRouteServiceProvidersOperations(this); + LoadBalancers = new LoadBalancersOperations(this); + NetworkInterfaces = new NetworkInterfacesOperations(this); NetworkSecurityGroups = new NetworkSecurityGroupsOperations(this); SecurityRules = new SecurityRulesOperations(this); - LoadBalancers = new LoadBalancersOperations(this); + NetworkWatchers = new NetworkWatchersOperations(this); + PacketCaptures = new PacketCapturesOperations(this); + PublicIPAddresses = new PublicIPAddressesOperations(this); + RouteFilters = new RouteFiltersOperations(this); + RouteFilterRules = new RouteFilterRulesOperations(this); + RouteTables = new RouteTablesOperations(this); + Routes = new RoutesOperations(this); + BgpServiceCommunities = new BgpServiceCommunitiesOperations(this); + Usages = new UsagesOperations(this); VirtualNetworks = new VirtualNetworksOperations(this); Subnets = new SubnetsOperations(this); VirtualNetworkPeerings = new VirtualNetworkPeeringsOperations(this); - NetworkInterfaces = new NetworkInterfacesOperations(this); - Usages = new UsagesOperations(this); VirtualNetworkGateways = new VirtualNetworkGatewaysOperations(this); VirtualNetworkGatewayConnections = new VirtualNetworkGatewayConnectionsOperations(this); LocalNetworkGateways = new LocalNetworkGatewaysOperations(this); - NetworkWatchers = new NetworkWatchersOperations(this); - PacketCaptures = new PacketCapturesOperations(this); - ExpressRouteCircuitAuthorizations = new ExpressRouteCircuitAuthorizationsOperations(this); - ExpressRouteCircuitPeerings = new ExpressRouteCircuitPeeringsOperations(this); - ExpressRouteCircuits = new ExpressRouteCircuitsOperations(this); - ExpressRouteServiceProviders = new ExpressRouteServiceProvidersOperations(this); - RouteFilters = new RouteFiltersOperations(this); - RouteFilterRules = new RouteFilterRulesOperations(this); - BgpServiceCommunities = new BgpServiceCommunitiesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; @@ -492,7 +492,7 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.SubscriptionId"); } - string apiVersion = "2016-09-01"; + string apiVersion = "2016-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; From 479e77ebcca5ae2548e8d5e0d8f241db38f2f623 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 15 Feb 2017 11:25:00 -0800 Subject: [PATCH 013/137] #ConnectionDraining auto generated files are new. --- .../Models/AzureAsyncOperationResult.cs | 61 +++++++++++++++++ .../Generated/Models/Error.cs | 65 +++++++++++++++++++ .../Generated/Models/ErrorDetails.cs | 51 +++++++++++++++ .../Models/NetworkOperationStatus.cs | 25 +++++++ 4 files changed, 202 insertions(+) create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/AzureAsyncOperationResult.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/Error.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ErrorDetails.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/NetworkOperationStatus.cs diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/AzureAsyncOperationResult.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/AzureAsyncOperationResult.cs new file mode 100644 index 000000000000..a1e4a0cb5786 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/AzureAsyncOperationResult.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The response body contains the status of the specified asynchronous + /// operation, indicating whether it has succeeded, is in progress, or has + /// failed. Note that this status is distinct from the HTTP status code + /// returned for the Get Operation Status operation itself. If the + /// asynchronous operation succeeded, the response body includes the HTTP + /// status code for the successful request. If the asynchronous operation + /// failed, the response body includes the HTTP status code for the failed + /// request and error information regarding the failure. + /// + public partial class AzureAsyncOperationResult + { + /// + /// Initializes a new instance of the AzureAsyncOperationResult class. + /// + public AzureAsyncOperationResult() { } + + /// + /// Initializes a new instance of the AzureAsyncOperationResult class. + /// + /// Status of the Azure async operation. Possible + /// values are: 'InProgress', 'Succeeded', and 'Failed'. Possible + /// values include: 'InProgress', 'Succeeded', 'Failed' + public AzureAsyncOperationResult(string status = default(string), Error error = default(Error)) + { + Status = status; + Error = error; + } + + /// + /// Gets or sets status of the Azure async operation. Possible values + /// are: 'InProgress', 'Succeeded', and 'Failed'. Possible values + /// include: 'InProgress', 'Succeeded', 'Failed' + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// + [JsonProperty(PropertyName = "error")] + public Error Error { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/Error.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/Error.cs new file mode 100644 index 000000000000..96d02120f6b0 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/Error.cs @@ -0,0 +1,65 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + public partial class Error + { + /// + /// Initializes a new instance of the Error class. + /// + public Error() { } + + /// + /// Initializes a new instance of the Error class. + /// + public Error(string code = default(string), string message = default(string), string target = default(string), IList details = default(IList), string innerError = default(string)) + { + Code = code; + Message = message; + Target = target; + Details = details; + InnerError = innerError; + } + + /// + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + /// + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; set; } + + /// + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; set; } + + /// + /// + [JsonProperty(PropertyName = "innerError")] + public string InnerError { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ErrorDetails.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ErrorDetails.cs new file mode 100644 index 000000000000..3191b4f350fd --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ErrorDetails.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Linq; + + public partial class ErrorDetails + { + /// + /// Initializes a new instance of the ErrorDetails class. + /// + public ErrorDetails() { } + + /// + /// Initializes a new instance of the ErrorDetails class. + /// + public ErrorDetails(string code = default(string), string target = default(string), string message = default(string)) + { + Code = code; + Target = target; + Message = message; + } + + /// + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; set; } + + /// + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/NetworkOperationStatus.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/NetworkOperationStatus.cs new file mode 100644 index 000000000000..945fa6fe974c --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/NetworkOperationStatus.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for NetworkOperationStatus. + /// + public static class NetworkOperationStatus + { + public const string InProgress = "InProgress"; + public const string Succeeded = "Succeeded"; + public const string Failed = "Failed"; + } +} + From 35b46e63877464ff32f6a5fcba6f9aeacb1c5f06 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 15 Feb 2017 12:02:36 -0800 Subject: [PATCH 014/137] #ConnectionDraining Changed the version all the network headers in the compute test recordings from 2016-09-01 to 2016-12-01 using the script provided by Deepak. --- .../TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../TestExtImgGet.json | 2 +- .../TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- .../TestVMExtensionOperations.json | 50 ++--- .../TestImageOperations.json | 50 ++--- .../TestListVMInSubscription.json | 100 +++++----- .../TestVMWithLinuxOSProfile.json | 50 ++--- .../TestVMWithWindowsOSProfile.json | 104 +++++----- .../TestListUsages.json | 50 ++--- .../TestVMCertificatesOperations.json | 30 +-- .../TestVMDataDiskScenario.json | 50 ++--- .../TestVMBootDiagnostics.json | 50 ++--- .../TestVMDiskEncryption.json | 26 +-- .../TestVMDiskSizeScenario.json | 50 ++--- .../TestVMImageGet.json | 2 +- .../TestVMImageListFilters.json | 2 +- .../TestVMImageListNoFilter.json | 2 +- .../TestVMImageListOffers.json | 2 +- .../TestVMImageListPublishers.json | 2 +- .../TestVMImageListSkus.json | 2 +- .../TestVMBYOL.json | 50 ++--- .../TestVMMarketplace.json | 50 ++--- .../TestEffectiveRouteAndAcls.json | 78 ++++---- .../TestMultiIpConfigForMultiNICVM.json | 54 ++--- .../TestMultiNicVirtualMachineReference.json | 54 ++--- .../TestNicVirtualMachineReference.json | 36 ++-- .../TestVMOperations.json | 100 +++++----- .../TestVMOperations_Redeploy.json | 50 ++--- .../TestVMScaleSetMarketplace.json | 46 ++--- .../TestVMScaleSetWithApplciationGateway.json | 186 +++++++++--------- .../TestVMScaleSetBatchOperations.json | 52 ++--- .../TestVMScaleSetOperations.json | 50 ++--- ...TestVMScaleSetOperations_ManagedDisks.json | 50 ++--- .../TestVMScaleSetScenarioOperations.json | 52 ++--- ...narioOperations_ManagedDisks_PirImage.json | 50 ++--- .../TestVMScaleSetScalingOperations.json | 52 ++--- .../TestVMScaleSetUpdateOperations.json | 52 ++--- .../TestVMScaleSetVMOperations.json | 50 ++--- ...stVMScaleSetVMOperations_ManagedDisks.json | 50 ++--- .../TestVMScenarioOperations.json | 50 ++--- ...TestVMScenarioOperations_ManagedDisks.json | 50 ++--- .../TestListVMSizes.json | 2 +- 47 files changed, 951 insertions(+), 951 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index 41d56c39d77b..c90d66618049 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 9f1f1e8233ad..0d03fdb6250b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index e8045406bdd2..bd443a53e6ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index fc3756c3a85c..2c1a98ed6570 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index abc449435cb7..2343de8f650a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index d76a89158bb8..bfb318f6ef31 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index a164c1a3195c..bc9057da8c35 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index e90bf7aad7ff..7bc95fedbe54 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json index 1e9d1ce292c1..7b51902196c4 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9607\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6636e9ed-13b1-43c5-a732-2887eca688b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "7e286ad3-e71a-4d8b-806f-ca8598fdd719" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip219\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2885\",\r\n \"etag\": \"W/\\\"216e9617-87f7-4b32-b6fa-5142ab44799b\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "e80bc784-fc35-4952-b020-e1621d0bf8a7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json index a687b710eef6..a69ada7e46b9 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn95\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "39693354-72da-4b98-912c-0543840dabb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "74ff459b-e193-46be-957b-5dc4b1502e9c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2603\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3745\",\r\n \"etag\": \"W/\\\"e31795eb-9431-42b9-96d8-fc44fbb6b67a\\\"\",\r\n \"id\": \"/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -929,7 +929,7 @@ "8b8876a7-f4cb-4d78-811c-e45cd8fe3c30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2016-09-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json index dfdd52b2cb6d..9f3d7f1636b1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5539\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "4c4ef2f1-1edb-4cc5-ba59-8747661ac781" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "81c704c5-1a6c-4dc9-bf88-74afe2a418c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6468\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2379\",\r\n \"etag\": \"W/\\\"09124712-1dc7-43e1-a2e6-3126e9a76e54\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2188,8 +2188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2924\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "8efdc1fe-e795-43dd-9479-ded9e5a47ad9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,8 +2258,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2313,8 +2313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2371,8 +2371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2435,8 +2435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2487,7 +2487,7 @@ "ac9b713b-6eff-4e4c-ba24-0d82224e4a79" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,8 +2505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2560,8 +2560,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2682,8 +2682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7345\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn4669\",\r\n \"etag\": \"W/\\\"f16b3546-733c-405b-9c3e-542b5dacf471\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2731,7 +2731,7 @@ "d9756ef5-b2b2-4814-9c1c-e70e981d4e9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,8 +2749,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2807,8 +2807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json index 681063a8917f..5a9a58b22790 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8223\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d51a812f-0f0f-43b5-a4c8-0c8be66ddd86" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3362\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn637\",\r\n \"etag\": \"W/\\\"b12f0d00-284c-4afc-84d5-bfa2ac1437de\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "882e78bc-fa42-4b1b-85de-954de4f8fbd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json index 777c3b2afadb..d18ba0cde08c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json @@ -1637,7 +1637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1678,7 +1678,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1706,7 +1706,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1747,7 +1747,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1775,7 +1775,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1816,7 +1816,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,7 +1844,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1885,7 +1885,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,7 +1913,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1964,7 +1964,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2015,7 +2015,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2066,7 +2066,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2117,7 +2117,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2171,7 +2171,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2225,7 +2225,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2279,7 +2279,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2333,7 +2333,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2453,7 +2453,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2573,7 +2573,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2614,7 +2614,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2642,7 +2642,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2683,7 +2683,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2711,7 +2711,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2752,7 +2752,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2780,7 +2780,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2849,7 +2849,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3161,7 +3161,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3215,7 +3215,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3269,7 +3269,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3389,7 +3389,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3449,7 +3449,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3509,7 +3509,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3547,7 +3547,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3575,7 +3575,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3613,7 +3613,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3641,7 +3641,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3679,7 +3679,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3707,7 +3707,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3745,7 +3745,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3773,7 +3773,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3833,7 +3833,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3893,7 +3893,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3953,7 +3953,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-09-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json index 801f75cb1b96..e31e6dd1e481 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8029\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "994ef8d3-0ac7-4a32-90bd-0df1f017983f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "28ad7faf-ccb1-45c9-b3a5-bee442bb02ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9892\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5051\",\r\n \"etag\": \"W/\\\"e390030a-9b9c-4215-9f89-6e13f66b5e5f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "9cdb43a7-671b-4bfa-a7ff-4debe63a5560" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json index f12ee419bc7f..943c588a56a7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json @@ -341,7 +341,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3075\"\r\n }\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -376,7 +376,7 @@ "80c4066a-ebd2-4caa-aaad-68871f8585ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-09-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,12 +404,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-09-01" + "2016-12-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -458,7 +458,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -512,7 +512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -547,7 +547,7 @@ "e2d620bb-8279-45da-b8de-5a21a32126b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-09-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,12 +575,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-09-01" + "2016-12-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -629,7 +629,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -683,7 +683,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualNetworks/azsmnet7824/subnets/azsmnet5000\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062\"\r\n }\r\n },\r\n \"name\": \"azsmnet7651\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet6511\",\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -718,7 +718,7 @@ "bfdd585b-89c3-4940-9896-4253781658b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,12 +746,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-09-01" + "2016-12-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -800,7 +800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-09-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json index ff53e57b5953..cc669591681f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8464\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d56c878a-38f1-4da1-ae6e-ddf675e0fb70" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9da20380-b57e-47ac-9bc1-443d5399f32a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9679\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7187\",\r\n \"etag\": \"W/\\\"da8250cc-8608-4a5f-be2a-6da45670caf0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "de247dca-53d2-4573-94cc-01e65fd1fc7f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json index dd0bd06a2235..f9ec7b96f0e7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1593\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d7c2562b-e785-415a-9688-fef7ccbaa06d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9cbff61d-7049-4ed5-8f85-7ee3c41f919f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5437\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7677\",\r\n \"etag\": \"W/\\\"7d8534a4-69a9-4cee-b681-077fca187496\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "3a9d081b-8a92-401d-a802-6e73054d3a41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json index eccd9617f1be..c51908d49888 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json @@ -407,7 +407,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9021\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -448,7 +448,7 @@ "c3ff3024-263e-4233-bb1e-5f70638c0791" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -476,7 +476,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -527,7 +527,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "e237b881-ddbc-4325-aa80-228a59600b22" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -815,7 +815,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -875,7 +875,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3879\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn936\",\r\n \"etag\": \"W/\\\"15a0ea2d-97d4-4630-a984-5254777a1a75\\\"\",\r\n \"id\": \"/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualNetworks/vn3782/subnets/sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -913,7 +913,7 @@ "4e22ec02-1666-463b-bb77-96399ed3431b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,7 +941,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-09-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json index 413d38c0a4e9..7eb4047d430c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9166\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "ea8294d9-40db-47e5-b805-ef87b4a12e2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "9a33cc62-b116-4432-b93f-81126bd08197" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,8 +984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3443\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8501\",\r\n \"etag\": \"W/\\\"10a352e0-7b29-4928-a52a-679aedb25eb6\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1033,7 +1033,7 @@ "18f5cc6d-346e-4f66-b765-573eb950e1a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,8 +1051,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1109,8 +1109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageGet.json index 8d8e668b0ae9..3e0f1ac9e923 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageGet.json @@ -129,4 +129,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListFilters.json index abe2980bcfed..30b2a6fb32ba 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListFilters.json @@ -439,4 +439,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListNoFilter.json index c1ed63547c20..ce061cb3f53b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListOffers.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListOffers.json index 6eb04e1f10b2..a3d2e256174e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListOffers.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListOffers.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListPublishers.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListPublishers.json index f8ecf2056086..93233396332b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListPublishers.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListPublishers.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListSkus.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListSkus.json index dda15d19a5ed..4e80a9d9766e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListSkus.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListSkus.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json index d32c5ad6cd8a..7a928f3972ab 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3046\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -420,7 +420,7 @@ "a80a4050-fd45-499d-9ed3-fd2e55db1d66" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,8 +438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -493,8 +493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -667,7 +667,7 @@ "403bb37b-9d4f-4711-a2af-20e373c1d7dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,8 +685,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -740,8 +740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3834\",\r\n \"etag\": \"W/\\\"f18e1229-16c3-4246-9af5-d2dfe51925f0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -911,7 +911,7 @@ "7e328178-6311-4522-8e21-9413a3451485" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,8 +929,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json index a7cb845f7df7..69a4cc544414 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6298\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -603,7 +603,7 @@ "84da3aac-dd98-400f-b27d-da784d0989da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,8 +621,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -850,7 +850,7 @@ "73697911-5120-4e19-b0e5-7f182991944f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,8 +868,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn6013\",\r\n \"etag\": \"W/\\\"cfe5e54a-75df-4ad2-a5a2-8fe583ed14be\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "4347fe14-c13e-4892-9de8-1c974820ecde" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1112,8 +1112,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1170,8 +1170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json index ebaccb2f1b15..4faa0edcb4c3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn3213\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "8654168d-aa01-415e-b701-740a896b258e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "4a5504d2-1005-4476-9b4b-17b4fe52d078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"875dc796-a63c-40a7-adcd-61639d94c346\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878\",\r\n \"location\": \"southeastasia\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn3213\",\r\n \"etag\": \"W/\\\"1fa85aa4-d945-4932-8271-c9b2ccda90e7\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213\"\r\n }\r\n },\r\n \"name\": \"ip2684\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "303a1a67-97e6-4deb-a885-e58f8a9fc538" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1112,8 +1112,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2308,8 +2308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2344,7 +2344,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2372,8 +2372,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2408,7 +2408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2436,8 +2436,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2466,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" ], "Retry-After": [ "10" @@ -2494,8 +2494,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,7 +2524,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json index 29a59e518b68..763d211ad96d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "bbf2ee81-a708-465f-ab38-0bbf854c6397" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6347\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip23520\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a6539b36-087c-46fc-885d-73bfaa84757d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7139\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip21965\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "98169df6-ba37-4496-bee5-79f47beeb013" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json index 43cf38aa140c..82ddcb931ba2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "337fb129-529f-4643-a826-b3ed73bb1b7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9564\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "f3f1a2c0-4e36-4695-a3fd-061b0131e522" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "102888f0-a1bd-4ca8-a6d5-18908a0b0516" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json index 75cd3e29965e..e2139287c0b3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "2dc7ea7b-d165-45b3-9978-ac843843a8aa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5746\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5961\",\r\n \"etag\": \"W/\\\"bd2aed07-e14c-40f0-a7dd-4b22b6185f61\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a450fac6-ae9c-41fd-bc66-148f9cda4883" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index f68b780e0382..f568bcf40d9b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -492,8 +492,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8133\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -544,7 +544,7 @@ "5f63c140-65af-4671-8059-f064fabc83be" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,8 +562,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -617,8 +617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -675,8 +675,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -739,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -791,7 +791,7 @@ "e6754412-902f-4285-9d98-e3abea367247" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,8 +809,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -864,8 +864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -986,8 +986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7212\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7804\",\r\n \"etag\": \"W/\\\"b30468c9-5ebf-4f38-bea7-a6a2354ae10e\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1035,7 +1035,7 @@ "76e05b02-e233-4f14-8a86-6d87844e90a6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,8 +1053,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1111,8 +1111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3683,8 +3683,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7945\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -3735,7 +3735,7 @@ "304afb2c-100c-4420-96f6-519e50214408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,8 +3753,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3808,8 +3808,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,8 +3866,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3930,8 +3930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3982,7 +3982,7 @@ "f124a6aa-8ff4-44de-9a2c-55cc8d035926" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4000,8 +4000,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4055,8 +4055,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4113,8 +4113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4177,8 +4177,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6968\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2271\",\r\n \"etag\": \"W/\\\"daaa0816-ade5-4405-8b35-96b32c5610ce\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -4226,7 +4226,7 @@ "1780921b-6db3-46d5-bde3-139d1615b367" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4244,8 +4244,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4302,8 +4302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json index 92ff18afcc55..68ccfc09256c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn4808\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "47a47f5f-fa54-4ac3-b001-4cc476eff4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "26eed63d-ddfd-4113-9aa8-e8bc80362e13" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9690\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8395\",\r\n \"etag\": \"W/\\\"055220a9-8c65-4920-9ab2-28fc8ebfd619\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "d76e9f46-d499-4819-801b-45ff74cfc2a5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json index 7d8bdf92d813..38a91b91e568 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json @@ -530,8 +530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2658\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -572,7 +572,7 @@ "06fa6a94-8bba-4693-a01f-ce4143272113" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-09-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,8 +600,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -707,8 +707,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -768,8 +768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -810,7 +810,7 @@ "2ee238c4-cbf5-4e03-8fa8-c934e7c46334" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-09-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -838,8 +838,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -945,8 +945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1006,8 +1006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7639\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3505\",\r\n \"etag\": \"W/\\\"938ab6d1-5c0f-47f1-89ee-6dcdabe7d802\\\"\",\r\n \"id\": \"/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualNetworks/vn6769/subnets/sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "2ae3f188-e69c-4a4b-a4ad-2821589e07f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2016-09-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1073,8 +1073,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json index 6caec7d521bb..d7edb379779d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"sn18098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"sn24269\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "44fe5922-bec0-4e35-8656-6d00f3c019a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"gwIp3235\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"fIp916\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"fPort5719\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"pool8495\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\"\r\n },\r\n \"name\": \"setting4841\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendIPConfigurations/fIp916\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendPorts/fPort5719\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"listener418\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendAddressPools/pool8495\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendHttpSettingsCollection/setting4841\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/httpListeners/listener418\"\r\n }\r\n },\r\n \"name\": \"rule4776\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -675,7 +675,7 @@ "0f1710a9-9b53-4323-9afd-6b59429cf0ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,8 +693,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,8 +988,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1106,8 +1106,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1165,8 +1165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1224,8 +1224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,8 +1283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1342,8 +1342,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1401,8 +1401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,8 +1460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1519,8 +1519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1578,8 +1578,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1637,8 +1637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1696,8 +1696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1755,8 +1755,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1814,8 +1814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1873,8 +1873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1932,8 +1932,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1991,8 +1991,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2050,8 +2050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2109,8 +2109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2168,8 +2168,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,8 +2227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2286,8 +2286,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2345,8 +2345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2404,8 +2404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2460,8 +2460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2519,8 +2519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,8 +2584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2649,8 +2649,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3681\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2702,7 +2702,7 @@ "38870625-8082-4853-b530-4a242e83efd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,8 +2720,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2776,8 +2776,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2835,8 +2835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,8 +2900,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn24269\",\r\n \"etag\": \"W/\\\"150ae5ac-97a7-41fb-b256-0a2fca784095\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn24269\"\r\n }\r\n },\r\n \"name\": \"ip9271\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2950,7 +2950,7 @@ "0c0ac95e-e324-4552-add6-9caaa3218d5c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2968,8 +2968,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3027,8 +3027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6285,4 +6285,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json index 666c812ae2f7..d933f67f40c9 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9414\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "78f60a92-eefa-40f5-93cb-43b8a8ee7167" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,8 +687,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn8550\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -740,7 +740,7 @@ "0ec17ca2-2425-4609-a936-11bb1591b92d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,8 +758,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -873,8 +873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn8550\",\r\n \"etag\": \"W/\\\"a366937d-2fa2-40b4-8aea-7f0fe553ac57\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550\"\r\n }\r\n },\r\n \"name\": \"ip9581\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -988,7 +988,7 @@ "82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,8 +1006,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1065,8 +1065,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3951,4 +3951,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json index d3663b2e51ab..27b1188e2c10 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9086\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "da9b1a55-b312-468d-8096-46f9d2d84c31" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "ace514d6-4d1a-4531-adaa-22341e2af8ff" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json index 22231feb3242..86321f1b9e71 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2213\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "c67351d2-991e-4b2b-a4a2-c4255eb4fd0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9982\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "cf87eff0-e701-4779-9199-51c0843ed22a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json index 665d53764150..aa3f952450a4 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6753\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn1959\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "40dc0178-41da-4050-b3de-1b9cda61769f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1959\",\r\n \"etag\": \"W/\\\"315b667b-e5a5-4bf7-9ca1-3c756c990556\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959\"\r\n }\r\n },\r\n \"name\": \"ip8495\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "fdc47062-3147-4d64-a558-aeddaa06d489" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3987,4 +3987,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json index ac18fe89a6bb..65efff3fd90c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json @@ -462,8 +462,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8427\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -504,7 +504,7 @@ "5a7be3e7-4917-4fc3-adb4-f0f30862b743" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,8 +532,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,8 +584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,8 +639,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -700,8 +700,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3544\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -742,7 +742,7 @@ "97e39527-4fe2-4f11-a000-30b224522828" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -770,8 +770,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -822,8 +822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9831\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7797\",\r\n \"etag\": \"W/\\\"00863957-ff3e-4def-b190-536068ab6b8a\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn3361/subnets/sn7797\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -987,7 +987,7 @@ "63fc8e68-5baa-42d3-a024-786c8ac4c237" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,8 +1005,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json index 72d24676a9cc..3c51a0f0c79f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7283\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "d98b0164-8811-4992-bc62-12ae2f6a4d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn2617\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2617\",\r\n \"etag\": \"W/\\\"07fd8634-fb1c-4560-89b4-44446884430c\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617\"\r\n }\r\n },\r\n \"name\": \"ip6264\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "9b7ae149-a4b7-4c0a-9785-a2eab99093b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4371,4 +4371,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json index ef87e2985ef5..b206bfd84303 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5561\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "e96a5be1-467d-476e-9ba7-f0f30a9dd71c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn7161\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "99c8c91d-bf0a-4441-8d95-a5c0225e8a8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn7161\",\r\n \"etag\": \"W/\\\"92758a28-66c5-46b6-b246-72ef99ff89fd\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161\"\r\n }\r\n },\r\n \"name\": \"ip6687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "078149f6-abf2-45e7-94a3-6c8ff2392c8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4999,4 +4999,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json index 118e49b79b02..808d6f748fe9 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2964\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "1c3a79d8-d438-43d2-a925-ddaaea134ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "084b22a4-d2a9-487c-8839-bcc275001c17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json index ea3b9cdd6a01..b324bef7e566 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2011\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "3f7e6f04-1fe3-44ef-b97e-70134912daa5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5066\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "88051c1a-684c-4042-ac22-1252651e0fa9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index 1eda6a3c1664..15864e8cbfd9 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -525,8 +525,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8116\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -577,7 +577,7 @@ "d265798f-874e-433f-b8ab-3641f409dd93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,8 +595,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,8 +650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -708,8 +708,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -772,8 +772,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -824,7 +824,7 @@ "026fbcdb-fd10-4808-9f9c-d173cbd731ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,8 +842,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -897,8 +897,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -955,8 +955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,8 +1019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3862\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2745\",\r\n \"etag\": \"W/\\\"4020128b-b57c-4960-8176-a5d57670fcbf\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "9c622174-7a10-47b6-8f63-24820e573a2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2016-09-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,8 +1086,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1144,8 +1144,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index 2f3942682387..e6274efd6a1e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -119,8 +119,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3148\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -161,7 +161,7 @@ "a0947abc-4d83-40ff-b67e-fc6cca95679b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,8 +189,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -241,8 +241,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -296,8 +296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -357,8 +357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -399,7 +399,7 @@ "393cefed-f783-4c10-9d9f-95056de294cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,8 +427,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -479,8 +479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,8 +534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,8 +595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9759\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7781\",\r\n \"etag\": \"W/\\\"a8b9d9fd-ede0-4d06-88a3-d2b857e42136\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -634,7 +634,7 @@ "b3e5bcca-6047-432c-9abc-0ec1597b463a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2016-09-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2016-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,8 +662,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -717,8 +717,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMSizesTests/TestListVMSizes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMSizesTests/TestListVMSizes.json index 7cc1d272b2bf..8814c7ae4e6f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMSizesTests/TestListVMSizes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMSizesTests/TestListVMSizes.json @@ -70,4 +70,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} From 175057a8afeebf782150c2f02843fd4b277ff82d Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 15 Feb 2017 12:25:22 -0800 Subject: [PATCH 015/137] #ConnectionDraining updated version number in AssemblyInfo.cs and project.json to 8.4.0* --- .../Properties/AssemblyInfo.cs | 4 ++-- .../Network/Microsoft.Azure.Management.Network/project.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 460547dbb504..05d3cdb99148 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("8.3.0.0")] -[assembly: AssemblyFileVersion("8.3.0.0")] +[assembly: AssemblyVersion("8.4.0.0")] +[assembly: AssemblyFileVersion("8.4.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index ef9812e2cb3f..707032a47109 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,5 +1,5 @@ { - "version": "8.3.0-preview", + "version": "8.4.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From f6582a2ce1f6d9f1ea51bcf9fd7e11237b006d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= Date: Wed, 15 Feb 2017 17:02:53 -0800 Subject: [PATCH 016/137] First generation of Monitor --- global.json | 3 +- .../Monitor/AlertRuleIncidentsOperations.cs | 432 ++++++++ .../AlertRuleIncidentsOperationsExtensions.cs | 107 ++ .../Monitor/AlertRulesOperations.cs | 813 +++++++++++++++ .../Monitor/AlertRulesOperationsExtensions.cs | 188 ++++ .../Monitor/AutoscaleSettingsOperations.cs | 979 ++++++++++++++++++ .../AutoscaleSettingsOperationsExtensions.cs | 218 ++++ .../Monitor/IAlertRuleIncidentsOperations.cs | 73 ++ .../Monitor/IAlertRulesOperations.cs | 122 +++ .../Monitor/IAutoscaleSettingsOperations.cs | 142 +++ .../Monitor/ILogProfilesOperations.cs | 105 ++ .../Monitor/IMonitorManagementClient.cs | 89 ++ .../IServiceDiagnosticSettingsOperations.cs | 68 ++ .../Monitor/LogProfilesOperations.cs | 745 +++++++++++++ .../LogProfilesOperationsExtensions.cs | 154 +++ .../Monitor/Models/AlertRuleResource.cs | 111 ++ .../Monitor/Models/AutoscaleNotification.cs | 62 ++ .../Monitor/Models/AutoscaleProfile.cs | 125 +++ .../Models/AutoscaleSettingResource.cs | 121 +++ .../Monitor/Models/ComparisonOperationType.cs | 31 + .../Monitor/Models/ConditionOperator.cs | 27 + .../Monitor/Models/EmailNotification.cs | 62 ++ .../Management/Monitor/Models/Incident.cs | 79 ++ .../Models/LocationThresholdRuleCondition.cs | 78 ++ .../Monitor/Models/LogProfileResource.cs | 114 ++ .../Management/Monitor/Models/LogSettings.cs | 77 ++ .../ManagementEventAggregationCondition.cs | 66 ++ .../Models/ManagementEventRuleCondition.cs | 60 ++ .../Monitor/Models/MetricSettings.cs | 72 ++ .../Monitor/Models/MetricStatisticType.cs | 27 + .../Monitor/Models/MetricTrigger.cs | 144 +++ .../Management/Monitor/Models/Page.cs | 46 + .../Management/Monitor/Models/Page1.cs | 46 + .../Management/Monitor/Models/Recurrence.cs | 74 ++ .../Monitor/Models/RecurrenceFrequency.cs | 35 + .../Monitor/Models/RecurrentSchedule.cs | 179 ++++ .../Management/Monitor/Models/Resource.cs | 84 ++ .../Monitor/Models/RetentionPolicy.cs | 61 ++ .../Management/Monitor/Models/RuleAction.cs | 26 + .../Monitor/Models/RuleCondition.cs | 25 + .../Monitor/Models/RuleDataSource.cs | 25 + .../Monitor/Models/RuleEmailAction.cs | 55 + .../RuleManagementEventClaimsDataSource.cs | 41 + .../Models/RuleManagementEventDataSource.cs | 122 +++ .../Monitor/Models/RuleMetricDataSource.cs | 53 + .../Monitor/Models/RuleWebhookAction.cs | 54 + .../Management/Monitor/Models/ScaleAction.cs | 88 ++ .../Monitor/Models/ScaleCapacity.cs | 86 ++ .../Monitor/Models/ScaleDirection.cs | 25 + .../Management/Monitor/Models/ScaleRule.cs | 74 ++ .../Management/Monitor/Models/ScaleType.cs | 25 + .../ServiceDiagnosticSettingsResource.cs | 125 +++ .../Monitor/Models/ThresholdRuleCondition.cs | 102 ++ .../Monitor/Models/TimeAggregationOperator.cs | 29 + .../Monitor/Models/TimeAggregationType.cs | 29 + .../Management/Monitor/Models/TimeWindow.cs | 150 +++ .../Monitor/Models/WebhookNotification.cs | 49 + .../Monitor/MonitorManagementClient.cs | 335 ++++++ .../ServiceDiagnosticSettingsOperations.cs | 423 ++++++++ ...eDiagnosticSettingsOperationsExtensions.cs | 95 ++ .../Monitor/ActivityLogsOperations.cs | 443 ++++++++ .../ActivityLogsOperationsExtensions.cs | 173 ++++ .../Monitor/EventCategoriesOperations.cs | 210 ++++ .../EventCategoriesOperationsExtensions.cs | 53 + .../Monitor/IActivityLogsOperations.cs | 111 ++ .../Monitor/IEventCategoriesOperations.cs | 42 + .../Monitor/IMetricDefinitionsOperations.cs | 51 + .../Generated/Monitor/IMetricsOperations.cs | 66 ++ .../Generated/Monitor/IMonitorClient.cs | 94 ++ .../Monitor/ITenantActivityLogsOperations.cs | 123 +++ .../Monitor/IUsageMetricsOperations.cs | 48 + .../Monitor/MetricDefinitionsOperations.cs | 237 +++++ .../MetricDefinitionsOperationsExtensions.cs | 71 ++ .../Generated/Monitor/MetricsOperations.cs | 250 +++++ .../Monitor/MetricsOperationsExtensions.cs | 97 ++ .../Monitor/Models/AggregationType.cs | 31 + .../Generated/Monitor/Models/EventData.cs | 333 ++++++ .../Generated/Monitor/Models/EventLevel.cs | 29 + .../Monitor/Models/HttpRequestInfo.cs | 63 ++ .../Monitor/Models/LocalizableString.cs | 60 ++ .../Generated/Monitor/Models/Metric.cs | 93 ++ .../Monitor/Models/MetricAvailability.cs | 54 + .../Monitor/Models/MetricDefinition.cs | 108 ++ .../Generated/Monitor/Models/MetricValue.cs | 95 ++ .../Generated/Monitor/Models/Page.cs | 46 + .../Generated/Monitor/Models/Page1.cs | 46 + .../Monitor/Models/SenderAuthorization.cs | 58 ++ .../Generated/Monitor/Models/Unit.cs | 33 + .../Generated/Monitor/Models/UsageMetric.cs | 103 ++ .../Generated/Monitor/MonitorClient.cs | 333 ++++++ .../Monitor/TenantActivityLogsOperations.cs | 443 ++++++++ .../TenantActivityLogsOperationsExtensions.cs | 189 ++++ .../Monitor/UsageMetricsOperations.cs | 243 +++++ .../UsageMetricsOperationsExtensions.cs | 67 ++ .../Microsoft.Azure.Monitor.xproj | 18 + .../Properties/AssemblyInfo.cs | 20 + .../Microsoft.Azure.Monitor/generate.cmd | 30 + .../Microsoft.Azure.Monitor/project.json | 50 + .../Monitor.Tests/BasicTests/AlertsTests.cs | 320 ++++++ .../BasicTests/AutoscaleTests.cs | 269 +++++ .../BasicTests/EventDataTests.cs | 219 ++++ .../BasicTests/LogProfilesTests.cs | 178 ++++ .../Monitor.Tests/BasicTests/MetricsTests.cs | 184 ++++ .../ServiceDiagnosticSettingsTests.cs | 205 ++++ .../Monitor.Tests/BasicTests/TestBaseTests.cs | 97 ++ .../Monitor.Tests/BasicTests/UsagesTests.cs | 96 ++ .../Monitor.Tests/Helpers/JsonExtensions.cs | 192 ++++ .../Helpers/RecordedDelegatingHandler.cs | 90 ++ .../Monitor/Monitor.Tests/Monitor.Tests.xproj | 21 + .../Monitor.Tests/Properties/AssemblyInfo.cs | 39 + .../Monitor/Monitor.Tests/project.json | 41 + src/ResourceManagement/Monitor/Monitor.sln | 118 +++ src/ResourceManagement/Monitor/NuGet.Config | 6 + src/ResourceManagement/Monitor/global.json | 3 + 114 files changed, 14746 insertions(+), 1 deletion(-) create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Microsoft.Azure.Monitor.xproj create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd create mode 100644 src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AlertsTests.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AutoscaleTests.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/EventDataTests.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/LogProfilesTests.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/MetricsTests.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/TestBaseTests.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/UsagesTests.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/Helpers/JsonExtensions.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/Helpers/RecordedDelegatingHandler.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/Monitor.Tests.xproj create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Monitor/Monitor.Tests/project.json create mode 100644 src/ResourceManagement/Monitor/Monitor.sln create mode 100644 src/ResourceManagement/Monitor/NuGet.Config create mode 100644 src/ResourceManagement/Monitor/global.json diff --git a/global.json b/global.json index a4394799a565..10555f07ed28 100644 --- a/global.json +++ b/global.json @@ -24,6 +24,7 @@ "src/ResourceManagement/Websites/Microsoft.Azure.Management.Websites", "src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub", "src/ResourceManagement/Insights/Microsoft.Azure.Insights", - "src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis" + "src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis", + "src/ResourceManagement/Monitor/Microsoft.Azure.Monitor" ] } \ No newline at end of file diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs new file mode 100644 index 000000000000..a63388df2131 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs @@ -0,0 +1,432 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// AlertRuleIncidentsOperations operations. + /// + internal partial class AlertRuleIncidentsOperations : Microsoft.Rest.IServiceOperations, IAlertRuleIncidentsOperations + { + /// + /// Initializes a new instance of the AlertRuleIncidentsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal AlertRuleIncidentsOperations(MonitorManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorManagementClient + /// + public MonitorManagementClient Client { get; private set; } + + /// + /// Gets an incident associated to an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The name of the incident to retrieve. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, string incidentName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (ruleName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + } + if (incidentName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "incidentName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("incidentName", incidentName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}/incidents/{incidentName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{incidentName}", System.Uri.EscapeDataString(incidentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of incidents associated to an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (ruleName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByAlertRule", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}/incidents").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs new file mode 100644 index 000000000000..28985a393b35 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs @@ -0,0 +1,107 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for AlertRuleIncidentsOperations. + /// + public static partial class AlertRuleIncidentsOperationsExtensions + { + /// + /// Gets an incident associated to an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The name of the incident to retrieve. + /// + public static Incident Get(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, string incidentName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRuleIncidentsOperations)s).GetAsync(resourceGroupName, ruleName, incidentName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets an incident associated to an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The name of the incident to retrieve. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, string incidentName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, ruleName, incidentName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of incidents associated to an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + public static System.Collections.Generic.IEnumerable ListByAlertRule(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRuleIncidentsOperations)s).ListByAlertRuleAsync(resourceGroupName, ruleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of incidents associated to an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByAlertRuleAsync(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByAlertRuleWithHttpMessagesAsync(resourceGroupName, ruleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs new file mode 100644 index 000000000000..0b0810fd368e --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs @@ -0,0 +1,813 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// AlertRulesOperations operations. + /// + internal partial class AlertRulesOperations : Microsoft.Rest.IServiceOperations, IAlertRulesOperations + { + /// + /// Initializes a new instance of the AlertRulesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal AlertRulesOperations(MonitorManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorManagementClient + /// + public MonitorManagementClient Client { get; private set; } + + /// + /// Creates or updates an alert rule. + /// Request method: PUT Request URI: + /// https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/microsoft.insights/alertRules/{alert-rule-name}?api-version={api-version} + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The parameters of the rule to create or update. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string ruleName, AlertRuleResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (ruleName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + } + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (ruleName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204 && (int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (ruleName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List the alert rules within a resource group. + /// + /// + /// The name of the resource group. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs new file mode 100644 index 000000000000..789ec96fb732 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs @@ -0,0 +1,188 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for AlertRulesOperations. + /// + public static partial class AlertRulesOperationsExtensions + { + /// + /// Creates or updates an alert rule. + /// Request method: PUT Request URI: + /// https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/microsoft.insights/alertRules/{alert-rule-name}?api-version={api-version} + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The parameters of the rule to create or update. + /// + public static AlertRuleResource CreateOrUpdate(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, AlertRuleResource parameters) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRulesOperations)s).CreateOrUpdateAsync(resourceGroupName, ruleName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an alert rule. + /// Request method: PUT Request URI: + /// https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/microsoft.insights/alertRules/{alert-rule-name}?api-version={api-version} + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The parameters of the rule to create or update. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, AlertRuleResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, ruleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + public static void Delete(this IAlertRulesOperations operations, string resourceGroupName, string ruleName) + { + System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRulesOperations)s).DeleteAsync(resourceGroupName, ruleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, ruleName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + public static AlertRuleResource Get(this IAlertRulesOperations operations, string resourceGroupName, string ruleName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRulesOperations)s).GetAsync(resourceGroupName, ruleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets an alert rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, ruleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List the alert rules within a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// OData parameters to apply to the operation. + /// + public static System.Collections.Generic.IEnumerable ListByResourceGroup(this IAlertRulesOperations operations, string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRulesOperations)s).ListByResourceGroupAsync(resourceGroupName, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// List the alert rules within a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IAlertRulesOperations operations, string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs new file mode 100644 index 000000000000..e3832994e930 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs @@ -0,0 +1,979 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// AutoscaleSettingsOperations operations. + /// + internal partial class AutoscaleSettingsOperations : Microsoft.Rest.IServiceOperations, IAutoscaleSettingsOperations + { + /// + /// Initializes a new instance of the AutoscaleSettingsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal AutoscaleSettingsOperations(MonitorManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorManagementClient + /// + public MonitorManagementClient Client { get; private set; } + + /// + /// Lists the autoscale settings for a resource group + /// + /// + /// The name of the resource group. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-04-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/autoscalesettings").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Creates or updates an autoscale setting. + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (autoscaleSettingName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "autoscaleSettingName"); + } + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-04-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("autoscaleSettingName", autoscaleSettingName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/autoscalesettings/{autoscaleSettingName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{autoscaleSettingName}", System.Uri.EscapeDataString(autoscaleSettingName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes and autoscale setting + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (autoscaleSettingName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "autoscaleSettingName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-04-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("autoscaleSettingName", autoscaleSettingName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/autoscalesettings/{autoscaleSettingName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{autoscaleSettingName}", System.Uri.EscapeDataString(autoscaleSettingName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets an autoscale setting + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (autoscaleSettingName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "autoscaleSettingName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-04-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("autoscaleSettingName", autoscaleSettingName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/autoscalesettings/{autoscaleSettingName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{autoscaleSettingName}", System.Uri.EscapeDataString(autoscaleSettingName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists the autoscale settings for a resource group + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs new file mode 100644 index 000000000000..6d04b53e28a4 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs @@ -0,0 +1,218 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for AutoscaleSettingsOperations. + /// + public static partial class AutoscaleSettingsOperationsExtensions + { + /// + /// Lists the autoscale settings for a resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// OData parameters to apply to the operation. + /// + public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IAutoscaleSettingsOperations operations, string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).ListByResourceGroupAsync(resourceGroupName, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Lists the autoscale settings for a resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an autoscale setting. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// Parameters supplied to the operation. + /// + public static AutoscaleSettingResource CreateOrUpdate(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).CreateOrUpdateAsync(resourceGroupName, autoscaleSettingName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an autoscale setting. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, autoscaleSettingName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes and autoscale setting + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + public static void Delete(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName) + { + System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).DeleteAsync(resourceGroupName, autoscaleSettingName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes and autoscale setting + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, autoscaleSettingName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets an autoscale setting + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + public static AutoscaleSettingResource Get(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).GetAsync(resourceGroupName, autoscaleSettingName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets an autoscale setting + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, autoscaleSettingName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists the autoscale settings for a resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this IAutoscaleSettingsOperations operations, string nextPageLink) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Lists the autoscale settings for a resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IAutoscaleSettingsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs new file mode 100644 index 000000000000..afa8a9a27cc3 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs @@ -0,0 +1,73 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// AlertRuleIncidentsOperations operations. + /// + public partial interface IAlertRuleIncidentsOperations + { + /// + /// Gets an incident associated to an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The name of the incident to retrieve. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, string incidentName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Gets a list of incidents associated to an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs new file mode 100644 index 000000000000..2743782850d4 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs @@ -0,0 +1,122 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// AlertRulesOperations operations. + /// + public partial interface IAlertRulesOperations + { + /// + /// Creates or updates an alert rule. + /// Request method: PUT Request URI: + /// https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/microsoft.insights/alertRules/{alert-rule-name}?api-version={api-version} + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The parameters of the rule to create or update. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string ruleName, AlertRuleResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Deletes an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Gets an alert rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// List the alert rules within a resource group. + /// + /// + /// The name of the resource group. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs new file mode 100644 index 000000000000..bf63b945e959 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs @@ -0,0 +1,142 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// AutoscaleSettingsOperations operations. + /// + public partial interface IAutoscaleSettingsOperations + { + /// + /// Lists the autoscale settings for a resource group + /// + /// + /// The name of the resource group. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Creates or updates an autoscale setting. + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Deletes and autoscale setting + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Gets an autoscale setting + /// + /// + /// The name of the resource group. + /// + /// + /// The autoscale setting name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Lists the autoscale settings for a resource group + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs new file mode 100644 index 000000000000..7c29513a7d37 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs @@ -0,0 +1,105 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// LogProfilesOperations operations. + /// + public partial interface ILogProfilesOperations + { + /// + /// Deletes the log profile. + /// + /// + /// The name of the log profile. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Gets the log profile. + /// + /// + /// The name of the log profile. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Create or update a log profile in Azure Monitoring REST API. + /// + /// + /// The name of the log profile. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// List the log profiles. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs new file mode 100644 index 000000000000..ae10881bfd6b --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs @@ -0,0 +1,89 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Composite Swagger for Monitor Management Client + /// + public partial interface IMonitorManagementClient : System.IDisposable + { + /// + /// The base URI of the service. + /// + System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + Microsoft.Rest.ServiceClientCredentials Credentials { get; } + + /// + /// The Azure subscription Id. + /// + string SubscriptionId { get; set; } + + /// + /// Gets or sets the preferred language for the response. + /// + string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running + /// Operations. Default value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set; } + + + /// + /// Gets the IAutoscaleSettingsOperations. + /// + IAutoscaleSettingsOperations AutoscaleSettings { get; } + + /// + /// Gets the IServiceDiagnosticSettingsOperations. + /// + IServiceDiagnosticSettingsOperations ServiceDiagnosticSettings { get; } + + /// + /// Gets the IAlertRulesOperations. + /// + IAlertRulesOperations AlertRules { get; } + + /// + /// Gets the IAlertRuleIncidentsOperations. + /// + IAlertRuleIncidentsOperations AlertRuleIncidents { get; } + + /// + /// Gets the ILogProfilesOperations. + /// + ILogProfilesOperations LogProfiles { get; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs new file mode 100644 index 000000000000..83ba8af739a4 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// ServiceDiagnosticSettingsOperations operations. + /// + public partial interface IServiceDiagnosticSettingsOperations + { + /// + /// Gets the active diagnostic settings for the specified resource. + /// + /// + /// The identifier of the resource. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceUri, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Create or update new diagnostic settings for the specified + /// resource. + /// + /// + /// The identifier of the resource. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs new file mode 100644 index 000000000000..a35b918a14ab --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs @@ -0,0 +1,745 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// LogProfilesOperations operations. + /// + internal partial class LogProfilesOperations : Microsoft.Rest.IServiceOperations, ILogProfilesOperations + { + /// + /// Initializes a new instance of the LogProfilesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal LogProfilesOperations(MonitorManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorManagementClient + /// + public MonitorManagementClient Client { get; private set; } + + /// + /// Deletes the log profile. + /// + /// + /// The name of the log profile. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (logProfileName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "logProfileName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("logProfileName", logProfileName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles/{logProfileName}").ToString(); + _url = _url.Replace("{logProfileName}", System.Uri.EscapeDataString(logProfileName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the log profile. + /// + /// + /// The name of the log profile. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (logProfileName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "logProfileName"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("logProfileName", logProfileName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles/{logProfileName}").ToString(); + _url = _url.Replace("{logProfileName}", System.Uri.EscapeDataString(logProfileName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or update a log profile in Azure Monitoring REST API. + /// + /// + /// The name of the log profile. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (logProfileName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "logProfileName"); + } + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("logProfileName", logProfileName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles/{logProfileName}").ToString(); + _url = _url.Replace("{logProfileName}", System.Uri.EscapeDataString(logProfileName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List the log profiles. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs new file mode 100644 index 000000000000..8c28aac7819e --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs @@ -0,0 +1,154 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for LogProfilesOperations. + /// + public static partial class LogProfilesOperationsExtensions + { + /// + /// Deletes the log profile. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the log profile. + /// + public static void Delete(this ILogProfilesOperations operations, string logProfileName) + { + System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).DeleteAsync(logProfileName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes the log profile. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the log profile. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this ILogProfilesOperations operations, string logProfileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(logProfileName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the log profile. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the log profile. + /// + public static LogProfileResource Get(this ILogProfilesOperations operations, string logProfileName) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).GetAsync(logProfileName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the log profile. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the log profile. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this ILogProfilesOperations operations, string logProfileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(logProfileName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update a log profile in Azure Monitoring REST API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the log profile. + /// + /// + /// Parameters supplied to the operation. + /// + public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations operations, string logProfileName, LogProfileResource parameters) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).CreateOrUpdateAsync(logProfileName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create or update a log profile in Azure Monitoring REST API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the log profile. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ILogProfilesOperations operations, string logProfileName, LogProfileResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(logProfileName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List the log profiles. + /// + /// + /// The operations group for this extension method. + /// + public static System.Collections.Generic.IEnumerable List(this ILogProfilesOperations operations) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// List the log profiles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ILogProfilesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs new file mode 100644 index 000000000000..3fb1f9a577ff --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs @@ -0,0 +1,111 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The alert rule resource. + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class AlertRuleResource : Resource + { + /// + /// Initializes a new instance of the AlertRuleResource class. + /// + public AlertRuleResource() { } + + /// + /// Initializes a new instance of the AlertRuleResource class. + /// + /// Resource location + /// the name of the alert + /// rule. + /// the flag that indicates whether the alert + /// rule is enabled. + /// Azure resource Id + /// Azure resource name + /// Azure resource type + /// Resource tags + /// the description of the alert rule that + /// will be included in the alert email. + /// the condition that results in the alert + /// rule being activated. + /// the array of actions that are performed when + /// the alert rule becomes active, and when an alert condition is + /// resolved. + /// Last time the rule was updated in + /// ISO8601 format. + public AlertRuleResource(string location, string alertRuleResourceName, bool isEnabled, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string description = default(string), RuleCondition condition = default(RuleCondition), System.Collections.Generic.IList actions = default(System.Collections.Generic.IList), System.DateTime? lastUpdatedTime = default(System.DateTime?)) + : base(location, id, name, type, tags) + { + AlertRuleResourceName = alertRuleResourceName; + Description = description; + IsEnabled = isEnabled; + Condition = condition; + Actions = actions; + LastUpdatedTime = lastUpdatedTime; + } + + /// + /// Gets or sets the name of the alert rule. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.name")] + public string AlertRuleResourceName { get; set; } + + /// + /// Gets or sets the description of the alert rule that will be + /// included in the alert email. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.description")] + public string Description { get; set; } + + /// + /// Gets or sets the flag that indicates whether the alert rule is + /// enabled. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.isEnabled")] + public bool IsEnabled { get; set; } + + /// + /// Gets or sets the condition that results in the alert rule being + /// activated. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.condition")] + public RuleCondition Condition { get; set; } + + /// + /// Gets or sets the array of actions that are performed when the alert + /// rule becomes active, and when an alert condition is resolved. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.actions")] + public System.Collections.Generic.IList Actions { get; set; } + + /// + /// Gets last time the rule was updated in ISO8601 format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.lastUpdatedTime")] + public System.DateTime? LastUpdatedTime { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (AlertRuleResourceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "AlertRuleResourceName"); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs new file mode 100644 index 000000000000..429ceaaee534 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Autoscale notification. + /// + public partial class AutoscaleNotification + { + /// + /// Initializes a new instance of the AutoscaleNotification class. + /// + public AutoscaleNotification() { } + + /// + /// Initializes a new instance of the AutoscaleNotification class. + /// + /// the email notification. + /// the collection of webhook + /// notifications. + public AutoscaleNotification(EmailNotification email = default(EmailNotification), System.Collections.Generic.IList webhooks = default(System.Collections.Generic.IList)) + { + Email = email; + Webhooks = webhooks; + } + /// + /// Static constructor for AutoscaleNotification class. + /// + static AutoscaleNotification() + { + Operation = "Scale"; + } + + /// + /// Gets or sets the email notification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "email")] + public EmailNotification Email { get; set; } + + /// + /// Gets or sets the collection of webhook notifications. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "webhooks")] + public System.Collections.Generic.IList Webhooks { get; set; } + + /// + /// the operation associated with the notification and its value must + /// be "scale" + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operation")] + public static string Operation { get; private set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs new file mode 100644 index 000000000000..c0630fecdb47 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs @@ -0,0 +1,125 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Autoscale profile. + /// + public partial class AutoscaleProfile + { + /// + /// Initializes a new instance of the AutoscaleProfile class. + /// + public AutoscaleProfile() { } + + /// + /// Initializes a new instance of the AutoscaleProfile class. + /// + /// the name of the profile. + /// the number of instances that can be used + /// during this profile. + /// the collection of rules that provide the + /// triggers and parameters for the scaling action. A maximum of 10 + /// rules can be specified. + /// the specific date-time for the profile. + /// This element is not used if the Recurrence element is used. + /// the repeating times at which this profile + /// begins. This element is not used if the FixedDate element is + /// used. + public AutoscaleProfile(string name, ScaleCapacity capacity, System.Collections.Generic.IList rules, TimeWindow fixedDate = default(TimeWindow), Recurrence recurrence = default(Recurrence)) + { + Name = name; + Capacity = capacity; + Rules = rules; + FixedDate = fixedDate; + Recurrence = recurrence; + } + + /// + /// Gets or sets the name of the profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the number of instances that can be used during this + /// profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "capacity")] + public ScaleCapacity Capacity { get; set; } + + /// + /// Gets or sets the collection of rules that provide the triggers and + /// parameters for the scaling action. A maximum of 10 rules can be + /// specified. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "rules")] + public System.Collections.Generic.IList Rules { get; set; } + + /// + /// Gets or sets the specific date-time for the profile. This element + /// is not used if the Recurrence element is used. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "fixedDate")] + public TimeWindow FixedDate { get; set; } + + /// + /// Gets or sets the repeating times at which this profile begins. This + /// element is not used if the FixedDate element is used. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "recurrence")] + public Recurrence Recurrence { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + } + if (Capacity == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Capacity"); + } + if (Rules == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Rules"); + } + if (this.Capacity != null) + { + this.Capacity.Validate(); + } + if (this.Rules != null) + { + foreach (var element in this.Rules) + { + if (element != null) + { + element.Validate(); + } + } + } + if (this.FixedDate != null) + { + this.FixedDate.Validate(); + } + if (this.Recurrence != null) + { + this.Recurrence.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs new file mode 100644 index 000000000000..49abc19505f3 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs @@ -0,0 +1,121 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The autoscale setting resource. + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class AutoscaleSettingResource : Resource + { + /// + /// Initializes a new instance of the AutoscaleSettingResource class. + /// + public AutoscaleSettingResource() { } + + /// + /// Initializes a new instance of the AutoscaleSettingResource class. + /// + /// Resource location + /// the collection of automatic scaling profiles + /// that specify different scaling parameters for different time + /// periods. A maximum of 20 profiles can be specified. + /// the name of the + /// autoscale setting. + /// Azure resource Id + /// Azure resource name + /// Azure resource type + /// Resource tags + /// the collection of + /// notifications. + /// the enabled flag. Specifies whether automatic + /// scaling is enabled for the resource. The default value is + /// 'true'. + /// the resource identifier of the + /// resource that the autoscale setting should be added to. + public AutoscaleSettingResource(string location, System.Collections.Generic.IList profiles, string autoscaleSettingResourceName, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList notifications = default(System.Collections.Generic.IList), bool? enabled = default(bool?), string targetResourceUri = default(string)) + : base(location, id, name, type, tags) + { + Profiles = profiles; + Notifications = notifications; + Enabled = enabled; + AutoscaleSettingResourceName = autoscaleSettingResourceName; + TargetResourceUri = targetResourceUri; + } + + /// + /// Gets or sets the collection of automatic scaling profiles that + /// specify different scaling parameters for different time periods. A + /// maximum of 20 profiles can be specified. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.profiles")] + public System.Collections.Generic.IList Profiles { get; set; } + + /// + /// Gets or sets the collection of notifications. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.notifications")] + public System.Collections.Generic.IList Notifications { get; set; } + + /// + /// Gets or sets the enabled flag. Specifies whether automatic scaling + /// is enabled for the resource. The default value is 'true'. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.enabled")] + public bool? Enabled { get; set; } + + /// + /// Gets or sets the name of the autoscale setting. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.name")] + public string AutoscaleSettingResourceName { get; set; } + + /// + /// Gets or sets the resource identifier of the resource that the + /// autoscale setting should be added to. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.targetResourceUri")] + public string TargetResourceUri { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (Profiles == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Profiles"); + } + if (AutoscaleSettingResourceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "AutoscaleSettingResourceName"); + } + if (this.Profiles != null) + { + if (this.Profiles.Count > 20) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxItems, "Profiles", 20); + } + foreach (var element in this.Profiles) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs new file mode 100644 index 000000000000..7e8f008f77ac --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines values for ComparisonOperationType. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum ComparisonOperationType + { + [System.Runtime.Serialization.EnumMember(Value = "Equals")] + Equals, + [System.Runtime.Serialization.EnumMember(Value = "NotEquals")] + NotEquals, + [System.Runtime.Serialization.EnumMember(Value = "GreaterThan")] + GreaterThan, + [System.Runtime.Serialization.EnumMember(Value = "GreaterThanOrEqual")] + GreaterThanOrEqual, + [System.Runtime.Serialization.EnumMember(Value = "LessThan")] + LessThan, + [System.Runtime.Serialization.EnumMember(Value = "LessThanOrEqual")] + LessThanOrEqual + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs new file mode 100644 index 000000000000..4cbf188dc3b7 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines values for ConditionOperator. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum ConditionOperator + { + [System.Runtime.Serialization.EnumMember(Value = "GreaterThan")] + GreaterThan, + [System.Runtime.Serialization.EnumMember(Value = "GreaterThanOrEqual")] + GreaterThanOrEqual, + [System.Runtime.Serialization.EnumMember(Value = "LessThan")] + LessThan, + [System.Runtime.Serialization.EnumMember(Value = "LessThanOrEqual")] + LessThanOrEqual + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs new file mode 100644 index 000000000000..3dc3debc80b3 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Email notification of an autoscale event. + /// + public partial class EmailNotification + { + /// + /// Initializes a new instance of the EmailNotification class. + /// + public EmailNotification() { } + + /// + /// Initializes a new instance of the EmailNotification class. + /// + /// a value indicating + /// whether to send email to subscription administrator. + /// a value indicating + /// whether to send email to subscription co-administrators. + /// the custom e-mails list. This value can + /// be null or empty, in which case this attribute will be + /// ignored. + public EmailNotification(bool? sendToSubscriptionAdministrator = default(bool?), bool? sendToSubscriptionCoAdministrators = default(bool?), System.Collections.Generic.IList customEmails = default(System.Collections.Generic.IList)) + { + SendToSubscriptionAdministrator = sendToSubscriptionAdministrator; + SendToSubscriptionCoAdministrators = sendToSubscriptionCoAdministrators; + CustomEmails = customEmails; + } + + /// + /// Gets or sets a value indicating whether to send email to + /// subscription administrator. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "sendToSubscriptionAdministrator")] + public bool? SendToSubscriptionAdministrator { get; set; } + + /// + /// Gets or sets a value indicating whether to send email to + /// subscription co-administrators. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "sendToSubscriptionCoAdministrators")] + public bool? SendToSubscriptionCoAdministrators { get; set; } + + /// + /// Gets or sets the custom e-mails list. This value can be null or + /// empty, in which case this attribute will be ignored. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "customEmails")] + public System.Collections.Generic.IList CustomEmails { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs new file mode 100644 index 000000000000..f5265dc413c3 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs @@ -0,0 +1,79 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// An alert incident indicates the activation status of an alert rule. + /// + public partial class Incident + { + /// + /// Initializes a new instance of the Incident class. + /// + public Incident() { } + + /// + /// Initializes a new instance of the Incident class. + /// + /// Incident name. + /// Rule name that is associated with the + /// incident. + /// A boolean to indicate whether the incident + /// is active or resolved. + /// The time at which the incident was + /// activated in ISO8601 format. + /// The time at which the incident was + /// resolved in ISO8601 format. If null, it means the incident is still + /// active. + public Incident(string name = default(string), string ruleName = default(string), bool? isActive = default(bool?), System.DateTime? activatedTime = default(System.DateTime?), System.DateTime? resolvedTime = default(System.DateTime?)) + { + Name = name; + RuleName = ruleName; + IsActive = isActive; + ActivatedTime = activatedTime; + ResolvedTime = resolvedTime; + } + + /// + /// Gets incident name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets rule name that is associated with the incident. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "ruleName")] + public string RuleName { get; private set; } + + /// + /// Gets a boolean to indicate whether the incident is active or + /// resolved. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "isActive")] + public bool? IsActive { get; private set; } + + /// + /// Gets the time at which the incident was activated in ISO8601 + /// format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "activatedTime")] + public System.DateTime? ActivatedTime { get; private set; } + + /// + /// Gets the time at which the incident was resolved in ISO8601 format. + /// If null, it means the incident is still active. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resolvedTime")] + public System.DateTime? ResolvedTime { get; private set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs new file mode 100644 index 000000000000..4ef77a17dbaf --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// A rule condition based on a certain number of locations failing. + /// + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.LocationThresholdRuleCondition")] + public partial class LocationThresholdRuleCondition : RuleCondition + { + /// + /// Initializes a new instance of the LocationThresholdRuleCondition + /// class. + /// + public LocationThresholdRuleCondition() { } + + /// + /// Initializes a new instance of the LocationThresholdRuleCondition + /// class. + /// + /// the number of locations that must + /// fail to activate the alert. + /// the resource from which the rule collects + /// its data. For this type dataSource will always be of type + /// RuleMetricDataSource. + /// the period of time (in ISO 8601 duration + /// format) that is used to monitor alert activity based on the + /// threshold. If specified then it must be between 5 minutes and 1 + /// day. + public LocationThresholdRuleCondition(int failedLocationCount, RuleDataSource dataSource = default(RuleDataSource), System.TimeSpan? windowSize = default(System.TimeSpan?)) + { + DataSource = dataSource; + WindowSize = windowSize; + FailedLocationCount = failedLocationCount; + } + + /// + /// Gets or sets the resource from which the rule collects its data. + /// For this type dataSource will always be of type + /// RuleMetricDataSource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] + public RuleDataSource DataSource { get; set; } + + /// + /// Gets or sets the period of time (in ISO 8601 duration format) that + /// is used to monitor alert activity based on the threshold. If + /// specified then it must be between 5 minutes and 1 day. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "windowSize")] + public System.TimeSpan? WindowSize { get; set; } + + /// + /// Gets or sets the number of locations that must fail to activate the + /// alert. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "failedLocationCount")] + public int FailedLocationCount { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs new file mode 100644 index 000000000000..407a81934811 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The log profile resource. + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class LogProfileResource : Resource + { + /// + /// Initializes a new instance of the LogProfileResource class. + /// + public LogProfileResource() { } + + /// + /// Initializes a new instance of the LogProfileResource class. + /// + /// Resource location + /// List of regions for which Activity Log + /// events should be stored or streamed. It is a comma separated list + /// of valid ARM locations including the 'global' location. + /// Azure resource Id + /// Azure resource name + /// Azure resource type + /// Resource tags + /// the resource id of the storage + /// account to which you would like to send the Activity Log. + /// The service bus rule ID of the + /// service bus namespace in which you would like to have Event Hubs + /// created for streaming the Activity Log. The rule ID is of the + /// format: '{service bus resource ID}/authorizationrules/{key + /// name}'. + /// the categories of the logs. These + /// categories are created as is convenient to the user. Some values + /// are: 'Write', 'Delete', and/or 'Action.' + /// the retention policy for the events + /// in the log. + public LogProfileResource(string location, System.Collections.Generic.IList locations, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) + : base(location, id, name, type, tags) + { + StorageAccountId = storageAccountId; + ServiceBusRuleId = serviceBusRuleId; + Locations = locations; + Categories = categories; + RetentionPolicy = retentionPolicy; + } + + /// + /// Gets or sets the resource id of the storage account to which you + /// would like to send the Activity Log. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccountId")] + public string StorageAccountId { get; set; } + + /// + /// Gets or sets the service bus rule ID of the service bus namespace + /// in which you would like to have Event Hubs created for streaming + /// the Activity Log. The rule ID is of the format: '{service bus + /// resource ID}/authorizationrules/{key name}'. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceBusRuleId")] + public string ServiceBusRuleId { get; set; } + + /// + /// Gets or sets list of regions for which Activity Log events should + /// be stored or streamed. It is a comma separated list of valid ARM + /// locations including the 'global' location. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.locations")] + public System.Collections.Generic.IList Locations { get; set; } + + /// + /// Gets or sets the categories of the logs. These categories are + /// created as is convenient to the user. Some values are: 'Write', + /// 'Delete', and/or 'Action.' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.categories")] + public System.Collections.Generic.IList Categories { get; set; } + + /// + /// Gets or sets the retention policy for the events in the log. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.retentionPolicy")] + public RetentionPolicy RetentionPolicy { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (Locations == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Locations"); + } + if (this.RetentionPolicy != null) + { + this.RetentionPolicy.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs new file mode 100644 index 000000000000..bc3aabca8ca4 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs @@ -0,0 +1,77 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Part of MultiTenantDiagnosticSettings. Specifies the settings for a + /// particular log. + /// + public partial class LogSettings + { + /// + /// Initializes a new instance of the LogSettings class. + /// + public LogSettings() { } + + /// + /// Initializes a new instance of the LogSettings class. + /// + /// a value indicating whether this log is + /// enabled. + /// Name of a Diagnostic Log category for a + /// resource type this setting is applied to. To obtain the list of + /// Diagnostic Log categories for a resource, first perform a GET + /// diagnostic settings operation. + /// the retention policy for this + /// log. + public LogSettings(bool enabled, string category = default(string), RetentionPolicy retentionPolicy = default(RetentionPolicy)) + { + Category = category; + Enabled = enabled; + RetentionPolicy = retentionPolicy; + } + + /// + /// Gets or sets name of a Diagnostic Log category for a resource type + /// this setting is applied to. To obtain the list of Diagnostic Log + /// categories for a resource, first perform a GET diagnostic settings + /// operation. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "category")] + public string Category { get; set; } + + /// + /// Gets or sets a value indicating whether this log is enabled. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "enabled")] + public bool Enabled { get; set; } + + /// + /// Gets or sets the retention policy for this log. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "retentionPolicy")] + public RetentionPolicy RetentionPolicy { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.RetentionPolicy != null) + { + this.RetentionPolicy.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs new file mode 100644 index 000000000000..f7d9adca503d --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// How the data that is collected should be combined over time. + /// + public partial class ManagementEventAggregationCondition + { + /// + /// Initializes a new instance of the + /// ManagementEventAggregationCondition class. + /// + public ManagementEventAggregationCondition() { } + + /// + /// Initializes a new instance of the + /// ManagementEventAggregationCondition class. + /// + /// the condition operator. Possible + /// values include: 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', + /// 'LessThanOrEqual' + /// The threshold value that activates the + /// alert. + /// the period of time (in ISO 8601 duration + /// format) that is used to monitor alert activity based on the + /// threshold. If specified then it must be between 5 minutes and 1 + /// day. + public ManagementEventAggregationCondition(ConditionOperator? operatorProperty = default(ConditionOperator?), double? threshold = default(double?), System.TimeSpan? windowSize = default(System.TimeSpan?)) + { + OperatorProperty = operatorProperty; + Threshold = threshold; + WindowSize = windowSize; + } + + /// + /// Gets or sets the condition operator. Possible values include: + /// 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operator")] + public ConditionOperator? OperatorProperty { get; set; } + + /// + /// Gets or sets the threshold value that activates the alert. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "threshold")] + public double? Threshold { get; set; } + + /// + /// Gets or sets the period of time (in ISO 8601 duration format) that + /// is used to monitor alert activity based on the threshold. If + /// specified then it must be between 5 minutes and 1 day. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "windowSize")] + public System.TimeSpan? WindowSize { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs new file mode 100644 index 000000000000..bd876c36bb86 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// A management event rule condition. + /// + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.ManagementEventRuleCondition")] + public partial class ManagementEventRuleCondition : RuleCondition + { + /// + /// Initializes a new instance of the ManagementEventRuleCondition + /// class. + /// + public ManagementEventRuleCondition() { } + + /// + /// Initializes a new instance of the ManagementEventRuleCondition + /// class. + /// + /// the resource from which the rule collects + /// its data. For this type dataSource will always be of type + /// RuleManagementEventDataSource. + /// How the data that is collected should be + /// combined over time and when the alert is activated. Note that for + /// management event alerts aggregation is optional – if it is not + /// provided then any event will cause the alert to activate. + public ManagementEventRuleCondition(RuleDataSource dataSource = default(RuleDataSource), ManagementEventAggregationCondition aggregation = default(ManagementEventAggregationCondition)) + { + DataSource = dataSource; + Aggregation = aggregation; + } + + /// + /// Gets or sets the resource from which the rule collects its data. + /// For this type dataSource will always be of type + /// RuleManagementEventDataSource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] + public RuleDataSource DataSource { get; set; } + + /// + /// Gets or sets how the data that is collected should be combined over + /// time and when the alert is activated. Note that for management + /// event alerts aggregation is optional – if it is not provided then + /// any event will cause the alert to activate. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "aggregation")] + public ManagementEventAggregationCondition Aggregation { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs new file mode 100644 index 000000000000..9e4a27950755 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Part of MultiTenantDiagnosticSettings. Specifies the settings for a + /// particular metric. + /// + public partial class MetricSettings + { + /// + /// Initializes a new instance of the MetricSettings class. + /// + public MetricSettings() { } + + /// + /// Initializes a new instance of the MetricSettings class. + /// + /// the timegrain of the metric in ISO8601 + /// format. + /// a value indicating whether this timegrain is + /// enabled. + /// the retention policy for this + /// timegrain. + public MetricSettings(System.TimeSpan timeGrain, bool enabled, RetentionPolicy retentionPolicy = default(RetentionPolicy)) + { + TimeGrain = timeGrain; + Enabled = enabled; + RetentionPolicy = retentionPolicy; + } + + /// + /// Gets or sets the timegrain of the metric in ISO8601 format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeGrain")] + public System.TimeSpan TimeGrain { get; set; } + + /// + /// Gets or sets a value indicating whether this timegrain is enabled. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "enabled")] + public bool Enabled { get; set; } + + /// + /// Gets or sets the retention policy for this timegrain. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "retentionPolicy")] + public RetentionPolicy RetentionPolicy { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.RetentionPolicy != null) + { + this.RetentionPolicy.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs new file mode 100644 index 000000000000..01450b9f3d4d --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines values for MetricStatisticType. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum MetricStatisticType + { + [System.Runtime.Serialization.EnumMember(Value = "Average")] + Average, + [System.Runtime.Serialization.EnumMember(Value = "Min")] + Min, + [System.Runtime.Serialization.EnumMember(Value = "Max")] + Max, + [System.Runtime.Serialization.EnumMember(Value = "Sum")] + Sum + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs new file mode 100644 index 000000000000..d7b2c3ae7f9a --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs @@ -0,0 +1,144 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The trigger that results in a scaling action. + /// + public partial class MetricTrigger + { + /// + /// Initializes a new instance of the MetricTrigger class. + /// + public MetricTrigger() { } + + /// + /// Initializes a new instance of the MetricTrigger class. + /// + /// the name of the metric that defines what + /// the rule monitors. + /// the resource identifier of the + /// resource the rule monitors. + /// the granularity of metrics the rule + /// monitors. Must be one of the predefined values returned from metric + /// definitions for the metric. Must be between 12 hours and 1 + /// minute. + /// the metric statistic type. How the metrics + /// from multiple instances are combined. Possible values include: + /// 'Average', 'Min', 'Max', 'Sum' + /// the range of time in which instance data + /// is collected. This value must be greater than the delay in metric + /// collection, which can vary from resource-to-resource. Must be + /// between 12 hours and 5 minutes. + /// time aggregation type. How the data + /// that is collected should be combined over time. The default value + /// is Average. Possible values include: 'Average', 'Minimum', + /// 'Maximum', 'Total', 'Count' + /// the operator that is used to compare + /// the metric data and the threshold. Possible values include: + /// 'Equals', 'NotEquals', 'GreaterThan', 'GreaterThanOrEqual', + /// 'LessThan', 'LessThanOrEqual' + /// the threshold of the metric that triggers + /// the scale action. + public MetricTrigger(string metricName, string metricResourceUri, System.TimeSpan timeGrain, MetricStatisticType statistic, System.TimeSpan timeWindow, TimeAggregationType timeAggregation, ComparisonOperationType operatorProperty, double threshold) + { + MetricName = metricName; + MetricResourceUri = metricResourceUri; + TimeGrain = timeGrain; + Statistic = statistic; + TimeWindow = timeWindow; + TimeAggregation = timeAggregation; + OperatorProperty = operatorProperty; + Threshold = threshold; + } + + /// + /// Gets or sets the name of the metric that defines what the rule + /// monitors. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "metricName")] + public string MetricName { get; set; } + + /// + /// Gets or sets the resource identifier of the resource the rule + /// monitors. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "metricResourceUri")] + public string MetricResourceUri { get; set; } + + /// + /// Gets or sets the granularity of metrics the rule monitors. Must be + /// one of the predefined values returned from metric definitions for + /// the metric. Must be between 12 hours and 1 minute. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeGrain")] + public System.TimeSpan TimeGrain { get; set; } + + /// + /// Gets or sets the metric statistic type. How the metrics from + /// multiple instances are combined. Possible values include: + /// 'Average', 'Min', 'Max', 'Sum' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "statistic")] + public MetricStatisticType Statistic { get; set; } + + /// + /// Gets or sets the range of time in which instance data is collected. + /// This value must be greater than the delay in metric collection, + /// which can vary from resource-to-resource. Must be between 12 hours + /// and 5 minutes. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeWindow")] + public System.TimeSpan TimeWindow { get; set; } + + /// + /// Gets or sets time aggregation type. How the data that is collected + /// should be combined over time. The default value is Average. + /// Possible values include: 'Average', 'Minimum', 'Maximum', 'Total', + /// 'Count' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeAggregation")] + public TimeAggregationType TimeAggregation { get; set; } + + /// + /// Gets or sets the operator that is used to compare the metric data + /// and the threshold. Possible values include: 'Equals', 'NotEquals', + /// 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operator")] + public ComparisonOperationType OperatorProperty { get; set; } + + /// + /// Gets or sets the threshold of the metric that triggers the scale + /// action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "threshold")] + public double Threshold { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MetricName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricName"); + } + if (MetricResourceUri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricResourceUri"); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs new file mode 100644 index 000000000000..69c4c496e56d --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [Newtonsoft.Json.JsonObject] + public class Page : Microsoft.Rest.Azure.IPage + { + /// + /// Gets the link to the next page. + /// + [Newtonsoft.Json.JsonProperty("nextLink")] + public System.String NextPageLink { get; private set; } + + [Newtonsoft.Json.JsonProperty("value")] + private System.Collections.Generic.IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public System.Collections.Generic.IEnumerator GetEnumerator() + { + return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs new file mode 100644 index 000000000000..28a3519f753d --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [Newtonsoft.Json.JsonObject] + public class Page1 : Microsoft.Rest.Azure.IPage + { + /// + /// Gets the link to the next page. + /// + [Newtonsoft.Json.JsonProperty("")] + public System.String NextPageLink { get; private set; } + + [Newtonsoft.Json.JsonProperty("value")] + private System.Collections.Generic.IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public System.Collections.Generic.IEnumerator GetEnumerator() + { + return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs new file mode 100644 index 000000000000..edc855290964 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The repeating times at which this profile begins. This element is not + /// used if the FixedDate element is used. + /// + public partial class Recurrence + { + /// + /// Initializes a new instance of the Recurrence class. + /// + public Recurrence() { } + + /// + /// Initializes a new instance of the Recurrence class. + /// + /// the recurrence frequency. How often the + /// schedule profile should take effect. This value must be Week, + /// meaning each week will have the same set of profiles. Possible + /// values include: 'None', 'Second', 'Minute', 'Hour', 'Day', 'Week', + /// 'Month', 'Year' + /// the scheduling constraints for when the + /// profile begins. + public Recurrence(RecurrenceFrequency frequency, RecurrentSchedule schedule) + { + Frequency = frequency; + Schedule = schedule; + } + + /// + /// Gets or sets the recurrence frequency. How often the schedule + /// profile should take effect. This value must be Week, meaning each + /// week will have the same set of profiles. Possible values include: + /// 'None', 'Second', 'Minute', 'Hour', 'Day', 'Week', 'Month', 'Year' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "frequency")] + public RecurrenceFrequency Frequency { get; set; } + + /// + /// Gets or sets the scheduling constraints for when the profile + /// begins. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "schedule")] + public RecurrentSchedule Schedule { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Schedule == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Schedule"); + } + if (this.Schedule != null) + { + this.Schedule.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs new file mode 100644 index 000000000000..84ce4f31fe64 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.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 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines values for RecurrenceFrequency. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum RecurrenceFrequency + { + [System.Runtime.Serialization.EnumMember(Value = "None")] + None, + [System.Runtime.Serialization.EnumMember(Value = "Second")] + Second, + [System.Runtime.Serialization.EnumMember(Value = "Minute")] + Minute, + [System.Runtime.Serialization.EnumMember(Value = "Hour")] + Hour, + [System.Runtime.Serialization.EnumMember(Value = "Day")] + Day, + [System.Runtime.Serialization.EnumMember(Value = "Week")] + Week, + [System.Runtime.Serialization.EnumMember(Value = "Month")] + Month, + [System.Runtime.Serialization.EnumMember(Value = "Year")] + Year + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs new file mode 100644 index 000000000000..f65146399687 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs @@ -0,0 +1,179 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The scheduling constraints for when the profile begins. + /// + public partial class RecurrentSchedule + { + /// + /// Initializes a new instance of the RecurrentSchedule class. + /// + public RecurrentSchedule() { } + + /// + /// Initializes a new instance of the RecurrentSchedule class. + /// + /// the timezone for the hours of the profile. + /// Some examples of valid timezones are: Dateline Standard Time, + /// UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific + /// Standard Time (Mexico), Pacific Standard Time, US Mountain Standard + /// Time, Mountain Standard Time (Mexico), Mountain Standard Time, + /// Central America Standard Time, Central Standard Time, Central + /// Standard Time (Mexico), Canada Central Standard Time, SA Pacific + /// Standard Time, Eastern Standard Time, US Eastern Standard Time, + /// Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard + /// Time, Central Brazilian Standard Time, SA Western Standard Time, + /// Pacific SA Standard Time, Newfoundland Standard Time, E. South + /// America Standard Time, Argentina Standard Time, SA Eastern Standard + /// Time, Greenland Standard Time, Montevideo Standard Time, Bahia + /// Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard + /// Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT + /// Standard Time, Greenwich Standard Time, W. Europe Standard Time, + /// Central Europe Standard Time, Romance Standard Time, Central + /// European Standard Time, W. Central Africa Standard Time, Namibia + /// Standard Time, Jordan Standard Time, GTB Standard Time, Middle East + /// Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe + /// Standard Time, South Africa Standard Time, FLE Standard Time, + /// Turkey Standard Time, Israel Standard Time, Kaliningrad Standard + /// Time, Libya Standard Time, Arabic Standard Time, Arab Standard + /// Time, Belarus Standard Time, Russian Standard Time, E. Africa + /// Standard Time, Iran Standard Time, Arabian Standard Time, + /// Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard + /// Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan + /// Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, + /// Pakistan Standard Time, India Standard Time, Sri Lanka Standard + /// Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh + /// Standard Time, N. Central Asia Standard Time, Myanmar Standard + /// Time, SE Asia Standard Time, North Asia Standard Time, China + /// Standard Time, North Asia East Standard Time, Singapore Standard + /// Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar + /// Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk + /// Standard Time, Cen. Australia Standard Time, AUS Central Standard + /// Time, E. Australia Standard Time, AUS Eastern Standard Time, West + /// Pacific Standard Time, Tasmania Standard Time, Magadan Standard + /// Time, Vladivostok Standard Time, Russia Time Zone 10, Central + /// Pacific Standard Time, Russia Time Zone 11, New Zealand Standard + /// Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga + /// Standard Time, Samoa Standard Time, Line Islands Standard + /// Time + /// the collection of days that the profile takes + /// effect on. Possible values are Sunday through Saturday. + /// A collection of hours that the profile takes + /// effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM + /// times are not supported). + /// A collection of minutes at which the profile + /// takes effect at. + public RecurrentSchedule(string timeZone, System.Collections.Generic.IList days, System.Collections.Generic.IList hours, System.Collections.Generic.IList minutes) + { + TimeZone = timeZone; + Days = days; + Hours = hours; + Minutes = minutes; + } + + /// + /// Gets or sets the timezone for the hours of the profile. Some + /// examples of valid timezones are: Dateline Standard Time, UTC-11, + /// Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard + /// Time (Mexico), Pacific Standard Time, US Mountain Standard Time, + /// Mountain Standard Time (Mexico), Mountain Standard Time, Central + /// America Standard Time, Central Standard Time, Central Standard Time + /// (Mexico), Canada Central Standard Time, SA Pacific Standard Time, + /// Eastern Standard Time, US Eastern Standard Time, Venezuela Standard + /// Time, Paraguay Standard Time, Atlantic Standard Time, Central + /// Brazilian Standard Time, SA Western Standard Time, Pacific SA + /// Standard Time, Newfoundland Standard Time, E. South America + /// Standard Time, Argentina Standard Time, SA Eastern Standard Time, + /// Greenland Standard Time, Montevideo Standard Time, Bahia Standard + /// Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, + /// Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard + /// Time, Greenwich Standard Time, W. Europe Standard Time, Central + /// Europe Standard Time, Romance Standard Time, Central European + /// Standard Time, W. Central Africa Standard Time, Namibia Standard + /// Time, Jordan Standard Time, GTB Standard Time, Middle East Standard + /// Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard + /// Time, South Africa Standard Time, FLE Standard Time, Turkey + /// Standard Time, Israel Standard Time, Kaliningrad Standard Time, + /// Libya Standard Time, Arabic Standard Time, Arab Standard Time, + /// Belarus Standard Time, Russian Standard Time, E. Africa Standard + /// Time, Iran Standard Time, Arabian Standard Time, Azerbaijan + /// Standard Time, Russia Time Zone 3, Mauritius Standard Time, + /// Georgian Standard Time, Caucasus Standard Time, Afghanistan + /// Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, + /// Pakistan Standard Time, India Standard Time, Sri Lanka Standard + /// Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh + /// Standard Time, N. Central Asia Standard Time, Myanmar Standard + /// Time, SE Asia Standard Time, North Asia Standard Time, China + /// Standard Time, North Asia East Standard Time, Singapore Standard + /// Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar + /// Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk + /// Standard Time, Cen. Australia Standard Time, AUS Central Standard + /// Time, E. Australia Standard Time, AUS Eastern Standard Time, West + /// Pacific Standard Time, Tasmania Standard Time, Magadan Standard + /// Time, Vladivostok Standard Time, Russia Time Zone 10, Central + /// Pacific Standard Time, Russia Time Zone 11, New Zealand Standard + /// Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga + /// Standard Time, Samoa Standard Time, Line Islands Standard Time + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeZone")] + public string TimeZone { get; set; } + + /// + /// Gets or sets the collection of days that the profile takes effect + /// on. Possible values are Sunday through Saturday. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "days")] + public System.Collections.Generic.IList Days { get; set; } + + /// + /// Gets or sets a collection of hours that the profile takes effect + /// on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times + /// are not supported). + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "hours")] + public System.Collections.Generic.IList Hours { get; set; } + + /// + /// Gets or sets a collection of minutes at which the profile takes + /// effect at. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "minutes")] + public System.Collections.Generic.IList Minutes { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (TimeZone == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "TimeZone"); + } + if (Days == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Days"); + } + if (Hours == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Hours"); + } + if (Minutes == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Minutes"); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs new file mode 100644 index 000000000000..d88f372468a9 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs @@ -0,0 +1,84 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// An azure resource object + /// + public partial class Resource : Microsoft.Rest.Azure.IResource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() { } + + /// + /// Initializes a new instance of the Resource class. + /// + /// Resource location + /// Azure resource Id + /// Azure resource name + /// Azure resource type + /// Resource tags + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; + } + + /// + /// Gets azure resource Id + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets or sets azure resource name + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets azure resource type + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets resource location + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets resource tags + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] + public System.Collections.Generic.IDictionary Tags { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs new file mode 100644 index 000000000000..e2ac102af6c4 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Specifies the retention policy for the log. + /// + public partial class RetentionPolicy + { + /// + /// Initializes a new instance of the RetentionPolicy class. + /// + public RetentionPolicy() { } + + /// + /// Initializes a new instance of the RetentionPolicy class. + /// + /// a value indicating whether the retention + /// policy is enabled. + /// the number of days for the retention in days. A + /// value of 0 will retain the events indefinitely. + public RetentionPolicy(bool enabled, int days) + { + Enabled = enabled; + Days = days; + } + + /// + /// Gets or sets a value indicating whether the retention policy is + /// enabled. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "enabled")] + public bool Enabled { get; set; } + + /// + /// Gets or sets the number of days for the retention in days. A value + /// of 0 will retain the events indefinitely. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "days")] + public int Days { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs new file mode 100644 index 000000000000..cc2906ee8607 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The action that is performed when the alert rule becomes active, and + /// when an alert condition is resolved. + /// + public partial class RuleAction + { + /// + /// Initializes a new instance of the RuleAction class. + /// + public RuleAction() { } + + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs new file mode 100644 index 000000000000..35ae6fa4a972 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The condition that results in the alert rule being activated. + /// + public partial class RuleCondition + { + /// + /// Initializes a new instance of the RuleCondition class. + /// + public RuleCondition() { } + + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs new file mode 100644 index 000000000000..b267fdde56b8 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The resource from which the rule collects its data. + /// + public partial class RuleDataSource + { + /// + /// Initializes a new instance of the RuleDataSource class. + /// + public RuleDataSource() { } + + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs new file mode 100644 index 000000000000..7fd91a30a6eb --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Specifies the action to send email when the rule condition is + /// evaluated. The discriminator is always RuleEmailAction in this case. + /// + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.RuleEmailAction")] + public partial class RuleEmailAction : RuleAction + { + /// + /// Initializes a new instance of the RuleEmailAction class. + /// + public RuleEmailAction() { } + + /// + /// Initializes a new instance of the RuleEmailAction class. + /// + /// Whether the administrators + /// (service and co-adiminstrators) of the service should be notified + /// when the alert is activated. + /// the list of administrator's custom email + /// addresses notifiy of the activation of the alert. + public RuleEmailAction(bool? sendToServiceOwners = default(bool?), System.Collections.Generic.IList customEmails = default(System.Collections.Generic.IList)) + { + SendToServiceOwners = sendToServiceOwners; + CustomEmails = customEmails; + } + + /// + /// Gets or sets whether the administrators (service and + /// co-adiminstrators) of the service should be notified when the alert + /// is activated. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "sendToServiceOwners")] + public bool? SendToServiceOwners { get; set; } + + /// + /// Gets or sets the list of administrator's custom email addresses + /// notifiy of the activation of the alert. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "customEmails")] + public System.Collections.Generic.IList CustomEmails { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs new file mode 100644 index 000000000000..8d98ca69adaf --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The claims for a rule management event data source. + /// + public partial class RuleManagementEventClaimsDataSource + { + /// + /// Initializes a new instance of the + /// RuleManagementEventClaimsDataSource class. + /// + public RuleManagementEventClaimsDataSource() { } + + /// + /// Initializes a new instance of the + /// RuleManagementEventClaimsDataSource class. + /// + /// the email address. + public RuleManagementEventClaimsDataSource(string emailAddress = default(string)) + { + EmailAddress = emailAddress; + } + + /// + /// Gets or sets the email address. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "emailAddress")] + public string EmailAddress { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs new file mode 100644 index 000000000000..848374b55a30 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs @@ -0,0 +1,122 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// A rule management event data source. The discriminator fields is always + /// RuleManagementEventDataSource in this case. + /// + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.RuleManagementEventDataSource")] + public partial class RuleManagementEventDataSource : RuleDataSource + { + /// + /// Initializes a new instance of the RuleManagementEventDataSource + /// class. + /// + public RuleManagementEventDataSource() { } + + /// + /// Initializes a new instance of the RuleManagementEventDataSource + /// class. + /// + /// the event name. + /// the event source. + /// the level. + /// The name of the operation that should + /// be checked for. If no name is provided, any operation will + /// match. + /// the resource group name. + /// the resource provider + /// name. + /// the resource uri. + /// The status of the operation that should be + /// checked for. If no status is provided, any status will + /// match. + /// the substatus. + /// the claims. + public RuleManagementEventDataSource(string eventName = default(string), string eventSource = default(string), string level = default(string), string operationName = default(string), string resourceGroupName = default(string), string resourceProviderName = default(string), string resourceUri = default(string), string status = default(string), string subStatus = default(string), RuleManagementEventClaimsDataSource claims = default(RuleManagementEventClaimsDataSource)) + { + EventName = eventName; + EventSource = eventSource; + Level = level; + OperationName = operationName; + ResourceGroupName = resourceGroupName; + ResourceProviderName = resourceProviderName; + ResourceUri = resourceUri; + Status = status; + SubStatus = subStatus; + Claims = claims; + } + + /// + /// Gets or sets the event name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "eventName")] + public string EventName { get; set; } + + /// + /// Gets or sets the event source. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "eventSource")] + public string EventSource { get; set; } + + /// + /// Gets or sets the level. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "level")] + public string Level { get; set; } + + /// + /// Gets or sets the name of the operation that should be checked for. + /// If no name is provided, any operation will match. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operationName")] + public string OperationName { get; set; } + + /// + /// Gets or sets the resource group name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceGroupName")] + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the resource provider name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceProviderName")] + public string ResourceProviderName { get; set; } + + /// + /// Gets or sets the resource uri. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceUri")] + public string ResourceUri { get; set; } + + /// + /// Gets or sets the status of the operation that should be checked + /// for. If no status is provided, any status will match. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets the substatus. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "subStatus")] + public string SubStatus { get; set; } + + /// + /// Gets or sets the claims. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "claims")] + public RuleManagementEventClaimsDataSource Claims { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs new file mode 100644 index 000000000000..ee06756d0dba --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// A rule metric data source. The discriminator value is always + /// RuleMetricDataSource in this case. + /// + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.RuleMetricDataSource")] + public partial class RuleMetricDataSource : RuleDataSource + { + /// + /// Initializes a new instance of the RuleMetricDataSource class. + /// + public RuleMetricDataSource() { } + + /// + /// Initializes a new instance of the RuleMetricDataSource class. + /// + /// the resource identifier of the resource + /// the rule monitors. + /// the name of the metric that defines what + /// the rule monitors. + public RuleMetricDataSource(string resourceUri = default(string), string metricName = default(string)) + { + ResourceUri = resourceUri; + MetricName = metricName; + } + + /// + /// Gets or sets the resource identifier of the resource the rule + /// monitors. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceUri")] + public string ResourceUri { get; set; } + + /// + /// Gets or sets the name of the metric that defines what the rule + /// monitors. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "metricName")] + public string MetricName { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs new file mode 100644 index 000000000000..a2b99e51d316 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Specifies the action to post to service when the rule condition is + /// evaluated. The discriminator is always RuleWebhookAction in this case. + /// + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.RuleWebhookAction")] + public partial class RuleWebhookAction : RuleAction + { + /// + /// Initializes a new instance of the RuleWebhookAction class. + /// + public RuleWebhookAction() { } + + /// + /// Initializes a new instance of the RuleWebhookAction class. + /// + /// the service uri to Post the notitication + /// when the alert activates or resolves. + /// the dictionary of custom properties to + /// include with the post operation. These data are appended to the + /// webhook payload. + public RuleWebhookAction(string serviceUri = default(string), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary)) + { + ServiceUri = serviceUri; + Properties = properties; + } + + /// + /// Gets or sets the service uri to Post the notitication when the + /// alert activates or resolves. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "serviceUri")] + public string ServiceUri { get; set; } + + /// + /// Gets or sets the dictionary of custom properties to include with + /// the post operation. These data are appended to the webhook payload. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + public System.Collections.Generic.IDictionary Properties { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs new file mode 100644 index 000000000000..3e7bd688daa7 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The parameters for the scaling action. + /// + public partial class ScaleAction + { + /// + /// Initializes a new instance of the ScaleAction class. + /// + public ScaleAction() { } + + /// + /// Initializes a new instance of the ScaleAction class. + /// + /// the scale direction. Whether the scaling + /// action increases or decreases the number of instances. Possible + /// values include: 'None', 'Increase', 'Decrease' + /// the type of action that should occur when the + /// scale rule fires. Possible values include: 'ChangeCount', + /// 'PercentChangeCount', 'ExactCount' + /// the amount of time to wait since the last + /// scaling action before this action occurs. It must be between 1 week + /// and 1 minute in ISO 8601 format. + /// the number of instances that are involved in + /// the scaling action. This value must be 1 or greater. The default + /// value is 1. + public ScaleAction(ScaleDirection direction, ScaleType type, System.TimeSpan cooldown, string value = default(string)) + { + Direction = direction; + Type = type; + Value = value; + Cooldown = cooldown; + } + + /// + /// Gets or sets the scale direction. Whether the scaling action + /// increases or decreases the number of instances. Possible values + /// include: 'None', 'Increase', 'Decrease' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "direction")] + public ScaleDirection Direction { get; set; } + + /// + /// Gets or sets the type of action that should occur when the scale + /// rule fires. Possible values include: 'ChangeCount', + /// 'PercentChangeCount', 'ExactCount' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public ScaleType Type { get; set; } + + /// + /// Gets or sets the number of instances that are involved in the + /// scaling action. This value must be 1 or greater. The default value + /// is 1. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + /// + /// Gets or sets the amount of time to wait since the last scaling + /// action before this action occurs. It must be between 1 week and 1 + /// minute in ISO 8601 format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "cooldown")] + public System.TimeSpan Cooldown { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs new file mode 100644 index 000000000000..3846c71cdfe1 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs @@ -0,0 +1,86 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// The number of instances that can be used during this profile. + /// + public partial class ScaleCapacity + { + /// + /// Initializes a new instance of the ScaleCapacity class. + /// + public ScaleCapacity() { } + + /// + /// Initializes a new instance of the ScaleCapacity class. + /// + /// the minimum number of instances for the + /// resource. + /// the maximum number of instances for the + /// resource. The actual maximum number of instances is limited by the + /// cores that are available in the subscription. + /// the number of instances that will be + /// set if metrics are not available for evaluation. The default is + /// only used if the current instance count is lower than the + /// default. + public ScaleCapacity(string minimum, string maximum, string defaultProperty) + { + Minimum = minimum; + Maximum = maximum; + DefaultProperty = defaultProperty; + } + + /// + /// Gets or sets the minimum number of instances for the resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "minimum")] + public string Minimum { get; set; } + + /// + /// Gets or sets the maximum number of instances for the resource. The + /// actual maximum number of instances is limited by the cores that are + /// available in the subscription. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "maximum")] + public string Maximum { get; set; } + + /// + /// Gets or sets the number of instances that will be set if metrics + /// are not available for evaluation. The default is only used if the + /// current instance count is lower than the default. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "default")] + public string DefaultProperty { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Minimum == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Minimum"); + } + if (Maximum == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Maximum"); + } + if (DefaultProperty == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "DefaultProperty"); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs new file mode 100644 index 000000000000..b2738ce2bd16 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines values for ScaleDirection. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum ScaleDirection + { + [System.Runtime.Serialization.EnumMember(Value = "None")] + None, + [System.Runtime.Serialization.EnumMember(Value = "Increase")] + Increase, + [System.Runtime.Serialization.EnumMember(Value = "Decrease")] + Decrease + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs new file mode 100644 index 000000000000..80072773e03a --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// A rule that provide the triggers and parameters for the scaling action. + /// + public partial class ScaleRule + { + /// + /// Initializes a new instance of the ScaleRule class. + /// + public ScaleRule() { } + + /// + /// Initializes a new instance of the ScaleRule class. + /// + /// the trigger that results in a scaling + /// action. + /// the parameters for the scaling + /// action. + public ScaleRule(MetricTrigger metricTrigger, ScaleAction scaleAction) + { + MetricTrigger = metricTrigger; + ScaleAction = scaleAction; + } + + /// + /// Gets or sets the trigger that results in a scaling action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "metricTrigger")] + public MetricTrigger MetricTrigger { get; set; } + + /// + /// Gets or sets the parameters for the scaling action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "scaleAction")] + public ScaleAction ScaleAction { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MetricTrigger == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricTrigger"); + } + if (ScaleAction == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ScaleAction"); + } + if (this.MetricTrigger != null) + { + this.MetricTrigger.Validate(); + } + if (this.ScaleAction != null) + { + this.ScaleAction.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs new file mode 100644 index 000000000000..445f5d0ff670 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines values for ScaleType. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum ScaleType + { + [System.Runtime.Serialization.EnumMember(Value = "ChangeCount")] + ChangeCount, + [System.Runtime.Serialization.EnumMember(Value = "PercentChangeCount")] + PercentChangeCount, + [System.Runtime.Serialization.EnumMember(Value = "ExactCount")] + ExactCount + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs new file mode 100644 index 000000000000..372ccd38a57e --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs @@ -0,0 +1,125 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Description of a service diagnostic setting + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class ServiceDiagnosticSettingsResource : Resource + { + /// + /// Initializes a new instance of the ServiceDiagnosticSettingsResource + /// class. + /// + public ServiceDiagnosticSettingsResource() { } + + /// + /// Initializes a new instance of the ServiceDiagnosticSettingsResource + /// class. + /// + /// Resource location + /// Azure resource Id + /// Azure resource name + /// Azure resource type + /// Resource tags + /// The resource ID of the storage + /// account to which you would like to send Diagnostic Logs. + /// The service bus rule ID of the + /// service bus namespace in which you would like to have Event Hubs + /// created for streaming Diagnostic Logs. The rule ID is of the + /// format: '{service bus resource ID}/authorizationrules/{key + /// name}'. + /// the list of metric settings. + /// the list of logs settings. + /// The workspace ID (resource ID of a Log + /// Analytics workspace) for a Log Analytics workspace to which you + /// would like to send Diagnostic Logs. Example: + /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 + public ServiceDiagnosticSettingsResource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList metrics = default(System.Collections.Generic.IList), System.Collections.Generic.IList logs = default(System.Collections.Generic.IList), string workspaceId = default(string)) + : base(location, id, name, type, tags) + { + StorageAccountId = storageAccountId; + ServiceBusRuleId = serviceBusRuleId; + Metrics = metrics; + Logs = logs; + WorkspaceId = workspaceId; + } + + /// + /// Gets or sets the resource ID of the storage account to which you + /// would like to send Diagnostic Logs. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccountId")] + public string StorageAccountId { get; set; } + + /// + /// Gets or sets the service bus rule ID of the service bus namespace + /// in which you would like to have Event Hubs created for streaming + /// Diagnostic Logs. The rule ID is of the format: '{service bus + /// resource ID}/authorizationrules/{key name}'. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceBusRuleId")] + public string ServiceBusRuleId { get; set; } + + /// + /// Gets or sets the list of metric settings. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.metrics")] + public System.Collections.Generic.IList Metrics { get; set; } + + /// + /// Gets or sets the list of logs settings. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.logs")] + public System.Collections.Generic.IList Logs { get; set; } + + /// + /// Gets or sets the workspace ID (resource ID of a Log Analytics + /// workspace) for a Log Analytics workspace to which you would like to + /// send Diagnostic Logs. Example: + /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.workspaceId")] + public string WorkspaceId { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (this.Metrics != null) + { + foreach (var element in this.Metrics) + { + if (element != null) + { + element.Validate(); + } + } + } + if (this.Logs != null) + { + foreach (var element1 in this.Logs) + { + if (element1 != null) + { + element1.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs new file mode 100644 index 000000000000..e42c1aa06b39 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// A rule condition based on a metric crossing a threshold. + /// + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.ThresholdRuleCondition")] + public partial class ThresholdRuleCondition : RuleCondition + { + /// + /// Initializes a new instance of the ThresholdRuleCondition class. + /// + public ThresholdRuleCondition() { } + + /// + /// Initializes a new instance of the ThresholdRuleCondition class. + /// + /// the operator used to compare the + /// data and the threshold. Possible values include: 'GreaterThan', + /// 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' + /// the threshold value that activates the + /// alert. + /// the resource from which the rule collects + /// its data. For this type dataSource will always be of type + /// RuleMetricDataSource. + /// the period of time (in ISO 8601 duration + /// format) that is used to monitor alert activity based on the + /// threshold. If specified then it must be between 5 minutes and 1 + /// day. + /// the time aggregation operator. How + /// the data that are collected should be combined over time. The + /// default value is the PrimaryAggregationType of the Metric. Possible + /// values include: 'Average', 'Minimum', 'Maximum', 'Total', + /// 'Last' + public ThresholdRuleCondition(ConditionOperator operatorProperty, double threshold, RuleDataSource dataSource = default(RuleDataSource), System.TimeSpan? windowSize = default(System.TimeSpan?), TimeAggregationOperator? timeAggregation = default(TimeAggregationOperator?)) + { + DataSource = dataSource; + OperatorProperty = operatorProperty; + Threshold = threshold; + WindowSize = windowSize; + TimeAggregation = timeAggregation; + } + + /// + /// Gets or sets the resource from which the rule collects its data. + /// For this type dataSource will always be of type + /// RuleMetricDataSource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] + public RuleDataSource DataSource { get; set; } + + /// + /// Gets or sets the operator used to compare the data and the + /// threshold. Possible values include: 'GreaterThan', + /// 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operator")] + public ConditionOperator OperatorProperty { get; set; } + + /// + /// Gets or sets the threshold value that activates the alert. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "threshold")] + public double Threshold { get; set; } + + /// + /// Gets or sets the period of time (in ISO 8601 duration format) that + /// is used to monitor alert activity based on the threshold. If + /// specified then it must be between 5 minutes and 1 day. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "windowSize")] + public System.TimeSpan? WindowSize { get; set; } + + /// + /// Gets or sets the time aggregation operator. How the data that are + /// collected should be combined over time. The default value is the + /// PrimaryAggregationType of the Metric. Possible values include: + /// 'Average', 'Minimum', 'Maximum', 'Total', 'Last' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeAggregation")] + public TimeAggregationOperator? TimeAggregation { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs new file mode 100644 index 000000000000..d563a04cee10 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines values for TimeAggregationOperator. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum TimeAggregationOperator + { + [System.Runtime.Serialization.EnumMember(Value = "Average")] + Average, + [System.Runtime.Serialization.EnumMember(Value = "Minimum")] + Minimum, + [System.Runtime.Serialization.EnumMember(Value = "Maximum")] + Maximum, + [System.Runtime.Serialization.EnumMember(Value = "Total")] + Total, + [System.Runtime.Serialization.EnumMember(Value = "Last")] + Last + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs new file mode 100644 index 000000000000..f6cd123ab4ed --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + + /// + /// Defines values for TimeAggregationType. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum TimeAggregationType + { + [System.Runtime.Serialization.EnumMember(Value = "Average")] + Average, + [System.Runtime.Serialization.EnumMember(Value = "Minimum")] + Minimum, + [System.Runtime.Serialization.EnumMember(Value = "Maximum")] + Maximum, + [System.Runtime.Serialization.EnumMember(Value = "Total")] + Total, + [System.Runtime.Serialization.EnumMember(Value = "Count")] + Count + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs new file mode 100644 index 000000000000..1466f0c69f1b --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs @@ -0,0 +1,150 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// A specific date-time for the profile. + /// + public partial class TimeWindow + { + /// + /// Initializes a new instance of the TimeWindow class. + /// + public TimeWindow() { } + + /// + /// Initializes a new instance of the TimeWindow class. + /// + /// the start time for the profile in ISO 8601 + /// format. + /// the end time for the profile in ISO 8601 + /// format. + /// the timezone of the start and end times for + /// the profile. Some examples of valid timezones are: Dateline + /// Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard + /// Time, Pacific Standard Time (Mexico), Pacific Standard Time, US + /// Mountain Standard Time, Mountain Standard Time (Mexico), Mountain + /// Standard Time, Central America Standard Time, Central Standard + /// Time, Central Standard Time (Mexico), Canada Central Standard Time, + /// SA Pacific Standard Time, Eastern Standard Time, US Eastern + /// Standard Time, Venezuela Standard Time, Paraguay Standard Time, + /// Atlantic Standard Time, Central Brazilian Standard Time, SA Western + /// Standard Time, Pacific SA Standard Time, Newfoundland Standard + /// Time, E. South America Standard Time, Argentina Standard Time, SA + /// Eastern Standard Time, Greenland Standard Time, Montevideo Standard + /// Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, + /// Azores Standard Time, Cape Verde Standard Time, Morocco Standard + /// Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe + /// Standard Time, Central Europe Standard Time, Romance Standard Time, + /// Central European Standard Time, W. Central Africa Standard Time, + /// Namibia Standard Time, Jordan Standard Time, GTB Standard Time, + /// Middle East Standard Time, Egypt Standard Time, Syria Standard + /// Time, E. Europe Standard Time, South Africa Standard Time, FLE + /// Standard Time, Turkey Standard Time, Israel Standard Time, + /// Kaliningrad Standard Time, Libya Standard Time, Arabic Standard + /// Time, Arab Standard Time, Belarus Standard Time, Russian Standard + /// Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard + /// Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius + /// Standard Time, Georgian Standard Time, Caucasus Standard Time, + /// Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg + /// Standard Time, Pakistan Standard Time, India Standard Time, Sri + /// Lanka Standard Time, Nepal Standard Time, Central Asia Standard + /// Time, Bangladesh Standard Time, N. Central Asia Standard Time, + /// Myanmar Standard Time, SE Asia Standard Time, North Asia Standard + /// Time, China Standard Time, North Asia East Standard Time, Singapore + /// Standard Time, W. Australia Standard Time, Taipei Standard Time, + /// Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard + /// Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS + /// Central Standard Time, E. Australia Standard Time, AUS Eastern + /// Standard Time, West Pacific Standard Time, Tasmania Standard Time, + /// Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone + /// 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand + /// Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, + /// Tonga Standard Time, Samoa Standard Time, Line Islands Standard + /// Time + public TimeWindow(System.DateTime start, System.DateTime end, string timeZone = default(string)) + { + TimeZone = timeZone; + Start = start; + End = end; + } + + /// + /// Gets or sets the timezone of the start and end times for the + /// profile. Some examples of valid timezones are: Dateline Standard + /// Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, + /// Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain + /// Standard Time, Mountain Standard Time (Mexico), Mountain Standard + /// Time, Central America Standard Time, Central Standard Time, Central + /// Standard Time (Mexico), Canada Central Standard Time, SA Pacific + /// Standard Time, Eastern Standard Time, US Eastern Standard Time, + /// Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard + /// Time, Central Brazilian Standard Time, SA Western Standard Time, + /// Pacific SA Standard Time, Newfoundland Standard Time, E. South + /// America Standard Time, Argentina Standard Time, SA Eastern Standard + /// Time, Greenland Standard Time, Montevideo Standard Time, Bahia + /// Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard + /// Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT + /// Standard Time, Greenwich Standard Time, W. Europe Standard Time, + /// Central Europe Standard Time, Romance Standard Time, Central + /// European Standard Time, W. Central Africa Standard Time, Namibia + /// Standard Time, Jordan Standard Time, GTB Standard Time, Middle East + /// Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe + /// Standard Time, South Africa Standard Time, FLE Standard Time, + /// Turkey Standard Time, Israel Standard Time, Kaliningrad Standard + /// Time, Libya Standard Time, Arabic Standard Time, Arab Standard + /// Time, Belarus Standard Time, Russian Standard Time, E. Africa + /// Standard Time, Iran Standard Time, Arabian Standard Time, + /// Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard + /// Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan + /// Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, + /// Pakistan Standard Time, India Standard Time, Sri Lanka Standard + /// Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh + /// Standard Time, N. Central Asia Standard Time, Myanmar Standard + /// Time, SE Asia Standard Time, North Asia Standard Time, China + /// Standard Time, North Asia East Standard Time, Singapore Standard + /// Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar + /// Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk + /// Standard Time, Cen. Australia Standard Time, AUS Central Standard + /// Time, E. Australia Standard Time, AUS Eastern Standard Time, West + /// Pacific Standard Time, Tasmania Standard Time, Magadan Standard + /// Time, Vladivostok Standard Time, Russia Time Zone 10, Central + /// Pacific Standard Time, Russia Time Zone 11, New Zealand Standard + /// Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga + /// Standard Time, Samoa Standard Time, Line Islands Standard Time + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeZone")] + public string TimeZone { get; set; } + + /// + /// Gets or sets the start time for the profile in ISO 8601 format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "start")] + public System.DateTime Start { get; set; } + + /// + /// Gets or sets the end time for the profile in ISO 8601 format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "end")] + public System.DateTime End { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs new file mode 100644 index 000000000000..e21afb3b78b9 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor.Models +{ + using System.Linq; + + /// + /// Webhook notification of an autoscale event. + /// + public partial class WebhookNotification + { + /// + /// Initializes a new instance of the WebhookNotification class. + /// + public WebhookNotification() { } + + /// + /// Initializes a new instance of the WebhookNotification class. + /// + /// the service address to receive the + /// notification. + /// a property bag of settings. This value can + /// be empty. + public WebhookNotification(string serviceUri = default(string), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary)) + { + ServiceUri = serviceUri; + Properties = properties; + } + + /// + /// Gets or sets the service address to receive the notification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "serviceUri")] + public string ServiceUri { get; set; } + + /// + /// Gets or sets a property bag of settings. This value can be empty. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + public System.Collections.Generic.IDictionary Properties { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs new file mode 100644 index 000000000000..1650727616e1 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs @@ -0,0 +1,335 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Composite Swagger for Monitor Management Client + /// + public partial class MonitorManagementClient : Microsoft.Rest.ServiceClient, IMonitorManagementClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + + /// + /// The Azure subscription Id. + /// + public string SubscriptionId { get; set; } + + /// + /// Gets or sets the preferred language for the response. + /// + public string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running Operations. + /// Default value is 30. + /// + public int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IAutoscaleSettingsOperations. + /// + public virtual IAutoscaleSettingsOperations AutoscaleSettings { get; private set; } + + /// + /// Gets the IServiceDiagnosticSettingsOperations. + /// + public virtual IServiceDiagnosticSettingsOperations ServiceDiagnosticSettings { get; private set; } + + /// + /// Gets the IAlertRulesOperations. + /// + public virtual IAlertRulesOperations AlertRules { get; private set; } + + /// + /// Gets the IAlertRuleIncidentsOperations. + /// + public virtual IAlertRuleIncidentsOperations AlertRuleIncidents { get; private set; } + + /// + /// Gets the ILogProfilesOperations. + /// + public virtual ILogProfilesOperations LogProfiles { get; private set; } + + /// + /// Initializes a new instance of the MonitorManagementClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected MonitorManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + { + this.Initialize(); + } + + /// + /// Initializes a new instance of the MonitorManagementClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected MonitorManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + this.Initialize(); + } + + /// + /// Initializes a new instance of the MonitorManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected MonitorManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the MonitorManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected MonitorManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the MonitorManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public MonitorManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the MonitorManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public MonitorManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the MonitorManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public MonitorManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the MonitorManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public MonitorManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + /// + /// Initializes client properties. + /// + private void Initialize() + { + this.AutoscaleSettings = new AutoscaleSettingsOperations(this); + this.ServiceDiagnosticSettings = new ServiceDiagnosticSettingsOperations(this); + this.AlertRules = new AlertRulesOperations(this); + this.AlertRuleIncidents = new AlertRuleIncidentsOperations(this); + this.LogProfiles = new LogProfilesOperations(this); + this.BaseUri = new System.Uri("https://management.azure.com"); + this.AcceptLanguage = "en-US"; + this.LongRunningOperationRetryTimeout = 30; + this.GenerateClientRequestId = true; + SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + { + Formatting = Newtonsoft.Json.Formatting.Indented, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + Converters = new System.Collections.Generic.List + { + new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); + DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + { + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + Converters = new System.Collections.Generic.List + { + new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicSerializeJsonConverter("odata.type")); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicDeserializeJsonConverter("odata.type")); + SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicSerializeJsonConverter("odata.type")); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicDeserializeJsonConverter("odata.type")); + SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicSerializeJsonConverter("odata.type")); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicDeserializeJsonConverter("odata.type")); + CustomInitialize(); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs new file mode 100644 index 000000000000..704a3827ba58 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs @@ -0,0 +1,423 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// ServiceDiagnosticSettingsOperations operations. + /// + internal partial class ServiceDiagnosticSettingsOperations : Microsoft.Rest.IServiceOperations, IServiceDiagnosticSettingsOperations + { + /// + /// Initializes a new instance of the ServiceDiagnosticSettingsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorManagementClient + /// + public MonitorManagementClient Client { get; private set; } + + /// + /// Gets the active diagnostic settings for the specified resource. + /// + /// + /// The identifier of the resource. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceUri, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceUri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-07-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceUri", resourceUri); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/diagnosticSettings/service").ToString(); + _url = _url.Replace("{resourceUri}", System.Uri.EscapeDataString(resourceUri)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or update new diagnostic settings for the specified resource. + /// + /// + /// The identifier of the resource. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceUri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + } + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-07-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceUri", resourceUri); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/diagnosticSettings/service").ToString(); + _url = _url.Replace("{resourceUri}", System.Uri.EscapeDataString(resourceUri)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs new file mode 100644 index 000000000000..8edc7829de3e --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for ServiceDiagnosticSettingsOperations. + /// + public static partial class ServiceDiagnosticSettingsOperationsExtensions + { + /// + /// Gets the active diagnostic settings for the specified resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + public static ServiceDiagnosticSettingsResource Get(this IServiceDiagnosticSettingsOperations operations, string resourceUri) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServiceDiagnosticSettingsOperations)s).GetAsync(resourceUri), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the active diagnostic settings for the specified resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceUri, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update new diagnostic settings for the specified resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// Parameters supplied to the operation. + /// + public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsResource parameters) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServiceDiagnosticSettingsOperations)s).CreateOrUpdateAsync(resourceUri, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create or update new diagnostic settings for the specified resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// Parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceUri, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs new file mode 100644 index 000000000000..c96f5892f246 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs @@ -0,0 +1,443 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// ActivityLogsOperations operations. + /// + internal partial class ActivityLogsOperations : Microsoft.Rest.IServiceOperations, IActivityLogsOperations + { + /// + /// Initializes a new instance of the ActivityLogsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ActivityLogsOperations(MonitorClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorClient + /// + public MonitorClient Client { get; private set; } + + /// + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: + /// authorization, channels, claims, correlationId, description, eventDataId, + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2015-04-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("select", select); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/eventtypes/management/values").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (select != null) + { + _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs new file mode 100644 index 000000000000..f391a5ea31aa --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs @@ -0,0 +1,173 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for ActivityLogsOperations. + /// + public static partial class ActivityLogsOperationsExtensions + { + /// + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: + /// authorization, channels, claims, correlationId, description, eventDataId, + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId + /// + public static Microsoft.Rest.Azure.IPage List(this IActivityLogsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string)) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IActivityLogsOperations)s).ListAsync(odataQuery, select), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: + /// authorization, channels, claims, correlationId, description, eventDataId, + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IActivityLogsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(odataQuery, select, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListNext(this IActivityLogsOperations operations, string nextPageLink) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IActivityLogsOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Provides the list of events. The **$filter** is very restricted and allows + /// only the following patterns. - List events for a resource group: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceGroupName eq '<ResourceGroupName>'. - List events for + /// resource: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le + /// '<End Time>' and eventChannels eq 'Admin, Operation'. -List events + /// for a resource provider: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceProvider eq '<ResourceProviderName>'. - List + /// events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IActivityLogsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs new file mode 100644 index 000000000000..9d9b65bac136 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs @@ -0,0 +1,210 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// EventCategoriesOperations operations. + /// + internal partial class EventCategoriesOperations : Microsoft.Rest.IServiceOperations, IEventCategoriesOperations + { + /// + /// Initializes a new instance of the EventCategoriesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal EventCategoriesOperations(MonitorClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorClient + /// + public MonitorClient Client { get; private set; } + + /// + /// get the list of available event categories supported in the Activity Log + /// Service. The current list includes the following: Aministrative, Security, + /// ServiceHealth, Alert, Recommendation, Policy. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + string apiVersion = "2015-04-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/microsoft.insights/eventcategories").ToString(); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs new file mode 100644 index 000000000000..0b33471de77e --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for EventCategoriesOperations. + /// + public static partial class EventCategoriesOperationsExtensions + { + /// + /// get the list of available event categories supported in the Activity Log + /// Service. The current list includes the following: Aministrative, Security, + /// ServiceHealth, Alert, Recommendation, Policy. + /// + /// + /// The operations group for this extension method. + /// + public static System.Collections.Generic.IEnumerable List(this IEventCategoriesOperations operations) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IEventCategoriesOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// get the list of available event categories supported in the Activity Log + /// Service. The current list includes the following: Aministrative, Security, + /// ServiceHealth, Alert, Recommendation, Policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IEventCategoriesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs new file mode 100644 index 000000000000..c4c236c61c18 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs @@ -0,0 +1,111 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// ActivityLogsOperations operations. + /// + public partial interface IActivityLogsOperations + { + /// + /// Provides the list of events. The **$filter** is very restricted and + /// allows only the following patterns. - List events for a resource + /// group: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceUri eq + /// '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation'. + /// -List events for a resource provider: $filter=eventTimestamp ge + /// '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, + /// Operation' and correlationId eq '<CorrelationID>'. No other + /// syntax is allowed. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Used to fetch events with only the given properties. The filter is + /// a comma separated list of property names to be returned. Possible + /// values are: authorization, channels, claims, correlationId, + /// description, eventDataId, eventName, eventTimestamp, httpRequest, + /// level, operationId, operationName, properties, resourceGroupName, + /// resourceProviderName, resourceId, status, submissionTimestamp, + /// subStatus, subscriptionId + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// Provides the list of events. The **$filter** is very restricted and + /// allows only the following patterns. - List events for a resource + /// group: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceUri eq + /// '<ResourceURI>'. - List events for a subscription: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation'. + /// -List events for a resource provider: $filter=eventTimestamp ge + /// '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, + /// Operation' and correlationId eq '<CorrelationID>'. No other + /// syntax is allowed. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs new file mode 100644 index 000000000000..caaa8eb71232 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// EventCategoriesOperations operations. + /// + public partial interface IEventCategoriesOperations + { + /// + /// get the list of available event categories supported in the + /// Activity Log Service. The current list includes the following: + /// Aministrative, Security, ServiceHealth, Alert, Recommendation, + /// Policy. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs new file mode 100644 index 000000000000..7a7bd234883f --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// MetricDefinitionsOperations operations. + /// + public partial interface IMetricDefinitionsOperations + { + /// + /// Lists the metric definitions for the resource. The **$filter** + /// parameter is optional, and can be used to only retrieve certain + /// metric definitions. For example, get just the definition for the + /// CPU percentage counter: $filter=name.value eq '\Processor(_Total)\% + /// Processor Time'. This $filter is very restricted and allows only + /// these 'name eq <value>' clauses separated by or operators. No + /// other syntax is allowed. + /// + /// + /// The identifier of the resource. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs new file mode 100644 index 000000000000..02e437baae10 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// MetricsOperations operations. + /// + public partial interface IMetricsOperations + { + /// + /// **Lists the metric values for a resource**.<br>The + /// **$filter** is used to reduce the set of metric data returned. Some + /// common properties for this expression will be: name.value, + /// aggregationType, startTime, endTime, timeGrain. The filter + /// expression uses these properties with comparison operators (eg. eq, + /// gt, lt) and multiple expressions can be combined with parentheses + /// and 'and/or' operators.<br>Some example filter expressions + /// are:<br>- $filter=(name.value eq 'RunsSucceeded') and + /// aggregationType eq 'Total' and startTime eq 2016-02-20 and endTime + /// eq 2016-02-21 and timeGrain eq duration'PT1M',<br>- + /// $filter=(name.value eq 'RunsSucceeded') and (aggregationType eq + /// 'Total' or aggregationType eq 'Average') and startTime eq + /// 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1H',<br>- $filter=(name.value eq + /// 'ActionsCompleted' or name.value eq 'RunsSucceeded') and + /// (aggregationType eq 'Total' or aggregationType eq 'Average') and + /// startTime eq 2016-02-20 and endTime eq 2016-02-21 and timeGrain eq + /// duration'PT1M'.<br><br> >**NOTE**: When a metrics + /// query comes in with multiple metrics, but with no aggregation types + /// defined, the service will pick the Primary aggregation type of the + /// first metrics to be used as the default aggregation type for all + /// the metrics. + /// + /// + /// The identifier of the resource. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs new file mode 100644 index 000000000000..f33cc532e0b8 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs @@ -0,0 +1,94 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Composite Swagger for Monitor Client + /// + public partial interface IMonitorClient : System.IDisposable + { + /// + /// The base URI of the service. + /// + System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + Microsoft.Rest.ServiceClientCredentials Credentials { get; } + + /// + /// The Azure subscription Id. + /// + string SubscriptionId { get; set; } + + /// + /// Gets or sets the preferred language for the response. + /// + string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running + /// Operations. Default value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set; } + + + /// + /// Gets the IUsageMetricsOperations. + /// + IUsageMetricsOperations UsageMetrics { get; } + + /// + /// Gets the IEventCategoriesOperations. + /// + IEventCategoriesOperations EventCategories { get; } + + /// + /// Gets the IActivityLogsOperations. + /// + IActivityLogsOperations ActivityLogs { get; } + + /// + /// Gets the ITenantActivityLogsOperations. + /// + ITenantActivityLogsOperations TenantActivityLogs { get; } + + /// + /// Gets the IMetricDefinitionsOperations. + /// + IMetricDefinitionsOperations MetricDefinitions { get; } + + /// + /// Gets the IMetricsOperations. + /// + IMetricsOperations Metrics { get; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs new file mode 100644 index 000000000000..cf7ae81a092e --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs @@ -0,0 +1,123 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// TenantActivityLogsOperations operations. + /// + public partial interface ITenantActivityLogsOperations + { + /// + /// get the Activity Logs for the Tenant. Everything that is applicable + /// to the API to get the Activity Log for the subscription is + /// applicable to this API (the parameters, $filter, etc.). One thing + /// to point out here is that this API does *not* retrieve the logs at + /// the individual subscription of the tenant but only surfaces the + /// logs that were generated at the tenant level. The **$filter** is + /// very restricted and allows only the following patterns. - List + /// events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceGroupName eq + /// '<ResourceGroupName>'. - List events for resource: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceProvider eq '<ResourceProviderName>'. - List events + /// for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, + /// Operation' and correlationId eq '<CorrelationID>'. No other + /// syntax is allowed. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Used to fetch events with only the given properties. The filter is + /// a comma separated list of property names to be returned. Possible + /// values are: authorization, channels, claims, correlationId, + /// description, eventDataId, eventName, eventTimestamp, httpRequest, + /// level, operationId, operationName, properties, resourceGroupName, + /// resourceProviderName, resourceId, status, submissionTimestamp, + /// subStatus, subscriptionId + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// + /// get the Activity Logs for the Tenant. Everything that is applicable + /// to the API to get the Activity Log for the subscription is + /// applicable to this API (the parameters, $filter, etc.). One thing + /// to point out here is that this API does *not* retrieve the logs at + /// the individual subscription of the tenant but only surfaces the + /// logs that were generated at the tenant level. The **$filter** is + /// very restricted and allows only the following patterns. - List + /// events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceGroupName eq + /// '<ResourceGroupName>'. - List events for resource: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: + /// $filter=eventTimestamp ge '<Start Time>' and eventTimestamp + /// le '<End Time>' and eventChannels eq 'Admin, Operation' and + /// resourceProvider eq '<ResourceProviderName>'. - List events + /// for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, + /// Operation' and correlationId eq '<CorrelationID>'. No other + /// syntax is allowed. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs new file mode 100644 index 000000000000..80acedaab2c8 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.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 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// UsageMetricsOperations operations. + /// + public partial interface IUsageMetricsOperations + { + /// + /// The List operation lists the usage metrics for the resource. + /// + /// + /// The identifier of the resource. + /// + /// + /// The client Api Version. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs new file mode 100644 index 000000000000..7f598b1f0c72 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs @@ -0,0 +1,237 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// MetricDefinitionsOperations operations. + /// + internal partial class MetricDefinitionsOperations : Microsoft.Rest.IServiceOperations, IMetricDefinitionsOperations + { + /// + /// Initializes a new instance of the MetricDefinitionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal MetricDefinitionsOperations(MonitorClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorClient + /// + public MonitorClient Client { get; private set; } + + /// + /// Lists the metric definitions for the resource. The **$filter** parameter is + /// optional, and can be used to only retrieve certain metric definitions. For + /// example, get just the definition for the CPU percentage counter: + /// $filter=name.value eq '\Processor(_Total)\% Processor Time'. This $filter + /// is very restricted and allows only these 'name eq <value>' clauses + /// separated by or operators. No other syntax is allowed. + /// + /// + /// The identifier of the resource. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceUri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + } + string apiVersion = "2016-03-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceUri", resourceUri); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/metricDefinitions").ToString(); + _url = _url.Replace("{resourceUri}", resourceUri); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs new file mode 100644 index 000000000000..756ee99295a8 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for MetricDefinitionsOperations. + /// + public static partial class MetricDefinitionsOperationsExtensions + { + /// + /// Lists the metric definitions for the resource. The **$filter** parameter is + /// optional, and can be used to only retrieve certain metric definitions. For + /// example, get just the definition for the CPU percentage counter: + /// $filter=name.value eq '\Processor(_Total)\% Processor Time'. This $filter + /// is very restricted and allows only these 'name eq <value>' clauses + /// separated by or operators. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// OData parameters to apply to the operation. + /// + public static System.Collections.Generic.IEnumerable List(this IMetricDefinitionsOperations operations, string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IMetricDefinitionsOperations)s).ListAsync(resourceUri, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Lists the metric definitions for the resource. The **$filter** parameter is + /// optional, and can be used to only retrieve certain metric definitions. For + /// example, get just the definition for the CPU percentage counter: + /// $filter=name.value eq '\Processor(_Total)\% Processor Time'. This $filter + /// is very restricted and allows only these 'name eq <value>' clauses + /// separated by or operators. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IMetricDefinitionsOperations operations, string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceUri, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs new file mode 100644 index 000000000000..72802b83c315 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs @@ -0,0 +1,250 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// MetricsOperations operations. + /// + internal partial class MetricsOperations : Microsoft.Rest.IServiceOperations, IMetricsOperations + { + /// + /// Initializes a new instance of the MetricsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal MetricsOperations(MonitorClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorClient + /// + public MonitorClient Client { get; private set; } + + /// + /// **Lists the metric values for a resource**.<br>The **$filter** is + /// used to reduce the set of metric data returned. Some common properties for + /// this expression will be: name.value, aggregationType, startTime, endTime, + /// timeGrain. The filter expression uses these properties with comparison + /// operators (eg. eq, gt, lt) and multiple expressions can be combined with + /// parentheses and 'and/or' operators.<br>Some example filter + /// expressions are:<br>- $filter=(name.value eq 'RunsSucceeded') and + /// aggregationType eq 'Total' and startTime eq 2016-02-20 and endTime eq + /// 2016-02-21 and timeGrain eq duration'PT1M',<br>- $filter=(name.value + /// eq 'RunsSucceeded') and (aggregationType eq 'Total' or aggregationType eq + /// 'Average') and startTime eq 2016-02-20 and endTime eq 2016-02-21 and + /// timeGrain eq duration'PT1H',<br>- $filter=(name.value eq + /// 'ActionsCompleted' or name.value eq 'RunsSucceeded') and (aggregationType + /// eq 'Total' or aggregationType eq 'Average') and startTime eq 2016-02-20 and + /// endTime eq 2016-02-21 and timeGrain eq duration'PT1M'.<br><br> + /// >**NOTE**: When a metrics query comes in with multiple metrics, but with + /// no aggregation types defined, the service will pick the Primary aggregation + /// type of the first metrics to be used as the default aggregation type for + /// all the metrics. + /// + /// + /// The identifier of the resource. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceUri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + } + string apiVersion = "2016-09-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceUri", resourceUri); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/metrics").ToString(); + _url = _url.Replace("{resourceUri}", resourceUri); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs new file mode 100644 index 000000000000..a27c756589f5 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs @@ -0,0 +1,97 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for MetricsOperations. + /// + public static partial class MetricsOperationsExtensions + { + /// + /// **Lists the metric values for a resource**.<br>The **$filter** is + /// used to reduce the set of metric data returned. Some common properties for + /// this expression will be: name.value, aggregationType, startTime, endTime, + /// timeGrain. The filter expression uses these properties with comparison + /// operators (eg. eq, gt, lt) and multiple expressions can be combined with + /// parentheses and 'and/or' operators.<br>Some example filter + /// expressions are:<br>- $filter=(name.value eq 'RunsSucceeded') and + /// aggregationType eq 'Total' and startTime eq 2016-02-20 and endTime eq + /// 2016-02-21 and timeGrain eq duration'PT1M',<br>- $filter=(name.value + /// eq 'RunsSucceeded') and (aggregationType eq 'Total' or aggregationType eq + /// 'Average') and startTime eq 2016-02-20 and endTime eq 2016-02-21 and + /// timeGrain eq duration'PT1H',<br>- $filter=(name.value eq + /// 'ActionsCompleted' or name.value eq 'RunsSucceeded') and (aggregationType + /// eq 'Total' or aggregationType eq 'Average') and startTime eq 2016-02-20 and + /// endTime eq 2016-02-21 and timeGrain eq duration'PT1M'.<br><br> + /// >**NOTE**: When a metrics query comes in with multiple metrics, but with + /// no aggregation types defined, the service will pick the Primary aggregation + /// type of the first metrics to be used as the default aggregation type for + /// all the metrics. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// OData parameters to apply to the operation. + /// + public static System.Collections.Generic.IEnumerable List(this IMetricsOperations operations, string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IMetricsOperations)s).ListAsync(resourceUri, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// **Lists the metric values for a resource**.<br>The **$filter** is + /// used to reduce the set of metric data returned. Some common properties for + /// this expression will be: name.value, aggregationType, startTime, endTime, + /// timeGrain. The filter expression uses these properties with comparison + /// operators (eg. eq, gt, lt) and multiple expressions can be combined with + /// parentheses and 'and/or' operators.<br>Some example filter + /// expressions are:<br>- $filter=(name.value eq 'RunsSucceeded') and + /// aggregationType eq 'Total' and startTime eq 2016-02-20 and endTime eq + /// 2016-02-21 and timeGrain eq duration'PT1M',<br>- $filter=(name.value + /// eq 'RunsSucceeded') and (aggregationType eq 'Total' or aggregationType eq + /// 'Average') and startTime eq 2016-02-20 and endTime eq 2016-02-21 and + /// timeGrain eq duration'PT1H',<br>- $filter=(name.value eq + /// 'ActionsCompleted' or name.value eq 'RunsSucceeded') and (aggregationType + /// eq 'Total' or aggregationType eq 'Average') and startTime eq 2016-02-20 and + /// endTime eq 2016-02-21 and timeGrain eq duration'PT1M'.<br><br> + /// >**NOTE**: When a metrics query comes in with multiple metrics, but with + /// no aggregation types defined, the service will pick the Primary aggregation + /// type of the first metrics to be used as the default aggregation type for + /// all the metrics. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IMetricsOperations operations, string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceUri, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs new file mode 100644 index 000000000000..89baa1637e02 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + + /// + /// Defines values for AggregationType. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum AggregationType + { + [System.Runtime.Serialization.EnumMember(Value = "None")] + None, + [System.Runtime.Serialization.EnumMember(Value = "Average")] + Average, + [System.Runtime.Serialization.EnumMember(Value = "Count")] + Count, + [System.Runtime.Serialization.EnumMember(Value = "Minimum")] + Minimum, + [System.Runtime.Serialization.EnumMember(Value = "Maximum")] + Maximum, + [System.Runtime.Serialization.EnumMember(Value = "Total")] + Total + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs new file mode 100644 index 000000000000..6a99aa4f7821 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs @@ -0,0 +1,333 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// The Azure event log entries are of type EventData + /// + public partial class EventData + { + /// + /// Initializes a new instance of the EventData class. + /// + public EventData() { } + + /// + /// Initializes a new instance of the EventData class. + /// + /// the event level. Possible values include: + /// 'Critical', 'Error', 'Warning', 'Informational', 'Verbose' + /// the timestamp of when the event was + /// generated by the Azure service processing the request corresponding + /// the event. It in ISO 8601 format. + /// the timestamp of when the event + /// became available for querying via this API. It is in ISO 8601 + /// format. This value should not be confused eventTimestamp. As there + /// might be a delay between the occurence time of the event, and the + /// time that the event is submitted to the Azure logging + /// infrastructure. + /// the authorization used by the user who + /// has performed the operation that led to this event. This captures + /// the RBAC properties of the event. These usually include the + /// 'action', 'role' and the 'scope' + /// key value pairs to identify ARM + /// permissions. + /// the email address of the user who has + /// performed the operation, the UPN claim or SPN claim based on + /// availability. + /// the description of the event. + /// the Id of this event as required by ARM for RBAC. + /// It contains the EventDataID and a timestamp information. + /// the event data Id. This is a unique + /// identifier for an event. + /// the correlation Id, usually a GUID in + /// the string format. The correlation Id is shared among the events + /// that belong to the same uber operation. + /// the event name. This value should not be + /// confused with OperationName. For practical purposes, OperationName + /// might be more appealing to end users. + /// the event category. + /// the HTTP request info. Usually includes + /// the 'clientRequestId', 'clientIpAddress' (IP address of the user + /// who initiated the event) and 'method' (HTTP method e.g. + /// PUT). + /// the resource group name of the + /// impacted resource. + /// the resource provider name of + /// the impacted resource. + /// the resource uri that uniquely identifies + /// the resource that caused this event. + /// the resource type + /// It is usually a GUID shared among the + /// events corresponding to single operation. This value should not be + /// confused with EventName. + /// the operation name. + /// the set of <Key, Value> pairs + /// (usually a Dictionary<String, String>) that includes details + /// about the event. + /// a string describing the status of the + /// operation. Some typical values are: Started, In progress, + /// Succeeded, Failed, Resolved. + /// the event sub status. Most of the time, + /// when included, this captures the HTTP status code of the REST call. + /// Common values are: OK (HTTP Status Code: 200), Created (HTTP Status + /// Code: 201), Accepted (HTTP Status Code: 202), No Content (HTTP + /// Status Code: 204), Bad Request(HTTP Status Code: 400), Not Found + /// (HTTP Status Code: 404), Conflict (HTTP Status Code: 409), Internal + /// Server Error (HTTP Status Code: 500), Service Unavailable (HTTP + /// Status Code:503), Gateway Timeout (HTTP Status Code: 504) + /// the Azure subscription Id usually a + /// GUID. + /// the Azure tenant Id + public EventData(EventLevel level, System.DateTime eventTimestamp, System.DateTime submissionTimestamp, SenderAuthorization authorization = default(SenderAuthorization), System.Collections.Generic.IDictionary claims = default(System.Collections.Generic.IDictionary), string caller = default(string), string description = default(string), string id = default(string), string eventDataId = default(string), string correlationId = default(string), LocalizableString eventName = default(LocalizableString), LocalizableString category = default(LocalizableString), HttpRequestInfo httpRequest = default(HttpRequestInfo), string resourceGroupName = default(string), LocalizableString resourceProviderName = default(LocalizableString), string resourceId = default(string), LocalizableString resourceType = default(LocalizableString), string operationId = default(string), LocalizableString operationName = default(LocalizableString), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary), LocalizableString status = default(LocalizableString), LocalizableString subStatus = default(LocalizableString), string subscriptionId = default(string), string tenantId = default(string)) + { + Authorization = authorization; + Claims = claims; + Caller = caller; + Description = description; + Id = id; + EventDataId = eventDataId; + CorrelationId = correlationId; + EventName = eventName; + Category = category; + HttpRequest = httpRequest; + Level = level; + ResourceGroupName = resourceGroupName; + ResourceProviderName = resourceProviderName; + ResourceId = resourceId; + ResourceType = resourceType; + OperationId = operationId; + OperationName = operationName; + Properties = properties; + Status = status; + SubStatus = subStatus; + EventTimestamp = eventTimestamp; + SubmissionTimestamp = submissionTimestamp; + SubscriptionId = subscriptionId; + TenantId = tenantId; + } + + /// + /// Gets or sets the authorization used by the user who has performed + /// the operation that led to this event. This captures the RBAC + /// properties of the event. These usually include the 'action', 'role' + /// and the 'scope' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "authorization")] + public SenderAuthorization Authorization { get; set; } + + /// + /// Gets or sets key value pairs to identify ARM permissions. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "claims")] + public System.Collections.Generic.IDictionary Claims { get; set; } + + /// + /// Gets or sets the email address of the user who has performed the + /// operation, the UPN claim or SPN claim based on availability. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "caller")] + public string Caller { get; set; } + + /// + /// Gets or sets the description of the event. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Gets or sets the Id of this event as required by ARM for RBAC. It + /// contains the EventDataID and a timestamp information. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the event data Id. This is a unique identifier for an + /// event. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "eventDataId")] + public string EventDataId { get; set; } + + /// + /// Gets or sets the correlation Id, usually a GUID in the string + /// format. The correlation Id is shared among the events that belong + /// to the same uber operation. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "correlationId")] + public string CorrelationId { get; set; } + + /// + /// Gets or sets the event name. This value should not be confused with + /// OperationName. For practical purposes, OperationName might be more + /// appealing to end users. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "eventName")] + public LocalizableString EventName { get; set; } + + /// + /// Gets or sets the event category. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "category")] + public LocalizableString Category { get; set; } + + /// + /// Gets or sets the HTTP request info. Usually includes the + /// 'clientRequestId', 'clientIpAddress' (IP address of the user who + /// initiated the event) and 'method' (HTTP method e.g. PUT). + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "httpRequest")] + public HttpRequestInfo HttpRequest { get; set; } + + /// + /// Gets or sets the event level. Possible values include: 'Critical', + /// 'Error', 'Warning', 'Informational', 'Verbose' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "level")] + public EventLevel Level { get; set; } + + /// + /// Gets or sets the resource group name of the impacted resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceGroupName")] + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the resource provider name of the impacted resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceProviderName")] + public LocalizableString ResourceProviderName { get; set; } + + /// + /// Gets or sets the resource uri that uniquely identifies the resource + /// that caused this event. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceId")] + public string ResourceId { get; set; } + + /// + /// Gets or sets the resource type + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceType")] + public LocalizableString ResourceType { get; set; } + + /// + /// Gets or sets it is usually a GUID shared among the events + /// corresponding to single operation. This value should not be + /// confused with EventName. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operationId")] + public string OperationId { get; set; } + + /// + /// Gets or sets the operation name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operationName")] + public LocalizableString OperationName { get; set; } + + /// + /// Gets or sets the set of &lt;Key, Value&gt; pairs (usually a + /// Dictionary&lt;String, String&gt;) that includes details + /// about the event. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + public System.Collections.Generic.IDictionary Properties { get; set; } + + /// + /// Gets or sets a string describing the status of the operation. Some + /// typical values are: Started, In progress, Succeeded, Failed, + /// Resolved. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "status")] + public LocalizableString Status { get; set; } + + /// + /// Gets or sets the event sub status. Most of the time, when included, + /// this captures the HTTP status code of the REST call. Common values + /// are: OK (HTTP Status Code: 200), Created (HTTP Status Code: 201), + /// Accepted (HTTP Status Code: 202), No Content (HTTP Status Code: + /// 204), Bad Request(HTTP Status Code: 400), Not Found (HTTP Status + /// Code: 404), Conflict (HTTP Status Code: 409), Internal Server Error + /// (HTTP Status Code: 500), Service Unavailable (HTTP Status + /// Code:503), Gateway Timeout (HTTP Status Code: 504) + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "subStatus")] + public LocalizableString SubStatus { get; set; } + + /// + /// Gets or sets the timestamp of when the event was generated by the + /// Azure service processing the request corresponding the event. It in + /// ISO 8601 format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "eventTimestamp")] + public System.DateTime EventTimestamp { get; set; } + + /// + /// Gets or sets the timestamp of when the event became available for + /// querying via this API. It is in ISO 8601 format. This value should + /// not be confused eventTimestamp. As there might be a delay between + /// the occurence time of the event, and the time that the event is + /// submitted to the Azure logging infrastructure. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "submissionTimestamp")] + public System.DateTime SubmissionTimestamp { get; set; } + + /// + /// Gets or sets the Azure subscription Id usually a GUID. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "subscriptionId")] + public string SubscriptionId { get; set; } + + /// + /// Gets or sets the Azure tenant Id + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tenantId")] + public string TenantId { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.EventName != null) + { + this.EventName.Validate(); + } + if (this.Category != null) + { + this.Category.Validate(); + } + if (this.ResourceProviderName != null) + { + this.ResourceProviderName.Validate(); + } + if (this.ResourceType != null) + { + this.ResourceType.Validate(); + } + if (this.OperationName != null) + { + this.OperationName.Validate(); + } + if (this.Status != null) + { + this.Status.Validate(); + } + if (this.SubStatus != null) + { + this.SubStatus.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs new file mode 100644 index 000000000000..21acfeb0e81e --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + + /// + /// Defines values for EventLevel. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum EventLevel + { + [System.Runtime.Serialization.EnumMember(Value = "Critical")] + Critical, + [System.Runtime.Serialization.EnumMember(Value = "Error")] + Error, + [System.Runtime.Serialization.EnumMember(Value = "Warning")] + Warning, + [System.Runtime.Serialization.EnumMember(Value = "Informational")] + Informational, + [System.Runtime.Serialization.EnumMember(Value = "Verbose")] + Verbose + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs new file mode 100644 index 000000000000..d6185239272c --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs @@ -0,0 +1,63 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// The Http request info. + /// + public partial class HttpRequestInfo + { + /// + /// Initializes a new instance of the HttpRequestInfo class. + /// + public HttpRequestInfo() { } + + /// + /// Initializes a new instance of the HttpRequestInfo class. + /// + /// the client request id. + /// the client Ip Address + /// the Http request method. + /// the Uri. + public HttpRequestInfo(string clientRequestId = default(string), string clientIpAddress = default(string), string method = default(string), string uri = default(string)) + { + ClientRequestId = clientRequestId; + ClientIpAddress = clientIpAddress; + Method = method; + Uri = uri; + } + + /// + /// Gets or sets the client request id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clientRequestId")] + public string ClientRequestId { get; set; } + + /// + /// Gets or sets the client Ip Address + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clientIpAddress")] + public string ClientIpAddress { get; set; } + + /// + /// Gets or sets the Http request method. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "method")] + public string Method { get; set; } + + /// + /// Gets or sets the Uri. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "uri")] + public string Uri { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs new file mode 100644 index 000000000000..be4a11ab35fb --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// The localizable string class. + /// + public partial class LocalizableString + { + /// + /// Initializes a new instance of the LocalizableString class. + /// + public LocalizableString() { } + + /// + /// Initializes a new instance of the LocalizableString class. + /// + /// the invariant value. + /// the locale specific value. + public LocalizableString(string value, string localizedValue = default(string)) + { + Value = value; + LocalizedValue = localizedValue; + } + + /// + /// Gets or sets the invariant value. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + /// + /// Gets or sets the locale specific value. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "localizedValue")] + public string LocalizedValue { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Value == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Value"); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs new file mode 100644 index 000000000000..e5743f872266 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs @@ -0,0 +1,93 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// A set of metric values in a time range. + /// + public partial class Metric + { + /// + /// Initializes a new instance of the Metric class. + /// + public Metric() { } + + /// + /// Initializes a new instance of the Metric class. + /// + /// the name and the display name of the metric, + /// i.e. it is localizable string. + /// the unit of the metric. Possible values include: + /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond', + /// 'Percent', 'MilliSeconds' + /// Array of data points representing the metric + /// values. + public Metric(LocalizableString name, Unit unit, System.Collections.Generic.IList data) + { + Name = name; + Unit = unit; + Data = data; + } + + /// + /// Gets or sets the name and the display name of the metric, i.e. it + /// is localizable string. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public LocalizableString Name { get; set; } + + /// + /// Gets or sets the unit of the metric. Possible values include: + /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond', + /// 'Percent', 'MilliSeconds' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + public Unit Unit { get; set; } + + /// + /// Gets or sets array of data points representing the metric values. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "data")] + public System.Collections.Generic.IList Data { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + } + if (Data == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Data"); + } + if (this.Name != null) + { + this.Name.Validate(); + } + if (this.Data != null) + { + foreach (var element in this.Data) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs new file mode 100644 index 000000000000..c9c92e57c537 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// Metric availability specifies the time grain (aggregation interval or + /// frequency) and the retention period for that time grain. + /// + public partial class MetricAvailability + { + /// + /// Initializes a new instance of the MetricAvailability class. + /// + public MetricAvailability() { } + + /// + /// Initializes a new instance of the MetricAvailability class. + /// + /// the time grain specifies the aggregation + /// interval for the metric. Expressed as a duration 'PT1M', 'P1D', + /// etc. + /// the retention period for the metric at the + /// specified timegrain. Expressed as a duration 'PT1M', 'P1D', + /// etc. + public MetricAvailability(System.TimeSpan? timeGrain = default(System.TimeSpan?), System.TimeSpan? retention = default(System.TimeSpan?)) + { + TimeGrain = timeGrain; + Retention = retention; + } + + /// + /// Gets or sets the time grain specifies the aggregation interval for + /// the metric. Expressed as a duration 'PT1M', 'P1D', etc. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeGrain")] + public System.TimeSpan? TimeGrain { get; set; } + + /// + /// Gets or sets the retention period for the metric at the specified + /// timegrain. Expressed as a duration 'PT1M', 'P1D', etc. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "retention")] + public System.TimeSpan? Retention { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs new file mode 100644 index 000000000000..6b8124ffa93f --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// Metric definition class specifies the metadata for a metric. + /// + public partial class MetricDefinition + { + /// + /// Initializes a new instance of the MetricDefinition class. + /// + public MetricDefinition() { } + + /// + /// Initializes a new instance of the MetricDefinition class. + /// + /// the resource identifier of the resource + /// that emitted the metric. + /// the name and the display name of the metric, + /// i.e. it is a localizable string. + /// the unit of the metric. Possible values include: + /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond', + /// 'Percent', 'MilliSeconds' + /// the primary aggregation type + /// value defining how to use the values for display. Possible values + /// include: 'None', 'Average', 'Count', 'Minimum', 'Maximum', + /// 'Total' + /// the collection of what + /// aggregation intervals are available to be queried. + /// the resource identifier of the metric + /// definition. + public MetricDefinition(string resourceId = default(string), LocalizableString name = default(LocalizableString), Unit? unit = default(Unit?), AggregationType? primaryAggregationType = default(AggregationType?), System.Collections.Generic.IList metricAvailabilities = default(System.Collections.Generic.IList), string id = default(string)) + { + ResourceId = resourceId; + Name = name; + Unit = unit; + PrimaryAggregationType = primaryAggregationType; + MetricAvailabilities = metricAvailabilities; + Id = id; + } + + /// + /// Gets or sets the resource identifier of the resource that emitted + /// the metric. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceId")] + public string ResourceId { get; set; } + + /// + /// Gets or sets the name and the display name of the metric, i.e. it + /// is a localizable string. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public LocalizableString Name { get; set; } + + /// + /// Gets or sets the unit of the metric. Possible values include: + /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond', + /// 'Percent', 'MilliSeconds' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + public Unit? Unit { get; set; } + + /// + /// Gets or sets the primary aggregation type value defining how to use + /// the values for display. Possible values include: 'None', 'Average', + /// 'Count', 'Minimum', 'Maximum', 'Total' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "primaryAggregationType")] + public AggregationType? PrimaryAggregationType { get; set; } + + /// + /// Gets or sets the collection of what aggregation intervals are + /// available to be queried. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "metricAvailabilities")] + public System.Collections.Generic.IList MetricAvailabilities { get; set; } + + /// + /// Gets or sets the resource identifier of the metric definition. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Name != null) + { + this.Name.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs new file mode 100644 index 000000000000..6d471dcea245 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// Represents a metric value. + /// + public partial class MetricValue + { + /// + /// Initializes a new instance of the MetricValue class. + /// + public MetricValue() { } + + /// + /// Initializes a new instance of the MetricValue class. + /// + /// the timestamp for the metric value in ISO + /// 8601 format. + /// the average value in the time range. + /// the least value in the time range. + /// the greatest value in the time range. + /// the sum of all of the values in the time + /// range. + /// the number of samples in the time range. Can be + /// used to determine the number of values that contributed to the + /// average value. + public MetricValue(System.DateTime timeStamp, double? average = default(double?), double? minimum = default(double?), double? maximum = default(double?), double? total = default(double?), long? count = default(long?)) + { + TimeStamp = timeStamp; + Average = average; + Minimum = minimum; + Maximum = maximum; + Total = total; + Count = count; + } + + /// + /// Gets or sets the timestamp for the metric value in ISO 8601 format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeStamp")] + public System.DateTime TimeStamp { get; set; } + + /// + /// Gets or sets the average value in the time range. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "average")] + public double? Average { get; set; } + + /// + /// Gets or sets the least value in the time range. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "minimum")] + public double? Minimum { get; set; } + + /// + /// Gets or sets the greatest value in the time range. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "maximum")] + public double? Maximum { get; set; } + + /// + /// Gets or sets the sum of all of the values in the time range. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "total")] + public double? Total { get; set; } + + /// + /// Gets or sets the number of samples in the time range. Can be used + /// to determine the number of values that contributed to the average + /// value. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "count")] + public long? Count { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs new file mode 100644 index 000000000000..65cf5d45d3d9 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [Newtonsoft.Json.JsonObject] + public class Page : Microsoft.Rest.Azure.IPage + { + /// + /// Gets the link to the next page. + /// + [Newtonsoft.Json.JsonProperty("")] + public System.String NextPageLink { get; private set; } + + [Newtonsoft.Json.JsonProperty("value")] + private System.Collections.Generic.IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public System.Collections.Generic.IEnumerator GetEnumerator() + { + return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs new file mode 100644 index 000000000000..ebbf9474324c --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [Newtonsoft.Json.JsonObject] + public class Page1 : Microsoft.Rest.Azure.IPage + { + /// + /// Gets the link to the next page. + /// + [Newtonsoft.Json.JsonProperty("nextLink")] + public System.String NextPageLink { get; private set; } + + [Newtonsoft.Json.JsonProperty("value")] + private System.Collections.Generic.IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public System.Collections.Generic.IEnumerator GetEnumerator() + { + return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs new file mode 100644 index 000000000000..fc16477d54c8 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// The RBAC properties of the event. + /// + public partial class SenderAuthorization + { + /// + /// Initializes a new instance of the SenderAuthorization class. + /// + public SenderAuthorization() { } + + /// + /// Initializes a new instance of the SenderAuthorization class. + /// + /// the permissible actions. For instance: + /// microsoft.support/supporttickets/write + /// the role of the user. For instance: Subscription + /// Admin + /// the scope. + public SenderAuthorization(string action = default(string), string role = default(string), string scope = default(string)) + { + Action = action; + Role = role; + Scope = scope; + } + + /// + /// Gets or sets the permissible actions. For instance: + /// microsoft.support/supporttickets/write + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "action")] + public string Action { get; set; } + + /// + /// Gets or sets the role of the user. For instance: Subscription Admin + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "role")] + public string Role { get; set; } + + /// + /// Gets or sets the scope. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "scope")] + public string Scope { get; set; } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs new file mode 100644 index 000000000000..285ace3114c1 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + + /// + /// Defines values for Unit. + /// + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum Unit + { + [System.Runtime.Serialization.EnumMember(Value = "Count")] + Count, + [System.Runtime.Serialization.EnumMember(Value = "Bytes")] + Bytes, + [System.Runtime.Serialization.EnumMember(Value = "Seconds")] + Seconds, + [System.Runtime.Serialization.EnumMember(Value = "CountPerSecond")] + CountPerSecond, + [System.Runtime.Serialization.EnumMember(Value = "BytesPerSecond")] + BytesPerSecond, + [System.Runtime.Serialization.EnumMember(Value = "Percent")] + Percent, + [System.Runtime.Serialization.EnumMember(Value = "MilliSeconds")] + MilliSeconds + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs new file mode 100644 index 000000000000..458268d5324f --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs @@ -0,0 +1,103 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor.Models +{ + using System.Linq; + + /// + /// Usage Metric data. + /// + public partial class UsageMetric + { + /// + /// Initializes a new instance of the UsageMetric class. + /// + public UsageMetric() { } + + /// + /// Initializes a new instance of the UsageMetric class. + /// + /// the usage metric name and display name. + /// the current value for the usage + /// metric. + /// the id for the usage metric. + /// the quota limit the usage metric. + /// the unit for the usage metric. + /// the next reset time for the current + /// value. + /// the amount of time it takes to reset the + /// value. + public UsageMetric(LocalizableString name = default(LocalizableString), double? currentValue = default(double?), string id = default(string), double? limit = default(double?), string unit = default(string), System.DateTime? nextResetTime = default(System.DateTime?), System.TimeSpan? quotaPeriod = default(System.TimeSpan?)) + { + Name = name; + CurrentValue = currentValue; + Id = id; + Limit = limit; + Unit = unit; + NextResetTime = nextResetTime; + QuotaPeriod = quotaPeriod; + } + + /// + /// Gets or sets the usage metric name and display name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public LocalizableString Name { get; set; } + + /// + /// Gets or sets the current value for the usage metric. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "currentValue")] + public double? CurrentValue { get; set; } + + /// + /// Gets or sets the id for the usage metric. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the quota limit the usage metric. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "limit")] + public double? Limit { get; set; } + + /// + /// Gets or sets the unit for the usage metric. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + public string Unit { get; set; } + + /// + /// Gets or sets the next reset time for the current value. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "nextResetTime")] + public System.DateTime? NextResetTime { get; set; } + + /// + /// Gets or sets the amount of time it takes to reset the value. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "quotaPeriod")] + public System.TimeSpan? QuotaPeriod { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Name != null) + { + this.Name.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs new file mode 100644 index 000000000000..c9dee3ec8bf6 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs @@ -0,0 +1,333 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Composite Swagger for Monitor Client + /// + public partial class MonitorClient : Microsoft.Rest.ServiceClient, IMonitorClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + + /// + /// The Azure subscription Id. + /// + public string SubscriptionId { get; set; } + + /// + /// Gets or sets the preferred language for the response. + /// + public string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running Operations. + /// Default value is 30. + /// + public int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IUsageMetricsOperations. + /// + public virtual IUsageMetricsOperations UsageMetrics { get; private set; } + + /// + /// Gets the IEventCategoriesOperations. + /// + public virtual IEventCategoriesOperations EventCategories { get; private set; } + + /// + /// Gets the IActivityLogsOperations. + /// + public virtual IActivityLogsOperations ActivityLogs { get; private set; } + + /// + /// Gets the ITenantActivityLogsOperations. + /// + public virtual ITenantActivityLogsOperations TenantActivityLogs { get; private set; } + + /// + /// Gets the IMetricDefinitionsOperations. + /// + public virtual IMetricDefinitionsOperations MetricDefinitions { get; private set; } + + /// + /// Gets the IMetricsOperations. + /// + public virtual IMetricsOperations Metrics { get; private set; } + + /// + /// Initializes a new instance of the MonitorClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected MonitorClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + { + this.Initialize(); + } + + /// + /// Initializes a new instance of the MonitorClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected MonitorClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + this.Initialize(); + } + + /// + /// Initializes a new instance of the MonitorClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected MonitorClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the MonitorClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected MonitorClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the MonitorClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public MonitorClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the MonitorClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public MonitorClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the MonitorClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public MonitorClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the MonitorClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public MonitorClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + /// + /// Initializes client properties. + /// + private void Initialize() + { + this.UsageMetrics = new UsageMetricsOperations(this); + this.EventCategories = new EventCategoriesOperations(this); + this.ActivityLogs = new ActivityLogsOperations(this); + this.TenantActivityLogs = new TenantActivityLogsOperations(this); + this.MetricDefinitions = new MetricDefinitionsOperations(this); + this.Metrics = new MetricsOperations(this); + this.BaseUri = new System.Uri("https://management.azure.com"); + this.AcceptLanguage = "en-US"; + this.LongRunningOperationRetryTimeout = 30; + this.GenerateClientRequestId = true; + SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + { + Formatting = Newtonsoft.Json.Formatting.Indented, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + Converters = new System.Collections.Generic.List + { + new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + } + }; + DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + { + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + Converters = new System.Collections.Generic.List + { + new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + } + }; + CustomInitialize(); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); + } + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs new file mode 100644 index 000000000000..24b14b8ee513 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs @@ -0,0 +1,443 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// TenantActivityLogsOperations operations. + /// + internal partial class TenantActivityLogsOperations : Microsoft.Rest.IServiceOperations, ITenantActivityLogsOperations + { + /// + /// Initializes a new instance of the TenantActivityLogsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal TenantActivityLogsOperations(MonitorClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorClient + /// + public MonitorClient Client { get; private set; } + + /// + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: + /// authorization, channels, claims, correlationId, description, eventDataId, + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + string apiVersion = "2015-04-01"; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("select", select); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/microsoft.insights/eventtypes/management/values").ToString(); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (select != null) + { + _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs new file mode 100644 index 000000000000..5e30a64da51d --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs @@ -0,0 +1,189 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for TenantActivityLogsOperations. + /// + public static partial class TenantActivityLogsOperationsExtensions + { + /// + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: + /// authorization, channels, claims, correlationId, description, eventDataId, + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId + /// + public static Microsoft.Rest.Azure.IPage List(this ITenantActivityLogsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string)) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ITenantActivityLogsOperations)s).ListAsync(odataQuery, select), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Used to fetch events with only the given properties. The filter is a comma + /// separated list of property names to be returned. Possible values are: + /// authorization, channels, claims, correlationId, description, eventDataId, + /// eventName, eventTimestamp, httpRequest, level, operationId, operationName, + /// properties, resourceGroupName, resourceProviderName, resourceId, status, + /// submissionTimestamp, subStatus, subscriptionId + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ITenantActivityLogsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(odataQuery, select, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListNext(this ITenantActivityLogsOperations operations, string nextPageLink) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((ITenantActivityLogsOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// get the Activity Logs for the Tenant. Everything that is applicable to the + /// API to get the Activity Log for the subscription is applicable to this API + /// (the parameters, $filter, etc.). One thing to point out here is that this + /// API does *not* retrieve the logs at the individual subscription of the + /// tenant but only surfaces the logs that were generated at the tenant level. + /// The **$filter** is very restricted and allows only the following patterns. + /// - List events for a resource group: $filter=eventTimestamp ge '<Start + /// Time>' and eventTimestamp le '<End Time>' and eventChannels eq + /// 'Admin, Operation' and resourceGroupName eq '<ResourceGroupName>'. - + /// List events for resource: $filter=eventTimestamp ge '<Start Time>' + /// and eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation' and resourceUri eq '<ResourceURI>'. - List events for a + /// subscription: $filter=eventTimestamp ge '<Start Time>' and + /// eventTimestamp le '<End Time>' and eventChannels eq 'Admin, + /// Operation'. - List evetns for a resource provider: $filter=eventTimestamp + /// ge '<Start Time>' and eventTimestamp le '<End Time>' and + /// eventChannels eq 'Admin, Operation' and resourceProvider eq + /// '<ResourceProviderName>'. - List events for a correlation Id: + /// api-version=2014-04-01&$filter=eventTimestamp ge + /// '2014-07-16T04:36:37.6407898Z' and eventTimestamp le + /// '2014-07-20T04:36:37.6407898Z' and eventChannels eq 'Admin, Operation' and + /// correlationId eq '<CorrelationID>'. No other syntax is allowed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ITenantActivityLogsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs new file mode 100644 index 000000000000..b5200831caae --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs @@ -0,0 +1,243 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// UsageMetricsOperations operations. + /// + internal partial class UsageMetricsOperations : Microsoft.Rest.IServiceOperations, IUsageMetricsOperations + { + /// + /// Initializes a new instance of the UsageMetricsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal UsageMetricsOperations(MonitorClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the MonitorClient + /// + public MonitorClient Client { get; private set; } + + /// + /// The List operation lists the usage metrics for the resource. + /// + /// + /// The identifier of the resource. + /// + /// + /// The client Api Version. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + if (resourceUri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + } + if (apiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "apiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceUri", resourceUri); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/usages").ToString(); + _url = _url.Replace("{resourceUri}", resourceUri); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs new file mode 100644 index 000000000000..471dc2b105bf --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Monitor +{ + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for UsageMetricsOperations. + /// + public static partial class UsageMetricsOperationsExtensions + { + /// + /// The List operation lists the usage metrics for the resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// The client Api Version. + /// + /// + /// OData parameters to apply to the operation. + /// + public static System.Collections.Generic.IEnumerable List(this IUsageMetricsOperations operations, string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + { + return System.Threading.Tasks.Task.Factory.StartNew(s => ((IUsageMetricsOperations)s).ListAsync(resourceUri, apiVersion, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// The List operation lists the usage metrics for the resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource. + /// + /// + /// The client Api Version. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IUsageMetricsOperations operations, string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceUri, apiVersion, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Microsoft.Azure.Monitor.xproj b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Microsoft.Azure.Monitor.xproj new file mode 100644 index 000000000000..50fd34a8c69b --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Microsoft.Azure.Monitor.xproj @@ -0,0 +1,18 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 8989ed12-b754-4ebd-bc97-efa7b11ffd49 + Monitor + .\obj + .\bin\ + + + 2.0 + + + \ No newline at end of file diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Properties/AssemblyInfo.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..3783bbc450a2 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Resources; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Monitor Library")] +[assembly: AssemblyDescription("Provides Microsoft Azure Monitor operations.")] + +[assembly: AssemblyVersion("0.15.0.0")] +[assembly: AssemblyFileVersion("0.15.0.0")] + +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Azure .NET SDK")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("en")] diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd new file mode 100644 index 000000000000..b5020da84e66 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd @@ -0,0 +1,30 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + + +@echo off +set autoRestVersion=1.0.0-Nightly20161116 +if "%1" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/1f823636981e779b6d4155aa18d042146e1270fb/monitor/compositeMonitorClient.json" +) else ( + set specFile="%1" +) +set repoRoot=%~dp0..\..\..\.. +set generateFolder=%~dp0Generated\Monitor + +if exist %generateFolder% rd /S /Q %generateFolder% +call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Monitor %autoRestVersion% %generateFolder% "-FT 1" + +if "%2" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/1f823636981e779b6d4155aa18d042146e1270fb/arm-monitor/compositeMonitorManagementClient.json" +) else ( + set specFile="%2" +) + +set generateFolder=%~dp0Generated\Management\Monitor + +if exist %generateFolder% rd /S /Q %generateFolder% +call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.Monitor %autoRestVersion% %generateFolder% "-FT 1" + \ No newline at end of file diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json new file mode 100644 index 000000000000..7bcd8cd35745 --- /dev/null +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json @@ -0,0 +1,50 @@ +{ + "version": "0.15.0-preview", + "description": "Microsoft Azure Monitor Library", + "authors": [ "Microsoft" ], + + "packOptions": { + "summary": "Provides Microsoft Azure Monitor operations using Resource Manager", + "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "tags": [ "Microsoft", "Microsoft Azure", "Azure", "Monitor", "monitoring", "monitoring services", "metrics", "alerts", "autoscale", "activityLogs", "events", "operations", "logs", "REST", "HTTP", "client", "azureofficial", "windowsazureofficial", "management services", "diagnostics", "telemetry", "analytics" ], + "requireLicenseAcceptance": false + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk" + }, + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.3,3.0.0)" + }, + + "frameworks": { + "net45": { + "dependencies": { + "Microsoft.Net.Http": "[2.2.28,3.0.0)", + "Newtonsoft.Json": "[6.0.8,7.0.0)" + } + }, + "netstandard1.5": { + "imports": ["dnxcore50"], + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Tasks": "4.0.11" + } + }, + "netstandard1.1": { + "imports": ["dnxcore50"], + "dependencies": { + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Net.Http": "4.1.0" + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AlertsTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AlertsTests.cs new file mode 100644 index 000000000000..5d48b069439e --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AlertsTests.cs @@ -0,0 +1,320 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Http; +using Monitor.Tests.Helpers; +using Microsoft.Azure.Management.Monitor; +using Microsoft.Azure.Management.Monitor.Models; +using Xunit; + +namespace Monitor.Tests.BasicTests +{ + public class AlertsTests : TestBase + { + [Fact] + public void GetIncidentTest() + { + var expectedIncident = GetIncidents().First(); + + var serializedObject = expectedIncident.ToJson(); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(serializedObject) + }; + + var handler = new RecordedDelegatingHandler(expectedResponse); + var insightsClient = GetMonitorManagementClient(handler); + + var actualIncident = insightsClient.AlertRuleIncidents.Get( + resourceGroupName: "rg1", + ruleName: "r1", + incidentName: "i1"); + + AreEqual(expectedIncident, actualIncident); + } + + private static List GetIncidents() + { + return new List + { + new Incident( + activatedTime: DateTime.UtcNow, + isActive: false, + name: "i1", + resolvedTime: DateTime.UtcNow, + ruleName: "r1" + ) + }; + } + + private static void AreEqual(Incident exp, Incident act) + { + if (exp != null) + { + Assert.True(exp.ActivatedTime.HasValue); + Assert.True(act.ActivatedTime.HasValue); + Assert.Equal(exp.ActivatedTime.Value.ToUniversalTime(), act.ActivatedTime.Value.ToUniversalTime()); + Assert.Equal(exp.IsActive, act.IsActive); + Assert.Equal(exp.Name, act.Name); + + Assert.True(exp.ResolvedTime.HasValue); + Assert.True(act.ResolvedTime.HasValue); + Assert.Equal(exp.ResolvedTime.Value.ToUniversalTime(), act.ResolvedTime.Value.ToUniversalTime()); + Assert.Equal(exp.RuleName, act.RuleName); + } + } + + [Fact] + public void ListIncidentsTest() + { + var expectedIncidentsResponse = new List + { + new Incident( + activatedTime: DateTime.Parse("2014-08-01T00:00:00Z"), + isActive: false, + name: "i1", + resolvedTime: DateTime.Parse("2014-08-01T00:00:00Z"), + ruleName: "r1" + ) + }; + + HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Concat("{ \"value\":", expectedIncidentsResponse.ToJson(), "}")) + }; + + var handler = new RecordedDelegatingHandler(response); + var insightsClient = GetMonitorManagementClient(handler); + + var actualIncidents = insightsClient.AlertRuleIncidents.ListByAlertRule( + resourceGroupName: "rg1", + ruleName: "r1"); + + AreEqual(expectedIncidentsResponse, actualIncidents.ToList()); + } + + private void AreEqual(IList exp, IList act) + { + if (exp != null) + { + for (int i = 0; i < exp.Count; i++) + { + AreEqual(exp[i], act[i]); + } + } + } + + private static void AreEqual(List exp, IList act) + { + if (exp != null) + { + for (int i = 0; i < exp.Count; i++) + { + AreEqual(exp[i], act[i]); + } + } + } + + [Fact] + public void CreateOrUpdateRuleTest() + { + AlertRuleResource expectedParameters = GetCreateOrUpdateRuleParameter(); + + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expectedParameters, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(serializedObject) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + var result = insightsClient.AlertRules.CreateOrUpdate(resourceGroupName: "rg1", ruleName: expectedParameters.Name, parameters: expectedParameters); + + AreEqual(expectedParameters, result); + } + + [Fact] + public void ListRulesTest() + { + var expResponse = GetRuleResourceCollection(); + + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expResponse, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Concat("{ \"value\":", serializedObject, "}")) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + var actualResponse = insightsClient.AlertRules.ListByResourceGroup(resourceGroupName: " rg1", odataQuery: "resourceUri eq 'resUri'"); + + AreEqual(expResponse, actualResponse.ToList()); + } + + private void AreEqual(AlertRuleResource exp, AlertRuleResource act) + { + if (exp != null) + { + Assert.Equal(exp.Location, act.Location); + AreEqual(exp.Tags, act.Tags); + Assert.Equal(exp.Name, act.Name); + Assert.Equal(exp.Description, act.Description); + Assert.Equal(exp.IsEnabled,act.IsEnabled); + AreEqual(exp.Condition, act.Condition); + AreEqual(exp.Actions, act.Actions); + //Assert.Equal(exp.LastUpdatedTime, act.LastUpdatedTime); + } + } + + private void AreEqual(RuleCondition exp, RuleCondition act) + { + if (exp is LocationThresholdRuleCondition) + { + var expRuleCondition = exp as LocationThresholdRuleCondition; + var actRuleCondition = act as LocationThresholdRuleCondition; + + AreEqual(expRuleCondition.DataSource, actRuleCondition.DataSource); + Assert.Equal(expRuleCondition.FailedLocationCount, actRuleCondition.FailedLocationCount); + Assert.Equal(expRuleCondition.WindowSize, actRuleCondition.WindowSize); + } + } + + private void AreEqual(RuleDataSource exp, RuleDataSource act) + { + if (exp is RuleMetricDataSource) + { + var expMetricDataSource = exp as RuleMetricDataSource; + var actMetricDataSource = act as RuleMetricDataSource; + + Assert.Equal(expMetricDataSource.MetricName, actMetricDataSource.MetricName); + Assert.Equal(expMetricDataSource.ResourceUri, actMetricDataSource.ResourceUri); + } + } + + private void AreEqual(IList exp, IList act) + { + Assert.NotNull(exp); + Assert.NotNull(act); + + Assert.Equal(exp.Count, act.Count); + + for (int i = 0; i < exp.Count; i++) + { + AreEqual(exp[i], act[i]); + } + } + + private void AreEqual(RuleAction exp, RuleAction act) + { + if (exp is RuleEmailAction) + { + var expEmailRuleAction = exp as RuleEmailAction; + var actEmailRuleAction = act as RuleEmailAction; + + AreEqual(expEmailRuleAction.CustomEmails, actEmailRuleAction.CustomEmails); + Assert.Equal(expEmailRuleAction.SendToServiceOwners, actEmailRuleAction.SendToServiceOwners); + } + } + + private AlertRuleResource GetCreateOrUpdateRuleParameter() + { + List actions = new List(); + actions.Add(new RuleEmailAction() + { + CustomEmails = new List() + { + "emailid1" + }, + SendToServiceOwners = true + }); + + return new AlertRuleResource( + location: "location", + alertRuleResourceName: "name1", + actions: actions, + condition: new LocationThresholdRuleCondition() + { + DataSource = new RuleMetricDataSource() + { + MetricName = "CPUPercentage", + ResourceUri = "resourceUri" + }, + FailedLocationCount = 1, + WindowSize = TimeSpan.FromMinutes(30) + }, + description: "description", + isEnabled: true, + lastUpdatedTime: DateTime.UtcNow, + name: "name1", + tags: new Dictionary() + { + {"key1", "val1"} + } + ); + } + + private List GetRuleResourceCollection() + { + List actions = new List(); + actions.Add(new RuleEmailAction() + { + CustomEmails = new List() + { + "eamil1" + }, + SendToServiceOwners = true + }); + + return new List + { + new AlertRuleResource( + id: "id1", + location: "location1", + name: "name1", + alertRuleResourceName: "name1", + actions: actions, + condition: new LocationThresholdRuleCondition() + { + DataSource = new RuleMetricDataSource() + { + MetricName = "CpuPercentage", + ResourceUri = "resUri1" + }, + FailedLocationCount = 1, + WindowSize = TimeSpan.FromMinutes(30) + }, + description: "description1", + isEnabled: true, + lastUpdatedTime: DateTime.UtcNow, + tags: new Dictionary() + { + {"key1", "val1"} + } + ) + }; + } + + private void AreEqual(IList exp, IList act) + { + if (exp != null) + { + Assert.True(exp.Count == act.Count); + + for (int i = 0; i < exp.Count; i++) + { + AreEqual(exp[i], act[i]); + } + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AutoscaleTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AutoscaleTests.cs new file mode 100644 index 000000000000..2e2cd074dda5 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AutoscaleTests.cs @@ -0,0 +1,269 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Net; +using System.Net.Http; +using Monitor.Tests.Helpers; +using Microsoft.Azure.Management.Monitor; +using Microsoft.Azure.Management.Monitor.Models; +using Xunit; + +namespace Monitor.Tests.BasicTests +{ + public class AutoscaleTests : TestBase + { + private const string ResourceUri = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.web/serverFarms/DefaultServerFarm"; + + [Fact] + public void CreateOrUpdateSettingTest() + { + AutoscaleSettingResource expResponse = CreateAutoscaleSetting(location: "East US", resourceUri: ResourceUri, metricName: "CpuPercentage"); + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expResponse, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(serializedObject) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + var actualResponse = insightsClient.AutoscaleSettings.CreateOrUpdate(resourceGroupName: "resourceGroup1", autoscaleSettingName: "setting1", parameters: expResponse); + AreEqual(expResponse, actualResponse); + } + + [Fact] + public void Autoscale_GetSetting() + { + var expResponse = CreateAutoscaleSetting(ResourceUri, "CpuPercentage", string.Empty); + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expResponse, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(serializedObject) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + AutoscaleSettingResource actualResponse = insightsClient.AutoscaleSettings.Get(resourceGroupName: "resourceGroup1", autoscaleSettingName: "setting1"); + AreEqual(expResponse, actualResponse); + } + + private static AutoscaleSettingResource CreateAutoscaleSetting(string location, string resourceUri, string metricName) + { + var capacity = new ScaleCapacity() + { + DefaultProperty = "1", + Maximum = "100", + Minimum = "1" + }; + + var fixedDate = new TimeWindow() + { + End = DateTime.Parse("2014-04-16T21:06:11.7882792Z"), + Start = DateTime.Parse("2014-04-15T21:06:11.7882792Z"), + TimeZone = TimeZoneInfo.Utc.Id.ToString() + }; + + var recurrence = new Recurrence() + { + Frequency = RecurrenceFrequency.Week, + Schedule = new RecurrentSchedule() + { + Days = new List { "Monday" }, + Hours = new List { 0 }, + Minutes = new List { 10 }, + TimeZone = "UTC-11" + } + }; + + var rules = new ScaleRule[] + { + new ScaleRule() + { + MetricTrigger = new MetricTrigger + { + MetricName = metricName, + MetricResourceUri = resourceUri, + Statistic = MetricStatisticType.Average, + Threshold = 80.0, + TimeAggregation = TimeAggregationType.Maximum, + TimeGrain = TimeSpan.FromMinutes(1), + TimeWindow = TimeSpan.FromHours(1) + }, + ScaleAction = new ScaleAction + { + Cooldown = TimeSpan.FromMinutes(20), + Direction = ScaleDirection.Increase, + Value = "10" + } + } + }; + + AutoscaleSettingResource setting = new AutoscaleSettingResource + { + Name = "setting1", + AutoscaleSettingResourceName = "setting1", + TargetResourceUri = resourceUri, + Enabled = true, + Profiles = new AutoscaleProfile[] + { + new AutoscaleProfile() + { + Name = "Profile1", + Capacity = capacity, + FixedDate = fixedDate, + Recurrence = null, + Rules = rules + }, + new AutoscaleProfile() + { + Name = "Profile2", + Capacity = capacity, + FixedDate = null, + Recurrence = recurrence, + Rules = rules + } + }, + Location = "", + Tags = null, + Notifications = null + }; + + return setting; + } + + private static void AreEqual(AutoscaleSettingResource exp, AutoscaleSettingResource act) + { + if (exp != null) + { + Assert.Equal(exp.Enabled, act.Enabled); + Assert.Equal(exp.Name, act.Name); + Assert.Equal(exp.TargetResourceUri, act.TargetResourceUri); + + for (int i = 0; i < exp.Profiles.Count; i++) + { + var expectedProfile = exp.Profiles[i]; + var actualProfile = act.Profiles[i]; + AreEqual(expectedProfile, actualProfile); + } + } + } + + private static void AreEqual(AutoscaleProfile exp, AutoscaleProfile act) + { + if (exp != null) + { + Assert.Equal(exp.Name, act.Name); + AreEqual(exp.Capacity, act.Capacity); + AreEqual(exp.FixedDate, act.FixedDate); + AreEqual(exp.Recurrence, act.Recurrence); + for (int i = 0; i < exp.Rules.Count; i++) + { + AreEqual(exp.Rules[i], act.Rules[i]); + } + } + } + + private static void AreEqual(TimeWindow exp, TimeWindow act) + { + if (exp != null) + { + Assert.Equal(exp.End.ToUniversalTime(), act.End.ToUniversalTime()); + Assert.Equal(exp.Start.ToUniversalTime(), act.Start.ToUniversalTime()); + Assert.Equal(exp.TimeZone, act.TimeZone); + } + } + + private static void AreEqual(ScaleCapacity exp, ScaleCapacity act) + { + if (exp != null) + { + Assert.Equal(exp.DefaultProperty, act.DefaultProperty); + Assert.Equal(exp.Maximum, act.Maximum); + Assert.Equal(exp.Minimum, act.Minimum); + } + } + + private static void AreEqual(Recurrence exp, Recurrence act) + { + if (exp != null) + { + Assert.Equal(exp.Frequency, act.Frequency); + AreEqual(exp.Schedule, act.Schedule); + } + } + + private static void AreEqual(RecurrentSchedule exp, RecurrentSchedule act) + { + if (exp != null) + { + AreEqual(exp.Days, act.Days); + AreEqual(exp.Hours, act.Hours); + AreEqual(exp.Minutes, act.Minutes); + Assert.Equal(exp.TimeZone, act.TimeZone); + } + } + + private static bool AreEqual(IList exp, IList act) + { + if (exp != null) + { + if (act == null || exp.Count != act.Count) + { + return false; + } + + for (int i = 0; i < exp.Count; i++) + { + if (exp[i] != act[i]) + { + return false; + } + } + + return true; + } + + return act == null; + } + + private static void AreEqual(ScaleRule exp, ScaleRule act) + { + if (exp != null) + { + AreEqual(exp.MetricTrigger, act.MetricTrigger); + AreEqual(exp.ScaleAction, act.ScaleAction); + } + } + + private static void AreEqual(MetricTrigger exp, MetricTrigger act) + { + if (exp != null) + { + Assert.Equal(exp.MetricName, act.MetricName); + Assert.Equal(exp.MetricResourceUri, act.MetricResourceUri); + Assert.Equal(exp.Statistic, act.Statistic); + Assert.Equal(exp.Threshold, act.Threshold); + Assert.Equal(exp.TimeAggregation, act.TimeAggregation); + Assert.Equal(exp.TimeGrain, act.TimeGrain); + Assert.Equal(exp.TimeWindow, act.TimeWindow); + } + } + + private static void AreEqual(ScaleAction exp, ScaleAction act) + { + if (exp != null) + { + Assert.Equal(exp.Cooldown, act.Cooldown); + Assert.Equal(exp.Direction, act.Direction); + Assert.Equal(exp.Value, act.Value); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/EventDataTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/EventDataTests.cs new file mode 100644 index 000000000000..a41c438fd05b --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/EventDataTests.cs @@ -0,0 +1,219 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Http; +using Monitor.Tests.Helpers; +using Microsoft.Azure.Monitor; +using Microsoft.Azure.Monitor.Models; +using Microsoft.Rest.Azure.OData; +using Xunit; + +namespace Monitor.Tests.BasicTests +{ + /// + /// Class to unit test the Insights API methods. + /// The goal of these tests is to find out if the serialization/deserialization is working properly. Testing other features is out of scope. + /// + public class EventDataInMemoryTests : TestBase + { + #region EventCountSummaryContent + +// private static string EventCountSummaryContent = +// @"{ +// 'eventPropertyName': 'ResourceUri', +// 'eventPropertyValue': '/subscriptions/6b483e7e-f352-4d25-b49d-e0cc8b0b78f6/resourcegroups/Default-Web-SouthCentralUS/providers/Microsoft.Web/sites/si', +// 'startTime': '2014-08-20T00:00:00Z', +// 'endTime': '2014-08-21T00:00:00Z', +// 'timeGrain': 'P1D', +// 'id': '/subscriptions/6b483e7e-f352-4d25-b49d-e0cc8b0b78f6/resourcegroups/Default-Web-SouthCentralUS/providers/Microsoft.Web/sites/si/managementSummariesCount', +// 'summaryItems': [{ +// 'eventTime': '2014-08-21T00:00:00Z', +// 'totalEventsCount': 2, +// 'failedEventsCount': 1 +// }, +// { +// 'eventTime': '2014-08-20T00:00:00Z', +// 'totalEventsCount': 0, +// 'failedEventsCount': 0 +// }] +// }"; + + #endregion + + /// + /// Test for the ListEvents API method + /// + [Fact] + public void ListEventsTest() + { + List expectedEventDataCollection = GetEventDataCollection(); + var response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Concat("{ \"value\":", expectedEventDataCollection.ToJson(), ", \"nextLink\":\"\"}")) + }; + + var handler = new RecordedDelegatingHandler(response) { StatusCodeToReturn = HttpStatusCode.OK }; + + var startTime = DateTimeOffset.Parse("2014-03-11T01:00:00.00Z"); + var endTime = DateTimeOffset.Parse("2014-03-11T02:00:00.00Z"); + + var insightsClient = GetMonitorClient(handler); + + var filterString = new ODataQuery(p => (p.EventTimestamp >= startTime) && (p.EventTimestamp < endTime)); + + var actualEventDataCollection = insightsClient.ActivityLogs.List(filterString); + + Assert.True(string.IsNullOrWhiteSpace(actualEventDataCollection.NextPageLink)); + AreEqual(expectedEventDataCollection, actualEventDataCollection.GetEnumerator()); + } + + /// + /// Test for the ListEventsNext method + /// + [Fact] + public void ListEventsNextTest() + { + List expectedEventDataCollection = GetEventDataCollection(); + var response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Concat("{ \"value\":", expectedEventDataCollection.ToJson(), ", \"nextLink\":\"\"}")) + }; + + var handler = new RecordedDelegatingHandler(response) { StatusCodeToReturn = HttpStatusCode.OK }; + var insightsClient = GetMonitorClient(handler); + + var actualEventDataCollection = insightsClient.ActivityLogs.ListNext("http://www.microsoft.com"); + + Assert.True(string.IsNullOrWhiteSpace(actualEventDataCollection.NextPageLink)); + AreEqual(expectedEventDataCollection, actualEventDataCollection.GetEnumerator()); + } + + #region private methods + + private static void AreEqual(IEnumerable exp, IEnumerator act) + { + if (exp != null) + { + List expList = exp.ToList(); + List actList = new List(); + while (act.MoveNext()) + { + actList.Add(act.Current); + } + + Assert.Equal(expList.Count, actList.Count); + + for (int i=0;i GetEventDataCollection() + { + return new List() + { + new EventData( + authorization: new SenderAuthorization(action: "action", role: "role" , scope: "scope"), + claims: new Dictionary { {"prop1", "val1"} }, + correlationId: Guid.NewGuid().ToString("N"), + description: "description", + eventDataId: Guid.NewGuid().ToString("N"), + eventName: new LocalizableString( + localizedValue: "Event Name", + value: "EventName"), + category: new LocalizableString( + localizedValue: "Administrative", + value: "Administrative"), + eventTimestamp: DateTime.UtcNow, + httpRequest: new HttpRequestInfo( + clientIpAddress: "1.1.1.1", + clientRequestId: Guid.NewGuid().ToString("N"), + method: "method", + uri: "http://localhost"), + level: EventLevel.Critical, + operationId: Guid.NewGuid().ToString("N"), + operationName: new LocalizableString( + localizedValue: "Operation Name", + value: "OperationName"), + properties: new Dictionary() + { + {"prop1", "val1"} + }, + resourceGroupName: "rg1", + resourceProviderName: new LocalizableString( + localizedValue: "Resource provider name", + value: "ResourceProviderName"), + resourceId: "/subscriptions/sub1", + status: new LocalizableString( + localizedValue: "Is Ready", + value: "IsReady"), + subStatus: new LocalizableString( + localizedValue: "sub 1", + value: "sub1"), + submissionTimestamp: DateTime.UtcNow, + subscriptionId: Guid.NewGuid().ToString("N")) + }; + } + + #endregion + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/LogProfilesTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/LogProfilesTests.cs new file mode 100644 index 000000000000..4386e7cde241 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/LogProfilesTests.cs @@ -0,0 +1,178 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Http; +using Monitor.Tests.Helpers; +using Microsoft.Azure.Management.Monitor; +using Microsoft.Azure.Management.Monitor.Models; +using Xunit; + +namespace Monitor.Tests.BasicTests +{ + public class LogProfilesTests : TestBase + { + private const string ResourceId = "/subscriptions/0e44ac0a-5911-482b-9edd-3e67625d45b5/providers/microsoft.insights/logprofiles/default"; + + private static string DefaultName = "default"; + + [Fact] + public void LogProfiles_CreateOrUpdateTest() + { + LogProfileResource expResponse = CreateLogProfile(); + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expResponse, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(serializedObject) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + var parameters = CreateLogProfileParams(); + + LogProfileResource actualResponse = insightsClient.LogProfiles.CreateOrUpdate(logProfileName: DefaultName, parameters: parameters); + + AreEqual(expResponse, actualResponse); + } + + [Fact] + public void LogProfiles_DeleteTest() + { + HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Empty) + }; + + var handler = new RecordedDelegatingHandler(response); + MonitorManagementClient customClient = this.GetMonitorManagementClient(handler); + + customClient.LogProfiles.Delete(logProfileName: DefaultName); + } + + [Fact] + public void LogProfiles_GetTest() + { + var expResponse = CreateLogProfile(); + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expResponse, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(serializedObject) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + LogProfileResource actualResponse = insightsClient.LogProfiles.Get(logProfileName: DefaultName); + AreEqual(expResponse, actualResponse); + } + + [Fact] + public void LogProfiles_ListTest() + { + var logProfile = CreateLogProfile(); + var expResponse = new List + { + logProfile + }; + + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expResponse, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Concat("{ \"value\":", serializedObject, "}")) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + IList actualResponse = insightsClient.LogProfiles.List().ToList(); + + Assert.Equal(expResponse.Count, actualResponse.Count); + AreEqual(expResponse[0], actualResponse[0]); + } + + private static LogProfileResource CreateLogProfile() + { + return new LogProfileResource + { + StorageAccountId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.storage/storageaccounts/sa1", + ServiceBusRuleId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.servicebus/namespaces/sb1/authorizationrules/ar1", + Categories = new List { "Delete", "Write" }, + Locations = new List { "global", "eastus" }, + RetentionPolicy = new RetentionPolicy + { + Days = 4, + Enabled = true, + } + }; + } + + private static LogProfileResource CreateLogProfileParams() + { + return new LogProfileResource + { + StorageAccountId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.storage/storageaccounts/sa1", + ServiceBusRuleId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.servicebus/namespaces/sb1/authorizationrules/ar1", + Categories = new List { "Delete", "Write" }, + Locations = new List { "global", "eastus" }, + RetentionPolicy = new RetentionPolicy + { + Days = 4, + Enabled = true, + }, + Location = "" + }; + } + + private static void AreEqual(LogProfileResource exp, LogProfileResource act) + { + if (exp != null) + { + CompareListString(exp.Categories, act.Categories); + CompareListString(exp.Locations, act.Locations); + + Assert.Equal(exp.RetentionPolicy.Enabled, act.RetentionPolicy.Enabled); + Assert.Equal(exp.RetentionPolicy.Days, act.RetentionPolicy.Days); + Assert.Equal(exp.ServiceBusRuleId, act.ServiceBusRuleId); + Assert.Equal(exp.StorageAccountId, act.StorageAccountId); + } + } + + private static void CompareListString(IList exp, IList act) + { + if (exp == act) + { + return; + } + + if (exp == null) + { + Assert.Equal(null, act); + } + + Assert.False(act == null, "List can't be null"); + + for (int i = 0; i < exp.Count; i++) + { + if (i >= act.Count) + { + Assert.Equal(exp.Count, act.Count); + } + + string cat1 = exp[i]; + string cat2 = act[i]; + Assert.Equal(cat1, cat2); + } + + Assert.Equal(exp.Count, act.Count); + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/MetricsTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/MetricsTests.cs new file mode 100644 index 000000000000..f368d7c57593 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/MetricsTests.cs @@ -0,0 +1,184 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Threading; +using Monitor.Tests.Helpers; +using Microsoft.Azure.Monitor; +using Microsoft.Azure.Monitor.Models; +using Xunit; + +namespace Monitor.Tests.BasicTests +{ + public class MetricsTests : TestBase + { + private const string ResourceUri = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.web/serverFarms/DefaultServerFarm"; + + [Fact] + public void GetMetricDefinitionsTest() + { + IList expectedMetricDefinitionCollection = GetMetricDefinitionCollection(ResourceUri); + var response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Concat("{ \"value\":", expectedMetricDefinitionCollection.ToJson(), "}")) + }; + + RecordedDelegatingHandler handler = new RecordedDelegatingHandler(response); + var insightsClient = GetMonitorClient(handler); + + var filterString = new Microsoft.Rest.Azure.OData.ODataQuery("names eq 'CpuPercentage'"); + var actualMetricDefinitions = insightsClient.MetricDefinitions.ListAsync(resourceUri: ResourceUri, odataQuery: filterString, cancellationToken: new CancellationToken()).Result; + + AreEqual(expectedMetricDefinitionCollection, actualMetricDefinitions.ToList()); + } + + [Fact] + public void GetMetricsTest() + { + IList expectedMetricCollection = GetMetricCollection(ResourceUri); + var response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Concat("{ \"value\":", expectedMetricCollection.ToJson(), "}")) + }; + + RecordedDelegatingHandler handler = new RecordedDelegatingHandler(response); + var insightsClient = GetMonitorClient(handler); + + var filterString = new Microsoft.Rest.Azure.OData.ODataQuery("timeGrain eq duration'PT1M' and startTime eq 2014-01-01T06:00:00Z and endTime eq 2014-01-10T06:00:00Z"); + var actualMetrics = insightsClient.Metrics.ListAsync(resourceUri: ResourceUri, odataQuery: filterString, cancellationToken: CancellationToken.None).Result; + + AreEqual(expectedMetricCollection, actualMetrics.ToList()); + } + + private IList GetMetricCollection(string resourceId) + { + return new List + { + new Metric + { + Name = new LocalizableString {LocalizedValue = "CPU Percentage", Value = "CpuPercentage"}, + Unit = Unit.Percent, + Data = new List + { + new MetricValue + { + Average = 10.0, + Count = 1, + Maximum = 10.0, + Minimum = 10.0, + TimeStamp = DateTime.Parse("2014-08-20T12:15:23.00Z"), + Total = 10.0 + } + } + } + }; + } + + private void AreEqual(IList exp, IList act) + { + if (exp != null) + { + for (int i = 0; i < exp.Count; i++) + { + AreEqual(exp[i], act[i]); + } + } + } + + private void AreEqual(Metric exp, Metric act) + { + if (exp != null) + { + AreEqual(exp.Name, act.Name); + Assert.Equal(exp.Unit, act.Unit); + + if (exp.Data != null) + { + for (int i = 0; i < exp.Data.Count; i++) + { + AreEqual(exp.Data[i], act.Data[i]); + } + } + } + } + + private void AreEqual(MetricValue exp, MetricValue act) + { + if (exp != null) + { + Assert.Equal(exp.Average, act.Average); + Assert.Equal(exp.Count, act.Count); + Assert.Equal(exp.Maximum, act.Maximum); + Assert.Equal(exp.Minimum, act.Minimum); + Assert.Equal(exp.TimeStamp.ToUniversalTime(), act.TimeStamp.ToUniversalTime()); + Assert.Equal(exp.Total, act.Total); + } + } + + #region MetricDefinition helpers + + private static void AreEqual(IList exp, IList act) + { + if (exp != null) + { + for (int i = 0; i < exp.Count; i++) + { + AreEqual(exp[i], act[i]); + } + } + } + + private static void AreEqual(MetricDefinition exp, MetricDefinition act) + { + if (exp != null) + { + AreEqual(exp.Name, act.Name); + Assert.Equal(exp.ResourceId, act.ResourceId); + Assert.Equal(exp.Unit, act.Unit); + Assert.Equal(exp.PrimaryAggregationType, act.PrimaryAggregationType); + + if (exp.MetricAvailabilities != null) + { + for (int i = 0; i < exp.MetricAvailabilities.Count; i++) + { + AreEqual(exp.MetricAvailabilities[i], act.MetricAvailabilities[i]); + } + } + } + } + + private static void AreEqual(MetricAvailability exp, MetricAvailability act) + { + if (exp != null) + { + Assert.Equal(exp.Retention, act.Retention); + Assert.Equal(exp.TimeGrain, act.TimeGrain); + } + } + + private IList GetMetricDefinitionCollection(string resourceUri) + { + var metriAvailabilities = new List() + { + new MetricAvailability(timeGrain: TimeSpan.FromMinutes(10), retention: TimeSpan.FromDays(30)) + }; + + MetricDefinition[] metricDefinitions = new MetricDefinition[1]; + metricDefinitions[0] = new MetricDefinition + { + MetricAvailabilities = metriAvailabilities, + Name = new LocalizableString() { LocalizedValue = "CPU Percentage", Value = "CpuPercentage" }, + PrimaryAggregationType = AggregationType.Average, + ResourceId = resourceUri, + Unit = Unit.Bytes + }; + return metricDefinitions; + } + + #endregion + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs new file mode 100644 index 000000000000..b8353b47b9fd --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs @@ -0,0 +1,205 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Net; +using System.Net.Http; +using Monitor.Tests.Helpers; +using Microsoft.Azure.Management.Monitor; +using Microsoft.Azure.Management.Monitor.Models; +using Xunit; + +namespace Monitor.Tests.BasicTests +{ + public class ServiceDiagnosticSettingsTests : TestBase + { + private const string ResourceUri = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.web/serverFarms/DefaultServerFarm"; + + [Fact] + public void LogProfiles_PutTest() + { + var expResponse = CreateDiagnosticSettings(); + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expResponse, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(serializedObject) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + var parameters = CreateDiagnosticSettingsParams(); + + ServiceDiagnosticSettingsResource response = insightsClient.ServiceDiagnosticSettings.CreateOrUpdate(resourceUri: ResourceUri, parameters: parameters); + AreEqual(expResponse, response); + } + + [Fact] + public void LogProfiles_GetTest() + { + var expResponse = CreateDiagnosticSettings(); + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorManagementClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expResponse, insightsClient.SerializationSettings); + var expectedResponse = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(serializedObject) + }; + + handler = new RecordedDelegatingHandler(expectedResponse); + insightsClient = GetMonitorManagementClient(handler); + + ServiceDiagnosticSettingsResource actualResponse = insightsClient.ServiceDiagnosticSettings.Get(resourceUri: ResourceUri); + AreEqual(expResponse, actualResponse); + } + + private static ServiceDiagnosticSettingsResource CreateDiagnosticSettingsParams() + { + return new ServiceDiagnosticSettingsResource + { + StorageAccountId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.storage/storageaccounts/sa1", + ServiceBusRuleId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.servicebus/namespaces/ns1/authorizationRules/authrule", + WorkspaceId = "wsId", + Logs = new List + { + new LogSettings + { + RetentionPolicy = new RetentionPolicy + { + Days = 90, + Enabled = true + } + } + }, + Metrics = new List + { + new MetricSettings + { + Enabled = true, + RetentionPolicy = new RetentionPolicy + { + Enabled = true, + Days = 90 + }, + TimeGrain = TimeSpan.FromMinutes(1) + } + }, + Location = "" + }; + } + + private static ServiceDiagnosticSettingsResource CreateDiagnosticSettings() + { + return new ServiceDiagnosticSettingsResource + { + StorageAccountId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.storage/storageaccounts/sa1", + ServiceBusRuleId = "/subscriptions/4d7e91d4-e930-4bb5-a93d-163aa358e0dc/resourceGroups/Default-Web-westus/providers/microsoft.servicebus/namespaces/ns1/authorizationRules/authrule", + WorkspaceId = "wsId", + Logs = new List + { + new LogSettings + { + RetentionPolicy = new RetentionPolicy + { + Days = 90, + Enabled = true + } + } + }, + Metrics = new List + { + new MetricSettings + { + Enabled = true, + RetentionPolicy = new RetentionPolicy + { + Enabled = true, + Days = 90 + }, + TimeGrain = TimeSpan.FromMinutes(1) + } + } + }; + } + + private static void AreEqual(ServiceDiagnosticSettingsResource exp, ServiceDiagnosticSettingsResource act) + { + if (exp == act) + { + return; + } + + if (exp == null) + { + Assert.Equal(null, act); + } + + Assert.False(act == null, "Actual value can't be null"); + + CompareLists(exp.Logs, act.Logs); + CompareLists(exp.Metrics, act.Metrics); + + Assert.Equal(exp.StorageAccountId, act.StorageAccountId); + Assert.Equal(exp.WorkspaceId, act.WorkspaceId); + Assert.Equal(exp.ServiceBusRuleId, act.ServiceBusRuleId); + } + + private static void Compare(T exp, T act) + { + Type t = typeof(T); + if (t == typeof(LogSettings)) + { + Compare(exp as LogSettings, act as LogSettings); + } + else if (t == typeof(LogSettings)) + { + Compare(exp as MetricSettings, act as MetricSettings); + } + } + + private static void Compare(LogSettings exp, LogSettings act) + { + Assert.Equal(exp.Enabled, act.Enabled); + Assert.Equal(exp.Category, act.Category); + Compare(exp.RetentionPolicy, act.RetentionPolicy); + } + + private static void Compare(RetentionPolicy exp, RetentionPolicy act) + { + Assert.Equal(exp.Enabled, act.Enabled); + Assert.Equal(exp.Days, act.Days); + } + + private static void CompareLists(IList exp, IList act) + { + if (exp == act) + { + return; + } + + if (exp == null) + { + Assert.Equal(null, act); + } + + Assert.False(act == null, "Actual value can't be null"); + + for (int i = 0; i < exp.Count; i++) + { + if (i >= act.Count) + { + Assert.Equal(exp.Count, act.Count); + } + + T cat1 = exp[i]; + T cat2 = act[i]; + Compare(cat1, cat2); + } + + Assert.Equal(exp.Count, act.Count); + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/TestBaseTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/TestBaseTests.cs new file mode 100644 index 000000000000..f5287a968569 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/TestBaseTests.cs @@ -0,0 +1,97 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using Monitor.Tests.Helpers; +using Microsoft.Azure.Monitor; +using Microsoft.Azure.Monitor.Models; +using Microsoft.Azure.Management.Monitor; +using Microsoft.Rest; +using Xunit; + +namespace Monitor.Tests.BasicTests +{ + public class TestBase + { + protected MonitorClient GetMonitorClient(RecordedDelegatingHandler handler) + { + handler.IsPassThrough = false; + var tokenProvider = new StringTokenProvider("granted", "SimpleString"); + var id = Guid.NewGuid().ToString(); + var token = new TokenCredentials(tokenProvider: tokenProvider, tenantId: id, callerId: id); + var client = new MonitorClient(token, handler); + token.InitializeServiceClient(client); + client.SubscriptionId = id; + + return client; + } + + protected MonitorManagementClient GetMonitorManagementClient(RecordedDelegatingHandler handler) + { + handler.IsPassThrough = false; + var tokenProvider = new StringTokenProvider("granted", "SimpleString"); + var id = Guid.NewGuid().ToString(); + var token = new TokenCredentials(tokenProvider: tokenProvider, tenantId: id, callerId: id); + var client = new MonitorManagementClient(token, handler); + token.InitializeServiceClient(client); + client.SubscriptionId = id; + + return client; + } + + protected static void AreEqual(IList exp, IList act) + { + if (exp != null) + { + for (int i = 0; i < exp.Count; i++) + { + Assert.Equal(exp[i], act[i]); + } + } + } + + protected static void AreEqual(IList exp, IList act) + { + if (exp != null) + { + for (int i = 0; i < exp.Count; i++) + { + Assert.Equal(exp[i].LocalizedValue, act[i].LocalizedValue); + Assert.Equal(exp[i].Value, act[i].Value); + } + } + } + + protected static void AreEqual(IList exp, IList act) + { + if (exp != null) + { + for (int i = 0; i < exp.Count; i++) + { + Assert.Equal(exp[i], act[i]); + } + } + } + + protected static void AreEqual(LocalizableString exp, LocalizableString act) + { + if (exp != null) + { + Assert.Equal(exp.LocalizedValue, act.LocalizedValue); + Assert.Equal(exp.Value, act.Value); + } + } + + protected static void AreEqual(IDictionary exp, IDictionary act) + { + if (exp != null) + { + foreach (var key in exp.Keys) + { + Assert.Equal(exp[key], act[key]); + } + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/UsagesTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/UsagesTests.cs new file mode 100644 index 000000000000..ba02443d5f42 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/UsagesTests.cs @@ -0,0 +1,96 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Net; +using System.Net.Http; +using Monitor.Tests.Helpers; +using Microsoft.Azure.Monitor; +using Microsoft.Azure.Monitor.Models; +using Xunit; +using Newtonsoft.Json; + +namespace Monitor.Tests.BasicTests +{ + public class UsagesTests : TestBase + { + [Fact] + public void ListUsageTest() + { + string resourceUri = "/subscriptions/123456789/resourceGroups/rg/providers/rp/rUri"; + List expectedUsageMetricCollection = GetUsageMetricCollection(resourceUri); + + var handler = new RecordedDelegatingHandler(); + var insightsClient = GetMonitorClient(handler); + var serializedObject = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(expectedUsageMetricCollection, insightsClient.SerializationSettings); + + var response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(string.Concat("{ \"value\":", serializedObject, "}")) + }; + + handler = new RecordedDelegatingHandler(response) { StatusCodeToReturn = HttpStatusCode.OK }; + insightsClient = GetMonitorClient(handler); + + string filterString = "name.value eq 'CPUTime' or name.value eq 'Requests'"; + IEnumerable actualRespose = insightsClient.UsageMetrics.List(resourceUri: resourceUri, apiVersion: "2014-04-01", odataQuery: filterString); + + AreEqual(expectedUsageMetricCollection, actualRespose.GetEnumerator()); + } + + private static List GetUsageMetricCollection(string resourceUri) + { + return new List() + { + new UsageMetric( + id: "The id", + currentValue: 10.1, + limit: 100.2, + name: new LocalizableString( + localizedValue: "Cpu Percentage", + value: "CpuPercentage"), + nextResetTime: DateTime.UtcNow.AddDays(1), + quotaPeriod: TimeSpan.FromDays(1), + unit: Unit.Percent.ToString() + ) + }; + } + + private static void AreEqual(List exp, IEnumerator act) + { + if (exp != null) + { + List actList = new List(); + while (act.MoveNext()) + { + actList.Add(act.Current); + } + + Assert.Equal(exp.Count, actList.Count); + + for (int i = 0; i < exp.Count; i++) + { + AreEqual(exp[i], actList[i]); + } + } + else + { + Assert.Null(act); + } + } + + private static void AreEqual(UsageMetric exp, UsageMetric act) + { + if (exp != null) + { + Assert.Equal(exp.CurrentValue, act.CurrentValue); + Assert.Equal(exp.Limit, act.Limit); + Assert.Equal(exp.NextResetTime, act.NextResetTime); + Assert.Equal(exp.QuotaPeriod, act.QuotaPeriod); + Assert.Equal(exp.Unit, act.Unit); + AreEqual(exp.Name, act.Name); + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/JsonExtensions.cs b/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/JsonExtensions.cs new file mode 100644 index 000000000000..4860590638a4 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/JsonExtensions.cs @@ -0,0 +1,192 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Reflection; +using System.Xml; +using Microsoft.Azure.Management.Monitor.Models; +using Newtonsoft.Json; +using Newtonsoft.Json.Converters; +using Newtonsoft.Json.Linq; +using Newtonsoft.Json.Serialization; + +namespace Monitor.Tests.Helpers +{ + public static class JsonExtensions + { + /// + /// The JSON serialization settings + /// + public static readonly JsonSerializerSettings Settings = new JsonSerializerSettings + { + Converters = new List + { + new TimeSpanConverter(), + new StringEnumConverter {CamelCaseText = false}, + new IsoDateTimeConverter {DateTimeStyles = DateTimeStyles.AssumeUniversal}, + new PolymorphicTypeConverter(), + new PolymorphicTypeConverter(), + new PolymorphicTypeConverter() + }, + ContractResolver = new CamelCasePropertyNamesContractResolver() + }; + + /// + /// Serialize object to the JSON. + /// + /// The object. + /// JSON representation of object + public static string ToJson(this object obj) + { + return JsonConvert.SerializeObject(obj, JsonExtensions.Settings); + } + + /// + /// Deserialize object from the JSON. + /// + /// Type of object + /// JSON representation of object + /// Deserialized object + public static T FromJson(this string json) + { + return JsonConvert.DeserializeObject(json, JsonExtensions.Settings); + } + + /// + /// TimeSpanConverter based on ISO 8601 format + /// + private class TimeSpanConverter : JsonConverter + { + /// + /// Writes the json. + /// + /// The writer. + /// The value. + /// The serializer. + public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) + { + serializer.Serialize(writer, XmlConvert.ToString((TimeSpan)value)); + } + + /// + /// Reads the json. + /// + /// The reader. + /// Type of the object. + /// The existing value. + /// The serializer. + /// Deserialized object + public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) + { + if (reader.TokenType == JsonToken.Null) + { + return null; + } + + string timeSpanString = serializer.Deserialize(reader); + TimeSpan timeSpan; + if (TimeSpan.TryParse(timeSpanString, out timeSpan)) + { + return timeSpan; + } + + return XmlConvert.ToTimeSpan(timeSpanString); + } + + /// + /// Determines whether this instance can convert the specified object type. + /// + /// Type of the object. + /// + /// true if this instance can convert the specified object type; otherwise, false. + /// + public override bool CanConvert(Type objectType) + { + return objectType == typeof(TimeSpan) || objectType == typeof(TimeSpan?); + } + } + + public class PolymorphicTypeConverter : CustomCreationConverter + { + public const string ClientNamespace = "Microsoft.Azure.Management.Monitor.Models"; + + private readonly string[] namespaceMappings; + + /// + /// Initializes a new instance of the PolymorphicTypeConverter class. + /// + /// The optional list of namespacing mappings that should convert to this type. + public PolymorphicTypeConverter(string[] namespaceMappings = null) + { + this.namespaceMappings = namespaceMappings ?? new []{ ClientNamespace }; + } + + /// + /// Convert the JSON to object. + /// + /// Json reader. + /// Object type. + /// Existing value. + /// Json serializer. + /// Created object. + public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) + { + // Load JObject from stream + JObject jsonObject = JObject.Load(reader); + JToken type = jsonObject["odata.type"] ?? jsonObject["$type"]; + if (type != null) + { + string incomingTypeString = this.GetTypeString(type); + + // This assumes that the concrete classes are in the same assembly as the parent class (we can optimize this later by caching the possible types in the constructor + // If the type from the user is invalid, null object will be created which will be detected by the Create method + return base.ReadJson(jsonObject.CreateReader(), typeof(T).GetTypeInfo().Assembly.GetType(incomingTypeString), existingValue, serializer); + } + + return null; + } + + /// + /// Create the object. + /// + /// The object type. + /// The created object. + public override T Create(Type objectType) + { + // Check if the object extends T, if objectType is null, the call will return false + if (typeof(T).IsAssignableFrom(objectType)) + { + return (T)Activator.CreateInstance(objectType); + } + + return default(T); + } + + private string GetTypeString(JToken type) + { + string typeString = type.Value(); + + if (this.namespaceMappings != null) + { + foreach (string namespaceMapping in this.namespaceMappings) + { + if (typeString.StartsWith(namespaceMapping, StringComparison.OrdinalIgnoreCase)) + { + // Use the namespace from typeof(T) and the class name from typeString + int lastIndex = typeString.LastIndexOf('.'); + if (lastIndex >= 0) + { + typeString = typeof(T).Namespace + typeString.Substring(lastIndex); + break; + } + } + } + } + + return typeString; + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/RecordedDelegatingHandler.cs b/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/RecordedDelegatingHandler.cs new file mode 100644 index 000000000000..5b7f3e9b162e --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/RecordedDelegatingHandler.cs @@ -0,0 +1,90 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Net; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading.Tasks; + +namespace Monitor.Tests.Helpers +{ + public class RecordedDelegatingHandler : DelegatingHandler + { + private HttpResponseMessage _response; + + public RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + } + + public RecordedDelegatingHandler(HttpResponseMessage response) + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + _response = response; + } + + public HttpStatusCode StatusCodeToReturn { get; set; } + + public HttpStatusCode SubsequentStatusCodeToReturn { get; set; } + + public string Request { get; private set; } + + public HttpRequestHeaders RequestHeaders { get; private set; } + + public HttpContentHeaders ContentHeaders { get; private set; } + + public HttpMethod Method { get; private set; } + + public Uri Uri { get; private set; } + + public bool IsPassThrough { get; set; } + + private int counter; + + protected override async Task SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) + { + counter++; + // Save request + if (request.Content == null) + { + Request = string.Empty; + } + else + { + Request = await request.Content.ReadAsStringAsync(); + } + RequestHeaders = request.Headers; + if (request.Content != null) + { + ContentHeaders = request.Content.Headers; + } + Method = request.Method; + Uri = request.RequestUri; + + // Prepare response + if (IsPassThrough) + { + return await base.SendAsync(request, cancellationToken); + } + else + { + if (_response != null && counter == 1) + { + return _response; + } + else + { + var statusCode = StatusCodeToReturn; + if (counter > 1) + statusCode = SubsequentStatusCodeToReturn; + HttpResponseMessage response = new HttpResponseMessage(statusCode); + response.Content = new StringContent(""); + return response; + } + } + } + } +} diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/Monitor.Tests.xproj b/src/ResourceManagement/Monitor/Monitor.Tests/Monitor.Tests.xproj new file mode 100644 index 000000000000..fc46a7fcfc08 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/Monitor.Tests.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 2684f7eb-16b8-487e-a0ab-f4b3091c9197 + Monitor.Tests + .\obj + .\bin\ + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/Properties/AssemblyInfo.cs b/src/ResourceManagement/Monitor/Monitor.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..e8726da59bfd --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Monitoring.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("MSIT")] +[assembly: AssemblyProduct("Monitoring.Tests")] +[assembly: AssemblyCopyright("Copyright © MSIT 2013")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("1445b75d-caff-454d-b7b8-8c750db40299")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/project.json b/src/ResourceManagement/Monitor/Monitor.Tests/project.json new file mode 100644 index 000000000000..01606b813896 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.Tests/project.json @@ -0,0 +1,41 @@ +{ + "version": "1.0.0-*", + "description": "Monitor.Tests Class library", + "authors": [ "Microsoft" ], + + "packOptions": { + "summary": "Monitor.Tests Tests", + "projectUrl": "", + "licenseUrl": "", + "tags": [ "" ] + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "compile": "../../../../tools/DisableTestRunParallel.cs" + }, + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "imports": [ "dnxcore50", "portable-net45+win8" ], + "dependencies": { + "System.Diagnostics.Tracing": "4.1.0" + } + } + }, + + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029", + "Microsoft.Azure.Monitor": "0.15.0-preview" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Monitor/Monitor.sln b/src/ResourceManagement/Monitor/Monitor.sln new file mode 100644 index 000000000000..2a8d74819b05 --- /dev/null +++ b/src/ResourceManagement/Monitor/Monitor.sln @@ -0,0 +1,118 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Monitor.Tests", "Monitor.Tests\Monitor.Tests.xproj", "{2684F7EB-16B8-487E-A0AB-F4B3091C9197}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\..\TestFramework\Microsoft.Azure.Test.HttpRecorder\HttpRecorder.xproj", "{5D12D45A-E55F-410E-B8AF-9DC90E81B237}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Monitor", "Microsoft.Azure.Monitor\Microsoft.Azure.Monitor.xproj", "{8989ED12-B754-4EBD-BC97-EFA7B11FFD49}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime\Microsoft.Rest.ClientRuntime.xproj", "{EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure\Microsoft.Rest.ClientRuntime.Azure.xproj", "{D5296EAB-C13E-4A88-9532-BD0677D18EC9}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure.Authentication", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure.Authentication\Microsoft.Rest.ClientRuntime.Azure.Authentication.xproj", "{6319205D-BBFC-4150-BEAE-31B1C9B911DD}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Net45-Debug|Any CPU = Net45-Debug|Any CPU + Net45-Release|Any CPU = Net45-Release|Any CPU + Portable-Debug|Any CPU = Portable-Debug|Any CPU + Portable-Release|Any CPU = Portable-Release|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Net45-Release|Any CPU.ActiveCfg = Debug|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Net45-Release|Any CPU.Build.0 = Debug|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Portable-Debug|Any CPU.ActiveCfg = Release|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Portable-Debug|Any CPU.Build.0 = Release|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Release|Any CPU.Build.0 = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Net45-Release|Any CPU.Build.0 = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.Build.0 = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Net45-Release|Any CPU.Build.0 = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Net45-Release|Any CPU.Build.0 = Release|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Release|Any CPU.Build.0 = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Net45-Release|Any CPU.Build.0 = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Release|Any CPU.Build.0 = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Net45-Release|Any CPU.Build.0 = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.Build.0 = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Net45-Release|Any CPU.Build.0 = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/ResourceManagement/Monitor/NuGet.Config b/src/ResourceManagement/Monitor/NuGet.Config new file mode 100644 index 000000000000..ffd4ee71e642 --- /dev/null +++ b/src/ResourceManagement/Monitor/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/ResourceManagement/Monitor/global.json b/src/ResourceManagement/Monitor/global.json new file mode 100644 index 000000000000..ad853eebe37b --- /dev/null +++ b/src/ResourceManagement/Monitor/global.json @@ -0,0 +1,3 @@ +{ + "projects": [ "Microsoft.Azure.Monitor", "Monitor.Tests"] +} From 2c1e03327c2a81cd517a9375e3176f8aa67350b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= Date: Thu, 16 Feb 2017 10:18:35 -0800 Subject: [PATCH 017/137] Using code generated from monitor and arm-monitor (already merged) --- .../Monitor/AlertRuleIncidentsOperations.cs | 2 +- .../AlertRuleIncidentsOperationsExtensions.cs | 2 +- .../Monitor/AlertRulesOperations.cs | 2 +- .../Monitor/AlertRulesOperationsExtensions.cs | 2 +- .../Monitor/AutoscaleSettingsOperations.cs | 2 +- .../AutoscaleSettingsOperationsExtensions.cs | 2 +- .../Monitor/IAlertRuleIncidentsOperations.cs | 2 +- .../Monitor/IAlertRulesOperations.cs | 2 +- .../Monitor/IAutoscaleSettingsOperations.cs | 2 +- .../Monitor/ILogProfilesOperations.cs | 2 +- .../Monitor/IMonitorManagementClient.cs | 2 +- .../IServiceDiagnosticSettingsOperations.cs | 2 +- .../Monitor/LogProfilesOperations.cs | 2 +- .../LogProfilesOperationsExtensions.cs | 2 +- .../Monitor/Models/AlertRuleResource.cs | 2 +- .../Monitor/Models/AutoscaleNotification.cs | 2 +- .../Monitor/Models/AutoscaleProfile.cs | 2 +- .../Models/AutoscaleSettingResource.cs | 2 +- .../Monitor/Models/ComparisonOperationType.cs | 2 +- .../Monitor/Models/ConditionOperator.cs | 2 +- .../Monitor/Models/EmailNotification.cs | 2 +- .../Management/Monitor/Models/Incident.cs | 2 +- .../Models/LocationThresholdRuleCondition.cs | 4 ++-- .../Monitor/Models/LogProfileResource.cs | 2 +- .../Management/Monitor/Models/LogSettings.cs | 2 +- .../ManagementEventAggregationCondition.cs | 2 +- .../Models/ManagementEventRuleCondition.cs | 4 ++-- .../Monitor/Models/MetricSettings.cs | 2 +- .../Monitor/Models/MetricStatisticType.cs | 2 +- .../Monitor/Models/MetricTrigger.cs | 2 +- .../Management/Monitor/Models/Page.cs | 2 +- .../Management/Monitor/Models/Page1.cs | 2 +- .../Management/Monitor/Models/Recurrence.cs | 2 +- .../Monitor/Models/RecurrenceFrequency.cs | 2 +- .../Monitor/Models/RecurrentSchedule.cs | 2 +- .../Management/Monitor/Models/Resource.cs | 2 +- .../Monitor/Models/RetentionPolicy.cs | 2 +- .../Management/Monitor/Models/RuleAction.cs | 2 +- .../Monitor/Models/RuleCondition.cs | 2 +- .../Monitor/Models/RuleDataSource.cs | 2 +- .../Monitor/Models/RuleEmailAction.cs | 4 ++-- .../RuleManagementEventClaimsDataSource.cs | 2 +- .../Models/RuleManagementEventDataSource.cs | 4 ++-- .../Monitor/Models/RuleMetricDataSource.cs | 4 ++-- .../Monitor/Models/RuleWebhookAction.cs | 4 ++-- .../Management/Monitor/Models/ScaleAction.cs | 2 +- .../Monitor/Models/ScaleCapacity.cs | 2 +- .../Monitor/Models/ScaleDirection.cs | 2 +- .../Management/Monitor/Models/ScaleRule.cs | 2 +- .../Management/Monitor/Models/ScaleType.cs | 2 +- .../ServiceDiagnosticSettingsResource.cs | 2 +- .../Monitor/Models/ThresholdRuleCondition.cs | 4 ++-- .../Monitor/Models/TimeAggregationOperator.cs | 2 +- .../Monitor/Models/TimeAggregationType.cs | 2 +- .../Management/Monitor/Models/TimeWindow.cs | 2 +- .../Monitor/Models/WebhookNotification.cs | 2 +- .../Monitor/MonitorManagementClient.cs | 2 +- .../ServiceDiagnosticSettingsOperations.cs | 12 +---------- ...eDiagnosticSettingsOperationsExtensions.cs | 2 +- .../Monitor/ActivityLogsOperations.cs | 2 +- .../ActivityLogsOperationsExtensions.cs | 2 +- .../Monitor/EventCategoriesOperations.cs | 2 +- .../EventCategoriesOperationsExtensions.cs | 2 +- .../Monitor/IActivityLogsOperations.cs | 2 +- .../Monitor/IEventCategoriesOperations.cs | 2 +- .../Monitor/IMetricDefinitionsOperations.cs | 2 +- .../Generated/Monitor/IMetricsOperations.cs | 2 +- .../Generated/Monitor/IMonitorClient.cs | 2 +- .../Monitor/ITenantActivityLogsOperations.cs | 2 +- .../Monitor/IUsageMetricsOperations.cs | 2 +- .../Monitor/MetricDefinitionsOperations.cs | 2 +- .../MetricDefinitionsOperationsExtensions.cs | 2 +- .../Generated/Monitor/MetricsOperations.cs | 2 +- .../Monitor/MetricsOperationsExtensions.cs | 2 +- .../Monitor/Models/AggregationType.cs | 2 +- .../Generated/Monitor/Models/EventData.cs | 2 +- .../Generated/Monitor/Models/EventLevel.cs | 2 +- .../Monitor/Models/HttpRequestInfo.cs | 2 +- .../Monitor/Models/LocalizableString.cs | 2 +- .../Generated/Monitor/Models/Metric.cs | 21 +++++++++++++++++-- .../Monitor/Models/MetricAvailability.cs | 2 +- .../Monitor/Models/MetricDefinition.cs | 2 +- .../Generated/Monitor/Models/MetricValue.cs | 2 +- .../Generated/Monitor/Models/Page.cs | 2 +- .../Generated/Monitor/Models/Page1.cs | 2 +- .../Monitor/Models/SenderAuthorization.cs | 2 +- .../Generated/Monitor/Models/Unit.cs | 2 +- .../Generated/Monitor/Models/UsageMetric.cs | 2 +- .../Generated/Monitor/MonitorClient.cs | 2 +- .../Monitor/TenantActivityLogsOperations.cs | 2 +- .../TenantActivityLogsOperationsExtensions.cs | 2 +- .../Monitor/UsageMetricsOperations.cs | 2 +- .../UsageMetricsOperationsExtensions.cs | 2 +- .../Microsoft.Azure.Monitor/generate.cmd | 8 +++---- .../Monitor.Tests/BasicTests/AlertsTests.cs | 4 ++-- .../BasicTests/AutoscaleTests.cs | 4 ++-- .../BasicTests/EventDataTests.cs | 4 ++-- .../BasicTests/LogProfilesTests.cs | 4 ++-- .../Monitor.Tests/BasicTests/MetricsTests.cs | 4 ++-- .../ServiceDiagnosticSettingsTests.cs | 4 ++-- .../Monitor.Tests/BasicTests/TestBaseTests.cs | 6 +++--- .../Monitor.Tests/BasicTests/UsagesTests.cs | 4 ++-- .../Monitor.Tests/Helpers/JsonExtensions.cs | 4 ++-- 103 files changed, 141 insertions(+), 134 deletions(-) diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs index a63388df2131..ceb1aac57c01 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs index 28985a393b35..b53f11593eea 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs index 0b0810fd368e..56389c32ce87 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs index 789ec96fb732..363e35b947e8 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs index e3832994e930..81051350647b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs index 6d04b53e28a4..2b6bb599cab2 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs index afa8a9a27cc3..258f36fc2307 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs index 2743782850d4..daa38172b621 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs index bf63b945e959..6806f73655cc 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs index 7c29513a7d37..92d006d4d42b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs index ae10881bfd6b..21825a24882c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using Microsoft.Rest; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs index 83ba8af739a4..864608358b26 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs index a35b918a14ab..ae547b19fb2d 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs index 8c28aac7819e..0582e546bb47 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs index 3fb1f9a577ff..b2f354a862e5 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs index 429ceaaee534..63d0e1754530 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs index c0630fecdb47..d84a0f6358d1 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs index 49abc19505f3..8b8be9eb35e0 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs index 7e8f008f77ac..3506b4f380a5 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs index 4cbf188dc3b7..9c6ca37a10f6 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs index 3dc3debc80b3..a8fa1f179313 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs index f5265dc413c3..eefbe85edb73 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs index 4ef77a17dbaf..9d55a40f575c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs @@ -6,14 +6,14 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; /// /// A rule condition based on a certain number of locations failing. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.LocationThresholdRuleCondition")] + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.LocationThresholdRuleCondition")] public partial class LocationThresholdRuleCondition : RuleCondition { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs index 407a81934811..0ebeb90cb615 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs index bc3aabca8ca4..38e10d17dc59 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs index f7d9adca503d..1708cdc91ac5 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs index bd876c36bb86..1b21c7b6001f 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs @@ -6,14 +6,14 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; /// /// A management event rule condition. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.ManagementEventRuleCondition")] + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.ManagementEventRuleCondition")] public partial class ManagementEventRuleCondition : RuleCondition { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs index 9e4a27950755..b52b101be9ba 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs index 01450b9f3d4d..5baf73f84408 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs index d7b2c3ae7f9a..db22ded56f7a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs index 69c4c496e56d..d517340cdb2a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs index 28a3519f753d..69676959c407 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs index edc855290964..51c2b1dc84f8 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs index 84ce4f31fe64..81137fd8db6a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs index f65146399687..4f90a5a2b31f 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs index d88f372468a9..1844e6ddbda3 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs index e2ac102af6c4..cc010ea24097 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs index cc2906ee8607..34e5df7ea29d 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs index 35ae6fa4a972..fd25240b7bab 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs index b267fdde56b8..3ff121627a2a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs index 7fd91a30a6eb..618f41b22a95 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Monitor.Models /// Specifies the action to send email when the rule condition is /// evaluated. The discriminator is always RuleEmailAction in this case. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.RuleEmailAction")] + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleEmailAction")] public partial class RuleEmailAction : RuleAction { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs index 8d98ca69adaf..7e2acff3deb6 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs index 848374b55a30..2f4cab87a8be 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Monitor.Models /// A rule management event data source. The discriminator fields is always /// RuleManagementEventDataSource in this case. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.RuleManagementEventDataSource")] + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleManagementEventDataSource")] public partial class RuleManagementEventDataSource : RuleDataSource { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs index ee06756d0dba..76ced5891bf5 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Monitor.Models /// A rule metric data source. The discriminator value is always /// RuleMetricDataSource in this case. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.RuleMetricDataSource")] + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource")] public partial class RuleMetricDataSource : RuleDataSource { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs index a2b99e51d316..f781bdef0b04 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Monitor.Models /// Specifies the action to post to service when the rule condition is /// evaluated. The discriminator is always RuleWebhookAction in this case. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.RuleWebhookAction")] + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleWebhookAction")] public partial class RuleWebhookAction : RuleAction { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs index 3e7bd688daa7..e7894a6c3d86 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs index 3846c71cdfe1..95b5dbce0dbe 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs index b2738ce2bd16..9973ffedc81f 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs index 80072773e03a..e495486a0a97 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs index 445f5d0ff670..f890f163e600 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs index 372ccd38a57e..f69b4b8391e4 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs index e42c1aa06b39..fcb1be4f4d06 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs @@ -6,14 +6,14 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; /// /// A rule condition based on a metric crossing a threshold. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Monitor.Models.ThresholdRuleCondition")] + [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition")] public partial class ThresholdRuleCondition : RuleCondition { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs index d563a04cee10..4b09fee4ab69 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs index f6cd123ab4ed..25d280cab005 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs index 1466f0c69f1b..900dd61616f2 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs index e21afb3b78b9..f05ac63ec22b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor.Models +namespace Microsoft.Azure.Management.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs index 1650727616e1..5c081a38d66b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs index 704a3827ba58..9cd0387dc6d5 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Linq; using Microsoft.Rest; @@ -71,10 +71,6 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) { throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); } - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2015-07-01"; // Tracing bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; @@ -92,7 +88,6 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) var _baseUrl = this.Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/diagnosticSettings/service").ToString(); _url = _url.Replace("{resourceUri}", System.Uri.EscapeDataString(resourceUri)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { @@ -262,10 +257,6 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) { parameters.Validate(); } - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } string apiVersion = "2015-07-01"; // Tracing bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; @@ -284,7 +275,6 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) var _baseUrl = this.Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/diagnosticSettings/service").ToString(); _url = _url.Replace("{resourceUri}", System.Uri.EscapeDataString(resourceUri)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); if (apiVersion != null) { diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs index 8edc7829de3e..aa8b53d811cc 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Management.Monitor +namespace Microsoft.Azure.Management.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs index c96f5892f246..6d189bb64ba0 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs index f391a5ea31aa..0b29165df177 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs index 9d9b65bac136..a819aca0050c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs index 0b33471de77e..35167a713c31 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs index c4c236c61c18..9c525b6d9337 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs index caaa8eb71232..0d1e7f6c1a55 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs index 7a7bd234883f..257c9edc38b3 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs index 02e437baae10..35b0816b904e 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs index f33cc532e0b8..addfaddcdb12 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using Microsoft.Rest; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs index cf7ae81a092e..1dfb34d328b2 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs index 80acedaab2c8..7de1d078bbde 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using Microsoft.Rest.Azure; using Models; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs index 7f598b1f0c72..52feec5721cf 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs index 756ee99295a8..a15ff262a5c8 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs index 72802b83c315..699548d6231b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs index a27c756589f5..eb23313bd0ca 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs index 89baa1637e02..af98affd34d9 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs index 6a99aa4f7821..850d6c323b45 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs index 21acfeb0e81e..de80b1b60efc 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs index d6185239272c..52405fc6a672 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs index be4a11ab35fb..0473a143203e 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs index e5743f872266..6130c17abe11 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; @@ -30,13 +30,30 @@ public Metric() { } /// 'Percent', 'MilliSeconds' /// Array of data points representing the metric /// values. - public Metric(LocalizableString name, Unit unit, System.Collections.Generic.IList data) + /// the id, resourceId, of the metric. + /// the resource type of the metric + /// resource. + public Metric(LocalizableString name, Unit unit, System.Collections.Generic.IList data, string id = default(string), string type = default(string)) { + Id = id; + Type = type; Name = name; Unit = unit; Data = data; } + /// + /// Gets or sets the id, resourceId, of the metric. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the resource type of the metric resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type { get; set; } + /// /// Gets or sets the name and the display name of the metric, i.e. it /// is localizable string. diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs index c9c92e57c537..a358beacfec8 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs index 6b8124ffa93f..72c618568142 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs index 6d471dcea245..ed93e020c462 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs index 65cf5d45d3d9..92e2a6b0a157 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs index ebbf9474324c..48ed67f34acd 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs index fc16477d54c8..252f03e03705 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs index 285ace3114c1..ddc1f81c334a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { /// diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs index 458268d5324f..8192c4e83b27 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor.Models +namespace Microsoft.Azure.Insights.Models { using System.Linq; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs index c9dee3ec8bf6..e5b00c6b38af 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs index 24b14b8ee513..7254a792c2d8 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs index 5e30a64da51d..dd4231172d7b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs index b5200831caae..84427c5b86e6 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Linq; using Microsoft.Rest; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs index 471dc2b105bf..e7b1921b2a4c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs @@ -6,7 +6,7 @@ // Changes may cause incorrect behavior and will be lost if the code is // regenerated. -namespace Microsoft.Azure.Monitor +namespace Microsoft.Azure.Insights { using System.Threading.Tasks; using Microsoft.Rest.Azure; diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd index b5020da84e66..72957ab82406 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd @@ -7,7 +7,7 @@ @echo off set autoRestVersion=1.0.0-Nightly20161116 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/1f823636981e779b6d4155aa18d042146e1270fb/monitor/compositeMonitorClient.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/efed63280648eebdec8be513470cd6c23783efb6/monitor/compositeMonitorClient.json" ) else ( set specFile="%1" ) @@ -15,10 +15,10 @@ set repoRoot=%~dp0..\..\..\.. set generateFolder=%~dp0Generated\Monitor if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Monitor %autoRestVersion% %generateFolder% "-FT 1" +call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Insights %autoRestVersion% %generateFolder% "-FT 1" if "%2" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/1f823636981e779b6d4155aa18d042146e1270fb/arm-monitor/compositeMonitorManagementClient.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/efed63280648eebdec8be513470cd6c23783efb6/arm-monitor/compositeMonitorManagementClient.json" ) else ( set specFile="%2" ) @@ -26,5 +26,5 @@ if "%2" == "" ( set generateFolder=%~dp0Generated\Management\Monitor if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.Monitor %autoRestVersion% %generateFolder% "-FT 1" +call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.Insights %autoRestVersion% %generateFolder% "-FT 1" \ No newline at end of file diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AlertsTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AlertsTests.cs index 5d48b069439e..0aeb3880dd5a 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AlertsTests.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AlertsTests.cs @@ -7,8 +7,8 @@ using System.Net; using System.Net.Http; using Monitor.Tests.Helpers; -using Microsoft.Azure.Management.Monitor; -using Microsoft.Azure.Management.Monitor.Models; +using Microsoft.Azure.Management.Insights; +using Microsoft.Azure.Management.Insights.Models; using Xunit; namespace Monitor.Tests.BasicTests diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AutoscaleTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AutoscaleTests.cs index 2e2cd074dda5..954ee55b84bf 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AutoscaleTests.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/AutoscaleTests.cs @@ -6,8 +6,8 @@ using System.Net; using System.Net.Http; using Monitor.Tests.Helpers; -using Microsoft.Azure.Management.Monitor; -using Microsoft.Azure.Management.Monitor.Models; +using Microsoft.Azure.Management.Insights; +using Microsoft.Azure.Management.Insights.Models; using Xunit; namespace Monitor.Tests.BasicTests diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/EventDataTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/EventDataTests.cs index a41c438fd05b..cb5368ecca89 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/EventDataTests.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/EventDataTests.cs @@ -7,8 +7,8 @@ using System.Net; using System.Net.Http; using Monitor.Tests.Helpers; -using Microsoft.Azure.Monitor; -using Microsoft.Azure.Monitor.Models; +using Microsoft.Azure.Insights; +using Microsoft.Azure.Insights.Models; using Microsoft.Rest.Azure.OData; using Xunit; diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/LogProfilesTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/LogProfilesTests.cs index 4386e7cde241..aa546d77759d 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/LogProfilesTests.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/LogProfilesTests.cs @@ -6,8 +6,8 @@ using System.Net; using System.Net.Http; using Monitor.Tests.Helpers; -using Microsoft.Azure.Management.Monitor; -using Microsoft.Azure.Management.Monitor.Models; +using Microsoft.Azure.Management.Insights; +using Microsoft.Azure.Management.Insights.Models; using Xunit; namespace Monitor.Tests.BasicTests diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/MetricsTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/MetricsTests.cs index f368d7c57593..1a8310342e66 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/MetricsTests.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/MetricsTests.cs @@ -8,8 +8,8 @@ using System.Net.Http; using System.Threading; using Monitor.Tests.Helpers; -using Microsoft.Azure.Monitor; -using Microsoft.Azure.Monitor.Models; +using Microsoft.Azure.Insights; +using Microsoft.Azure.Insights.Models; using Xunit; namespace Monitor.Tests.BasicTests diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs index b8353b47b9fd..2ae62f2fb518 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/ServiceDiagnosticSettingsTests.cs @@ -6,8 +6,8 @@ using System.Net; using System.Net.Http; using Monitor.Tests.Helpers; -using Microsoft.Azure.Management.Monitor; -using Microsoft.Azure.Management.Monitor.Models; +using Microsoft.Azure.Management.Insights; +using Microsoft.Azure.Management.Insights.Models; using Xunit; namespace Monitor.Tests.BasicTests diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/TestBaseTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/TestBaseTests.cs index f5287a968569..8370fd47baaa 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/TestBaseTests.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/TestBaseTests.cs @@ -4,9 +4,9 @@ using System; using System.Collections.Generic; using Monitor.Tests.Helpers; -using Microsoft.Azure.Monitor; -using Microsoft.Azure.Monitor.Models; -using Microsoft.Azure.Management.Monitor; +using Microsoft.Azure.Insights; +using Microsoft.Azure.Insights.Models; +using Microsoft.Azure.Management.Insights; using Microsoft.Rest; using Xunit; diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/UsagesTests.cs b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/UsagesTests.cs index ba02443d5f42..e9987f1f539f 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/UsagesTests.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/BasicTests/UsagesTests.cs @@ -6,8 +6,8 @@ using System.Net; using System.Net.Http; using Monitor.Tests.Helpers; -using Microsoft.Azure.Monitor; -using Microsoft.Azure.Monitor.Models; +using Microsoft.Azure.Insights; +using Microsoft.Azure.Insights.Models; using Xunit; using Newtonsoft.Json; diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/JsonExtensions.cs b/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/JsonExtensions.cs index 4860590638a4..110d4eaa94cf 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/JsonExtensions.cs +++ b/src/ResourceManagement/Monitor/Monitor.Tests/Helpers/JsonExtensions.cs @@ -6,7 +6,7 @@ using System.Globalization; using System.Reflection; using System.Xml; -using Microsoft.Azure.Management.Monitor.Models; +using Microsoft.Azure.Management.Insights.Models; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; @@ -110,7 +110,7 @@ public override bool CanConvert(Type objectType) public class PolymorphicTypeConverter : CustomCreationConverter { - public const string ClientNamespace = "Microsoft.Azure.Management.Monitor.Models"; + public const string ClientNamespace = "Microsoft.Azure.Management.Insights.Models"; private readonly string[] namespaceMappings; From bcbbc33bddc2e49e533ffe979bd7d84cb463a6dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= Date: Thu, 16 Feb 2017 11:45:35 -0800 Subject: [PATCH 018/137] Updating README.md --- Documentation/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/README.md b/Documentation/README.md index d35fe7effc49..98895a87abeb 100644 --- a/Documentation/README.md +++ b/Documentation/README.md @@ -18,6 +18,7 @@ These SDKs depend on Microsoft.Azure.Common | HdInsight | Microsoft.Azure.Management.HDInsight, Microsoft.Azure.Management.HDInsight.Job | | Insights | Microsoft.Azure.Insights | | Media Services | Microsoft.WindowsAzure.Management.MediaServices | +| Monitor | Microsoft.Azure.Monitor | | Monitoring | Microsoft.WindowsAzure.Management.Monitoring | | Operational Insights | Microsoft.Azure.Management.OperationalInsights | | Recovery Services | Microsoft.Azure.Management.RecoveryServices, Microsoft.Azure.Management.RecoveryServices.Backup | From 882c32b6461ca7000464e049986777fa4cd863cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= Date: Thu, 16 Feb 2017 16:31:32 -0800 Subject: [PATCH 019/137] Verifying correct generation of code and some minor changes --- .../Monitor/AlertRuleIncidentsOperations.cs | 184 ++++---- .../AlertRuleIncidentsOperationsExtensions.cs | 23 +- .../Monitor/AlertRulesOperations.cs | 337 ++++++++------- .../Monitor/AlertRulesOperationsExtensions.cs | 32 +- .../Monitor/AutoscaleSettingsOperations.cs | 406 ++++++++++-------- .../AutoscaleSettingsOperationsExtensions.cs | 36 +- .../Monitor/IAlertRuleIncidentsOperations.cs | 16 +- .../Monitor/IAlertRulesOperations.cs | 21 +- .../Monitor/IAutoscaleSettingsOperations.cs | 23 +- .../Monitor/ILogProfilesOperations.cs | 20 +- .../Monitor/IMonitorManagementClient.cs | 16 +- .../IServiceDiagnosticSettingsOperations.cs | 16 +- .../Monitor/LogProfilesOperations.cs | 320 +++++++------- .../LogProfilesOperationsExtensions.cs | 31 +- .../Monitor/Models/AlertRuleResource.cs | 35 +- .../Monitor/Models/AutoscaleNotification.cs | 19 +- .../Monitor/Models/AutoscaleProfile.cs | 48 ++- .../Models/AutoscaleSettingResource.cs | 43 +- .../Monitor/Models/ComparisonOperationType.cs | 24 +- .../Monitor/Models/ConditionOperator.cs | 20 +- .../Monitor/Models/EmailNotification.cs | 19 +- .../Management/Monitor/Models/Incident.cs | 27 +- .../Models/LocationThresholdRuleCondition.cs | 17 +- .../Monitor/Models/LogProfileResource.cs | 37 +- .../Management/Monitor/Models/LogSettings.cs | 19 +- .../ManagementEventAggregationCondition.cs | 13 +- .../Models/ManagementEventRuleCondition.cs | 13 +- .../Monitor/Models/MetricSettings.cs | 19 +- .../Monitor/Models/MetricStatisticType.cs | 20 +- .../Monitor/Models/MetricTrigger.cs | 30 +- .../Management/Monitor/Models/Page.cs | 29 +- .../Management/Monitor/Models/Page1.cs | 29 +- .../Management/Monitor/Models/Recurrence.cs | 20 +- .../Monitor/Models/RecurrenceFrequency.cs | 28 +- .../Monitor/Models/RecurrentSchedule.cs | 36 +- .../Management/Monitor/Models/Resource.cs | 35 +- .../Monitor/Models/RetentionPolicy.cs | 13 +- .../Management/Monitor/Models/RuleAction.cs | 6 +- .../Monitor/Models/RuleCondition.cs | 6 +- .../Monitor/Models/RuleDataSource.cs | 6 +- .../Monitor/Models/RuleEmailAction.cs | 19 +- .../RuleManagementEventClaimsDataSource.cs | 9 +- .../Models/RuleManagementEventDataSource.cs | 29 +- .../Monitor/Models/RuleMetricDataSource.cs | 13 +- .../Monitor/Models/RuleWebhookAction.cs | 19 +- .../Management/Monitor/Models/ScaleAction.cs | 17 +- .../Monitor/Models/ScaleCapacity.cs | 22 +- .../Monitor/Models/ScaleDirection.cs | 18 +- .../Management/Monitor/Models/ScaleRule.cs | 26 +- .../Management/Monitor/Models/ScaleType.cs | 18 +- .../ServiceDiagnosticSettingsResource.cs | 39 +- .../Monitor/Models/ThresholdRuleCondition.cs | 21 +- .../Monitor/Models/TimeAggregationOperator.cs | 22 +- .../Monitor/Models/TimeAggregationType.cs | 22 +- .../Management/Monitor/Models/TimeWindow.cs | 15 +- .../Monitor/Models/WebhookNotification.cs | 17 +- .../Monitor/MonitorManagementClient.cs | 141 +++--- .../ServiceDiagnosticSettingsOperations.cs | 170 ++++---- ...eDiagnosticSettingsOperationsExtensions.cs | 19 +- .../Monitor/ActivityLogsOperations.cs | 170 ++++---- .../ActivityLogsOperationsExtensions.cs | 23 +- .../Monitor/EventCategoriesOperations.cs | 87 ++-- .../EventCategoriesOperationsExtensions.cs | 18 +- .../Monitor/IActivityLogsOperations.cs | 16 +- .../Monitor/IEventCategoriesOperations.cs | 13 +- .../Monitor/IMetricDefinitionsOperations.cs | 14 +- .../Generated/Monitor/IMetricsOperations.cs | 14 +- .../Generated/Monitor/IMonitorClient.cs | 15 +- .../Monitor/ITenantActivityLogsOperations.cs | 16 +- .../Monitor/IUsageMetricsOperations.cs | 17 +- .../Monitor/MetricDefinitionsOperations.cs | 97 +++-- .../MetricDefinitionsOperationsExtensions.cs | 19 +- .../Generated/Monitor/MetricsOperations.cs | 97 +++-- .../Monitor/MetricsOperationsExtensions.cs | 19 +- .../Monitor/Models/AggregationType.cs | 23 +- .../Generated/Monitor/Models/EventData.cs | 92 ++-- .../Generated/Monitor/Models/EventLevel.cs | 21 +- .../Monitor/Models/HttpRequestInfo.cs | 14 +- .../Monitor/Models/LocalizableString.cs | 15 +- .../Generated/Monitor/Models/Metric.cs | 37 +- .../Monitor/Models/MetricAvailability.cs | 10 +- .../Monitor/Models/MetricDefinition.cs | 30 +- .../Generated/Monitor/Models/MetricValue.cs | 20 +- .../Generated/Monitor/Models/Page.cs | 28 +- .../Generated/Monitor/Models/Page1.cs | 28 +- .../Monitor/Models/SenderAuthorization.cs | 12 +- .../Generated/Monitor/Models/Unit.cs | 25 +- .../Generated/Monitor/Models/UsageMetric.cs | 26 +- .../Generated/Monitor/MonitorClient.cs | 126 +++--- .../Monitor/TenantActivityLogsOperations.cs | 159 ++++--- .../TenantActivityLogsOperationsExtensions.cs | 23 +- .../Monitor/UsageMetricsOperations.cs | 107 ++--- .../UsageMetricsOperationsExtensions.cs | 25 +- .../Microsoft.Azure.Monitor.xproj | 2 +- .../Microsoft.Azure.Monitor/generate.cmd | 2 +- .../Monitor/Monitor.Tests/Monitor.Tests.xproj | 4 +- src/ResourceManagement/Monitor/Monitor.sln | 52 +-- 97 files changed, 2518 insertions(+), 1746 deletions(-) diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs index ceb1aac57c01..750029ea92c4 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// AlertRuleIncidentsOperations operations. /// - internal partial class AlertRuleIncidentsOperations : Microsoft.Rest.IServiceOperations, IAlertRuleIncidentsOperations + internal partial class AlertRuleIncidentsOperations : IServiceOperations, IAlertRuleIncidentsOperations { /// /// Initializes a new instance of the AlertRuleIncidentsOperations class. @@ -29,11 +38,11 @@ internal partial class AlertRuleIncidentsOperations : Microsoft.Rest.IServiceOpe /// internal AlertRuleIncidentsOperations(MonitorManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -59,59 +68,62 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, string incidentName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, string incidentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (ruleName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); } if (incidentName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "incidentName"); + throw new ValidationException(ValidationRules.CannotBeNull, "incidentName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("ruleName", ruleName); tracingParameters.Add("incidentName", incidentName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}/incidents/{incidentName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); _url = _url.Replace("{incidentName}", System.Uri.EscapeDataString(incidentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -121,23 +133,25 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -153,51 +167,51 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -207,7 +221,7 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -220,21 +234,21 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -254,53 +268,56 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (ruleName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("ruleName", ruleName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByAlertRule", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByAlertRule", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}/incidents").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -310,23 +327,25 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -342,51 +361,51 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -396,7 +415,7 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -409,24 +428,25 @@ internal AlertRuleIncidentsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs index b53f11593eea..761c281d646b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRuleIncidentsOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for AlertRuleIncidentsOperations. @@ -34,7 +40,7 @@ public static partial class AlertRuleIncidentsOperationsExtensions /// public static Incident Get(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, string incidentName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRuleIncidentsOperations)s).GetAsync(resourceGroupName, ruleName, incidentName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, ruleName, incidentName).GetAwaiter().GetResult(); } /// @@ -55,7 +61,7 @@ public static Incident Get(this IAlertRuleIncidentsOperations operations, string /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, string incidentName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, string incidentName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, ruleName, incidentName, null, cancellationToken).ConfigureAwait(false)) { @@ -75,9 +81,9 @@ public static Incident Get(this IAlertRuleIncidentsOperations operations, string /// /// The name of the rule. /// - public static System.Collections.Generic.IEnumerable ListByAlertRule(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName) + public static IEnumerable ListByAlertRule(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRuleIncidentsOperations)s).ListByAlertRuleAsync(resourceGroupName, ruleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByAlertRuleAsync(resourceGroupName, ruleName).GetAwaiter().GetResult(); } /// @@ -95,7 +101,7 @@ public static System.Collections.Generic.IEnumerable ListByAlertRule(t /// /// The cancellation token. /// - public static async Task> ListByAlertRuleAsync(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByAlertRuleAsync(this IAlertRuleIncidentsOperations operations, string resourceGroupName, string ruleName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByAlertRuleWithHttpMessagesAsync(resourceGroupName, ruleName, null, cancellationToken).ConfigureAwait(false)) { @@ -105,3 +111,4 @@ public static System.Collections.Generic.IEnumerable ListByAlertRule(t } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs index 56389c32ce87..e0e83c11d3de 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperations.cs @@ -1,22 +1,32 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// AlertRulesOperations operations. /// - internal partial class AlertRulesOperations : Microsoft.Rest.IServiceOperations, IAlertRulesOperations + internal partial class AlertRulesOperations : IServiceOperations, IAlertRulesOperations { /// /// Initializes a new instance of the AlertRulesOperations class. @@ -29,11 +39,11 @@ internal partial class AlertRulesOperations : Microsoft.Rest.IServiceOperations< /// internal AlertRulesOperations(MonitorManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -61,62 +71,65 @@ internal AlertRulesOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string ruleName, AlertRuleResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string ruleName, AlertRuleResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (ruleName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { parameters.Validate(); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("ruleName", ruleName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -126,23 +139,25 @@ internal AlertRulesOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -159,56 +174,56 @@ internal AlertRulesOperations(MonitorManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -218,7 +233,7 @@ internal AlertRulesOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -231,16 +246,16 @@ internal AlertRulesOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } // Deserialize Response @@ -249,21 +264,21 @@ internal AlertRulesOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -283,50 +298,53 @@ internal AlertRulesOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (ruleName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("ruleName", ruleName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -336,23 +354,25 @@ internal AlertRulesOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -368,43 +388,43 @@ internal AlertRulesOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 204 && (int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); } else { _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -414,7 +434,7 @@ internal AlertRulesOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -423,7 +443,7 @@ internal AlertRulesOperations(MonitorManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -443,53 +463,56 @@ internal AlertRulesOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (ruleName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ruleName"); + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("ruleName", ruleName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules/{ruleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -499,23 +522,25 @@ internal AlertRulesOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -531,51 +556,51 @@ internal AlertRulesOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -585,7 +610,7 @@ internal AlertRulesOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -598,21 +623,21 @@ internal AlertRulesOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -632,52 +657,55 @@ internal AlertRulesOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/alertrules").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } @@ -691,23 +719,25 @@ internal AlertRulesOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -723,51 +753,51 @@ internal AlertRulesOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -777,7 +807,7 @@ internal AlertRulesOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -790,24 +820,25 @@ internal AlertRulesOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs index 363e35b947e8..38929e4267f7 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AlertRulesOperationsExtensions.cs @@ -1,16 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for AlertRulesOperations. @@ -36,7 +43,7 @@ public static partial class AlertRulesOperationsExtensions /// public static AlertRuleResource CreateOrUpdate(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, AlertRuleResource parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRulesOperations)s).CreateOrUpdateAsync(resourceGroupName, ruleName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, ruleName, parameters).GetAwaiter().GetResult(); } /// @@ -59,7 +66,7 @@ public static AlertRuleResource CreateOrUpdate(this IAlertRulesOperations operat /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, AlertRuleResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, AlertRuleResource parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, ruleName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -81,7 +88,7 @@ public static AlertRuleResource CreateOrUpdate(this IAlertRulesOperations operat /// public static void Delete(this IAlertRulesOperations operations, string resourceGroupName, string ruleName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRulesOperations)s).DeleteAsync(resourceGroupName, ruleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, ruleName).GetAwaiter().GetResult(); } /// @@ -99,7 +106,7 @@ public static void Delete(this IAlertRulesOperations operations, string resource /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, ruleName, null, cancellationToken).ConfigureAwait(false); } @@ -118,7 +125,7 @@ public static void Delete(this IAlertRulesOperations operations, string resource /// public static AlertRuleResource Get(this IAlertRulesOperations operations, string resourceGroupName, string ruleName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRulesOperations)s).GetAsync(resourceGroupName, ruleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, ruleName).GetAwaiter().GetResult(); } /// @@ -136,7 +143,7 @@ public static AlertRuleResource Get(this IAlertRulesOperations operations, strin /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IAlertRulesOperations operations, string resourceGroupName, string ruleName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, ruleName, null, cancellationToken).ConfigureAwait(false)) { @@ -156,9 +163,9 @@ public static AlertRuleResource Get(this IAlertRulesOperations operations, strin /// /// OData parameters to apply to the operation. /// - public static System.Collections.Generic.IEnumerable ListByResourceGroup(this IAlertRulesOperations operations, string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + public static IEnumerable ListByResourceGroup(this IAlertRulesOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAlertRulesOperations)s).ListByResourceGroupAsync(resourceGroupName, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName, odataQuery).GetAwaiter().GetResult(); } /// @@ -176,7 +183,7 @@ public static AlertRuleResource Get(this IAlertRulesOperations operations, strin /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IAlertRulesOperations operations, string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IAlertRulesOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, odataQuery, null, cancellationToken).ConfigureAwait(false)) { @@ -186,3 +193,4 @@ public static AlertRuleResource Get(this IAlertRulesOperations operations, strin } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs index 81051350647b..4d0e46213236 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperations.cs @@ -1,22 +1,32 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// AutoscaleSettingsOperations operations. /// - internal partial class AutoscaleSettingsOperations : Microsoft.Rest.IServiceOperations, IAutoscaleSettingsOperations + internal partial class AutoscaleSettingsOperations : IServiceOperations, IAutoscaleSettingsOperations { /// /// Initializes a new instance of the AutoscaleSettingsOperations class. @@ -29,11 +39,11 @@ internal partial class AutoscaleSettingsOperations : Microsoft.Rest.IServiceOper /// internal AutoscaleSettingsOperations(MonitorManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -56,52 +66,55 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/autoscalesettings").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } @@ -115,23 +128,25 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -147,51 +162,51 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -201,7 +216,7 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -214,21 +229,21 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -251,62 +266,65 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (autoscaleSettingName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "autoscaleSettingName"); + throw new ValidationException(ValidationRules.CannotBeNull, "autoscaleSettingName"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { parameters.Validate(); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("autoscaleSettingName", autoscaleSettingName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/autoscalesettings/{autoscaleSettingName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{autoscaleSettingName}", System.Uri.EscapeDataString(autoscaleSettingName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -316,23 +334,25 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -349,56 +369,56 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -408,7 +428,7 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -421,16 +441,16 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } // Deserialize Response @@ -439,21 +459,21 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -473,50 +493,53 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (autoscaleSettingName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "autoscaleSettingName"); + throw new ValidationException(ValidationRules.CannotBeNull, "autoscaleSettingName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("autoscaleSettingName", autoscaleSettingName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/autoscalesettings/{autoscaleSettingName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{autoscaleSettingName}", System.Uri.EscapeDataString(autoscaleSettingName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -526,23 +549,25 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -558,43 +583,43 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); } else { _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -604,7 +629,7 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -613,7 +638,7 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -633,53 +658,56 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (autoscaleSettingName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "autoscaleSettingName"); + throw new ValidationException(ValidationRules.CannotBeNull, "autoscaleSettingName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("autoscaleSettingName", autoscaleSettingName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.insights/autoscalesettings/{autoscaleSettingName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{autoscaleSettingName}", System.Uri.EscapeDataString(autoscaleSettingName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -689,23 +717,25 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -721,51 +751,51 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -775,7 +805,7 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -788,21 +818,21 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -819,61 +849,66 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -889,51 +924,51 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -943,7 +978,7 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -956,24 +991,25 @@ internal AutoscaleSettingsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs index 2b6bb599cab2..5baee5c6d5e5 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/AutoscaleSettingsOperationsExtensions.cs @@ -1,16 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for AutoscaleSettingsOperations. @@ -29,9 +34,9 @@ public static partial class AutoscaleSettingsOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IAutoscaleSettingsOperations operations, string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + public static IPage ListByResourceGroup(this IAutoscaleSettingsOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).ListByResourceGroupAsync(resourceGroupName, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName, odataQuery).GetAwaiter().GetResult(); } /// @@ -49,7 +54,7 @@ public static partial class AutoscaleSettingsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, odataQuery, null, cancellationToken).ConfigureAwait(false)) { @@ -74,7 +79,7 @@ public static partial class AutoscaleSettingsOperationsExtensions /// public static AutoscaleSettingResource CreateOrUpdate(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).CreateOrUpdateAsync(resourceGroupName, autoscaleSettingName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, autoscaleSettingName, parameters).GetAwaiter().GetResult(); } /// @@ -95,7 +100,7 @@ public static AutoscaleSettingResource CreateOrUpdate(this IAutoscaleSettingsOpe /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, autoscaleSettingName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -117,7 +122,7 @@ public static AutoscaleSettingResource CreateOrUpdate(this IAutoscaleSettingsOpe /// public static void Delete(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).DeleteAsync(resourceGroupName, autoscaleSettingName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, autoscaleSettingName).GetAwaiter().GetResult(); } /// @@ -135,7 +140,7 @@ public static void Delete(this IAutoscaleSettingsOperations operations, string r /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, autoscaleSettingName, null, cancellationToken).ConfigureAwait(false); } @@ -154,7 +159,7 @@ public static void Delete(this IAutoscaleSettingsOperations operations, string r /// public static AutoscaleSettingResource Get(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).GetAsync(resourceGroupName, autoscaleSettingName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, autoscaleSettingName).GetAwaiter().GetResult(); } /// @@ -172,7 +177,7 @@ public static AutoscaleSettingResource Get(this IAutoscaleSettingsOperations ope /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IAutoscaleSettingsOperations operations, string resourceGroupName, string autoscaleSettingName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, autoscaleSettingName, null, cancellationToken).ConfigureAwait(false)) { @@ -189,9 +194,9 @@ public static AutoscaleSettingResource Get(this IAutoscaleSettingsOperations ope /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this IAutoscaleSettingsOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IAutoscaleSettingsOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAutoscaleSettingsOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -206,7 +211,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourc /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IAutoscaleSettingsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IAutoscaleSettingsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -216,3 +221,4 @@ public static Microsoft.Rest.Azure.IPage ListByResourc } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs index 258f36fc2307..2f38274e83cb 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRuleIncidentsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// AlertRuleIncidentsOperations operations. @@ -43,7 +50,7 @@ public partial interface IAlertRuleIncidentsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, string incidentName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, string incidentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a list of incidents associated to an alert rule /// @@ -68,6 +75,7 @@ public partial interface IAlertRuleIncidentsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByAlertRuleWithHttpMessagesAsync(string resourceGroupName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs index daa38172b621..97369ced7e07 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAlertRulesOperations.cs @@ -1,15 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// AlertRulesOperations operations. @@ -45,7 +53,7 @@ public partial interface IAlertRulesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string ruleName, AlertRuleResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string ruleName, AlertRuleResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes an alert rule /// @@ -67,7 +75,7 @@ public partial interface IAlertRulesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets an alert rule /// @@ -92,7 +100,7 @@ public partial interface IAlertRulesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// List the alert rules within a resource group. /// @@ -117,6 +125,7 @@ public partial interface IAlertRulesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs index 6806f73655cc..03e9af83ab86 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IAutoscaleSettingsOperations.cs @@ -1,15 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// AutoscaleSettingsOperations operations. @@ -40,7 +48,7 @@ public partial interface IAutoscaleSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates or updates an autoscale setting. /// @@ -68,7 +76,7 @@ public partial interface IAutoscaleSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, AutoscaleSettingResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes and autoscale setting /// @@ -90,7 +98,7 @@ public partial interface IAutoscaleSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets an autoscale setting /// @@ -115,7 +123,7 @@ public partial interface IAutoscaleSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string autoscaleSettingName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists the autoscale settings for a resource group /// @@ -137,6 +145,7 @@ public partial interface IAutoscaleSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs index 92d006d4d42b..5a6fa06c9eb6 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ILogProfilesOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// LogProfilesOperations operations. @@ -34,7 +41,7 @@ public partial interface ILogProfilesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string logProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the log profile. /// @@ -56,7 +63,7 @@ public partial interface ILogProfilesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string logProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a log profile in Azure Monitoring REST API. /// @@ -81,7 +88,7 @@ public partial interface ILogProfilesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// List the log profiles. /// @@ -100,6 +107,7 @@ public partial interface ILogProfilesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs index 21825a24882c..4a23a8b6470d 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IMonitorManagementClient.cs @@ -1,16 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; /// /// Composite Swagger for Monitor Management Client @@ -25,17 +28,17 @@ public partial interface IMonitorManagementClient : System.IDisposable /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. /// - Microsoft.Rest.ServiceClientCredentials Credentials { get; } + ServiceClientCredentials Credentials { get; } /// /// The Azure subscription Id. @@ -87,3 +90,4 @@ public partial interface IMonitorManagementClient : System.IDisposable } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs index 864608358b26..2f2ea8a94db8 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/IServiceDiagnosticSettingsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// ServiceDiagnosticSettingsOperations operations. @@ -37,7 +44,7 @@ public partial interface IServiceDiagnosticSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceUri, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update new diagnostic settings for the specified /// resource. @@ -63,6 +70,7 @@ public partial interface IServiceDiagnosticSettingsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs index ae547b19fb2d..2da86d45fa5d 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// LogProfilesOperations operations. /// - internal partial class LogProfilesOperations : Microsoft.Rest.IServiceOperations, ILogProfilesOperations + internal partial class LogProfilesOperations : IServiceOperations, ILogProfilesOperations { /// /// Initializes a new instance of the LogProfilesOperations class. @@ -29,11 +38,11 @@ internal partial class LogProfilesOperations : Microsoft.Rest.IServiceOperations /// internal LogProfilesOperations(MonitorManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -53,44 +62,47 @@ internal LogProfilesOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string logProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (logProfileName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "logProfileName"); + throw new ValidationException(ValidationRules.CannotBeNull, "logProfileName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("logProfileName", logProfileName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles/{logProfileName}").ToString(); _url = _url.Replace("{logProfileName}", System.Uri.EscapeDataString(logProfileName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -100,23 +112,25 @@ internal LogProfilesOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -132,43 +146,43 @@ internal LogProfilesOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); } else { _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -178,7 +192,7 @@ internal LogProfilesOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -187,7 +201,7 @@ internal LogProfilesOperations(MonitorManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -204,47 +218,50 @@ internal LogProfilesOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string logProfileName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string logProfileName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (logProfileName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "logProfileName"); + throw new ValidationException(ValidationRules.CannotBeNull, "logProfileName"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("logProfileName", logProfileName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles/{logProfileName}").ToString(); _url = _url.Replace("{logProfileName}", System.Uri.EscapeDataString(logProfileName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -254,23 +271,25 @@ internal LogProfilesOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -286,51 +305,51 @@ internal LogProfilesOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -340,7 +359,7 @@ internal LogProfilesOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -353,21 +372,21 @@ internal LogProfilesOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -387,56 +406,59 @@ internal LogProfilesOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string logProfileName, LogProfileResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (logProfileName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "logProfileName"); + throw new ValidationException(ValidationRules.CannotBeNull, "logProfileName"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { parameters.Validate(); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("logProfileName", logProfileName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles/{logProfileName}").ToString(); _url = _url.Replace("{logProfileName}", System.Uri.EscapeDataString(logProfileName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -446,23 +468,25 @@ internal LogProfilesOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -479,56 +503,56 @@ internal LogProfilesOperations(MonitorManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -538,7 +562,7 @@ internal LogProfilesOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -551,21 +575,21 @@ internal LogProfilesOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -579,41 +603,44 @@ internal LogProfilesOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/logprofiles").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -623,23 +650,25 @@ internal LogProfilesOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -655,51 +684,51 @@ internal LogProfilesOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -709,7 +738,7 @@ internal LogProfilesOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -722,24 +751,25 @@ internal LogProfilesOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs index 0582e546bb47..edac4837df2a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/LogProfilesOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for LogProfilesOperations. @@ -28,7 +34,7 @@ public static partial class LogProfilesOperationsExtensions /// public static void Delete(this ILogProfilesOperations operations, string logProfileName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).DeleteAsync(logProfileName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(logProfileName).GetAwaiter().GetResult(); } /// @@ -43,7 +49,7 @@ public static void Delete(this ILogProfilesOperations operations, string logProf /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this ILogProfilesOperations operations, string logProfileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this ILogProfilesOperations operations, string logProfileName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(logProfileName, null, cancellationToken).ConfigureAwait(false); } @@ -59,7 +65,7 @@ public static void Delete(this ILogProfilesOperations operations, string logProf /// public static LogProfileResource Get(this ILogProfilesOperations operations, string logProfileName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).GetAsync(logProfileName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(logProfileName).GetAwaiter().GetResult(); } /// @@ -74,7 +80,7 @@ public static LogProfileResource Get(this ILogProfilesOperations operations, str /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this ILogProfilesOperations operations, string logProfileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this ILogProfilesOperations operations, string logProfileName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(logProfileName, null, cancellationToken).ConfigureAwait(false)) { @@ -96,7 +102,7 @@ public static LogProfileResource Get(this ILogProfilesOperations operations, str /// public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations operations, string logProfileName, LogProfileResource parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).CreateOrUpdateAsync(logProfileName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(logProfileName, parameters).GetAwaiter().GetResult(); } /// @@ -114,7 +120,7 @@ public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations oper /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this ILogProfilesOperations operations, string logProfileName, LogProfileResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this ILogProfilesOperations operations, string logProfileName, LogProfileResource parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(logProfileName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -128,9 +134,9 @@ public static LogProfileResource CreateOrUpdate(this ILogProfilesOperations oper /// /// The operations group for this extension method. /// - public static System.Collections.Generic.IEnumerable List(this ILogProfilesOperations operations) + public static IEnumerable List(this ILogProfilesOperations operations) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((ILogProfilesOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// @@ -142,7 +148,7 @@ public static System.Collections.Generic.IEnumerable List(th /// /// The cancellation token. /// - public static async Task> ListAsync(this ILogProfilesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this ILogProfilesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -152,3 +158,4 @@ public static System.Collections.Generic.IEnumerable List(th } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs index b2f354a862e5..ba2980372e02 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AlertRuleResource.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// The alert rule resource. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class AlertRuleResource : Resource { /// @@ -42,7 +50,7 @@ public AlertRuleResource() { } /// resolved. /// Last time the rule was updated in /// ISO8601 format. - public AlertRuleResource(string location, string alertRuleResourceName, bool isEnabled, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string description = default(string), RuleCondition condition = default(RuleCondition), System.Collections.Generic.IList actions = default(System.Collections.Generic.IList), System.DateTime? lastUpdatedTime = default(System.DateTime?)) + public AlertRuleResource(string location, string alertRuleResourceName, bool isEnabled, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), RuleCondition condition = default(RuleCondition), IList actions = default(IList), System.DateTime? lastUpdatedTime = default(System.DateTime?)) : base(location, id, name, type, tags) { AlertRuleResourceName = alertRuleResourceName; @@ -56,47 +64,47 @@ public AlertRuleResource() { } /// /// Gets or sets the name of the alert rule. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.name")] + [JsonProperty(PropertyName = "properties.name")] public string AlertRuleResourceName { get; set; } /// /// Gets or sets the description of the alert rule that will be /// included in the alert email. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.description")] + [JsonProperty(PropertyName = "properties.description")] public string Description { get; set; } /// /// Gets or sets the flag that indicates whether the alert rule is /// enabled. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.isEnabled")] + [JsonProperty(PropertyName = "properties.isEnabled")] public bool IsEnabled { get; set; } /// /// Gets or sets the condition that results in the alert rule being /// activated. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.condition")] + [JsonProperty(PropertyName = "properties.condition")] public RuleCondition Condition { get; set; } /// /// Gets or sets the array of actions that are performed when the alert /// rule becomes active, and when an alert condition is resolved. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.actions")] - public System.Collections.Generic.IList Actions { get; set; } + [JsonProperty(PropertyName = "properties.actions")] + public IList Actions { get; set; } /// /// Gets last time the rule was updated in ISO8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.lastUpdatedTime")] - public System.DateTime? LastUpdatedTime { get; private set; } + [JsonProperty(PropertyName = "properties.lastUpdatedTime")] + public System.DateTime? LastUpdatedTime { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -104,8 +112,9 @@ public override void Validate() base.Validate(); if (AlertRuleResourceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "AlertRuleResourceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "AlertRuleResourceName"); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs index 63d0e1754530..80dc3d6ae54c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleNotification.cs @@ -1,13 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -26,7 +32,7 @@ public AutoscaleNotification() { } /// the email notification. /// the collection of webhook /// notifications. - public AutoscaleNotification(EmailNotification email = default(EmailNotification), System.Collections.Generic.IList webhooks = default(System.Collections.Generic.IList)) + public AutoscaleNotification(EmailNotification email = default(EmailNotification), IList webhooks = default(IList)) { Email = email; Webhooks = webhooks; @@ -42,21 +48,22 @@ static AutoscaleNotification() /// /// Gets or sets the email notification. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "email")] + [JsonProperty(PropertyName = "email")] public EmailNotification Email { get; set; } /// /// Gets or sets the collection of webhook notifications. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "webhooks")] - public System.Collections.Generic.IList Webhooks { get; set; } + [JsonProperty(PropertyName = "webhooks")] + public IList Webhooks { get; set; } /// /// the operation associated with the notification and its value must /// be "scale" /// - [Newtonsoft.Json.JsonProperty(PropertyName = "operation")] + [JsonProperty(PropertyName = "operation")] public static string Operation { get; private set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs index d84a0f6358d1..290e6401c8a3 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleProfile.cs @@ -1,13 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -34,7 +41,7 @@ public AutoscaleProfile() { } /// the repeating times at which this profile /// begins. This element is not used if the FixedDate element is /// used. - public AutoscaleProfile(string name, ScaleCapacity capacity, System.Collections.Generic.IList rules, TimeWindow fixedDate = default(TimeWindow), Recurrence recurrence = default(Recurrence)) + public AutoscaleProfile(string name, ScaleCapacity capacity, IList rules, TimeWindow fixedDate = default(TimeWindow), Recurrence recurrence = default(Recurrence)) { Name = name; Capacity = capacity; @@ -46,14 +53,14 @@ public AutoscaleProfile() { } /// /// Gets or sets the name of the profile. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets the number of instances that can be used during this /// profile. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "capacity")] + [JsonProperty(PropertyName = "capacity")] public ScaleCapacity Capacity { get; set; } /// @@ -61,50 +68,50 @@ public AutoscaleProfile() { } /// parameters for the scaling action. A maximum of 10 rules can be /// specified. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "rules")] - public System.Collections.Generic.IList Rules { get; set; } + [JsonProperty(PropertyName = "rules")] + public IList Rules { get; set; } /// /// Gets or sets the specific date-time for the profile. This element /// is not used if the Recurrence element is used. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "fixedDate")] + [JsonProperty(PropertyName = "fixedDate")] public TimeWindow FixedDate { get; set; } /// /// Gets or sets the repeating times at which this profile begins. This /// element is not used if the FixedDate element is used. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "recurrence")] + [JsonProperty(PropertyName = "recurrence")] public Recurrence Recurrence { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } if (Capacity == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Capacity"); + throw new ValidationException(ValidationRules.CannotBeNull, "Capacity"); } if (Rules == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Rules"); + throw new ValidationException(ValidationRules.CannotBeNull, "Rules"); } - if (this.Capacity != null) + if (Capacity != null) { - this.Capacity.Validate(); + Capacity.Validate(); } - if (this.Rules != null) + if (Rules != null) { - foreach (var element in this.Rules) + foreach (var element in Rules) { if (element != null) { @@ -112,14 +119,15 @@ public virtual void Validate() } } } - if (this.FixedDate != null) + if (FixedDate != null) { - this.FixedDate.Validate(); + FixedDate.Validate(); } - if (this.Recurrence != null) + if (Recurrence != null) { - this.Recurrence.Validate(); + Recurrence.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs index 8b8be9eb35e0..895823b4f43b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/AutoscaleSettingResource.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// The autoscale setting resource. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class AutoscaleSettingResource : Resource { /// @@ -41,7 +49,7 @@ public AutoscaleSettingResource() { } /// 'true'. /// the resource identifier of the /// resource that the autoscale setting should be added to. - public AutoscaleSettingResource(string location, System.Collections.Generic.IList profiles, string autoscaleSettingResourceName, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList notifications = default(System.Collections.Generic.IList), bool? enabled = default(bool?), string targetResourceUri = default(string)) + public AutoscaleSettingResource(string location, IList profiles, string autoscaleSettingResourceName, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList notifications = default(IList), bool? enabled = default(bool?), string targetResourceUri = default(string)) : base(location, id, name, type, tags) { Profiles = profiles; @@ -56,39 +64,39 @@ public AutoscaleSettingResource() { } /// specify different scaling parameters for different time periods. A /// maximum of 20 profiles can be specified. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.profiles")] - public System.Collections.Generic.IList Profiles { get; set; } + [JsonProperty(PropertyName = "properties.profiles")] + public IList Profiles { get; set; } /// /// Gets or sets the collection of notifications. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.notifications")] - public System.Collections.Generic.IList Notifications { get; set; } + [JsonProperty(PropertyName = "properties.notifications")] + public IList Notifications { get; set; } /// /// Gets or sets the enabled flag. Specifies whether automatic scaling /// is enabled for the resource. The default value is 'true'. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.enabled")] + [JsonProperty(PropertyName = "properties.enabled")] public bool? Enabled { get; set; } /// /// Gets or sets the name of the autoscale setting. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.name")] + [JsonProperty(PropertyName = "properties.name")] public string AutoscaleSettingResourceName { get; set; } /// /// Gets or sets the resource identifier of the resource that the /// autoscale setting should be added to. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.targetResourceUri")] + [JsonProperty(PropertyName = "properties.targetResourceUri")] public string TargetResourceUri { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -96,19 +104,19 @@ public override void Validate() base.Validate(); if (Profiles == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Profiles"); + throw new ValidationException(ValidationRules.CannotBeNull, "Profiles"); } if (AutoscaleSettingResourceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "AutoscaleSettingResourceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "AutoscaleSettingResourceName"); } - if (this.Profiles != null) + if (Profiles != null) { - if (this.Profiles.Count > 20) + if (Profiles.Count > 20) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.MaxItems, "Profiles", 20); + throw new ValidationException(ValidationRules.MaxItems, "Profiles", 20); } - foreach (var element in this.Profiles) + foreach (var element in Profiles) { if (element != null) { @@ -119,3 +127,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs index 3506b4f380a5..e17824352841 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ComparisonOperationType.cs @@ -1,31 +1,39 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for ComparisonOperationType. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ComparisonOperationType { - [System.Runtime.Serialization.EnumMember(Value = "Equals")] + [EnumMember(Value = "Equals")] Equals, - [System.Runtime.Serialization.EnumMember(Value = "NotEquals")] + [EnumMember(Value = "NotEquals")] NotEquals, - [System.Runtime.Serialization.EnumMember(Value = "GreaterThan")] + [EnumMember(Value = "GreaterThan")] GreaterThan, - [System.Runtime.Serialization.EnumMember(Value = "GreaterThanOrEqual")] + [EnumMember(Value = "GreaterThanOrEqual")] GreaterThanOrEqual, - [System.Runtime.Serialization.EnumMember(Value = "LessThan")] + [EnumMember(Value = "LessThan")] LessThan, - [System.Runtime.Serialization.EnumMember(Value = "LessThanOrEqual")] + [EnumMember(Value = "LessThanOrEqual")] LessThanOrEqual } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs index 9c6ca37a10f6..a7bc85c2fb35 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ConditionOperator.cs @@ -1,27 +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 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for ConditionOperator. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ConditionOperator { - [System.Runtime.Serialization.EnumMember(Value = "GreaterThan")] + [EnumMember(Value = "GreaterThan")] GreaterThan, - [System.Runtime.Serialization.EnumMember(Value = "GreaterThanOrEqual")] + [EnumMember(Value = "GreaterThanOrEqual")] GreaterThanOrEqual, - [System.Runtime.Serialization.EnumMember(Value = "LessThan")] + [EnumMember(Value = "LessThan")] LessThan, - [System.Runtime.Serialization.EnumMember(Value = "LessThanOrEqual")] + [EnumMember(Value = "LessThanOrEqual")] LessThanOrEqual } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs index a8fa1f179313..4f0a654d27e6 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/EmailNotification.cs @@ -1,13 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -30,7 +36,7 @@ public EmailNotification() { } /// the custom e-mails list. This value can /// be null or empty, in which case this attribute will be /// ignored. - public EmailNotification(bool? sendToSubscriptionAdministrator = default(bool?), bool? sendToSubscriptionCoAdministrators = default(bool?), System.Collections.Generic.IList customEmails = default(System.Collections.Generic.IList)) + public EmailNotification(bool? sendToSubscriptionAdministrator = default(bool?), bool? sendToSubscriptionCoAdministrators = default(bool?), IList customEmails = default(IList)) { SendToSubscriptionAdministrator = sendToSubscriptionAdministrator; SendToSubscriptionCoAdministrators = sendToSubscriptionCoAdministrators; @@ -41,22 +47,23 @@ public EmailNotification() { } /// Gets or sets a value indicating whether to send email to /// subscription administrator. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sendToSubscriptionAdministrator")] + [JsonProperty(PropertyName = "sendToSubscriptionAdministrator")] public bool? SendToSubscriptionAdministrator { get; set; } /// /// Gets or sets a value indicating whether to send email to /// subscription co-administrators. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sendToSubscriptionCoAdministrators")] + [JsonProperty(PropertyName = "sendToSubscriptionCoAdministrators")] public bool? SendToSubscriptionCoAdministrators { get; set; } /// /// Gets or sets the custom e-mails list. This value can be null or /// empty, in which case this attribute will be ignored. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "customEmails")] - public System.Collections.Generic.IList CustomEmails { get; set; } + [JsonProperty(PropertyName = "customEmails")] + public IList CustomEmails { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs index eefbe85edb73..97526c845b46 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Incident.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -45,35 +49,36 @@ public Incident() { } /// /// Gets incident name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } /// /// Gets rule name that is associated with the incident. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "ruleName")] - public string RuleName { get; private set; } + [JsonProperty(PropertyName = "ruleName")] + public string RuleName { get; protected set; } /// /// Gets a boolean to indicate whether the incident is active or /// resolved. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "isActive")] - public bool? IsActive { get; private set; } + [JsonProperty(PropertyName = "isActive")] + public bool? IsActive { get; protected set; } /// /// Gets the time at which the incident was activated in ISO8601 /// format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "activatedTime")] - public System.DateTime? ActivatedTime { get; private set; } + [JsonProperty(PropertyName = "activatedTime")] + public System.DateTime? ActivatedTime { get; protected set; } /// /// Gets the time at which the incident was resolved in ISO8601 format. /// If null, it means the incident is still active. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resolvedTime")] - public System.DateTime? ResolvedTime { get; private set; } + [JsonProperty(PropertyName = "resolvedTime")] + public System.DateTime? ResolvedTime { get; protected set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs index 9d55a40f575c..5b38ca43a49a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LocationThresholdRuleCondition.cs @@ -1,19 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// /// A rule condition based on a certain number of locations failing. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.LocationThresholdRuleCondition")] + [JsonObject("Microsoft.Azure.Management.Insights.Models.LocationThresholdRuleCondition")] public partial class LocationThresholdRuleCondition : RuleCondition { /// @@ -47,7 +51,7 @@ public LocationThresholdRuleCondition() { } /// For this type dataSource will always be of type /// RuleMetricDataSource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] + [JsonProperty(PropertyName = "dataSource")] public RuleDataSource DataSource { get; set; } /// @@ -55,20 +59,20 @@ public LocationThresholdRuleCondition() { } /// is used to monitor alert activity based on the threshold. If /// specified then it must be between 5 minutes and 1 day. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "windowSize")] + [JsonProperty(PropertyName = "windowSize")] public System.TimeSpan? WindowSize { get; set; } /// /// Gets or sets the number of locations that must fail to activate the /// alert. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "failedLocationCount")] + [JsonProperty(PropertyName = "failedLocationCount")] public int FailedLocationCount { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -76,3 +80,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs index 0ebeb90cb615..e79fdbb82203 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogProfileResource.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// The log profile resource. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class LogProfileResource : Resource { /// @@ -44,7 +52,7 @@ public LogProfileResource() { } /// are: 'Write', 'Delete', and/or 'Action.' /// the retention policy for the events /// in the log. - public LogProfileResource(string location, System.Collections.Generic.IList locations, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList categories = default(System.Collections.Generic.IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) + public LogProfileResource(string location, IList locations, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), IList categories = default(IList), RetentionPolicy retentionPolicy = default(RetentionPolicy)) : base(location, id, name, type, tags) { StorageAccountId = storageAccountId; @@ -58,7 +66,7 @@ public LogProfileResource() { } /// Gets or sets the resource id of the storage account to which you /// would like to send the Activity Log. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccountId")] + [JsonProperty(PropertyName = "properties.storageAccountId")] public string StorageAccountId { get; set; } /// @@ -67,7 +75,7 @@ public LogProfileResource() { } /// the Activity Log. The rule ID is of the format: '{service bus /// resource ID}/authorizationrules/{key name}'. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceBusRuleId")] + [JsonProperty(PropertyName = "properties.serviceBusRuleId")] public string ServiceBusRuleId { get; set; } /// @@ -75,27 +83,27 @@ public LogProfileResource() { } /// be stored or streamed. It is a comma separated list of valid ARM /// locations including the 'global' location. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.locations")] - public System.Collections.Generic.IList Locations { get; set; } + [JsonProperty(PropertyName = "properties.locations")] + public IList Locations { get; set; } /// /// Gets or sets the categories of the logs. These categories are /// created as is convenient to the user. Some values are: 'Write', /// 'Delete', and/or 'Action.' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.categories")] - public System.Collections.Generic.IList Categories { get; set; } + [JsonProperty(PropertyName = "properties.categories")] + public IList Categories { get; set; } /// /// Gets or sets the retention policy for the events in the log. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.retentionPolicy")] + [JsonProperty(PropertyName = "properties.retentionPolicy")] public RetentionPolicy RetentionPolicy { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -103,12 +111,13 @@ public override void Validate() base.Validate(); if (Locations == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Locations"); + throw new ValidationException(ValidationRules.CannotBeNull, "Locations"); } - if (this.RetentionPolicy != null) + if (RetentionPolicy != null) { - this.RetentionPolicy.Validate(); + RetentionPolicy.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs index 38e10d17dc59..31241636572b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/LogSettings.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -45,33 +49,34 @@ public LogSettings() { } /// categories for a resource, first perform a GET diagnostic settings /// operation. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "category")] + [JsonProperty(PropertyName = "category")] public string Category { get; set; } /// /// Gets or sets a value indicating whether this log is enabled. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "enabled")] + [JsonProperty(PropertyName = "enabled")] public bool Enabled { get; set; } /// /// Gets or sets the retention policy for this log. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "retentionPolicy")] + [JsonProperty(PropertyName = "retentionPolicy")] public RetentionPolicy RetentionPolicy { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.RetentionPolicy != null) + if (RetentionPolicy != null) { - this.RetentionPolicy.Validate(); + RetentionPolicy.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs index 1708cdc91ac5..8a4d6c588e4f 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventAggregationCondition.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -45,13 +49,13 @@ public ManagementEventAggregationCondition() { } /// Gets or sets the condition operator. Possible values include: /// 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "operator")] + [JsonProperty(PropertyName = "operator")] public ConditionOperator? OperatorProperty { get; set; } /// /// Gets or sets the threshold value that activates the alert. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "threshold")] + [JsonProperty(PropertyName = "threshold")] public double? Threshold { get; set; } /// @@ -59,8 +63,9 @@ public ManagementEventAggregationCondition() { } /// is used to monitor alert activity based on the threshold. If /// specified then it must be between 5 minutes and 1 day. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "windowSize")] + [JsonProperty(PropertyName = "windowSize")] public System.TimeSpan? WindowSize { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs index 1b21c7b6001f..eaf733f24ee2 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ManagementEventRuleCondition.cs @@ -1,19 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// /// A management event rule condition. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.ManagementEventRuleCondition")] + [JsonObject("Microsoft.Azure.Management.Insights.Models.ManagementEventRuleCondition")] public partial class ManagementEventRuleCondition : RuleCondition { /// @@ -44,7 +48,7 @@ public ManagementEventRuleCondition() { } /// For this type dataSource will always be of type /// RuleManagementEventDataSource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] + [JsonProperty(PropertyName = "dataSource")] public RuleDataSource DataSource { get; set; } /// @@ -53,8 +57,9 @@ public ManagementEventRuleCondition() { } /// event alerts aggregation is optional – if it is not provided then /// any event will cause the alert to activate. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "aggregation")] + [JsonProperty(PropertyName = "aggregation")] public ManagementEventAggregationCondition Aggregation { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs index b52b101be9ba..f982d32d96eb 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricSettings.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -40,33 +44,34 @@ public MetricSettings() { } /// /// Gets or sets the timegrain of the metric in ISO8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timeGrain")] + [JsonProperty(PropertyName = "timeGrain")] public System.TimeSpan TimeGrain { get; set; } /// /// Gets or sets a value indicating whether this timegrain is enabled. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "enabled")] + [JsonProperty(PropertyName = "enabled")] public bool Enabled { get; set; } /// /// Gets or sets the retention policy for this timegrain. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "retentionPolicy")] + [JsonProperty(PropertyName = "retentionPolicy")] public RetentionPolicy RetentionPolicy { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.RetentionPolicy != null) + if (RetentionPolicy != null) { - this.RetentionPolicy.Validate(); + RetentionPolicy.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs index 5baf73f84408..e1760086d290 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricStatisticType.cs @@ -1,27 +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 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for MetricStatisticType. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum MetricStatisticType { - [System.Runtime.Serialization.EnumMember(Value = "Average")] + [EnumMember(Value = "Average")] Average, - [System.Runtime.Serialization.EnumMember(Value = "Min")] + [EnumMember(Value = "Min")] Min, - [System.Runtime.Serialization.EnumMember(Value = "Max")] + [EnumMember(Value = "Max")] Max, - [System.Runtime.Serialization.EnumMember(Value = "Sum")] + [EnumMember(Value = "Sum")] Sum } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs index db22ded56f7a..076d55c77e2a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/MetricTrigger.cs @@ -1,13 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -64,14 +69,14 @@ public MetricTrigger(string metricName, string metricResourceUri, System.TimeSpa /// Gets or sets the name of the metric that defines what the rule /// monitors. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "metricName")] + [JsonProperty(PropertyName = "metricName")] public string MetricName { get; set; } /// /// Gets or sets the resource identifier of the resource the rule /// monitors. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "metricResourceUri")] + [JsonProperty(PropertyName = "metricResourceUri")] public string MetricResourceUri { get; set; } /// @@ -79,7 +84,7 @@ public MetricTrigger(string metricName, string metricResourceUri, System.TimeSpa /// one of the predefined values returned from metric definitions for /// the metric. Must be between 12 hours and 1 minute. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timeGrain")] + [JsonProperty(PropertyName = "timeGrain")] public System.TimeSpan TimeGrain { get; set; } /// @@ -87,7 +92,7 @@ public MetricTrigger(string metricName, string metricResourceUri, System.TimeSpa /// multiple instances are combined. Possible values include: /// 'Average', 'Min', 'Max', 'Sum' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "statistic")] + [JsonProperty(PropertyName = "statistic")] public MetricStatisticType Statistic { get; set; } /// @@ -96,7 +101,7 @@ public MetricTrigger(string metricName, string metricResourceUri, System.TimeSpa /// which can vary from resource-to-resource. Must be between 12 hours /// and 5 minutes. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timeWindow")] + [JsonProperty(PropertyName = "timeWindow")] public System.TimeSpan TimeWindow { get; set; } /// @@ -105,7 +110,7 @@ public MetricTrigger(string metricName, string metricResourceUri, System.TimeSpa /// Possible values include: 'Average', 'Minimum', 'Maximum', 'Total', /// 'Count' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timeAggregation")] + [JsonProperty(PropertyName = "timeAggregation")] public TimeAggregationType TimeAggregation { get; set; } /// @@ -113,32 +118,33 @@ public MetricTrigger(string metricName, string metricResourceUri, System.TimeSpa /// and the threshold. Possible values include: 'Equals', 'NotEquals', /// 'GreaterThan', 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "operator")] + [JsonProperty(PropertyName = "operator")] public ComparisonOperationType OperatorProperty { get; set; } /// /// Gets or sets the threshold of the metric that triggers the scale /// action. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "threshold")] + [JsonProperty(PropertyName = "threshold")] public double Threshold { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (MetricName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricName"); + throw new ValidationException(ValidationRules.CannotBeNull, "MetricName"); } if (MetricResourceUri == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricResourceUri"); + throw new ValidationException(ValidationRules.CannotBeNull, "MetricResourceUri"); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs index d517340cdb2a..7359bf2bda8f 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page.cs @@ -1,46 +1,55 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("nextLink")] - public System.String NextPageLink { get; private set; } + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs index 69676959c407..8acf4450aa49 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Page1.cs @@ -1,46 +1,55 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page1 : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page1 : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("")] - public System.String NextPageLink { get; private set; } + [JsonProperty("")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs index 51c2b1dc84f8..aec3b3fa5a5c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Recurrence.cs @@ -1,13 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -43,32 +48,33 @@ public Recurrence(RecurrenceFrequency frequency, RecurrentSchedule schedule) /// week will have the same set of profiles. Possible values include: /// 'None', 'Second', 'Minute', 'Hour', 'Day', 'Week', 'Month', 'Year' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "frequency")] + [JsonProperty(PropertyName = "frequency")] public RecurrenceFrequency Frequency { get; set; } /// /// Gets or sets the scheduling constraints for when the profile /// begins. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "schedule")] + [JsonProperty(PropertyName = "schedule")] public RecurrentSchedule Schedule { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Schedule == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Schedule"); + throw new ValidationException(ValidationRules.CannotBeNull, "Schedule"); } - if (this.Schedule != null) + if (Schedule != null) { - this.Schedule.Validate(); + Schedule.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs index 81137fd8db6a..853f03cdba7a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrenceFrequency.cs @@ -1,35 +1,43 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for RecurrenceFrequency. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum RecurrenceFrequency { - [System.Runtime.Serialization.EnumMember(Value = "None")] + [EnumMember(Value = "None")] None, - [System.Runtime.Serialization.EnumMember(Value = "Second")] + [EnumMember(Value = "Second")] Second, - [System.Runtime.Serialization.EnumMember(Value = "Minute")] + [EnumMember(Value = "Minute")] Minute, - [System.Runtime.Serialization.EnumMember(Value = "Hour")] + [EnumMember(Value = "Hour")] Hour, - [System.Runtime.Serialization.EnumMember(Value = "Day")] + [EnumMember(Value = "Day")] Day, - [System.Runtime.Serialization.EnumMember(Value = "Week")] + [EnumMember(Value = "Week")] Week, - [System.Runtime.Serialization.EnumMember(Value = "Month")] + [EnumMember(Value = "Month")] Month, - [System.Runtime.Serialization.EnumMember(Value = "Year")] + [EnumMember(Value = "Year")] Year } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs index 4f90a5a2b31f..3da515765abf 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RecurrentSchedule.cs @@ -1,13 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -73,7 +80,7 @@ public RecurrentSchedule() { } /// times are not supported). /// A collection of minutes at which the profile /// takes effect at. - public RecurrentSchedule(string timeZone, System.Collections.Generic.IList days, System.Collections.Generic.IList hours, System.Collections.Generic.IList minutes) + public RecurrentSchedule(string timeZone, IList days, IList hours, IList minutes) { TimeZone = timeZone; Days = days; @@ -125,55 +132,56 @@ public RecurrentSchedule(string timeZone, System.Collections.Generic.IList - [Newtonsoft.Json.JsonProperty(PropertyName = "timeZone")] + [JsonProperty(PropertyName = "timeZone")] public string TimeZone { get; set; } /// /// Gets or sets the collection of days that the profile takes effect /// on. Possible values are Sunday through Saturday. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "days")] - public System.Collections.Generic.IList Days { get; set; } + [JsonProperty(PropertyName = "days")] + public IList Days { get; set; } /// /// Gets or sets a collection of hours that the profile takes effect /// on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times /// are not supported). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "hours")] - public System.Collections.Generic.IList Hours { get; set; } + [JsonProperty(PropertyName = "hours")] + public IList Hours { get; set; } /// /// Gets or sets a collection of minutes at which the profile takes /// effect at. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "minutes")] - public System.Collections.Generic.IList Minutes { get; set; } + [JsonProperty(PropertyName = "minutes")] + public IList Minutes { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (TimeZone == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "TimeZone"); + throw new ValidationException(ValidationRules.CannotBeNull, "TimeZone"); } if (Days == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Days"); + throw new ValidationException(ValidationRules.CannotBeNull, "Days"); } if (Hours == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Hours"); + throw new ValidationException(ValidationRules.CannotBeNull, "Hours"); } if (Minutes == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Minutes"); + throw new ValidationException(ValidationRules.CannotBeNull, "Minutes"); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs index 1844e6ddbda3..bf37d7c3a44c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/Resource.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// An azure resource object /// - public partial class Resource : Microsoft.Rest.Azure.IResource + public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. @@ -28,7 +36,7 @@ public Resource() { } /// Azure resource name /// Azure resource type /// Resource tags - public Resource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; @@ -40,45 +48,46 @@ public Resource() { } /// /// Gets azure resource Id /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; private set; } + [JsonProperty(PropertyName = "id")] + public string Id { get; protected set; } /// /// Gets or sets azure resource name /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets azure resource type /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } /// /// Gets or sets resource location /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// /// Gets or sets resource tags /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Location == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs index cc010ea24097..b5299f6e555a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RetentionPolicy.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -37,20 +41,20 @@ public RetentionPolicy(bool enabled, int days) /// Gets or sets a value indicating whether the retention policy is /// enabled. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "enabled")] + [JsonProperty(PropertyName = "enabled")] public bool Enabled { get; set; } /// /// Gets or sets the number of days for the retention in days. A value /// of 0 will retain the events indefinitely. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "days")] + [JsonProperty(PropertyName = "days")] public int Days { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -59,3 +63,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs index 34e5df7ea29d..bc86a7e139af 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleAction.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; using System.Linq; /// @@ -24,3 +27,4 @@ public RuleAction() { } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs index fd25240b7bab..9d07ded9842b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleCondition.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; using System.Linq; /// @@ -23,3 +26,4 @@ public RuleCondition() { } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs index 3ff121627a2a..910f19cafbbe 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleDataSource.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; using System.Linq; /// @@ -23,3 +26,4 @@ public RuleDataSource() { } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs index 618f41b22a95..0266167f566a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleEmailAction.cs @@ -1,20 +1,26 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Specifies the action to send email when the rule condition is /// evaluated. The discriminator is always RuleEmailAction in this case. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleEmailAction")] + [JsonObject("Microsoft.Azure.Management.Insights.Models.RuleEmailAction")] public partial class RuleEmailAction : RuleAction { /// @@ -30,7 +36,7 @@ public RuleEmailAction() { } /// when the alert is activated. /// the list of administrator's custom email /// addresses notifiy of the activation of the alert. - public RuleEmailAction(bool? sendToServiceOwners = default(bool?), System.Collections.Generic.IList customEmails = default(System.Collections.Generic.IList)) + public RuleEmailAction(bool? sendToServiceOwners = default(bool?), IList customEmails = default(IList)) { SendToServiceOwners = sendToServiceOwners; CustomEmails = customEmails; @@ -41,15 +47,16 @@ public RuleEmailAction() { } /// co-adiminstrators) of the service should be notified when the alert /// is activated. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sendToServiceOwners")] + [JsonProperty(PropertyName = "sendToServiceOwners")] public bool? SendToServiceOwners { get; set; } /// /// Gets or sets the list of administrator's custom email addresses /// notifiy of the activation of the alert. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "customEmails")] - public System.Collections.Generic.IList CustomEmails { get; set; } + [JsonProperty(PropertyName = "customEmails")] + public IList CustomEmails { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs index 7e2acff3deb6..80e1cdc90b1c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventClaimsDataSource.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -34,8 +38,9 @@ public RuleManagementEventClaimsDataSource() { } /// /// Gets or sets the email address. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "emailAddress")] + [JsonProperty(PropertyName = "emailAddress")] public string EmailAddress { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs index 2f4cab87a8be..5b5d17eb6ad4 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleManagementEventDataSource.cs @@ -1,20 +1,24 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// /// A rule management event data source. The discriminator fields is always /// RuleManagementEventDataSource in this case. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleManagementEventDataSource")] + [JsonObject("Microsoft.Azure.Management.Insights.Models.RuleManagementEventDataSource")] public partial class RuleManagementEventDataSource : RuleDataSource { /// @@ -59,64 +63,65 @@ public RuleManagementEventDataSource() { } /// /// Gets or sets the event name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "eventName")] + [JsonProperty(PropertyName = "eventName")] public string EventName { get; set; } /// /// Gets or sets the event source. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "eventSource")] + [JsonProperty(PropertyName = "eventSource")] public string EventSource { get; set; } /// /// Gets or sets the level. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "level")] + [JsonProperty(PropertyName = "level")] public string Level { get; set; } /// /// Gets or sets the name of the operation that should be checked for. /// If no name is provided, any operation will match. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "operationName")] + [JsonProperty(PropertyName = "operationName")] public string OperationName { get; set; } /// /// Gets or sets the resource group name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceGroupName")] + [JsonProperty(PropertyName = "resourceGroupName")] public string ResourceGroupName { get; set; } /// /// Gets or sets the resource provider name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceProviderName")] + [JsonProperty(PropertyName = "resourceProviderName")] public string ResourceProviderName { get; set; } /// /// Gets or sets the resource uri. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceUri")] + [JsonProperty(PropertyName = "resourceUri")] public string ResourceUri { get; set; } /// /// Gets or sets the status of the operation that should be checked /// for. If no status is provided, any status will match. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "status")] + [JsonProperty(PropertyName = "status")] public string Status { get; set; } /// /// Gets or sets the substatus. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "subStatus")] + [JsonProperty(PropertyName = "subStatus")] public string SubStatus { get; set; } /// /// Gets or sets the claims. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "claims")] + [JsonProperty(PropertyName = "claims")] public RuleManagementEventClaimsDataSource Claims { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs index 76ced5891bf5..a39fe93f2eb2 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleMetricDataSource.cs @@ -1,20 +1,24 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// /// A rule metric data source. The discriminator value is always /// RuleMetricDataSource in this case. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource")] + [JsonObject("Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource")] public partial class RuleMetricDataSource : RuleDataSource { /// @@ -39,15 +43,16 @@ public RuleMetricDataSource() { } /// Gets or sets the resource identifier of the resource the rule /// monitors. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceUri")] + [JsonProperty(PropertyName = "resourceUri")] public string ResourceUri { get; set; } /// /// Gets or sets the name of the metric that defines what the rule /// monitors. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "metricName")] + [JsonProperty(PropertyName = "metricName")] public string MetricName { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs index f781bdef0b04..25946077eaab 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/RuleWebhookAction.cs @@ -1,20 +1,26 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Specifies the action to post to service when the rule condition is /// evaluated. The discriminator is always RuleWebhookAction in this case. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.RuleWebhookAction")] + [JsonObject("Microsoft.Azure.Management.Insights.Models.RuleWebhookAction")] public partial class RuleWebhookAction : RuleAction { /// @@ -30,7 +36,7 @@ public RuleWebhookAction() { } /// the dictionary of custom properties to /// include with the post operation. These data are appended to the /// webhook payload. - public RuleWebhookAction(string serviceUri = default(string), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary)) + public RuleWebhookAction(string serviceUri = default(string), IDictionary properties = default(IDictionary)) { ServiceUri = serviceUri; Properties = properties; @@ -40,15 +46,16 @@ public RuleWebhookAction() { } /// Gets or sets the service uri to Post the notitication when the /// alert activates or resolves. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serviceUri")] + [JsonProperty(PropertyName = "serviceUri")] public string ServiceUri { get; set; } /// /// Gets or sets the dictionary of custom properties to include with /// the post operation. These data are appended to the webhook payload. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] - public System.Collections.Generic.IDictionary Properties { get; set; } + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs index e7894a6c3d86..0264186e0dcc 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleAction.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -48,7 +52,7 @@ public ScaleAction() { } /// increases or decreases the number of instances. Possible values /// include: 'None', 'Increase', 'Decrease' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "direction")] + [JsonProperty(PropertyName = "direction")] public ScaleDirection Direction { get; set; } /// @@ -56,7 +60,7 @@ public ScaleAction() { } /// rule fires. Possible values include: 'ChangeCount', /// 'PercentChangeCount', 'ExactCount' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public ScaleType Type { get; set; } /// @@ -64,7 +68,7 @@ public ScaleAction() { } /// scaling action. This value must be 1 or greater. The default value /// is 1. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + [JsonProperty(PropertyName = "value")] public string Value { get; set; } /// @@ -72,13 +76,13 @@ public ScaleAction() { } /// action before this action occurs. It must be between 1 week and 1 /// minute in ISO 8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "cooldown")] + [JsonProperty(PropertyName = "cooldown")] public System.TimeSpan Cooldown { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -86,3 +90,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs index 95b5dbce0dbe..9414ce4f8e13 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleCapacity.cs @@ -1,13 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -42,7 +47,7 @@ public ScaleCapacity(string minimum, string maximum, string defaultProperty) /// /// Gets or sets the minimum number of instances for the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "minimum")] + [JsonProperty(PropertyName = "minimum")] public string Minimum { get; set; } /// @@ -50,7 +55,7 @@ public ScaleCapacity(string minimum, string maximum, string defaultProperty) /// actual maximum number of instances is limited by the cores that are /// available in the subscription. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "maximum")] + [JsonProperty(PropertyName = "maximum")] public string Maximum { get; set; } /// @@ -58,29 +63,30 @@ public ScaleCapacity(string minimum, string maximum, string defaultProperty) /// are not available for evaluation. The default is only used if the /// current instance count is lower than the default. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "default")] + [JsonProperty(PropertyName = "default")] public string DefaultProperty { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Minimum == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Minimum"); + throw new ValidationException(ValidationRules.CannotBeNull, "Minimum"); } if (Maximum == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Maximum"); + throw new ValidationException(ValidationRules.CannotBeNull, "Maximum"); } if (DefaultProperty == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "DefaultProperty"); + throw new ValidationException(ValidationRules.CannotBeNull, "DefaultProperty"); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs index 9973ffedc81f..5649cdb8edba 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleDirection.cs @@ -1,25 +1,33 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for ScaleDirection. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ScaleDirection { - [System.Runtime.Serialization.EnumMember(Value = "None")] + [EnumMember(Value = "None")] None, - [System.Runtime.Serialization.EnumMember(Value = "Increase")] + [EnumMember(Value = "Increase")] Increase, - [System.Runtime.Serialization.EnumMember(Value = "Decrease")] + [EnumMember(Value = "Decrease")] Decrease } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs index e495486a0a97..6df87d3458c3 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleRule.cs @@ -1,13 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -36,39 +41,40 @@ public ScaleRule(MetricTrigger metricTrigger, ScaleAction scaleAction) /// /// Gets or sets the trigger that results in a scaling action. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "metricTrigger")] + [JsonProperty(PropertyName = "metricTrigger")] public MetricTrigger MetricTrigger { get; set; } /// /// Gets or sets the parameters for the scaling action. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "scaleAction")] + [JsonProperty(PropertyName = "scaleAction")] public ScaleAction ScaleAction { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (MetricTrigger == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "MetricTrigger"); + throw new ValidationException(ValidationRules.CannotBeNull, "MetricTrigger"); } if (ScaleAction == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ScaleAction"); + throw new ValidationException(ValidationRules.CannotBeNull, "ScaleAction"); } - if (this.MetricTrigger != null) + if (MetricTrigger != null) { - this.MetricTrigger.Validate(); + MetricTrigger.Validate(); } - if (this.ScaleAction != null) + if (ScaleAction != null) { - this.ScaleAction.Validate(); + ScaleAction.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs index f890f163e600..ee09499eb6c9 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ScaleType.cs @@ -1,25 +1,33 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for ScaleType. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ScaleType { - [System.Runtime.Serialization.EnumMember(Value = "ChangeCount")] + [EnumMember(Value = "ChangeCount")] ChangeCount, - [System.Runtime.Serialization.EnumMember(Value = "PercentChangeCount")] + [EnumMember(Value = "PercentChangeCount")] PercentChangeCount, - [System.Runtime.Serialization.EnumMember(Value = "ExactCount")] + [EnumMember(Value = "ExactCount")] ExactCount } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs index f69b4b8391e4..4c89454bcb01 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ServiceDiagnosticSettingsResource.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Description of a service diagnostic setting /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class ServiceDiagnosticSettingsResource : Resource { /// @@ -44,7 +52,7 @@ public ServiceDiagnosticSettingsResource() { } /// Analytics workspace) for a Log Analytics workspace to which you /// would like to send Diagnostic Logs. Example: /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 - public ServiceDiagnosticSettingsResource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), System.Collections.Generic.IList metrics = default(System.Collections.Generic.IList), System.Collections.Generic.IList logs = default(System.Collections.Generic.IList), string workspaceId = default(string)) + public ServiceDiagnosticSettingsResource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string storageAccountId = default(string), string serviceBusRuleId = default(string), IList metrics = default(IList), IList logs = default(IList), string workspaceId = default(string)) : base(location, id, name, type, tags) { StorageAccountId = storageAccountId; @@ -58,7 +66,7 @@ public ServiceDiagnosticSettingsResource() { } /// Gets or sets the resource ID of the storage account to which you /// would like to send Diagnostic Logs. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccountId")] + [JsonProperty(PropertyName = "properties.storageAccountId")] public string StorageAccountId { get; set; } /// @@ -67,20 +75,20 @@ public ServiceDiagnosticSettingsResource() { } /// Diagnostic Logs. The rule ID is of the format: '{service bus /// resource ID}/authorizationrules/{key name}'. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceBusRuleId")] + [JsonProperty(PropertyName = "properties.serviceBusRuleId")] public string ServiceBusRuleId { get; set; } /// /// Gets or sets the list of metric settings. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.metrics")] - public System.Collections.Generic.IList Metrics { get; set; } + [JsonProperty(PropertyName = "properties.metrics")] + public IList Metrics { get; set; } /// /// Gets or sets the list of logs settings. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.logs")] - public System.Collections.Generic.IList Logs { get; set; } + [JsonProperty(PropertyName = "properties.logs")] + public IList Logs { get; set; } /// /// Gets or sets the workspace ID (resource ID of a Log Analytics @@ -88,21 +96,21 @@ public ServiceDiagnosticSettingsResource() { } /// send Diagnostic Logs. Example: /// /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.workspaceId")] + [JsonProperty(PropertyName = "properties.workspaceId")] public string WorkspaceId { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() { base.Validate(); - if (this.Metrics != null) + if (Metrics != null) { - foreach (var element in this.Metrics) + foreach (var element in Metrics) { if (element != null) { @@ -110,9 +118,9 @@ public override void Validate() } } } - if (this.Logs != null) + if (Logs != null) { - foreach (var element1 in this.Logs) + foreach (var element1 in Logs) { if (element1 != null) { @@ -123,3 +131,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs index fcb1be4f4d06..830ab7d639f7 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/ThresholdRuleCondition.cs @@ -1,19 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// /// A rule condition based on a metric crossing a threshold. /// - [Newtonsoft.Json.JsonObject("Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition")] + [JsonObject("Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition")] public partial class ThresholdRuleCondition : RuleCondition { /// @@ -55,7 +59,7 @@ public ThresholdRuleCondition() { } /// For this type dataSource will always be of type /// RuleMetricDataSource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "dataSource")] + [JsonProperty(PropertyName = "dataSource")] public RuleDataSource DataSource { get; set; } /// @@ -63,13 +67,13 @@ public ThresholdRuleCondition() { } /// threshold. Possible values include: 'GreaterThan', /// 'GreaterThanOrEqual', 'LessThan', 'LessThanOrEqual' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "operator")] + [JsonProperty(PropertyName = "operator")] public ConditionOperator OperatorProperty { get; set; } /// /// Gets or sets the threshold value that activates the alert. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "threshold")] + [JsonProperty(PropertyName = "threshold")] public double Threshold { get; set; } /// @@ -77,7 +81,7 @@ public ThresholdRuleCondition() { } /// is used to monitor alert activity based on the threshold. If /// specified then it must be between 5 minutes and 1 day. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "windowSize")] + [JsonProperty(PropertyName = "windowSize")] public System.TimeSpan? WindowSize { get; set; } /// @@ -86,13 +90,13 @@ public ThresholdRuleCondition() { } /// PrimaryAggregationType of the Metric. Possible values include: /// 'Average', 'Minimum', 'Maximum', 'Total', 'Last' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timeAggregation")] + [JsonProperty(PropertyName = "timeAggregation")] public TimeAggregationOperator? TimeAggregation { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -100,3 +104,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs index 4b09fee4ab69..73773a9f8430 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationOperator.cs @@ -1,29 +1,37 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for TimeAggregationOperator. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum TimeAggregationOperator { - [System.Runtime.Serialization.EnumMember(Value = "Average")] + [EnumMember(Value = "Average")] Average, - [System.Runtime.Serialization.EnumMember(Value = "Minimum")] + [EnumMember(Value = "Minimum")] Minimum, - [System.Runtime.Serialization.EnumMember(Value = "Maximum")] + [EnumMember(Value = "Maximum")] Maximum, - [System.Runtime.Serialization.EnumMember(Value = "Total")] + [EnumMember(Value = "Total")] Total, - [System.Runtime.Serialization.EnumMember(Value = "Last")] + [EnumMember(Value = "Last")] Last } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs index 25d280cab005..f2d7d76fcba9 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeAggregationType.cs @@ -1,29 +1,37 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for TimeAggregationType. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum TimeAggregationType { - [System.Runtime.Serialization.EnumMember(Value = "Average")] + [EnumMember(Value = "Average")] Average, - [System.Runtime.Serialization.EnumMember(Value = "Minimum")] + [EnumMember(Value = "Minimum")] Minimum, - [System.Runtime.Serialization.EnumMember(Value = "Maximum")] + [EnumMember(Value = "Maximum")] Maximum, - [System.Runtime.Serialization.EnumMember(Value = "Total")] + [EnumMember(Value = "Total")] Total, - [System.Runtime.Serialization.EnumMember(Value = "Count")] + [EnumMember(Value = "Count")] Count } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs index 900dd61616f2..d3c890881bb9 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/TimeWindow.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -121,25 +125,25 @@ public TimeWindow() { } /// Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga /// Standard Time, Samoa Standard Time, Line Islands Standard Time /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timeZone")] + [JsonProperty(PropertyName = "timeZone")] public string TimeZone { get; set; } /// /// Gets or sets the start time for the profile in ISO 8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "start")] + [JsonProperty(PropertyName = "start")] public System.DateTime Start { get; set; } /// /// Gets or sets the end time for the profile in ISO 8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "end")] + [JsonProperty(PropertyName = "end")] public System.DateTime End { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -148,3 +152,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs index f05ac63ec22b..4178d96f1b7b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/Models/WebhookNotification.cs @@ -1,13 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights.Models { + using Azure; + using Management; + using Insights; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -27,7 +33,7 @@ public WebhookNotification() { } /// notification. /// a property bag of settings. This value can /// be empty. - public WebhookNotification(string serviceUri = default(string), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary)) + public WebhookNotification(string serviceUri = default(string), IDictionary properties = default(IDictionary)) { ServiceUri = serviceUri; Properties = properties; @@ -36,14 +42,15 @@ public WebhookNotification() { } /// /// Gets or sets the service address to receive the notification. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serviceUri")] + [JsonProperty(PropertyName = "serviceUri")] public string ServiceUri { get; set; } /// /// Gets or sets a property bag of settings. This value can be empty. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] - public System.Collections.Generic.IDictionary Properties { get; set; } + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs index 5c081a38d66b..e503ced7e4ac 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/MonitorManagementClient.cs @@ -1,22 +1,30 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Serialization; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; /// /// Composite Swagger for Monitor Management Client /// - public partial class MonitorManagementClient : Microsoft.Rest.ServiceClient, IMonitorManagementClient, IAzureClient + public partial class MonitorManagementClient : ServiceClient, IMonitorManagementClient, IAzureClient { /// /// The base URI of the service. @@ -26,17 +34,17 @@ public partial class MonitorManagementClient : Microsoft.Rest.ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. /// - public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// /// The Azure subscription Id. @@ -93,7 +101,7 @@ public partial class MonitorManagementClient : Microsoft.Rest.ServiceClient protected MonitorManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -107,7 +115,7 @@ protected MonitorManagementClient(params System.Net.Http.DelegatingHandler[] han /// protected MonitorManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -128,7 +136,7 @@ protected MonitorManagementClient(System.Uri baseUri, params System.Net.Http.Del { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -152,7 +160,7 @@ protected MonitorManagementClient(System.Uri baseUri, System.Net.Http.HttpClient { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -167,16 +175,16 @@ protected MonitorManagementClient(System.Uri baseUri, System.Net.Http.HttpClient /// /// Thrown when a required parameter is null /// - public MonitorManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public MonitorManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -195,16 +203,16 @@ public MonitorManagementClient(Microsoft.Rest.ServiceClientCredentials credentia /// /// Thrown when a required parameter is null /// - public MonitorManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public MonitorManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -223,7 +231,7 @@ public MonitorManagementClient(Microsoft.Rest.ServiceClientCredentials credentia /// /// Thrown when a required parameter is null /// - public MonitorManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public MonitorManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -233,11 +241,11 @@ public MonitorManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientC { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -259,7 +267,7 @@ public MonitorManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientC /// /// Thrown when a required parameter is null /// - public MonitorManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public MonitorManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -269,11 +277,11 @@ public MonitorManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientC { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -286,50 +294,51 @@ public MonitorManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientC /// private void Initialize() { - this.AutoscaleSettings = new AutoscaleSettingsOperations(this); - this.ServiceDiagnosticSettings = new ServiceDiagnosticSettingsOperations(this); - this.AlertRules = new AlertRulesOperations(this); - this.AlertRuleIncidents = new AlertRuleIncidentsOperations(this); - this.LogProfiles = new LogProfilesOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + AutoscaleSettings = new AutoscaleSettingsOperations(this); + ServiceDiagnosticSettings = new ServiceDiagnosticSettingsOperations(this); + AlertRules = new AlertRulesOperations(this); + AlertRuleIncidents = new AlertRuleIncidentsOperations(this); + LogProfiles = new LogProfilesOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings { - Formatting = Newtonsoft.Json.Formatting.Indented, - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings { - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicSerializeJsonConverter("odata.type")); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicDeserializeJsonConverter("odata.type")); - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicSerializeJsonConverter("odata.type")); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicDeserializeJsonConverter("odata.type")); - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicSerializeJsonConverter("odata.type")); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicDeserializeJsonConverter("odata.type")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("odata.type")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("odata.type")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("odata.type")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("odata.type")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("odata.type")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("odata.type")); CustomInitialize(); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs index 9cd0387dc6d5..49a5129b808b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// ServiceDiagnosticSettingsOperations operations. /// - internal partial class ServiceDiagnosticSettingsOperations : Microsoft.Rest.IServiceOperations, IServiceDiagnosticSettingsOperations + internal partial class ServiceDiagnosticSettingsOperations : IServiceOperations, IServiceDiagnosticSettingsOperations { /// /// Initializes a new instance of the ServiceDiagnosticSettingsOperations class. @@ -29,11 +38,11 @@ internal partial class ServiceDiagnosticSettingsOperations : Microsoft.Rest.ISer /// internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -53,42 +62,45 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceUri, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceUri == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceUri"); } string apiVersion = "2015-07-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceUri", resourceUri); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/diagnosticSettings/service").ToString(); _url = _url.Replace("{resourceUri}", System.Uri.EscapeDataString(resourceUri)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -98,23 +110,25 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -130,51 +144,51 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -184,7 +198,7 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -197,21 +211,21 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -231,27 +245,30 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceUri, ServiceDiagnosticSettingsResource parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceUri == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceUri"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { @@ -259,23 +276,23 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) } string apiVersion = "2015-07-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceUri", resourceUri); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/diagnosticSettings/service").ToString(); _url = _url.Replace("{resourceUri}", System.Uri.EscapeDataString(resourceUri)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -285,23 +302,25 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -318,56 +337,56 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -377,7 +396,7 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -390,24 +409,25 @@ internal ServiceDiagnosticSettingsOperations(MonitorManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs index aa8b53d811cc..c55c07cb8151 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Management/Monitor/ServiceDiagnosticSettingsOperationsExtensions.cs @@ -1,16 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Insights { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for ServiceDiagnosticSettingsOperations. @@ -28,7 +32,7 @@ public static partial class ServiceDiagnosticSettingsOperationsExtensions /// public static ServiceDiagnosticSettingsResource Get(this IServiceDiagnosticSettingsOperations operations, string resourceUri) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServiceDiagnosticSettingsOperations)s).GetAsync(resourceUri), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceUri).GetAwaiter().GetResult(); } /// @@ -43,7 +47,7 @@ public static ServiceDiagnosticSettingsResource Get(this IServiceDiagnosticSetti /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceUri, null, cancellationToken).ConfigureAwait(false)) { @@ -65,7 +69,7 @@ public static ServiceDiagnosticSettingsResource Get(this IServiceDiagnosticSetti /// public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsResource parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServiceDiagnosticSettingsOperations)s).CreateOrUpdateAsync(resourceUri, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceUri, parameters).GetAwaiter().GetResult(); } /// @@ -83,7 +87,7 @@ public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiag /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IServiceDiagnosticSettingsOperations operations, string resourceUri, ServiceDiagnosticSettingsResource parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceUri, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -93,3 +97,4 @@ public static ServiceDiagnosticSettingsResource CreateOrUpdate(this IServiceDiag } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs index 6d189bb64ba0..e68df67e6ced 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// ActivityLogsOperations operations. /// - internal partial class ActivityLogsOperations : Microsoft.Rest.IServiceOperations, IActivityLogsOperations + internal partial class ActivityLogsOperations : IServiceOperations, IActivityLogsOperations { /// /// Initializes a new instance of the ActivityLogsOperations class. @@ -29,11 +38,11 @@ internal partial class ActivityLogsOperations : Microsoft.Rest.IServiceOperation /// internal ActivityLogsOperations(MonitorClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -78,47 +87,50 @@ internal ActivityLogsOperations(MonitorClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2015-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("select", select); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/microsoft.insights/eventtypes/management/values").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } @@ -136,23 +148,25 @@ internal ActivityLogsOperations(MonitorClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -168,51 +182,51 @@ internal ActivityLogsOperations(MonitorClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -222,7 +236,7 @@ internal ActivityLogsOperations(MonitorClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -235,21 +249,21 @@ internal ActivityLogsOperations(MonitorClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -283,61 +297,66 @@ internal ActivityLogsOperations(MonitorClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -353,51 +372,51 @@ internal ActivityLogsOperations(MonitorClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -407,7 +426,7 @@ internal ActivityLogsOperations(MonitorClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -420,24 +439,25 @@ internal ActivityLogsOperations(MonitorClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs index 0b29165df177..d12543cab1f9 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ActivityLogsOperationsExtensions.cs @@ -1,16 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for ActivityLogsOperations. @@ -51,9 +55,9 @@ public static partial class ActivityLogsOperationsExtensions /// properties, resourceGroupName, resourceProviderName, resourceId, status, /// submissionTimestamp, subStatus, subscriptionId /// - public static Microsoft.Rest.Azure.IPage List(this IActivityLogsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string)) + public static IPage List(this IActivityLogsOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IActivityLogsOperations)s).ListAsync(odataQuery, select), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(odataQuery, select).GetAwaiter().GetResult(); } /// @@ -93,7 +97,7 @@ public static partial class ActivityLogsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IActivityLogsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IActivityLogsOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(odataQuery, select, null, cancellationToken).ConfigureAwait(false)) { @@ -127,9 +131,9 @@ public static partial class ActivityLogsOperationsExtensions /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListNext(this IActivityLogsOperations operations, string nextPageLink) + public static IPage ListNext(this IActivityLogsOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IActivityLogsOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -161,7 +165,7 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IActivityLogsO /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IActivityLogsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListNextAsync(this IActivityLogsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -171,3 +175,4 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IActivityLogsO } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs index a819aca0050c..f4012557c2a4 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperations.cs @@ -1,22 +1,30 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// EventCategoriesOperations operations. /// - internal partial class EventCategoriesOperations : Microsoft.Rest.IServiceOperations, IEventCategoriesOperations + internal partial class EventCategoriesOperations : IServiceOperations, IEventCategoriesOperations { /// /// Initializes a new instance of the EventCategoriesOperations class. @@ -29,11 +37,11 @@ internal partial class EventCategoriesOperations : Microsoft.Rest.IServiceOperat /// internal EventCategoriesOperations(MonitorClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -52,33 +60,33 @@ internal EventCategoriesOperations(MonitorClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { string apiVersion = "2015-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/microsoft.insights/eventcategories").ToString(); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -88,23 +96,25 @@ internal EventCategoriesOperations(MonitorClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -120,51 +130,51 @@ internal EventCategoriesOperations(MonitorClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -174,7 +184,7 @@ internal EventCategoriesOperations(MonitorClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -187,24 +197,25 @@ internal EventCategoriesOperations(MonitorClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs index 35167a713c31..30d5d36f0abe 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/EventCategoriesOperationsExtensions.cs @@ -1,16 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { + using Azure; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for EventCategoriesOperations. @@ -25,9 +30,9 @@ public static partial class EventCategoriesOperationsExtensions /// /// The operations group for this extension method. /// - public static System.Collections.Generic.IEnumerable List(this IEventCategoriesOperations operations) + public static IEnumerable List(this IEventCategoriesOperations operations) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IEventCategoriesOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// @@ -41,7 +46,7 @@ public static System.Collections.Generic.IEnumerable List(thi /// /// The cancellation token. /// - public static async Task> ListAsync(this IEventCategoriesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IEventCategoriesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -51,3 +56,4 @@ public static System.Collections.Generic.IEnumerable List(thi } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs index 9c525b6d9337..d8013661def9 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IActivityLogsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// ActivityLogsOperations operations. @@ -65,7 +72,7 @@ public partial interface IActivityLogsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Provides the list of events. The **$filter** is very restricted and /// allows only the following patterns. - List events for a resource @@ -106,6 +113,7 @@ public partial interface IActivityLogsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs index 0d1e7f6c1a55..d07b991b596e 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IEventCategoriesOperations.cs @@ -1,15 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// EventCategoriesOperations operations. @@ -37,6 +43,7 @@ public partial interface IEventCategoriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs index 257c9edc38b3..67983640741b 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricDefinitionsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// MetricDefinitionsOperations operations. @@ -46,6 +53,7 @@ public partial interface IMetricDefinitionsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceUri, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs index 35b0816b904e..b397a606aa18 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMetricsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// MetricsOperations operations. @@ -61,6 +68,7 @@ public partial interface IMetricsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceUri, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs index addfaddcdb12..fb915f24e9b3 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IMonitorClient.cs @@ -1,16 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; /// /// Composite Swagger for Monitor Client @@ -25,17 +27,17 @@ public partial interface IMonitorClient : System.IDisposable /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. /// - Microsoft.Rest.ServiceClientCredentials Credentials { get; } + ServiceClientCredentials Credentials { get; } /// /// The Azure subscription Id. @@ -92,3 +94,4 @@ public partial interface IMonitorClient : System.IDisposable } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs index 1dfb34d328b2..675588cd0e49 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/ITenantActivityLogsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// TenantActivityLogsOperations operations. @@ -71,7 +78,7 @@ public partial interface ITenantActivityLogsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get the Activity Logs for the Tenant. Everything that is applicable /// to the API to get the Activity Log for the subscription is @@ -118,6 +125,7 @@ public partial interface ITenantActivityLogsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs index 7de1d078bbde..150aa42ff8ff 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/IUsageMetricsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// UsageMetricsOperations operations. @@ -23,7 +30,8 @@ public partial interface IUsageMetricsOperations /// The identifier of the resource. /// /// - /// The client Api Version. + /// Client Api Version. NOTE: This is not a client property, it must be + /// explicit in the call and there is no default value. /// /// /// OData parameters to apply to the operation. @@ -43,6 +51,7 @@ public partial interface IUsageMetricsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceUri, string apiVersion, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs index 52feec5721cf..f7456ee18504 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// MetricDefinitionsOperations operations. /// - internal partial class MetricDefinitionsOperations : Microsoft.Rest.IServiceOperations, IMetricDefinitionsOperations + internal partial class MetricDefinitionsOperations : IServiceOperations, IMetricDefinitionsOperations { /// /// Initializes a new instance of the MetricDefinitionsOperations class. @@ -29,11 +38,11 @@ internal partial class MetricDefinitionsOperations : Microsoft.Rest.IServiceOper /// internal MetricDefinitionsOperations(MonitorClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -61,47 +70,50 @@ internal MetricDefinitionsOperations(MonitorClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceUri, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceUri == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceUri"); } string apiVersion = "2016-03-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceUri", resourceUri); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/metricDefinitions").ToString(); _url = _url.Replace("{resourceUri}", resourceUri); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } @@ -115,23 +127,25 @@ internal MetricDefinitionsOperations(MonitorClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -147,51 +161,51 @@ internal MetricDefinitionsOperations(MonitorClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -201,7 +215,7 @@ internal MetricDefinitionsOperations(MonitorClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -214,24 +228,25 @@ internal MetricDefinitionsOperations(MonitorClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs index a15ff262a5c8..55ebf40d9553 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricDefinitionsOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for MetricDefinitionsOperations. @@ -34,9 +40,9 @@ public static partial class MetricDefinitionsOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static System.Collections.Generic.IEnumerable List(this IMetricDefinitionsOperations operations, string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + public static IEnumerable List(this IMetricDefinitionsOperations operations, string resourceUri, ODataQuery odataQuery = default(ODataQuery)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IMetricDefinitionsOperations)s).ListAsync(resourceUri, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceUri, odataQuery).GetAwaiter().GetResult(); } /// @@ -59,7 +65,7 @@ public static partial class MetricDefinitionsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IMetricDefinitionsOperations operations, string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IMetricDefinitionsOperations operations, string resourceUri, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(resourceUri, odataQuery, null, cancellationToken).ConfigureAwait(false)) { @@ -69,3 +75,4 @@ public static partial class MetricDefinitionsOperationsExtensions } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs index 699548d6231b..fb3e07d6bbd6 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// MetricsOperations operations. /// - internal partial class MetricsOperations : Microsoft.Rest.IServiceOperations, IMetricsOperations + internal partial class MetricsOperations : IServiceOperations, IMetricsOperations { /// /// Initializes a new instance of the MetricsOperations class. @@ -29,11 +38,11 @@ internal partial class MetricsOperations : Microsoft.Rest.IServiceOperations internal MetricsOperations(MonitorClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -74,47 +83,50 @@ internal MetricsOperations(MonitorClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceUri, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceUri == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceUri"); } string apiVersion = "2016-09-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceUri", resourceUri); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/providers/microsoft.insights/metrics").ToString(); _url = _url.Replace("{resourceUri}", resourceUri); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } @@ -128,23 +140,25 @@ internal MetricsOperations(MonitorClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -160,51 +174,51 @@ internal MetricsOperations(MonitorClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -214,7 +228,7 @@ internal MetricsOperations(MonitorClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -227,24 +241,25 @@ internal MetricsOperations(MonitorClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs index eb23313bd0ca..498882faa959 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MetricsOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for MetricsOperations. @@ -47,9 +53,9 @@ public static partial class MetricsOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static System.Collections.Generic.IEnumerable List(this IMetricsOperations operations, string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + public static IEnumerable List(this IMetricsOperations operations, string resourceUri, ODataQuery odataQuery = default(ODataQuery)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IMetricsOperations)s).ListAsync(resourceUri, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceUri, odataQuery).GetAwaiter().GetResult(); } /// @@ -85,7 +91,7 @@ public static partial class MetricsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IMetricsOperations operations, string resourceUri, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IMetricsOperations operations, string resourceUri, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(resourceUri, odataQuery, null, cancellationToken).ConfigureAwait(false)) { @@ -95,3 +101,4 @@ public static partial class MetricsOperationsExtensions } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs index af98affd34d9..f003139c2b6c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/AggregationType.cs @@ -1,31 +1,38 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for AggregationType. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum AggregationType { - [System.Runtime.Serialization.EnumMember(Value = "None")] + [EnumMember(Value = "None")] None, - [System.Runtime.Serialization.EnumMember(Value = "Average")] + [EnumMember(Value = "Average")] Average, - [System.Runtime.Serialization.EnumMember(Value = "Count")] + [EnumMember(Value = "Count")] Count, - [System.Runtime.Serialization.EnumMember(Value = "Minimum")] + [EnumMember(Value = "Minimum")] Minimum, - [System.Runtime.Serialization.EnumMember(Value = "Maximum")] + [EnumMember(Value = "Maximum")] Maximum, - [System.Runtime.Serialization.EnumMember(Value = "Total")] + [EnumMember(Value = "Total")] Total } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs index 850d6c323b45..fb2f2fca8e93 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventData.cs @@ -1,13 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -87,7 +92,7 @@ public EventData() { } /// the Azure subscription Id usually a /// GUID. /// the Azure tenant Id - public EventData(EventLevel level, System.DateTime eventTimestamp, System.DateTime submissionTimestamp, SenderAuthorization authorization = default(SenderAuthorization), System.Collections.Generic.IDictionary claims = default(System.Collections.Generic.IDictionary), string caller = default(string), string description = default(string), string id = default(string), string eventDataId = default(string), string correlationId = default(string), LocalizableString eventName = default(LocalizableString), LocalizableString category = default(LocalizableString), HttpRequestInfo httpRequest = default(HttpRequestInfo), string resourceGroupName = default(string), LocalizableString resourceProviderName = default(LocalizableString), string resourceId = default(string), LocalizableString resourceType = default(LocalizableString), string operationId = default(string), LocalizableString operationName = default(LocalizableString), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary), LocalizableString status = default(LocalizableString), LocalizableString subStatus = default(LocalizableString), string subscriptionId = default(string), string tenantId = default(string)) + public EventData(EventLevel level, System.DateTime eventTimestamp, System.DateTime submissionTimestamp, SenderAuthorization authorization = default(SenderAuthorization), IDictionary claims = default(IDictionary), string caller = default(string), string description = default(string), string id = default(string), string eventDataId = default(string), string correlationId = default(string), LocalizableString eventName = default(LocalizableString), LocalizableString category = default(LocalizableString), HttpRequestInfo httpRequest = default(HttpRequestInfo), string resourceGroupName = default(string), LocalizableString resourceProviderName = default(LocalizableString), string resourceId = default(string), LocalizableString resourceType = default(LocalizableString), string operationId = default(string), LocalizableString operationName = default(LocalizableString), IDictionary properties = default(IDictionary), LocalizableString status = default(LocalizableString), LocalizableString subStatus = default(LocalizableString), string subscriptionId = default(string), string tenantId = default(string)) { Authorization = authorization; Claims = claims; @@ -121,40 +126,40 @@ public EventData() { } /// properties of the event. These usually include the 'action', 'role' /// and the 'scope' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "authorization")] + [JsonProperty(PropertyName = "authorization")] public SenderAuthorization Authorization { get; set; } /// /// Gets or sets key value pairs to identify ARM permissions. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "claims")] - public System.Collections.Generic.IDictionary Claims { get; set; } + [JsonProperty(PropertyName = "claims")] + public IDictionary Claims { get; set; } /// /// Gets or sets the email address of the user who has performed the /// operation, the UPN claim or SPN claim based on availability. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "caller")] + [JsonProperty(PropertyName = "caller")] public string Caller { get; set; } /// /// Gets or sets the description of the event. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// Gets or sets the Id of this event as required by ARM for RBAC. It /// contains the EventDataID and a timestamp information. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Gets or sets the event data Id. This is a unique identifier for an /// event. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "eventDataId")] + [JsonProperty(PropertyName = "eventDataId")] public string EventDataId { get; set; } /// @@ -162,7 +167,7 @@ public EventData() { } /// format. The correlation Id is shared among the events that belong /// to the same uber operation. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "correlationId")] + [JsonProperty(PropertyName = "correlationId")] public string CorrelationId { get; set; } /// @@ -170,13 +175,13 @@ public EventData() { } /// OperationName. For practical purposes, OperationName might be more /// appealing to end users. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "eventName")] + [JsonProperty(PropertyName = "eventName")] public LocalizableString EventName { get; set; } /// /// Gets or sets the event category. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "category")] + [JsonProperty(PropertyName = "category")] public LocalizableString Category { get; set; } /// @@ -184,39 +189,39 @@ public EventData() { } /// 'clientRequestId', 'clientIpAddress' (IP address of the user who /// initiated the event) and 'method' (HTTP method e.g. PUT). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "httpRequest")] + [JsonProperty(PropertyName = "httpRequest")] public HttpRequestInfo HttpRequest { get; set; } /// /// Gets or sets the event level. Possible values include: 'Critical', /// 'Error', 'Warning', 'Informational', 'Verbose' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "level")] + [JsonProperty(PropertyName = "level")] public EventLevel Level { get; set; } /// /// Gets or sets the resource group name of the impacted resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceGroupName")] + [JsonProperty(PropertyName = "resourceGroupName")] public string ResourceGroupName { get; set; } /// /// Gets or sets the resource provider name of the impacted resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceProviderName")] + [JsonProperty(PropertyName = "resourceProviderName")] public LocalizableString ResourceProviderName { get; set; } /// /// Gets or sets the resource uri that uniquely identifies the resource /// that caused this event. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceId")] + [JsonProperty(PropertyName = "resourceId")] public string ResourceId { get; set; } /// /// Gets or sets the resource type /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceType")] + [JsonProperty(PropertyName = "resourceType")] public LocalizableString ResourceType { get; set; } /// @@ -224,13 +229,13 @@ public EventData() { } /// corresponding to single operation. This value should not be /// confused with EventName. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "operationId")] + [JsonProperty(PropertyName = "operationId")] public string OperationId { get; set; } /// /// Gets or sets the operation name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "operationName")] + [JsonProperty(PropertyName = "operationName")] public LocalizableString OperationName { get; set; } /// @@ -238,15 +243,15 @@ public EventData() { } /// Dictionary&lt;String, String&gt;) that includes details /// about the event. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] - public System.Collections.Generic.IDictionary Properties { get; set; } + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } /// /// Gets or sets a string describing the status of the operation. Some /// typical values are: Started, In progress, Succeeded, Failed, /// Resolved. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "status")] + [JsonProperty(PropertyName = "status")] public LocalizableString Status { get; set; } /// @@ -259,7 +264,7 @@ public EventData() { } /// (HTTP Status Code: 500), Service Unavailable (HTTP Status /// Code:503), Gateway Timeout (HTTP Status Code: 504) /// - [Newtonsoft.Json.JsonProperty(PropertyName = "subStatus")] + [JsonProperty(PropertyName = "subStatus")] public LocalizableString SubStatus { get; set; } /// @@ -267,7 +272,7 @@ public EventData() { } /// Azure service processing the request corresponding the event. It in /// ISO 8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "eventTimestamp")] + [JsonProperty(PropertyName = "eventTimestamp")] public System.DateTime EventTimestamp { get; set; } /// @@ -277,57 +282,58 @@ public EventData() { } /// the occurence time of the event, and the time that the event is /// submitted to the Azure logging infrastructure. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "submissionTimestamp")] + [JsonProperty(PropertyName = "submissionTimestamp")] public System.DateTime SubmissionTimestamp { get; set; } /// /// Gets or sets the Azure subscription Id usually a GUID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "subscriptionId")] + [JsonProperty(PropertyName = "subscriptionId")] public string SubscriptionId { get; set; } /// /// Gets or sets the Azure tenant Id /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tenantId")] + [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.EventName != null) + if (EventName != null) { - this.EventName.Validate(); + EventName.Validate(); } - if (this.Category != null) + if (Category != null) { - this.Category.Validate(); + Category.Validate(); } - if (this.ResourceProviderName != null) + if (ResourceProviderName != null) { - this.ResourceProviderName.Validate(); + ResourceProviderName.Validate(); } - if (this.ResourceType != null) + if (ResourceType != null) { - this.ResourceType.Validate(); + ResourceType.Validate(); } - if (this.OperationName != null) + if (OperationName != null) { - this.OperationName.Validate(); + OperationName.Validate(); } - if (this.Status != null) + if (Status != null) { - this.Status.Validate(); + Status.Validate(); } - if (this.SubStatus != null) + if (SubStatus != null) { - this.SubStatus.Validate(); + SubStatus.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs index de80b1b60efc..4cad39cf2aca 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/EventLevel.cs @@ -1,29 +1,36 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for EventLevel. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum EventLevel { - [System.Runtime.Serialization.EnumMember(Value = "Critical")] + [EnumMember(Value = "Critical")] Critical, - [System.Runtime.Serialization.EnumMember(Value = "Error")] + [EnumMember(Value = "Error")] Error, - [System.Runtime.Serialization.EnumMember(Value = "Warning")] + [EnumMember(Value = "Warning")] Warning, - [System.Runtime.Serialization.EnumMember(Value = "Informational")] + [EnumMember(Value = "Informational")] Informational, - [System.Runtime.Serialization.EnumMember(Value = "Verbose")] + [EnumMember(Value = "Verbose")] Verbose } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs index 52405fc6a672..53c5d156af64 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/HttpRequestInfo.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -38,26 +41,27 @@ public HttpRequestInfo() { } /// /// Gets or sets the client request id. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "clientRequestId")] + [JsonProperty(PropertyName = "clientRequestId")] public string ClientRequestId { get; set; } /// /// Gets or sets the client Ip Address /// - [Newtonsoft.Json.JsonProperty(PropertyName = "clientIpAddress")] + [JsonProperty(PropertyName = "clientIpAddress")] public string ClientIpAddress { get; set; } /// /// Gets or sets the Http request method. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "method")] + [JsonProperty(PropertyName = "method")] public string Method { get; set; } /// /// Gets or sets the Uri. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "uri")] + [JsonProperty(PropertyName = "uri")] public string Uri { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs index 0473a143203e..97f62d2a98f9 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/LocalizableString.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -34,27 +38,28 @@ public LocalizableString() { } /// /// Gets or sets the invariant value. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + [JsonProperty(PropertyName = "value")] public string Value { get; set; } /// /// Gets or sets the locale specific value. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "localizedValue")] + [JsonProperty(PropertyName = "localizedValue")] public string LocalizedValue { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Value == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Value"); + throw new ValidationException(ValidationRules.CannotBeNull, "Value"); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs index 6130c17abe11..13760544a07d 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Metric.cs @@ -1,13 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -33,7 +39,7 @@ public Metric() { } /// the id, resourceId, of the metric. /// the resource type of the metric /// resource. - public Metric(LocalizableString name, Unit unit, System.Collections.Generic.IList data, string id = default(string), string type = default(string)) + public Metric(LocalizableString name, Unit unit, IList data, string id = default(string), string type = default(string)) { Id = id; Type = type; @@ -45,20 +51,20 @@ public Metric() { } /// /// Gets or sets the id, resourceId, of the metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Gets or sets the resource type of the metric resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets the name and the display name of the metric, i.e. it /// is localizable string. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public LocalizableString Name { get; set; } /// @@ -66,38 +72,38 @@ public Metric() { } /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond', /// 'Percent', 'MilliSeconds' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + [JsonProperty(PropertyName = "unit")] public Unit Unit { get; set; } /// /// Gets or sets array of data points representing the metric values. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "data")] - public System.Collections.Generic.IList Data { get; set; } + [JsonProperty(PropertyName = "data")] + public IList Data { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } if (Data == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Data"); + throw new ValidationException(ValidationRules.CannotBeNull, "Data"); } - if (this.Name != null) + if (Name != null) { - this.Name.Validate(); + Name.Validate(); } - if (this.Data != null) + if (Data != null) { - foreach (var element in this.Data) + foreach (var element in Data) { if (element != null) { @@ -108,3 +114,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs index a358beacfec8..f3bce298079f 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricAvailability.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -40,15 +43,16 @@ public MetricAvailability() { } /// Gets or sets the time grain specifies the aggregation interval for /// the metric. Expressed as a duration 'PT1M', 'P1D', etc. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timeGrain")] + [JsonProperty(PropertyName = "timeGrain")] public System.TimeSpan? TimeGrain { get; set; } /// /// Gets or sets the retention period for the metric at the specified /// timegrain. Expressed as a duration 'PT1M', 'P1D', etc. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "retention")] + [JsonProperty(PropertyName = "retention")] public System.TimeSpan? Retention { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs index 72c618568142..83aa7d8e6d88 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricDefinition.cs @@ -1,13 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -38,7 +43,7 @@ public MetricDefinition() { } /// aggregation intervals are available to be queried. /// the resource identifier of the metric /// definition. - public MetricDefinition(string resourceId = default(string), LocalizableString name = default(LocalizableString), Unit? unit = default(Unit?), AggregationType? primaryAggregationType = default(AggregationType?), System.Collections.Generic.IList metricAvailabilities = default(System.Collections.Generic.IList), string id = default(string)) + public MetricDefinition(string resourceId = default(string), LocalizableString name = default(LocalizableString), Unit? unit = default(Unit?), AggregationType? primaryAggregationType = default(AggregationType?), IList metricAvailabilities = default(IList), string id = default(string)) { ResourceId = resourceId; Name = name; @@ -52,14 +57,14 @@ public MetricDefinition() { } /// Gets or sets the resource identifier of the resource that emitted /// the metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceId")] + [JsonProperty(PropertyName = "resourceId")] public string ResourceId { get; set; } /// /// Gets or sets the name and the display name of the metric, i.e. it /// is a localizable string. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public LocalizableString Name { get; set; } /// @@ -67,7 +72,7 @@ public MetricDefinition() { } /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond', /// 'Percent', 'MilliSeconds' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + [JsonProperty(PropertyName = "unit")] public Unit? Unit { get; set; } /// @@ -75,34 +80,35 @@ public MetricDefinition() { } /// the values for display. Possible values include: 'None', 'Average', /// 'Count', 'Minimum', 'Maximum', 'Total' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "primaryAggregationType")] + [JsonProperty(PropertyName = "primaryAggregationType")] public AggregationType? PrimaryAggregationType { get; set; } /// /// Gets or sets the collection of what aggregation intervals are /// available to be queried. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "metricAvailabilities")] - public System.Collections.Generic.IList MetricAvailabilities { get; set; } + [JsonProperty(PropertyName = "metricAvailabilities")] + public IList MetricAvailabilities { get; set; } /// /// Gets or sets the resource identifier of the metric definition. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.Name != null) + if (Name != null) { - this.Name.Validate(); + Name.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs index ed93e020c462..7a06d8c16731 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/MetricValue.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -46,31 +49,31 @@ public MetricValue() { } /// /// Gets or sets the timestamp for the metric value in ISO 8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "timeStamp")] + [JsonProperty(PropertyName = "timeStamp")] public System.DateTime TimeStamp { get; set; } /// /// Gets or sets the average value in the time range. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "average")] + [JsonProperty(PropertyName = "average")] public double? Average { get; set; } /// /// Gets or sets the least value in the time range. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "minimum")] + [JsonProperty(PropertyName = "minimum")] public double? Minimum { get; set; } /// /// Gets or sets the greatest value in the time range. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "maximum")] + [JsonProperty(PropertyName = "maximum")] public double? Maximum { get; set; } /// /// Gets or sets the sum of all of the values in the time range. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "total")] + [JsonProperty(PropertyName = "total")] public double? Total { get; set; } /// @@ -78,13 +81,13 @@ public MetricValue() { } /// to determine the number of values that contributed to the average /// value. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "count")] + [JsonProperty(PropertyName = "count")] public long? Count { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -93,3 +96,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs index 92e2a6b0a157..18d07a340bf3 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page.cs @@ -1,46 +1,54 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("")] - public System.String NextPageLink { get; private set; } + [JsonProperty("")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs index 48ed67f34acd..70707a9a7e03 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Page1.cs @@ -1,46 +1,54 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page1 : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page1 : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("nextLink")] - public System.String NextPageLink { get; private set; } + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs index 252f03e03705..7bc6b3cb5f24 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/SenderAuthorization.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -39,20 +42,21 @@ public SenderAuthorization() { } /// Gets or sets the permissible actions. For instance: /// microsoft.support/supporttickets/write /// - [Newtonsoft.Json.JsonProperty(PropertyName = "action")] + [JsonProperty(PropertyName = "action")] public string Action { get; set; } /// /// Gets or sets the role of the user. For instance: Subscription Admin /// - [Newtonsoft.Json.JsonProperty(PropertyName = "role")] + [JsonProperty(PropertyName = "role")] public string Role { get; set; } /// /// Gets or sets the scope. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "scope")] + [JsonProperty(PropertyName = "scope")] public string Scope { get; set; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs index ddc1f81c334a..cb54242d6f0c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/Unit.cs @@ -1,33 +1,40 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for Unit. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum Unit { - [System.Runtime.Serialization.EnumMember(Value = "Count")] + [EnumMember(Value = "Count")] Count, - [System.Runtime.Serialization.EnumMember(Value = "Bytes")] + [EnumMember(Value = "Bytes")] Bytes, - [System.Runtime.Serialization.EnumMember(Value = "Seconds")] + [EnumMember(Value = "Seconds")] Seconds, - [System.Runtime.Serialization.EnumMember(Value = "CountPerSecond")] + [EnumMember(Value = "CountPerSecond")] CountPerSecond, - [System.Runtime.Serialization.EnumMember(Value = "BytesPerSecond")] + [EnumMember(Value = "BytesPerSecond")] BytesPerSecond, - [System.Runtime.Serialization.EnumMember(Value = "Percent")] + [EnumMember(Value = "Percent")] Percent, - [System.Runtime.Serialization.EnumMember(Value = "MilliSeconds")] + [EnumMember(Value = "MilliSeconds")] MilliSeconds } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs index 8192c4e83b27..b5029121edc9 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/Models/UsageMetric.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights.Models { + using Azure; + using Insights; + using Newtonsoft.Json; using System.Linq; /// @@ -47,57 +50,58 @@ public UsageMetric() { } /// /// Gets or sets the usage metric name and display name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public LocalizableString Name { get; set; } /// /// Gets or sets the current value for the usage metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "currentValue")] + [JsonProperty(PropertyName = "currentValue")] public double? CurrentValue { get; set; } /// /// Gets or sets the id for the usage metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Gets or sets the quota limit the usage metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "limit")] + [JsonProperty(PropertyName = "limit")] public double? Limit { get; set; } /// /// Gets or sets the unit for the usage metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + [JsonProperty(PropertyName = "unit")] public string Unit { get; set; } /// /// Gets or sets the next reset time for the current value. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nextResetTime")] + [JsonProperty(PropertyName = "nextResetTime")] public System.DateTime? NextResetTime { get; set; } /// /// Gets or sets the amount of time it takes to reset the value. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "quotaPeriod")] + [JsonProperty(PropertyName = "quotaPeriod")] public System.TimeSpan? QuotaPeriod { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.Name != null) + if (Name != null) { - this.Name.Validate(); + Name.Validate(); } } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs index e5b00c6b38af..2f2687621ce3 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/MonitorClient.cs @@ -1,22 +1,29 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Serialization; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; /// /// Composite Swagger for Monitor Client /// - public partial class MonitorClient : Microsoft.Rest.ServiceClient, IMonitorClient, IAzureClient + public partial class MonitorClient : ServiceClient, IMonitorClient, IAzureClient { /// /// The base URI of the service. @@ -26,17 +33,17 @@ public partial class MonitorClient : Microsoft.Rest.ServiceClient /// /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. /// - public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// /// The Azure subscription Id. @@ -98,7 +105,7 @@ public partial class MonitorClient : Microsoft.Rest.ServiceClient /// protected MonitorClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -112,7 +119,7 @@ protected MonitorClient(params System.Net.Http.DelegatingHandler[] handlers) : b /// protected MonitorClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -133,7 +140,7 @@ protected MonitorClient(System.Uri baseUri, params System.Net.Http.DelegatingHan { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -157,7 +164,7 @@ protected MonitorClient(System.Uri baseUri, System.Net.Http.HttpClientHandler ro { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -172,16 +179,16 @@ protected MonitorClient(System.Uri baseUri, System.Net.Http.HttpClientHandler ro /// /// Thrown when a required parameter is null /// - public MonitorClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public MonitorClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -200,16 +207,16 @@ public MonitorClient(Microsoft.Rest.ServiceClientCredentials credentials, params /// /// Thrown when a required parameter is null /// - public MonitorClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public MonitorClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -228,7 +235,7 @@ public MonitorClient(Microsoft.Rest.ServiceClientCredentials credentials, System /// /// Thrown when a required parameter is null /// - public MonitorClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public MonitorClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -238,11 +245,11 @@ public MonitorClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -264,7 +271,7 @@ public MonitorClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials /// /// Thrown when a required parameter is null /// - public MonitorClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public MonitorClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -274,11 +281,11 @@ public MonitorClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -291,43 +298,44 @@ public MonitorClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials /// private void Initialize() { - this.UsageMetrics = new UsageMetricsOperations(this); - this.EventCategories = new EventCategoriesOperations(this); - this.ActivityLogs = new ActivityLogsOperations(this); - this.TenantActivityLogs = new TenantActivityLogsOperations(this); - this.MetricDefinitions = new MetricDefinitionsOperations(this); - this.Metrics = new MetricsOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + UsageMetrics = new UsageMetricsOperations(this); + EventCategories = new EventCategoriesOperations(this); + ActivityLogs = new ActivityLogsOperations(this); + TenantActivityLogs = new TenantActivityLogsOperations(this); + MetricDefinitions = new MetricDefinitionsOperations(this); + Metrics = new MetricsOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings { - Formatting = Newtonsoft.Json.Formatting.Indented, - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; CustomInitialize(); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs index 7254a792c2d8..ea05ce9ff627 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// TenantActivityLogsOperations operations. /// - internal partial class TenantActivityLogsOperations : Microsoft.Rest.IServiceOperations, ITenantActivityLogsOperations + internal partial class TenantActivityLogsOperations : IServiceOperations, ITenantActivityLogsOperations { /// /// Initializes a new instance of the TenantActivityLogsOperations class. @@ -29,11 +38,11 @@ internal partial class TenantActivityLogsOperations : Microsoft.Rest.IServiceOpe /// internal TenantActivityLogsOperations(MonitorClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -82,39 +91,39 @@ internal TenantActivityLogsOperations(MonitorClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { string apiVersion = "2015-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("select", select); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/microsoft.insights/eventtypes/management/values").ToString(); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } @@ -132,23 +141,25 @@ internal TenantActivityLogsOperations(MonitorClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -164,51 +175,51 @@ internal TenantActivityLogsOperations(MonitorClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -218,7 +229,7 @@ internal TenantActivityLogsOperations(MonitorClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -231,21 +242,21 @@ internal TenantActivityLogsOperations(MonitorClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -283,61 +294,66 @@ internal TenantActivityLogsOperations(MonitorClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -353,51 +369,51 @@ internal TenantActivityLogsOperations(MonitorClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -407,7 +423,7 @@ internal TenantActivityLogsOperations(MonitorClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -420,24 +436,25 @@ internal TenantActivityLogsOperations(MonitorClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs index dd4231172d7b..d9db26314568 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/TenantActivityLogsOperationsExtensions.cs @@ -1,16 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for TenantActivityLogsOperations. @@ -55,9 +59,9 @@ public static partial class TenantActivityLogsOperationsExtensions /// properties, resourceGroupName, resourceProviderName, resourceId, status, /// submissionTimestamp, subStatus, subscriptionId /// - public static Microsoft.Rest.Azure.IPage List(this ITenantActivityLogsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string)) + public static IPage List(this ITenantActivityLogsOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((ITenantActivityLogsOperations)s).ListAsync(odataQuery, select), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(odataQuery, select).GetAwaiter().GetResult(); } /// @@ -101,7 +105,7 @@ public static partial class TenantActivityLogsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this ITenantActivityLogsOperations operations, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), string select = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this ITenantActivityLogsOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(odataQuery, select, null, cancellationToken).ConfigureAwait(false)) { @@ -139,9 +143,9 @@ public static partial class TenantActivityLogsOperationsExtensions /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListNext(this ITenantActivityLogsOperations operations, string nextPageLink) + public static IPage ListNext(this ITenantActivityLogsOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((ITenantActivityLogsOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -177,7 +181,7 @@ public static Microsoft.Rest.Azure.IPage ListNext(this ITenantActivit /// /// The cancellation token. /// - public static async Task> ListNextAsync(this ITenantActivityLogsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListNextAsync(this ITenantActivityLogsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -187,3 +191,4 @@ public static Microsoft.Rest.Azure.IPage ListNext(this ITenantActivit } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs index 84427c5b86e6..4dbe2fe5979e 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// UsageMetricsOperations operations. /// - internal partial class UsageMetricsOperations : Microsoft.Rest.IServiceOperations, IUsageMetricsOperations + internal partial class UsageMetricsOperations : IServiceOperations, IUsageMetricsOperations { /// /// Initializes a new instance of the UsageMetricsOperations class. @@ -29,11 +38,11 @@ internal partial class UsageMetricsOperations : Microsoft.Rest.IServiceOperation /// internal UsageMetricsOperations(MonitorClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -48,7 +57,8 @@ internal UsageMetricsOperations(MonitorClient client) /// The identifier of the resource. /// /// - /// The client Api Version. + /// Client Api Version. NOTE: This is not a client property, it must be + /// explicit in the call and there is no default value. /// /// /// OData parameters to apply to the operation. @@ -59,55 +69,53 @@ internal UsageMetricsOperations(MonitorClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceUri, string apiVersion, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceUri == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceUri"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceUri"); } if (apiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "apiVersion"); - } - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "apiVersion"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceUri", resourceUri); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{resourceUri}/usages").ToString(); _url = _url.Replace("{resourceUri}", resourceUri); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } @@ -121,23 +129,25 @@ internal UsageMetricsOperations(MonitorClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -153,51 +163,51 @@ internal UsageMetricsOperations(MonitorClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -207,7 +217,7 @@ internal UsageMetricsOperations(MonitorClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -220,24 +230,25 @@ internal UsageMetricsOperations(MonitorClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs index e7b1921b2a4c..1f19b0d6863c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Generated/Monitor/UsageMetricsOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Insights { + using Azure; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for UsageMetricsOperations. @@ -27,14 +33,15 @@ public static partial class UsageMetricsOperationsExtensions /// The identifier of the resource. /// /// - /// The client Api Version. + /// Client Api Version. NOTE: This is not a client property, it must be + /// explicit in the call and there is no default value. /// /// /// OData parameters to apply to the operation. /// - public static System.Collections.Generic.IEnumerable List(this IUsageMetricsOperations operations, string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery)) + public static IEnumerable List(this IUsageMetricsOperations operations, string resourceUri, string apiVersion, ODataQuery odataQuery = default(ODataQuery)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IUsageMetricsOperations)s).ListAsync(resourceUri, apiVersion, odataQuery), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceUri, apiVersion, odataQuery).GetAwaiter().GetResult(); } /// @@ -47,7 +54,8 @@ public static partial class UsageMetricsOperationsExtensions /// The identifier of the resource. /// /// - /// The client Api Version. + /// Client Api Version. NOTE: This is not a client property, it must be + /// explicit in the call and there is no default value. /// /// /// OData parameters to apply to the operation. @@ -55,7 +63,7 @@ public static partial class UsageMetricsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IUsageMetricsOperations operations, string resourceUri, string apiVersion, Microsoft.Rest.Azure.OData.ODataQuery odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IUsageMetricsOperations operations, string resourceUri, string apiVersion, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(resourceUri, apiVersion, odataQuery, null, cancellationToken).ConfigureAwait(false)) { @@ -65,3 +73,4 @@ public static partial class UsageMetricsOperationsExtensions } } + diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Microsoft.Azure.Monitor.xproj b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Microsoft.Azure.Monitor.xproj index 50fd34a8c69b..dab4de82875c 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Microsoft.Azure.Monitor.xproj +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/Microsoft.Azure.Monitor.xproj @@ -6,7 +6,7 @@ - 8989ed12-b754-4ebd-bc97-efa7b11ffd49 + 3c8e045d-8696-45d7-9001-c485386ac469 Monitor .\obj .\bin\ diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd index 72957ab82406..8ee7df55f4c1 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/generate.cmd @@ -5,7 +5,7 @@ @echo off -set autoRestVersion=1.0.0-Nightly20161116 +set autoRestVersion=1.0.0-Nightly20170212 if "%1" == "" ( set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/efed63280648eebdec8be513470cd6c23783efb6/monitor/compositeMonitorClient.json" ) else ( diff --git a/src/ResourceManagement/Monitor/Monitor.Tests/Monitor.Tests.xproj b/src/ResourceManagement/Monitor/Monitor.Tests/Monitor.Tests.xproj index fc46a7fcfc08..0969895ed160 100644 --- a/src/ResourceManagement/Monitor/Monitor.Tests/Monitor.Tests.xproj +++ b/src/ResourceManagement/Monitor/Monitor.Tests/Monitor.Tests.xproj @@ -6,7 +6,7 @@ - 2684f7eb-16b8-487e-a0ab-f4b3091c9197 + 5d973e4b-8222-41de-ac09-157e664b564d Monitor.Tests .\obj .\bin\ @@ -15,7 +15,7 @@ 2.0 - + \ No newline at end of file diff --git a/src/ResourceManagement/Monitor/Monitor.sln b/src/ResourceManagement/Monitor/Monitor.sln index 2a8d74819b05..0668b6a050ea 100644 --- a/src/ResourceManagement/Monitor/Monitor.sln +++ b/src/ResourceManagement/Monitor/Monitor.sln @@ -3,13 +3,13 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Monitor.Tests", "Monitor.Tests\Monitor.Tests.xproj", "{2684F7EB-16B8-487E-A0AB-F4B3091C9197}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Monitor.Tests", "Monitor.Tests\Monitor.Tests.xproj", "{5D973E4B-8222-41DE-AC09-157E664B564D}" EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\..\TestFramework\Microsoft.Azure.Test.HttpRecorder\HttpRecorder.xproj", "{5D12D45A-E55F-410E-B8AF-9DC90E81B237}" EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Monitor", "Microsoft.Azure.Monitor\Microsoft.Azure.Monitor.xproj", "{8989ED12-B754-4EBD-BC97-EFA7B11FFD49}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Monitor", "Microsoft.Azure.Monitor\Microsoft.Azure.Monitor.xproj", "{3C8E045D-8696-45D7-9001-C485386AC469}" EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime\Microsoft.Rest.ClientRuntime.xproj", "{EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}" EndProject @@ -27,18 +27,18 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Net45-Release|Any CPU.ActiveCfg = Debug|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Net45-Release|Any CPU.Build.0 = Debug|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Portable-Debug|Any CPU.ActiveCfg = Release|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Portable-Debug|Any CPU.Build.0 = Release|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Portable-Release|Any CPU.Build.0 = Release|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2684F7EB-16B8-487E-A0AB-F4B3091C9197}.Release|Any CPU.Build.0 = Release|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Net45-Release|Any CPU.ActiveCfg = Debug|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Net45-Release|Any CPU.Build.0 = Debug|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Portable-Debug|Any CPU.ActiveCfg = Release|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Portable-Debug|Any CPU.Build.0 = Release|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5D973E4B-8222-41DE-AC09-157E664B564D}.Release|Any CPU.Build.0 = Release|Any CPU {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.Build.0 = Debug|Any CPU {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU @@ -63,18 +63,18 @@ Global {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Portable-Release|Any CPU.Build.0 = Release|Any CPU {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Net45-Release|Any CPU.Build.0 = Release|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Portable-Release|Any CPU.Build.0 = Release|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8989ED12-B754-4EBD-BC97-EFA7B11FFD49}.Release|Any CPU.Build.0 = Release|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Net45-Release|Any CPU.Build.0 = Release|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3C8E045D-8696-45D7-9001-C485386AC469}.Release|Any CPU.Build.0 = Release|Any CPU {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.Build.0 = Debug|Any CPU {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU From cf4578b3e19df87f7b3e09f30a7073592542a3b0 Mon Sep 17 00:00:00 2001 From: David Burg Date: Tue, 21 Feb 2017 17:09:05 -0800 Subject: [PATCH 020/137] Integration Account Session APIs and tests. --- .../IntegrationAccountSessionInMemoryTests.cs | 326 ++++++ ...ntegrationAccountSessions.ScenarioTests.cs | 314 +++++ ...ateAndDeleteIntegrationAccountSession.json | 304 +++++ ...CreateAndGetIntegrationAccountSession.json | 252 ++++ ...ateAndUpdateIntegrationAccountSession.json | 258 +++++ ...ateIntegrationAccountSessionUsingFile.json | 320 +++++ ...rationAccountSessionOnAccountDeletion.json | 245 ++++ .../ListIntegrationAccountSessions.json | 379 ++++++ ...egrationAccountSessionResponseContent.json | 10 + .../Generated/ISessionsOperations.cs | 161 +++ .../Models/IntegrationAccountSession.cs | 60 + .../Models/IntegrationAccountSessionFilter.cs | 56 + .../Generated/SessionsOperations.cs | 1031 +++++++++++++++++ .../Generated/SessionsOperationsExtensions.cs | 248 ++++ 14 files changed, 3964 insertions(+) create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountSessionResponseContent.json create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs new file mode 100644 index 000000000000..0a07610e8810 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs @@ -0,0 +1,326 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Test.Azure.Management.Logic +{ + using System.IO; + using System.Linq; + using System.Net; + using System.Net.Http; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; + using Xunit; + + public class IntegrationAccountSessionInMemoryTests : BaseInMemoryTests + { + public IntegrationAccountSessionInMemoryTests() + { + var content = File.ReadAllText(path: @"TestData/IntegrationAccountSessionResponseContent.json"); + + this.SessionList = new StringContent(string.Format(Constants.ListFormat, content, Constants.NextPageLink)); + this.Session = new StringContent(content); + } + + private StringContent SessionList { get; set; } + + private StringContent Session { get; set; } + + [Fact] + public void IntegrationAccountSession_ListByResourceGroup_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws(() => client.Sessions.ListByIntegrationAccounts(null, "IntegrationAccount")); + Assert.Throws(() => client.Sessions.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); + } + + [Fact] + public void IntegrationAccountSession_ListByResourceGroup_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.SessionList + }; + + var result = client.Sessions.ListByIntegrationAccounts(resourceGroupName: ResourceGroupName, integrationAccountName: "IntegrationAccount"); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + this.ValidateSessionList(result); + } + + [Fact] + public void IntegrationAccountSession_ListByResourceGroupNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws(() => client.Sessions.ListByIntegrationAccountsNext(nextPageLink: null)); + Assert.Throws(() => client.Sessions.ListByIntegrationAccountsNext(nextPageLink: Constants.NextPageLink)); + } + + [Fact] + public void IntegrationAccountSession_ListByResourceGroupNext_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.SessionList + }; + + var result = client.Sessions.ListByIntegrationAccountsNext(nextPageLink: Constants.NextPageLink); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + this.ValidateSessionList(result); + } + + [Fact] + public void IntegrationAccountSession_CreateOrUpdate_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: null, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: new IntegrationAccountSession())); + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: null, + sessionName: "SessionName", + session: new IntegrationAccountSession())); + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: null, + session: new IntegrationAccountSession())); + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: null)); + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: new IntegrationAccountSession())); + } + + [Fact] + public void IntegrationAccountSession_CreateOrUpdate_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Session + }; + + var result = client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: new IntegrationAccountSession()); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Put); + + this.ValidateSession(result); + } + + [Fact] + public void IntegrationAccountSession_CreateOrUpdate_Created() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.Created, + Content = this.Session + }; + + var result = client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: new IntegrationAccountSession()); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Put); + + this.ValidateSession(result); + } + + [Fact] + public void IntegrationAccountSession_Delete_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NotFound + }; + + Assert.Throws(() => client.Sessions.Delete( + resourceGroupName: null, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName")); + Assert.Throws(() => client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: null, + sessionName: "SessionName")); + Assert.Throws(() => client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: null)); + Assert.Throws(() => client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName")); + } + + [Fact] + public void IntegrationAccountSession_Delete_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK + }; + + client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName"); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Delete); + } + + [Fact] + public void IntegrationAccountSession_Delete_NoContent() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NoContent + }; + + client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName"); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Delete); + } + + [Fact] + public void IntegrationAccountSession_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NotFound, + Content = new StringContent(string.Empty) + }; + + Assert.Throws(() => client.Sessions.Get( + resourceGroupName: null, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName")); + Assert.Throws(() => client.Sessions.Get( + resourceGroupName: ResourceGroupName, + integrationAccountName: null, + sessionName: "SessionName")); + Assert.Throws(() => client.Sessions.Get( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: null)); + Assert.Throws(() => client.Sessions.Get( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName")); + } + + [Fact] + public void IntegrationAccountSession_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Session + }; + + var result = client.Sessions.Get( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName"); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + this.ValidateSession(result); + } + + private void ValidateSessionList(IPage result) + { + Assert.Equal(1, result.Count()); + this.ValidateSession(result.First()); + Assert.Equal(Constants.NextPageLink, result.NextPageLink); + } + + private void ValidateSession(IntegrationAccountSession Session) + { + Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1600/sessions/IntegrationAccountAgreement8906-ICN", Session.Id); + Assert.Equal("IntegrationAccountAgreement8906-ICN", Session.Name); + Assert.Equal("Microsoft.Logic/integrationAccounts/sessions", Session.Type); + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs new file mode 100644 index 000000000000..81cb3c3aae25 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs @@ -0,0 +1,314 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Test.Azure.Management.Logic +{ + using System.Collections.Generic; + using System.Linq; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.IO; + + /// + /// Scenario tests for the integration accounts session. + /// + [Collection("IntegrationAccountPartnerScenarioTests")] + public class IntegrationAccountSessionScenarioTests : BaseScenarioTests + { + /// + /// Name of the test class + /// + private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests"; + + /// + /// Tests the create and delete operations of the integration account session. + /// https://msazure.visualstudio.com/One/_workitems/edit/587947 + /// + [Fact] + public void CreateAndDeleteIntegrationAccountSession() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + string integrationAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var client = context.GetServiceClient(); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + + var instance = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName); + instance.Content = "256"; + + var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName, instance); + + var getSession = client.Sessions.Get(Constants.DefaultResourceGroup, + integrationAccountName, + integrationAccountSessionName); + + Assert.Equal(getSession.Name, integrationAccountSessionName); + Assert.Equal(getSession.Content, "256"); + + client.Sessions.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSessionName); + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + /// + /// Tests the create and update operations of the integration account session. + /// + [Fact] + public void CreateAndUpdateIntegrationAccountSession() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + string integrationAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + + var client = context.GetServiceClient(); + + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + + var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName)); + + var updateSession = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, + integrationAccountName); + + var updatedSession = client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, + integrationAccountSessionName, updateSession); + + Assert.Equal(updatedSession.Name, integrationAccountSessionName); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + /// + /// Tests the create and get operations of the integration account session. + /// https://msazure.visualstudio.com/One/_workitems/edit/587947 + /// + [Fact] + public void CreateAndGetIntegrationAccountSession() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + string integrationAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var client = context.GetServiceClient(); + + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + var instance = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName); + + instance.Content= "256"; + + var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName, instance); + + Assert.Equal(session.Name, integrationAccountSessionName); + + var getSession = client.Sessions.Get(Constants.DefaultResourceGroup, + integrationAccountName, + integrationAccountSessionName); + + Assert.Equal(session.Name, getSession.Name); + Assert.Equal(session.Content, "256"); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + /// + /// Tests the create and list operations of the integration account session. + /// + [Fact] + public void ListIntegrationAccountSessions() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + + var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + + var integrationAccountSessionName1 = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationAccountSessionName2 = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationAccountSessionName3 = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + + var client = context.GetServiceClient(); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + + client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName1, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName1, integrationAccountName)); + + client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName2, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName2, integrationAccountName)); + + client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName3, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName3, integrationAccountName)); + + var sessions = client.Sessions.ListByIntegrationAccounts(Constants.DefaultResourceGroup, integrationAccountName); + + Assert.True(sessions.Count() == 3); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + + } + } + + /// + /// Tests the delete operations of the integration account session with integration account. + /// Session must be deleted with the integration account deletion. + /// + [Fact] + public void DeleteIntegrationAccountSessionOnAccountDeletion() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + string integrationAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var client = context.GetServiceClient(); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName)); + + Assert.Equal(session.Name, integrationAccountSessionName); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + Assert.Throws( + () => + client.Sessions.Get(Constants.DefaultResourceGroup, integrationAccountName, + integrationAccountSessionName)); + } + } + + /// + /// Tests the create operations of the integration account session using file input. + /// + [Fact] + public void CreateIntegrationAccountSessionUsingFile() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + + var integrationAs2AccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationX12AccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationEdifactAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + + var client = context.GetServiceClient(); + + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); + + var as2Session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAs2AccountSessionName, + CreateIntegrationAccountSessionInstanceFromFile(integrationAs2AccountSessionName, + integrationAccountName)); + + var edifactSession = client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, integrationEdifactAccountSessionName, + CreateIntegrationAccountSessionInstanceFromFile(integrationEdifactAccountSessionName, integrationAccountName)); + + var x12Session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationX12AccountSessionName, + CreateIntegrationAccountSessionInstanceFromFile(integrationX12AccountSessionName, integrationAccountName)); + + Assert.Equal(as2Session.Name, integrationAs2AccountSessionName); + Assert.Equal(edifactSession.Name, integrationEdifactAccountSessionName); + Assert.Equal(x12Session.Name, integrationX12AccountSessionName); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + #region Private + + /// + /// Creates an Integration account session + /// + /// Name of the integration account session + /// Name of the integration account + /// Session instance + private IntegrationAccountSession CreateIntegrationAccountSessionInstance( + string integrationAccountSessionName, + string integrationAccountName) + { + IDictionary tags = new Dictionary(); + tags.Add("IntegrationAccountSession", integrationAccountSessionName); + + var session = new IntegrationAccountSession + { + Location = Constants.DefaultLocation, + Tags = tags, + Content = "123" + }; + + return session; + } + + /// + /// Creates an Integration account session from file source + /// + /// Name of the integration account session + /// Name of the integration account + /// Session instance + private IntegrationAccountSession CreateIntegrationAccountSessionInstanceFromFile( + string integrationAccountSessionName, + string integrationAccountName) + { + IDictionary tags = new Dictionary(); + tags.Add("IntegrationAccountSession", integrationAccountSessionName); + + var session = new IntegrationAccountSession + { + Location = Constants.DefaultLocation, + Tags = tags, + Content = "456" + }; + + return session; + } + + #endregion Private + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json new file mode 100644 index 000000000000..17af83096a28 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json @@ -0,0 +1,304 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "de37d3bb-5846-44fc-8459-77f404a046cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096\",\r\n \"name\": \"IntegrationAccount3096\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:491e2b37-5b5d-4048-b301-9074d4a13478" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "1557cef4-0ec2-465c-bcf8-6923a6606c35" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005932Z:1557cef4-0ec2-465c-bcf8-6923a6606c35" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession6103\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "643d9e0d-5fd5-4e5c-a260-d5fa81ebd3dd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"changedTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103\",\r\n \"name\": \"IntegrationAccountSession6103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369125553179\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369125553179\"" + ], + "x-ms-request-id": [ + "westus:b725268a-1bdb-48a1-9153-9b862c3c33ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b6e6b32f-08f2-41ae-9d6c-43a176f81110" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005932Z:b6e6b32f-08f2-41ae-9d6c-43a176f81110" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8acbda36-8e73-4304-8fe4-eaa945c5c372" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"changedTime\": \"2017-02-04T00:59:32.9228329Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103\",\r\n \"name\": \"IntegrationAccountSession6103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369125553179\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "\"08587154369125553179\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:3e21c26d-bad9-4e29-8cac-5ab9a11f999a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14484" + ], + "x-ms-correlation-request-id": [ + "f0425b73-2c7e-4293-895a-efd85c5a51d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005933Z:f0425b73-2c7e-4293-895a-efd85c5a51d6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b3716fc-4a4b-4f43-bdaf-bbbc3cd57ef7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:c8986591-10f9-4a50-9faa-fecb6a1e65ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "0c0fe059-a47c-4be5-bdf4-a7886882c518" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005933Z:0c0fe059-a47c-4be5-bdf4-a7886882c518" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d4544ff-b5ea-4f25-81c5-a95852a42d1e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:c8ac3a15-fdff-40b8-8386-cc693de94610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "a59b6987-bfa8-4344-983c-6ec73cb52efd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005934Z:a59b6987-bfa8-4344-983c-6ec73cb52efd" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndDeleteIntegrationAccountSession": [ + "IntegrationAccount3096", + "IntegrationAccountSession6103" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json new file mode 100644 index 000000000000..b5d649689f40 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json @@ -0,0 +1,252 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "3838e347-ef35-4a67-9d38-7332b59b8ccc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553\",\r\n \"name\": \"IntegrationAccount1553\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:bae11aa2-6aa3-4967-94da-4890dfb6fe6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "47cc39cc-8b06-47bb-96e2-3793cb7fc23d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005943Z:47cc39cc-8b06-47bb-96e2-3793cb7fc23d" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjYwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession2609\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "78ec31b9-f82b-405a-96fa-f9ac0feace81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"changedTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609\",\r\n \"name\": \"IntegrationAccountSession2609\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369018295253\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369018295253\"" + ], + "x-ms-request-id": [ + "westus:9feb7d57-8057-4dfc-9632-094c50efba08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "131270ab-2447-4e5a-bcdc-d25a4405ca29" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005943Z:131270ab-2447-4e5a-bcdc-d25a4405ca29" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjYwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "997f9489-3214-45ad-943c-51e530f44d18" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"changedTime\": \"2017-02-04T00:59:43.6489887Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609\",\r\n \"name\": \"IntegrationAccountSession2609\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369018295253\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "\"08587154369018295253\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4c1df659-05b2-4e02-b799-7d44a649d373" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14737" + ], + "x-ms-correlation-request-id": [ + "a0f9e2e0-515c-48a9-ae61-dde8892576b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005943Z:a0f9e2e0-515c-48a9-ae61-dde8892576b6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b366a17d-89cb-4123-b553-e2c8ebce7d24" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:262d3e9e-d856-432b-8d20-b79fbc89e3ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1435119a-b2dc-44d7-ba15-fbd58a32e7de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005944Z:1435119a-b2dc-44d7-ba15-fbd58a32e7de" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndGetIntegrationAccountSession": [ + "IntegrationAccount1553", + "IntegrationAccountSession2609" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json new file mode 100644 index 000000000000..61e20eab8974 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json @@ -0,0 +1,258 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "06b9f859-4cb9-4af4-86ce-a92e66965c52" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234\",\r\n \"name\": \"IntegrationAccount9234\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4183ecf4-e3de-4df8-9d37-1ec78bd09fa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "88d3fe8f-2d7c-4b54-8c3c-783243fd9ccf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005923Z:88d3fe8f-2d7c-4b54-8c3c-783243fd9ccf" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODc4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession878\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ], + "x-ms-client-request-id": [ + "1aef32bf-0e01-4abf-a29f-2a3cf88ffa86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"changedTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878\",\r\n \"name\": \"IntegrationAccountSession878\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369213813625\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369213813625\"" + ], + "x-ms-request-id": [ + "westus:5c52358c-accc-4ace-8178-f73ff0a10385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "cf9fe858-8dbb-47e5-8dbe-ad84af78abe4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005924Z:cf9fe858-8dbb-47e5-8dbe-ad84af78abe4" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODc4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession878\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ], + "x-ms-client-request-id": [ + "8a2c85b9-5484-44c3-8ac9-97ee95ad6436" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"changedTime\": \"2017-02-04T00:59:24.0964532Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878\",\r\n \"name\": \"IntegrationAccountSession878\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369212374832\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "\"08587154369212374832\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:30f5d553-6922-456c-993e-8af8aa55f371" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "5b99a118-f5c4-4416-810a-997b80458a78" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005924Z:5b99a118-f5c4-4416-810a-997b80458a78" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b9608f9-07d6-4d8d-b733-6ef138764b99" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:ccf29047-6d93-4036-b65b-5db82bbf9347" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "36dedb84-6c4c-4323-b801-902e181e4593" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005925Z:36dedb84-6c4c-4323-b801-902e181e4593" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndUpdateIntegrationAccountSession": [ + "IntegrationAccount9234", + "IntegrationAccountSession878" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json new file mode 100644 index 000000000000..e780d8e8eb39 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json @@ -0,0 +1,320 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "ab06914c-be44-4aed-8886-95921c9117f2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128\",\r\n \"name\": \"IntegrationAccount4128\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6290c7ca-47a8-44d0-8d3a-3ee27032c5cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "63ad44b9-2f08-478e-8f48-ec1dd430b825" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005918Z:63ad44b9-2f08-478e-8f48-ec1dd430b825" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession5697?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNTY5Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession5697\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "32978cbe-a1eb-4579-9ac6-4a1abc4c00cc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.0235096Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.0235096Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession5697\",\r\n \"name\": \"IntegrationAccountSession5697\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369264540562\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369264540562\"" + ], + "x-ms-request-id": [ + "westus:6128e791-ef85-4a19-9660-f7db3cc0d765" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "9f13d718-d56a-4f5b-8c3a-72c362816b77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005919Z:9f13d718-d56a-4f5b-8c3a-72c362816b77" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession2575?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjU3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession2575\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "b75cdaf5-3214-4bff-af13-d3a058dfce4c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.3181315Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.3181315Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession2575\",\r\n \"name\": \"IntegrationAccountSession2575\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369261594325\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369261594325\"" + ], + "x-ms-request-id": [ + "westus:cd1539ab-eddc-4a65-9c0a-288387a84ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "9b7516cb-0454-4c5e-ba74-0b3dd224c73d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005919Z:9b7516cb-0454-4c5e-ba74-0b3dd224c73d" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession8047?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODA0Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession8047\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "7fab120b-1e26-45cc-9868-1402e62568cc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.499283Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.499283Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession8047\",\r\n \"name\": \"IntegrationAccountSession8047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369259782850\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369259782850\"" + ], + "x-ms-request-id": [ + "westus:11db73c7-f5ed-4760-b1c1-2fc298328650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "1020b696-bdee-419e-8de2-9c34b33c8ac9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005919Z:1020b696-bdee-419e-8de2-9c34b33c8ac9" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd475ab1-62e2-4c0a-be8a-37d13641419e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:9a57beec-0c9f-44a3-b1f9-4429dc2bf325" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "6fefd431-5e03-4331-87ca-73b9b4fac1b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005920Z:6fefd431-5e03-4331-87ca-73b9b4fac1b5" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateIntegrationAccountSessionUsingFile": [ + "IntegrationAccount4128", + "IntegrationAccountSession5697", + "IntegrationAccountSession8047", + "IntegrationAccountSession2575" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json new file mode 100644 index 000000000000..72ae4fdf9eae --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json @@ -0,0 +1,245 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "d9ea285b-6ad4-4b0d-ab19-06b0074291dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811\",\r\n \"name\": \"IntegrationAccount9811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:67ec0660-dd5a-4c25-98d7-b04bf09330eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2d2ad241-a629-4341-8da4-a3bf6c0f2a9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005928Z:2d2ad241-a629-4341-8da4-a3bf6c0f2a9f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTY5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1692\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "e5f960a9-5bc2-47a9-8f7e-57a2b060760d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:28.4608095Z\",\r\n \"changedTime\": \"2017-02-04T00:59:28.4608095Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692\",\r\n \"name\": \"IntegrationAccountSession1692\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369170167581\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369170167581\"" + ], + "x-ms-request-id": [ + "westus:b4231fd2-a11f-4c5a-9acf-d160d933f354" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c03d9014-4c7e-4910-a438-6fa528c62af2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005928Z:c03d9014-4c7e-4910-a438-6fa528c62af2" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fafe0e6-4c7d-42b8-a8fb-9b8f5a7c762a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6f692466-f9be-4f2e-a426-b956c2a49b65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "cc08c729-6dca-401b-961e-09e45d3ed46c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005929Z:cc08c729-6dca-401b-961e-09e45d3ed46c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTY5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f9d20eb-a92b-4499-8c72-7bef83ad9af6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount9811' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8a3e00f6-a517-44c0-83ea-987905f72d30" + ], + "x-ms-correlation-request-id": [ + "8a3e00f6-a517-44c0-83ea-987905f72d30" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005929Z:8a3e00f6-a517-44c0-83ea-987905f72d30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "DeleteIntegrationAccountSessionOnAccountDeletion": [ + "IntegrationAccount9811", + "IntegrationAccountSession1692" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json new file mode 100644 index 000000000000..d88c0351e616 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json @@ -0,0 +1,379 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "581dee73-31d7-4079-8915-a140acca0e72" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705\",\r\n \"name\": \"IntegrationAccount8705\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:ca6625fd-a24d-4b7b-9fc7-f01fb7172f52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e14f6c9f-a6f3-49af-9307-b28def33b960" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005938Z:e14f6c9f-a6f3-49af-9307-b28def33b960" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDY3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4671\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "922f709a-c8fa-480c-b5fa-88198694bdd9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671\",\r\n \"name\": \"IntegrationAccountSession4671\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369061609122\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369061609122\"" + ], + "x-ms-request-id": [ + "westus:2b6b9198-b421-471e-b69b-42b2a1d2420f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5bb960f5-bdf9-4b86-8cd2-fc16c29f20e2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005939Z:5bb960f5-bdf9-4b86-8cd2-fc16c29f20e2" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDE1Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4157\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "bc9f9e4f-d8ca-4cf9-b45a-6b627cd6c9ae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157\",\r\n \"name\": \"IntegrationAccountSession4157\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369059210657\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369059210657\"" + ], + "x-ms-request-id": [ + "westus:1b733c38-4a83-4f94-a588-0693695cf3c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "4a8459fa-321a-491d-a5f0-8db65f4fd113" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005939Z:4a8459fa-321a-491d-a5f0-8db65f4fd113" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjA5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession209\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ], + "x-ms-client-request-id": [ + "2ab95fba-552c-439b-a4dd-dfca64277a76" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209\",\r\n \"name\": \"IntegrationAccountSession209\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369056787106\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369056787106\"" + ], + "x-ms-request-id": [ + "westus:3387afdb-184c-4c16-8e00-a8376b1b1c0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "9e900d1f-8692-4dd1-bcd5-c2b5d43e0151" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005939Z:9e900d1f-8692-4dd1-bcd5-c2b5d43e0151" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbcafb3c-fd3c-4c27-8db3-9f3519afa326" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.7997906Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209\",\r\n \"name\": \"IntegrationAccountSession209\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369056787106\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.5574391Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157\",\r\n \"name\": \"IntegrationAccountSession4157\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369059210657\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.317272Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671\",\r\n \"name\": \"IntegrationAccountSession4671\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369061609122\\\"\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:eb5489c0-e710-4761-a36c-dab186f3e535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14684" + ], + "x-ms-correlation-request-id": [ + "227538b9-a12c-4482-8a9a-eac7721efc59" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005940Z:227538b9-a12c-4482-8a9a-eac7721efc59" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4582d18c-e916-480a-836f-3e64f02921c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:e1fec6df-a5f5-417e-8a92-c500601cfda4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "251c7746-1c32-4010-abb5-1639e48eac0c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005940Z:251c7746-1c32-4010-abb5-1639e48eac0c" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "ListIntegrationAccountSessions": [ + "IntegrationAccount8705", + "IntegrationAccountSession4671", + "IntegrationAccountSession4157", + "IntegrationAccountSession209" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountSessionResponseContent.json b/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountSessionResponseContent.json new file mode 100644 index 000000000000..cf3efd4e7c23 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountSessionResponseContent.json @@ -0,0 +1,10 @@ +{ + "properties": { + "createdTime": "2016-02-25T21:57:21.3956457Z", + "changedTime": "2016-02-25T21:57:21.3959335Z", + "content": "123" + }, + "id": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1600/sessions/IntegrationAccountAgreement8906-ICN", + "name": "IntegrationAccountAgreement8906-ICN", + "type": "Microsoft.Logic/integrationAccounts/sessions" +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs new file mode 100644 index 000000000000..8d0b4841a553 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs @@ -0,0 +1,161 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// SessionsOperations operations. + /// + public partial interface ISessionsOperations + { + /// + /// Gets a list of integration account sessions. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The integration account session. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of integration account sessions. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs new file mode 100644 index 000000000000..deb9ee9b449c --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The integration account session. + /// + [JsonTransformation] + public partial class IntegrationAccountSession : Resource + { + /// + /// Initializes a new instance of the IntegrationAccountSession class. + /// + public IntegrationAccountSession() { } + + /// + /// Initializes a new instance of the IntegrationAccountSession class. + /// + public IntegrationAccountSession(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), string content = default(string)) + : base(id, name, type, location, tags) + { + CreatedTime = createdTime; + ChangedTime = changedTime; + Content = content; + } + + /// + /// Gets the created time. + /// + [JsonProperty(PropertyName = "properties.createdTime")] + public DateTime? CreatedTime { get; private set; } + + /// + /// Gets the changed time. + /// + [JsonProperty(PropertyName = "properties.changedTime")] + public DateTime? ChangedTime { get; private set; } + + /// + /// Gets or sets the session content, a raw string of JToken. + /// + [JsonProperty(PropertyName = "properties.content")] + public string Content { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs new file mode 100644 index 000000000000..451a29b2c80e --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The integration account session filter. + /// + public partial class IntegrationAccountSessionFilter + { + /// + /// Initializes a new instance of the IntegrationAccountSessionFilter + /// class. + /// + public IntegrationAccountSessionFilter() { } + + /// + /// Initializes a new instance of the IntegrationAccountSessionFilter + /// class. + /// + public IntegrationAccountSessionFilter(DateTime changedTime) + { + ChangedTime = changedTime; + } + + /// + /// Gets or sets the changed time of integration account sessions. + /// + [JsonProperty(PropertyName = "changedTime")] + public DateTime ChangedTime { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs new file mode 100644 index 000000000000..b4a60e237f20 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs @@ -0,0 +1,1031 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic +{ + 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.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// SessionsOperations operations. + /// + internal partial class SessionsOperations : IServiceOperations, ISessionsOperations + { + /// + /// Initializes a new instance of the SessionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SessionsOperations(LogicManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the LogicManagementClient + /// + public LogicManagementClient Client { get; private set; } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (integrationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); + } + 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("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("integrationAccountName", integrationAccountName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (integrationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); + } + if (sessionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("integrationAccountName", integrationAccountName); + tracingParameters.Add("sessionName", sessionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + 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; + } + + /// + /// Creates or updates an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The integration account session. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (integrationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); + } + if (sessionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (session == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "session"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("integrationAccountName", integrationAccountName); + tracingParameters.Add("sessionName", sessionName); + tracingParameters.Add("session", session); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + 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("PUT"); + _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; + if(session != null) + { + _requestContent = SafeJsonConvert.SerializeObject(session, 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) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (integrationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); + } + if (sessionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("integrationAccountName", integrationAccountName); + tracingParameters.Add("sessionName", sessionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + 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("DELETE"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccountsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs new file mode 100644 index 000000000000..417b0561bff9 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs @@ -0,0 +1,248 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for SessionsOperations. + /// + public static partial class SessionsOperationsExtensions + { + /// + /// Gets a list of integration account sessions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// OData parameters to apply to the operation. + /// + public static IPage ListByIntegrationAccounts(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) + { + return Task.Factory.StartNew(s => ((ISessionsOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByIntegrationAccountsAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByIntegrationAccountsWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + public static IntegrationAccountSession Get(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) + { + return Task.Factory.StartNew(s => ((ISessionsOperations)s).GetAsync(resourceGroupName, integrationAccountName, sessionName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, sessionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The integration account session. + /// + public static IntegrationAccountSession CreateOrUpdate(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session) + { + return Task.Factory.StartNew(s => ((ISessionsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, sessionName, session), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The integration account session. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, sessionName, session, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + public static void Delete(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) + { + Task.Factory.StartNew(s => ((ISessionsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, sessionName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, integrationAccountName, sessionName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByIntegrationAccountsNext(this ISessionsOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((ISessionsOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByIntegrationAccountsNextAsync(this ISessionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByIntegrationAccountsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} From c4683ce22915322f1e7257eb28bb7c2b4d05e273 Mon Sep 17 00:00:00 2001 From: David Burg Date: Tue, 21 Feb 2017 17:09:05 -0800 Subject: [PATCH 021/137] Integration Account Session APIs and tests. --- .../IntegrationAccountSessionInMemoryTests.cs | 326 ++++++ ...ntegrationAccountSessions.ScenarioTests.cs | 314 +++++ ...ateAndDeleteIntegrationAccountSession.json | 304 +++++ ...CreateAndGetIntegrationAccountSession.json | 252 ++++ ...ateAndUpdateIntegrationAccountSession.json | 258 +++++ ...ateIntegrationAccountSessionUsingFile.json | 320 +++++ ...rationAccountSessionOnAccountDeletion.json | 245 ++++ .../ListIntegrationAccountSessions.json | 379 ++++++ ...egrationAccountSessionResponseContent.json | 10 + .../Generated/ILogicManagementClient.cs | 5 + .../Generated/ISessionsOperations.cs | 161 +++ .../Generated/LogicManagementClient.cs | 6 + .../Models/IntegrationAccountSession.cs | 60 + .../Models/IntegrationAccountSessionFilter.cs | 56 + .../Generated/SessionsOperations.cs | 1031 +++++++++++++++++ .../Generated/SessionsOperationsExtensions.cs | 248 ++++ .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 2 +- 18 files changed, 3977 insertions(+), 2 deletions(-) create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountSessionResponseContent.json create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs new file mode 100644 index 000000000000..0a07610e8810 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs @@ -0,0 +1,326 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Test.Azure.Management.Logic +{ + using System.IO; + using System.Linq; + using System.Net; + using System.Net.Http; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; + using Xunit; + + public class IntegrationAccountSessionInMemoryTests : BaseInMemoryTests + { + public IntegrationAccountSessionInMemoryTests() + { + var content = File.ReadAllText(path: @"TestData/IntegrationAccountSessionResponseContent.json"); + + this.SessionList = new StringContent(string.Format(Constants.ListFormat, content, Constants.NextPageLink)); + this.Session = new StringContent(content); + } + + private StringContent SessionList { get; set; } + + private StringContent Session { get; set; } + + [Fact] + public void IntegrationAccountSession_ListByResourceGroup_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws(() => client.Sessions.ListByIntegrationAccounts(null, "IntegrationAccount")); + Assert.Throws(() => client.Sessions.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); + } + + [Fact] + public void IntegrationAccountSession_ListByResourceGroup_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.SessionList + }; + + var result = client.Sessions.ListByIntegrationAccounts(resourceGroupName: ResourceGroupName, integrationAccountName: "IntegrationAccount"); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + this.ValidateSessionList(result); + } + + [Fact] + public void IntegrationAccountSession_ListByResourceGroupNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws(() => client.Sessions.ListByIntegrationAccountsNext(nextPageLink: null)); + Assert.Throws(() => client.Sessions.ListByIntegrationAccountsNext(nextPageLink: Constants.NextPageLink)); + } + + [Fact] + public void IntegrationAccountSession_ListByResourceGroupNext_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.SessionList + }; + + var result = client.Sessions.ListByIntegrationAccountsNext(nextPageLink: Constants.NextPageLink); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + this.ValidateSessionList(result); + } + + [Fact] + public void IntegrationAccountSession_CreateOrUpdate_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: null, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: new IntegrationAccountSession())); + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: null, + sessionName: "SessionName", + session: new IntegrationAccountSession())); + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: null, + session: new IntegrationAccountSession())); + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: null)); + Assert.Throws(() => client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: new IntegrationAccountSession())); + } + + [Fact] + public void IntegrationAccountSession_CreateOrUpdate_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Session + }; + + var result = client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: new IntegrationAccountSession()); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Put); + + this.ValidateSession(result); + } + + [Fact] + public void IntegrationAccountSession_CreateOrUpdate_Created() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.Created, + Content = this.Session + }; + + var result = client.Sessions.CreateOrUpdate( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName", + session: new IntegrationAccountSession()); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Put); + + this.ValidateSession(result); + } + + [Fact] + public void IntegrationAccountSession_Delete_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NotFound + }; + + Assert.Throws(() => client.Sessions.Delete( + resourceGroupName: null, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName")); + Assert.Throws(() => client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: null, + sessionName: "SessionName")); + Assert.Throws(() => client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: null)); + Assert.Throws(() => client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName")); + } + + [Fact] + public void IntegrationAccountSession_Delete_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK + }; + + client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName"); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Delete); + } + + [Fact] + public void IntegrationAccountSession_Delete_NoContent() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NoContent + }; + + client.Sessions.Delete( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName"); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Delete); + } + + [Fact] + public void IntegrationAccountSession_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NotFound, + Content = new StringContent(string.Empty) + }; + + Assert.Throws(() => client.Sessions.Get( + resourceGroupName: null, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName")); + Assert.Throws(() => client.Sessions.Get( + resourceGroupName: ResourceGroupName, + integrationAccountName: null, + sessionName: "SessionName")); + Assert.Throws(() => client.Sessions.Get( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: null)); + Assert.Throws(() => client.Sessions.Get( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName")); + } + + [Fact] + public void IntegrationAccountSession_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateIntegrationAccountClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Session + }; + + var result = client.Sessions.Get( + resourceGroupName: ResourceGroupName, + integrationAccountName: "IntegrationAccountName", + sessionName: "SessionName"); + + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + this.ValidateSession(result); + } + + private void ValidateSessionList(IPage result) + { + Assert.Equal(1, result.Count()); + this.ValidateSession(result.First()); + Assert.Equal(Constants.NextPageLink, result.NextPageLink); + } + + private void ValidateSession(IntegrationAccountSession Session) + { + Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1600/sessions/IntegrationAccountAgreement8906-ICN", Session.Id); + Assert.Equal("IntegrationAccountAgreement8906-ICN", Session.Name); + Assert.Equal("Microsoft.Logic/integrationAccounts/sessions", Session.Type); + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs new file mode 100644 index 000000000000..81cb3c3aae25 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs @@ -0,0 +1,314 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Test.Azure.Management.Logic +{ + using System.Collections.Generic; + using System.Linq; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.IO; + + /// + /// Scenario tests for the integration accounts session. + /// + [Collection("IntegrationAccountPartnerScenarioTests")] + public class IntegrationAccountSessionScenarioTests : BaseScenarioTests + { + /// + /// Name of the test class + /// + private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests"; + + /// + /// Tests the create and delete operations of the integration account session. + /// https://msazure.visualstudio.com/One/_workitems/edit/587947 + /// + [Fact] + public void CreateAndDeleteIntegrationAccountSession() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + string integrationAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var client = context.GetServiceClient(); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + + var instance = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName); + instance.Content = "256"; + + var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName, instance); + + var getSession = client.Sessions.Get(Constants.DefaultResourceGroup, + integrationAccountName, + integrationAccountSessionName); + + Assert.Equal(getSession.Name, integrationAccountSessionName); + Assert.Equal(getSession.Content, "256"); + + client.Sessions.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSessionName); + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + /// + /// Tests the create and update operations of the integration account session. + /// + [Fact] + public void CreateAndUpdateIntegrationAccountSession() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + string integrationAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + + var client = context.GetServiceClient(); + + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + + var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName)); + + var updateSession = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, + integrationAccountName); + + var updatedSession = client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, + integrationAccountSessionName, updateSession); + + Assert.Equal(updatedSession.Name, integrationAccountSessionName); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + /// + /// Tests the create and get operations of the integration account session. + /// https://msazure.visualstudio.com/One/_workitems/edit/587947 + /// + [Fact] + public void CreateAndGetIntegrationAccountSession() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + string integrationAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var client = context.GetServiceClient(); + + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + var instance = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName); + + instance.Content= "256"; + + var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName, instance); + + Assert.Equal(session.Name, integrationAccountSessionName); + + var getSession = client.Sessions.Get(Constants.DefaultResourceGroup, + integrationAccountName, + integrationAccountSessionName); + + Assert.Equal(session.Name, getSession.Name); + Assert.Equal(session.Content, "256"); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + /// + /// Tests the create and list operations of the integration account session. + /// + [Fact] + public void ListIntegrationAccountSessions() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + + var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + + var integrationAccountSessionName1 = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationAccountSessionName2 = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationAccountSessionName3 = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + + var client = context.GetServiceClient(); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + + client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName1, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName1, integrationAccountName)); + + client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName2, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName2, integrationAccountName)); + + client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName3, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName3, integrationAccountName)); + + var sessions = client.Sessions.ListByIntegrationAccounts(Constants.DefaultResourceGroup, integrationAccountName); + + Assert.True(sessions.Count() == 3); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + + } + } + + /// + /// Tests the delete operations of the integration account session with integration account. + /// Session must be deleted with the integration account deletion. + /// + [Fact] + public void DeleteIntegrationAccountSessionOnAccountDeletion() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + string integrationAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var client = context.GetServiceClient(); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, + CreateIntegrationAccountInstance(integrationAccountName)); + var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountSessionName, + CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName)); + + Assert.Equal(session.Name, integrationAccountSessionName); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + Assert.Throws( + () => + client.Sessions.Get(Constants.DefaultResourceGroup, integrationAccountName, + integrationAccountSessionName)); + } + } + + /// + /// Tests the create operations of the integration account session using file input. + /// + [Fact] + public void CreateIntegrationAccountSessionUsingFile() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + + var integrationAs2AccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationX12AccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationEdifactAccountSessionName = + TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + + var client = context.GetServiceClient(); + + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); + + var as2Session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAs2AccountSessionName, + CreateIntegrationAccountSessionInstanceFromFile(integrationAs2AccountSessionName, + integrationAccountName)); + + var edifactSession = client.Sessions.CreateOrUpdate( + Constants.DefaultResourceGroup, + integrationAccountName, integrationEdifactAccountSessionName, + CreateIntegrationAccountSessionInstanceFromFile(integrationEdifactAccountSessionName, integrationAccountName)); + + var x12Session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationX12AccountSessionName, + CreateIntegrationAccountSessionInstanceFromFile(integrationX12AccountSessionName, integrationAccountName)); + + Assert.Equal(as2Session.Name, integrationAs2AccountSessionName); + Assert.Equal(edifactSession.Name, integrationEdifactAccountSessionName); + Assert.Equal(x12Session.Name, integrationX12AccountSessionName); + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + #region Private + + /// + /// Creates an Integration account session + /// + /// Name of the integration account session + /// Name of the integration account + /// Session instance + private IntegrationAccountSession CreateIntegrationAccountSessionInstance( + string integrationAccountSessionName, + string integrationAccountName) + { + IDictionary tags = new Dictionary(); + tags.Add("IntegrationAccountSession", integrationAccountSessionName); + + var session = new IntegrationAccountSession + { + Location = Constants.DefaultLocation, + Tags = tags, + Content = "123" + }; + + return session; + } + + /// + /// Creates an Integration account session from file source + /// + /// Name of the integration account session + /// Name of the integration account + /// Session instance + private IntegrationAccountSession CreateIntegrationAccountSessionInstanceFromFile( + string integrationAccountSessionName, + string integrationAccountName) + { + IDictionary tags = new Dictionary(); + tags.Add("IntegrationAccountSession", integrationAccountSessionName); + + var session = new IntegrationAccountSession + { + Location = Constants.DefaultLocation, + Tags = tags, + Content = "456" + }; + + return session; + } + + #endregion Private + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json new file mode 100644 index 000000000000..17af83096a28 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json @@ -0,0 +1,304 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "de37d3bb-5846-44fc-8459-77f404a046cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096\",\r\n \"name\": \"IntegrationAccount3096\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:491e2b37-5b5d-4048-b301-9074d4a13478" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "1557cef4-0ec2-465c-bcf8-6923a6606c35" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005932Z:1557cef4-0ec2-465c-bcf8-6923a6606c35" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession6103\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "643d9e0d-5fd5-4e5c-a260-d5fa81ebd3dd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"changedTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103\",\r\n \"name\": \"IntegrationAccountSession6103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369125553179\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369125553179\"" + ], + "x-ms-request-id": [ + "westus:b725268a-1bdb-48a1-9153-9b862c3c33ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b6e6b32f-08f2-41ae-9d6c-43a176f81110" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005932Z:b6e6b32f-08f2-41ae-9d6c-43a176f81110" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8acbda36-8e73-4304-8fe4-eaa945c5c372" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"changedTime\": \"2017-02-04T00:59:32.9228329Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103\",\r\n \"name\": \"IntegrationAccountSession6103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369125553179\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "\"08587154369125553179\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:3e21c26d-bad9-4e29-8cac-5ab9a11f999a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14484" + ], + "x-ms-correlation-request-id": [ + "f0425b73-2c7e-4293-895a-efd85c5a51d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005933Z:f0425b73-2c7e-4293-895a-efd85c5a51d6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b3716fc-4a4b-4f43-bdaf-bbbc3cd57ef7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:c8986591-10f9-4a50-9faa-fecb6a1e65ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "0c0fe059-a47c-4be5-bdf4-a7886882c518" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005933Z:0c0fe059-a47c-4be5-bdf4-a7886882c518" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d4544ff-b5ea-4f25-81c5-a95852a42d1e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:c8ac3a15-fdff-40b8-8386-cc693de94610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "a59b6987-bfa8-4344-983c-6ec73cb52efd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005934Z:a59b6987-bfa8-4344-983c-6ec73cb52efd" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndDeleteIntegrationAccountSession": [ + "IntegrationAccount3096", + "IntegrationAccountSession6103" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json new file mode 100644 index 000000000000..b5d649689f40 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json @@ -0,0 +1,252 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "3838e347-ef35-4a67-9d38-7332b59b8ccc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553\",\r\n \"name\": \"IntegrationAccount1553\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:bae11aa2-6aa3-4967-94da-4890dfb6fe6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "47cc39cc-8b06-47bb-96e2-3793cb7fc23d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005943Z:47cc39cc-8b06-47bb-96e2-3793cb7fc23d" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjYwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession2609\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "78ec31b9-f82b-405a-96fa-f9ac0feace81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"changedTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609\",\r\n \"name\": \"IntegrationAccountSession2609\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369018295253\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369018295253\"" + ], + "x-ms-request-id": [ + "westus:9feb7d57-8057-4dfc-9632-094c50efba08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "131270ab-2447-4e5a-bcdc-d25a4405ca29" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005943Z:131270ab-2447-4e5a-bcdc-d25a4405ca29" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjYwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "997f9489-3214-45ad-943c-51e530f44d18" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"changedTime\": \"2017-02-04T00:59:43.6489887Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609\",\r\n \"name\": \"IntegrationAccountSession2609\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369018295253\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "\"08587154369018295253\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4c1df659-05b2-4e02-b799-7d44a649d373" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14737" + ], + "x-ms-correlation-request-id": [ + "a0f9e2e0-515c-48a9-ae61-dde8892576b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005943Z:a0f9e2e0-515c-48a9-ae61-dde8892576b6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b366a17d-89cb-4123-b553-e2c8ebce7d24" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:262d3e9e-d856-432b-8d20-b79fbc89e3ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1435119a-b2dc-44d7-ba15-fbd58a32e7de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005944Z:1435119a-b2dc-44d7-ba15-fbd58a32e7de" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndGetIntegrationAccountSession": [ + "IntegrationAccount1553", + "IntegrationAccountSession2609" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json new file mode 100644 index 000000000000..61e20eab8974 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json @@ -0,0 +1,258 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "06b9f859-4cb9-4af4-86ce-a92e66965c52" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234\",\r\n \"name\": \"IntegrationAccount9234\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4183ecf4-e3de-4df8-9d37-1ec78bd09fa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "88d3fe8f-2d7c-4b54-8c3c-783243fd9ccf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005923Z:88d3fe8f-2d7c-4b54-8c3c-783243fd9ccf" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODc4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession878\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ], + "x-ms-client-request-id": [ + "1aef32bf-0e01-4abf-a29f-2a3cf88ffa86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"changedTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878\",\r\n \"name\": \"IntegrationAccountSession878\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369213813625\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369213813625\"" + ], + "x-ms-request-id": [ + "westus:5c52358c-accc-4ace-8178-f73ff0a10385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "cf9fe858-8dbb-47e5-8dbe-ad84af78abe4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005924Z:cf9fe858-8dbb-47e5-8dbe-ad84af78abe4" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODc4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession878\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ], + "x-ms-client-request-id": [ + "8a2c85b9-5484-44c3-8ac9-97ee95ad6436" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"changedTime\": \"2017-02-04T00:59:24.0964532Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878\",\r\n \"name\": \"IntegrationAccountSession878\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369212374832\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "\"08587154369212374832\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:30f5d553-6922-456c-993e-8af8aa55f371" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "5b99a118-f5c4-4416-810a-997b80458a78" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005924Z:5b99a118-f5c4-4416-810a-997b80458a78" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b9608f9-07d6-4d8d-b733-6ef138764b99" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:ccf29047-6d93-4036-b65b-5db82bbf9347" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "36dedb84-6c4c-4323-b801-902e181e4593" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005925Z:36dedb84-6c4c-4323-b801-902e181e4593" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndUpdateIntegrationAccountSession": [ + "IntegrationAccount9234", + "IntegrationAccountSession878" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json new file mode 100644 index 000000000000..e780d8e8eb39 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json @@ -0,0 +1,320 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "ab06914c-be44-4aed-8886-95921c9117f2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128\",\r\n \"name\": \"IntegrationAccount4128\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6290c7ca-47a8-44d0-8d3a-3ee27032c5cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "63ad44b9-2f08-478e-8f48-ec1dd430b825" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005918Z:63ad44b9-2f08-478e-8f48-ec1dd430b825" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession5697?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNTY5Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession5697\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "32978cbe-a1eb-4579-9ac6-4a1abc4c00cc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.0235096Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.0235096Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession5697\",\r\n \"name\": \"IntegrationAccountSession5697\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369264540562\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369264540562\"" + ], + "x-ms-request-id": [ + "westus:6128e791-ef85-4a19-9660-f7db3cc0d765" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "9f13d718-d56a-4f5b-8c3a-72c362816b77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005919Z:9f13d718-d56a-4f5b-8c3a-72c362816b77" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession2575?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjU3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession2575\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "b75cdaf5-3214-4bff-af13-d3a058dfce4c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.3181315Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.3181315Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession2575\",\r\n \"name\": \"IntegrationAccountSession2575\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369261594325\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369261594325\"" + ], + "x-ms-request-id": [ + "westus:cd1539ab-eddc-4a65-9c0a-288387a84ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "9b7516cb-0454-4c5e-ba74-0b3dd224c73d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005919Z:9b7516cb-0454-4c5e-ba74-0b3dd224c73d" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession8047?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODA0Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession8047\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "7fab120b-1e26-45cc-9868-1402e62568cc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.499283Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.499283Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession8047\",\r\n \"name\": \"IntegrationAccountSession8047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369259782850\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369259782850\"" + ], + "x-ms-request-id": [ + "westus:11db73c7-f5ed-4760-b1c1-2fc298328650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "1020b696-bdee-419e-8de2-9c34b33c8ac9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005919Z:1020b696-bdee-419e-8de2-9c34b33c8ac9" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd475ab1-62e2-4c0a-be8a-37d13641419e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:9a57beec-0c9f-44a3-b1f9-4429dc2bf325" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "6fefd431-5e03-4331-87ca-73b9b4fac1b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005920Z:6fefd431-5e03-4331-87ca-73b9b4fac1b5" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateIntegrationAccountSessionUsingFile": [ + "IntegrationAccount4128", + "IntegrationAccountSession5697", + "IntegrationAccountSession8047", + "IntegrationAccountSession2575" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json new file mode 100644 index 000000000000..72ae4fdf9eae --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json @@ -0,0 +1,245 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "d9ea285b-6ad4-4b0d-ab19-06b0074291dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811\",\r\n \"name\": \"IntegrationAccount9811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:67ec0660-dd5a-4c25-98d7-b04bf09330eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2d2ad241-a629-4341-8da4-a3bf6c0f2a9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005928Z:2d2ad241-a629-4341-8da4-a3bf6c0f2a9f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTY5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1692\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "e5f960a9-5bc2-47a9-8f7e-57a2b060760d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:28.4608095Z\",\r\n \"changedTime\": \"2017-02-04T00:59:28.4608095Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692\",\r\n \"name\": \"IntegrationAccountSession1692\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369170167581\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369170167581\"" + ], + "x-ms-request-id": [ + "westus:b4231fd2-a11f-4c5a-9acf-d160d933f354" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c03d9014-4c7e-4910-a438-6fa528c62af2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005928Z:c03d9014-4c7e-4910-a438-6fa528c62af2" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fafe0e6-4c7d-42b8-a8fb-9b8f5a7c762a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6f692466-f9be-4f2e-a426-b956c2a49b65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "cc08c729-6dca-401b-961e-09e45d3ed46c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005929Z:cc08c729-6dca-401b-961e-09e45d3ed46c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTY5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f9d20eb-a92b-4499-8c72-7bef83ad9af6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount9811' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8a3e00f6-a517-44c0-83ea-987905f72d30" + ], + "x-ms-correlation-request-id": [ + "8a3e00f6-a517-44c0-83ea-987905f72d30" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005929Z:8a3e00f6-a517-44c0-83ea-987905f72d30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "DeleteIntegrationAccountSessionOnAccountDeletion": [ + "IntegrationAccount9811", + "IntegrationAccountSession1692" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json new file mode 100644 index 000000000000..d88c0351e616 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json @@ -0,0 +1,379 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "581dee73-31d7-4079-8915-a140acca0e72" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705\",\r\n \"name\": \"IntegrationAccount8705\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:ca6625fd-a24d-4b7b-9fc7-f01fb7172f52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e14f6c9f-a6f3-49af-9307-b28def33b960" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005938Z:e14f6c9f-a6f3-49af-9307-b28def33b960" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDY3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4671\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "922f709a-c8fa-480c-b5fa-88198694bdd9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671\",\r\n \"name\": \"IntegrationAccountSession4671\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369061609122\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369061609122\"" + ], + "x-ms-request-id": [ + "westus:2b6b9198-b421-471e-b69b-42b2a1d2420f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5bb960f5-bdf9-4b86-8cd2-fc16c29f20e2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005939Z:5bb960f5-bdf9-4b86-8cd2-fc16c29f20e2" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDE1Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4157\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ], + "x-ms-client-request-id": [ + "bc9f9e4f-d8ca-4cf9-b45a-6b627cd6c9ae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157\",\r\n \"name\": \"IntegrationAccountSession4157\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369059210657\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369059210657\"" + ], + "x-ms-request-id": [ + "westus:1b733c38-4a83-4f94-a588-0693695cf3c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "4a8459fa-321a-491d-a5f0-8db65f4fd113" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005939Z:4a8459fa-321a-491d-a5f0-8db65f4fd113" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjA5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession209\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ], + "x-ms-client-request-id": [ + "2ab95fba-552c-439b-a4dd-dfca64277a76" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209\",\r\n \"name\": \"IntegrationAccountSession209\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369056787106\\\"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"08587154369056787106\"" + ], + "x-ms-request-id": [ + "westus:3387afdb-184c-4c16-8e00-a8376b1b1c0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "9e900d1f-8692-4dd1-bcd5-c2b5d43e0151" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005939Z:9e900d1f-8692-4dd1-bcd5-c2b5d43e0151" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbcafb3c-fd3c-4c27-8db3-9f3519afa326" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.7997906Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209\",\r\n \"name\": \"IntegrationAccountSession209\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369056787106\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.5574391Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157\",\r\n \"name\": \"IntegrationAccountSession4157\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369059210657\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.317272Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671\",\r\n \"name\": \"IntegrationAccountSession4671\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369061609122\\\"\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:eb5489c0-e710-4761-a36c-dab186f3e535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14684" + ], + "x-ms-correlation-request-id": [ + "227538b9-a12c-4482-8a9a-eac7721efc59" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005940Z:227538b9-a12c-4482-8a9a-eac7721efc59" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4582d18c-e916-480a-836f-3e64f02921c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 04 Feb 2017 00:59:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:e1fec6df-a5f5-417e-8a92-c500601cfda4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "251c7746-1c32-4010-abb5-1639e48eac0c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170204T005940Z:251c7746-1c32-4010-abb5-1639e48eac0c" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "ListIntegrationAccountSessions": [ + "IntegrationAccount8705", + "IntegrationAccountSession4671", + "IntegrationAccountSession4157", + "IntegrationAccountSession209" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountSessionResponseContent.json b/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountSessionResponseContent.json new file mode 100644 index 000000000000..cf3efd4e7c23 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountSessionResponseContent.json @@ -0,0 +1,10 @@ +{ + "properties": { + "createdTime": "2016-02-25T21:57:21.3956457Z", + "changedTime": "2016-02-25T21:57:21.3959335Z", + "content": "123" + }, + "id": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1600/sessions/IntegrationAccountAgreement8906-ICN", + "name": "IntegrationAccountAgreement8906-ICN", + "type": "Microsoft.Logic/integrationAccounts/sessions" +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs index 645931da8861..e11b14b01334 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs @@ -131,6 +131,11 @@ public partial interface ILogicManagementClient : IDisposable /// ICertificatesOperations Certificates { get; } + /// + /// Gets the ISessionsOperations. + /// + ISessionsOperations Sessions { get; } + /// /// Lists all of the available Logic REST API operations. /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs new file mode 100644 index 000000000000..8d0b4841a553 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs @@ -0,0 +1,161 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// SessionsOperations operations. + /// + public partial interface ISessionsOperations + { + /// + /// Gets a list of integration account sessions. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The integration account session. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of integration account sessions. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs index 58c7bc7bd1b4..31b6256a8a65 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs @@ -137,6 +137,11 @@ public partial class LogicManagementClient : ServiceClient public virtual ICertificatesOperations Certificates { get; private set; } + /// + /// Gets the ISessionsOperations. + /// + public virtual ISessionsOperations Sessions { get; private set; } + /// /// Initializes a new instance of the LogicManagementClient class. /// @@ -350,6 +355,7 @@ private void Initialize() this.Partners = new PartnersOperations(this); this.Agreements = new AgreementsOperations(this); this.Certificates = new CertificatesOperations(this); + this.Sessions = new SessionsOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2016-06-01"; this.AcceptLanguage = "en-US"; diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs new file mode 100644 index 000000000000..2b9029810be2 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The integration account session. + /// + [JsonTransformation] + public partial class IntegrationAccountSession : Resource + { + /// + /// Initializes a new instance of the IntegrationAccountSession class. + /// + public IntegrationAccountSession() { } + + /// + /// Initializes a new instance of the IntegrationAccountSession class. + /// + public IntegrationAccountSession(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object content = default(object)) + : base(id, name, type, location, tags) + { + CreatedTime = createdTime; + ChangedTime = changedTime; + Content = content; + } + + /// + /// Gets the created time. + /// + [JsonProperty(PropertyName = "properties.createdTime")] + public DateTime? CreatedTime { get; private set; } + + /// + /// Gets the changed time. + /// + [JsonProperty(PropertyName = "properties.changedTime")] + public DateTime? ChangedTime { get; private set; } + + /// + /// Gets or sets the session content. + /// + [JsonProperty(PropertyName = "properties.content")] + public object Content { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs new file mode 100644 index 000000000000..451a29b2c80e --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The integration account session filter. + /// + public partial class IntegrationAccountSessionFilter + { + /// + /// Initializes a new instance of the IntegrationAccountSessionFilter + /// class. + /// + public IntegrationAccountSessionFilter() { } + + /// + /// Initializes a new instance of the IntegrationAccountSessionFilter + /// class. + /// + public IntegrationAccountSessionFilter(DateTime changedTime) + { + ChangedTime = changedTime; + } + + /// + /// Gets or sets the changed time of integration account sessions. + /// + [JsonProperty(PropertyName = "changedTime")] + public DateTime ChangedTime { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs new file mode 100644 index 000000000000..b4a60e237f20 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs @@ -0,0 +1,1031 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic +{ + 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.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// SessionsOperations operations. + /// + internal partial class SessionsOperations : IServiceOperations, ISessionsOperations + { + /// + /// Initializes a new instance of the SessionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SessionsOperations(LogicManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the LogicManagementClient + /// + public LogicManagementClient Client { get; private set; } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (integrationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); + } + 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("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("integrationAccountName", integrationAccountName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (integrationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); + } + if (sessionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("integrationAccountName", integrationAccountName); + tracingParameters.Add("sessionName", sessionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + 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; + } + + /// + /// Creates or updates an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The integration account session. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (integrationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); + } + if (sessionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (session == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "session"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("integrationAccountName", integrationAccountName); + tracingParameters.Add("sessionName", sessionName); + tracingParameters.Add("session", session); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + 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("PUT"); + _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; + if(session != null) + { + _requestContent = SafeJsonConvert.SerializeObject(session, 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) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes an integration account session. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (integrationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); + } + if (sessionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("integrationAccountName", integrationAccountName); + tracingParameters.Add("sessionName", sessionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + 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("DELETE"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccountsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs new file mode 100644 index 000000000000..417b0561bff9 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs @@ -0,0 +1,248 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for SessionsOperations. + /// + public static partial class SessionsOperationsExtensions + { + /// + /// Gets a list of integration account sessions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// OData parameters to apply to the operation. + /// + public static IPage ListByIntegrationAccounts(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) + { + return Task.Factory.StartNew(s => ((ISessionsOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByIntegrationAccountsAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByIntegrationAccountsWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + public static IntegrationAccountSession Get(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) + { + return Task.Factory.StartNew(s => ((ISessionsOperations)s).GetAsync(resourceGroupName, integrationAccountName, sessionName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, sessionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The integration account session. + /// + public static IntegrationAccountSession CreateOrUpdate(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session) + { + return Task.Factory.StartNew(s => ((ISessionsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, sessionName, session), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The integration account session. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, sessionName, session, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + public static void Delete(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) + { + Task.Factory.StartNew(s => ((ISessionsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, sessionName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes an integration account session. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The integration account name. + /// + /// + /// The integration account session name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, integrationAccountName, sessionName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByIntegrationAccountsNext(this ISessionsOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((ISessionsOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of integration account sessions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByIntegrationAccountsNextAsync(this ISessionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByIntegrationAccountsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs index c9773a104525..1a6ad70d46b6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs @@ -11,7 +11,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] -[assembly: AssemblyVersion("2.0.0.0")] +[assembly: AssemblyVersion("2.1.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json index addd2cd03cb1..d8d115627e5a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json @@ -1,5 +1,5 @@ { - "version": "2.0.0", + "version": "2.1.0", "description": "Microsoft Azure LogicApps Management Library", "authors": [ "Microsoft" ], From f979c417095d6e36cfa6b6d070abd7722b7ed6ad Mon Sep 17 00:00:00 2001 From: csmengwan Date: Thu, 23 Feb 2017 14:17:46 -0800 Subject: [PATCH 022/137] code gen + enable/disable https test (#2854) * code gen + enable/disable https test * fix assembly version --- .../ScenarioTests/CdnTestExtensions.cs | 30 + .../ScenarioTests/CustomDomainTests.cs | 9 + .../ScenarioTests/GetEdgeNodeTests.cs | 3 +- .../Cdn.Tests/ScenarioTests/ProfileTests.cs | 4 +- .../CustomDomainCRUDTest.json | 822 +++++++++++------- .../Cdn/Cdn.Tests/project.json | 2 +- .../Generated/CdnManagementClient.cs | 68 +- .../CdnManagementClientExtensions.cs | 16 +- .../Generated/CustomDomainsOperations.cs | 482 +++++++++- .../CustomDomainsOperationsExtensions.cs | 104 +++ .../Generated/EdgeNodesOperations.cs | 180 +++- .../EdgeNodesOperationsExtensions.cs | 38 +- .../Generated/EndpointsOperations.cs | 78 +- .../Generated/ICdnManagementClient.cs | 8 +- .../Generated/ICustomDomainsOperations.cs | 62 ++ .../Generated/IEdgeNodesOperations.cs | 24 +- .../Generated/Models/CustomDomain.cs | 14 +- .../Models/CustomHttpsProvisioningState.cs | 27 + .../Generated/Models/EdgenodeResult.cs | 47 - .../Generated/Models/GeoFilterActions.cs | 2 +- .../Models/QueryStringCachingBehavior.cs | 2 +- .../Generated/Models/ResourceType.cs | 2 +- .../Generated/OriginsOperations.cs | 26 +- .../Generated/ProfilesOperations.cs | 70 +- .../Properties/AssemblyInfo.cs | 4 +- .../generate.cmd | 2 +- .../project.json | 2 +- 27 files changed, 1646 insertions(+), 482 deletions(-) create mode 100644 src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/CdnTestExtensions.cs create mode 100644 src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/CustomHttpsProvisioningState.cs delete mode 100644 src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/EdgenodeResult.cs diff --git a/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/CdnTestExtensions.cs b/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/CdnTestExtensions.cs new file mode 100644 index 000000000000..2662b6e72268 --- /dev/null +++ b/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/CdnTestExtensions.cs @@ -0,0 +1,30 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Collections.Generic; + +namespace Cdn.Tests.ScenarioTests +{ + public static class CdnTestExtensions + { + public static IEnumerable ToIEnumerable(this IEnumerator enumerator) + { + while (enumerator.MoveNext()) + { + yield return enumerator.Current; + } + } + } +} diff --git a/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/CustomDomainTests.cs b/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/CustomDomainTests.cs index e2293007f315..a6a8903bac32 100644 --- a/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/CustomDomainTests.cs +++ b/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/CustomDomainTests.cs @@ -10,6 +10,7 @@ using Cdn.Tests.Helpers; using Xunit; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; namespace Cdn.Tests.ScenarioTests { @@ -92,6 +93,11 @@ public void CustomDomainCRUDTest() customDomains = cdnMgmtClient.CustomDomains.ListByEndpoint(resourceGroupName, profileName, endpointName); Assert.Equal(2, customDomains.Count()); + // Enable custom https on custom domain that is already enabled should fail + Assert.ThrowsAny(() => { + cdnMgmtClient.CustomDomains.DisableCustomHttps(resourceGroupName, profileName, endpointName, customDomainName2); + }); + // Delete second custom domain on stopped endpoint should succeed cdnMgmtClient.CustomDomains.Delete(resourceGroupName, profileName, endpointName, customDomainName2); @@ -106,6 +112,9 @@ public void CustomDomainCRUDTest() // Start endpoint cdnMgmtClient.Endpoints.Start(resourceGroupName, profileName, endpointName); + // Enable custom https on custom domain that is already enabled should fail + cdnMgmtClient.CustomDomains.EnableCustomHttps(resourceGroupName, profileName, endpointName, customDomainName1); + // Delete first custom domain on stopped endpoint should succeed cdnMgmtClient.CustomDomains.Delete(resourceGroupName, profileName, endpointName, customDomainName1); diff --git a/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/GetEdgeNodeTests.cs b/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/GetEdgeNodeTests.cs index cff72fc97ae2..b441ae28f430 100644 --- a/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/GetEdgeNodeTests.cs +++ b/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/GetEdgeNodeTests.cs @@ -9,6 +9,7 @@ using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System.Collections.Generic; using System.Linq; +using Microsoft.Azure.Management.Cdn.Models; namespace Cdn.Tests.ScenarioTests { @@ -31,7 +32,7 @@ public void GetEdgeNodeTest() var cdnMgmtClient = CdnTestUtilities.GetCdnManagementClient(context, handler1); var resourcesClient = CdnTestUtilities.GetResourceManagementClient(context, handler2); - var edgeNodes = cdnMgmtClient.EdgeNodes.List().Value; + var edgeNodes = cdnMgmtClient.EdgeNodes.List().GetEnumerator().ToIEnumerable().ToList(); Assert.Equal(0, edgeNodes.Select(e => e.Name).Except(expectedEdgeNodeNames).Count()); Assert.Equal(0, expectedEdgeNodeNames.Except(edgeNodes.Select(e => e.Name)).Count()); diff --git a/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/ProfileTests.cs b/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/ProfileTests.cs index b84a3ffd28c2..d45a8a57a226 100644 --- a/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/ProfileTests.cs +++ b/src/ResourceManagement/Cdn/Cdn.Tests/ScenarioTests/ProfileTests.cs @@ -502,7 +502,7 @@ public void ProfileCheckUsageTest() var resourcesClient = CdnTestUtilities.GetResourceManagementClient(context, handler2); // CheckUsage on subscription should return zero profiles - var subscriptionLevelUsages = cdnMgmtClient.CheckResourceUsage(); + var subscriptionLevelUsages = cdnMgmtClient.ListResourceUsage(); Assert.Equal(1, subscriptionLevelUsages.Count()); var defaultUsage = subscriptionLevelUsages.First(); @@ -528,7 +528,7 @@ public void ProfileCheckUsageTest() var profile = cdnMgmtClient.Profiles.Create(resourceGroupName, profileName, createParameters); VerifyProfileCreated(profile, createParameters); - subscriptionLevelUsages = cdnMgmtClient.CheckResourceUsage(); + subscriptionLevelUsages = cdnMgmtClient.ListResourceUsage(); Assert.Equal(1, subscriptionLevelUsages.Count()); var usageAfterCreation = subscriptionLevelUsages.First(); diff --git a/src/ResourceManagement/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.CustomDomainTests/CustomDomainCRUDTest.json b/src/ResourceManagement/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.CustomDomainTests/CustomDomainCRUDTest.json index 9c7c55aaf890..a5c4f10b150e 100644 --- a/src/ResourceManagement/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.CustomDomainTests/CustomDomainCRUDTest.json +++ b/src/ResourceManagement/Cdn/Cdn.Tests/SessionRecords/Cdn.Tests.ScenarioTests.CustomDomainTests/CustomDomainCRUDTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "28" ], "x-ms-client-request-id": [ - "c1aadb77-6a6f-4fbf-8d29-dc4d72aa830a" + "e1b3d704-277d-4774-b482-900679f589ad" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419\",\r\n \"name\": \"cdnResourceGroup8419\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879\",\r\n \"name\": \"cdnResourceGroup1879\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "193" @@ -38,7 +38,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:37:00 GMT" + "Wed, 22 Feb 2017 00:10:49 GMT" ], "Pragma": [ "no-cache" @@ -47,13 +47,13 @@ "1199" ], "x-ms-request-id": [ - "d1c597a7-1815-411e-a45d-ea57e6d6ad2b" + "7ddd7dc3-a8bc-4066-b0d9-a9cee1cf0fde" ], "x-ms-correlation-request-id": [ - "d1c597a7-1815-411e-a45d-ea57e6d6ad2b" + "7ddd7dc3-a8bc-4066-b0d9-a9cee1cf0fde" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213700Z:d1c597a7-1815-411e-a45d-ea57e6d6ad2b" + "WESTUS:20170222T001049Z:7ddd7dc3-a8bc-4066-b0d9-a9cee1cf0fde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "142" ], "x-ms-client-request-id": [ - "0c542707-4620-4cab-9531-3a2f48f6c521" + "5466936c-a0bc-4883-b738-a602ff256382" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4423\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile4648\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "398" @@ -99,7 +99,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:37:02 GMT" + "Wed, 22 Feb 2017 00:10:56 GMT" ], "Pragma": [ "no-cache" @@ -111,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "79c91500-7b5f-4cca-a8f1-a978b0446c0c" + "f94d89a3-2bc1-40be-b554-fa80d36d3aac" ], "x-ms-client-request-id": [ - "0c542707-4620-4cab-9531-3a2f48f6c521" + "5466936c-a0bc-4883-b738-a602ff256382" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/3833f5c4-826e-47aa-8a55-7b0a20deaf79?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/7b3cf76d-3705-4a65-bab3-f08bbbe5c7dd?api-version=2016-10-02" ], "OData-Version": [ "4.0" @@ -135,23 +135,90 @@ "1199" ], "x-ms-correlation-request-id": [ - "a1c31ce3-77d5-4699-9cab-b91ed38dd3aa" + "0a86bab4-ddf9-4f88-81ed-5bbdaab10510" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213703Z:a1c31ce3-77d5-4699-9cab-b91ed38dd3aa" + "WESTUS:20170222T001057Z:0a86bab4-ddf9-4f88-81ed-5bbdaab10510" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/3833f5c4-826e-47aa-8a55-7b0a20deaf79?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzgzM2Y1YzQtODI2ZS00N2FhLThhNTUtN2IwYTIwZGVhZjc5P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/7b3cf76d-3705-4a65-bab3-f08bbbe5c7dd?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvN2IzY2Y3NmQtMzcwNS00YTY1LWJhYjMtZjA4YmJiZTVjN2RkP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Feb 2017 00:11:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "48063dc1-27f4-4ce2-9844-d01fee10ddf8" + ], + "x-ms-client-request-id": [ + "9ddf5194-1d1c-4c92-b35d-74eb051cd15b" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "16fdd23e-3aba-4da8-bb93-cd83d3de408d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20170222T001128Z:16fdd23e-3aba-4da8-bb93-cd83d3de408d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/7b3cf76d-3705-4a65-bab3-f08bbbe5c7dd?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvN2IzY2Y3NmQtMzcwNS00YTY1LWJhYjMtZjA4YmJiZTVjN2RkP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", @@ -166,7 +233,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:37:32 GMT" + "Wed, 22 Feb 2017 00:11:57 GMT" ], "Pragma": [ "no-cache" @@ -181,10 +248,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ee3ef6f0-5147-4b60-8f16-1994015d4c1e" + "7c44590e-a9e2-40c6-b79f-3ee42498c9c3" ], "x-ms-client-request-id": [ - "261b3810-5047-4285-a8e1-64eddf77e645" + "72e9b1a1-4a1a-4101-8630-aacd61216372" ], "OData-Version": [ "4.0" @@ -199,29 +266,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-correlation-request-id": [ - "d16f11b5-cf77-4894-954d-090540fd89e9" + "138d9e76-67dd-4de9-9010-9d85f98565b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213733Z:d16f11b5-cf77-4894-954d-090540fd89e9" + "WESTUS:20170222T001158Z:138d9e76-67dd-4de9-9010-9d85f98565b4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4423\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile4648\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -233,7 +300,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:37:33 GMT" + "Wed, 22 Feb 2017 00:11:58 GMT" ], "Pragma": [ "no-cache" @@ -248,10 +315,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b3bf27bb-ceb3-449c-af58-6db577834e8e" + "a26db140-4b2c-40a3-bee8-374b17f0416f" ], "x-ms-client-request-id": [ - "3dcd0135-7c3b-416e-b47c-c6cbd6b73f81" + "d62cca3f-a0ab-4260-96c7-1155880eec0c" ], "OData-Version": [ "4.0" @@ -266,20 +333,20 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-correlation-request-id": [ - "a113ea7e-b070-4e28-bb04-9b689b9f573b" + "e0cd04cd-e2c7-45a4-adcd-4e491fe6889e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213734Z:a113ea7e-b070-4e28-bb04-9b689b9f573b" + "WESTUS:20170222T001159Z:e0cd04cd-e2c7-45a4-adcd-4e491fe6889e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTA/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTA/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", "RequestHeaders": { @@ -290,17 +357,17 @@ "258" ], "x-ms-client-request-id": [ - "363edb36-f33a-4976-a70e-7f4caf562ddf" + "ce71eadd-8559-4f30-9ee7-c21da7f16d6d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"geoFilters\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"geoFilters\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "878" @@ -315,7 +382,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:37:35 GMT" + "Wed, 22 Feb 2017 00:12:00 GMT" ], "Pragma": [ "no-cache" @@ -327,13 +394,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "a5bdaee6-14ba-4e91-b2a8-dfb58bf1ba22" + "7287f5c5-d078-4d55-a1c8-c4d13dad9f1a" ], "x-ms-client-request-id": [ - "363edb36-f33a-4976-a70e-7f4caf562ddf" + "ce71eadd-8559-4f30-9ee7-c21da7f16d6d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/7d08f547-5d93-44c3-b4e9-0f380cb3024a?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/98d25e48-c167-4a83-9f5b-6bac8c496f84?api-version=2016-10-02" ], "OData-Version": [ "4.0" @@ -351,23 +418,23 @@ "1198" ], "x-ms-correlation-request-id": [ - "ee23afeb-48f1-4e27-8bf5-88bad77cbf88" + "1bad58e0-3f31-4908-a77f-c99e7ee763b5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213736Z:ee23afeb-48f1-4e27-8bf5-88bad77cbf88" + "WESTUS:20170222T001200Z:1bad58e0-3f31-4908-a77f-c99e7ee763b5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/7d08f547-5d93-44c3-b4e9-0f380cb3024a?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvN2QwOGY1NDctNWQ5My00NGMzLWI0ZTktMGYzODBjYjMwMjRhP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/98d25e48-c167-4a83-9f5b-6bac8c496f84?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOThkMjVlNDgtYzE2Ny00YTgzLTlmNWItNmJhYzhjNDk2Zjg0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", @@ -382,7 +449,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:38:05 GMT" + "Wed, 22 Feb 2017 00:12:30 GMT" ], "Pragma": [ "no-cache" @@ -397,10 +464,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f100703-a41e-4ca7-8818-b7648d74935e" + "6b4c916e-ad46-4095-94fc-97a8ed8a5a27" ], "x-ms-client-request-id": [ - "4a0601ac-4ca9-466a-bd18-8135c8209bf4" + "db5ba6e9-1fcd-4493-a81d-335b7948f9c4" ], "OData-Version": [ "4.0" @@ -415,29 +482,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-correlation-request-id": [ - "a1166bad-cc8d-46a0-8d67-dec59ff9b48b" + "80bd050c-26de-4c01-9aab-72c2cd34d9b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213806Z:a1166bad-cc8d-46a0-8d67-dec59ff9b48b" + "WESTUS:20170222T001231Z:80bd050c-26de-4c01-9aab-72c2cd34d9b1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTA/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTA/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"geoFilters\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint-f3757d2a3e10\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"geoFilters\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -449,7 +516,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:38:05 GMT" + "Wed, 22 Feb 2017 00:12:30 GMT" ], "Pragma": [ "no-cache" @@ -464,10 +531,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ec422719-4632-4816-b2c6-cf003c0b3bd3" + "2b97770e-266a-49e3-a4b8-c314b4e4043e" ], "x-ms-client-request-id": [ - "31a64349-a9d2-4c8f-a17e-6ffe6b58b5ce" + "f038eef6-b75f-4c8a-b591-0695511d039c" ], "OData-Version": [ "4.0" @@ -482,32 +549,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-correlation-request-id": [ - "c6e81db0-8b37-42f1-9612-a2986e59a3ea" + "936c76e3-11f4-4bdd-b0a2-36491ed5a4e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213806Z:c6e81db0-8b37-42f1-9612-a2986e59a3ea" + "WESTUS:20170222T001231Z:936c76e3-11f4-4bdd-b0a2-36491ed5a4e9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8f3fc6d-254f-4569-91df-0d7c0ed08c5e" + "51c63d92-10e5-4384-8168-6273eded4e34" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -522,7 +589,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:38:06 GMT" + "Wed, 22 Feb 2017 00:12:31 GMT" ], "Pragma": [ "no-cache" @@ -537,10 +604,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "95c40be4-e198-4368-b6ae-8d8e8a17d5a4" + "5a7ac2d5-ad94-4dcf-832c-452a82a2f934" ], "x-ms-client-request-id": [ - "b8f3fc6d-254f-4569-91df-0d7c0ed08c5e" + "51c63d92-10e5-4384-8168-6273eded4e34" ], "OData-Version": [ "4.0" @@ -555,35 +622,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14990" ], "x-ms-correlation-request-id": [ - "e433bcda-f715-4c9c-ae6d-db73907c9481" + "152b5baa-5496-4432-999a-ef28d7532ecf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213807Z:e433bcda-f715-4c9c-ae6d-db73907c9481" + "WESTUS:20170222T001232Z:152b5baa-5496-4432-999a-ef28d7532ecf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c12a6e9b-896f-4a58-8d3c-45e8f305a457" + "e0ccf58f-0b8a-4aff-a0b2-e1a5f2059a50" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain690\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain690\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain6460\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6460\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -595,7 +662,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:38:39 GMT" + "Wed, 22 Feb 2017 00:13:04 GMT" ], "Pragma": [ "no-cache" @@ -610,10 +677,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "694d9042-3a20-4b80-a07f-a631acc03090" + "f809a708-0e58-4d1e-b2ba-8c3227c1de5a" ], "x-ms-client-request-id": [ - "c12a6e9b-896f-4a58-8d3c-45e8f305a457" + "e0ccf58f-0b8a-4aff-a0b2-e1a5f2059a50" ], "OData-Version": [ "4.0" @@ -628,35 +695,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14987" ], "x-ms-correlation-request-id": [ - "7a1dde61-ff6d-45df-bfe6-7dbb03a6f92a" + "19289fb5-3239-4c33-93da-9d11c452fc2c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213839Z:7a1dde61-ff6d-45df-bfe6-7dbb03a6f92a" + "WESTUS:20170222T001304Z:19289fb5-3239-4c33-93da-9d11c452fc2c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcafc31b-0bfc-46e9-8946-d1172fad73ae" + "9a5cfeaf-5b11-4073-966e-9e00150d29d5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain690\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain690\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n },\r\n {\r\n \"name\": \"customDomain2798\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain2798\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain6460\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6460\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n },\r\n {\r\n \"name\": \"customDomain39\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain39\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -668,7 +735,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:10 GMT" + "Wed, 22 Feb 2017 00:13:39 GMT" ], "Pragma": [ "no-cache" @@ -683,10 +750,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b82f2e8a-995b-44ca-819d-ebdd7a091817" + "60567ccf-ce64-40dc-9b3b-48b0c3dd8046" ], "x-ms-client-request-id": [ - "bcafc31b-0bfc-46e9-8946-d1172fad73ae" + "9a5cfeaf-5b11-4073-966e-9e00150d29d5" ], "OData-Version": [ "4.0" @@ -701,35 +768,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14985" ], "x-ms-correlation-request-id": [ - "5a8b4e58-57aa-4856-ab4a-7684396faaf1" + "db3a594a-1ca1-4ea9-8bdf-4af0b2f5f21a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213910Z:5a8b4e58-57aa-4856-ab4a-7684396faaf1" + "WESTUS:20170222T001340Z:db3a594a-1ca1-4ea9-8bdf-4af0b2f5f21a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ef7e673-8c0f-4e07-b9f2-da2f8501ab0d" + "77d91f83-a6d9-49db-af85-0fd3eac06b2f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain690\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain690\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"customDomain6460\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6460\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -741,7 +808,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:11 GMT" + "Wed, 22 Feb 2017 00:14:39 GMT" ], "Pragma": [ "no-cache" @@ -756,10 +823,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8cdce89f-3bc1-4aee-ab70-b8c204fce82f" + "54b48347-1b12-4651-ad12-040968e80019" ], "x-ms-client-request-id": [ - "5ef7e673-8c0f-4e07-b9f2-da2f8501ab0d" + "77d91f83-a6d9-49db-af85-0fd3eac06b2f" ], "OData-Version": [ "4.0" @@ -774,32 +841,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14983" ], "x-ms-correlation-request-id": [ - "79f0cfc8-c06d-4fb0-b7dc-308fadcac9c8" + "f5930626-5f2c-4d92-a27f-63a92e69fe97" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213911Z:79f0cfc8-c06d-4fb0-b7dc-308fadcac9c8" + "WESTUS:20170222T001439Z:f5930626-5f2c-4d92-a27f-63a92e69fe97" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f94ef2fa-b313-4e5b-9c22-121054af452c" + "1f685e6d-9071-4257-8ae3-5a106a15bfe6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -814,7 +881,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:40:13 GMT" + "Wed, 22 Feb 2017 00:16:13 GMT" ], "Pragma": [ "no-cache" @@ -829,10 +896,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0172d630-0a09-4756-837c-30672503750c" + "93094af6-ed45-4729-931e-f784968199e0" ], "x-ms-client-request-id": [ - "f94ef2fa-b313-4e5b-9c22-121054af452c" + "1f685e6d-9071-4257-8ae3-5a106a15bfe6" ], "OData-Version": [ "4.0" @@ -847,20 +914,20 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14979" ], "x-ms-correlation-request-id": [ - "1e130b67-d7a0-4576-808a-c77d14956ceb" + "4bfc4f9e-46ee-41f5-9e61-15b64c177104" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T214013Z:1e130b67-d7a0-4576-808a-c77d14956ceb" + "WESTUS:20170222T001614Z:4bfc4f9e-46ee-41f5-9e61-15b64c177104" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain690?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42OTA/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6460?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\"\r\n }\r\n}", "RequestHeaders": { @@ -871,20 +938,20 @@ "85" ], "x-ms-client-request-id": [ - "c6739525-7f22-45c8-bc19-b2a04d016791" + "f0e2f3e9-22c2-45a5-9764-b4498c206713" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"customDomain690\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain690\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"customDomain6460\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6460\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "488" + "490" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -896,7 +963,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:38:07 GMT" + "Wed, 22 Feb 2017 00:12:32 GMT" ], "Pragma": [ "no-cache" @@ -908,13 +975,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "97e19be8-56e4-4b22-b48a-143cdaced263" + "655e3f16-cdb9-40bf-b04f-016692d0d676" ], "x-ms-client-request-id": [ - "c6739525-7f22-45c8-bc19-b2a04d016791" + "f0e2f3e9-22c2-45a5-9764-b4498c206713" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/421f7007-0c9a-4e55-8787-af7d0c6a75d5?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/64a67a3a-4af0-4ee6-a3de-0465cb508fcc?api-version=2016-10-02" ], "OData-Version": [ "4.0" @@ -932,23 +999,23 @@ "1197" ], "x-ms-correlation-request-id": [ - "ca43ff2a-9b53-425e-a14f-158474bcbfc0" + "9df1e9e2-0d2d-48a5-93b2-e10f39e96d54" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213808Z:ca43ff2a-9b53-425e-a14f-158474bcbfc0" + "WESTUS:20170222T001233Z:9df1e9e2-0d2d-48a5-93b2-e10f39e96d54" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/421f7007-0c9a-4e55-8787-af7d0c6a75d5?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDIxZjcwMDctMGM5YS00ZTU1LTg3ODctYWY3ZDBjNmE3NWQ1P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/64a67a3a-4af0-4ee6-a3de-0465cb508fcc?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjRhNjdhM2EtNGFmMC00ZWU2LWEzZGUtMDQ2NWNiNTA4ZmNjP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", @@ -963,7 +1030,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:38:38 GMT" + "Wed, 22 Feb 2017 00:13:03 GMT" ], "Pragma": [ "no-cache" @@ -978,10 +1045,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "90f7c21b-49a0-4a6d-9e15-295b07f76746" + "889d43db-00c6-4a4b-9a13-63a5abd497ab" ], "x-ms-client-request-id": [ - "66ff2524-4578-493c-8ff1-0e99c9c6385e" + "e84da7ab-e0f1-4dc8-bc88-a4d2acdfc5a0" ], "OData-Version": [ "4.0" @@ -996,29 +1063,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14989" ], "x-ms-correlation-request-id": [ - "61cb052b-887f-477f-be8c-98dbb4c41fa3" + "cdbc57bb-005b-448f-8631-d1e7815f1b60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213838Z:61cb052b-887f-477f-be8c-98dbb4c41fa3" + "WESTUS:20170222T001303Z:cdbc57bb-005b-448f-8631-d1e7815f1b60" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain690?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42OTA/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6460?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"customDomain690\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain690\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"customDomain6460\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain6460\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1030,7 +1097,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:38:38 GMT" + "Wed, 22 Feb 2017 00:13:03 GMT" ], "Pragma": [ "no-cache" @@ -1045,10 +1112,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1dfd85a-63f8-424c-a9cb-a692117ef246" + "e918e545-4cb5-41af-8d2a-358354081ee0" ], "x-ms-client-request-id": [ - "ea476226-0cf2-4529-a81e-e1f64f233239" + "b8bdab04-4362-4e92-b9ac-edf2cc40db10" ], "OData-Version": [ "4.0" @@ -1063,32 +1130,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14988" ], "x-ms-correlation-request-id": [ - "5515fcbd-3125-4582-b4e3-5d618e04a11b" + "cec67e66-1214-4cf1-82e6-d404f1b6fb5c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213838Z:5515fcbd-3125-4582-b4e3-5d618e04a11b" + "WESTUS:20170222T001304Z:cec67e66-1214-4cf1-82e6-d404f1b6fb5c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain690?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42OTA/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6460?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2c4f4a2-f26c-40de-b447-3541991fbf8d" + "31911cd0-eef9-4529-96ee-b61b231e33d2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", @@ -1109,7 +1176,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:40:12 GMT" + "Wed, 22 Feb 2017 00:15:41 GMT" ], "Pragma": [ "no-cache" @@ -1118,10 +1185,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "3a33227f-892c-4fb5-a351-53140dd005b3" + "c5c66c27-5903-4f15-bbe9-e3ead45daff7" ], "x-ms-client-request-id": [ - "a2c4f4a2-f26c-40de-b447-3541991fbf8d" + "31911cd0-eef9-4529-96ee-b61b231e33d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1133,38 +1200,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14980" ], "x-ms-correlation-request-id": [ - "c60cf902-df09-435d-acf9-102117c88f01" + "00b508d2-d8c7-4c14-815e-5771c38e31a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T214013Z:c60cf902-df09-435d-acf9-102117c88f01" + "WESTUS:20170222T001542Z:00b508d2-d8c7-4c14-815e-5771c38e31a8" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/stop?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvc3RvcD9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/stop?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvc3RvcD9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac0f03df-1e72-4b18-8b74-c2713f8badb1" + "10ee2748-6f02-4342-8f7a-5fdb97b5ebb3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopping\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain690\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"geoFilters\": []\r\n}", + "ResponseBody": "{\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopping\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain6460\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"geoFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "691" + "692" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1176,13 +1243,13 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:38:39 GMT" + "Wed, 22 Feb 2017 00:13:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/896d4c5d-5678-4db0-b077-e74bd2914fae/profileresults/profile4423/endpointresults/endpoint-f3757d2a3e10?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/af8289bf-c318-4dea-a29f-3111f92f4da8/profileresults/profile4648/endpointresults/endpoint-f3757d2a3e10?api-version=2016-10-02" ], "Retry-After": [ "10" @@ -1191,13 +1258,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "65f5b5a8-4d8d-4157-b944-666bd54267c9" + "6953272f-e4c1-4219-b774-6be348fdde27" ], "x-ms-client-request-id": [ - "ac0f03df-1e72-4b18-8b74-c2713f8badb1" + "10ee2748-6f02-4342-8f7a-5fdb97b5ebb3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/896d4c5d-5678-4db0-b077-e74bd2914fae?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/af8289bf-c318-4dea-a29f-3111f92f4da8?api-version=2016-10-02" ], "OData-Version": [ "4.0" @@ -1215,23 +1282,23 @@ "1196" ], "x-ms-correlation-request-id": [ - "1bcc711d-4b89-46a3-bd67-bb760dff5db9" + "253567db-6531-4ed0-a6a9-db3fd5f7576c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213839Z:1bcc711d-4b89-46a3-bd67-bb760dff5db9" + "WESTUS:20170222T001306Z:253567db-6531-4ed0-a6a9-db3fd5f7576c" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/896d4c5d-5678-4db0-b077-e74bd2914fae?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODk2ZDRjNWQtNTY3OC00ZGIwLWIwNzctZTc0YmQyOTE0ZmFlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/af8289bf-c318-4dea-a29f-3111f92f4da8?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWY4Mjg5YmYtYzMxOC00ZGVhLWEyOWYtMzExMWY5MmY0ZGE4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", @@ -1246,7 +1313,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:09 GMT" + "Wed, 22 Feb 2017 00:13:37 GMT" ], "Pragma": [ "no-cache" @@ -1261,10 +1328,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d67fb95f-ab7b-4b17-b04d-38c114f94797" + "317cc084-1c39-4756-a8e6-d9b466a02c8e" ], "x-ms-client-request-id": [ - "804df6c3-3dbd-4df5-8867-9542782fdfd7" + "ca6ab542-3e88-40e2-aa74-9bd134551367" ], "OData-Version": [ "4.0" @@ -1279,20 +1346,20 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14986" ], "x-ms-correlation-request-id": [ - "9846885c-5ef6-4c78-b3ca-641d76173601" + "45c1a1e8-b01c-436e-8c67-b00546b8e83f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213910Z:9846885c-5ef6-4c78-b3ca-641d76173601" + "WESTUS:20170222T001337Z:45c1a1e8-b01c-436e-8c67-b00546b8e83f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain2798?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW4yNzk4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain39?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW4zOT9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"sdk-2-f3757d2a3e10.azureedge-test.net\"\r\n }\r\n}", "RequestHeaders": { @@ -1303,20 +1370,20 @@ "85" ], "x-ms-client-request-id": [ - "37decf5e-3c59-479d-a636-4cb821d01968" + "74f1dd5d-a274-423c-a813-9bd0295f7511" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"customDomain2798\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain2798\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"customDomain39\",\r\n \"id\": \"/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customdomains/customDomain39\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/customdomains\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-2-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"validationData\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "489" + "485" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1328,7 +1395,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:10 GMT" + "Wed, 22 Feb 2017 00:13:39 GMT" ], "Pragma": [ "no-cache" @@ -1337,10 +1404,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "5ae1c13c-3b46-46f0-b524-585923b7ffd7" + "91090656-f82d-44b9-bcdd-dfc2acf28bd2" ], "x-ms-client-request-id": [ - "37decf5e-3c59-479d-a636-4cb821d01968" + "74f1dd5d-a274-423c-a813-9bd0295f7511" ], "OData-Version": [ "4.0" @@ -1358,29 +1425,99 @@ "1195" ], "x-ms-correlation-request-id": [ - "8765f431-4578-4532-aba6-73c98199714b" + "1bde57af-78ff-44c3-87f0-ad0dfa03eb4d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213910Z:8765f431-4578-4532-aba6-73c98199714b" + "WESTUS:20170222T001339Z:1bde57af-78ff-44c3-87f0-ad0dfa03eb4d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain2798?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW4yNzk4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain39/disableCustomHttps?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW4zOS9kaXNhYmxlQ3VzdG9tSHR0cHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aae938ca-fec2-47e1-b797-ec91019c9449" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The requested operation cannot be executed on the entity in the current state.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Feb 2017 00:13:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "1f8ac426-3c02-4b7d-87cf-510bdfd6bc78" + ], + "x-ms-client-request-id": [ + "aae938ca-fec2-47e1-b797-ec91019c9449" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "ddd4cc09-fff7-4446-a88e-76e9b6eeb263" + ], + "x-ms-routing-request-id": [ + "WESTUS:20170222T001340Z:ddd4cc09-fff7-4446-a88e-76e9b6eeb263" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain39?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW4zOT9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "015def90-68f0-4dde-ba54-f9fb90c107b0" + "11eadcc5-51e9-4101-a082-6aa536ba85c1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "", @@ -1395,7 +1532,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:10 GMT" + "Wed, 22 Feb 2017 00:13:57 GMT" ], "Pragma": [ "no-cache" @@ -1404,10 +1541,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "24e7a77c-9b51-444d-b878-59549c2eca16" + "70ea646c-2df1-4298-8464-d7657b8cb2e6" ], "x-ms-client-request-id": [ - "015def90-68f0-4dde-ba54-f9fb90c107b0" + "11eadcc5-51e9-4101-a082-6aa536ba85c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,32 +1556,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "ad30d526-8e0f-48f5-b380-8d2bba9a1541" + "3d0a2e2e-ff76-4232-8d14-0ddcadd53bd4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213911Z:ad30d526-8e0f-48f5-b380-8d2bba9a1541" + "WESTUS:20170222T001358Z:3d0a2e2e-ff76-4232-8d14-0ddcadd53bd4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain2798?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW4yNzk4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain39?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW4zOT9hcGktdmVyc2lvbj0yMDE2LTEwLTAy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f65511a-4023-4d68-8ebf-1b0d7775ea43" + "e65799e7-0f80-4075-86b2-f1a6eb1cc331" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", @@ -1465,7 +1602,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:11 GMT" + "Wed, 22 Feb 2017 00:13:58 GMT" ], "Pragma": [ "no-cache" @@ -1474,10 +1611,10 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "04633dbb-024c-44af-a023-98b443728eaa" + "ed1bc1bc-1ad4-4473-8f5a-2ddc6369167e" ], "x-ms-client-request-id": [ - "4f65511a-4023-4d68-8ebf-1b0d7775ea43" + "e65799e7-0f80-4075-86b2-f1a6eb1cc331" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1489,38 +1626,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14984" ], "x-ms-correlation-request-id": [ - "97a13a96-4646-4ce4-9453-c0d82d375343" + "86a2e1a9-9fcd-4a56-973a-165b675ba52b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213911Z:97a13a96-4646-4ce4-9453-c0d82d375343" + "WESTUS:20170222T001358Z:86a2e1a9-9fcd-4a56-973a-165b675ba52b" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/start?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvc3RhcnQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/start?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvc3RhcnQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e99b457-5c17-441a-ac08-677cc4b81d5f" + "6afc268d-3c77-4329-bdd2-374fe86375b1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Starting\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain690\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"geoFilters\": []\r\n}", + "ResponseBody": "{\r\n \"hostName\": \"endpoint-f3757d2a3e10.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Starting\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null\r\n }\r\n }\r\n ],\r\n \"customDomains\": [\r\n {\r\n \"name\": \"customDomain6460\",\r\n \"properties\": {\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"validationData\": null\r\n }\r\n }\r\n ],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"geoFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "691" + "692" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1532,13 +1669,13 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:12 GMT" + "Wed, 22 Feb 2017 00:14:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/1805e472-122f-480f-a7a7-6cb0f07de676/profileresults/profile4423/endpointresults/endpoint-f3757d2a3e10?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/1cd90313-551d-48ad-8f15-209ac6f49303/profileresults/profile4648/endpointresults/endpoint-f3757d2a3e10?api-version=2016-10-02" ], "Retry-After": [ "10" @@ -1547,13 +1684,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "8b054db0-098b-4807-b8cc-73a2c3a125db" + "a8a31fe7-da71-4f77-888c-61b1b4fbd395" ], "x-ms-client-request-id": [ - "0e99b457-5c17-441a-ac08-677cc4b81d5f" + "6afc268d-3c77-4329-bdd2-374fe86375b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/1805e472-122f-480f-a7a7-6cb0f07de676?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/1cd90313-551d-48ad-8f15-209ac6f49303?api-version=2016-10-02" ], "OData-Version": [ "4.0" @@ -1568,26 +1705,26 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-correlation-request-id": [ - "1499962e-6a88-4e2d-80b1-d61afe61472f" + "1d35f3bf-3905-4087-bbae-0327c068fcb3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213912Z:1499962e-6a88-4e2d-80b1-d61afe61472f" + "WESTUS:20170222T001440Z:1d35f3bf-3905-4087-bbae-0327c068fcb3" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/1805e472-122f-480f-a7a7-6cb0f07de676?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTgwNWU0NzItMTIyZi00ODBmLWE3YTctNmNiMGYwN2RlNjc2P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/1cd90313-551d-48ad-8f15-209ac6f49303?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMWNkOTAzMTMtNTUxZC00OGFkLThmMTUtMjA5YWM2ZjQ5MzAzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", @@ -1602,7 +1739,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:42 GMT" + "Wed, 22 Feb 2017 00:15:10 GMT" ], "Pragma": [ "no-cache" @@ -1617,10 +1754,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a924d79e-48a8-4002-8eb0-b1cdda62a8ea" + "ae2e5921-fed6-4562-83e7-e2af057d44e7" ], "x-ms-client-request-id": [ - "cd2b24e7-aec0-4789-beea-8628334c6c3b" + "be70c096-5752-4a5c-99e0-79d53794dbd3" ], "OData-Version": [ "4.0" @@ -1635,32 +1772,111 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14982" ], "x-ms-correlation-request-id": [ - "0c16a0aa-3d26-4974-a275-fd0529c75299" + "d9793af5-f5c6-4791-91b7-d3effa14e988" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213942Z:0c16a0aa-3d26-4974-a275-fd0529c75299" + "WESTUS:20170222T001510Z:d9793af5-f5c6-4791-91b7-d3effa14e988" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup8419/providers/Microsoft.Cdn/profiles/profile4423/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain690?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NDIzL2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42OTA/YXBpLXZlcnNpb249MjAxNi0xMC0wMg==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6460/enableCustomHttps?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42NDYwL2VuYWJsZUN1c3RvbUh0dHBzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77356b66-42cc-4fd7-b0f8-149450d9088f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"sdk-1-f3757d2a3e10.azureedge-test.net\",\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"validationData\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Feb 2017 00:15:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/ccd5874d-9eba-475c-b0de-8c8f23d9ee8d/profileresults/profile4648/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6460?api-version=2016-10-02" + ], + "Retry-After": [ + "120" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "ceb307a5-a897-4162-b4d1-c4609fdc6d80" + ], + "x-ms-client-request-id": [ + "77356b66-42cc-4fd7-b0f8-149450d9088f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/ccd5874d-9eba-475c-b0de-8c8f23d9ee8d?api-version=2016-10-02" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "936dfb29-f6bb-4742-be61-42ea7d143ada" + ], + "x-ms-routing-request-id": [ + "WESTUS:20170222T001511Z:936dfb29-f6bb-4742-be61-42ea7d143ada" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourceGroups/cdnResourceGroup1879/providers/Microsoft.Cdn/profiles/profile4648/endpoints/endpoint-f3757d2a3e10/customDomains/customDomain6460?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NjQ4L2VuZHBvaW50cy9lbmRwb2ludC1mMzc1N2QyYTNlMTAvY3VzdG9tRG9tYWlucy9jdXN0b21Eb21haW42NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2372a53-9f87-4d24-a3a8-f08bd91473f5" + "20bb86f4-bb62-4f87-9cd6-4f0a26473ce7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "", @@ -1675,13 +1891,13 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:39:42 GMT" + "Wed, 22 Feb 2017 00:15:11 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/28ac5cfc-8677-4978-bcd4-dfee90658188/profileresults/profile4423/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain690?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/a44731c3-d4a6-4cd8-8be9-1bdd1110f2b2/profileresults/profile4648/endpointresults/endpoint-f3757d2a3e10/customdomainresults/customDomain6460?api-version=2016-10-02" ], "Retry-After": [ "10" @@ -1690,13 +1906,13 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "40f1af6c-f221-4dd3-834f-2f8ecfb9d622" + "981a2842-57cf-4d24-bff7-820807bcc3d7" ], "x-ms-client-request-id": [ - "c2372a53-9f87-4d24-a3a8-f08bd91473f5" + "20bb86f4-bb62-4f87-9cd6-4f0a26473ce7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/28ac5cfc-8677-4978-bcd4-dfee90658188?api-version=2016-10-02" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/a44731c3-d4a6-4cd8-8be9-1bdd1110f2b2?api-version=2016-10-02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1708,26 +1924,26 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1190" ], "x-ms-correlation-request-id": [ - "82743329-18be-4e0a-adc3-a3f383c3a73a" + "41a5db75-6454-4fea-8545-25328f9448b2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T213942Z:82743329-18be-4e0a-adc3-a3f383c3a73a" + "WESTUS:20170222T001512Z:41a5db75-6454-4fea-8545-25328f9448b2" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419/providers/Microsoft.Cdn/operationresults/28ac5cfc-8677-4978-bcd4-dfee90658188?api-version=2016-10-02", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjhhYzVjZmMtODY3Ny00OTc4LWJjZDQtZGZlZTkwNjU4MTg4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879/providers/Microsoft.Cdn/operationresults/a44731c3-d4a6-4cd8-8be9-1bdd1110f2b2?api-version=2016-10-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYTQ0NzMxYzMtZDRhNi00Y2Q4LThiZTktMWJkZDExMTBmMmIyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDI=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/2.0.0" + "Microsoft.Azure.Management.Cdn.CdnManagementClient/3.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", @@ -1742,7 +1958,7 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:40:12 GMT" + "Wed, 22 Feb 2017 00:15:41 GMT" ], "Pragma": [ "no-cache" @@ -1757,10 +1973,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6f3c2a97-93a4-49f6-b6ee-2a9a49ef5f66" + "7638902b-75aa-478e-9322-bc469c493e3d" ], "x-ms-client-request-id": [ - "6a016a60-5371-4845-9669-4f82c33b064b" + "fcd51c33-d654-4607-9939-42a69953112f" ], "OData-Version": [ "4.0" @@ -1775,25 +1991,25 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14981" ], "x-ms-correlation-request-id": [ - "d900118b-f2fa-43be-8e82-09880e6021d4" + "bea606a2-2321-4866-af65-f0a221c1f166" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T214013Z:d900118b-f2fa-43be-8e82-09880e6021d4" + "WESTUS:20170222T001542Z:bea606a2-2321-4866-af65-f0a221c1f166" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup8419?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDE5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/resourcegroups/cdnResourceGroup1879?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODc5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c56bdec6-6fbf-48e6-9b5d-4016afafc07f" + "68964b21-1af2-47be-ba6e-f03de7de8484" ], "accept-language": [ "en-US" @@ -1815,28 +2031,28 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:40:13 GMT" + "Wed, 22 Feb 2017 00:16:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "36aa8869-4d43-44c8-8a0d-390a13b51651" + "74bc71f5-2cd7-49c3-95b1-6fcc2793caac" ], "x-ms-correlation-request-id": [ - "36aa8869-4d43-44c8-8a0d-390a13b51651" + "74bc71f5-2cd7-49c3-95b1-6fcc2793caac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T214014Z:36aa8869-4d43-44c8-8a0d-390a13b51651" + "WESTUS:20170222T001615Z:74bc71f5-2cd7-49c3-95b1-6fcc2793caac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1845,8 +2061,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGczT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1867,28 +2083,28 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:40:44 GMT" + "Wed, 22 Feb 2017 00:16:45 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-request-id": [ - "e37f58fe-0885-45b8-b459-9249416f26c3" + "1cb3b843-a287-4ec4-b0a4-c3d5d919fcd7" ], "x-ms-correlation-request-id": [ - "e37f58fe-0885-45b8-b459-9249416f26c3" + "1cb3b843-a287-4ec4-b0a4-c3d5d919fcd7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T214044Z:e37f58fe-0885-45b8-b459-9249416f26c3" + "WESTUS:20170222T001645Z:1cb3b843-a287-4ec4-b0a4-c3d5d919fcd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1897,8 +2113,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGczT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1919,28 +2135,28 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:41:14 GMT" + "Wed, 22 Feb 2017 00:17:15 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "ad6ec7fc-963f-441c-876c-237abe3459aa" + "6c6577af-8dfe-44e3-8f57-356131614eba" ], "x-ms-correlation-request-id": [ - "ad6ec7fc-963f-441c-876c-237abe3459aa" + "6c6577af-8dfe-44e3-8f57-356131614eba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T214115Z:ad6ec7fc-963f-441c-876c-237abe3459aa" + "WESTUS:20170222T001715Z:6c6577af-8dfe-44e3-8f57-356131614eba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1949,8 +2165,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGczT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1971,28 +2187,28 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:41:44 GMT" + "Wed, 22 Feb 2017 00:17:45 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "be787be0-904f-4f40-a523-ad61acca9781" + "e11c09f9-da4a-4526-b34f-8f88d53d4801" ], "x-ms-correlation-request-id": [ - "be787be0-904f-4f40-a523-ad61acca9781" + "e11c09f9-da4a-4526-b34f-8f88d53d4801" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T214145Z:be787be0-904f-4f40-a523-ad61acca9781" + "WESTUS:20170222T001745Z:e11c09f9-da4a-4526-b34f-8f88d53d4801" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,8 +2217,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/8fbd19e9-e8e0-4224-89f6-b1d5d86fb4c4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGZiZDE5ZTktZThlMC00MjI0LTg5ZjYtYjFkNWQ4NmZiNGM0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGczT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2023,22 +2239,22 @@ "no-cache" ], "Date": [ - "Wed, 02 Nov 2016 21:42:14 GMT" + "Wed, 22 Feb 2017 00:18:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "e3c3057a-60a4-4aa0-851f-081941cf75b8" + "78c3a6ee-e12f-4ca5-8de5-163fc70f40c3" ], "x-ms-correlation-request-id": [ - "e3c3057a-60a4-4aa0-851f-081941cf75b8" + "78c3a6ee-e12f-4ca5-8de5-163fc70f40c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161102T214215Z:e3c3057a-60a4-4aa0-851f-081941cf75b8" + "WESTUS:20170222T001815Z:78c3a6ee-e12f-4ca5-8de5-163fc70f40c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2049,12 +2265,12 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup8419" + "cdnResourceGroup1879" ], "CustomDomainCRUDTest": [ - "profile4423", - "customDomain690", - "customDomain2798" + "profile4648", + "customDomain6460", + "customDomain39" ] }, "Variables": { diff --git a/src/ResourceManagement/Cdn/Cdn.Tests/project.json b/src/ResourceManagement/Cdn/Cdn.Tests/project.json index 22d4ddddea61..2ba56d544e0f 100644 --- a/src/ResourceManagement/Cdn/Cdn.Tests/project.json +++ b/src/ResourceManagement/Cdn/Cdn.Tests/project.json @@ -32,7 +32,7 @@ }, "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "1.5.0-preview", "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)", - "Microsoft.Azure.Management.Cdn": "3.0.0-preview", + "Microsoft.Azure.Management.Cdn": "3.0.1-preview", "Microsoft.Azure.ResourceManager": "1.0.0-preview", "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029" diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CdnManagementClient.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CdnManagementClient.cs index b00b5af67d1d..11fd4e109c66 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CdnManagementClient.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CdnManagementClient.cs @@ -38,12 +38,12 @@ public partial class CdnManagementClient : ServiceClient, I /// /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -314,28 +314,28 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { - Formatting = Newtonsoft.Json.Formatting.Indented, - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; SerializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -428,6 +428,8 @@ private void Initialize() } _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -480,7 +482,7 @@ private void Initialize() ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -513,7 +515,7 @@ private void Initialize() { _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -555,7 +557,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> CheckResourceUsageWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListResourceUsageWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (SubscriptionId == null) { @@ -573,7 +575,7 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckResourceUsage", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListResourceUsage", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -606,6 +608,8 @@ private void Initialize() } _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -652,7 +656,7 @@ private void Initialize() ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -685,7 +689,7 @@ private void Initialize() { _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -772,6 +776,8 @@ private void Initialize() } _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -818,7 +824,7 @@ private void Initialize() ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -851,7 +857,7 @@ private void Initialize() { _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -896,7 +902,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> CheckResourceUsageNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListResourceUsageNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -911,7 +917,7 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckResourceUsageNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListResourceUsageNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -939,6 +945,8 @@ private void Initialize() } _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -985,7 +993,7 @@ private void Initialize() ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1018,7 +1026,7 @@ private void Initialize() { _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1105,6 +1113,8 @@ private void Initialize() } _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1151,7 +1161,7 @@ private void Initialize() ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1184,7 +1194,7 @@ private void Initialize() { _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CdnManagementClientExtensions.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CdnManagementClientExtensions.cs index 66cdab333d65..5cc2dc3b2f28 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CdnManagementClientExtensions.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CdnManagementClientExtensions.cs @@ -64,9 +64,9 @@ public static CheckNameAvailabilityOutput CheckNameAvailability(this ICdnManagem /// /// The operations group for this extension method. /// - public static IPage CheckResourceUsage(this ICdnManagementClient operations) + public static IPage ListResourceUsage(this ICdnManagementClient operations) { - return operations.CheckResourceUsageAsync().GetAwaiter().GetResult(); + return operations.ListResourceUsageAsync().GetAwaiter().GetResult(); } /// @@ -79,9 +79,9 @@ public static IPage CheckResourceUsage(this ICdnManagementClient /// /// The cancellation token. /// - public static async Task> CheckResourceUsageAsync(this ICdnManagementClient operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListResourceUsageAsync(this ICdnManagementClient operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckResourceUsageWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListResourceUsageWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -125,9 +125,9 @@ public static IPage ListOperations(this ICdnManagementClient operatio /// /// The NextLink from the previous successful call to List operation. /// - public static IPage CheckResourceUsageNext(this ICdnManagementClient operations, string nextPageLink) + public static IPage ListResourceUsageNext(this ICdnManagementClient operations, string nextPageLink) { - return operations.CheckResourceUsageNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListResourceUsageNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -143,9 +143,9 @@ public static IPage CheckResourceUsageNext(this ICdnManagementCli /// /// The cancellation token. /// - public static async Task> CheckResourceUsageNextAsync(this ICdnManagementClient operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListResourceUsageNextAsync(this ICdnManagementClient operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckResourceUsageNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListResourceUsageNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CustomDomainsOperations.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CustomDomainsOperations.cs index 9741b508c838..58ea0e093970 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CustomDomainsOperations.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CustomDomainsOperations.cs @@ -167,6 +167,8 @@ internal CustomDomainsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -213,7 +215,7 @@ internal CustomDomainsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -246,7 +248,7 @@ internal CustomDomainsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -389,6 +391,8 @@ internal CustomDomainsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -435,7 +439,7 @@ internal CustomDomainsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -468,7 +472,7 @@ internal CustomDomainsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -544,6 +548,454 @@ internal CustomDomainsOperations(CdnManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// Disable https delivery of the custom domain. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// Name of the CDN profile which is unique within the resource group. + /// + /// + /// Name of the endpoint under the profile which is unique globally. + /// + /// + /// Name of the custom domain within an endpoint. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> DisableCustomHttpsWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (profileName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "profileName"); + } + if (endpointName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "endpointName"); + } + if (customDomainName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "customDomainName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("profileName", profileName); + tracingParameters.Add("endpointName", endpointName); + tracingParameters.Add("customDomainName", customDomainName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DisableCustomHttps", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName}/endpoints/{endpointName}/customDomains/{customDomainName}/disableCustomHttps").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{profileName}", System.Uri.EscapeDataString(profileName)); + _url = _url.Replace("{endpointName}", System.Uri.EscapeDataString(endpointName)); + _url = _url.Replace("{customDomainName}", System.Uri.EscapeDataString(customDomainName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 202 && (int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Enable https delivery of the custom domain. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// Name of the CDN profile which is unique within the resource group. + /// + /// + /// Name of the endpoint under the profile which is unique globally. + /// + /// + /// Name of the custom domain within an endpoint. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> EnableCustomHttpsWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (profileName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "profileName"); + } + if (endpointName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "endpointName"); + } + if (customDomainName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "customDomainName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("profileName", profileName); + tracingParameters.Add("endpointName", endpointName); + tracingParameters.Add("customDomainName", customDomainName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "EnableCustomHttps", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName}/endpoints/{endpointName}/customDomains/{customDomainName}/enableCustomHttps").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{profileName}", System.Uri.EscapeDataString(profileName)); + _url = _url.Replace("{endpointName}", System.Uri.EscapeDataString(endpointName)); + _url = _url.Replace("{customDomainName}", System.Uri.EscapeDataString(customDomainName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 202 && (int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Creates a new custom domain within an endpoint. /// @@ -683,6 +1135,8 @@ internal CustomDomainsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -735,7 +1189,7 @@ internal CustomDomainsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -768,7 +1222,7 @@ internal CustomDomainsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -786,7 +1240,7 @@ internal CustomDomainsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -804,7 +1258,7 @@ internal CustomDomainsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -947,6 +1401,8 @@ internal CustomDomainsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -993,7 +1449,7 @@ internal CustomDomainsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1026,7 +1482,7 @@ internal CustomDomainsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1113,6 +1569,8 @@ internal CustomDomainsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1159,7 +1617,7 @@ internal CustomDomainsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1192,7 +1650,7 @@ internal CustomDomainsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CustomDomainsOperationsExtensions.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CustomDomainsOperationsExtensions.cs index 58865df0d678..cbf4b080b425 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CustomDomainsOperationsExtensions.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/CustomDomainsOperationsExtensions.cs @@ -229,6 +229,110 @@ public static CustomDomain Delete(this ICustomDomainsOperations operations, stri } } + /// + /// Disable https delivery of the custom domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// Name of the CDN profile which is unique within the resource group. + /// + /// + /// Name of the endpoint under the profile which is unique globally. + /// + /// + /// Name of the custom domain within an endpoint. + /// + public static CustomDomain DisableCustomHttps(this ICustomDomainsOperations operations, string resourceGroupName, string profileName, string endpointName, string customDomainName) + { + return operations.DisableCustomHttpsAsync(resourceGroupName, profileName, endpointName, customDomainName).GetAwaiter().GetResult(); + } + + /// + /// Disable https delivery of the custom domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// Name of the CDN profile which is unique within the resource group. + /// + /// + /// Name of the endpoint under the profile which is unique globally. + /// + /// + /// Name of the custom domain within an endpoint. + /// + /// + /// The cancellation token. + /// + public static async Task DisableCustomHttpsAsync(this ICustomDomainsOperations operations, string resourceGroupName, string profileName, string endpointName, string customDomainName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DisableCustomHttpsWithHttpMessagesAsync(resourceGroupName, profileName, endpointName, customDomainName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Enable https delivery of the custom domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// Name of the CDN profile which is unique within the resource group. + /// + /// + /// Name of the endpoint under the profile which is unique globally. + /// + /// + /// Name of the custom domain within an endpoint. + /// + public static CustomDomain EnableCustomHttps(this ICustomDomainsOperations operations, string resourceGroupName, string profileName, string endpointName, string customDomainName) + { + return operations.EnableCustomHttpsAsync(resourceGroupName, profileName, endpointName, customDomainName).GetAwaiter().GetResult(); + } + + /// + /// Enable https delivery of the custom domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// Name of the CDN profile which is unique within the resource group. + /// + /// + /// Name of the endpoint under the profile which is unique globally. + /// + /// + /// Name of the custom domain within an endpoint. + /// + /// + /// The cancellation token. + /// + public static async Task EnableCustomHttpsAsync(this ICustomDomainsOperations operations, string resourceGroupName, string profileName, string endpointName, string customDomainName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.EnableCustomHttpsWithHttpMessagesAsync(resourceGroupName, profileName, endpointName, customDomainName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Creates a new custom domain within an endpoint. /// diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EdgeNodesOperations.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EdgeNodesOperations.cs index ba642007df94..3a8cea9492a0 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EdgeNodesOperations.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EdgeNodesOperations.cs @@ -74,7 +74,7 @@ internal EdgeNodesOperations(CdnManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.ApiVersion == null) { @@ -120,6 +120,176 @@ internal EdgeNodesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all the edge nodes of a CDN service. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -166,7 +336,7 @@ internal EdgeNodesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -184,7 +354,7 @@ internal EdgeNodesOperations(CdnManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -197,9 +367,9 @@ internal EdgeNodesOperations(CdnManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EdgeNodesOperationsExtensions.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EdgeNodesOperationsExtensions.cs index 44298016cfad..0c32c1c2e7f5 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EdgeNodesOperationsExtensions.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EdgeNodesOperationsExtensions.cs @@ -27,7 +27,7 @@ public static partial class EdgeNodesOperationsExtensions /// /// The operations group for this extension method. /// - public static EdgenodeResult List(this IEdgeNodesOperations operations) + public static IPage List(this IEdgeNodesOperations operations) { return operations.ListAsync().GetAwaiter().GetResult(); } @@ -41,7 +41,7 @@ public static EdgenodeResult List(this IEdgeNodesOperations operations) /// /// The cancellation token. /// - public static async Task ListAsync(this IEdgeNodesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IEdgeNodesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -49,6 +49,40 @@ public static EdgenodeResult List(this IEdgeNodesOperations operations) } } + /// + /// Lists all the edge nodes of a CDN service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IEdgeNodesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all the edge nodes of a CDN service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IEdgeNodesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EndpointsOperations.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EndpointsOperations.cs index 4cb14f2561df..ef18b2ce203d 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EndpointsOperations.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/EndpointsOperations.cs @@ -158,6 +158,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -204,7 +206,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -237,7 +239,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -372,6 +374,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -418,7 +422,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -451,7 +455,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -794,6 +798,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -846,7 +852,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -879,7 +885,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1014,6 +1020,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1060,7 +1068,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1093,7 +1101,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1240,6 +1248,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1292,7 +1302,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1325,7 +1335,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1343,7 +1353,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1361,7 +1371,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1507,6 +1517,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1559,7 +1571,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1592,7 +1604,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1610,7 +1622,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1742,6 +1754,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1788,7 +1802,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1937,6 +1951,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1983,7 +1999,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2016,7 +2032,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2150,6 +2166,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2196,7 +2214,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2229,7 +2247,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2374,6 +2392,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2426,7 +2446,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2586,6 +2606,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2638,7 +2660,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2740,6 +2762,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2786,7 +2810,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2819,7 +2843,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2907,6 +2931,8 @@ internal EndpointsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2953,7 +2979,7 @@ internal EndpointsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2986,7 +3012,7 @@ internal EndpointsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ICdnManagementClient.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ICdnManagementClient.cs index e3faa007b2d9..a89faba34b0c 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ICdnManagementClient.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ICdnManagementClient.cs @@ -34,12 +34,12 @@ public partial interface ICdnManagementClient : System.IDisposable /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -125,7 +125,7 @@ public partial interface ICdnManagementClient : System.IDisposable /// /// The cancellation token. /// - Task>> CheckResourceUsageWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListResourceUsageWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all of the available CDN REST API operations. @@ -151,7 +151,7 @@ public partial interface ICdnManagementClient : System.IDisposable /// /// The cancellation token. /// - Task>> CheckResourceUsageNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListResourceUsageNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all of the available CDN REST API operations. diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ICustomDomainsOperations.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ICustomDomainsOperations.cs index 5599313010ac..45b8807a0bf1 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ICustomDomainsOperations.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ICustomDomainsOperations.cs @@ -148,6 +148,68 @@ public partial interface ICustomDomainsOperations /// Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Disable https delivery of the custom domain. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// Name of the CDN profile which is unique within the resource group. + /// + /// + /// Name of the endpoint under the profile which is unique globally. + /// + /// + /// Name of the custom domain within an endpoint. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> DisableCustomHttpsWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Enable https delivery of the custom domain. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// Name of the CDN profile which is unique within the resource group. + /// + /// + /// Name of the endpoint under the profile which is unique globally. + /// + /// + /// Name of the custom domain within an endpoint. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> EnableCustomHttpsWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Creates a new custom domain within an endpoint. /// /// diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/IEdgeNodesOperations.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/IEdgeNodesOperations.cs index 2070ecb5e175..a866cce75775 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/IEdgeNodesOperations.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/IEdgeNodesOperations.cs @@ -41,7 +41,29 @@ public partial interface IEdgeNodesOperations /// /// Thrown when a required parameter is null /// - Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all the edge nodes of a CDN service. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/CustomDomain.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/CustomDomain.cs index e629bd478f2d..86538042daaa 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/CustomDomain.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/CustomDomain.cs @@ -41,17 +41,21 @@ public CustomDomain() { } /// Resource tags. /// Resource status of the custom domain. /// Possible values include: 'Creating', 'Active', 'Deleting' + /// Provisioning state of + /// Custom Https of the custom domain. Possible values include: + /// 'Enabling', 'Enabled', 'Disabling', 'Disabled', 'Failed' /// Special validation or data may be /// required when delivering CDN to some regions due to local /// compliance reasons. E.g. ICP license number of a custom domain is /// required to deliver content in China. /// Provisioning status of the custom /// domain. - public CustomDomain(string location, string hostName, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string resourceState = default(string), string validationData = default(string), string provisioningState = default(string)) + public CustomDomain(string location, string hostName, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string resourceState = default(string), string customHttpsProvisioningState = default(string), string validationData = default(string), string provisioningState = default(string)) : base(location, id, name, type, tags) { HostName = hostName; ResourceState = resourceState; + CustomHttpsProvisioningState = customHttpsProvisioningState; ValidationData = validationData; ProvisioningState = provisioningState; } @@ -70,6 +74,14 @@ public CustomDomain() { } [JsonProperty(PropertyName = "properties.resourceState")] public string ResourceState { get; protected set; } + /// + /// Gets provisioning state of Custom Https of the custom domain. + /// Possible values include: 'Enabling', 'Enabled', 'Disabling', + /// 'Disabled', 'Failed' + /// + [JsonProperty(PropertyName = "properties.customHttpsProvisioningState")] + public string CustomHttpsProvisioningState { get; protected set; } + /// /// Gets or sets special validation or data may be required when /// delivering CDN to some regions due to local compliance reasons. diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/CustomHttpsProvisioningState.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/CustomHttpsProvisioningState.cs new file mode 100644 index 000000000000..fbdf0ba13ced --- /dev/null +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/CustomHttpsProvisioningState.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Cdn.Models +{ + using Azure; + using Management; + using Cdn; + + /// + /// Defines values for CustomHttpsProvisioningState. + /// + public static class CustomHttpsProvisioningState + { + public const string Enabling = "Enabling"; + public const string Enabled = "Enabled"; + public const string Disabling = "Disabling"; + public const string Disabled = "Disabled"; + public const string Failed = "Failed"; + } +} + diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/EdgenodeResult.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/EdgenodeResult.cs deleted file mode 100644 index c0780b70aead..000000000000 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/EdgenodeResult.cs +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Cdn.Models -{ - using Azure; - using Management; - using Cdn; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Result of the request to list CDN edgenodes. It contains a list of ip - /// address group and a URL link to get the next set of results. - /// - public partial class EdgenodeResult - { - /// - /// Initializes a new instance of the EdgenodeResult class. - /// - public EdgenodeResult() { } - - /// - /// Initializes a new instance of the EdgenodeResult class. - /// - /// Edge node of CDN service. - public EdgenodeResult(IList value = default(IList)) - { - Value = value; - } - - /// - /// Gets or sets edge node of CDN service. - /// - [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } - - } -} - diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/GeoFilterActions.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/GeoFilterActions.cs index 08c4cdc43c04..a78c3cd29297 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/GeoFilterActions.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/GeoFilterActions.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Cdn.Models /// /// Defines values for GeoFilterActions. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum GeoFilterActions { [EnumMember(Value = "Block")] diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/QueryStringCachingBehavior.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/QueryStringCachingBehavior.cs index a693cbb199ee..ad807c4ec3bf 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/QueryStringCachingBehavior.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/QueryStringCachingBehavior.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Cdn.Models /// /// Defines values for QueryStringCachingBehavior. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum QueryStringCachingBehavior { [EnumMember(Value = "IgnoreQueryString")] diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/ResourceType.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/ResourceType.cs index b4a0a6942ee4..1ad8213de0b5 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/ResourceType.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/Models/ResourceType.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Cdn.Models /// /// Defines values for ResourceType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ResourceType { [EnumMember(Value = "Microsoft.Cdn/Profiles/Endpoints")] diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/OriginsOperations.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/OriginsOperations.cs index c2bbf64407d8..7cde6e38b40a 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/OriginsOperations.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/OriginsOperations.cs @@ -167,6 +167,8 @@ internal OriginsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -213,7 +215,7 @@ internal OriginsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -246,7 +248,7 @@ internal OriginsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -389,6 +391,8 @@ internal OriginsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -435,7 +439,7 @@ internal OriginsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -468,7 +472,7 @@ internal OriginsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -650,6 +654,8 @@ internal OriginsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -702,7 +708,7 @@ internal OriginsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -735,7 +741,7 @@ internal OriginsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -753,7 +759,7 @@ internal OriginsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -840,6 +846,8 @@ internal OriginsOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -886,7 +894,7 @@ internal OriginsOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -919,7 +927,7 @@ internal OriginsOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ProfilesOperations.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ProfilesOperations.cs index b9bf7c12f8b3..4a653f93d054 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ProfilesOperations.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Generated/ProfilesOperations.cs @@ -125,6 +125,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -171,7 +173,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -204,7 +206,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -320,6 +322,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -366,7 +370,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -399,7 +403,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -525,6 +529,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -571,7 +577,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -604,7 +610,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -810,6 +816,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -856,7 +864,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -889,7 +897,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1014,6 +1022,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1060,7 +1070,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1093,7 +1103,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1231,6 +1241,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1283,7 +1295,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1316,7 +1328,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1334,7 +1346,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1352,7 +1364,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1491,6 +1503,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1543,7 +1557,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1576,7 +1590,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1594,7 +1608,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1718,6 +1732,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1764,7 +1780,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1866,6 +1882,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1912,7 +1930,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1945,7 +1963,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2032,6 +2050,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2078,7 +2098,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2111,7 +2131,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2198,6 +2218,8 @@ internal ProfilesOperations(CdnManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2244,7 +2266,7 @@ internal ProfilesOperations(CdnManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2277,7 +2299,7 @@ internal ProfilesOperations(CdnManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs index f1693f7f6c9d..2b6a64a6daea 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure CDN Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure CDN.")] -[assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("3.0.0.0")] +[assembly: AssemblyVersion("3.0.0.0")] +[assembly: AssemblyFileVersion("3.0.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/generate.cmd b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/generate.cmd index 7af368c238b2..58f300769362 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/generate.cmd +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/generate.cmd @@ -4,7 +4,7 @@ :: @echo off -set autoRestVersion=1.0.0-Nightly20161215 +set autoRestVersion=1.0.0-Nightly20170212 if "%1" == "" ( set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-cdn/2016-10-02/swagger/cdn.json" ) else ( diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json index 9975c380d507..c13c63895694 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json @@ -1,5 +1,5 @@ { - "version": "3.0.0-preview", + "version": "3.0.1-preview", "description": "Microsoft Azure CDN Management Library", "authors": [ "Microsoft" ], From 4d37cc15467d2e44f84ac5e64848df88d0d72142 Mon Sep 17 00:00:00 2001 From: Panda Wang Date: Thu, 23 Feb 2017 17:43:45 -0800 Subject: [PATCH 023/137] SDK Client Library for AzureRM.Billing and tests (#2838) * SDK Client Library for AzureRM.Billing and tests Add the newly generated SDK Client for Azure Resource Management Billing Service and tests. * Remove unnecessary projects in cs, fix version, fix tests as playback should not compare time with current time * Update Test Project GUID to make it unique --- .../Billing/Billing.Tests/Billing.Tests.xproj | 21 + .../Helpers/BillingManagementTestUtilities.cs | 27 + .../Helpers/RecordedDelegatingHandler.cs | 92 ++ .../Billing.Tests/Properties/AssemblyInfo.cs | 20 + .../ScenarioTests/InvoicesTests.cs | 100 +++ .../ScenarioTests/OperationsTest.cs | 32 + .../GetInvoiceWithName.json | 75 ++ .../GetInvoicesNoResult.json | 72 ++ .../GetLatestInvoice.json | 75 ++ .../ListInvoicesTest.json | 75 ++ .../ListInvoicesWithQueryParametersTest.json | 75 ++ .../ListOperationsTest.json | 75 ++ .../Billing/Billing.Tests/project.json | 43 + src/ResourceManagement/Billing/Billing.sln | 28 + .../Generated/BillingClient.cs | 330 +++++++ .../Generated/IBillingClient.cs | 87 ++ .../Generated/IInvoicesOperations.cs | 141 +++ .../Generated/IOperations.cs | 69 ++ .../Generated/InvoicesOperations.cs | 808 ++++++++++++++++++ .../Generated/InvoicesOperationsExtensions.cs | 208 +++++ .../Generated/Models/DownloadUrl.cs | 54 ++ .../Generated/Models/ErrorDetails.cs | 61 ++ .../Generated/Models/ErrorResponse.cs | 43 + .../Models/ErrorResponseException.cs | 104 +++ .../Generated/Models/Invoice.cs | 75 ++ .../Generated/Models/Operation.cs | 54 ++ .../Generated/Models/OperationDisplay.cs | 62 ++ .../Generated/Models/Page.cs | 55 ++ .../Generated/Models/Resource.cs | 62 ++ .../Generated/Operations.cs | 391 +++++++++ .../Generated/OperationsExtensions.cs | 88 ++ .../Microsoft.Azure.Management.Billing.xproj | 19 + .../Properties/AssemblyInfo.cs | 19 + .../generate.cmd | 17 + .../project.json | 54 ++ src/ResourceManagement/Billing/global.json | 3 + 36 files changed, 3614 insertions(+) create mode 100644 src/ResourceManagement/Billing/Billing.Tests/Billing.Tests.xproj create mode 100644 src/ResourceManagement/Billing/Billing.Tests/Helpers/BillingManagementTestUtilities.cs create mode 100644 src/ResourceManagement/Billing/Billing.Tests/Helpers/RecordedDelegatingHandler.cs create mode 100644 src/ResourceManagement/Billing/Billing.Tests/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Billing/Billing.Tests/ScenarioTests/InvoicesTests.cs create mode 100644 src/ResourceManagement/Billing/Billing.Tests/ScenarioTests/OperationsTest.cs create mode 100644 src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetInvoiceWithName.json create mode 100644 src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetInvoicesNoResult.json create mode 100644 src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetLatestInvoice.json create mode 100644 src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/ListInvoicesTest.json create mode 100644 src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/ListInvoicesWithQueryParametersTest.json create mode 100644 src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.OperationsTests/ListOperationsTest.json create mode 100644 src/ResourceManagement/Billing/Billing.Tests/project.json create mode 100644 src/ResourceManagement/Billing/Billing.sln create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/BillingClient.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IBillingClient.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IInvoicesOperations.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IOperations.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/InvoicesOperations.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/InvoicesOperationsExtensions.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/DownloadUrl.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorDetails.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorResponse.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorResponseException.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Invoice.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Operation.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/OperationDisplay.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Page.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Resource.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Operations.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/OperationsExtensions.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Microsoft.Azure.Management.Billing.xproj create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/generate.cmd create mode 100644 src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json create mode 100644 src/ResourceManagement/Billing/global.json diff --git a/src/ResourceManagement/Billing/Billing.Tests/Billing.Tests.xproj b/src/ResourceManagement/Billing/Billing.Tests/Billing.Tests.xproj new file mode 100644 index 000000000000..78e9abb2a369 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/Billing.Tests.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + F4CDC178-3DBE-4535-A384-633AB0A802B9 + Billing.Tests + .\obj + .\bin\ + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/Helpers/BillingManagementTestUtilities.cs b/src/ResourceManagement/Billing/Billing.Tests/Helpers/BillingManagementTestUtilities.cs new file mode 100644 index 000000000000..ace7c01bfffd --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/Helpers/BillingManagementTestUtilities.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Billing; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Net; +using System.Threading; + +namespace Billing.Tests.Helpers +{ + public static class BillingTestUtilities + { + public static BillingClient GetBillingManagementClient(MockContext context, RecordedDelegatingHandler handler = null) + { + if (handler != null) + { + handler.IsPassThrough = true; + } + + var client = context.GetServiceClient(handlers: + handler ?? new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + return client; + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/Helpers/RecordedDelegatingHandler.cs b/src/ResourceManagement/Billing/Billing.Tests/Helpers/RecordedDelegatingHandler.cs new file mode 100644 index 000000000000..cbd5e5ff96e9 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/Helpers/RecordedDelegatingHandler.cs @@ -0,0 +1,92 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Net; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading.Tasks; + +namespace Billing.Tests.Helpers +{ + public class RecordedDelegatingHandler : DelegatingHandler + { + private HttpResponseMessage _response; + + public RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + } + + public RecordedDelegatingHandler(HttpResponseMessage response) + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + _response = response; + } + + public HttpStatusCode StatusCodeToReturn { get; set; } + + public HttpStatusCode SubsequentStatusCodeToReturn { get; set; } + + public string Request { get; private set; } + + public HttpRequestHeaders RequestHeaders { get; private set; } + + public HttpContentHeaders ContentHeaders { get; private set; } + + public HttpMethod Method { get; private set; } + + public Uri Uri { get; private set; } + + public bool IsPassThrough { get; set; } + + private int counter; + + protected override async Task SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) + { + counter++; + // Save request + if (request.Content == null) + { + Request = string.Empty; + } + else + { + Request = await request.Content.ReadAsStringAsync(); + } + RequestHeaders = request.Headers; + if (request.Content != null) + { + ContentHeaders = request.Content.Headers; + } + Method = request.Method; + Uri = request.RequestUri; + + // Prepare response + if (IsPassThrough) + { + return await base.SendAsync(request, cancellationToken); + } + else + { + if (_response != null && counter == 1) + { + return _response; + } + else + { + var statusCode = StatusCodeToReturn; + if (counter > 1) + { + statusCode = SubsequentStatusCodeToReturn; + } + HttpResponseMessage response = new HttpResponseMessage(statusCode); + response.Content = new StringContent(""); + return response; + } + } + } + } +} diff --git a/src/ResourceManagement/Billing/Billing.Tests/Properties/AssemblyInfo.cs b/src/ResourceManagement/Billing/Billing.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..990a7806a2a6 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Billing.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Billing.Tests")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +[assembly: ComVisible(false)] + +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/ResourceManagement/Billing/Billing.Tests/ScenarioTests/InvoicesTests.cs b/src/ResourceManagement/Billing/Billing.Tests/ScenarioTests/InvoicesTests.cs new file mode 100644 index 000000000000..b883949281d3 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/ScenarioTests/InvoicesTests.cs @@ -0,0 +1,100 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Billing.Tests.Helpers; +using Microsoft.Azure.Management.Billing; +using Microsoft.Azure.Management.Billing.Models; +using Microsoft.Azure.Management.Resources; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Linq; +using System.Net; +using Xunit; + +namespace Billing.Tests.ScenarioTests +{ + public class InvoicesTests : TestBase + { + const string DownloadUrlExpand = "downloadUrl"; + const string RangeFilter = "invoicePeriodEndDate ge 2017-01-31 and invoicePeriodEndDate le 2017-02-28"; + const string InvoiceName = "2017-02-09-117646100066812"; + + [Fact] + public void ListInvoicesTest() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var billingMgmtClient = BillingTestUtilities.GetBillingManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + var invoices = billingMgmtClient.Invoices.List(); + Assert.NotNull(invoices); + Assert.True(invoices.Any()); + Assert.False(invoices.Any(x => x.DownloadUrl != null)); + } + } + + [Fact] + public void ListInvoicesWithQueryParametersTest() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var billingMgmtClient = BillingTestUtilities.GetBillingManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + var invoices = billingMgmtClient.Invoices.List(DownloadUrlExpand, RangeFilter, null, 1); + Assert.NotNull(invoices); + Assert.Equal(1, invoices.Count()); + Assert.NotNull(invoices.First().DownloadUrl); + var invoice = invoices.First(); + Assert.False(string.IsNullOrWhiteSpace(invoice.DownloadUrl.Url)); + Assert.True(invoice.DownloadUrl.ExpiryTime.HasValue); + } + } + + [Fact] + public void GetLatestInvoice() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var billingMgmtClient = BillingTestUtilities.GetBillingManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + var invoice = billingMgmtClient.Invoices.GetLatest(); + Assert.NotNull(invoice); + Assert.False(string.IsNullOrWhiteSpace(invoice.DownloadUrl.Url)); + Assert.True(invoice.DownloadUrl.ExpiryTime.HasValue); + } + } + + [Fact] + public void GetInvoiceWithName() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var billingMgmtClient = BillingTestUtilities.GetBillingManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + var invoice = billingMgmtClient.Invoices.Get(InvoiceName); + Assert.NotNull(invoice); + Assert.Equal(InvoiceName, invoice.Name); + Assert.False(string.IsNullOrWhiteSpace(invoice.DownloadUrl.Url)); + Assert.True(invoice.DownloadUrl.ExpiryTime.HasValue); + } + } + + [Fact] + public void GetInvoicesNoResult() + { + string rangeFilter = "invoicePeriodEndDate lt 2016-01-31"; + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + try + { + var billingMgmtClient = BillingTestUtilities.GetBillingManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + billingMgmtClient.Invoices.List(DownloadUrlExpand, rangeFilter, null, 1); + Assert.False(true, "ErrorResponseException should have been thrown"); + } + catch(ErrorResponseException e) + { + Assert.NotNull(e.Body); + Assert.NotNull(e.Body.Error); + Assert.Equal("ResourceNotFound", e.Body.Error.Code); + Assert.False(string.IsNullOrWhiteSpace(e.Body.Error.Message)); + } + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/ScenarioTests/OperationsTest.cs b/src/ResourceManagement/Billing/Billing.Tests/ScenarioTests/OperationsTest.cs new file mode 100644 index 000000000000..56329b87e3d1 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/ScenarioTests/OperationsTest.cs @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Billing.Tests.Helpers; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System.Linq; +using System.Net; +using Xunit; +using Microsoft.Azure.Management.Billing; + +namespace Billing.Tests.ScenarioTests +{ + public class OperationsTests : TestBase + { + [Fact] + public void ListOperationsTest() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + // Create client + var billingMgmtClient = BillingTestUtilities.GetBillingManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + + // Get operations + var operations = billingMgmtClient.Operations.List(); + + // Verify operations are returned + Assert.NotNull(operations); + Assert.True(operations.Any()); + } + } + } +} diff --git a/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetInvoiceWithName.json b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetInvoiceWithName.json new file mode 100644 index 000000000000..5c2d2e99b758 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetInvoiceWithName.json @@ -0,0 +1,75 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices/2017-02-09-117646100066812?api-version=2017-02-27-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM0N2Q2M2EtNDIxYS00M2E3LTgzNmEtNWYzODljNzljZDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmlsbGluZy9pbnZvaWNlcy8yMDE3LTAyLTA5LTExNzY0NjEwMDA2NjgxMj9hcGktdmVyc2lvbj0yMDE3LTAyLTI3LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85f70922-65cc-4047-bb92-6b413ed8d44d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Billing.BillingClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices/2017-02-09-117646100066812\",\r\n \"type\": \"Microsoft.Billing/invoices\",\r\n \"name\": \"2017-02-09-117646100066812\",\r\n \"properties\": {\r\n \"downloadUrl\": {\r\n \"expiryTime\": \"2017-02-18T20:44:40Z\",\r\n \"url\": \"https://billinsstorev2test.blob.core.windows.net/invoices/0347d63a-421a-43a7-836a-5f389c79cd07-2017-02-09-117646100066812.pdf?sv=2014-02-14&sr=b&sig=AJW5hhGYlN3DD3%2FL%2B11N0Y40CnGf2B46ff4LXqiG5ds%3D&se=2017-02-18T20%3A44%3A40Z&sp=r\"\r\n },\r\n \"invoicePeriodEndDate\": \"2017-02-09\",\r\n \"invoicePeriodStartDate\": \"2017-01-10\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 18 Feb 2017 19:44:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "d4b80d41-3aad-4354-8a08-d2082eeb0e64" + ], + "x-ms-correlation-request-id": [ + "d4b80d41-3aad-4354-8a08-d2082eeb0e64" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170218T194442Z:d4b80d41-3aad-4354-8a08-d2082eeb0e64" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "0347d63a-421a-43a7-836a-5f389c79cd07" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetInvoicesNoResult.json b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetInvoicesNoResult.json new file mode 100644 index 000000000000..19c43dfef722 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetInvoicesNoResult.json @@ -0,0 +1,72 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices?$expand=downloadUrl&$filter=invoicePeriodEndDate%20lt%202016-01-31&$top=1&api-version=2017-02-27-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM0N2Q2M2EtNDIxYS00M2E3LTgzNmEtNWYzODljNzljZDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmlsbGluZy9pbnZvaWNlcz8kZXhwYW5kPWRvd25sb2FkVXJsJiRmaWx0ZXI9aW52b2ljZVBlcmlvZEVuZERhdGUlMjBsdCUyMDIwMTYtMDEtMzEmJHRvcD0xJmFwaS12ZXJzaW9uPTIwMTctMDItMjctcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88ecaa48-34bf-4889-8522-c89e405d7fc9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Billing.BillingClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"target\": \"https://billing-preview.windowsazure.com/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices?$expand=downloadUrl&$filter=invoicePeriodEndDate%20lt%202016-01-31&$top=1&api-version=2017-02-27-preview\",\r\n \"message\": \"Could not find invoice for the subscription.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "339" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 18 Feb 2017 19:44:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "a3ca3620-41a5-4f1f-9928-22d3e933f67d" + ], + "x-ms-correlation-request-id": [ + "a3ca3620-41a5-4f1f-9928-22d3e933f67d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170218T194402Z:a3ca3620-41a5-4f1f-9928-22d3e933f67d" + ] + }, + "StatusCode": 404 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "0347d63a-421a-43a7-836a-5f389c79cd07" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetLatestInvoice.json b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetLatestInvoice.json new file mode 100644 index 000000000000..f62420df072a --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/GetLatestInvoice.json @@ -0,0 +1,75 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices/latest?api-version=2017-02-27-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM0N2Q2M2EtNDIxYS00M2E3LTgzNmEtNWYzODljNzljZDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmlsbGluZy9pbnZvaWNlcy9sYXRlc3Q/YXBpLXZlcnNpb249MjAxNy0wMi0yNy1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f71ea687-4e8b-445c-8143-ea7522a06ee2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Billing.BillingClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices/2017-02-09-117646100066812\",\r\n \"type\": \"Microsoft.Billing/invoices\",\r\n \"name\": \"2017-02-09-117646100066812\",\r\n \"properties\": {\r\n \"downloadUrl\": {\r\n \"expiryTime\": \"2017-02-18T20:44:31Z\",\r\n \"url\": \"https://billinsstorev2test.blob.core.windows.net/invoices/0347d63a-421a-43a7-836a-5f389c79cd07-2017-02-09-117646100066812.pdf?sv=2014-02-14&sr=b&sig=VHv8ac7F2mYHl2AfTe6QxZX0OKh8C7yEDtny2Gl4rpE%3D&se=2017-02-18T20%3A44%3A31Z&sp=r\"\r\n },\r\n \"invoicePeriodEndDate\": \"2017-02-09\",\r\n \"invoicePeriodStartDate\": \"2017-01-10\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 18 Feb 2017 19:44:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "d3c5e352-ca1a-4416-bff3-6af20df7ee54" + ], + "x-ms-correlation-request-id": [ + "d3c5e352-ca1a-4416-bff3-6af20df7ee54" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170218T194433Z:d3c5e352-ca1a-4416-bff3-6af20df7ee54" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "0347d63a-421a-43a7-836a-5f389c79cd07" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/ListInvoicesTest.json b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/ListInvoicesTest.json new file mode 100644 index 000000000000..b1645b5d9ac1 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/ListInvoicesTest.json @@ -0,0 +1,75 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices?api-version=2017-02-27-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM0N2Q2M2EtNDIxYS00M2E3LTgzNmEtNWYzODljNzljZDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmlsbGluZy9pbnZvaWNlcz9hcGktdmVyc2lvbj0yMDE3LTAyLTI3LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdd6a8cf-834d-47d9-8347-7d2cb4197ff5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Billing.BillingClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices/2017-02-09-117646100066812\",\r\n \"type\": \"Microsoft.Billing/invoices\",\r\n \"name\": \"2017-02-09-117646100066812\",\r\n \"properties\": {\r\n \"invoicePeriodEndDate\": \"2017-02-09\",\r\n \"invoicePeriodStartDate\": \"2017-01-10\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 18 Feb 2017 19:44:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "b863b387-0c12-4e3a-a6db-ccba657e2a9b" + ], + "x-ms-correlation-request-id": [ + "b863b387-0c12-4e3a-a6db-ccba657e2a9b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170218T194412Z:b863b387-0c12-4e3a-a6db-ccba657e2a9b" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "0347d63a-421a-43a7-836a-5f389c79cd07" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/ListInvoicesWithQueryParametersTest.json b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/ListInvoicesWithQueryParametersTest.json new file mode 100644 index 000000000000..03aa775769b0 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.InvoicesTests/ListInvoicesWithQueryParametersTest.json @@ -0,0 +1,75 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices?$expand=downloadUrl&$filter=invoicePeriodEndDate%20ge%202017-01-31%20and%20invoicePeriodEndDate%20le%202017-02-28&$top=1&api-version=2017-02-27-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM0N2Q2M2EtNDIxYS00M2E3LTgzNmEtNWYzODljNzljZDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmlsbGluZy9pbnZvaWNlcz8kZXhwYW5kPWRvd25sb2FkVXJsJiRmaWx0ZXI9aW52b2ljZVBlcmlvZEVuZERhdGUlMjBnZSUyMDIwMTctMDEtMzElMjBhbmQlMjBpbnZvaWNlUGVyaW9kRW5kRGF0ZSUyMGxlJTIwMjAxNy0wMi0yOCYkdG9wPTEmYXBpLXZlcnNpb249MjAxNy0wMi0yNy1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68e7d911-f619-43a1-ad04-5ef27f1bd321" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Billing.BillingClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0347d63a-421a-43a7-836a-5f389c79cd07/providers/Microsoft.Billing/invoices/2017-02-09-117646100066812\",\r\n \"type\": \"Microsoft.Billing/invoices\",\r\n \"name\": \"2017-02-09-117646100066812\",\r\n \"properties\": {\r\n \"downloadUrl\": {\r\n \"expiryTime\": \"2017-02-18T20:44:23Z\",\r\n \"url\": \"https://billinsstorev2test.blob.core.windows.net/invoices/0347d63a-421a-43a7-836a-5f389c79cd07-2017-02-09-117646100066812.pdf?sv=2014-02-14&sr=b&sig=eVlG3xRv4HiT5ygDxCTw2N4b3p2OyZABIHRIj22Oa5Y%3D&se=2017-02-18T20%3A44%3A23Z&sp=r\"\r\n },\r\n \"invoicePeriodEndDate\": \"2017-02-09\",\r\n \"invoicePeriodStartDate\": \"2017-01-10\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 18 Feb 2017 19:44:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "8c7f108e-3351-4848-85d4-91a434b2b149" + ], + "x-ms-correlation-request-id": [ + "8c7f108e-3351-4848-85d4-91a434b2b149" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170218T194425Z:8c7f108e-3351-4848-85d4-91a434b2b149" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "0347d63a-421a-43a7-836a-5f389c79cd07" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.OperationsTests/ListOperationsTest.json b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.OperationsTests/ListOperationsTest.json new file mode 100644 index 000000000000..0296925abce9 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/SessionRecords/Billing.Tests.ScenarioTests.OperationsTests/ListOperationsTest.json @@ -0,0 +1,75 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Billing/operations?api-version=2017-02-27-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmlsbGluZy9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTctMDItMjctcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47fad9df-5cde-4850-92fd-d743645bbae2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Billing.BillingClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Billing/invoices/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Billing\",\r\n \"resource\": \"Invoices\",\r\n \"operation\": \"Get Invoice\",\r\n \"description\": \"Gets list of available invoices.\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 18 Feb 2017 19:44:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14999" + ], + "x-ms-request-id": [ + "499f74eb-2de1-464d-925f-535b4d985981" + ], + "x-ms-correlation-request-id": [ + "499f74eb-2de1-464d-925f-535b4d985981" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170218T194443Z:499f74eb-2de1-464d-925f-535b4d985981" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "0347d63a-421a-43a7-836a-5f389c79cd07" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.Tests/project.json b/src/ResourceManagement/Billing/Billing.Tests/project.json new file mode 100644 index 000000000000..3f9b26cf836d --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.Tests/project.json @@ -0,0 +1,43 @@ +{ + "version": "1.0.0-*", + "description": "Billing.Tests Class Library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "summary": "Billing.Tests Tests.", + "tags": [ "" ], + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + }, + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "compile": "../../../../tools/DisableTestRunParallel.cs" + }, + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "imports": ["dnxcore50", "portable-net45+win8"], + "dependencies": { + } + } + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "Microsoft.Azure.Management.Billing": { + "target": "project", + "type": "build" + }, + "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.1-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.4,4.0.0)", + "Microsoft.Azure.ResourceManager": "1.0.0-preview", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" + }, +} \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Billing.sln b/src/ResourceManagement/Billing/Billing.sln new file mode 100644 index 000000000000..67d459e826c5 --- /dev/null +++ b/src/ResourceManagement/Billing/Billing.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.Billing", "Microsoft.Azure.Management.Billing\Microsoft.Azure.Management.Billing.xproj", "{1370136C-378A-46ED-9D4E-DB5A925709D4}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Billing.Tests", "Billing.Tests\Billing.Tests.xproj", "{F4CDC178-3DBE-4535-A384-633AB0A802B9}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1370136C-378A-46ED-9D4E-DB5A925709D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1370136C-378A-46ED-9D4E-DB5A925709D4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1370136C-378A-46ED-9D4E-DB5A925709D4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1370136C-378A-46ED-9D4E-DB5A925709D4}.Release|Any CPU.Build.0 = Release|Any CPU + {F4CDC178-3DBE-4535-A384-633AB0A802B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F4CDC178-3DBE-4535-A384-633AB0A802B9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F4CDC178-3DBE-4535-A384-633AB0A802B9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F4CDC178-3DBE-4535-A384-633AB0A802B9}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/BillingClient.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/BillingClient.cs new file mode 100644 index 000000000000..089c9dc7e316 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/BillingClient.cs @@ -0,0 +1,330 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Serialization; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + + /// + /// Billing client provides access to billing resources for Azure + /// Web-Direct subscriptions. Other subscription types which were not + /// purchased directly through the Azure web portal are not supported + /// through this preview API. + /// + public partial class BillingClient : ServiceClient, IBillingClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public ServiceClientCredentials Credentials { get; private set; } + + /// + /// Version of the API to be used with the client request. The current version + /// is 2017-02-27-preview. + /// + public string ApiVersion { get; private set; } + + /// + /// Azure Subscription ID. + /// + public string SubscriptionId { get; set; } + + /// + /// Gets or sets the preferred language for the response. + /// + public string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running Operations. + /// Default value is 30. + /// + public int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IInvoicesOperations. + /// + public virtual IInvoicesOperations Invoices { get; private set; } + + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + + /// + /// Initializes a new instance of the BillingClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected BillingClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the BillingClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected BillingClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the BillingClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected BillingClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the BillingClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected BillingClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the BillingClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public BillingClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the BillingClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public BillingClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the BillingClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public BillingClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the BillingClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public BillingClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + /// + /// Initializes client properties. + /// + private void Initialize() + { + Invoices = new InvoicesOperations(this); + Operations = new Operations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2017-02-27-preview"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings + { + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings + { + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + CustomInitialize(); + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IBillingClient.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IBillingClient.cs new file mode 100644 index 000000000000..1f4e2c59db13 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IBillingClient.cs @@ -0,0 +1,87 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + + /// + /// Billing client provides access to billing resources for Azure + /// Web-Direct subscriptions. Other subscription types which were not + /// purchased directly through the Azure web portal are not supported + /// through this preview API. + /// + public partial interface IBillingClient : System.IDisposable + { + /// + /// The base URI of the service. + /// + System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + ServiceClientCredentials Credentials { get; } + + /// + /// Version of the API to be used with the client request. The current + /// version is 2017-02-27-preview. + /// + string ApiVersion { get; } + + /// + /// Azure Subscription ID. + /// + string SubscriptionId { get; set; } + + /// + /// Gets or sets the preferred language for the response. + /// + string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running + /// Operations. Default value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set; } + + + /// + /// Gets the IInvoicesOperations. + /// + IInvoicesOperations Invoices { get; } + + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IInvoicesOperations.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IInvoicesOperations.cs new file mode 100644 index 000000000000..a36fd8dd09e5 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IInvoicesOperations.cs @@ -0,0 +1,141 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// InvoicesOperations operations. + /// + public partial interface IInvoicesOperations + { + /// + /// Lists the available invoices for a subscription in reverse + /// chronological order beginning with the most recent invoice. In + /// preview, invoices are available via this API only for invoice + /// periods which end December 1, 2016 or later + /// + /// + /// + /// May be used to expand the downloadUrl property within a list of + /// invoices. This enables download links to be generated for multiple + /// invoices at once. By default, downloadURLs are not included when + /// listing invoices. + /// + /// + /// May be used to filter invoices by invoicePeriodEndDate. The filter + /// supports 'eq', 'lt', 'gt', 'le', 'ge', and 'and'. It does not + /// currently support 'ne', 'or', or 'not' + /// + /// + /// Skiptoken is only used if a previous operation returned a partial + /// result. If a previous response contains a nextLink element, the + /// value of the nextLink element will include a skiptoken parameter + /// that specifies a starting point to use for subsequent calls. + /// + /// + /// May be used to limit the number of results to the most recent N + /// invoices. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string expand = default(string), string filter = default(string), string skiptoken = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a named invoice resource. When getting a single invoice, the + /// downloadUrl property is expanded automatically. + /// + /// + /// The name of an invoice resource. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string invoiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the most recent invoice. When getting a single invoice, the + /// downloadUrl property is expanded automatically. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetLatestWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the available invoices for a subscription in reverse + /// chronological order beginning with the most recent invoice. In + /// preview, invoices are available via this API only for invoice + /// periods which end December 1, 2016 or later + /// + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IOperations.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IOperations.cs new file mode 100644 index 000000000000..42e76ab40aa9 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/IOperations.cs @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available billing REST API operations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available billing REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/InvoicesOperations.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/InvoicesOperations.cs new file mode 100644 index 000000000000..7c65b78a187a --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/InvoicesOperations.cs @@ -0,0 +1,808 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// InvoicesOperations operations. + /// + internal partial class InvoicesOperations : IServiceOperations, IInvoicesOperations + { + /// + /// Initializes a new instance of the InvoicesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal InvoicesOperations(BillingClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the BillingClient + /// + public BillingClient Client { get; private set; } + + /// + /// Lists the available invoices for a subscription in reverse chronological + /// order beginning with the most recent invoice. In preview, invoices are + /// available via this API only for invoice periods which end December 1, 2016 + /// or later + /// + /// + /// + /// May be used to expand the downloadUrl property within a list of invoices. + /// This enables download links to be generated for multiple invoices at once. + /// By default, downloadURLs are not included when listing invoices. + /// + /// + /// May be used to filter invoices by invoicePeriodEndDate. The filter supports + /// 'eq', 'lt', 'gt', 'le', 'ge', and 'and'. It does not currently support + /// 'ne', 'or', or 'not' + /// + /// + /// Skiptoken is only used if a previous operation returned a partial result. + /// If a previous response contains a nextLink element, the value of the + /// nextLink element will include a skiptoken parameter that specifies a + /// starting point to use for subsequent calls. + /// + /// + /// May be used to limit the number of results to the most recent N invoices. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string expand = default(string), string filter = default(string), string skiptoken = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (top > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "top", 100); + } + if (top < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "top", 1); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("expand", expand); + tracingParameters.Add("filter", filter); + tracingParameters.Add("skiptoken", skiptoken); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Billing/invoices").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (skiptoken != null) + { + _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a named invoice resource. When getting a single invoice, the + /// downloadUrl property is expanded automatically. + /// + /// + /// The name of an invoice resource. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string invoiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (invoiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "invoiceName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("invoiceName", invoiceName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Billing/invoices/{invoiceName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{invoiceName}", System.Uri.EscapeDataString(invoiceName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the most recent invoice. When getting a single invoice, the + /// downloadUrl property is expanded automatically. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetLatestWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetLatest", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Billing/invoices/latest").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists the available invoices for a subscription in reverse chronological + /// order beginning with the most recent invoice. In preview, invoices are + /// available via this API only for invoice periods which end December 1, 2016 + /// or later + /// + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/InvoicesOperationsExtensions.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/InvoicesOperationsExtensions.cs new file mode 100644 index 000000000000..2de2a232e062 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/InvoicesOperationsExtensions.cs @@ -0,0 +1,208 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for InvoicesOperations. + /// + public static partial class InvoicesOperationsExtensions + { + /// + /// Lists the available invoices for a subscription in reverse chronological + /// order beginning with the most recent invoice. In preview, invoices are + /// available via this API only for invoice periods which end December 1, 2016 + /// or later + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// May be used to expand the downloadUrl property within a list of invoices. + /// This enables download links to be generated for multiple invoices at once. + /// By default, downloadURLs are not included when listing invoices. + /// + /// + /// May be used to filter invoices by invoicePeriodEndDate. The filter supports + /// 'eq', 'lt', 'gt', 'le', 'ge', and 'and'. It does not currently support + /// 'ne', 'or', or 'not' + /// + /// + /// Skiptoken is only used if a previous operation returned a partial result. + /// If a previous response contains a nextLink element, the value of the + /// nextLink element will include a skiptoken parameter that specifies a + /// starting point to use for subsequent calls. + /// + /// + /// May be used to limit the number of results to the most recent N invoices. + /// + public static IPage List(this IInvoicesOperations operations, string expand = default(string), string filter = default(string), string skiptoken = default(string), int? top = default(int?)) + { + return operations.ListAsync(expand, filter, skiptoken, top).GetAwaiter().GetResult(); + } + + /// + /// Lists the available invoices for a subscription in reverse chronological + /// order beginning with the most recent invoice. In preview, invoices are + /// available via this API only for invoice periods which end December 1, 2016 + /// or later + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// May be used to expand the downloadUrl property within a list of invoices. + /// This enables download links to be generated for multiple invoices at once. + /// By default, downloadURLs are not included when listing invoices. + /// + /// + /// May be used to filter invoices by invoicePeriodEndDate. The filter supports + /// 'eq', 'lt', 'gt', 'le', 'ge', and 'and'. It does not currently support + /// 'ne', 'or', or 'not' + /// + /// + /// Skiptoken is only used if a previous operation returned a partial result. + /// If a previous response contains a nextLink element, the value of the + /// nextLink element will include a skiptoken parameter that specifies a + /// starting point to use for subsequent calls. + /// + /// + /// May be used to limit the number of results to the most recent N invoices. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IInvoicesOperations operations, string expand = default(string), string filter = default(string), string skiptoken = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(expand, filter, skiptoken, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a named invoice resource. When getting a single invoice, the + /// downloadUrl property is expanded automatically. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of an invoice resource. + /// + public static Invoice Get(this IInvoicesOperations operations, string invoiceName) + { + return operations.GetAsync(invoiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a named invoice resource. When getting a single invoice, the + /// downloadUrl property is expanded automatically. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of an invoice resource. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IInvoicesOperations operations, string invoiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(invoiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the most recent invoice. When getting a single invoice, the + /// downloadUrl property is expanded automatically. + /// + /// + /// The operations group for this extension method. + /// + public static Invoice GetLatest(this IInvoicesOperations operations) + { + return operations.GetLatestAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets the most recent invoice. When getting a single invoice, the + /// downloadUrl property is expanded automatically. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetLatestAsync(this IInvoicesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetLatestWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists the available invoices for a subscription in reverse chronological + /// order beginning with the most recent invoice. In preview, invoices are + /// available via this API only for invoice periods which end December 1, 2016 + /// or later + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IInvoicesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the available invoices for a subscription in reverse chronological + /// order beginning with the most recent invoice. In preview, invoices are + /// available via this API only for invoice periods which end December 1, 2016 + /// or later + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IInvoicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/DownloadUrl.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/DownloadUrl.cs new file mode 100644 index 000000000000..ffb89823a9a9 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/DownloadUrl.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Newtonsoft.Json; + using System.Linq; + + /// + /// A secure URL that can be used to download a PDF invoice until the URL + /// expires. + /// + public partial class DownloadUrl + { + /// + /// Initializes a new instance of the DownloadUrl class. + /// + public DownloadUrl() { } + + /// + /// Initializes a new instance of the DownloadUrl class. + /// + /// The time in UTC at which this download URL + /// will expire. + /// The URL to the PDF file. + public DownloadUrl(System.DateTime? expiryTime = default(System.DateTime?), string url = default(string)) + { + ExpiryTime = expiryTime; + Url = url; + } + + /// + /// Gets the time in UTC at which this download URL will expire. + /// + [JsonProperty(PropertyName = "expiryTime")] + public System.DateTime? ExpiryTime { get; protected set; } + + /// + /// Gets the URL to the PDF file. + /// + [JsonProperty(PropertyName = "url")] + public string Url { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorDetails.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorDetails.cs new file mode 100644 index 000000000000..f0656c91eec5 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorDetails.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The details of the error. + /// + public partial class ErrorDetails + { + /// + /// Initializes a new instance of the ErrorDetails class. + /// + public ErrorDetails() { } + + /// + /// Initializes a new instance of the ErrorDetails class. + /// + /// Error code. + /// Error message indicating why the operation + /// failed. + /// The target of the particular error. + public ErrorDetails(string code = default(string), string message = default(string), string target = default(string)) + { + Code = code; + Message = message; + Target = target; + } + + /// + /// Gets error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; protected set; } + + /// + /// Gets error message indicating why the operation failed. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; protected set; } + + /// + /// Gets the target of the particular error. + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorResponse.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorResponse.cs new file mode 100644 index 000000000000..1752c28c6392 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorResponse.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Error response indicates that the service is not able to process the + /// incoming request. The reason is provided in the error message. + /// + public partial class ErrorResponse + { + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse() { } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse(ErrorDetails error = default(ErrorDetails)) + { + Error = error; + } + + /// + /// + [JsonProperty(PropertyName = "error")] + public ErrorDetails Error { get; set; } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorResponseException.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorResponseException.cs new file mode 100644 index 000000000000..421682de6e2f --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/ErrorResponseException.cs @@ -0,0 +1,104 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Rest; + using System.Runtime; + using System.Runtime.Serialization; + using System.Security; + + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// +#if !PORTABLE + [System.Serializable] +#endif + public class ErrorResponseException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, System.Exception innerException) + : base(message, innerException) + { + } + +#if !PORTABLE + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// Serialization info. + /// Streaming context. + protected ErrorResponseException(SerializationInfo info, StreamingContext context) + : base(info, context) + { + } + + /// + /// Serializes content of the exception. + /// + /// Serialization info. + /// Streaming context. + /// + /// Thrown when a required parameter is null + /// + [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter = true)] + public override void GetObjectData(SerializationInfo info, StreamingContext context) + { + base.GetObjectData(info, context); + if (info == null) + { + throw new System.ArgumentNullException("info"); + } + + info.AddValue("Request", Request); + info.AddValue("Response", Response); + info.AddValue("Body", Body); + } +#endif + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Invoice.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Invoice.cs new file mode 100644 index 000000000000..c70148ab35cf --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Invoice.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// An invoice resource can be used download a PDF version of an invoice. + /// + [JsonTransformation] + public partial class Invoice : Resource + { + /// + /// Initializes a new instance of the Invoice class. + /// + public Invoice() { } + + /// + /// Initializes a new instance of the Invoice class. + /// + /// Resource Id + /// Resource name + /// Resource type + /// The start of the date range + /// covered by the invoice. + /// The end of the date range + /// covered by the invoice. + /// A secure link to download the PDF version + /// of an invoice. The link will cease to work after its expiry time is + /// reached. + public Invoice(string id = default(string), string name = default(string), string type = default(string), System.DateTime? invoicePeriodStartDate = default(System.DateTime?), System.DateTime? invoicePeriodEndDate = default(System.DateTime?), DownloadUrl downloadUrl = default(DownloadUrl)) + : base(id, name, type) + { + InvoicePeriodStartDate = invoicePeriodStartDate; + InvoicePeriodEndDate = invoicePeriodEndDate; + DownloadUrl = downloadUrl; + } + + /// + /// Gets the start of the date range covered by the invoice. + /// + [JsonConverter(typeof(DateJsonConverter))] + [JsonProperty(PropertyName = "properties.invoicePeriodStartDate")] + public System.DateTime? InvoicePeriodStartDate { get; protected set; } + + /// + /// Gets the end of the date range covered by the invoice. + /// + [JsonConverter(typeof(DateJsonConverter))] + [JsonProperty(PropertyName = "properties.invoicePeriodEndDate")] + public System.DateTime? InvoicePeriodEndDate { get; protected set; } + + /// + /// Gets or sets a secure link to download the PDF version of an + /// invoice. The link will cease to work after its expiry time is + /// reached. + /// + [JsonProperty(PropertyName = "properties.downloadUrl")] + public DownloadUrl DownloadUrl { get; set; } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Operation.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Operation.cs new file mode 100644 index 000000000000..00f35ccd9bae --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Operation.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Newtonsoft.Json; + using System.Linq; + + /// + /// A Billing REST API operation + /// + public partial class Operation + { + /// + /// Initializes a new instance of the Operation class. + /// + public Operation() { } + + /// + /// Initializes a new instance of the Operation class. + /// + /// Operation name: + /// {provider}/{resource}/{operation} + /// The object that represents the + /// operation. + public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) + { + Name = name; + Display = display; + } + + /// + /// Gets operation name: {provider}/{resource}/{operation} + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } + + /// + /// Gets or sets the object that represents the operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/OperationDisplay.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..37c6c6ec60d6 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/OperationDisplay.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The object that represents the operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() { } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + /// Service provider: Microsoft.Billing + /// Resource on which the operation is + /// performed: Invoice, etc. + /// Operation type: Read, write, delete, + /// etc. + public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + } + + /// + /// Gets service provider: Microsoft.Billing + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; protected set; } + + /// + /// Gets resource on which the operation is performed: Invoice, etc. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; protected set; } + + /// + /// Gets operation type: Read, write, delete, etc. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Page.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Page.cs new file mode 100644 index 000000000000..b6b11b162e99 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Page.cs @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Resource.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Resource.cs new file mode 100644 index 000000000000..0b969035f40f --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Models/Resource.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing.Models +{ + using Azure; + using Management; + using Billing; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Resource model definition. + /// + public partial class Resource : IResource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() { } + + /// + /// Initializes a new instance of the Resource class. + /// + /// Resource Id + /// Resource name + /// Resource type + public Resource(string id = default(string), string name = default(string), string type = default(string)) + { + Id = id; + Name = name; + Type = type; + } + + /// + /// Gets resource Id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; protected set; } + + /// + /// Gets resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } + + /// + /// Gets resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Operations.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Operations.cs new file mode 100644 index 000000000000..73e8bd4355b7 --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/Operations.cs @@ -0,0 +1,391 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(BillingClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the BillingClient + /// + public BillingClient Client { get; private set; } + + /// + /// Lists all of the available billing REST API operations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Billing/operations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the available billing REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/OperationsExtensions.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..da2c4e33312b --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Generated/OperationsExtensions.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Billing +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available billing REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available billing REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available billing REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available billing REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} + diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Microsoft.Azure.Management.Billing.xproj b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Microsoft.Azure.Management.Billing.xproj new file mode 100644 index 000000000000..b22f43eab37f --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Microsoft.Azure.Management.Billing.xproj @@ -0,0 +1,19 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 1370136c-378a-46ed-9d4e-db5a925709d4 + Microsoft.Azure.Management.Billing + .\obj + .\bin\ + v4.5.2 + + + 2.0 + + + \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Properties/AssemblyInfo.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..4ddab9d8681f --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Resources; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Billing Management Library")] +[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Billing.")] + +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Azure .NET SDK")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("en")] \ No newline at end of file diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/generate.cmd b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/generate.cmd new file mode 100644 index 000000000000..8c5b2e6e662d --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/generate.cmd @@ -0,0 +1,17 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +@echo off +set autoRestVersion=1.0.0-Nightly20170209 +if "%1" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-billing/2017-02-27-preview/swagger/billing.json" +) else ( + set specFile="%1" +) +set repoRoot=%~dp0..\..\..\.. +set generateFolder=%~dp0Generated + +if exist %generateFolder% rd /S /Q %generateFolder% +call "%repoRoot%\tools\autorest.gen.cmd" %specFile% Microsoft.Azure.Management.Billing %autoRestVersion% %generateFolder% "MICROSOFT_MIT" "-FT 2" diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json new file mode 100644 index 000000000000..4ccba3ff47ab --- /dev/null +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json @@ -0,0 +1,54 @@ +{ + "version": "1.0.0-preview", + "description": "Microsoft Azure Billing Management Library", + "authors": [ "Microsoft" ], + + "packOptions": { + "summary": "Microsoft Azure Billing Management Library", + "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "tags": [ "Microsoft Azure Billing management", "Billing", "Billing management", "REST HTTP client", "windowsazureofficial" ], + "requireLicenseAcceptance": true + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk" + }, + + "dependencies": { + }, + + "frameworks": { + "net45": { + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.1.0,3.0.0)" + } + }, + "netstandard1.5": { + "imports": ["dnxcore50"], + "buildOptions": { "define": [ "PORTABLE" ] }, + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Tasks": "4.0.11", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + } + }, + "netstandard1.1": { + "imports": ["dnxcore50"], + "buildOptions": { "define": [ "PORTABLE" ] }, + "dependencies": { + "System.Runtime.Serialization.Primitives": "4.1.1", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + } + } + } +} diff --git a/src/ResourceManagement/Billing/global.json b/src/ResourceManagement/Billing/global.json new file mode 100644 index 000000000000..e87a9d0a6a34 --- /dev/null +++ b/src/ResourceManagement/Billing/global.json @@ -0,0 +1,3 @@ +{ + "projects": [ "Microsoft.Azure.Management.Billing", "Billing.Tests" ] +} From 28d21cce98dc4308514b7e2839de0ac5325018e6 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Thu, 23 Feb 2017 18:37:36 -0800 Subject: [PATCH 024/137] Updates for Azure Authentication --- .../project.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json index 9c0fbea63ce8..f1fb50cb7820 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json @@ -1,5 +1,5 @@ { - "version": "2.2.11", + "version": "2.2.12", "title": "Authentication for Azure Management Clients", "description": "Provides ADAL based authentication for Azure management client libraries \nSupported Platforms:\n - Portable Class Libraries\n - .NET Framework 4.5\n - Windows 8\n - Windows Phone 8.1\n - DotNet Core", "authors": [ "Microsoft" ], @@ -10,7 +10,7 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/AutoRest", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft AutoRest ClientRuntime REST adal" ], + "tags": [ "Microsoft AutoRest ClientRuntime REST adal", "netcore451511" ], "requireLicenseAcceptance": true }, @@ -42,7 +42,8 @@ "imports": [ "dnxcore50", "portable-net45+win8" ], "dependencies": { "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.8", - "Microsoft.IdentityModel.Tokens": "5.1.2" + "Microsoft.IdentityModel.Tokens": "5.1.2", + "NETStandard.Library": "1.6.1" } }, "netstandard1.5": { @@ -53,7 +54,8 @@ "imports": [ "dnxcore50" ], "dependencies": { "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.8", - "Microsoft.IdentityModel.Tokens": "5.1.2" + "Microsoft.IdentityModel.Tokens": "5.1.2", + "NETStandard.Library": "1.6.1" } } } From 3468bc2194360c3a4977df92247ff7a3bb00b37d Mon Sep 17 00:00:00 2001 From: matthchr Date: Tue, 9 Aug 2016 10:56:39 -0700 Subject: [PATCH 025/137] .NET Core stuff --- src/Batch/Client/.gitignore | 1 + src/Batch/Client/Batch.sln | 55 ++- src/Batch/Client/RegenerateBatch.cmd | 2 +- .../AddTaskCollectionResultHandler.cs | 0 .../Src/{ => Azure.Batch}/AddTaskResult.cs | 0 .../AddTasksWorkflowManager.cs | 0 .../ApplicationOperations.cs | 8 +- .../{ => Azure.Batch}/AssemblyAttributes.cs | 0 .../AsyncApplicationSummariesEnumerator.cs | 0 .../AsyncListCertificates.cs | 0 .../AsyncListComputeNodes.cs | 0 .../AsyncListJobPrepReleaseTaskStatus.cs | 0 .../AsyncListJobSchedules.cs | 0 .../Src/{ => Azure.Batch}/AsyncListJobs.cs | 0 .../AsyncListNodeAgentSkus.cs | 0 .../{ => Azure.Batch}/AsyncListNodeFiles.cs | 0 .../AsyncListPoolUsageMetrics.cs | 0 .../Src/{ => Azure.Batch}/AsyncListPools.cs | 0 .../{ => Azure.Batch}/AsyncListSubtasks.cs | 0 .../{ => Azure.Batch}/AsyncListTaskFiles.cs | 0 .../Src/{ => Azure.Batch}/AsyncListTasks.cs | 0 .../Auth/BatchCredentials.cs | 0 .../Auth/BatchSharedKeyCredentials.cs | 0 .../Auth/BatchTokenCredentials.cs | 0 .../Src/{ => Azure.Batch}/Authorization.cs | 0 .../Azure.Batch.nuget.proj.old} | 0 .../Azure.Batch.nuspec.old} | 0 .../Client/Src/{ => Azure.Batch}/Batch.csproj | 0 src/Batch/Client/Src/Azure.Batch/Batch.xproj | 22 ++ .../Src/{ => Azure.Batch}/BatchClient.cs | 41 +-- .../{ => Azure.Batch}/BatchClientBehaviors.cs | 0 .../BatchClientExceptions.cs | 0 .../BatchClientParallelOptions.cs | 0 .../BatchErrorMessages.Designer.cs | 119 ++++--- .../{ => Azure.Batch}/BatchErrorMessages.resx | 0 .../{ => Azure.Batch}/BatchRequestTimeout.cs | 0 .../Src/{ => Azure.Batch}/BehaviorManager.cs | 0 .../Src/{ => Azure.Batch}/BindingState.cs | 0 .../Src/{ => Azure.Batch}/Certificate.cs | 24 +- .../CertificateOperations.cs | 23 +- .../{ => Azure.Batch}/CertificateReference.cs | 0 .../ClientRequestIdProvider.cs | 0 .../Client/Src/{ => Azure.Batch}/CloudJob.cs | 70 ++-- .../Src/{ => Azure.Batch}/CloudJobSchedule.cs | 39 +-- .../Client/Src/{ => Azure.Batch}/CloudPool.cs | 110 +++--- .../Client/Src/{ => Azure.Batch}/CloudTask.cs | 44 +-- .../Common/BatchErrorCodeStrings.cs | 0 .../Common/BatchException.cs | 0 .../Common/Enumerations/AccessScope.cs | 0 .../Common/Enumerations/AddTaskStatus.cs | 0 .../Common/Enumerations/AllocationState.cs | 0 .../Common/Enumerations/AutoUserScope.cs | 0 .../Common/Enumerations/CachingType.cs | 0 .../Common/Enumerations/CertStoreLocation.cs | 0 .../Common/Enumerations/CertificateFormat.cs | 0 .../Common/Enumerations/CertificateState.cs | 0 .../Enumerations/CertificateVisibility.cs | 0 .../ComputeNodeDeallocationOption.cs | 0 .../Enumerations/ComputeNodeFillType.cs | 0 .../Enumerations/ComputeNodeRebootOption.cs | 0 .../Enumerations/ComputeNodeReimageOption.cs | 0 .../Common/Enumerations/ComputeNodeState.cs | 0 .../Common/Enumerations/DependencyAction.cs | 0 .../DisableComputeNodeSchedulingOption.cs | 0 .../Common/Enumerations/DisableJobOption.cs | 0 .../Common/Enumerations/ElevationLevel.cs | 0 .../Common/Enumerations/JobAction.cs | 0 .../Enumerations/JobPreparationTaskState.cs | 0 .../Enumerations/JobReleaseTaskState.cs | 0 .../Common/Enumerations/JobScheduleState.cs | 0 .../Common/Enumerations/JobState.cs | 0 .../Common/Enumerations/OSType.cs | 0 .../Common/Enumerations/OnAllTasksComplete.cs | 0 .../Common/Enumerations/OnTaskFailure.cs | 0 .../Common/Enumerations/PoolLifetimeOption.cs | 0 .../Common/Enumerations/PoolState.cs | 0 .../Enumerations/SchedulingErrorCategory.cs | 0 .../Common/Enumerations/SchedulingState.cs | 0 .../Common/Enumerations/StartTaskState.cs | 0 .../Common/Enumerations/SubtaskState.cs | 0 .../Common/Enumerations/TaskState.cs | 0 .../Common/ExponentialRetry.cs | 0 .../{ => Azure.Batch}/Common/IRetryPolicy.cs | 0 .../{ => Azure.Batch}/Common/LinearRetry.cs | 0 .../Src/{ => Azure.Batch}/Common/NoRetry.cs | 0 .../Common/OperationContext.cs | 0 .../Common/RequestInformation.cs | 0 .../{ => Azure.Batch}/Common/RequestResult.cs | 0 .../{ => Azure.Batch}/Common/RetryDecision.cs | 0 .../Common/RetryPolicyCommon.cs | 0 .../Src/{ => Azure.Batch}/ComputeNode.cs | 68 ++-- .../Src/{ => Azure.Batch}/ComputeNodeFile.cs | 6 +- .../Src/{ => Azure.Batch}/ComputeNodeUser.cs | 12 +- .../ConcurrentChangeTrackedList.cs | 1 - .../Client/Src/{ => Azure.Batch}/Constants.cs | 0 .../Src/{ => Azure.Batch}/DetailLevel.cs | 0 .../FileStaging/Constants.cs | 0 .../FileStaging/FileStagingUtils.cs | 6 +- .../FileStaging/IFileStagingProvider.cs | 0 .../Generated/AddTaskResult.cs | 0 .../Generated/AffinityInformation.cs | 0 .../Generated/ApplicationPackageReference.cs | 0 .../Generated/ApplicationSummary.cs | 0 .../Generated/AuthenticationTokenSettings.cs | 0 .../Generated/AutoPoolSpecification.cs | 0 .../Generated/AutoScaleRun.cs | 0 .../Generated/AutoScaleRunError.cs | 0 .../Generated/AutoUserSpecification.cs | 0 .../{ => Azure.Batch}/Generated/BatchError.cs | 0 .../Generated/BatchErrorDetail.cs | 0 .../Generated/Certificate.cs | 0 .../Generated/CertificateReference.cs | 0 .../{ => Azure.Batch}/Generated/CloudJob.cs | 0 .../Generated/CloudJobSchedule.cs | 0 .../{ => Azure.Batch}/Generated/CloudPool.cs | 0 .../Generated/CloudServiceConfiguration.cs | 0 .../{ => Azure.Batch}/Generated/CloudTask.cs | 0 .../Generated/ComputeNode.cs | 0 .../Generated/ComputeNodeError.cs | 0 .../Generated/ComputeNodeInformation.cs | 0 .../Generated/ComputeNodeUser.cs | 0 .../Generated/DeleteCertificateError.cs | 0 .../Generated/EnvironmentSetting.cs | 0 .../Generated/ErrorMessage.cs | 0 .../Generated/ExitCodeMapping.cs | 0 .../Generated/ExitCodeRangeMapping.cs | 0 .../Generated/ExitConditions.cs | 0 .../Generated/ExitOptions.cs | 0 .../Generated/FileProperties.cs | 0 .../Generated/ImageReference.cs | 0 .../Generated/JobConstraints.cs | 0 .../Generated/JobExecutionInformation.cs | 0 .../Generated/JobManagerTask.cs | 0 ...ationAndReleaseTaskExecutionInformation.cs | 0 .../Generated/JobPreparationTask.cs | 0 .../JobPreparationTaskExecutionInformation.cs | 0 .../Generated/JobReleaseTask.cs | 0 .../JobReleaseTaskExecutionInformation.cs | 0 .../JobScheduleExecutionInformation.cs | 0 .../Generated/JobScheduleStatistics.cs | 0 .../Generated/JobSchedulingError.cs | 0 .../Generated/JobSpecification.cs | 0 .../Generated/JobStatistics.cs | 0 .../Generated/MetadataItem.cs | 0 .../Generated/MultiInstanceSettings.cs | 0 .../Generated/NameValuePair.cs | 0 .../Generated/NetworkConfiguration.cs | 0 .../Generated/NodeAgentSku.cs | 0 .../Src/{ => Azure.Batch}/Generated/OSDisk.cs | 0 .../Generated/PoolInformation.cs | 0 .../Generated/PoolSpecification.cs | 0 .../Generated/PoolStatistics.cs | 0 .../Generated/PoolUsageMetrics.cs | 0 .../{ => Azure.Batch}/Generated/RecentJob.cs | 0 .../Generated/RemoteLoginSettings.cs | 0 .../Generated/ResizeError.cs | 0 .../Generated/ResourceFile.cs | 0 .../Generated/ResourceStatistics.cs | 0 .../{ => Azure.Batch}/Generated/Schedule.cs | 0 .../{ => Azure.Batch}/Generated/StartTask.cs | 0 .../Generated/StartTaskInformation.cs | 0 .../Generated/SubtaskInformation.cs | 0 .../Generated/TaskConstraints.cs | 0 .../Generated/TaskDependencies.cs | 0 .../Generated/TaskExecutionInformation.cs | 0 .../Generated/TaskIdRange.cs | 0 .../Generated/TaskInformation.cs | 0 .../Generated/TaskSchedulingError.cs | 0 .../Generated/TaskSchedulingPolicy.cs | 0 .../Generated/TaskStatistics.cs | 0 .../Generated/UsageStatistics.cs | 0 .../Generated/UserAccount.cs | 0 .../Generated/UserIdentity.cs | 0 .../Generated/VirtualMachineConfiguration.cs | 0 .../Generated/WindowsConfiguration.cs | 0 .../GeneratedProtocol/AccountOperations.cs | 0 .../AccountOperationsExtensions.cs | 0 .../ApplicationOperations.cs | 0 .../ApplicationOperationsExtensions.cs | 0 .../GeneratedProtocol/BatchServiceClient.cs | 0 .../CertificateOperations.cs | 0 .../CertificateOperationsExtensions.cs | 0 .../ComputeNodeOperations.cs | 0 .../ComputeNodeOperationsExtensions.cs | 0 .../GeneratedProtocol/FileOperations.cs | 0 .../FileOperationsExtensions.cs | 0 .../GeneratedProtocol/IAccountOperations.cs | 0 .../IApplicationOperations.cs | 0 .../GeneratedProtocol/IBatchServiceClient.cs | 0 .../ICertificateOperations.cs | 0 .../IComputeNodeOperations.cs | 0 .../GeneratedProtocol/IFileOperations.cs | 0 .../GeneratedProtocol/IJobOperations.cs | 0 .../IJobScheduleOperations.cs | 0 .../GeneratedProtocol/IPoolOperations.cs | 0 .../GeneratedProtocol/ITaskOperations.cs | 0 .../GeneratedProtocol/JobOperations.cs | 0 .../JobOperationsExtensions.cs | 0 .../JobScheduleOperations.cs | 0 .../JobScheduleOperationsExtensions.cs | 0 .../GeneratedProtocol/Models/AccessScope.cs | 0 .../Models/AccountListNodeAgentSkusHeaders.cs | 0 .../AccountListNodeAgentSkusNextOptions.cs | 0 .../Models/AccountListNodeAgentSkusOptions.cs | 0 .../Models/AffinityInformation.cs | 0 .../Models/AllocationState.cs | 0 .../Models/ApplicationGetHeaders.cs | 0 .../Models/ApplicationGetOptions.cs | 0 .../Models/ApplicationListHeaders.cs | 0 .../Models/ApplicationListNextOptions.cs | 0 .../Models/ApplicationListOptions.cs | 0 .../Models/ApplicationPackageReference.cs | 0 .../Models/ApplicationSummary.cs | 0 .../Models/AuthenticationTokenSettings.cs | 0 .../Models/AutoPoolSpecification.cs | 0 .../GeneratedProtocol/Models/AutoScaleRun.cs | 0 .../Models/AutoScaleRunError.cs | 0 .../GeneratedProtocol/Models/AutoUserScope.cs | 0 .../Models/AutoUserSpecification.cs | 0 .../GeneratedProtocol/Models/BatchError.cs | 0 .../Models/BatchErrorDetail.cs | 0 .../Models/BatchErrorException.cs | 0 .../GeneratedProtocol/Models/CachingType.cs | 0 .../GeneratedProtocol/Models/Certificate.cs | 0 .../Models/CertificateAddHeaders.cs | 0 .../Models/CertificateAddOptions.cs | 0 .../Models/CertificateAddParameter.cs | 0 .../CertificateCancelDeletionHeaders.cs | 0 .../CertificateCancelDeletionOptions.cs | 0 .../Models/CertificateDeleteHeaders.cs | 0 .../Models/CertificateDeleteOptions.cs | 0 .../Models/CertificateFormat.cs | 0 .../Models/CertificateGetHeaders.cs | 0 .../Models/CertificateGetOptions.cs | 0 .../Models/CertificateListHeaders.cs | 0 .../Models/CertificateListNextOptions.cs | 0 .../Models/CertificateListOptions.cs | 0 .../Models/CertificateReference.cs | 0 .../Models/CertificateState.cs | 0 .../Models/CertificateStoreLocation.cs | 0 .../Models/CertificateVisibility.cs | 0 .../GeneratedProtocol/Models/CloudJob.cs | 0 .../Models/CloudJobSchedule.cs | 0 .../GeneratedProtocol/Models/CloudPool.cs | 0 .../Models/CloudServiceConfiguration.cs | 0 .../GeneratedProtocol/Models/CloudTask.cs | 0 .../Models/CloudTaskListSubtasksResult.cs | 0 .../GeneratedProtocol/Models/ComputeNode.cs | 0 .../Models/ComputeNodeAddUserHeaders.cs | 0 .../Models/ComputeNodeAddUserOptions.cs | 0 .../Models/ComputeNodeDeallocationOption.cs | 0 .../Models/ComputeNodeDeleteUserHeaders.cs | 0 .../Models/ComputeNodeDeleteUserOptions.cs | 0 .../ComputeNodeDisableSchedulingHeaders.cs | 0 .../ComputeNodeDisableSchedulingOptions.cs | 0 .../ComputeNodeEnableSchedulingHeaders.cs | 0 .../ComputeNodeEnableSchedulingOptions.cs | 0 .../Models/ComputeNodeError.cs | 0 .../Models/ComputeNodeFillType.cs | 0 .../Models/ComputeNodeGetHeaders.cs | 0 .../Models/ComputeNodeGetOptions.cs | 0 .../ComputeNodeGetRemoteDesktopHeaders.cs | 0 .../ComputeNodeGetRemoteDesktopOptions.cs | 0 ...omputeNodeGetRemoteLoginSettingsHeaders.cs | 0 ...omputeNodeGetRemoteLoginSettingsOptions.cs | 0 ...ComputeNodeGetRemoteLoginSettingsResult.cs | 0 .../Models/ComputeNodeInformation.cs | 0 .../Models/ComputeNodeListHeaders.cs | 0 .../Models/ComputeNodeListNextOptions.cs | 0 .../Models/ComputeNodeListOptions.cs | 0 .../Models/ComputeNodeRebootHeaders.cs | 0 .../Models/ComputeNodeRebootOption.cs | 0 .../Models/ComputeNodeRebootOptions.cs | 0 .../Models/ComputeNodeReimageHeaders.cs | 0 .../Models/ComputeNodeReimageOption.cs | 0 .../Models/ComputeNodeReimageOptions.cs | 0 .../Models/ComputeNodeState.cs | 0 .../Models/ComputeNodeUpdateUserHeaders.cs | 0 .../Models/ComputeNodeUpdateUserOptions.cs | 0 .../Models/ComputeNodeUser.cs | 0 .../Models/DeleteCertificateError.cs | 0 .../Models/DependencyAction.cs | 0 .../DisableComputeNodeSchedulingOption.cs | 0 .../Models/DisableJobOption.cs | 0 .../Models/ElevationLevel.cs | 0 .../Models/EnvironmentSetting.cs | 0 .../GeneratedProtocol/Models/ErrorMessage.cs | 0 .../Models/ExitCodeMapping.cs | 0 .../Models/ExitCodeRangeMapping.cs | 0 .../Models/ExitConditions.cs | 0 .../GeneratedProtocol/Models/ExitOptions.cs | 0 .../FileDeleteFromComputeNodeHeaders.cs | 0 .../FileDeleteFromComputeNodeOptions.cs | 0 .../Models/FileDeleteFromTaskHeaders.cs | 0 .../Models/FileDeleteFromTaskOptions.cs | 0 .../Models/FileGetFromComputeNodeHeaders.cs | 0 .../Models/FileGetFromComputeNodeOptions.cs | 0 .../Models/FileGetFromTaskHeaders.cs | 0 .../Models/FileGetFromTaskOptions.cs | 0 ...FileGetPropertiesFromComputeNodeHeaders.cs | 0 ...FileGetPropertiesFromComputeNodeOptions.cs | 0 .../FileGetPropertiesFromTaskHeaders.cs | 0 .../FileGetPropertiesFromTaskOptions.cs | 0 .../Models/FileListFromComputeNodeHeaders.cs | 0 .../FileListFromComputeNodeNextOptions.cs | 0 .../Models/FileListFromComputeNodeOptions.cs | 0 .../Models/FileListFromTaskHeaders.cs | 0 .../Models/FileListFromTaskNextOptions.cs | 0 .../Models/FileListFromTaskOptions.cs | 0 .../Models/FileProperties.cs | 0 .../Models/ImageReference.cs | 0 .../GeneratedProtocol/Models/JobAction.cs | 0 .../GeneratedProtocol/Models/JobAddHeaders.cs | 0 .../GeneratedProtocol/Models/JobAddOptions.cs | 0 .../Models/JobAddParameter.cs | 0 .../Models/JobConstraints.cs | 0 .../Models/JobDeleteHeaders.cs | 0 .../Models/JobDeleteOptions.cs | 0 .../Models/JobDisableHeaders.cs | 0 .../Models/JobDisableOptions.cs | 0 .../Models/JobDisableParameter.cs | 0 .../Models/JobEnableHeaders.cs | 0 .../Models/JobEnableOptions.cs | 0 .../Models/JobExecutionInformation.cs | 0 .../JobGetAllLifetimeStatisticsHeaders.cs | 0 .../JobGetAllLifetimeStatisticsOptions.cs | 0 .../GeneratedProtocol/Models/JobGetHeaders.cs | 0 .../GeneratedProtocol/Models/JobGetOptions.cs | 0 .../Models/JobListFromJobScheduleHeaders.cs | 0 .../JobListFromJobScheduleNextOptions.cs | 0 .../Models/JobListFromJobScheduleOptions.cs | 0 .../Models/JobListHeaders.cs | 0 .../Models/JobListNextOptions.cs | 0 .../Models/JobListOptions.cs | 0 ...tPreparationAndReleaseTaskStatusHeaders.cs | 0 ...parationAndReleaseTaskStatusNextOptions.cs | 0 ...tPreparationAndReleaseTaskStatusOptions.cs | 0 .../Models/JobManagerTask.cs | 0 .../Models/JobPatchHeaders.cs | 0 .../Models/JobPatchOptions.cs | 0 .../Models/JobPatchParameter.cs | 0 ...ationAndReleaseTaskExecutionInformation.cs | 0 .../Models/JobPreparationTask.cs | 0 .../JobPreparationTaskExecutionInformation.cs | 0 .../Models/JobPreparationTaskState.cs | 0 .../Models/JobReleaseTask.cs | 0 .../JobReleaseTaskExecutionInformation.cs | 0 .../Models/JobReleaseTaskState.cs | 0 .../Models/JobScheduleAddHeaders.cs | 0 .../Models/JobScheduleAddOptions.cs | 0 .../Models/JobScheduleAddParameter.cs | 0 .../Models/JobScheduleDeleteHeaders.cs | 0 .../Models/JobScheduleDeleteOptions.cs | 0 .../Models/JobScheduleDisableHeaders.cs | 0 .../Models/JobScheduleDisableOptions.cs | 0 .../Models/JobScheduleEnableHeaders.cs | 0 .../Models/JobScheduleEnableOptions.cs | 0 .../Models/JobScheduleExecutionInformation.cs | 0 .../Models/JobScheduleExistsHeaders.cs | 0 .../Models/JobScheduleExistsOptions.cs | 0 .../Models/JobScheduleGetHeaders.cs | 0 .../Models/JobScheduleGetOptions.cs | 0 .../Models/JobScheduleListHeaders.cs | 0 .../Models/JobScheduleListNextOptions.cs | 0 .../Models/JobScheduleListOptions.cs | 0 .../Models/JobSchedulePatchHeaders.cs | 0 .../Models/JobSchedulePatchOptions.cs | 0 .../Models/JobSchedulePatchParameter.cs | 0 .../Models/JobScheduleState.cs | 0 .../Models/JobScheduleStatistics.cs | 0 .../Models/JobScheduleTerminateHeaders.cs | 0 .../Models/JobScheduleTerminateOptions.cs | 0 .../Models/JobScheduleUpdateHeaders.cs | 0 .../Models/JobScheduleUpdateOptions.cs | 0 .../Models/JobScheduleUpdateParameter.cs | 0 .../Models/JobSchedulingError.cs | 0 .../Models/JobSpecification.cs | 0 .../GeneratedProtocol/Models/JobState.cs | 0 .../GeneratedProtocol/Models/JobStatistics.cs | 0 .../Models/JobTerminateHeaders.cs | 0 .../Models/JobTerminateOptions.cs | 0 .../Models/JobTerminateParameter.cs | 0 .../Models/JobUpdateHeaders.cs | 0 .../Models/JobUpdateOptions.cs | 0 .../Models/JobUpdateParameter.cs | 0 .../GeneratedProtocol/Models/MetadataItem.cs | 0 .../Models/MultiInstanceSettings.cs | 0 .../GeneratedProtocol/Models/NameValuePair.cs | 0 .../Models/NetworkConfiguration.cs | 0 .../GeneratedProtocol/Models/NodeAgentSku.cs | 0 .../Models/NodeDisableSchedulingParameter.cs | 0 .../GeneratedProtocol/Models/NodeFile.cs | 0 .../Models/NodeRebootParameter.cs | 0 .../Models/NodeReimageParameter.cs | 0 .../Models/NodeRemoveParameter.cs | 0 .../Models/NodeUpdateUserParameter.cs | 0 .../GeneratedProtocol/Models/OSDisk.cs | 0 .../GeneratedProtocol/Models/OSType.cs | 0 .../Models/OnAllTasksComplete.cs | 0 .../GeneratedProtocol/Models/OnTaskFailure.cs | 0 .../GeneratedProtocol/Models/Page.cs | 0 .../Models/PoolAddHeaders.cs | 0 .../Models/PoolAddOptions.cs | 0 .../Models/PoolAddParameter.cs | 0 .../Models/PoolDeleteHeaders.cs | 0 .../Models/PoolDeleteOptions.cs | 0 .../Models/PoolDisableAutoScaleHeaders.cs | 0 .../Models/PoolDisableAutoScaleOptions.cs | 0 .../Models/PoolEnableAutoScaleHeaders.cs | 0 .../Models/PoolEnableAutoScaleOptions.cs | 0 .../Models/PoolEnableAutoScaleParameter.cs | 0 .../Models/PoolEvaluateAutoScaleHeaders.cs | 0 .../Models/PoolEvaluateAutoScaleOptions.cs | 0 .../Models/PoolEvaluateAutoScaleParameter.cs | 0 .../Models/PoolExistsHeaders.cs | 0 .../Models/PoolExistsOptions.cs | 0 .../PoolGetAllLifetimeStatisticsHeaders.cs | 0 .../PoolGetAllLifetimeStatisticsOptions.cs | 0 .../Models/PoolGetHeaders.cs | 0 .../Models/PoolGetOptions.cs | 0 .../Models/PoolInformation.cs | 0 .../Models/PoolLifetimeOption.cs | 0 .../Models/PoolListHeaders.cs | 0 .../Models/PoolListNextOptions.cs | 0 .../Models/PoolListOptions.cs | 0 .../Models/PoolListUsageMetricsHeaders.cs | 0 .../Models/PoolListUsageMetricsNextOptions.cs | 0 .../Models/PoolListUsageMetricsOptions.cs | 0 .../Models/PoolPatchHeaders.cs | 0 .../Models/PoolPatchOptions.cs | 0 .../Models/PoolPatchParameter.cs | 0 .../Models/PoolRemoveNodesHeaders.cs | 0 .../Models/PoolRemoveNodesOptions.cs | 0 .../Models/PoolResizeHeaders.cs | 0 .../Models/PoolResizeOptions.cs | 0 .../Models/PoolResizeParameter.cs | 0 .../Models/PoolSpecification.cs | 0 .../GeneratedProtocol/Models/PoolState.cs | 0 .../Models/PoolStatistics.cs | 0 .../Models/PoolStopResizeHeaders.cs | 0 .../Models/PoolStopResizeOptions.cs | 0 .../Models/PoolUpdatePropertiesHeaders.cs | 0 .../Models/PoolUpdatePropertiesOptions.cs | 0 .../Models/PoolUpdatePropertiesParameter.cs | 0 .../Models/PoolUpgradeOSHeaders.cs | 0 .../Models/PoolUpgradeOSOptions.cs | 0 .../Models/PoolUpgradeOSParameter.cs | 0 .../Models/PoolUsageMetrics.cs | 0 .../GeneratedProtocol/Models/RecentJob.cs | 0 .../GeneratedProtocol/Models/ResizeError.cs | 0 .../GeneratedProtocol/Models/ResourceFile.cs | 0 .../Models/ResourceStatistics.cs | 0 .../GeneratedProtocol/Models/Schedule.cs | 0 .../Models/SchedulingErrorCategory.cs | 0 .../Models/SchedulingState.cs | 0 .../GeneratedProtocol/Models/StartTask.cs | 0 .../Models/StartTaskInformation.cs | 0 .../Models/StartTaskState.cs | 0 .../Models/SubtaskInformation.cs | 0 .../GeneratedProtocol/Models/SubtaskState.cs | 0 .../Models/TaskAddCollectionHeaders.cs | 0 .../Models/TaskAddCollectionOptions.cs | 0 .../Models/TaskAddCollectionParameter.cs | 0 .../Models/TaskAddCollectionResult.cs | 0 .../Models/TaskAddHeaders.cs | 0 .../Models/TaskAddOptions.cs | 0 .../Models/TaskAddParameter.cs | 0 .../GeneratedProtocol/Models/TaskAddResult.cs | 0 .../GeneratedProtocol/Models/TaskAddStatus.cs | 0 .../Models/TaskConstraints.cs | 0 .../Models/TaskDeleteHeaders.cs | 0 .../Models/TaskDeleteOptions.cs | 0 .../Models/TaskDependencies.cs | 0 .../Models/TaskExecutionInformation.cs | 0 .../Models/TaskGetHeaders.cs | 0 .../Models/TaskGetOptions.cs | 0 .../GeneratedProtocol/Models/TaskIdRange.cs | 0 .../Models/TaskInformation.cs | 0 .../Models/TaskListHeaders.cs | 0 .../Models/TaskListNextOptions.cs | 0 .../Models/TaskListOptions.cs | 0 .../Models/TaskListSubtasksHeaders.cs | 0 .../Models/TaskListSubtasksOptions.cs | 0 .../Models/TaskReactivateHeaders.cs | 0 .../Models/TaskReactivateOptions.cs | 0 .../Models/TaskSchedulingError.cs | 0 .../Models/TaskSchedulingPolicy.cs | 0 .../GeneratedProtocol/Models/TaskState.cs | 0 .../Models/TaskStatistics.cs | 0 .../Models/TaskTerminateHeaders.cs | 0 .../Models/TaskTerminateOptions.cs | 0 .../Models/TaskUpdateHeaders.cs | 0 .../Models/TaskUpdateOptions.cs | 0 .../Models/TaskUpdateParameter.cs | 0 .../Models/UsageStatistics.cs | 0 .../GeneratedProtocol/Models/UserAccount.cs | 0 .../GeneratedProtocol/Models/UserIdentity.cs | 0 .../Models/VirtualMachineConfiguration.cs | 0 .../Models/WindowsConfiguration.cs | 0 .../GeneratedProtocol/PoolOperations.cs | 0 .../PoolOperationsExtensions.cs | 0 .../GeneratedProtocol/TaskOperations.cs | 0 .../TaskOperationsExtensions.cs | 0 .../GetFileRequestByteRange.cs | 0 .../{ => Azure.Batch}/IFileStagingArtifact.cs | 0 .../{ => Azure.Batch}/IInheritedBehaviors.cs | 0 .../Src/{ => Azure.Batch}/IModifiable.cs | 0 .../Src/{ => Azure.Batch}/IPagedEnumerable.cs | 0 .../Src/{ => Azure.Batch}/IPagedEnumerator.cs | 0 .../{ => Azure.Batch}/IPropertyMetadata.cs | 0 .../Src/{ => Azure.Batch}/IProtocolLayer.cs | 0 .../Client/Src/{ => Azure.Batch}/IReadOnly.cs | 0 .../Src/{ => Azure.Batch}/IRefreshable.cs | 0 .../ITransportObjectProvider.cs | 0 .../Src/{ => Azure.Batch}/JobManagerTask.cs | 0 .../Src/{ => Azure.Batch}/JobOperations.cs | 125 +++---- .../{ => Azure.Batch}/JobPreparationTask.cs | 0 .../Src/{ => Azure.Batch}/JobReleaseTask.cs | 0 .../JobScheduleOperations.cs | 47 +-- .../Src/{ => Azure.Batch}/JobSpecification.cs | 0 .../Client/Src/{ => Azure.Batch}/NodeFile.cs | 22 +- .../Src/{ => Azure.Batch}/ODATADetailLevel.cs | 0 .../Src/{ => Azure.Batch}/ODATAMonitor.cs | 0 .../Client/Src/{ => Azure.Batch}/OSVersion.cs | 0 .../Src/{ => Azure.Batch}/PagedEnumerable.cs | 0 .../PagedEnumerableExtensions.cs | 0 .../{ => Azure.Batch}/PagedEnumeratorBase.cs | 16 +- .../Src/{ => Azure.Batch}/PoolOperations.cs | 169 ++++----- .../PropertyAccessController.cs | 0 .../Src/{ => Azure.Batch}/PropertyAccessor.cs | 0 .../{ => Azure.Batch}/PropertyCollection.cs | 0 .../Protocol/BatchConstants.cs | 0 .../Azure.Batch/Protocol/BatchCredentials.cs | 76 ++++ .../Protocol/BatchRequest.cs | 0 .../BatchRequests/NamedBatchRequests.cs | 0 .../Protocol/BatchSharedKeyCredential.cs | 10 +- .../Protocol/BatchTokenCredential.cs | 74 ++++ .../Protocol/BatchTokenProvider.cs | 0 .../Protocol/IBatchRequest.cs | 0 .../Protocol/Interceptors.cs | 0 .../{ => Azure.Batch}/Protocol/LogLevel.cs | 0 .../Protocol/Models/IOptions.cs | 0 .../Protocol/Models/ParameterExtensions.cs | 0 .../Models/ResponseHeaderExtensions.cs | 0 .../Protocol/ResponseInterceptor.cs | 0 .../Src/{ => Azure.Batch}/ProtocolLayer.cs | 4 +- .../2015.07.jul.GA.ReleaseNotes.txt | 0 .../2015.07.jul.GA.delta.from.doc.build.txt | 0 .../{ => Azure.Batch}/RetryPolicyProvider.cs | 0 .../Client/Src/{ => Azure.Batch}/StartTask.cs | 0 .../SynchronousMethodExceptionBehavior.cs | 0 .../Src/{ => Azure.Batch}/TaskDependencies.cs | 0 .../Client/Src/{ => Azure.Batch}/TaskFile.cs | 6 +- .../Src/{ => Azure.Batch}/TaskIdRange.cs | 0 .../Src/{ => Azure.Batch}/TaskStateMonitor.cs | 8 +- .../Src/{ => Azure.Batch}/UserIdentity.cs | 0 .../Client/Src/{ => Azure.Batch}/Utilities.cs | 0 .../{ => Azure.Batch}/UtilitiesInternal.cs | 0 .../Src/{ => Azure.Batch}/Utils/Async.cs | 0 .../VirtualMachineConfiguration.cs | 0 .../Client/Src/{ => Azure.Batch}/app.config | 0 src/Batch/Client/Src/Azure.Batch/project.json | 53 +++ src/Batch/Client/Src/LockUtil.cs | 114 ------ .../BatchClientErrorMessages.Designer.cs | 324 ------------------ .../Protocol/BatchClientErrorMessages.resx | 215 ------------ .../Client/Src/Protocol/Core/Logger.Common.cs | 55 --- .../Client/Src/Protocol/Core/NullType.cs | 38 -- .../Src/Protocol/Core/UriQueryBuilder.cs | 150 -------- src/Batch/Client/Src/packages.config | 6 - .../Azure.Batch.Unit.Tests.xproj | 21 ++ .../BatchRequestUnitTests.cs | 4 +- .../CommitAndRefreshUnitTests.cs | 41 +-- .../Azure.Batch.Unit.Tests/EnumUnitTests.cs | 9 +- .../OptionsUnitTests.cs | 3 +- .../Azure.Batch.Unit.Tests/PoolTests.cs | 255 -------------- .../PropertyUnitTests.cs | 21 +- .../RetryPolicyUnitTests.cs | 8 +- .../StaticAnalysisUnitTests.cs | 7 +- .../TestUtilities/ObjectFactory.cs | 6 +- .../TestUtilities/ReflectionHelpers.cs | 2 +- .../Azure.Batch.Unit.Tests/packages.config | 13 - .../Azure.Batch.Unit.Tests/project.json | 33 ++ .../ApplicationIntegrationCommon.cs | 7 +- .../ApplicationManagementIntegrationTests.cs | 5 +- .../Application/ApplicationPackageFixture.cs | 3 +- .../ApplicationPackagesIntegrationTests.cs | 3 +- .../AuthenticationTest.cs | 3 +- .../BatchClientIntegrationTests.csproj | 28 +- .../CertificateUnitTests.cs | 40 ++- .../CloudCertificateIntegrationTests.cs | 9 +- .../BatchClientIntegrationTests/NuGet.config | 7 + .../packages.config | 3 + .../BatchClientIntegrationTests/temp | 21 ++ .../temp.project.json | 35 ++ .../ObjectModel/Common/BatchTestCommon.xproj | 21 ++ .../Tests/ObjectModel/Common/TestCommon.cs | 190 ---------- .../Tests/ObjectModel/Common/project.json | 50 +++ .../CertificateBuilder.cs | 2 +- .../CommonResources.cs | 2 +- .../IntegrationTestCommon.cs | 205 +++++++++++ .../IntegrationTestCommon.csproj | 94 +++++ .../IntegrationTestCommon.xproj | 21 ++ .../IntegrationTestCommon/NuGet.config | 7 + .../Properties/AssemblyInfo.cs | 19 + .../IntegrationTestCommon/packages.config | 16 + .../IntegrationTestCommon/temp.project.json | 32 ++ .../ApplicationPackageCommon.cs | 9 +- .../BatchProxyIntegrationTests.csproj | 27 +- ...ionJobApplicationPackageReferencesTests.cs | 5 +- ...onPoolApplicationPackageReferencesTests.cs | 5 +- .../packages.config | 3 + .../ObjectModelCodeGenerator/Program.cs | 6 +- src/Batch/Client/global.json | 8 + 613 files changed, 1397 insertions(+), 2075 deletions(-) create mode 100644 src/Batch/Client/.gitignore rename src/Batch/Client/Src/{ => Azure.Batch}/AddTaskCollectionResultHandler.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AddTaskResult.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AddTasksWorkflowManager.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/ApplicationOperations.cs (95%) rename src/Batch/Client/Src/{ => Azure.Batch}/AssemblyAttributes.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncApplicationSummariesEnumerator.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListCertificates.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListComputeNodes.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListJobPrepReleaseTaskStatus.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListJobSchedules.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListJobs.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListNodeAgentSkus.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListNodeFiles.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListPoolUsageMetrics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListPools.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListSubtasks.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListTaskFiles.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/AsyncListTasks.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Auth/BatchCredentials.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Auth/BatchSharedKeyCredentials.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Auth/BatchTokenCredentials.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Authorization.cs (100%) rename src/Batch/Client/Src/{Azure.Batch.nuget.proj => Azure.Batch/Azure.Batch.nuget.proj.old} (100%) rename src/Batch/Client/Src/{Azure.Batch.nuspec => Azure.Batch/Azure.Batch.nuspec.old} (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Batch.csproj (100%) create mode 100644 src/Batch/Client/Src/Azure.Batch/Batch.xproj rename src/Batch/Client/Src/{ => Azure.Batch}/BatchClient.cs (94%) rename src/Batch/Client/Src/{ => Azure.Batch}/BatchClientBehaviors.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/BatchClientExceptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/BatchClientParallelOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/BatchErrorMessages.Designer.cs (56%) rename src/Batch/Client/Src/{ => Azure.Batch}/BatchErrorMessages.resx (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/BatchRequestTimeout.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/BehaviorManager.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/BindingState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Certificate.cs (94%) rename src/Batch/Client/Src/{ => Azure.Batch}/CertificateOperations.cs (96%) rename src/Batch/Client/Src/{ => Azure.Batch}/CertificateReference.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/ClientRequestIdProvider.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/CloudJob.cs (93%) rename src/Batch/Client/Src/{ => Azure.Batch}/CloudJobSchedule.cs (94%) rename src/Batch/Client/Src/{ => Azure.Batch}/CloudPool.cs (93%) rename src/Batch/Client/Src/{ => Azure.Batch}/CloudTask.cs (93%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/BatchErrorCodeStrings.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/BatchException.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/AccessScope.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/AddTaskStatus.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/AllocationState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/AutoUserScope.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/CachingType.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/CertStoreLocation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/CertificateFormat.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/CertificateState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/CertificateVisibility.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/ComputeNodeDeallocationOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/ComputeNodeFillType.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/ComputeNodeRebootOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/ComputeNodeReimageOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/ComputeNodeState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/DependencyAction.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/DisableComputeNodeSchedulingOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/DisableJobOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/ElevationLevel.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/JobAction.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/JobPreparationTaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/JobReleaseTaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/JobScheduleState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/JobState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/OSType.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/OnAllTasksComplete.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/OnTaskFailure.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/PoolLifetimeOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/PoolState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/SchedulingErrorCategory.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/SchedulingState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/StartTaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/SubtaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/Enumerations/TaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/ExponentialRetry.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/IRetryPolicy.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/LinearRetry.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/NoRetry.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/OperationContext.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/RequestInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/RequestResult.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/RetryDecision.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Common/RetryPolicyCommon.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/ComputeNode.cs (90%) rename src/Batch/Client/Src/{ => Azure.Batch}/ComputeNodeFile.cs (95%) rename src/Batch/Client/Src/{ => Azure.Batch}/ComputeNodeUser.cs (93%) rename src/Batch/Client/Src/{ => Azure.Batch}/ConcurrentChangeTrackedList.cs (99%) rename src/Batch/Client/Src/{ => Azure.Batch}/Constants.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/DetailLevel.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/FileStaging/Constants.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/FileStaging/FileStagingUtils.cs (97%) rename src/Batch/Client/Src/{ => Azure.Batch}/FileStaging/IFileStagingProvider.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/AddTaskResult.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/AffinityInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ApplicationPackageReference.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ApplicationSummary.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/AuthenticationTokenSettings.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/AutoPoolSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/AutoScaleRun.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/AutoScaleRunError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/AutoUserSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/BatchError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/BatchErrorDetail.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/Certificate.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/CertificateReference.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/CloudJob.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/CloudJobSchedule.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/CloudPool.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/CloudServiceConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/CloudTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ComputeNode.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ComputeNodeError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ComputeNodeInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ComputeNodeUser.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/DeleteCertificateError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/EnvironmentSetting.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ErrorMessage.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ExitCodeMapping.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ExitCodeRangeMapping.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ExitConditions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ExitOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/FileProperties.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ImageReference.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobConstraints.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobManagerTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobPreparationTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobPreparationTaskExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobReleaseTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobReleaseTaskExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobScheduleExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobScheduleStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobSchedulingError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/JobStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/MetadataItem.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/MultiInstanceSettings.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/NameValuePair.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/NetworkConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/NodeAgentSku.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/OSDisk.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/PoolInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/PoolSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/PoolStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/PoolUsageMetrics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/RecentJob.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/RemoteLoginSettings.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ResizeError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ResourceFile.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/ResourceStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/Schedule.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/StartTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/StartTaskInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/SubtaskInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/TaskConstraints.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/TaskDependencies.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/TaskExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/TaskIdRange.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/TaskInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/TaskSchedulingError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/TaskSchedulingPolicy.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/TaskStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/UsageStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/UserAccount.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/UserIdentity.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/VirtualMachineConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Generated/WindowsConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/AccountOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/AccountOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/ApplicationOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/ApplicationOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/BatchServiceClient.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/CertificateOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/CertificateOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/ComputeNodeOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/ComputeNodeOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/FileOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/FileOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/IAccountOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/IApplicationOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/IBatchServiceClient.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/ICertificateOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/IComputeNodeOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/IFileOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/IJobOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/IJobScheduleOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/IPoolOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/ITaskOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/JobOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/JobOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/JobScheduleOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/JobScheduleOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AccessScope.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AffinityInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AllocationState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ApplicationGetHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ApplicationGetOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ApplicationListHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ApplicationListNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ApplicationListOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ApplicationPackageReference.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ApplicationSummary.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AuthenticationTokenSettings.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AutoPoolSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AutoScaleRun.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AutoScaleRunError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AutoUserScope.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/AutoUserSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/BatchError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/BatchErrorDetail.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/BatchErrorException.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CachingType.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/Certificate.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateAddHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateAddOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateAddParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateDeleteHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateDeleteOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateFormat.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateGetHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateGetOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateListHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateListNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateListOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateReference.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateStoreLocation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CertificateVisibility.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CloudJob.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CloudJobSchedule.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CloudPool.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CloudServiceConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CloudTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNode.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeFillType.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeGetOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeListHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeListOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeRebootOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeReimageOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ComputeNodeUser.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/DeleteCertificateError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/DependencyAction.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/DisableJobOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ElevationLevel.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/EnvironmentSetting.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ErrorMessage.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ExitCodeMapping.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ExitCodeRangeMapping.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ExitConditions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ExitOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileGetFromTaskOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileListFromTaskHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileListFromTaskOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/FileProperties.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ImageReference.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobAction.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobAddHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobAddOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobAddParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobConstraints.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobDeleteHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobDeleteOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobDisableHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobDisableOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobDisableParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobEnableHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobEnableOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobGetHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobGetOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobManagerTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobPatchHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobPatchOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobPatchParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobPreparationTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobPreparationTaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobReleaseTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobReleaseTaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleAddHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleAddOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleAddParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleDisableOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleEnableOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleExistsOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleGetHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleGetOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleListHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleListNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleListOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobSchedulePatchOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobSchedulePatchParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobSchedulingError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobTerminateHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobTerminateOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobTerminateParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobUpdateHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobUpdateOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/JobUpdateParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/MetadataItem.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/MultiInstanceSettings.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NameValuePair.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NetworkConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NodeAgentSku.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NodeFile.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NodeRebootParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NodeReimageParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NodeRemoveParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/NodeUpdateUserParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/OSDisk.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/OSType.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/OnAllTasksComplete.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/OnTaskFailure.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/Page.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolAddHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolAddOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolAddParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolDeleteHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolDeleteOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolExistsHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolExistsOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolGetHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolGetOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolLifetimeOption.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolListHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolListNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolListOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolPatchHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolPatchOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolPatchParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolResizeHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolResizeOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolResizeParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolStopResizeHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolStopResizeOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/PoolUsageMetrics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/RecentJob.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ResizeError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ResourceFile.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/ResourceStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/Schedule.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/SchedulingErrorCategory.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/SchedulingState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/StartTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/StartTaskInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/StartTaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/SubtaskInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/SubtaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddCollectionOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddCollectionParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddCollectionResult.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddResult.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskAddStatus.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskConstraints.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskDeleteHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskDeleteOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskDependencies.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskExecutionInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskGetHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskGetOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskIdRange.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskInformation.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskListHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskListNextOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskListOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskListSubtasksOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskReactivateHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskReactivateOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskSchedulingError.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskSchedulingPolicy.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskState.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskTerminateHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskTerminateOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskUpdateHeaders.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskUpdateOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/TaskUpdateParameter.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/UsageStatistics.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/UserAccount.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/UserIdentity.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/VirtualMachineConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/Models/WindowsConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/PoolOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/PoolOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/TaskOperations.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GeneratedProtocol/TaskOperationsExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/GetFileRequestByteRange.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IFileStagingArtifact.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IInheritedBehaviors.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IModifiable.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IPagedEnumerable.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IPagedEnumerator.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IPropertyMetadata.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IProtocolLayer.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IReadOnly.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/IRefreshable.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/ITransportObjectProvider.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/JobManagerTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/JobOperations.cs (93%) rename src/Batch/Client/Src/{ => Azure.Batch}/JobPreparationTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/JobReleaseTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/JobScheduleOperations.cs (91%) rename src/Batch/Client/Src/{ => Azure.Batch}/JobSpecification.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/NodeFile.cs (94%) rename src/Batch/Client/Src/{ => Azure.Batch}/ODATADetailLevel.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/ODATAMonitor.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/OSVersion.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/PagedEnumerable.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/PagedEnumerableExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/PagedEnumeratorBase.cs (91%) rename src/Batch/Client/Src/{ => Azure.Batch}/PoolOperations.cs (93%) rename src/Batch/Client/Src/{ => Azure.Batch}/PropertyAccessController.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/PropertyAccessor.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/PropertyCollection.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/BatchConstants.cs (100%) create mode 100644 src/Batch/Client/Src/Azure.Batch/Protocol/BatchCredentials.cs rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/BatchRequest.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/BatchRequests/NamedBatchRequests.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/BatchSharedKeyCredential.cs (95%) create mode 100644 src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenCredential.cs rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/BatchTokenProvider.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/IBatchRequest.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/Interceptors.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/LogLevel.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/Models/IOptions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/Models/ParameterExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/Models/ResponseHeaderExtensions.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Protocol/ResponseInterceptor.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/ProtocolLayer.cs (99%) rename src/Batch/Client/Src/{ => Azure.Batch}/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/RetryPolicyProvider.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/StartTask.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/SynchronousMethodExceptionBehavior.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/TaskDependencies.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/TaskFile.cs (95%) rename src/Batch/Client/Src/{ => Azure.Batch}/TaskIdRange.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/TaskStateMonitor.cs (97%) rename src/Batch/Client/Src/{ => Azure.Batch}/UserIdentity.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Utilities.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/UtilitiesInternal.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/Utils/Async.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/VirtualMachineConfiguration.cs (100%) rename src/Batch/Client/Src/{ => Azure.Batch}/app.config (100%) create mode 100644 src/Batch/Client/Src/Azure.Batch/project.json delete mode 100644 src/Batch/Client/Src/LockUtil.cs delete mode 100644 src/Batch/Client/Src/Protocol/BatchClientErrorMessages.Designer.cs delete mode 100644 src/Batch/Client/Src/Protocol/BatchClientErrorMessages.resx delete mode 100644 src/Batch/Client/Src/Protocol/Core/Logger.Common.cs delete mode 100644 src/Batch/Client/Src/Protocol/Core/NullType.cs delete mode 100644 src/Batch/Client/Src/Protocol/Core/UriQueryBuilder.cs delete mode 100644 src/Batch/Client/Src/packages.config create mode 100644 src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.xproj delete mode 100644 src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PoolTests.cs delete mode 100644 src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/packages.config create mode 100644 src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json rename src/Batch/Client/Tests/ObjectModel/{Azure.Batch.Unit.Tests => BatchClientIntegrationTests}/CertificateUnitTests.cs (70%) create mode 100644 src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NuGet.config create mode 100644 src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp create mode 100644 src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp.project.json create mode 100644 src/Batch/Client/Tests/ObjectModel/Common/BatchTestCommon.xproj create mode 100644 src/Batch/Client/Tests/ObjectModel/Common/project.json rename src/Batch/Client/Tests/ObjectModel/{Common => IntegrationTestCommon}/CertificateBuilder.cs (99%) rename src/Batch/Client/Tests/ObjectModel/{Common => IntegrationTestCommon}/CommonResources.cs (95%) create mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs create mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj create mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.xproj create mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/NuGet.config create mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/Properties/AssemblyInfo.cs create mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/packages.config create mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/temp.project.json create mode 100644 src/Batch/Client/global.json diff --git a/src/Batch/Client/.gitignore b/src/Batch/Client/.gitignore new file mode 100644 index 000000000000..72e9b80b7a82 --- /dev/null +++ b/src/Batch/Client/.gitignore @@ -0,0 +1 @@ +LocalNuget \ No newline at end of file diff --git a/src/Batch/Client/Batch.sln b/src/Batch/Client/Batch.sln index e407baf31155..a74eef1c8da1 100644 --- a/src/Batch/Client/Batch.sln +++ b/src/Batch/Client/Batch.sln @@ -2,11 +2,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Batch", "Src\Batch.csproj", "{3328FBBF-9C20-4775-B367-856C09DC13BF}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Batch", "Src\Azure.Batch\Batch.xproj", "{3328FBBF-9C20-4775-B367-856C09DC13BF}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Src", "Src", "{9EC38B72-3B6D-46DF-89B4-1CF689C3CB2C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Batch.Unit.Tests", "Tests\ObjectModel\Azure.Batch.Unit.Tests\Azure.Batch.Unit.Tests.csproj", "{37F66AC7-C54C-4FE2-B691-5260D3971BAB}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Azure.Batch.Unit.Tests", "Tests\ObjectModel\Azure.Batch.Unit.Tests\Azure.Batch.Unit.Tests.xproj", "{37F66AC7-C54C-4FE2-B691-5260D3971BAB}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{C62E0485-00BD-4C9E-912D-752B0B50E050}" EndProject @@ -14,7 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ObjectModel", "ObjectModel" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Azure.Batch.Unit.Tests", "Azure.Batch.Unit.Tests", "{1C4CF4F3-AE0A-4194-9C99-087DFC6E3DC2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BatchTestCommon", "Tests\ObjectModel\Common\BatchTestCommon.csproj", "{B697759F-6EF9-4142-8BD3-D78BF18C678E}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "BatchTestCommon", "Tests\ObjectModel\Common\BatchTestCommon.xproj", "{B697759F-6EF9-4142-8BD3-D78BF18C678E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{29D10BE2-8818-46D0-9104-39FD62BD7A24}" EndProject @@ -50,6 +50,15 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureAwaitAnalyzer", "T EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureAwaitAnalyzer.Tests", "Tools\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer.Tests\ConfigureAwaitAnalyzer.Tests.csproj", "{5F8690AA-765A-4112-8C68-0BB00C322FDB}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IntegrationTestCommon", "IntegrationTestCommon", "{DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IntegrationTestCommon", "Tests\ObjectModel\IntegrationTestCommon\IntegrationTestCommon.csproj", "{71F7CD84-D760-425F-823B-DEF2EAAE5DC1}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4C8CADC5-571C-42D0-92AF-9BC0CFDEBBF6}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Net45-Debug|Any CPU = Net45-Debug|Any CPU @@ -58,25 +67,25 @@ Global Portable-Release|Any CPU = Portable-Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU - {3328FBBF-9C20-4775-B367-856C09DC13BF}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {3328FBBF-9C20-4775-B367-856C09DC13BF}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Release|Any CPU.ActiveCfg = Debug|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Portable-Release|Any CPU.ActiveCfg = Debug|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Release|Any CPU.ActiveCfg = Debug|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Portable-Release|Any CPU.ActiveCfg = Debug|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Release|Any CPU.ActiveCfg = Debug|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Portable-Release|Any CPU.ActiveCfg = Debug|Any CPU {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {C809285A-784D-48E4-9D7A-F5685A19F595}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {C809285A-784D-48E4-9D7A-F5685A19F595}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU @@ -111,6 +120,12 @@ Global {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -137,5 +152,7 @@ Global {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} = {3DE96B66-463F-470B-92F2-7284A2DD022C} {48215D6D-DB21-48B8-AB03-1297A94DF696} = {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} {5F8690AA-765A-4112-8C68-0BB00C322FDB} = {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} + {DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1} = {DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647} EndGlobalSection EndGlobal diff --git a/src/Batch/Client/RegenerateBatch.cmd b/src/Batch/Client/RegenerateBatch.cmd index 2f53065533f2..0eb3c2e64b4f 100644 --- a/src/Batch/Client/RegenerateBatch.cmd +++ b/src/Batch/Client/RegenerateBatch.cmd @@ -1,5 +1,5 @@ setlocal -..\..\..\tools\autorest.gen.cmd %1 Microsoft.Azure.Batch.Protocol 1.0.0-Nightly20170209 .\src\GeneratedProtocol MICROSOFT_APACHE_NO_VERSION "-ft 1 -disablesimplifier" +..\..\..\tools\autorest.gen.cmd %1 Microsoft.Azure.Batch.Protocol 1.0.0-Nightly20170209 .\src\Azure.Batch\GeneratedProtocol MICROSOFT_APACHE_NO_VERSION "-ft 1 -disablesimplifier" endlocal \ No newline at end of file diff --git a/src/Batch/Client/Src/AddTaskCollectionResultHandler.cs b/src/Batch/Client/Src/Azure.Batch/AddTaskCollectionResultHandler.cs similarity index 100% rename from src/Batch/Client/Src/AddTaskCollectionResultHandler.cs rename to src/Batch/Client/Src/Azure.Batch/AddTaskCollectionResultHandler.cs diff --git a/src/Batch/Client/Src/AddTaskResult.cs b/src/Batch/Client/Src/Azure.Batch/AddTaskResult.cs similarity index 100% rename from src/Batch/Client/Src/AddTaskResult.cs rename to src/Batch/Client/Src/Azure.Batch/AddTaskResult.cs diff --git a/src/Batch/Client/Src/AddTasksWorkflowManager.cs b/src/Batch/Client/Src/Azure.Batch/AddTasksWorkflowManager.cs similarity index 100% rename from src/Batch/Client/Src/AddTasksWorkflowManager.cs rename to src/Batch/Client/Src/Azure.Batch/AddTasksWorkflowManager.cs diff --git a/src/Batch/Client/Src/ApplicationOperations.cs b/src/Batch/Client/Src/Azure.Batch/ApplicationOperations.cs similarity index 95% rename from src/Batch/Client/Src/ApplicationOperations.cs rename to src/Batch/Client/Src/Azure.Batch/ApplicationOperations.cs index cf7d09870095..3992802fc964 100644 --- a/src/Batch/Client/Src/ApplicationOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/ApplicationOperations.cs @@ -140,12 +140,10 @@ public IPagedEnumerable ListApplicationSummaries(DetailLevel /// This is a blocking operation. For a non-blocking equivalent, see . public ApplicationSummary GetApplicationSummary(string applicationId, DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetApplicationSummaryAsync(applicationId, detailLevel, additionalBehaviors)) - { - ApplicationSummary applicationSummary = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = GetApplicationSummaryAsync(applicationId, detailLevel, additionalBehaviors); + ApplicationSummary applicationSummary = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return applicationSummary; - } + return applicationSummary; } #endregion diff --git a/src/Batch/Client/Src/AssemblyAttributes.cs b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs similarity index 100% rename from src/Batch/Client/Src/AssemblyAttributes.cs rename to src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs diff --git a/src/Batch/Client/Src/AsyncApplicationSummariesEnumerator.cs b/src/Batch/Client/Src/Azure.Batch/AsyncApplicationSummariesEnumerator.cs similarity index 100% rename from src/Batch/Client/Src/AsyncApplicationSummariesEnumerator.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncApplicationSummariesEnumerator.cs diff --git a/src/Batch/Client/Src/AsyncListCertificates.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListCertificates.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListCertificates.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListCertificates.cs diff --git a/src/Batch/Client/Src/AsyncListComputeNodes.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListComputeNodes.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListComputeNodes.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListComputeNodes.cs diff --git a/src/Batch/Client/Src/AsyncListJobPrepReleaseTaskStatus.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListJobPrepReleaseTaskStatus.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListJobPrepReleaseTaskStatus.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListJobPrepReleaseTaskStatus.cs diff --git a/src/Batch/Client/Src/AsyncListJobSchedules.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListJobSchedules.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListJobSchedules.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListJobSchedules.cs diff --git a/src/Batch/Client/Src/AsyncListJobs.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListJobs.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListJobs.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListJobs.cs diff --git a/src/Batch/Client/Src/AsyncListNodeAgentSkus.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListNodeAgentSkus.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListNodeAgentSkus.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListNodeAgentSkus.cs diff --git a/src/Batch/Client/Src/AsyncListNodeFiles.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListNodeFiles.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListNodeFiles.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListNodeFiles.cs diff --git a/src/Batch/Client/Src/AsyncListPoolUsageMetrics.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListPoolUsageMetrics.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListPoolUsageMetrics.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListPoolUsageMetrics.cs diff --git a/src/Batch/Client/Src/AsyncListPools.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListPools.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListPools.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListPools.cs diff --git a/src/Batch/Client/Src/AsyncListSubtasks.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListSubtasks.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListSubtasks.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListSubtasks.cs diff --git a/src/Batch/Client/Src/AsyncListTaskFiles.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListTaskFiles.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListTaskFiles.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListTaskFiles.cs diff --git a/src/Batch/Client/Src/AsyncListTasks.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListTasks.cs similarity index 100% rename from src/Batch/Client/Src/AsyncListTasks.cs rename to src/Batch/Client/Src/Azure.Batch/AsyncListTasks.cs diff --git a/src/Batch/Client/Src/Auth/BatchCredentials.cs b/src/Batch/Client/Src/Azure.Batch/Auth/BatchCredentials.cs similarity index 100% rename from src/Batch/Client/Src/Auth/BatchCredentials.cs rename to src/Batch/Client/Src/Azure.Batch/Auth/BatchCredentials.cs diff --git a/src/Batch/Client/Src/Auth/BatchSharedKeyCredentials.cs b/src/Batch/Client/Src/Azure.Batch/Auth/BatchSharedKeyCredentials.cs similarity index 100% rename from src/Batch/Client/Src/Auth/BatchSharedKeyCredentials.cs rename to src/Batch/Client/Src/Azure.Batch/Auth/BatchSharedKeyCredentials.cs diff --git a/src/Batch/Client/Src/Auth/BatchTokenCredentials.cs b/src/Batch/Client/Src/Azure.Batch/Auth/BatchTokenCredentials.cs similarity index 100% rename from src/Batch/Client/Src/Auth/BatchTokenCredentials.cs rename to src/Batch/Client/Src/Azure.Batch/Auth/BatchTokenCredentials.cs diff --git a/src/Batch/Client/Src/Authorization.cs b/src/Batch/Client/Src/Azure.Batch/Authorization.cs similarity index 100% rename from src/Batch/Client/Src/Authorization.cs rename to src/Batch/Client/Src/Azure.Batch/Authorization.cs diff --git a/src/Batch/Client/Src/Azure.Batch.nuget.proj b/src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuget.proj.old similarity index 100% rename from src/Batch/Client/Src/Azure.Batch.nuget.proj rename to src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuget.proj.old diff --git a/src/Batch/Client/Src/Azure.Batch.nuspec b/src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuspec.old similarity index 100% rename from src/Batch/Client/Src/Azure.Batch.nuspec rename to src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuspec.old diff --git a/src/Batch/Client/Src/Batch.csproj b/src/Batch/Client/Src/Azure.Batch/Batch.csproj similarity index 100% rename from src/Batch/Client/Src/Batch.csproj rename to src/Batch/Client/Src/Azure.Batch/Batch.csproj diff --git a/src/Batch/Client/Src/Azure.Batch/Batch.xproj b/src/Batch/Client/Src/Azure.Batch/Batch.xproj new file mode 100644 index 000000000000..22e21c0da8b9 --- /dev/null +++ b/src/Batch/Client/Src/Azure.Batch/Batch.xproj @@ -0,0 +1,22 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + 3328FBBF-9C20-4775-B367-856C09DC13BF + Microsoft.Azure.Batch + .\obj + .\bin\ + + + + 2.0 + + + + \ No newline at end of file diff --git a/src/Batch/Client/Src/BatchClient.cs b/src/Batch/Client/Src/Azure.Batch/BatchClient.cs similarity index 94% rename from src/Batch/Client/Src/BatchClient.cs rename to src/Batch/Client/Src/Azure.Batch/BatchClient.cs index 154c751a217d..4c74f9d94557 100644 --- a/src/Batch/Client/Src/BatchClient.cs +++ b/src/Batch/Client/Src/Azure.Batch/BatchClient.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.Batch { using System; using System.Collections.Generic; + using System.Threading.Tasks; using Protocol; using Rest; @@ -239,13 +240,10 @@ public static System.Threading.Tasks.Task OpenAsync(Auth.BatchShare /// An instance of . public static BatchClient Open(Auth.BatchSharedKeyCredentials credentials) { - using (System.Threading.Tasks.Task asyncTask = OpenAsync(credentials)) - { - // wait for completion - BatchClient bc = asyncTask.WaitAndUnaggregateException(); + // wait for completion + BatchClient bc = OpenAsync(credentials).WaitAndUnaggregateException(); - return bc; - } + return bc; } /// @@ -275,13 +273,12 @@ public static System.Threading.Tasks.Task OpenAsync(Auth.BatchToken /// An instance of . public static BatchClient Open(Auth.BatchTokenCredentials credentials) { - using (System.Threading.Tasks.Task asyncTask = OpenAsync(credentials)) - { - // wait for completion - BatchClient bc = asyncTask.WaitAndUnaggregateException(); + Task asyncTask = OpenAsync(credentials); - return bc; - } + // wait for completion + BatchClient bc = asyncTask.WaitAndUnaggregateException(); + + return bc; } /// @@ -309,13 +306,12 @@ public static System.Threading.Tasks.Task OpenAsync(Protocol.BatchS /// An instance of . public static BatchClient Open(Protocol.BatchServiceClient restClient) { - using (System.Threading.Tasks.Task asyncTask = OpenAsync(restClient)) - { - // wait for completion - BatchClient bc = asyncTask.WaitAndUnaggregateException(); + Task asyncTask = OpenAsync(restClient); - return bc; - } + // wait for completion + BatchClient bc = asyncTask.WaitAndUnaggregateException(); + + return bc; } /// @@ -349,11 +345,10 @@ public System.Threading.Tasks.Task CloseAsync() /// public void Close() { - using (System.Threading.Tasks.Task asyncTask = CloseAsync()) - { - // blocking wait for completion - asyncTask.WaitAndUnaggregateException(); - } + Task asyncTask = CloseAsync(); + + // blocking wait for completion + asyncTask.WaitAndUnaggregateException(); } #endregion // BatchClient diff --git a/src/Batch/Client/Src/BatchClientBehaviors.cs b/src/Batch/Client/Src/Azure.Batch/BatchClientBehaviors.cs similarity index 100% rename from src/Batch/Client/Src/BatchClientBehaviors.cs rename to src/Batch/Client/Src/Azure.Batch/BatchClientBehaviors.cs diff --git a/src/Batch/Client/Src/BatchClientExceptions.cs b/src/Batch/Client/Src/Azure.Batch/BatchClientExceptions.cs similarity index 100% rename from src/Batch/Client/Src/BatchClientExceptions.cs rename to src/Batch/Client/Src/Azure.Batch/BatchClientExceptions.cs diff --git a/src/Batch/Client/Src/BatchClientParallelOptions.cs b/src/Batch/Client/Src/Azure.Batch/BatchClientParallelOptions.cs similarity index 100% rename from src/Batch/Client/Src/BatchClientParallelOptions.cs rename to src/Batch/Client/Src/Azure.Batch/BatchClientParallelOptions.cs diff --git a/src/Batch/Client/Src/BatchErrorMessages.Designer.cs b/src/Batch/Client/Src/Azure.Batch/BatchErrorMessages.Designer.cs similarity index 56% rename from src/Batch/Client/Src/BatchErrorMessages.Designer.cs rename to src/Batch/Client/Src/Azure.Batch/BatchErrorMessages.Designer.cs index b602f0935e0e..535b4bfe26bd 100644 --- a/src/Batch/Client/Src/BatchErrorMessages.Designer.cs +++ b/src/Batch/Client/Src/Azure.Batch/BatchErrorMessages.Designer.cs @@ -10,36 +10,35 @@ namespace Microsoft.Azure.Batch { using System; + using System.Reflection; /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// A strongly-typed resource class, for looking up localized strings, etc. /// // This class was auto-generated by the StronglyTypedResourceBuilder // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class BatchErrorMessages { + public class BatchErrorMessages { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal BatchErrorMessages() { } /// - /// Returns the cached ResourceManager instance used by this class. + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + public static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Batch.BatchErrorMessages", typeof(BatchErrorMessages).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Azure.Batch.BatchErrorMessages", typeof(BatchErrorMessages).GetTypeInfo().Assembly); resourceMan = temp; } return resourceMan; @@ -47,11 +46,11 @@ internal BatchErrorMessages() { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { + public static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -61,225 +60,225 @@ internal BatchErrorMessages() { } /// - /// Looks up a localized string similar to Addition of a task failed with unexpected status code. Details: {0}. + /// Looks up a localized string similar to Addition of a task failed with unexpected status code. Details: {0}. /// - internal static string AddTaskCollectionTerminated { + public static string AddTaskCollectionTerminated { get { return ResourceManager.GetString("AddTaskCollectionTerminated", resourceCulture); } } /// - /// Looks up a localized string similar to Task {0} reported AddTaskResultAction.UnretryableFailure. + /// Looks up a localized string similar to Task {0} reported AddTaskResultAction.UnretryableFailure. /// - internal static string AddTaskResultActionUnretryableFailure { + public static string AddTaskResultActionUnretryableFailure { get { return ResourceManager.GetString("AddTaskResultActionUnretryableFailure", resourceCulture); } } /// - /// Looks up a localized string similar to An attempt was made to use an instance of BatchClient that is in the closed state. No further calls to the Batch Service can be made with that instance. This can happen if the instance was explicitly closed or if the BatchClient.Dispose() method was called.. + /// Looks up a localized string similar to An attempt was made to use an instance of BatchClient that is in the closed state. No further calls to the Batch Service can be made with that instance. This can happen if the instance was explicitly closed or if the BatchClient.Dispose() method was called.. /// - internal static string BatchClientIsClosed { + public static string BatchClientIsClosed { get { return ResourceManager.GetString("BatchClientIsClosed", resourceCulture); } } /// - /// Looks up a localized string similar to This BatchRequest has started executing and can no longer be modified.. + /// Looks up a localized string similar to This BatchRequest has started executing and can no longer be modified.. /// - internal static string BatchRequestCannotBeModified { + public static string BatchRequestCannotBeModified { get { return ResourceManager.GetString("BatchRequestCannotBeModified", resourceCulture); } } /// - /// Looks up a localized string similar to A value of null cannot be specified when invoking the CommitChanges operation.. + /// Looks up a localized string similar to A value of null cannot be specified when invoking the CommitChanges operation.. /// - internal static string CannotPatchNullValue { + public static string CannotPatchNullValue { get { return ResourceManager.GetString("CannotPatchNullValue", resourceCulture); } } /// - /// Looks up a localized string similar to {0} can only be run once.. + /// Looks up a localized string similar to {0} can only be run once.. /// - internal static string CanOnlyBeRunOnceFailure { + public static string CanOnlyBeRunOnceFailure { get { return ResourceManager.GetString("CanOnlyBeRunOnceFailure", resourceCulture); } } /// - /// Looks up a localized string similar to Items contained in collection must not be null. + /// Looks up a localized string similar to Items contained in collection must not be null. /// - internal static string CollectionMustNotContainNull { + public static string CollectionMustNotContainNull { get { return ResourceManager.GetString("CollectionMustNotContainNull", resourceCulture); } } /// - /// Looks up a localized string similar to Must have at least one behavior of type {0}. + /// Looks up a localized string similar to Must have at least one behavior of type {0}. /// - internal static string GeneralBehaviorMissing { + public static string GeneralBehaviorMissing { get { return ResourceManager.GetString("GeneralBehaviorMissing", resourceCulture); } } /// - /// Looks up a localized string similar to This object is in an invalid state. Write access is not allowed.. + /// Looks up a localized string similar to This object is in an invalid state. Write access is not allowed.. /// - internal static string GeneralObjectInInvalidState { + public static string GeneralObjectInInvalidState { get { return ResourceManager.GetString("GeneralObjectInInvalidState", resourceCulture); } } /// - /// Looks up a localized string similar to Simultaneous Commit operators are forbidden.. + /// Looks up a localized string similar to Simultaneous Commit operators are forbidden.. /// - internal static string GeneralSimultaneousCommitsForbidden { + public static string GeneralSimultaneousCommitsForbidden { get { return ResourceManager.GetString("GeneralSimultaneousCommitsForbidden", resourceCulture); } } /// - /// Looks up a localized string similar to Incorrect type returned.. + /// Looks up a localized string similar to Incorrect type returned.. /// - internal static string IncorrectTypeReturned { + public static string IncorrectTypeReturned { get { return ResourceManager.GetString("IncorrectTypeReturned", resourceCulture); } } /// - /// Looks up a localized string similar to Monitor requires all instances to have the same server-side parent.. + /// Looks up a localized string similar to Monitor requires all instances to have the same server-side parent.. /// - internal static string MonitorInstancesMustHaveSameServerSideParent { + public static string MonitorInstancesMustHaveSameServerSideParent { get { return ResourceManager.GetString("MonitorInstancesMustHaveSameServerSideParent", resourceCulture); } } /// - /// Looks up a localized string similar to One or more requests to the Azure Batch service failed.. + /// Looks up a localized string similar to One or more requests to the Azure Batch service failed.. /// - internal static string MultipleParallelRequestsHitUnexpectedErrors { + public static string MultipleParallelRequestsHitUnexpectedErrors { get { return ResourceManager.GetString("MultipleParallelRequestsHitUnexpectedErrors", resourceCulture); } } /// - /// Looks up a localized string similar to Timed out waiting for resources after {0}.. + /// Looks up a localized string similar to Timed out waiting for resources after {0}.. /// - internal static string ODataMonitorTimedOut { + public static string ODataMonitorTimedOut { get { return ResourceManager.GetString("ODataMonitorTimedOut", resourceCulture); } } /// - /// Looks up a localized string similar to This operation is forbidden on bound objects.. + /// Looks up a localized string similar to This operation is forbidden on bound objects.. /// - internal static string OperationForbiddenOnBoundObjects { + public static string OperationForbiddenOnBoundObjects { get { return ResourceManager.GetString("OperationForbiddenOnBoundObjects", resourceCulture); } } /// - /// Looks up a localized string similar to This operation is forbidden on unbound objects.. + /// Looks up a localized string similar to This operation is forbidden on unbound objects.. /// - internal static string OperationForbiddenOnUnboundObjects { + public static string OperationForbiddenOnUnboundObjects { get { return ResourceManager.GetString("OperationForbiddenOnUnboundObjects", resourceCulture); } } /// - /// Looks up a localized string similar to The property {0} cannot be read while the object is in the {1} state.. + /// Looks up a localized string similar to The property {0} cannot be read while the object is in the {1} state.. /// - internal static string PropertiesReadAccessViolation { + public static string PropertiesReadAccessViolation { get { return ResourceManager.GetString("PropertiesReadAccessViolation", resourceCulture); } } /// - /// Looks up a localized string similar to The property {0} cannot be modified while the object is in the {1} state.. + /// Looks up a localized string similar to The property {0} cannot be modified while the object is in the {1} state.. /// - internal static string PropertiesWriteAccessViolation { + public static string PropertiesWriteAccessViolation { get { return ResourceManager.GetString("PropertiesWriteAccessViolation", resourceCulture); } } /// - /// Looks up a localized string similar to End task id must be greater than or equal to the start task id.. + /// Looks up a localized string similar to End task id must be greater than or equal to the start task id.. /// - internal static string TaskIdRangeCannotHaveEndLessThanStart { + public static string TaskIdRangeCannotHaveEndLessThanStart { get { return ResourceManager.GetString("TaskIdRangeCannotHaveEndLessThanStart", resourceCulture); } } /// - /// Looks up a localized string similar to End task id must be greater or equal to 0.. + /// Looks up a localized string similar to End task id must be greater or equal to 0.. /// - internal static string TaskIdRangeCannotHaveNegativeEnd { + public static string TaskIdRangeCannotHaveNegativeEnd { get { return ResourceManager.GetString("TaskIdRangeCannotHaveNegativeEnd", resourceCulture); } } /// - /// Looks up a localized string similar to First task id must be greater or equal to 0.. + /// Looks up a localized string similar to First task id must be greater or equal to 0.. /// - internal static string TaskIdRangeCannotHaveNegativeStart { + public static string TaskIdRangeCannotHaveNegativeStart { get { return ResourceManager.GetString("TaskIdRangeCannotHaveNegativeStart", resourceCulture); } } /// - /// Looks up a localized string similar to Type {0} does not support an expand clause.. + /// Looks up a localized string similar to Type {0} does not support an expand clause.. /// - internal static string TypeDoesNotSupportExpandClause { + public static string TypeDoesNotSupportExpandClause { get { return ResourceManager.GetString("TypeDoesNotSupportExpandClause", resourceCulture); } } /// - /// Looks up a localized string similar to Type {0} does not support a filter clause.. + /// Looks up a localized string similar to Type {0} does not support a filter clause.. /// - internal static string TypeDoesNotSupportFilterClause { + public static string TypeDoesNotSupportFilterClause { get { return ResourceManager.GetString("TypeDoesNotSupportFilterClause", resourceCulture); } } /// - /// Looks up a localized string similar to Type {0} does not support a select clause.. + /// Looks up a localized string similar to Type {0} does not support a select clause.. /// - internal static string TypeDoesNotSupportSelectClause { + public static string TypeDoesNotSupportSelectClause { get { return ResourceManager.GetString("TypeDoesNotSupportSelectClause", resourceCulture); } } /// - /// Looks up a localized string similar to Unknown AddTaskResultAction value: {0}. + /// Looks up a localized string similar to Unknown AddTaskResultAction value: {0}. /// - internal static string UnknownAddTaskResultAction { + public static string UnknownAddTaskResultAction { get { return ResourceManager.GetString("UnknownAddTaskResultAction", resourceCulture); } diff --git a/src/Batch/Client/Src/BatchErrorMessages.resx b/src/Batch/Client/Src/Azure.Batch/BatchErrorMessages.resx similarity index 100% rename from src/Batch/Client/Src/BatchErrorMessages.resx rename to src/Batch/Client/Src/Azure.Batch/BatchErrorMessages.resx diff --git a/src/Batch/Client/Src/BatchRequestTimeout.cs b/src/Batch/Client/Src/Azure.Batch/BatchRequestTimeout.cs similarity index 100% rename from src/Batch/Client/Src/BatchRequestTimeout.cs rename to src/Batch/Client/Src/Azure.Batch/BatchRequestTimeout.cs diff --git a/src/Batch/Client/Src/BehaviorManager.cs b/src/Batch/Client/Src/Azure.Batch/BehaviorManager.cs similarity index 100% rename from src/Batch/Client/Src/BehaviorManager.cs rename to src/Batch/Client/Src/Azure.Batch/BehaviorManager.cs diff --git a/src/Batch/Client/Src/BindingState.cs b/src/Batch/Client/Src/Azure.Batch/BindingState.cs similarity index 100% rename from src/Batch/Client/Src/BindingState.cs rename to src/Batch/Client/Src/Azure.Batch/BindingState.cs diff --git a/src/Batch/Client/Src/Certificate.cs b/src/Batch/Client/Src/Azure.Batch/Certificate.cs similarity index 94% rename from src/Batch/Client/Src/Certificate.cs rename to src/Batch/Client/Src/Azure.Batch/Certificate.cs index 1533c7f794af..7af4c32697c8 100644 --- a/src/Batch/Client/Src/Certificate.cs +++ b/src/Batch/Client/Src/Azure.Batch/Certificate.cs @@ -66,10 +66,8 @@ internal Certificate(BatchClient parentBatchClient, Models.CertificateAddParamet /// This is a blocking operation. For a non-blocking equivalent, see . public void Commit(IEnumerable additionalBehaviors = null) { - using (Task asyncTask = CommitAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CommitAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -119,10 +117,8 @@ public void Commit(IEnumerable additionalBehaviors = null) /// public void Delete(IEnumerable additionalBehaviors = null) { - using (Task asyncTask = DeleteAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -163,10 +159,8 @@ public void Delete(IEnumerable additionalBehaviors = null) /// public void CancelDelete(IEnumerable additionalBehaviors = null) { - using (Task asyncTask = CancelDeleteAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CancelDeleteAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion Certificate @@ -206,10 +200,8 @@ public void CancelDelete(IEnumerable additionalBehaviors = /// A collection of instances that are applied to the Batch service request after the . public void Refresh(DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (Task asynctask = RefreshAsync(detailLevel, additionalBehaviors)) - { - asynctask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asynctask = RefreshAsync(detailLevel, additionalBehaviors); + asynctask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion IRefreshable diff --git a/src/Batch/Client/Src/CertificateOperations.cs b/src/Batch/Client/Src/Azure.Batch/CertificateOperations.cs similarity index 96% rename from src/Batch/Client/Src/CertificateOperations.cs rename to src/Batch/Client/Src/Azure.Batch/CertificateOperations.cs index e53e28be0a3b..4db0bdf2903d 100644 --- a/src/Batch/Client/Src/CertificateOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/CertificateOperations.cs @@ -125,12 +125,10 @@ public async Task GetCertificateAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public Certificate GetCertificate(string thumbprintAlgorithm, string thumbprint, DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = GetCertificateAsync(thumbprintAlgorithm, thumbprint, detailLevel, additionalBehaviors)) - { - Certificate omCert = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = GetCertificateAsync(thumbprintAlgorithm, thumbprint, detailLevel, additionalBehaviors); + Certificate omCert = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return omCert; - } + return omCert; } /// @@ -230,8 +228,7 @@ private Models.CertificateAddParameter GetCertificateInfo(string cerFileName) private Models.CertificateAddParameter GetCertificateInfo(byte[] rawData) { - var certificate = new X509Certificate2(); - certificate.Import(rawData); + var certificate = new X509Certificate2(rawData); Models.CertificateAddParameter cert = CreateAddCertificateEntity(rawData, certificate); @@ -335,10 +332,8 @@ public async Task DeleteCertificateAsync( /// public void DeleteCertificate(string thumbprintAlgorithm, string thumbprint, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = DeleteCertificateAsync(thumbprintAlgorithm, thumbprint, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteCertificateAsync(thumbprintAlgorithm, thumbprint, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -388,10 +383,8 @@ public async Task CancelDeleteCertificateAsync( /// public void CancelDeleteCertificate(string thumbprintAlgorithm, string thumbprint, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = CancelDeleteCertificateAsync(thumbprintAlgorithm, thumbprint, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CancelDeleteCertificateAsync(thumbprintAlgorithm, thumbprint, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion CertificateOperations diff --git a/src/Batch/Client/Src/CertificateReference.cs b/src/Batch/Client/Src/Azure.Batch/CertificateReference.cs similarity index 100% rename from src/Batch/Client/Src/CertificateReference.cs rename to src/Batch/Client/Src/Azure.Batch/CertificateReference.cs diff --git a/src/Batch/Client/Src/ClientRequestIdProvider.cs b/src/Batch/Client/Src/Azure.Batch/ClientRequestIdProvider.cs similarity index 100% rename from src/Batch/Client/Src/ClientRequestIdProvider.cs rename to src/Batch/Client/Src/Azure.Batch/ClientRequestIdProvider.cs diff --git a/src/Batch/Client/Src/CloudJob.cs b/src/Batch/Client/Src/Azure.Batch/CloudJob.cs similarity index 93% rename from src/Batch/Client/Src/CloudJob.cs rename to src/Batch/Client/Src/Azure.Batch/CloudJob.cs index 79a7c7b3017f..83b51f8a7e14 100644 --- a/src/Batch/Client/Src/CloudJob.cs +++ b/src/Batch/Client/Src/Azure.Batch/CloudJob.cs @@ -92,10 +92,8 @@ public async System.Threading.Tasks.Task CommitAsync( /// public void Commit(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = CommitAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CommitAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -165,10 +163,8 @@ public async Task CommitChangesAsync( /// public void CommitChanges(IEnumerable additionalBehaviors = null) { - using (Task asyncTask = this.CommitChangesAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.CommitChangesAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -227,10 +223,8 @@ public ConcurrentDictionary AddTask(CloudTask taskTo ConcurrentDictionary allFileStagingArtifacts = new ConcurrentDictionary(); - using (System.Threading.Tasks.Task asyncTask = AddTaskAsync(taskToAdd, allFileStagingArtifacts, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = AddTaskAsync(taskToAdd, allFileStagingArtifacts, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); return allFileStagingArtifacts; } @@ -326,10 +320,8 @@ public void AddTask( { UtilitiesInternal.ThrowOnUnbound(this.propertyContainer.BindingState); - using (System.Threading.Tasks.Task asyncTask = this.AddTaskAsync(tasksToAdd, parallelOptions, fileStagingArtifacts, timeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.AddTaskAsync(tasksToAdd, parallelOptions, fileStagingArtifacts, timeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -374,12 +366,10 @@ public async System.Threading.Tasks.Task GetTaskAsync( // craft the behavior manager for this call BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors, detailLevel); - using (System.Threading.Tasks.Task asyncTask = this.parentBatchClient.JobOperations.GetTaskAsyncImpl(this.Id, taskId, bhMgr, cancellationToken)) - { - CloudTask theTask = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); + Task asyncTask = this.parentBatchClient.JobOperations.GetTaskAsyncImpl(this.Id, taskId, bhMgr, cancellationToken); + CloudTask theTask = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); - return theTask; - } + return theTask; } /// @@ -395,12 +385,10 @@ public CloudTask GetTask( DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetTaskAsync(taskId, detailLevel, additionalBehaviors)) - { - CloudTask cloudTask = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = GetTaskAsync(taskId, detailLevel, additionalBehaviors); + CloudTask cloudTask = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return cloudTask; - } + return cloudTask; } /// @@ -431,10 +419,8 @@ public CloudTask GetTask( /// This is a blocking operation. For a non-blocking equivalent, see . public void Enable(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EnableAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = EnableAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -470,10 +456,8 @@ public System.Threading.Tasks.Task DisableAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public void Disable(Common.DisableJobOption disableJobOption, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DisableAsync(disableJobOption, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DisableAsync(disableJobOption, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -509,10 +493,8 @@ public System.Threading.Tasks.Task TerminateAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public void Terminate(string terminateReason = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = TerminateAsync(terminateReason, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = TerminateAsync(terminateReason, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -551,10 +533,8 @@ public void Terminate(string terminateReason = null, IEnumerable public void Delete(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DeleteAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -594,10 +574,8 @@ public async System.Threading.Tasks.Task RefreshAsync( /// A collection of instances that are applied to the Batch service request after the . public void Refresh(DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion // CloudJob diff --git a/src/Batch/Client/Src/CloudJobSchedule.cs b/src/Batch/Client/Src/Azure.Batch/CloudJobSchedule.cs similarity index 94% rename from src/Batch/Client/Src/CloudJobSchedule.cs rename to src/Batch/Client/Src/Azure.Batch/CloudJobSchedule.cs index 7259dd62bd16..994b1e7222e4 100644 --- a/src/Batch/Client/Src/CloudJobSchedule.cs +++ b/src/Batch/Client/Src/Azure.Batch/CloudJobSchedule.cs @@ -16,6 +16,7 @@ { using System.Collections.Generic; using System.Threading; + using System.Threading.Tasks; using Microsoft.Rest.Azure; using Models = Microsoft.Azure.Batch.Protocol.Models; @@ -86,10 +87,8 @@ public async System.Threading.Tasks.Task CommitAsync( /// public void Commit(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = CommitAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CommitAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -154,10 +153,8 @@ public async System.Threading.Tasks.Task CommitChangesAsync( /// public void CommitChanges(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.CommitChangesAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.CommitChangesAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } @@ -194,10 +191,8 @@ public void CommitChanges(IEnumerable additionalBehaviors = /// public void Enable(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EnableAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = EnableAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -234,10 +229,8 @@ public void Enable(IEnumerable additionalBehaviors = null) /// public void Disable(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DisableAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DisableAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -276,10 +269,8 @@ public void Disable(IEnumerable additionalBehaviors = null) /// public void Delete(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DeleteAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -320,7 +311,7 @@ public async System.Threading.Tasks.Task TerminateAsync( /// public void Terminate(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = TerminateAsync(additionalBehaviors)) + Task asyncTask = TerminateAsync(additionalBehaviors); { asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } @@ -386,10 +377,8 @@ public async System.Threading.Tasks.Task RefreshAsync( /// A collection of instances that are applied to the Batch service request after the . public void Refresh(DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion IRefreshable diff --git a/src/Batch/Client/Src/CloudPool.cs b/src/Batch/Client/Src/Azure.Batch/CloudPool.cs similarity index 93% rename from src/Batch/Client/Src/CloudPool.cs rename to src/Batch/Client/Src/Azure.Batch/CloudPool.cs index 9c8827dce400..63024db9815b 100644 --- a/src/Batch/Client/Src/CloudPool.cs +++ b/src/Batch/Client/Src/Azure.Batch/CloudPool.cs @@ -18,6 +18,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading; + using System.Threading.Tasks; using Microsoft.Rest.Azure; using Models = Microsoft.Azure.Batch.Protocol.Models; @@ -44,13 +45,11 @@ public partial class CloudPool : IRefreshable // throw if if this object is unbound UtilitiesInternal.ThrowOnUnbound(this.propertyContainer.BindingState); - using (System.Threading.Tasks.Task asyncDelete = this.parentBatchClient.PoolOperations.DeletePoolAsync( - this.Id, + Task asyncDelete = this.parentBatchClient.PoolOperations.DeletePoolAsync( + this.Id, additionalBehaviors: additionalBehaviors, - cancellationToken: cancellationToken)) - { - await asyncDelete.ConfigureAwait(continueOnCapturedContext: false); - } + cancellationToken: cancellationToken); + await asyncDelete.ConfigureAwait(continueOnCapturedContext: false); } /// @@ -64,12 +63,10 @@ public partial class CloudPool : IRefreshable /// A collection of instances that are applied to the Batch service request after the . public void Delete(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DeleteAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } - + /// /// Commits this to the Azure Batch service. /// @@ -131,10 +128,8 @@ public async System.Threading.Tasks.Task CommitAsync( /// public void Commit(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = CommitAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CommitAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -203,10 +198,8 @@ public async System.Threading.Tasks.Task CommitChangesAsync( /// public void CommitChanges(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.CommitChangesAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.CommitChangesAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -276,10 +269,8 @@ public void Resize( Common.ComputeNodeDeallocationOption? deallocationOption = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = ResizeAsync(targetDedicated, resizeTimeout, deallocationOption, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = ResizeAsync(targetDedicated, resizeTimeout, deallocationOption, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } @@ -327,10 +318,8 @@ public System.Threading.Tasks.Task StopResizeAsync( /// public void StopResize(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = StopResizeAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = StopResizeAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -389,11 +378,10 @@ public System.Threading.Tasks.Task GetComputeNodeAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public ComputeNode GetComputeNode(string computeNodeId, DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetComputeNodeAsync(computeNodeId, detailLevel, additionalBehaviors)) - { - ComputeNode result = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return result; - } + Task asyncTask = GetComputeNodeAsync(computeNodeId, detailLevel, additionalBehaviors); + + ComputeNode result = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + return result; } /// @@ -442,10 +430,8 @@ public void EnableAutoScale( TimeSpan? autoscaleEvaluationInterval = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EnableAutoScaleAsync(autoscaleFormula, autoscaleEvaluationInterval, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = EnableAutoScaleAsync(autoscaleFormula, autoscaleEvaluationInterval, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -479,10 +465,8 @@ public void EnableAutoScale( /// public void DisableAutoScale(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DisableAutoScaleAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DisableAutoScaleAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -530,12 +514,10 @@ public async System.Threading.Tasks.Task EvaluateAutoScaleAsync( /// public AutoScaleRun EvaluateAutoScale(string autoscaleFormula, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EvaluateAutoScaleAsync(autoscaleFormula, additionalBehaviors)) - { - AutoScaleRun autoScaleRun = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = EvaluateAutoScaleAsync(autoscaleFormula, additionalBehaviors); + AutoScaleRun autoScaleRun = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return autoScaleRun; - } + return autoScaleRun; } /// @@ -589,10 +571,8 @@ public void RemoveFromPool( TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RemoveFromPoolAsync(computeNodeId, deallocationOption, resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(computeNodeId, deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -644,10 +624,8 @@ public void RemoveFromPool( TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RemoveFromPoolAsync(computeNodeIds, deallocationOption, resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(computeNodeIds, deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -707,10 +685,8 @@ public void RemoveFromPool( TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RemoveFromPoolAsync(computeNode, deallocationOption, resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(computeNode, deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -758,16 +734,14 @@ public async System.Threading.Tasks.Task RemoveFromPoolAsync( /// This is a blocking operation. For a non-blocking equivalent, see . /// public void RemoveFromPool( - IEnumerable computeNodes, + IEnumerable computeNodes, Common.ComputeNodeDeallocationOption? deallocationOption = null, TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RemoveFromPoolAsync(computeNodes, deallocationOption, resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(computeNodes, deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -811,10 +785,8 @@ public void RemoveFromPool( /// public void ChangeOSVersion(string targetOSVersion, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = ChangeOSVersionAsync(targetOSVersion, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = ChangeOSVersionAsync(targetOSVersion, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } @@ -858,10 +830,8 @@ public async System.Threading.Tasks.Task RefreshAsync( /// A collection of instances that are applied to the Batch service request after the . public void Refresh(DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } diff --git a/src/Batch/Client/Src/CloudTask.cs b/src/Batch/Client/Src/Azure.Batch/CloudTask.cs similarity index 93% rename from src/Batch/Client/Src/CloudTask.cs rename to src/Batch/Client/Src/Azure.Batch/CloudTask.cs index 1fcaa76255f4..e76d9c23b3e5 100644 --- a/src/Batch/Client/Src/CloudTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/CloudTask.cs @@ -104,10 +104,8 @@ public ConcurrentDictionary StageFiles() { ConcurrentDictionary allFileStagingArtifacts = new ConcurrentDictionary(); - using (System.Threading.Tasks.Task asyncTask = StageFilesAsync(allFileStagingArtifacts)) - { - asyncTask.WaitAndUnaggregateException(); - } + Task asyncTask = StageFilesAsync(allFileStagingArtifacts); + asyncTask.WaitAndUnaggregateException(); return allFileStagingArtifacts; } @@ -198,10 +196,8 @@ public IPagedEnumerable ListSubtasks(DetailLevel detailLevel /// public void Commit(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = CommitAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CommitAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -234,10 +230,8 @@ public void Commit(IEnumerable additionalBehaviors = null) /// This is a blocking operation. For a non-blocking equivalent, see . public void Terminate(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = TerminateAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = TerminateAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } @@ -271,10 +265,8 @@ public void Terminate(IEnumerable additionalBehaviors = nul /// This is a blocking operation. For a non-blocking equivalent, see . public void Delete(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DeleteAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -329,10 +321,8 @@ public void Delete(IEnumerable additionalBehaviors = null) /// public void Reactivate(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = ReactivateAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = ReactivateAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -369,12 +359,10 @@ public System.Threading.Tasks.Task GetNodeFileAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public NodeFile GetNodeFile(string filePath, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.GetNodeFileAsync(filePath, additionalBehaviors)) - { - NodeFile file = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = this.GetNodeFileAsync(filePath, additionalBehaviors); + NodeFile file = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return file; - } + return file; } #region IRefreshable @@ -421,10 +409,8 @@ public void Refresh( DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion IRefreshable diff --git a/src/Batch/Client/Src/Common/BatchErrorCodeStrings.cs b/src/Batch/Client/Src/Azure.Batch/Common/BatchErrorCodeStrings.cs similarity index 100% rename from src/Batch/Client/Src/Common/BatchErrorCodeStrings.cs rename to src/Batch/Client/Src/Azure.Batch/Common/BatchErrorCodeStrings.cs diff --git a/src/Batch/Client/Src/Common/BatchException.cs b/src/Batch/Client/Src/Azure.Batch/Common/BatchException.cs similarity index 100% rename from src/Batch/Client/Src/Common/BatchException.cs rename to src/Batch/Client/Src/Azure.Batch/Common/BatchException.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/AccessScope.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AccessScope.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/AccessScope.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AccessScope.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/AddTaskStatus.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AddTaskStatus.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/AddTaskStatus.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AddTaskStatus.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/AllocationState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AllocationState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/AllocationState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AllocationState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/AutoUserScope.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AutoUserScope.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/AutoUserScope.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AutoUserScope.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/CachingType.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CachingType.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/CachingType.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CachingType.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/CertStoreLocation.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertStoreLocation.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/CertStoreLocation.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertStoreLocation.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/CertificateFormat.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateFormat.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/CertificateFormat.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateFormat.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/CertificateState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/CertificateState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/CertificateVisibility.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateVisibility.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/CertificateVisibility.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateVisibility.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/ComputeNodeDeallocationOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeDeallocationOption.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/ComputeNodeDeallocationOption.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeDeallocationOption.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/ComputeNodeFillType.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeFillType.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/ComputeNodeFillType.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeFillType.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/ComputeNodeRebootOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeRebootOption.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/ComputeNodeRebootOption.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeRebootOption.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/ComputeNodeReimageOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeReimageOption.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/ComputeNodeReimageOption.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeReimageOption.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/ComputeNodeState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/ComputeNodeState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/DependencyAction.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DependencyAction.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/DependencyAction.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DependencyAction.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/DisableComputeNodeSchedulingOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableComputeNodeSchedulingOption.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/DisableComputeNodeSchedulingOption.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableComputeNodeSchedulingOption.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/DisableJobOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableJobOption.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/DisableJobOption.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableJobOption.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/ElevationLevel.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ElevationLevel.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/ElevationLevel.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ElevationLevel.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/JobAction.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobAction.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/JobAction.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobAction.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/JobPreparationTaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobPreparationTaskState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/JobPreparationTaskState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobPreparationTaskState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/JobReleaseTaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobReleaseTaskState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/JobReleaseTaskState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobReleaseTaskState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/JobScheduleState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobScheduleState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/JobScheduleState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobScheduleState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/JobState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/JobState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/OSType.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OSType.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/OSType.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OSType.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/OnAllTasksComplete.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnAllTasksComplete.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/OnAllTasksComplete.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnAllTasksComplete.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/OnTaskFailure.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnTaskFailure.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/OnTaskFailure.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnTaskFailure.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/PoolLifetimeOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolLifetimeOption.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/PoolLifetimeOption.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolLifetimeOption.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/PoolState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/PoolState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/SchedulingErrorCategory.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingErrorCategory.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/SchedulingErrorCategory.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingErrorCategory.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/SchedulingState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/SchedulingState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/StartTaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/StartTaskState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/StartTaskState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/StartTaskState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/SubtaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SubtaskState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/SubtaskState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SubtaskState.cs diff --git a/src/Batch/Client/Src/Common/Enumerations/TaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/TaskState.cs similarity index 100% rename from src/Batch/Client/Src/Common/Enumerations/TaskState.cs rename to src/Batch/Client/Src/Azure.Batch/Common/Enumerations/TaskState.cs diff --git a/src/Batch/Client/Src/Common/ExponentialRetry.cs b/src/Batch/Client/Src/Azure.Batch/Common/ExponentialRetry.cs similarity index 100% rename from src/Batch/Client/Src/Common/ExponentialRetry.cs rename to src/Batch/Client/Src/Azure.Batch/Common/ExponentialRetry.cs diff --git a/src/Batch/Client/Src/Common/IRetryPolicy.cs b/src/Batch/Client/Src/Azure.Batch/Common/IRetryPolicy.cs similarity index 100% rename from src/Batch/Client/Src/Common/IRetryPolicy.cs rename to src/Batch/Client/Src/Azure.Batch/Common/IRetryPolicy.cs diff --git a/src/Batch/Client/Src/Common/LinearRetry.cs b/src/Batch/Client/Src/Azure.Batch/Common/LinearRetry.cs similarity index 100% rename from src/Batch/Client/Src/Common/LinearRetry.cs rename to src/Batch/Client/Src/Azure.Batch/Common/LinearRetry.cs diff --git a/src/Batch/Client/Src/Common/NoRetry.cs b/src/Batch/Client/Src/Azure.Batch/Common/NoRetry.cs similarity index 100% rename from src/Batch/Client/Src/Common/NoRetry.cs rename to src/Batch/Client/Src/Azure.Batch/Common/NoRetry.cs diff --git a/src/Batch/Client/Src/Common/OperationContext.cs b/src/Batch/Client/Src/Azure.Batch/Common/OperationContext.cs similarity index 100% rename from src/Batch/Client/Src/Common/OperationContext.cs rename to src/Batch/Client/Src/Azure.Batch/Common/OperationContext.cs diff --git a/src/Batch/Client/Src/Common/RequestInformation.cs b/src/Batch/Client/Src/Azure.Batch/Common/RequestInformation.cs similarity index 100% rename from src/Batch/Client/Src/Common/RequestInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Common/RequestInformation.cs diff --git a/src/Batch/Client/Src/Common/RequestResult.cs b/src/Batch/Client/Src/Azure.Batch/Common/RequestResult.cs similarity index 100% rename from src/Batch/Client/Src/Common/RequestResult.cs rename to src/Batch/Client/Src/Azure.Batch/Common/RequestResult.cs diff --git a/src/Batch/Client/Src/Common/RetryDecision.cs b/src/Batch/Client/Src/Azure.Batch/Common/RetryDecision.cs similarity index 100% rename from src/Batch/Client/Src/Common/RetryDecision.cs rename to src/Batch/Client/Src/Azure.Batch/Common/RetryDecision.cs diff --git a/src/Batch/Client/Src/Common/RetryPolicyCommon.cs b/src/Batch/Client/Src/Azure.Batch/Common/RetryPolicyCommon.cs similarity index 100% rename from src/Batch/Client/Src/Common/RetryPolicyCommon.cs rename to src/Batch/Client/Src/Azure.Batch/Common/RetryPolicyCommon.cs diff --git a/src/Batch/Client/Src/ComputeNode.cs b/src/Batch/Client/Src/Azure.Batch/ComputeNode.cs similarity index 90% rename from src/Batch/Client/Src/ComputeNode.cs rename to src/Batch/Client/Src/Azure.Batch/ComputeNode.cs index d22bbe2fd6a6..88600ba4a901 100644 --- a/src/Batch/Client/Src/ComputeNode.cs +++ b/src/Batch/Client/Src/Azure.Batch/ComputeNode.cs @@ -69,10 +69,8 @@ public Task DeleteComputeNodeUserAsync( public void DeleteComputeNodeUser(string userName, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = DeleteComputeNodeUserAsync(userName, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteComputeNodeUserAsync(userName, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -99,10 +97,8 @@ public void DeleteComputeNodeUser(string userName, IEnumerableA collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public void GetRDPFile(Stream rdpStream, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = GetRDPFileAsync(rdpStream, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = GetRDPFileAsync(rdpStream, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -132,10 +128,8 @@ public Task GetRDPFileAsync( /// A collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public void GetRDPFile(string rdpFileNameToCreate, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = GetRDPFileAsync(rdpFileNameToCreate, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = GetRDPFileAsync(rdpFileNameToCreate, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -176,12 +170,10 @@ public void GetRDPFile(string rdpFileNameToCreate, IEnumerable public RemoteLoginSettings GetRemoteLoginSettings(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetRemoteLoginSettingsAsync( additionalBehaviors)) - { - RemoteLoginSettings rls = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = GetRemoteLoginSettingsAsync(additionalBehaviors); + RemoteLoginSettings rls = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return rls; - } + return rls; } /// @@ -216,10 +208,8 @@ public Task RemoveFromPoolAsync( /// A collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public void RemoveFromPool(Common.ComputeNodeDeallocationOption? deallocationOption = null, TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = RemoveFromPoolAsync(deallocationOption, resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -249,10 +239,8 @@ public Task RebootAsync( /// A collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public void Reboot(Common.ComputeNodeRebootOption? rebootOption = null, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = RebootAsync(rebootOption, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RebootAsync(rebootOption, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -282,10 +270,8 @@ public Task ReimageAsync( /// A collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public void Reimage(Common.ComputeNodeReimageOption? reimageOption = null, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = ReimageAsync(reimageOption, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = ReimageAsync(reimageOption, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -316,10 +302,8 @@ public System.Threading.Tasks.Task GetNodeFileAsync( /// A bound object. public NodeFile GetNodeFile(string filePath, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = this.GetNodeFileAsync(filePath, additionalBehaviors)) - { - return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.GetNodeFileAsync(filePath, additionalBehaviors); + return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -362,10 +346,8 @@ public System.Threading.Tasks.Task EnableSchedulingAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public void EnableScheduling(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EnableSchedulingAsync(additionalBehaviors, CancellationToken.None)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = EnableSchedulingAsync(additionalBehaviors, CancellationToken.None); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -396,10 +378,8 @@ public void DisableScheduling( Common.DisableComputeNodeSchedulingOption? disableComputeNodeSchedulingOption, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DisableSchedulingAsync(disableComputeNodeSchedulingOption, additionalBehaviors, CancellationToken.None)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DisableSchedulingAsync(disableComputeNodeSchedulingOption, additionalBehaviors, CancellationToken.None); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion ComputeNode @@ -436,10 +416,8 @@ public void DisableScheduling( /// A collection of instances that are applied to the Batch service request after the . public void Refresh(DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion diff --git a/src/Batch/Client/Src/ComputeNodeFile.cs b/src/Batch/Client/Src/Azure.Batch/ComputeNodeFile.cs similarity index 95% rename from src/Batch/Client/Src/ComputeNodeFile.cs rename to src/Batch/Client/Src/Azure.Batch/ComputeNodeFile.cs index 447f05bf29c6..82d1a001e0ec 100644 --- a/src/Batch/Client/Src/ComputeNodeFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/ComputeNodeFile.cs @@ -110,10 +110,8 @@ public override async System.Threading.Tasks.Task RefreshAsync( public override void Refresh(DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion diff --git a/src/Batch/Client/Src/ComputeNodeUser.cs b/src/Batch/Client/Src/Azure.Batch/ComputeNodeUser.cs similarity index 93% rename from src/Batch/Client/Src/ComputeNodeUser.cs rename to src/Batch/Client/Src/Azure.Batch/ComputeNodeUser.cs index 8b3ab53e0fcf..eee78284f22e 100644 --- a/src/Batch/Client/Src/ComputeNodeUser.cs +++ b/src/Batch/Client/Src/Azure.Batch/ComputeNodeUser.cs @@ -95,10 +95,8 @@ public Task CommitAsync( /// A collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public void Commit(ComputeNodeUserCommitSemantics addOrUpdate = ComputeNodeUserCommitSemantics.AddUser, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = CommitAsync(addOrUpdate, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CommitAsync(addOrUpdate, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -123,10 +121,8 @@ public void Commit(ComputeNodeUserCommitSemantics addOrUpdate = ComputeNodeUserC /// A collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public void Delete(IEnumerable additionalBehaviors = null) { - using (Task asyncTask = DeleteAsync(additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteAsync(additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } } } diff --git a/src/Batch/Client/Src/ConcurrentChangeTrackedList.cs b/src/Batch/Client/Src/Azure.Batch/ConcurrentChangeTrackedList.cs similarity index 99% rename from src/Batch/Client/Src/ConcurrentChangeTrackedList.cs rename to src/Batch/Client/Src/Azure.Batch/ConcurrentChangeTrackedList.cs index 1869d7717e12..95d260154e46 100644 --- a/src/Batch/Client/Src/ConcurrentChangeTrackedList.cs +++ b/src/Batch/Client/Src/Azure.Batch/ConcurrentChangeTrackedList.cs @@ -16,7 +16,6 @@ using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; -using System.Data; namespace Microsoft.Azure.Batch { diff --git a/src/Batch/Client/Src/Constants.cs b/src/Batch/Client/Src/Azure.Batch/Constants.cs similarity index 100% rename from src/Batch/Client/Src/Constants.cs rename to src/Batch/Client/Src/Azure.Batch/Constants.cs diff --git a/src/Batch/Client/Src/DetailLevel.cs b/src/Batch/Client/Src/Azure.Batch/DetailLevel.cs similarity index 100% rename from src/Batch/Client/Src/DetailLevel.cs rename to src/Batch/Client/Src/Azure.Batch/DetailLevel.cs diff --git a/src/Batch/Client/Src/FileStaging/Constants.cs b/src/Batch/Client/Src/Azure.Batch/FileStaging/Constants.cs similarity index 100% rename from src/Batch/Client/Src/FileStaging/Constants.cs rename to src/Batch/Client/Src/Azure.Batch/FileStaging/Constants.cs diff --git a/src/Batch/Client/Src/FileStaging/FileStagingUtils.cs b/src/Batch/Client/Src/Azure.Batch/FileStaging/FileStagingUtils.cs similarity index 97% rename from src/Batch/Client/Src/FileStaging/FileStagingUtils.cs rename to src/Batch/Client/Src/Azure.Batch/FileStaging/FileStagingUtils.cs index a205f48bd87d..9d6fdcaa7b4f 100644 --- a/src/Batch/Client/Src/FileStaging/FileStagingUtils.cs +++ b/src/Batch/Client/Src/Azure.Batch/FileStaging/FileStagingUtils.cs @@ -58,10 +58,8 @@ private static Dictionary> BucketizeFileStaging internal static async Task StageFilesAsync(List filesToStage, ConcurrentDictionary allFileStagingArtifacts) { - using (Task asyncTask = StageFilesAsync(filesToStage, allFileStagingArtifacts, string.Empty)) - { - await asyncTask.ConfigureAwait(continueOnCapturedContext: false); - } + Task asyncTask = StageFilesAsync(filesToStage, allFileStagingArtifacts, string.Empty); + await asyncTask.ConfigureAwait(continueOnCapturedContext: false); } internal static async Task StageFilesAsync(List filesToStage, ConcurrentDictionary allFileStagingArtifacts, string namingFragment) diff --git a/src/Batch/Client/Src/FileStaging/IFileStagingProvider.cs b/src/Batch/Client/Src/Azure.Batch/FileStaging/IFileStagingProvider.cs similarity index 100% rename from src/Batch/Client/Src/FileStaging/IFileStagingProvider.cs rename to src/Batch/Client/Src/Azure.Batch/FileStaging/IFileStagingProvider.cs diff --git a/src/Batch/Client/Src/Generated/AddTaskResult.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AddTaskResult.cs similarity index 100% rename from src/Batch/Client/Src/Generated/AddTaskResult.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/AddTaskResult.cs diff --git a/src/Batch/Client/Src/Generated/AffinityInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AffinityInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/AffinityInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/AffinityInformation.cs diff --git a/src/Batch/Client/Src/Generated/ApplicationPackageReference.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationPackageReference.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ApplicationPackageReference.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ApplicationPackageReference.cs diff --git a/src/Batch/Client/Src/Generated/ApplicationSummary.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationSummary.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ApplicationSummary.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ApplicationSummary.cs diff --git a/src/Batch/Client/Src/Generated/AuthenticationTokenSettings.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AuthenticationTokenSettings.cs similarity index 100% rename from src/Batch/Client/Src/Generated/AuthenticationTokenSettings.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/AuthenticationTokenSettings.cs diff --git a/src/Batch/Client/Src/Generated/AutoPoolSpecification.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AutoPoolSpecification.cs similarity index 100% rename from src/Batch/Client/Src/Generated/AutoPoolSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/AutoPoolSpecification.cs diff --git a/src/Batch/Client/Src/Generated/AutoScaleRun.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRun.cs similarity index 100% rename from src/Batch/Client/Src/Generated/AutoScaleRun.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRun.cs diff --git a/src/Batch/Client/Src/Generated/AutoScaleRunError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRunError.cs similarity index 100% rename from src/Batch/Client/Src/Generated/AutoScaleRunError.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRunError.cs diff --git a/src/Batch/Client/Src/Generated/AutoUserSpecification.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AutoUserSpecification.cs similarity index 100% rename from src/Batch/Client/Src/Generated/AutoUserSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/AutoUserSpecification.cs diff --git a/src/Batch/Client/Src/Generated/BatchError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/BatchError.cs similarity index 100% rename from src/Batch/Client/Src/Generated/BatchError.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/BatchError.cs diff --git a/src/Batch/Client/Src/Generated/BatchErrorDetail.cs b/src/Batch/Client/Src/Azure.Batch/Generated/BatchErrorDetail.cs similarity index 100% rename from src/Batch/Client/Src/Generated/BatchErrorDetail.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/BatchErrorDetail.cs diff --git a/src/Batch/Client/Src/Generated/Certificate.cs b/src/Batch/Client/Src/Azure.Batch/Generated/Certificate.cs similarity index 100% rename from src/Batch/Client/Src/Generated/Certificate.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/Certificate.cs diff --git a/src/Batch/Client/Src/Generated/CertificateReference.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CertificateReference.cs similarity index 100% rename from src/Batch/Client/Src/Generated/CertificateReference.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/CertificateReference.cs diff --git a/src/Batch/Client/Src/Generated/CloudJob.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudJob.cs similarity index 100% rename from src/Batch/Client/Src/Generated/CloudJob.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/CloudJob.cs diff --git a/src/Batch/Client/Src/Generated/CloudJobSchedule.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudJobSchedule.cs similarity index 100% rename from src/Batch/Client/Src/Generated/CloudJobSchedule.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/CloudJobSchedule.cs diff --git a/src/Batch/Client/Src/Generated/CloudPool.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudPool.cs similarity index 100% rename from src/Batch/Client/Src/Generated/CloudPool.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/CloudPool.cs diff --git a/src/Batch/Client/Src/Generated/CloudServiceConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudServiceConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/Generated/CloudServiceConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/CloudServiceConfiguration.cs diff --git a/src/Batch/Client/Src/Generated/CloudTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudTask.cs similarity index 100% rename from src/Batch/Client/Src/Generated/CloudTask.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/CloudTask.cs diff --git a/src/Batch/Client/Src/Generated/ComputeNode.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNode.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ComputeNode.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ComputeNode.cs diff --git a/src/Batch/Client/Src/Generated/ComputeNodeError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeError.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ComputeNodeError.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeError.cs diff --git a/src/Batch/Client/Src/Generated/ComputeNodeInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ComputeNodeInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeInformation.cs diff --git a/src/Batch/Client/Src/Generated/ComputeNodeUser.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeUser.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ComputeNodeUser.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeUser.cs diff --git a/src/Batch/Client/Src/Generated/DeleteCertificateError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/DeleteCertificateError.cs similarity index 100% rename from src/Batch/Client/Src/Generated/DeleteCertificateError.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/DeleteCertificateError.cs diff --git a/src/Batch/Client/Src/Generated/EnvironmentSetting.cs b/src/Batch/Client/Src/Azure.Batch/Generated/EnvironmentSetting.cs similarity index 100% rename from src/Batch/Client/Src/Generated/EnvironmentSetting.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/EnvironmentSetting.cs diff --git a/src/Batch/Client/Src/Generated/ErrorMessage.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ErrorMessage.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ErrorMessage.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ErrorMessage.cs diff --git a/src/Batch/Client/Src/Generated/ExitCodeMapping.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeMapping.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ExitCodeMapping.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeMapping.cs diff --git a/src/Batch/Client/Src/Generated/ExitCodeRangeMapping.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeRangeMapping.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ExitCodeRangeMapping.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeRangeMapping.cs diff --git a/src/Batch/Client/Src/Generated/ExitConditions.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ExitConditions.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ExitConditions.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ExitConditions.cs diff --git a/src/Batch/Client/Src/Generated/ExitOptions.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ExitOptions.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ExitOptions.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ExitOptions.cs diff --git a/src/Batch/Client/Src/Generated/FileProperties.cs b/src/Batch/Client/Src/Azure.Batch/Generated/FileProperties.cs similarity index 100% rename from src/Batch/Client/Src/Generated/FileProperties.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/FileProperties.cs diff --git a/src/Batch/Client/Src/Generated/ImageReference.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ImageReference.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ImageReference.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ImageReference.cs diff --git a/src/Batch/Client/Src/Generated/JobConstraints.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobConstraints.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobConstraints.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobConstraints.cs diff --git a/src/Batch/Client/Src/Generated/JobExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobExecutionInformation.cs diff --git a/src/Batch/Client/Src/Generated/JobManagerTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobManagerTask.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobManagerTask.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobManagerTask.cs diff --git a/src/Batch/Client/Src/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs diff --git a/src/Batch/Client/Src/Generated/JobPreparationTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTask.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobPreparationTask.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTask.cs diff --git a/src/Batch/Client/Src/Generated/JobPreparationTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTaskExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobPreparationTaskExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTaskExecutionInformation.cs diff --git a/src/Batch/Client/Src/Generated/JobReleaseTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTask.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobReleaseTask.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTask.cs diff --git a/src/Batch/Client/Src/Generated/JobReleaseTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTaskExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobReleaseTaskExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTaskExecutionInformation.cs diff --git a/src/Batch/Client/Src/Generated/JobScheduleExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobScheduleExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleExecutionInformation.cs diff --git a/src/Batch/Client/Src/Generated/JobScheduleStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleStatistics.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobScheduleStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleStatistics.cs diff --git a/src/Batch/Client/Src/Generated/JobSchedulingError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobSchedulingError.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobSchedulingError.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobSchedulingError.cs diff --git a/src/Batch/Client/Src/Generated/JobSpecification.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobSpecification.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobSpecification.cs diff --git a/src/Batch/Client/Src/Generated/JobStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobStatistics.cs similarity index 100% rename from src/Batch/Client/Src/Generated/JobStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/JobStatistics.cs diff --git a/src/Batch/Client/Src/Generated/MetadataItem.cs b/src/Batch/Client/Src/Azure.Batch/Generated/MetadataItem.cs similarity index 100% rename from src/Batch/Client/Src/Generated/MetadataItem.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/MetadataItem.cs diff --git a/src/Batch/Client/Src/Generated/MultiInstanceSettings.cs b/src/Batch/Client/Src/Azure.Batch/Generated/MultiInstanceSettings.cs similarity index 100% rename from src/Batch/Client/Src/Generated/MultiInstanceSettings.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/MultiInstanceSettings.cs diff --git a/src/Batch/Client/Src/Generated/NameValuePair.cs b/src/Batch/Client/Src/Azure.Batch/Generated/NameValuePair.cs similarity index 100% rename from src/Batch/Client/Src/Generated/NameValuePair.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/NameValuePair.cs diff --git a/src/Batch/Client/Src/Generated/NetworkConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/Generated/NetworkConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/Generated/NetworkConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/NetworkConfiguration.cs diff --git a/src/Batch/Client/Src/Generated/NodeAgentSku.cs b/src/Batch/Client/Src/Azure.Batch/Generated/NodeAgentSku.cs similarity index 100% rename from src/Batch/Client/Src/Generated/NodeAgentSku.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/NodeAgentSku.cs diff --git a/src/Batch/Client/Src/Generated/OSDisk.cs b/src/Batch/Client/Src/Azure.Batch/Generated/OSDisk.cs similarity index 100% rename from src/Batch/Client/Src/Generated/OSDisk.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/OSDisk.cs diff --git a/src/Batch/Client/Src/Generated/PoolInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/PoolInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/PoolInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/PoolInformation.cs diff --git a/src/Batch/Client/Src/Generated/PoolSpecification.cs b/src/Batch/Client/Src/Azure.Batch/Generated/PoolSpecification.cs similarity index 100% rename from src/Batch/Client/Src/Generated/PoolSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/PoolSpecification.cs diff --git a/src/Batch/Client/Src/Generated/PoolStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/PoolStatistics.cs similarity index 100% rename from src/Batch/Client/Src/Generated/PoolStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/PoolStatistics.cs diff --git a/src/Batch/Client/Src/Generated/PoolUsageMetrics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/PoolUsageMetrics.cs similarity index 100% rename from src/Batch/Client/Src/Generated/PoolUsageMetrics.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/PoolUsageMetrics.cs diff --git a/src/Batch/Client/Src/Generated/RecentJob.cs b/src/Batch/Client/Src/Azure.Batch/Generated/RecentJob.cs similarity index 100% rename from src/Batch/Client/Src/Generated/RecentJob.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/RecentJob.cs diff --git a/src/Batch/Client/Src/Generated/RemoteLoginSettings.cs b/src/Batch/Client/Src/Azure.Batch/Generated/RemoteLoginSettings.cs similarity index 100% rename from src/Batch/Client/Src/Generated/RemoteLoginSettings.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/RemoteLoginSettings.cs diff --git a/src/Batch/Client/Src/Generated/ResizeError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ResizeError.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ResizeError.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ResizeError.cs diff --git a/src/Batch/Client/Src/Generated/ResourceFile.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ResourceFile.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ResourceFile.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ResourceFile.cs diff --git a/src/Batch/Client/Src/Generated/ResourceStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ResourceStatistics.cs similarity index 100% rename from src/Batch/Client/Src/Generated/ResourceStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/ResourceStatistics.cs diff --git a/src/Batch/Client/Src/Generated/Schedule.cs b/src/Batch/Client/Src/Azure.Batch/Generated/Schedule.cs similarity index 100% rename from src/Batch/Client/Src/Generated/Schedule.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/Schedule.cs diff --git a/src/Batch/Client/Src/Generated/StartTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/StartTask.cs similarity index 100% rename from src/Batch/Client/Src/Generated/StartTask.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/StartTask.cs diff --git a/src/Batch/Client/Src/Generated/StartTaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/StartTaskInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/StartTaskInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/StartTaskInformation.cs diff --git a/src/Batch/Client/Src/Generated/SubtaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/SubtaskInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/SubtaskInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/SubtaskInformation.cs diff --git a/src/Batch/Client/Src/Generated/TaskConstraints.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskConstraints.cs similarity index 100% rename from src/Batch/Client/Src/Generated/TaskConstraints.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/TaskConstraints.cs diff --git a/src/Batch/Client/Src/Generated/TaskDependencies.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskDependencies.cs similarity index 100% rename from src/Batch/Client/Src/Generated/TaskDependencies.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/TaskDependencies.cs diff --git a/src/Batch/Client/Src/Generated/TaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/TaskExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/TaskExecutionInformation.cs diff --git a/src/Batch/Client/Src/Generated/TaskIdRange.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskIdRange.cs similarity index 100% rename from src/Batch/Client/Src/Generated/TaskIdRange.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/TaskIdRange.cs diff --git a/src/Batch/Client/Src/Generated/TaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskInformation.cs similarity index 100% rename from src/Batch/Client/Src/Generated/TaskInformation.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/TaskInformation.cs diff --git a/src/Batch/Client/Src/Generated/TaskSchedulingError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingError.cs similarity index 100% rename from src/Batch/Client/Src/Generated/TaskSchedulingError.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingError.cs diff --git a/src/Batch/Client/Src/Generated/TaskSchedulingPolicy.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingPolicy.cs similarity index 100% rename from src/Batch/Client/Src/Generated/TaskSchedulingPolicy.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingPolicy.cs diff --git a/src/Batch/Client/Src/Generated/TaskStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskStatistics.cs similarity index 100% rename from src/Batch/Client/Src/Generated/TaskStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/TaskStatistics.cs diff --git a/src/Batch/Client/Src/Generated/UsageStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/UsageStatistics.cs similarity index 100% rename from src/Batch/Client/Src/Generated/UsageStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/UsageStatistics.cs diff --git a/src/Batch/Client/Src/Generated/UserAccount.cs b/src/Batch/Client/Src/Azure.Batch/Generated/UserAccount.cs similarity index 100% rename from src/Batch/Client/Src/Generated/UserAccount.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/UserAccount.cs diff --git a/src/Batch/Client/Src/Generated/UserIdentity.cs b/src/Batch/Client/Src/Azure.Batch/Generated/UserIdentity.cs similarity index 100% rename from src/Batch/Client/Src/Generated/UserIdentity.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/UserIdentity.cs diff --git a/src/Batch/Client/Src/Generated/VirtualMachineConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/Generated/VirtualMachineConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/Generated/VirtualMachineConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/VirtualMachineConfiguration.cs diff --git a/src/Batch/Client/Src/Generated/WindowsConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/Generated/WindowsConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/Generated/WindowsConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/Generated/WindowsConfiguration.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/AccountOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/AccountOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/AccountOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/AccountOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/ApplicationOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/ApplicationOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/ApplicationOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/ApplicationOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/BatchServiceClient.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/BatchServiceClient.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/BatchServiceClient.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/BatchServiceClient.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/CertificateOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/CertificateOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/CertificateOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/CertificateOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/ComputeNodeOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/ComputeNodeOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/ComputeNodeOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/ComputeNodeOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/FileOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/FileOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/FileOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/FileOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/IAccountOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IAccountOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/IAccountOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IAccountOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/IApplicationOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IApplicationOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/IApplicationOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IApplicationOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/IBatchServiceClient.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IBatchServiceClient.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/IBatchServiceClient.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IBatchServiceClient.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/ICertificateOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ICertificateOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/ICertificateOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ICertificateOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/IComputeNodeOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IComputeNodeOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/IComputeNodeOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IComputeNodeOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/IFileOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IFileOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/IFileOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IFileOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/IJobOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/IJobOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/IJobScheduleOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobScheduleOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/IJobScheduleOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobScheduleOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/IPoolOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IPoolOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/IPoolOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IPoolOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/ITaskOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ITaskOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/ITaskOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ITaskOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/JobOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/JobOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/JobOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/JobOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/JobScheduleOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/JobScheduleOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/JobScheduleOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/JobScheduleOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AccessScope.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccessScope.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AccessScope.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccessScope.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AffinityInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AffinityInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AffinityInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AffinityInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AllocationState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AllocationState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AllocationState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AllocationState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationGetHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationGetOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationListHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationListNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationListOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationPackageReference.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationPackageReference.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationPackageReference.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationPackageReference.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationSummary.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationSummary.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ApplicationSummary.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationSummary.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AuthenticationTokenSettings.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AuthenticationTokenSettings.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AuthenticationTokenSettings.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AuthenticationTokenSettings.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AutoPoolSpecification.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoPoolSpecification.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AutoPoolSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoPoolSpecification.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AutoScaleRun.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRun.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AutoScaleRun.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRun.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AutoScaleRunError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRunError.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AutoScaleRunError.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRunError.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AutoUserScope.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserScope.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AutoUserScope.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserScope.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/AutoUserSpecification.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserSpecification.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/AutoUserSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserSpecification.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/BatchError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchError.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/BatchError.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchError.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/BatchErrorDetail.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorDetail.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/BatchErrorDetail.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorDetail.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/BatchErrorException.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorException.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/BatchErrorException.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorException.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CachingType.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CachingType.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CachingType.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CachingType.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/Certificate.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Certificate.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/Certificate.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Certificate.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateAddHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateAddOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateAddParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateDeleteHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateDeleteOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateFormat.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateFormat.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateFormat.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateFormat.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateGetHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateGetOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateListHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateListNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateListOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateReference.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateReference.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateReference.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateReference.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateStoreLocation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateStoreLocation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateStoreLocation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateStoreLocation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CertificateVisibility.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateVisibility.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CertificateVisibility.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateVisibility.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CloudJob.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJob.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CloudJob.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJob.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CloudJobSchedule.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJobSchedule.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CloudJobSchedule.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJobSchedule.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CloudPool.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudPool.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CloudPool.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudPool.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CloudServiceConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudServiceConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CloudServiceConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudServiceConfiguration.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CloudTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTask.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CloudTask.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTask.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNode.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNode.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNode.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNode.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeError.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeError.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeError.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeFillType.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeFillType.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeFillType.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeFillType.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeListHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeListOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeRebootOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOption.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeRebootOption.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOption.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeReimageOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOption.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeReimageOption.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOption.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeUser.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUser.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ComputeNodeUser.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUser.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/DeleteCertificateError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DeleteCertificateError.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/DeleteCertificateError.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DeleteCertificateError.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/DependencyAction.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DependencyAction.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/DependencyAction.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DependencyAction.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/DisableJobOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableJobOption.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/DisableJobOption.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableJobOption.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ElevationLevel.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ElevationLevel.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ElevationLevel.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ElevationLevel.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/EnvironmentSetting.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/EnvironmentSetting.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/EnvironmentSetting.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/EnvironmentSetting.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ErrorMessage.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ErrorMessage.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ErrorMessage.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ErrorMessage.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ExitCodeMapping.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeMapping.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ExitCodeMapping.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeMapping.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ExitCodeRangeMapping.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeRangeMapping.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ExitCodeRangeMapping.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeRangeMapping.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ExitConditions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitConditions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ExitConditions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitConditions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ExitOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ExitOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileGetFromTaskOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileGetFromTaskOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromTaskHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromTaskHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromTaskOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileListFromTaskOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/FileProperties.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileProperties.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/FileProperties.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileProperties.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ImageReference.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ImageReference.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ImageReference.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ImageReference.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobAction.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAction.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobAction.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAction.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobAddHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobAddOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobAddParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobConstraints.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobConstraints.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobConstraints.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobConstraints.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobDeleteHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobDeleteOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobDisableHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobDisableHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobDisableOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobDisableOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobDisableParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobDisableParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobEnableHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobEnableHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobEnableOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobEnableOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobExecutionInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobGetHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobGetOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobManagerTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobManagerTask.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobManagerTask.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobManagerTask.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobPatchHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobPatchHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobPatchOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobPatchOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobPatchParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobPatchParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobPreparationTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTask.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobPreparationTask.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTask.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobPreparationTaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobPreparationTaskState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobReleaseTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTask.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobReleaseTask.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTask.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobReleaseTaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobReleaseTaskState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleAddHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleAddOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleAddParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleDisableOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleDisableOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleEnableOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleEnableOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleExistsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleExistsOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleGetHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleGetOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleListHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleListNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleListOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobSchedulePatchOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobSchedulePatchOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobSchedulePatchParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobSchedulePatchParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleStatistics.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleStatistics.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobSchedulingError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulingError.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobSchedulingError.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulingError.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobSpecification.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSpecification.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSpecification.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobStatistics.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobStatistics.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobTerminateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobTerminateHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobTerminateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobTerminateOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobTerminateParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobTerminateParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobUpdateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobUpdateHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobUpdateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobUpdateOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/JobUpdateParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/JobUpdateParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/MetadataItem.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MetadataItem.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/MetadataItem.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MetadataItem.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/MultiInstanceSettings.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MultiInstanceSettings.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/MultiInstanceSettings.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MultiInstanceSettings.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NameValuePair.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NameValuePair.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NameValuePair.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NameValuePair.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NetworkConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NetworkConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NetworkConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NetworkConfiguration.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NodeAgentSku.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeAgentSku.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NodeAgentSku.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeAgentSku.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NodeFile.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeFile.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NodeFile.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeFile.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NodeRebootParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRebootParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NodeRebootParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRebootParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NodeReimageParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeReimageParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NodeReimageParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeReimageParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NodeRemoveParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRemoveParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NodeRemoveParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRemoveParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/NodeUpdateUserParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeUpdateUserParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/NodeUpdateUserParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeUpdateUserParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/OSDisk.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSDisk.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/OSDisk.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSDisk.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/OSType.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSType.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/OSType.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSType.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/OnAllTasksComplete.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnAllTasksComplete.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/OnAllTasksComplete.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnAllTasksComplete.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/OnTaskFailure.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnTaskFailure.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/OnTaskFailure.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnTaskFailure.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/Page.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Page.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/Page.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Page.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolAddHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolAddOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolAddParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolDeleteHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolDeleteOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolExistsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolExistsHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolExistsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolExistsOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolGetHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolGetOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolLifetimeOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolLifetimeOption.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolLifetimeOption.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolLifetimeOption.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolListHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolListNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolListOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolPatchHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolPatchHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolPatchOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolPatchOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolPatchParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolPatchParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolResizeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolResizeHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolResizeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolResizeOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolResizeParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolResizeParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolSpecification.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolSpecification.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolSpecification.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStatistics.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStatistics.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolStopResizeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolStopResizeHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolStopResizeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolStopResizeOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/PoolUsageMetrics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUsageMetrics.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/PoolUsageMetrics.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUsageMetrics.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/RecentJob.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/RecentJob.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/RecentJob.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/RecentJob.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ResizeError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResizeError.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ResizeError.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResizeError.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ResourceFile.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceFile.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ResourceFile.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceFile.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/ResourceStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceStatistics.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/ResourceStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceStatistics.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/Schedule.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Schedule.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/Schedule.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Schedule.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/SchedulingErrorCategory.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingErrorCategory.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/SchedulingErrorCategory.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingErrorCategory.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/SchedulingState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/SchedulingState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/StartTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTask.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/StartTask.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTask.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/StartTaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/StartTaskInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/StartTaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/StartTaskState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/SubtaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/SubtaskInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/SubtaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/SubtaskState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddCollectionOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddCollectionOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddCollectionParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddCollectionParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddCollectionResult.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionResult.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddCollectionResult.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionResult.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddResult.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddResult.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddResult.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddResult.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddStatus.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddStatus.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskAddStatus.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddStatus.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskConstraints.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskConstraints.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskConstraints.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskConstraints.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskDeleteHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskDeleteOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskDependencies.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDependencies.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskDependencies.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDependencies.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskExecutionInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskExecutionInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskExecutionInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskGetHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskGetOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskIdRange.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskIdRange.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskIdRange.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskIdRange.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskInformation.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskInformation.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskInformation.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskListHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListNextOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskListNextOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListNextOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskListOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskListSubtasksOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskListSubtasksOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskReactivateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskReactivateHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskReactivateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskReactivateOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskSchedulingError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingError.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskSchedulingError.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingError.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskSchedulingPolicy.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingPolicy.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskSchedulingPolicy.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingPolicy.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskState.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskState.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskState.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskStatistics.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskStatistics.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskTerminateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskTerminateHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskTerminateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskTerminateOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskUpdateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateHeaders.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskUpdateHeaders.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateHeaders.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskUpdateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateOptions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskUpdateOptions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateOptions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/TaskUpdateParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateParameter.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/TaskUpdateParameter.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateParameter.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/UsageStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UsageStatistics.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/UsageStatistics.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UsageStatistics.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/UserAccount.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserAccount.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/UserAccount.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserAccount.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/UserIdentity.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserIdentity.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/UserIdentity.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserIdentity.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/VirtualMachineConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/VirtualMachineConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/VirtualMachineConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/VirtualMachineConfiguration.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/Models/WindowsConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/WindowsConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/Models/WindowsConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/WindowsConfiguration.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/PoolOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/PoolOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/PoolOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/PoolOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/TaskOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperations.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/TaskOperations.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperations.cs diff --git a/src/Batch/Client/Src/GeneratedProtocol/TaskOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperationsExtensions.cs similarity index 100% rename from src/Batch/Client/Src/GeneratedProtocol/TaskOperationsExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperationsExtensions.cs diff --git a/src/Batch/Client/Src/GetFileRequestByteRange.cs b/src/Batch/Client/Src/Azure.Batch/GetFileRequestByteRange.cs similarity index 100% rename from src/Batch/Client/Src/GetFileRequestByteRange.cs rename to src/Batch/Client/Src/Azure.Batch/GetFileRequestByteRange.cs diff --git a/src/Batch/Client/Src/IFileStagingArtifact.cs b/src/Batch/Client/Src/Azure.Batch/IFileStagingArtifact.cs similarity index 100% rename from src/Batch/Client/Src/IFileStagingArtifact.cs rename to src/Batch/Client/Src/Azure.Batch/IFileStagingArtifact.cs diff --git a/src/Batch/Client/Src/IInheritedBehaviors.cs b/src/Batch/Client/Src/Azure.Batch/IInheritedBehaviors.cs similarity index 100% rename from src/Batch/Client/Src/IInheritedBehaviors.cs rename to src/Batch/Client/Src/Azure.Batch/IInheritedBehaviors.cs diff --git a/src/Batch/Client/Src/IModifiable.cs b/src/Batch/Client/Src/Azure.Batch/IModifiable.cs similarity index 100% rename from src/Batch/Client/Src/IModifiable.cs rename to src/Batch/Client/Src/Azure.Batch/IModifiable.cs diff --git a/src/Batch/Client/Src/IPagedEnumerable.cs b/src/Batch/Client/Src/Azure.Batch/IPagedEnumerable.cs similarity index 100% rename from src/Batch/Client/Src/IPagedEnumerable.cs rename to src/Batch/Client/Src/Azure.Batch/IPagedEnumerable.cs diff --git a/src/Batch/Client/Src/IPagedEnumerator.cs b/src/Batch/Client/Src/Azure.Batch/IPagedEnumerator.cs similarity index 100% rename from src/Batch/Client/Src/IPagedEnumerator.cs rename to src/Batch/Client/Src/Azure.Batch/IPagedEnumerator.cs diff --git a/src/Batch/Client/Src/IPropertyMetadata.cs b/src/Batch/Client/Src/Azure.Batch/IPropertyMetadata.cs similarity index 100% rename from src/Batch/Client/Src/IPropertyMetadata.cs rename to src/Batch/Client/Src/Azure.Batch/IPropertyMetadata.cs diff --git a/src/Batch/Client/Src/IProtocolLayer.cs b/src/Batch/Client/Src/Azure.Batch/IProtocolLayer.cs similarity index 100% rename from src/Batch/Client/Src/IProtocolLayer.cs rename to src/Batch/Client/Src/Azure.Batch/IProtocolLayer.cs diff --git a/src/Batch/Client/Src/IReadOnly.cs b/src/Batch/Client/Src/Azure.Batch/IReadOnly.cs similarity index 100% rename from src/Batch/Client/Src/IReadOnly.cs rename to src/Batch/Client/Src/Azure.Batch/IReadOnly.cs diff --git a/src/Batch/Client/Src/IRefreshable.cs b/src/Batch/Client/Src/Azure.Batch/IRefreshable.cs similarity index 100% rename from src/Batch/Client/Src/IRefreshable.cs rename to src/Batch/Client/Src/Azure.Batch/IRefreshable.cs diff --git a/src/Batch/Client/Src/ITransportObjectProvider.cs b/src/Batch/Client/Src/Azure.Batch/ITransportObjectProvider.cs similarity index 100% rename from src/Batch/Client/Src/ITransportObjectProvider.cs rename to src/Batch/Client/Src/Azure.Batch/ITransportObjectProvider.cs diff --git a/src/Batch/Client/Src/JobManagerTask.cs b/src/Batch/Client/Src/Azure.Batch/JobManagerTask.cs similarity index 100% rename from src/Batch/Client/Src/JobManagerTask.cs rename to src/Batch/Client/Src/Azure.Batch/JobManagerTask.cs diff --git a/src/Batch/Client/Src/JobOperations.cs b/src/Batch/Client/Src/Azure.Batch/JobOperations.cs similarity index 93% rename from src/Batch/Client/Src/JobOperations.cs rename to src/Batch/Client/Src/Azure.Batch/JobOperations.cs index 22fd03a7faf9..f6a447749aa7 100644 --- a/src/Batch/Client/Src/JobOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/JobOperations.cs @@ -183,12 +183,10 @@ public async System.Threading.Tasks.Task GetJobAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public CloudJob GetJob(string jobId, DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetJobAsync( jobId, detailLevel, additionalBehaviors)) - { - CloudJob newJob = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = GetJobAsync(jobId, detailLevel, additionalBehaviors); + CloudJob newJob = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return newJob; - } + return newJob; } /// @@ -217,10 +215,8 @@ public CloudJob GetJob(string jobId, DetailLevel detailLevel = null, IEnumerable /// This is a blocking operation. For a non-blocking equivalent, see . public void EnableJob(string jobId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EnableJobAsync(jobId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = EnableJobAsync(jobId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -255,10 +251,8 @@ public async System.Threading.Tasks.Task DisableJobAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public void DisableJob(string jobId, Common.DisableJobOption disableJobOption, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DisableJobAsync(jobId, disableJobOption, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DisableJobAsync(jobId, disableJobOption, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -293,10 +287,8 @@ public async System.Threading.Tasks.Task TerminateJobAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public void TerminateJob(string jobId, string terminateReason = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = TerminateJobAsync(jobId, terminateReason, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = TerminateJobAsync(jobId, terminateReason, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -333,10 +325,8 @@ public void TerminateJob(string jobId, string terminateReason = null, IEnumerabl /// public void DeleteJob(string jobId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DeleteJobAsync(jobId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteJobAsync(jobId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal IPagedEnumerable ListTasksImpl(string jobId, BehaviorManager bhMgr, DetailLevel detailLevel) @@ -386,19 +376,22 @@ internal async System.Threading.Tasks.Task GetTaskAsyncImpl( BehaviorManager bhMgr, CancellationToken cancellationToken) { - using (System.Threading.Tasks.Task> asyncTask = - ParentBatchClient.ProtocolLayer.GetTask(jobId, taskId, bhMgr, cancellationToken)) - { - AzureOperationResponse response = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); + Task> asyncTask = + this.ParentBatchClient.ProtocolLayer.GetTask( + jobId, + taskId, + bhMgr, + cancellationToken); - // extract protocol task - Models.CloudTask protoTask = response.Body; + AzureOperationResponse response = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); - // bind CloudTask to protocol task - CloudTask newTask = new CloudTask(this.ParentBatchClient, jobId, protoTask, bhMgr.BaseBehaviors); + // extract protocol task + Models.CloudTask protoTask = response.Body; - return newTask; - } + // bind CloudTask to protocol task + CloudTask newTask = new CloudTask(this.ParentBatchClient, jobId, protoTask, bhMgr.BaseBehaviors); + + return newTask; } /// @@ -437,12 +430,10 @@ public System.Threading.Tasks.Task GetTaskAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public CloudTask GetTask(string jobId, string taskId, DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetTaskAsync(jobId, taskId, detailLevel, additionalBehaviors)) - { - CloudTask newTask = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); ; + Task asyncTask = GetTaskAsync(jobId, taskId, detailLevel, additionalBehaviors); + CloudTask newTask = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return newTask; - } + return newTask; } /// @@ -561,10 +552,9 @@ public ConcurrentDictionary AddTask(string jobId, Cl { ConcurrentDictionary artifacts = new ConcurrentDictionary(); - using (System.Threading.Tasks.Task asyncTask = this.AddTaskAsync(jobId, taskToAdd, artifacts, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.AddTaskAsync(jobId, taskToAdd, artifacts, additionalBehaviors); + + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); return artifacts; } @@ -675,10 +665,9 @@ public void TerminateTask( string taskId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = TerminateTaskAsync(jobId, taskId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = TerminateTaskAsync(jobId, taskId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + } /// @@ -716,10 +705,8 @@ public void DeleteTask( string taskId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DeleteTaskAsync(jobId, taskId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteTaskAsync(jobId, taskId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -779,10 +766,8 @@ public void ReactivateTask( string taskId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = ReactivateTaskAsync(jobId, taskId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = ReactivateTaskAsync(jobId, taskId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal async System.Threading.Tasks.Task GetNodeFileAsyncImpl( @@ -847,12 +832,9 @@ public NodeFile GetNodeFile( string filePath, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.GetNodeFileAsync(jobId, taskId, filePath, additionalBehaviors)) - { - NodeFile file = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - - return file; - } + Task asyncTask = this.GetNodeFileAsync(jobId, taskId, filePath, additionalBehaviors); + NodeFile file = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + return file; } /// @@ -913,10 +895,8 @@ public void DeleteNodeFile( bool? recursive = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.DeleteNodeFileAsync(jobId, taskId, filePath, recursive, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.DeleteNodeFileAsync(jobId, taskId, filePath, recursive, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal Task AddTaskAsyncImpl( @@ -1032,16 +1012,15 @@ public void AddTask( TimeSpan? timeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.AddTaskAsync( - jobId, + Task asyncTask = this.AddTaskAsync( + jobId, tasksToAdd, - parallelOptions, + parallelOptions, fileStagingArtifacts, timeout, - additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + additionalBehaviors); + + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -1080,12 +1059,10 @@ public async System.Threading.Tasks.Task GetAllLifetimeStatistics /// This is a blocking operation; for a non-blocking equivalent, see . public JobStatistics GetAllLifetimeStatistics(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.GetAllLifetimeStatisticsAsync(additionalBehaviors)) - { - JobStatistics statistics = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = this.GetAllLifetimeStatisticsAsync(additionalBehaviors); + JobStatistics statistics = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return statistics; - } + return statistics; } /// diff --git a/src/Batch/Client/Src/JobPreparationTask.cs b/src/Batch/Client/Src/Azure.Batch/JobPreparationTask.cs similarity index 100% rename from src/Batch/Client/Src/JobPreparationTask.cs rename to src/Batch/Client/Src/Azure.Batch/JobPreparationTask.cs diff --git a/src/Batch/Client/Src/JobReleaseTask.cs b/src/Batch/Client/Src/Azure.Batch/JobReleaseTask.cs similarity index 100% rename from src/Batch/Client/Src/JobReleaseTask.cs rename to src/Batch/Client/Src/Azure.Batch/JobReleaseTask.cs diff --git a/src/Batch/Client/Src/JobScheduleOperations.cs b/src/Batch/Client/Src/Azure.Batch/JobScheduleOperations.cs similarity index 91% rename from src/Batch/Client/Src/JobScheduleOperations.cs rename to src/Batch/Client/Src/Azure.Batch/JobScheduleOperations.cs index 07babe8e99d3..5a9dfa0d41fd 100644 --- a/src/Batch/Client/Src/JobScheduleOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/JobScheduleOperations.cs @@ -106,16 +106,15 @@ public async System.Threading.Tasks.Task GetJobScheduleAsync( // set up behavior manager BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors, detailLevel); - using (System.Threading.Tasks.Task> asyncTask = - this.ParentBatchClient.ProtocolLayer.GetJobSchedule(jobScheduleId, bhMgr, cancellationToken)) - { - AzureOperationResponse result = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); + Task> asyncTask = + this.ParentBatchClient.ProtocolLayer.GetJobSchedule(jobScheduleId, bhMgr, cancellationToken); - // construct a new object bound to the protocol layer object - CloudJobSchedule newWI = new CloudJobSchedule(this.ParentBatchClient, result.Body, this.CustomBehaviors); + AzureOperationResponse result = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); - return newWI; - } + // construct a new object bound to the protocol layer object + CloudJobSchedule newWI = new CloudJobSchedule(this.ParentBatchClient, result.Body, this.CustomBehaviors); + + return newWI; } /// @@ -128,12 +127,10 @@ public async System.Threading.Tasks.Task GetJobScheduleAsync( /// This is a blocking operation. For a non-blocking equivalent, see . public CloudJobSchedule GetJobSchedule(string jobScheduleId, DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.GetJobScheduleAsync(jobScheduleId, detailLevel, additionalBehaviors)) - { - CloudJobSchedule result = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = this.GetJobScheduleAsync(jobScheduleId, detailLevel, additionalBehaviors); + CloudJobSchedule result = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return result; - } + return result; } /// @@ -196,10 +193,8 @@ public CloudJobSchedule CreateJobSchedule(string jobScheduleId, Schedule schedul /// public void EnableJobSchedule(string jobScheduleId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.EnableJobScheduleAsync(jobScheduleId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.EnableJobScheduleAsync(jobScheduleId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -234,10 +229,8 @@ public void EnableJobSchedule(string jobScheduleId, IEnumerable public void DisableJobSchedule(string jobScheduleId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.DisableJobScheduleAsync(jobScheduleId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.DisableJobScheduleAsync(jobScheduleId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -277,10 +270,8 @@ public async System.Threading.Tasks.Task DeleteJobScheduleAsync( /// public void DeleteJobSchedule(string jobScheduleId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.DeleteJobScheduleAsync(jobScheduleId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.DeleteJobScheduleAsync(jobScheduleId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -320,10 +311,8 @@ public async System.Threading.Tasks.Task TerminateJobScheduleAsync( /// public void TerminateJobSchedule(string jobScheduleId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.TerminateJobScheduleAsync(jobScheduleId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.TerminateJobScheduleAsync(jobScheduleId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal IPagedEnumerable ListJobsImpl(string jobScheduleId, BehaviorManager bhMgr, DetailLevel detailLevel) diff --git a/src/Batch/Client/Src/JobSpecification.cs b/src/Batch/Client/Src/Azure.Batch/JobSpecification.cs similarity index 100% rename from src/Batch/Client/Src/JobSpecification.cs rename to src/Batch/Client/Src/Azure.Batch/JobSpecification.cs diff --git a/src/Batch/Client/Src/NodeFile.cs b/src/Batch/Client/Src/Azure.Batch/NodeFile.cs similarity index 94% rename from src/Batch/Client/Src/NodeFile.cs rename to src/Batch/Client/Src/Azure.Batch/NodeFile.cs index c0db2b277060..13ab84bb326d 100644 --- a/src/Batch/Client/Src/NodeFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/NodeFile.cs @@ -159,13 +159,11 @@ public async Task ReadAsStringAsync( /// A string containing the contents of the file. public string ReadAsString(Encoding encoding = null, GetFileRequestByteRange byteRange = null, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = ReadAsStringAsync(encoding, byteRange, additionalBehaviors)) - { - string readAsString = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = ReadAsStringAsync(encoding, byteRange, additionalBehaviors); + string readAsString = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - // return result - return readAsString; - } + // return result + return readAsString; } /// @@ -189,10 +187,8 @@ public abstract Task CopyToStreamAsync(Stream stream, /// A collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public virtual void CopyToStream(Stream stream, GetFileRequestByteRange byteRange = null, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = CopyToStreamAsync(stream, byteRange, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = CopyToStreamAsync(stream, byteRange, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -219,10 +215,8 @@ public virtual void CopyToStream(Stream stream, GetFileRequestByteRange byteRang /// A collection of BatchClientBehavior instances that are applied after the CustomBehaviors on the current object. public virtual void Delete(bool? recursive = null, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = DeleteAsync(recursive, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteAsync(recursive, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion diff --git a/src/Batch/Client/Src/ODATADetailLevel.cs b/src/Batch/Client/Src/Azure.Batch/ODATADetailLevel.cs similarity index 100% rename from src/Batch/Client/Src/ODATADetailLevel.cs rename to src/Batch/Client/Src/Azure.Batch/ODATADetailLevel.cs diff --git a/src/Batch/Client/Src/ODATAMonitor.cs b/src/Batch/Client/Src/Azure.Batch/ODATAMonitor.cs similarity index 100% rename from src/Batch/Client/Src/ODATAMonitor.cs rename to src/Batch/Client/Src/Azure.Batch/ODATAMonitor.cs diff --git a/src/Batch/Client/Src/OSVersion.cs b/src/Batch/Client/Src/Azure.Batch/OSVersion.cs similarity index 100% rename from src/Batch/Client/Src/OSVersion.cs rename to src/Batch/Client/Src/Azure.Batch/OSVersion.cs diff --git a/src/Batch/Client/Src/PagedEnumerable.cs b/src/Batch/Client/Src/Azure.Batch/PagedEnumerable.cs similarity index 100% rename from src/Batch/Client/Src/PagedEnumerable.cs rename to src/Batch/Client/Src/Azure.Batch/PagedEnumerable.cs diff --git a/src/Batch/Client/Src/PagedEnumerableExtensions.cs b/src/Batch/Client/Src/Azure.Batch/PagedEnumerableExtensions.cs similarity index 100% rename from src/Batch/Client/Src/PagedEnumerableExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/PagedEnumerableExtensions.cs diff --git a/src/Batch/Client/Src/PagedEnumeratorBase.cs b/src/Batch/Client/Src/Azure.Batch/PagedEnumeratorBase.cs similarity index 91% rename from src/Batch/Client/Src/PagedEnumeratorBase.cs rename to src/Batch/Client/Src/Azure.Batch/PagedEnumeratorBase.cs index 5c597291c81d..c1e18cebc756 100644 --- a/src/Batch/Client/Src/PagedEnumeratorBase.cs +++ b/src/Batch/Client/Src/Azure.Batch/PagedEnumeratorBase.cs @@ -73,12 +73,10 @@ internal PagedEnumeratorBase() public bool MoveNext() // for IEnumerator and IEnumerator { - using (System.Threading.Tasks.Task asyncTask = MoveNextAsync()) - { - bool result = asyncTask.WaitAndUnaggregateException(); + Task asyncTask = MoveNextAsync(); + bool result = asyncTask.WaitAndUnaggregateException(); - return result; - } + return result; } public async Task MoveNextAsync(CancellationToken cancellationToken = default(CancellationToken)) @@ -100,7 +98,7 @@ internal PagedEnumeratorBase() return false; } - // at this point we need to call for more data + // at this point we need to call for more data System.Threading.Tasks.Task asyncTask = this.GetNextBatchFromServerAsync(_skipHandler, cancellationToken); // wait for it to complete @@ -124,10 +122,8 @@ internal PagedEnumeratorBase() public void Reset() { - using (Task asyncTask = ResetAsync()) - { - asyncTask.WaitAndUnaggregateException(); - } + Task asyncTask = ResetAsync(); + asyncTask.WaitAndUnaggregateException(); } public Task ResetAsync(CancellationToken cancellationToken = default(CancellationToken)) diff --git a/src/Batch/Client/Src/PoolOperations.cs b/src/Batch/Client/Src/Azure.Batch/PoolOperations.cs similarity index 93% rename from src/Batch/Client/Src/PoolOperations.cs rename to src/Batch/Client/Src/Azure.Batch/PoolOperations.cs index a998e63e70dc..b0b2e3c8bd7d 100644 --- a/src/Batch/Client/Src/PoolOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/PoolOperations.cs @@ -16,6 +16,7 @@ using System.Collections.Generic; using System.Text; using System.Threading; +using System.Threading.Tasks; using System.IO; using Common = Microsoft.Azure.Batch.Common; @@ -143,10 +144,8 @@ public CloudPool GetPool( DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetPoolAsync(poolId, detailLevel, additionalBehaviors)) - { - return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = GetPoolAsync(poolId, detailLevel, additionalBehaviors); + return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal async System.Threading.Tasks.Task DeletePoolAsyncImpl(string poolIdToDelete, BehaviorManager bhMgr, CancellationToken cancellationToken) @@ -193,10 +192,8 @@ public async System.Threading.Tasks.Task DeletePoolAsync( /// public void DeletePool(string poolId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DeletePoolAsync(poolId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeletePoolAsync(poolId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -355,10 +352,8 @@ public void ResizePool( Common.ComputeNodeDeallocationOption? deallocationOption = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = ResizePoolAsync(poolId, targetDedicated, resizeTimeout, deallocationOption, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = ResizePoolAsync(poolId, targetDedicated, resizeTimeout, deallocationOption, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal System.Threading.Tasks.Task StopResizePoolAsyncImpl(string poolId, BehaviorManager bhMgr, CancellationToken cancellationToken) @@ -412,10 +407,8 @@ public System.Threading.Tasks.Task StopResizePoolAsync( /// public void StopResizePool(string poolId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = StopResizePoolAsync(poolId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = StopResizePoolAsync(poolId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } @@ -469,16 +462,14 @@ internal async System.Threading.Tasks.Task GetComputeNodeAsyncImpl( BehaviorManager bhMgr, CancellationToken cancellationToken) { - using (System.Threading.Tasks.Task> asyncTask = - this.ParentBatchClient.ProtocolLayer.GetComputeNode(poolId, computeNodeId, bhMgr, cancellationToken)) - { - AzureOperationResponse result = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); + Task> asyncTask = + this.ParentBatchClient.ProtocolLayer.GetComputeNode(poolId, computeNodeId, bhMgr, cancellationToken); + AzureOperationResponse result = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); - // construct a new object bound to the protocol layer object - ComputeNode newComputeNode = new ComputeNode(this.ParentBatchClient, poolId, result.Body, bhMgr.BaseBehaviors); + // construct a new object bound to the protocol layer object + ComputeNode newComputeNode = new ComputeNode(this.ParentBatchClient, poolId, result.Body, bhMgr.BaseBehaviors); - return newComputeNode; - } + return newComputeNode; } /// @@ -521,10 +512,8 @@ public ComputeNode GetComputeNode( DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetComputeNodeAsync(poolId, computeNodeId, detailLevel, additionalBehaviors)) - { - return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = GetComputeNodeAsync(poolId, computeNodeId, detailLevel, additionalBehaviors); + return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -562,10 +551,8 @@ public void EnableComputeNodeScheduling( string computeNodeId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EnableComputeNodeSchedulingAsync(poolId, computeNodeId, additionalBehaviors, CancellationToken.None)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = EnableComputeNodeSchedulingAsync(poolId, computeNodeId, additionalBehaviors, CancellationToken.None); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -607,10 +594,8 @@ public void DisableComputeNodeScheduling( Common.DisableComputeNodeSchedulingOption? disableComputeNodeSchedulingOption, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DisableComputeNodeSchedulingAsync(poolId, computeNodeId, disableComputeNodeSchedulingOption, additionalBehaviors, CancellationToken.None)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DisableComputeNodeSchedulingAsync(poolId, computeNodeId, disableComputeNodeSchedulingOption, additionalBehaviors, CancellationToken.None); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal async System.Threading.Tasks.Task EnableAutoScaleAsyncImpl( @@ -679,10 +664,8 @@ public void EnableAutoScale( TimeSpan? autoscaleEvaluationInterval = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EnableAutoScaleAsync(poolId, autoscaleFormula, autoscaleEvaluationInterval, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = EnableAutoScaleAsync(poolId, autoscaleFormula, autoscaleEvaluationInterval, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal async System.Threading.Tasks.Task DisableAutoScaleAsyncImpl(string poolId, BehaviorManager bhMgr, CancellationToken cancellationToken) @@ -728,10 +711,8 @@ public async System.Threading.Tasks.Task DisableAutoScaleAsync( /// public void DisableAutoScale(string poolId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DisableAutoScaleAsync(poolId, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DisableAutoScaleAsync(poolId, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal async System.Threading.Tasks.Task EvaluateAutoScaleAsyncImpl( @@ -745,7 +726,7 @@ internal async System.Threading.Tasks.Task EvaluateAutoScaleAsyncI this._parentBatchClient.ProtocolLayer.EvaluateAutoScale(poolId, autoscaleFormula, bhMgr, cancellationToken); var response = await asyncTask.ConfigureAwait(continueOnCapturedContext: false); - + return new AutoScaleRun(response.Body); } @@ -804,10 +785,8 @@ public AutoScaleRun EvaluateAutoScale( string autoscaleFormula, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = EvaluateAutoScaleAsync(poolId, autoscaleFormula, additionalBehaviors)) - { - return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = EvaluateAutoScaleAsync(poolId, autoscaleFormula, additionalBehaviors); + return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -862,10 +841,8 @@ public void RemoveFromPool( TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RemoveFromPoolAsync(poolId, computeNodeId, deallocationOption,resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(poolId, computeNodeId, deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal System.Threading.Tasks.Task RemoveFromPoolAsyncImpl( @@ -946,10 +923,8 @@ public void RemoveFromPool( TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RemoveFromPoolAsync(poolId, computeNodeIds, deallocationOption, resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(poolId, computeNodeIds, deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -1004,10 +979,8 @@ public void RemoveFromPool( TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RemoveFromPoolAsync(poolId, computeNode, deallocationOption, resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(poolId, computeNode, deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal System.Threading.Tasks.Task RemoveFromPoolAsyncImpl( @@ -1095,10 +1068,8 @@ public void RemoveFromPool( TimeSpan? resizeTimeout = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RemoveFromPoolAsync(poolId, computeNodes, deallocationOption, resizeTimeout, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RemoveFromPoolAsync(poolId, computeNodes, deallocationOption, resizeTimeout, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -1163,10 +1134,8 @@ public System.Threading.Tasks.Task DeleteComputeNodeUserAsync( public void DeleteComputeNodeUser(string poolId, string computeNodeId, string userName, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = DeleteComputeNodeUserAsync(poolId, computeNodeId, userName, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = DeleteComputeNodeUserAsync(poolId, computeNodeId, userName, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -1225,10 +1194,8 @@ public System.Threading.Tasks.Task GetRDPFileAsync( public void GetRDPFile(string poolId, string computeNodeId, Stream rdpStream, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetRDPFileAsync(poolId, computeNodeId, rdpStream, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = GetRDPFileAsync(poolId, computeNodeId, rdpStream, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal async System.Threading.Tasks.Task GetRDPFileViaFileNameAsyncImpl( @@ -1246,10 +1213,8 @@ internal async System.Threading.Tasks.Task GetRDPFileViaFileNameAsyncImpl( await asyncTask.ConfigureAwait(continueOnCapturedContext: false); - // stream has rdp contents, flush and close + // stream has rdp contents, flush await rdpStream.FlushAsync().ConfigureAwait(continueOnCapturedContext: false); - - rdpStream.Close(); } } @@ -1306,10 +1271,8 @@ public System.Threading.Tasks.Task GetRDPFileAsync( public void GetRDPFile(string poolId, string computeNodeId, string rdpFileNameToCreate, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetRDPFileAsync(poolId, computeNodeId, rdpFileNameToCreate, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = GetRDPFileAsync(poolId, computeNodeId, rdpFileNameToCreate, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal async System.Threading.Tasks.Task GetRemoteLoginSettingsImpl(string poolId, string computeNodeId, BehaviorManager bhMgr, CancellationToken cancellationToken) @@ -1374,12 +1337,10 @@ public RemoteLoginSettings GetRemoteLoginSettings( string computeNodeId, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = GetRemoteLoginSettingsAsync(poolId, computeNodeId, additionalBehaviors)) - { - RemoteLoginSettings rls = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = GetRemoteLoginSettingsAsync(poolId, computeNodeId, additionalBehaviors); + RemoteLoginSettings rls = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return rls; - } + return rls; } /// @@ -1428,10 +1389,8 @@ public System.Threading.Tasks.Task RebootAsync(string poolId, public void Reboot(string poolId, string computeNodeId, Common.ComputeNodeRebootOption? rebootOption = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RebootAsync(poolId, computeNodeId, rebootOption, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RebootAsync(poolId, computeNodeId, rebootOption, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -1476,10 +1435,8 @@ public System.Threading.Tasks.Task ReimageAsync( public void Reimage(string poolId, string computeNodeId, Common.ComputeNodeReimageOption? reimageOption = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = ReimageAsync(poolId, computeNodeId, reimageOption, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = ReimageAsync(poolId, computeNodeId, reimageOption, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } /// @@ -1531,10 +1488,8 @@ public System.Threading.Tasks.Task ChangeOSVersionAsync( public void ChangeOSVersion(string poolId, string targetOSVersion, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = ChangeOSVersionAsync(poolId, targetOSVersion, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = ChangeOSVersionAsync(poolId, targetOSVersion, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal async System.Threading.Tasks.Task GetNodeFileAsyncImpl( @@ -1601,10 +1556,8 @@ public System.Threading.Tasks.Task GetNodeFileAsync( public NodeFile GetNodeFile(string poolId, string computeNodeId, string filePath, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.GetNodeFileAsync(poolId, computeNodeId, filePath, additionalBehaviors)) - { - return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.GetNodeFileAsync(poolId, computeNodeId, filePath, additionalBehaviors); + return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } internal IPagedEnumerable ListNodeFilesImpl( @@ -1718,10 +1671,8 @@ public void DeleteNodeFile( bool? recursive = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.DeleteNodeFileAsync(poolId, computeNodeId, filePath, recursive, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.DeleteNodeFileAsync(poolId, computeNodeId, filePath, recursive, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } @@ -1757,12 +1708,10 @@ public void DeleteNodeFile( /// This is a blocking operation. For a non-blocking equivalent, see . public PoolStatistics GetAllLifetimeStatistics(IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = this.GetAllLifetimeStatisticsAsync(additionalBehaviors)) - { - PoolStatistics statistics = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + Task asyncTask = this.GetAllLifetimeStatisticsAsync(additionalBehaviors); + PoolStatistics statistics = asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - return statistics; - } + return statistics; } /// diff --git a/src/Batch/Client/Src/PropertyAccessController.cs b/src/Batch/Client/Src/Azure.Batch/PropertyAccessController.cs similarity index 100% rename from src/Batch/Client/Src/PropertyAccessController.cs rename to src/Batch/Client/Src/Azure.Batch/PropertyAccessController.cs diff --git a/src/Batch/Client/Src/PropertyAccessor.cs b/src/Batch/Client/Src/Azure.Batch/PropertyAccessor.cs similarity index 100% rename from src/Batch/Client/Src/PropertyAccessor.cs rename to src/Batch/Client/Src/Azure.Batch/PropertyAccessor.cs diff --git a/src/Batch/Client/Src/PropertyCollection.cs b/src/Batch/Client/Src/Azure.Batch/PropertyCollection.cs similarity index 100% rename from src/Batch/Client/Src/PropertyCollection.cs rename to src/Batch/Client/Src/Azure.Batch/PropertyCollection.cs diff --git a/src/Batch/Client/Src/Protocol/BatchConstants.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchConstants.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/BatchConstants.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/BatchConstants.cs diff --git a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchCredentials.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchCredentials.cs new file mode 100644 index 000000000000..f51a456f2b2f --- /dev/null +++ b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchCredentials.cs @@ -0,0 +1,76 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. + +// + +namespace Microsoft.Azure.Batch.Protocol +{ + using System; + using System.Linq; + using System.Threading.Tasks; + using System.Net.Http; + using System.Threading; + using System.Globalization; + using System.Collections.Generic; + using System.Security.Cryptography; + using System.Text; + using System.Net.Http.Headers; + using Rest; + + /// + /// Base class for credentials used to authenticate a HTTP request to Azure Batch. + /// + public abstract class BatchCredentials : ServiceClientCredentials + { + /// + /// Signs a HTTP request with the current . + /// + /// The HTTP request to be signed. + /// A for the request. + /// A representing the asynchronous signing operation. + public abstract Task SignRequestAsync(HttpRequestMessage httpRequest, CancellationToken cancellationToken); + } + + /// + /// A that adds authentication to outgoing requests using a . + /// + public class BatchAuthenticationDelegatingHandler : DelegatingHandler + { + private readonly BatchCredentials credential; + + /// + /// Initializes a new instance of the class. + /// + /// The to be used for authenticating requests made through this handler. + public BatchAuthenticationDelegatingHandler(BatchCredentials credential) + { + this.credential = credential; + } + + /// + /// Adds authentication to a HTTP request then sends it to the inner handler to send to the server + /// as an asynchronous operation. + /// + /// The HTTP request message to send to the server. + /// A cancellation token to cancel the operation. + /// The response to the HTTP request + protected override async Task SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + { + await credential.SignRequestAsync(request, cancellationToken).ConfigureAwait(false); + + return await base.SendAsync(request, cancellationToken).ConfigureAwait(false); + } + } +} \ No newline at end of file diff --git a/src/Batch/Client/Src/Protocol/BatchRequest.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchRequest.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/BatchRequest.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/BatchRequest.cs diff --git a/src/Batch/Client/Src/Protocol/BatchRequests/NamedBatchRequests.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchRequests/NamedBatchRequests.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/BatchRequests/NamedBatchRequests.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/BatchRequests/NamedBatchRequests.cs diff --git a/src/Batch/Client/Src/Protocol/BatchSharedKeyCredential.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchSharedKeyCredential.cs similarity index 95% rename from src/Batch/Client/Src/Protocol/BatchSharedKeyCredential.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/BatchSharedKeyCredential.cs index 82b2d8200b03..7dec8efd8658 100644 --- a/src/Batch/Client/Src/Protocol/BatchSharedKeyCredential.cs +++ b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchSharedKeyCredential.cs @@ -21,13 +21,13 @@ namespace Microsoft.Azure.Batch.Protocol using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; + using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Security.Cryptography; using System.Text; using System.Threading; using System.Threading.Tasks; - using System.Web; using Microsoft.Azure.Batch.Utils; using Rest; @@ -145,8 +145,14 @@ public override Task ProcessHttpRequestAsync(HttpRequestMessage httpRequest, Can signature.Append('/').Append(AccountName).Append('/').Append(httpRequest.RequestUri.AbsolutePath.TrimStart('/').Replace("%5C", "/").Replace("%2F", "/")); if (!string.IsNullOrEmpty(httpRequest.RequestUri.Query)) { - NameValueCollection queryVariables = HttpUtility.ParseQueryString(httpRequest.RequestUri.Query); +#if !PORTABLE + NameValueCollection queryVariables = System.Web.HttpUtility.ParseQueryString(httpRequest.RequestUri.Query); List queryVariableKeys = new List(queryVariables.AllKeys); +#else + Dictionary queryVariables = Microsoft.AspNetCore.WebUtilities.QueryHelpers.ParseQuery(httpRequest.RequestUri.Query); + List queryVariableKeys = new List(queryVariables.Keys); +#endif + queryVariableKeys.Sort(StringComparer.OrdinalIgnoreCase); foreach (string queryKey in queryVariableKeys) diff --git a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenCredential.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenCredential.cs new file mode 100644 index 000000000000..28da833d8516 --- /dev/null +++ b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenCredential.cs @@ -0,0 +1,74 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. + +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +namespace Microsoft.Azure.Batch.Protocol +{ + using Microsoft.Azure.Batch.Utils; + using Microsoft.Rest; + using System; + using System.Collections.Generic; + using System.Linq; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Threading.Tasks; + + /// + /// BatchCredentials which implement Azure AD auth + /// + internal class BatchTokenCredential : BatchCredentials + { + /// + /// The default authorization scheme. + /// + private const string DefaultAuthorizationScheme = "Bearer"; + + /// + /// Auth token + /// + public string Token { get; private set; } + + /// + /// Constructor + /// + /// The OAuth authentication token. + public BatchTokenCredential(string token) + { + this.Token = token; + } + + /// + /// Sign request + /// + /// The HTTP request to be signed. + /// A for the request. + /// A representing the asynchronous signing operation. + public override Task SignRequestAsync(HttpRequestMessage httpRequest, System.Threading.CancellationToken cancellationToken) + { + if (httpRequest != null) + { + httpRequest.Headers.Authorization = new AuthenticationHeaderValue(DefaultAuthorizationScheme, this.Token); + } + return Async.CompletedTask; + } + } +} diff --git a/src/Batch/Client/Src/Protocol/BatchTokenProvider.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenProvider.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/BatchTokenProvider.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenProvider.cs diff --git a/src/Batch/Client/Src/Protocol/IBatchRequest.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/IBatchRequest.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/IBatchRequest.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/IBatchRequest.cs diff --git a/src/Batch/Client/Src/Protocol/Interceptors.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/Interceptors.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/Interceptors.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/Interceptors.cs diff --git a/src/Batch/Client/Src/Protocol/LogLevel.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/LogLevel.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/LogLevel.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/LogLevel.cs diff --git a/src/Batch/Client/Src/Protocol/Models/IOptions.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/Models/IOptions.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/Models/IOptions.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/Models/IOptions.cs diff --git a/src/Batch/Client/Src/Protocol/Models/ParameterExtensions.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/Models/ParameterExtensions.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/Models/ParameterExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/Models/ParameterExtensions.cs diff --git a/src/Batch/Client/Src/Protocol/Models/ResponseHeaderExtensions.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/Models/ResponseHeaderExtensions.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/Models/ResponseHeaderExtensions.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/Models/ResponseHeaderExtensions.cs diff --git a/src/Batch/Client/Src/Protocol/ResponseInterceptor.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/ResponseInterceptor.cs similarity index 100% rename from src/Batch/Client/Src/Protocol/ResponseInterceptor.cs rename to src/Batch/Client/Src/Azure.Batch/Protocol/ResponseInterceptor.cs diff --git a/src/Batch/Client/Src/ProtocolLayer.cs b/src/Batch/Client/Src/Azure.Batch/ProtocolLayer.cs similarity index 99% rename from src/Batch/Client/Src/ProtocolLayer.cs rename to src/Batch/Client/Src/Azure.Batch/ProtocolLayer.cs index 67416d2c9865..fcb686145d9a 100644 --- a/src/Batch/Client/Src/ProtocolLayer.cs +++ b/src/Batch/Client/Src/Azure.Batch/ProtocolLayer.cs @@ -69,7 +69,7 @@ private ProtocolLayer() internal ProtocolLayer(string baseURL, ServiceClientCredentials credentials) { this._client = new Protocol.BatchServiceClient(new Uri(baseURL), credentials); - this._client.HttpClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(InternalConstants.UserAgentProductName, Assembly.GetExecutingAssembly().GetName().Version.ToString())); + this._client.HttpClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(InternalConstants.UserAgentProductName, typeof(ProtocolLayer).GetTypeInfo().Assembly.GetName().Version.ToString())); this._client.HttpClient.Timeout = Timeout.InfiniteTimeSpan; //Client side timeout will be set per-request this._client.SetRetryPolicy(null); //Set the retry policy to null to turn off inner-client retries @@ -1854,7 +1854,7 @@ private static async Task ProcessAndExecuteBatchRequest(IB private static void ValidateReturnObject(object proxyObj, Type expectedType) { // test that the returned value has the correct type - if (!expectedType.IsInstanceOfType(proxyObj)) + if (!expectedType.GetTypeInfo().IsAssignableFrom(proxyObj.GetType().GetTypeInfo())) { Exception ex = UtilitiesInternal.IncorrectTypeReturned; diff --git a/src/Batch/Client/Src/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt b/src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt similarity index 100% rename from src/Batch/Client/Src/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt rename to src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt diff --git a/src/Batch/Client/Src/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt b/src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt similarity index 100% rename from src/Batch/Client/Src/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt rename to src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt diff --git a/src/Batch/Client/Src/RetryPolicyProvider.cs b/src/Batch/Client/Src/Azure.Batch/RetryPolicyProvider.cs similarity index 100% rename from src/Batch/Client/Src/RetryPolicyProvider.cs rename to src/Batch/Client/Src/Azure.Batch/RetryPolicyProvider.cs diff --git a/src/Batch/Client/Src/StartTask.cs b/src/Batch/Client/Src/Azure.Batch/StartTask.cs similarity index 100% rename from src/Batch/Client/Src/StartTask.cs rename to src/Batch/Client/Src/Azure.Batch/StartTask.cs diff --git a/src/Batch/Client/Src/SynchronousMethodExceptionBehavior.cs b/src/Batch/Client/Src/Azure.Batch/SynchronousMethodExceptionBehavior.cs similarity index 100% rename from src/Batch/Client/Src/SynchronousMethodExceptionBehavior.cs rename to src/Batch/Client/Src/Azure.Batch/SynchronousMethodExceptionBehavior.cs diff --git a/src/Batch/Client/Src/TaskDependencies.cs b/src/Batch/Client/Src/Azure.Batch/TaskDependencies.cs similarity index 100% rename from src/Batch/Client/Src/TaskDependencies.cs rename to src/Batch/Client/Src/Azure.Batch/TaskDependencies.cs diff --git a/src/Batch/Client/Src/TaskFile.cs b/src/Batch/Client/Src/Azure.Batch/TaskFile.cs similarity index 95% rename from src/Batch/Client/Src/TaskFile.cs rename to src/Batch/Client/Src/Azure.Batch/TaskFile.cs index 814d270cb9c3..79537f78ad85 100644 --- a/src/Batch/Client/Src/TaskFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/TaskFile.cs @@ -104,10 +104,8 @@ public override async System.Threading.Tasks.Task CopyToStreamAsync( public override void Refresh(DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null) { - using (System.Threading.Tasks.Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = RefreshAsync(detailLevel, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } #endregion IRefreshable diff --git a/src/Batch/Client/Src/TaskIdRange.cs b/src/Batch/Client/Src/Azure.Batch/TaskIdRange.cs similarity index 100% rename from src/Batch/Client/Src/TaskIdRange.cs rename to src/Batch/Client/Src/Azure.Batch/TaskIdRange.cs diff --git a/src/Batch/Client/Src/TaskStateMonitor.cs b/src/Batch/Client/Src/Azure.Batch/TaskStateMonitor.cs similarity index 97% rename from src/Batch/Client/Src/TaskStateMonitor.cs rename to src/Batch/Client/Src/Azure.Batch/TaskStateMonitor.cs index f21c8d5729cf..1614c3b3dffb 100644 --- a/src/Batch/Client/Src/TaskStateMonitor.cs +++ b/src/Batch/Client/Src/Azure.Batch/TaskStateMonitor.cs @@ -176,10 +176,8 @@ public void WaitAll( ODATAMonitorControl controlParams = null, IEnumerable additionalBehaviors = null) { - using (Task asyncTask = this.WhenAll(tasksToMonitor, desiredState, timeout, controlParams, additionalBehaviors)) - { - asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); - } + Task asyncTask = this.WhenAll(tasksToMonitor, desiredState, timeout, controlParams, additionalBehaviors); + asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } private async Task WhenAllImplAsync( @@ -230,7 +228,7 @@ private async Task WhenAllImplAsync( else { // all instances must have same parent - if (!jobId.Equals(curTask.ParentJobId, StringComparison.InvariantCultureIgnoreCase)) + if (!jobId.Equals(curTask.ParentJobId, StringComparison.OrdinalIgnoreCase)) { Exception ex = UtilitiesInternal.MonitorRequiresConsistentHierarchyChain; diff --git a/src/Batch/Client/Src/UserIdentity.cs b/src/Batch/Client/Src/Azure.Batch/UserIdentity.cs similarity index 100% rename from src/Batch/Client/Src/UserIdentity.cs rename to src/Batch/Client/Src/Azure.Batch/UserIdentity.cs diff --git a/src/Batch/Client/Src/Utilities.cs b/src/Batch/Client/Src/Azure.Batch/Utilities.cs similarity index 100% rename from src/Batch/Client/Src/Utilities.cs rename to src/Batch/Client/Src/Azure.Batch/Utilities.cs diff --git a/src/Batch/Client/Src/UtilitiesInternal.cs b/src/Batch/Client/Src/Azure.Batch/UtilitiesInternal.cs similarity index 100% rename from src/Batch/Client/Src/UtilitiesInternal.cs rename to src/Batch/Client/Src/Azure.Batch/UtilitiesInternal.cs diff --git a/src/Batch/Client/Src/Utils/Async.cs b/src/Batch/Client/Src/Azure.Batch/Utils/Async.cs similarity index 100% rename from src/Batch/Client/Src/Utils/Async.cs rename to src/Batch/Client/Src/Azure.Batch/Utils/Async.cs diff --git a/src/Batch/Client/Src/VirtualMachineConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/VirtualMachineConfiguration.cs similarity index 100% rename from src/Batch/Client/Src/VirtualMachineConfiguration.cs rename to src/Batch/Client/Src/Azure.Batch/VirtualMachineConfiguration.cs diff --git a/src/Batch/Client/Src/app.config b/src/Batch/Client/Src/Azure.Batch/app.config similarity index 100% rename from src/Batch/Client/Src/app.config rename to src/Batch/Client/Src/Azure.Batch/app.config diff --git a/src/Batch/Client/Src/Azure.Batch/project.json b/src/Batch/Client/Src/Azure.Batch/project.json new file mode 100644 index 000000000000..9adce8b2ff61 --- /dev/null +++ b/src/Batch/Client/Src/Azure.Batch/project.json @@ -0,0 +1,53 @@ +{ + "version": "6.0.0", + "name": "Azure.Batch", + "description": "This client library provides access to the Microsoft Azure Batch service.", + "authors": [ "Microsoft" ], + + "packOptions": { + "summary": "The client library for the Microsoft Azure Batch service.", + "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "http://aka.ms/windowsazureapache2", + "tags": [ "Microsoft", "Azure", "Batch", "windowsazureofficial" ], + "requireLicenseAcceptance": true + }, + "buildOptions": { + "outputName": "Microsoft.Azure.Batch", + "warningsAsErrors": true + }, + + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "3.3.5" + }, + "frameworks": { + "net45": { + "buildOptions": { + "warningsAsErrors": true + }, + "frameworkAssemblies": { + "System.Web": "4.0.0.0" + } + }, + "netstandard1.5": { + "imports": [ "dnxcore50" ], + "buildOptions": { + "define": [ "PORTABLE" ] + }, + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.AspNetCore.WebUtilities": "1.0.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + } + }, + "scripts": { + "postcompile": [ + "dotnet pack --no-build --configuration %compile:Configuration%", + "nuget add bin\\Debug\\Azure.Batch.6.0.0.nupkg -Source ..\\..\\LocalNuget -NonInteractive" + ] + } +} \ No newline at end of file diff --git a/src/Batch/Client/Src/LockUtil.cs b/src/Batch/Client/Src/LockUtil.cs deleted file mode 100644 index 9d3865a85f36..000000000000 --- a/src/Batch/Client/Src/LockUtil.cs +++ /dev/null @@ -1,114 +0,0 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. - -using System; -using System.Threading; -using System.Collections.Generic; -using System.Text; -using System.Diagnostics; - -namespace Microsoft.Azure.Batch -{ - // - // NOTE: All lock-scope objects are not-reentrant by design. Each lock scope - // objects must be associated with a single thread. - // - - abstract class LockScope : IDisposable - { -#if DEBUG - int _threadId; -#endif - - protected LockScope() - { -#if DEBUG - _threadId = Thread.CurrentThread.ManagedThreadId; -#endif - } - -#if DEBUG - protected void VerifyThread() - { - if (Thread.CurrentThread.ManagedThreadId != _threadId) - { - throw new InvalidOperationException("The current thread does not own the lock scope object"); - } - } -#endif - - public void Dispose() - { -#if DEBUG - VerifyThread(); -#endif - ExitLock(); - } - - protected abstract void ExitLock(); - } - - abstract class ReaderWriterLockScope : LockScope - { - protected ReaderWriterLockSlim _lock; - - protected ReaderWriterLockScope(ReaderWriterLockSlim rwLock) : base() - { - if (rwLock == null) - { - throw new ArgumentNullException("rwLock"); - } - _lock = rwLock; - } - } - - internal class ReaderLockScope : ReaderWriterLockScope - { - public ReaderLockScope(ReaderWriterLockSlim rwLock) - : base(rwLock) - { - _lock.EnterReadLock(); - } - protected override void ExitLock() - { - _lock.ExitReadLock(); - } - } - - internal class WriterLockScope : ReaderWriterLockScope - { - public WriterLockScope(ReaderWriterLockSlim rwLock) - : base(rwLock) - { - _lock.EnterWriteLock(); - } - protected override void ExitLock() - { - _lock.ExitWriteLock(); - } - } - - internal class UpgradeableLockScope : ReaderWriterLockScope - { - public UpgradeableLockScope(ReaderWriterLockSlim rwLock) - : base(rwLock) - { - _lock.EnterUpgradeableReadLock(); - } - protected override void ExitLock() - { - _lock.ExitUpgradeableReadLock(); - } - } -} \ No newline at end of file diff --git a/src/Batch/Client/Src/Protocol/BatchClientErrorMessages.Designer.cs b/src/Batch/Client/Src/Protocol/BatchClientErrorMessages.Designer.cs deleted file mode 100644 index 6b7980763c80..000000000000 --- a/src/Batch/Client/Src/Protocol/BatchClientErrorMessages.Designer.cs +++ /dev/null @@ -1,324 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Microsoft.Azure.Batch.Protocol { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class BatchClientErrorMessages { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal BatchClientErrorMessages() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Batch.Protocol.BatchClientErrorMessages", typeof(BatchClientErrorMessages).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// Looks up a localized string similar to Deserialize AddTaskCollection response failed: {0}. - /// - internal static string AddTaskCollectionDeserialziationError { - get { - return ResourceManager.GetString("AddTaskCollectionDeserialziationError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The argument must not be empty string.. - /// - internal static string ArgumentEmptyError { - get { - return ResourceManager.GetString("ArgumentEmptyError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The argument is out of range.. - /// - internal static string ArgumentOutOfRangeError { - get { - return ResourceManager.GetString("ArgumentOutOfRangeError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The argument '{0}' is larger than maximum of '{1}'. - /// - internal static string ArgumentTooLargeError { - get { - return ResourceManager.GetString("ArgumentTooLargeError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The argument '{0}' is smaller than minimum of '{1}'. - /// - internal static string ArgumentTooSmallError { - get { - return ResourceManager.GetString("ArgumentTooSmallError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Argument is not a type of {0}.. - /// - internal static string ArgumentTypeMisMatch { - get { - return ResourceManager.GetString("ArgumentTypeMisMatch", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The length of array {0} cannot be zero.. - /// - internal static string ArrayLengthZeroError { - get { - return ResourceManager.GetString("ArrayLengthZeroError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot update key unless Account Key credentials are used.. - /// - internal static string CannotUpdateKeyWithoutAccountKeyCreds { - get { - return ResourceManager.GetString("CannotUpdateKeyWithoutAccountKeyCreds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Comparing objects of different types: ({0}, {1}). - /// - internal static string ComparingObjectsOfDifferentClasses { - get { - return ResourceManager.GetString("ComparingObjectsOfDifferentClasses", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0}: Comparing objects of different types: ({1}, {2}). - /// - internal static string ComparingObjectsOfDifferentClassesWithTrace { - get { - return ResourceManager.GetString("ComparingObjectsOfDifferentClassesWithTrace", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Crypto function failed with error code '{0}'. - /// - internal static string CryptoFunctionFailed { - get { - return ResourceManager.GetString("CryptoFunctionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} is empty. - /// - internal static string Empty { - get { - return ResourceManager.GetString("Empty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error in FillProperties: type {0} OData property name {1} property value {2}. - /// - internal static string ErrorInFillProperties { - get { - return ResourceManager.GetString("ErrorInFillProperties", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unexpected internal batch client error.. - /// - internal static string InternalBatchClientError { - get { - return ResourceManager.GetString("InternalBatchClientError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The value specified for property {0} is invalid.. - /// - internal static string InvalidPropertyValue { - get { - return ResourceManager.GetString("InvalidPropertyValue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The value specified for property {0} is invalid for operation {1}. - /// - internal static string InvalidPropertyValueForOperation { - get { - return ResourceManager.GetString("InvalidPropertyValueForOperation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The navigation property {0} does not exist for entity {1}. - /// - internal static string NavPropertyNotExist { - get { - return ResourceManager.GetString("NavPropertyNotExist", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} is null.. - /// - internal static string NullObject { - get { - return ResourceManager.GetString("NullObject", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0}: one instance is null, the other is not null. - /// - internal static string OneClassInstanceIsNull { - get { - return ResourceManager.GetString("OneClassInstanceIsNull", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Operation was canceled by user.. - /// - internal static string OperationCanceled { - get { - return ResourceManager.GetString("OperationCanceled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Patch request error - no updateable property present.. - /// - internal static string PatchRequestNoUpdateableProperty { - get { - return ResourceManager.GetString("PatchRequestNoUpdateableProperty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Property with name {0} does not exist in class {1}. - /// - internal static string PropertyNotExistInClass { - get { - return ResourceManager.GetString("PropertyNotExistInClass", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The value of {0} is null or empty.. - /// - internal static string StringNullOrEmpty { - get { - return ResourceManager.GetString("StringNullOrEmpty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The client could not finish the operation within specified timeout.. - /// - internal static string TimeoutExceptionMessage { - get { - return ResourceManager.GetString("TimeoutExceptionMessage", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0}: property {1} have different lengths ({2}, {3}). - /// - internal static string TwoEntityPropertiesLengthNotEqual { - get { - return ResourceManager.GetString("TwoEntityPropertiesLengthNotEqual", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0}: property {1} not equal ({2}, {3}). - /// - internal static string TwoEntityPropertiesNotEqual { - get { - return ResourceManager.GetString("TwoEntityPropertiesNotEqual", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The values of these two properties are conflicting:{0}, {1}.. - /// - internal static string TwoPropertiesConflict { - get { - return ResourceManager.GetString("TwoPropertiesConflict", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unexpected response code, Expected:{0}, Received:{1}. - /// - internal static string UnexpectedResponseCode { - get { - return ResourceManager.GetString("UnexpectedResponseCode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown ODataReader State {0} in DeSerializing object of type {1}. - /// - internal static string UnKnownODataReaderState { - get { - return ResourceManager.GetString("UnKnownODataReaderState", resourceCulture); - } - } - } -} diff --git a/src/Batch/Client/Src/Protocol/BatchClientErrorMessages.resx b/src/Batch/Client/Src/Protocol/BatchClientErrorMessages.resx deleted file mode 100644 index 79b1f801a46c..000000000000 --- a/src/Batch/Client/Src/Protocol/BatchClientErrorMessages.resx +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Deserialize AddTaskCollection response failed: {0} - - - The argument must not be empty string. - - - The argument is out of range. - - - The argument '{0}' is larger than maximum of '{1}' - - - The argument '{0}' is smaller than minimum of '{1}' - - - Argument is not a type of {0}. - - - The length of array {0} cannot be zero. - arrayName. - - - Cannot update key unless Account Key credentials are used. - - - Comparing objects of different types: ({0}, {1}) - class1, class2 - - - {0}: Comparing objects of different types: ({1}, {2}) - trace, class1, class2 - - - Crypto function failed with error code '{0}' - - - {0} is empty - - - Error in FillProperties: type {0} OData property name {1} property value {2} - - - Unexpected internal batch client error. - - - The value specified for property {0} is invalid. - - - The value specified for property {0} is invalid for operation {1} - propertyName, operationName - - - The navigation property {0} does not exist for entity {1} - - - {0} is null. - - - {0}: one instance is null, the other is not null - className - - - Operation was canceled by user. - - - Patch request error - no updateable property present. - - - Property with name {0} does not exist in class {1} - propertyName, className - - - The value of {0} is null or empty. - - - The client could not finish the operation within specified timeout. - - - {0}: property {1} have different lengths ({2}, {3}) - className, propertyName, value1, value2 - - - {0}: property {1} not equal ({2}, {3}) - className, propertyName, value1, value2 - - - The values of these two properties are conflicting:{0}, {1}. - - - Unexpected response code, Expected:{0}, Received:{1} - - - Unknown ODataReader State {0} in DeSerializing object of type {1} - - \ No newline at end of file diff --git a/src/Batch/Client/Src/Protocol/Core/Logger.Common.cs b/src/Batch/Client/Src/Protocol/Core/Logger.Common.cs deleted file mode 100644 index 0c2a1df59b6e..000000000000 --- a/src/Batch/Client/Src/Protocol/Core/Logger.Common.cs +++ /dev/null @@ -1,55 +0,0 @@ -//----------------------------------------------------------------------- -// -// Copyright 2012 Microsoft Corporation -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//----------------------------------------------------------------------- - -namespace Microsoft.Azure.Batch.Protocol.Core -{ - using System; - using System.Globalization; - using System.Threading; - - internal static partial class Logger - { - private const string TraceFormat = "{0} : {1}"; - - /// - /// Creates a well-formatted log entry so that logs can be easily parsed - /// - /// The client-request-id. - /// A composite format string. - /// An object array that contains zero or more objects to format. - /// Log entry that contains common log prefix and a copy of format in which the format items have been replaced by the string representation of the corresponding objects in args. - private static string FormatLine(string clientRequestId, string format, object[] args) - { - return string.Format( - CultureInfo.InvariantCulture, - Logger.TraceFormat, - clientRequestId, - (args == null) ? format : string.Format(CultureInfo.InvariantCulture, format, args).Replace('\n', '.')); - } - - /// - /// Determines if the current entry should be logged. - /// - /// Log level of the entry. - /// Intended log level. - /// true if the entry should be logged; otherwise false. - private static bool ShouldLog(LogLevel entryLogLevel, LogLevel intentedLogLevel) - { - return entryLogLevel <= intentedLogLevel; - } - } -} diff --git a/src/Batch/Client/Src/Protocol/Core/NullType.cs b/src/Batch/Client/Src/Protocol/Core/NullType.cs deleted file mode 100644 index 21401b89f6d4..000000000000 --- a/src/Batch/Client/Src/Protocol/Core/NullType.cs +++ /dev/null @@ -1,38 +0,0 @@ -//----------------------------------------------------------------------- -// -// Copyright 2012 Microsoft Corporation -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//----------------------------------------------------------------------- - -namespace Microsoft.Azure.Batch.Protocol.Core -{ - /// - /// A NullBatchReturn type. - /// - /// Make it to internal (no use so far) - internal sealed class NullType - { - /// - /// Represents a no-return from Batch. - /// - internal static readonly NullType Value = new NullType(); - - /// - /// Prevents a default instance of the class from being created. - /// - private NullType() - { - } - } -} diff --git a/src/Batch/Client/Src/Protocol/Core/UriQueryBuilder.cs b/src/Batch/Client/Src/Protocol/Core/UriQueryBuilder.cs deleted file mode 100644 index 4c118cace2b8..000000000000 --- a/src/Batch/Client/Src/Protocol/Core/UriQueryBuilder.cs +++ /dev/null @@ -1,150 +0,0 @@ -//----------------------------------------------------------------------- -// -// Copyright 2012 Microsoft Corporation -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//----------------------------------------------------------------------- - -namespace Microsoft.Azure.Batch.Protocol.Core -{ - using System; - using System.Collections.Generic; - using System.Linq; - using System.Text; - - /// - /// A style class for creating Uri query strings. - /// -#if RT - internal -#else - //public - internal -#endif - class UriQueryBuilder - { - /// - /// Stores the query parameters. - /// - private Dictionary parameters = new Dictionary(); - - /// - /// Add the value with Uri escaping. - /// - /// The query name. - /// The query value. - public void Add(string name, string value) - { - if (value != null) - { - value = Uri.EscapeDataString(value); - } - - this.parameters.Add(name, value); - } - - /// - /// Returns a that represents this instance. - /// - /// - /// A that represents this instance. - /// - public override string ToString() - { - StringBuilder sb = new StringBuilder(); - bool first = true; - - foreach (var pair in this.parameters) - { - if (first) - { - first = false; - sb.Append("?"); - } - else - { - sb.Append("&"); - } - - sb.Append(pair.Key); - - if (pair.Value != null) - { - sb.AppendFormat("={0}", pair.Value); - } - } - - return sb.ToString(); - } - - /// - /// Append query parameter to an existing Uri. This takes care of any existing query parameters in the Uri. - /// - /// Original Uri which may contain query parameters already. - /// The appended Uri. - public Uri AppendToUri(Uri uri) - { - // The correct way to add query parameters to a Uri http://msdn.microsoft.com/en-us/library/system.uribuilder.query.aspx - string queryToAppend = this.ToString(); - - if (queryToAppend.Length > 1) - { - queryToAppend = queryToAppend.Substring(1); - } - - UriBuilder baseUri = new UriBuilder(uri); - - if (baseUri.Query != null && baseUri.Query.Length > 1) - { - baseUri.Query = baseUri.Query.Substring(1) + "&" + queryToAppend; - } - else - { - baseUri.Query = queryToAppend; - } - - return baseUri.Uri; - } - - /// - /// Insert query parameter to an existing Uri. This takes care of any existing query parameters in the Uri. - /// - /// Original Uri which may contain query parameters already. - /// The appended Uri. - public Uri InsertToUri(Uri uri) - { - // The correct way to add query parameters to a Uri http://msdn.microsoft.com/en-us/library/system.uribuilder.query.aspx - string queryToInsert = this.ToString(); - - if (queryToInsert.Length > 1) - { - queryToInsert = queryToInsert.Substring(1); - } - - UriBuilder baseUri = new UriBuilder(uri); - - if (baseUri.Query != null && baseUri.Query.Length > 1) - { - baseUri.Query = queryToInsert + "&" + baseUri.Query.Substring(1); - } - else - { - baseUri.Query = queryToInsert; - } - - return baseUri.Uri; - } - - - } -} diff --git a/src/Batch/Client/Src/packages.config b/src/Batch/Client/Src/packages.config deleted file mode 100644 index 98fc99fcd69d..000000000000 --- a/src/Batch/Client/Src/packages.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.xproj b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.xproj new file mode 100644 index 000000000000..298d4f1cfda1 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + {37F66AC7-C54C-4FE2-B691-5260D3971BAB} + Azure.Batch.Unit.Tests + .\obj + .\bin\ + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchRequestUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchRequestUnitTests.cs index 945eb17f5645..f31ee7680edc 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchRequestUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchRequestUnitTests.cs @@ -516,7 +516,7 @@ private static List DiscoverListMethods(Type typeToExamine) IEnumerable methods = typeToExamine.GetMethods(); foreach (MethodInfo method in methods) { - if (method.ReturnType.IsGenericType && method.ReturnType.GetGenericTypeDefinition() == typeof (IPagedEnumerable<>)) + if (method.ReturnType.GetTypeInfo().IsGenericType && method.ReturnType.GetGenericTypeDefinition() == typeof (IPagedEnumerable<>)) { result.Add(method); } @@ -535,7 +535,7 @@ private static async Task InvokeCancellationTokenMethodAsync(MethodInfo method, { result = cancellationToken; } - else if (parameter.ParameterType.IsValueType) + else if (parameter.ParameterType.GetTypeInfo().IsValueType) { result = Activator.CreateInstance(parameter.ParameterType); } diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CommitAndRefreshUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CommitAndRefreshUnitTests.cs index 11f3329fd44f..9c2c1b4ba956 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CommitAndRefreshUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CommitAndRefreshUnitTests.cs @@ -131,30 +131,23 @@ public async Task UnboundCertificateCommitAndRefreshWorks() { using (BatchClient batchClient = ClientUnitTestCommon.CreateDummyClient()) { - string pfxFilePath = TestCommon.GetTemporaryCertificateFilePath("unboundcertificateunittest.pfx"); - try - { - CertificateBuilder.CreateSelfSignedInFile("test", pfxFilePath, CertificateBuilder.Sha1Algorithm, password: CommonResources.CertificatePassword); - - const string expectedThumbprint = "ABC"; - var protoCertificate = new Protocol.Models.Certificate(thumbprint: expectedThumbprint); - Certificate certificate = batchClient.CertificateOperations.CreateCertificate( - pfxFilePath, - CommonResources.CertificatePassword); - - Assert.NotNull(certificate.ThumbprintAlgorithm); - - await certificate.CommitAsync(additionalBehaviors: InterceptorFactory.CreateAddCertificateRequestInterceptor()); - - await certificate.RefreshAsync(additionalBehaviors: InterceptorFactory.CreateGetCertificateRequestInterceptor(protoCertificate)); - - Assert.Equal(expectedThumbprint, certificate.Thumbprint); - Assert.Null(certificate.ThumbprintAlgorithm); - } - finally - { - File.Delete(pfxFilePath); - } + const string expectedThumbprint = "ABC"; + var protoCertificate = new Protocol.Models.Certificate(thumbprint: expectedThumbprint); + Certificate certificate = new Certificate( + batchClient, + null, + string.Empty, + expectedThumbprint, + "SHA1"); + + Assert.NotNull(certificate.ThumbprintAlgorithm); + + await certificate.CommitAsync(additionalBehaviors: InterceptorFactory.CreateAddCertificateRequestInterceptor()); + + await certificate.RefreshAsync(additionalBehaviors: InterceptorFactory.CreateGetCertificateRequestInterceptor(protoCertificate)); + + Assert.Equal(expectedThumbprint, certificate.Thumbprint); + Assert.Null(certificate.ThumbprintAlgorithm); } } diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/EnumUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/EnumUnitTests.cs index 78f66cdc96ed..ceea5d01a182 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/EnumUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/EnumUnitTests.cs @@ -17,6 +17,7 @@ using System; using System.Collections.Generic; using System.Linq; + using System.Reflection; using BatchTestCommon; using Microsoft.Azure.Batch.Common; using Xunit; @@ -36,16 +37,16 @@ public EnumUnitTests(ITestOutputHelper testOutputHelper) [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] public void TestHandcodedEnumsMatchSwaggerGeneratedEnums() { - Type arbitraryHandcraftedEnum = typeof(JobState); + TypeInfo arbitraryHandcraftedEnum = typeof(JobState).GetTypeInfo(); string handcraftedEnumNamespace = arbitraryHandcraftedEnum.Namespace; //Gather all handcoded enumerations - List enumTypes = arbitraryHandcraftedEnum.Assembly.GetTypes().Where(t => t.IsEnum && t.Namespace == handcraftedEnumNamespace).OrderBy(t => t.FullName).ToList(); + List enumTypes = arbitraryHandcraftedEnum.Assembly.GetTypes().Where(t => t.GetTypeInfo().IsEnum && t.Namespace == handcraftedEnumNamespace).ToList(); //Gather all codegenerated enums - Type arbitraryGeneratedEnum = typeof(Protocol.Models.JobState); + TypeInfo arbitraryGeneratedEnum = typeof(Protocol.Models.JobState).GetTypeInfo(); string generatedEnumNamespace = arbitraryGeneratedEnum.Namespace; - List generatedEnumTypes = arbitraryGeneratedEnum.Assembly.GetTypes().Where(t => t.IsEnum && t.Namespace == generatedEnumNamespace).OrderBy(t => t.FullName).ToList(); + List generatedEnumTypes = arbitraryGeneratedEnum.Assembly.GetTypes().Where(t => t.GetTypeInfo().IsEnum && t.Namespace == generatedEnumNamespace).ToList(); this.testOutputHelper.WriteLine("Generated types: "); foreach (Type generatedEnumType in generatedEnumTypes) diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/OptionsUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/OptionsUnitTests.cs index 74992135c8e1..870f2fab2a81 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/OptionsUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/OptionsUnitTests.cs @@ -17,6 +17,7 @@ using System; using System.Collections.Generic; using System.Linq; + using System.Reflection; using System.Text; using System.Threading.Tasks; using BatchTestCommon; @@ -31,7 +32,7 @@ public void TestOptionsDontMissODataParameters() { Type selectedModelType = typeof (Protocol.Models.CertificateAddOptions); - IEnumerable optionsTypes = selectedModelType.Assembly.GetTypes().Where(t => + IEnumerable optionsTypes = selectedModelType.GetTypeInfo().Assembly.GetTypes().Where(t => t.Namespace == selectedModelType.Namespace && t.Name.EndsWith("Options") && !t.Name.Equals("ExitOptions")); diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PoolTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PoolTests.cs deleted file mode 100644 index c7584b88b540..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PoolTests.cs +++ /dev/null @@ -1,255 +0,0 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. - - -namespace BatchClientUnitTests -{ - using System; - using System.Collections.Generic; - using System.Linq; - using System.Threading.Tasks; - using BatchTestCommon; - using Microsoft.Azure.Batch; - using Microsoft.Azure.Batch.Common; - using Microsoft.Rest.Azure; - using Xunit; - - using ProxyModels = Microsoft.Azure.Batch.Protocol.Models; - - using AutoScaleRun = Microsoft.Azure.Batch.Protocol.Models.AutoScaleRun; - using AutoScaleRunError = Microsoft.Azure.Batch.Protocol.Models.AutoScaleRunError; - using CertificateReference = Microsoft.Azure.Batch.Protocol.Models.CertificateReference; - using EnvironmentSetting = Microsoft.Azure.Batch.Protocol.Models.EnvironmentSetting; - using NameValuePair = Microsoft.Azure.Batch.Protocol.Models.NameValuePair; - - public class PoolTests - { - [Fact] - [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] - public void GetPoolsListTest() - { - using (var client = FakeBatchClient.ConnectWithFakeCredentials(ClientUnitTestCommon.DummyBaseUrl)) - { - client.FakeProtocolLayer.ListPoolsHandler = (skipToken, behaviors) => Task.FromResult( - new AzureOperationResponse, ProxyModels.PoolListHeaders>() - { - Body = new FakePage(new List() - { - new ProxyModels.CloudPool { DisplayName = "batch-test"}, - new ProxyModels.CloudPool { DisplayName = "foobar", CurrentOSVersion = "3" , AllocationState = ProxyModels.AllocationState.Steady}, - }) - }); - - IPagedEnumerable asyncPools = client.PoolOperations.ListPools(); - var pools = new List(asyncPools); - - - Assert.Equal(2, pools.Count); - Assert.Equal("batch-test", pools[0].DisplayName); - - Assert.Equal("foobar", pools[1].DisplayName); - - // enums are in the same namespace. - Assert.Equal(AllocationState.Steady, pools[1].AllocationState); - } - } - - [Fact] - [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] - public void GetPoolTestNonNullProperties() - { - DateTime currentDateTime = DateTime.UtcNow; - DateTime dateTimeMinusAnHour = currentDateTime.AddHours(-1); - using (var client = FakeBatchClient.ConnectWithFakeCredentials(ClientUnitTestCommon.DummyBaseUrl)) - { - client.FakeProtocolLayer.GetPoolHandler = (skipToken, behaviors) => Task.FromResult( - new AzureOperationResponse - { - Body = new ProxyModels.CloudPool() - { - AllocationState = ProxyModels.AllocationState.Steady, - AllocationStateTransitionTime = dateTimeMinusAnHour, - AutoScaleFormula = string.Empty, - AutoScaleRun = new AutoScaleRun(), - DisplayName = "batch-test", - CertificateReferences = new[] - { - new CertificateReference - { - StoreLocation = ProxyModels.CertificateStoreLocation.Currentuser, - StoreName = "My", - Thumbprint = string.Empty, - ThumbprintAlgorithm = "sha1", - Visibility = "rdp,starttask,task" - } - }, - CreationTime = dateTimeMinusAnHour, - CurrentOSVersion = "*", - CurrentDedicated = 3, - ETag = "eTag=0x8D250D98B5D78AA", - EnableAutoScale = false, - LastModified = currentDateTime, - MaxTasksPerNode = 4, - OsFamily = "4", - ResizeTimeout = new TimeSpan(), - State = ProxyModels.PoolState.Active, - StateTransitionTime = currentDateTime, - TargetDedicated = 3, - TargetOSVersion = "*", - Url = "testbatch://batch-test.windows-int.net/pools/batch-test", - TaskSchedulingPolicy = new Microsoft.Azure.Batch.Protocol.Models.TaskSchedulingPolicy { NodeFillType = ProxyModels.ComputeNodeFillType.Pack } - - } - }); - - var pool = client.PoolOperations.GetPool("batch-test"); - - Assert.Equal("batch-test", pool.DisplayName); - Assert.Equal(AllocationState.Steady, pool.AllocationState); - Assert.Equal(dateTimeMinusAnHour, pool.AllocationStateTransitionTime); - Assert.Equal(dateTimeMinusAnHour, pool.CreationTime); - Assert.Equal("*", pool.CurrentOSVersion); - Assert.Equal(3, pool.CurrentDedicated); - Assert.Equal(false, pool.AutoScaleEnabled); - Assert.Equal(currentDateTime, pool.LastModified); - Assert.Equal(4, pool.MaxTasksPerComputeNode); - Assert.Equal("4", pool.OSFamily); - Assert.Equal(PoolState.Active, pool.State); - Assert.Equal(currentDateTime, pool.StateTransitionTime); - Assert.Equal(ComputeNodeFillType.Pack, pool.TaskSchedulingPolicy.ComputeNodeFillType); - Assert.Equal(3, pool.TargetDedicated); - Assert.Equal("*", pool.TargetOSVersion); - Assert.Equal("testbatch://batch-test.windows-int.net/pools/batch-test", pool.Url); - - var certs = pool.CertificateReferences; - - Assert.Equal(CertStoreLocation.CurrentUser, certs[0].StoreLocation); - Assert.Equal("My", certs[0].StoreName); - Assert.Equal(string.Empty, certs[0].Thumbprint); - Assert.Equal("sha1", certs[0].ThumbprintAlgorithm); - } - } - - [Fact] - [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] - public void GetPoolResizeError() - { - var autoScaleRunError = new AutoScaleRunError - { - Code = "InsufficientSampleData", - Message = "Autoscale evaluation failed due to insufficient sample data", - Values = new List - { - new NameValuePair - { - Name = "Message", - Value = "Line 1, Col 24: Insufficient data from data set: $RunningTasks wanted 100%, received 0%" - } - } - }; - - var autoScaleError = new AutoScaleRun { Error = autoScaleRunError }; - - using (var client = FakeBatchClient.ConnectWithFakeCredentials(ClientUnitTestCommon.DummyBaseUrl)) - { - client.FakeProtocolLayer.GetPoolHandler = (skipToken, behaviors) => Task.FromResult( - new AzureOperationResponse - { - Body = new ProxyModels.CloudPool - { - DisplayName = "batch-test", - AutoScaleFormula = "$RunningTasks.GetSample(10 * TimeInterval_Second, 0 * TimeInterval_Second, 100);", - AutoScaleRun = autoScaleError, - EnableAutoScale = true, - } - }); - - var pool = client.PoolOperations.GetPool("batch-test"); - - Assert.Equal("batch-test", pool.DisplayName); - Assert.Equal(pool.AutoScaleEnabled, true); - Assert.Equal(pool.AutoScaleRun.Error.Code, "InsufficientSampleData"); - Assert.Equal(pool.AutoScaleRun.Error.Message, "Autoscale evaluation failed due to insufficient sample data"); - Assert.Equal(pool.AutoScaleRun.Error.Values.First().Name, "Message"); - Assert.Equal(pool.AutoScaleRun.Error.Values.First().Value, "Line 1, Col 24: Insufficient data from data set: $RunningTasks wanted 100%, received 0%"); - } - } - - - [Fact] - [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] - public void GetPoolStartTask() - { - var startTask = new Microsoft.Azure.Batch.Protocol.Models.StartTask - { - CommandLine = "-start", - EnvironmentSettings = new[] { new EnvironmentSetting { Name = "windows", Value = "foo" } }, - MaxTaskRetryCount = 3, - RunElevated = false, - WaitForSuccess = false - }; - - - using (var client = FakeBatchClient.ConnectWithFakeCredentials(ClientUnitTestCommon.DummyBaseUrl)) - { - client.FakeProtocolLayer.GetPoolHandler = (skipToken, behaviors) => Task.FromResult( - new AzureOperationResponse() - { - Body = new ProxyModels.CloudPool { DisplayName = "batch-test", StartTask = startTask, } - }); - - var pool = client.PoolOperations.GetPool("batch-test"); - - Assert.Equal("batch-test", pool.DisplayName); - Assert.Equal(pool.StartTask.CommandLine, "-start"); - Assert.Equal(pool.StartTask.EnvironmentSettings.FirstOrDefault().Name, "windows"); - Assert.Equal(pool.StartTask.EnvironmentSettings.FirstOrDefault().Value, "foo"); - Assert.Equal(pool.StartTask.MaxTaskRetryCount, 3); - Assert.Equal(pool.StartTask.RunElevated, false); - Assert.Equal(pool.StartTask.WaitForSuccess, false); - } - } - - [Fact] - [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] - public void ListComputeNodes() - { - var dateTime = DateTime.UtcNow; - - using (var client = FakeBatchClient.ConnectWithFakeCredentials(ClientUnitTestCommon.DummyBaseUrl)) - { - client.FakeProtocolLayer.ListComputeNodesHandler = (s, s1, arg3) => Task.FromResult( - new AzureOperationResponse, ProxyModels.ComputeNodeListHeaders>() - { - Body = new FakePage(new List() - { - new Microsoft.Azure.Batch.Protocol.Models.ComputeNode() - { - State = ProxyModels.ComputeNodeState.Running, - LastBootTime = dateTime, - Id = "computeNode1", - } - }) - }); - - List VMs = client.PoolOperations.ListComputeNodes("foo").ToList(); - - Assert.Equal(VMs.Count, 1); - Assert.Equal(VMs[0].Id, "computeNode1"); - Assert.Equal(VMs[0].State, ComputeNodeState.Running); - Assert.Equal(VMs[0].LastBootTime, dateTime); - } - } - } -} \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyUnitTests.cs index 629de9b72fc9..f93da1f13bc7 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyUnitTests.cs @@ -449,7 +449,7 @@ public void TestIReadOnlyMakesPropertiesReadOnly() //properties of those objects. Type iReadOnlyType = typeof(IReadOnly); - List typesWithIReadOnlyBase = GetTypesWhichImplementInterface(iReadOnlyType.Assembly, iReadOnlyType, requirePublicConstructor: false).ToList(); + List typesWithIReadOnlyBase = GetTypesWhichImplementInterface(iReadOnlyType.GetTypeInfo().Assembly, iReadOnlyType, requirePublicConstructor: false).ToList(); foreach (Type type in typesWithIReadOnlyBase) { this.testOutputHelper.WriteLine("Reading/Setting properties of type: {0}", type.ToString()); @@ -517,7 +517,7 @@ public void TestGetTransportObjectDoesntMissProperties() //properties of those objects. Type iTransportObjectProviderType = typeof(ITransportObjectProvider<>); - IEnumerable types = GetTypesWhichImplementInterface(iTransportObjectProviderType.Assembly, iTransportObjectProviderType, requirePublicConstructor: false); + IEnumerable types = GetTypesWhichImplementInterface(iTransportObjectProviderType.GetTypeInfo().Assembly, iTransportObjectProviderType, requirePublicConstructor: false); foreach (Type type in types) { @@ -526,9 +526,10 @@ public void TestGetTransportObjectDoesntMissProperties() { object o = this.customizedObjectFactory.GenerateNew(type); Type concreteInterfaceType = o.GetType().GetInterfaces().First(iFace => - iFace.IsGenericType && + iFace.GetTypeInfo().IsGenericType && iFace.GetGenericTypeDefinition() == iTransportObjectProviderType); - object protocolObject = concreteInterfaceType.GetMethod("GetTransportObject").Invoke(o, BindingFlags.Instance | BindingFlags.NonPublic, null, null, null); + //object protocolObject = concreteInterfaceType.GetMethod("GetTransportObject").Invoke(o, BindingFlags.Instance | BindingFlags.NonPublic, null, null, null); + object protocolObject = concreteInterfaceType.GetMethod("GetTransportObject").Invoke(o, null); ObjectComparer.CheckEqualityResult result = this.objectComparer.CheckEquality(o, protocolObject); Assert.True(result.Equal, result.Message); @@ -548,20 +549,20 @@ private static IEnumerable GetTypesWhichImplementInterface(Assembly assemb requirePublicConstructorFunc = (t => true); } - if (!interfaceType.IsGenericType) + if (!interfaceType.GetTypeInfo().IsGenericType) { return assembly.GetTypes().Where(t => interfaceType.IsAssignableFrom(t) && - !t.IsInterface && - t.IsVisible && + !t.GetTypeInfo().IsInterface && + t.GetTypeInfo().IsVisible && requirePublicConstructorFunc(t)); } else { return assembly.GetTypes().Where(t => - t.GetInterfaces().Any(i => i.IsGenericType && i.GetGenericTypeDefinition() == interfaceType) && - !t.IsInterface && - t.IsVisible && + t.GetInterfaces().Any(i => i.GetTypeInfo().IsGenericType && i.GetGenericTypeDefinition() == interfaceType) && + !t.GetTypeInfo().IsInterface && + t.GetTypeInfo().IsVisible && requirePublicConstructorFunc(t)); } } diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/RetryPolicyUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/RetryPolicyUnitTests.cs index 20950508d42f..f1ec09f5b5c0 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/RetryPolicyUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/RetryPolicyUnitTests.cs @@ -367,8 +367,8 @@ public async Task BatchRequestRetriesExecutedWithAggregateException() request.ServiceRequestFunc = async (token) => { ++serviceRequestFuncCallCount; - - Action throwsAction = () => { throw new StackOverflowException(); }; + + Action throwsAction = () => { throw new InvalidOperationException(); }; Task throwsTask1 = Task.Factory.StartNew(throwsAction); Task throwsTask2 = Task.Factory.StartNew(throwsAction); await Task.WhenAll(throwsTask1, throwsTask2); //This will throw @@ -382,7 +382,7 @@ public async Task BatchRequestRetriesExecutedWithAggregateException() Task executeRequestTask = request.ExecuteRequestAsync(); //We will observe only 1 exception (not an Aggregate) from the throw - StackOverflowException e = await Assert.ThrowsAsync(async () => { await executeRequestTask; }); + InvalidOperationException e = await Assert.ThrowsAsync(async () => { await executeRequestTask; }); //But the task itself should have the full set of exceptions which were hit AggregateException aggregateException = executeRequestTask.Exception; @@ -396,7 +396,7 @@ public async Task BatchRequestRetriesExecutedWithAggregateException() foreach (RequestResult requestResult in request.OperationContext.RequestResults) { - Assert.IsType(requestResult.Exception); + Assert.IsType(requestResult.Exception); Assert.Null(requestResult.RequestInformation.BatchError); Assert.Null(requestResult.RequestInformation.HttpStatusCode); Assert.Null(requestResult.RequestInformation.HttpStatusMessage); diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs index f18f4568fe52..b70438a35805 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs @@ -16,6 +16,7 @@ { using System.Collections.Generic; using System.Linq; + using System.IO; using BatchTestCommon; using TestUtilities; using Xunit; @@ -35,8 +36,8 @@ public StaticAnalysisUnitTests(ITestOutputHelper testOutputHelper) { this.testOutputHelper = testOutputHelper; - this.sourceLocation = @"..\..\..\..\..\src"; - this.proxySourceLocation = @"..\..\..\..\..\src\" + GeneratedProtocolFolder; + this.sourceLocation = @"..\..\..\src\Azure.Batch"; + this.proxySourceLocation = Path.Combine(this.sourceLocation, GeneratedProtocolFolder); } [Fact] @@ -77,7 +78,7 @@ public void ExceptionsThrownDirectlyByRestProxyDontChange() "ValidationException", "SerializationException" }; - Assert.Equal(expectedExceptions, exceptionSet); + Assert.Equal((IEnumerable)expectedExceptions, exceptionSet); } [Fact] diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactory.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactory.cs index f03b68954223..beb42d93de9c 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactory.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactory.cs @@ -41,12 +41,12 @@ public ObjectFactory(IList typeConstruct public object GenerateNew(Type objectType) { - if (objectType.IsGenericType && objectType.GetGenericTypeDefinition() == typeof(Nullable<>)) + if (objectType.GetTypeInfo().IsGenericType && objectType.GetGenericTypeDefinition() == typeof(Nullable<>)) { Type wrappedType = objectType.GetGenericArguments()[0]; return this.GenerateNew(wrappedType); } - else if (objectType.IsGenericType && + else if (objectType.GetTypeInfo().IsGenericType && (objectType.GetGenericTypeDefinition() == typeof(IEnumerable<>) || objectType.GetGenericTypeDefinition() == typeof(IList<>))) { @@ -81,7 +81,7 @@ public object GenerateNew(Type objectType) return timeSpan; } - else if (objectType.IsEnum) + else if (objectType.GetTypeInfo().IsEnum) { Array enumValues = Enum.GetValues(objectType); int enumIndex = this.random.Next(enumValues.Length); diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ReflectionHelpers.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ReflectionHelpers.cs index 16f3d3bb55d3..1baaed7c8d79 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ReflectionHelpers.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ReflectionHelpers.cs @@ -35,7 +35,7 @@ public static object InvokeMethodWithDefaultArguments(MethodInfo method, object } else { - if (parameter.ParameterType.IsValueType) + if (parameter.ParameterType.GetTypeInfo().IsValueType) { parameterObject = Activator.CreateInstance(parameter.ParameterType); } diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/packages.config b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/packages.config deleted file mode 100644 index d72f1e0918de..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/packages.config +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json new file mode 100644 index 000000000000..07c76f53e457 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json @@ -0,0 +1,33 @@ +{ + "version": "1.0.0", + "description": "Azure Batch Unit tests class library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "tags": [ "" ], + "projectUrl": "", + "licenseUrl": "" + }, + + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "buildOptions": { "define": [ "PORTABLE" ] }, + "imports": [ "dnxcore50", "portable-net45+win8" ] + } + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029", + "Azure.Batch": { + "target": "project", + "version": "6.0.0" + }, + "Common": "1.0.0" + } +} \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationIntegrationCommon.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationIntegrationCommon.cs index e574b9cf33fe..a142a30f826d 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationIntegrationCommon.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationIntegrationCommon.cs @@ -19,6 +19,7 @@ using System.Net; using System.Threading.Tasks; using BatchTestCommon; + using IntegrationTestCommon; using Microsoft.Azure.Management.Batch; using Microsoft.Azure.Management.Batch.Models; using Microsoft.Rest.Azure; @@ -36,7 +37,7 @@ public static async Task UploadTestApplicationPackageIfNotAlreadyUploadedAsync( string accountName, string resourceGroupName) { - using (BatchManagementClient mgmtClient = TestCommon.OpenBatchManagementClient()) + using (BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) { IPage applicationSummaries = await mgmtClient.Application.ListAsync(resourceGroupName, accountName).ConfigureAwait(false); @@ -54,7 +55,7 @@ public static async Task UploadTestApplicationPackageIfNotAlreadyUploadedAsync( .ConfigureAwait(false); var storageUrl = addResponse.StorageUrl; - await TestCommon.UploadTestApplicationAsync(storageUrl).ConfigureAwait(false); + await IntegrationTestCommon.UploadTestApplicationAsync(storageUrl).ConfigureAwait(false); await mgmtClient.ApplicationPackage.ActivateAsync( @@ -68,7 +69,7 @@ public static async Task UploadTestApplicationPackageIfNotAlreadyUploadedAsync( } public static async Task DeleteApplicationAsync(string applicationPackage, string resourceGroupName, string accountName) { - using (BatchManagementClient mgmtClient = TestCommon.OpenBatchManagementClient()) + using (BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) { await mgmtClient.ApplicationPackage.DeleteAsync(resourceGroupName, accountName, applicationPackage, Version).ConfigureAwait(false); diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationManagementIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationManagementIntegrationTests.cs index 06363a41c17c..8add0e02d77e 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationManagementIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationManagementIntegrationTests.cs @@ -21,6 +21,7 @@ using BatchClientIntegrationTests.Fixtures; using BatchClientIntegrationTests.IntegrationTestUtilities; using BatchTestCommon; + using IntegrationTestCommon; using Microsoft.Azure.Batch; using Microsoft.Azure.Management.Batch; using Microsoft.Azure.Management.Batch.Models; @@ -34,7 +35,7 @@ public class ApplicationManagementIntegrationTests : IDisposable public ApplicationManagementIntegrationTests() { - TestCommon.EnableAutoStorageAsync().Wait(); + IntegrationTestCommon.EnableAutoStorageAsync().Wait(); ApplicationIntegrationCommon.UploadTestApplicationPackageIfNotAlreadyUploadedAsync(ApplicationId, ApplicationIntegrationCommon.Version, @@ -53,7 +54,7 @@ public async Task End2EndApplicationPackageScenario() var poolId = "app-ref-test" + Guid.NewGuid(); using (BatchClient client = await TestUtilities.OpenBatchClientFromEnvironmentAsync()) { - using (var mgmtClient = TestCommon.OpenBatchManagementClient()) + using (var mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) { // Give the application a display name await mgmtClient.Application.UpdateAsync(TestCommon.Configuration.BatchAccountResourceGroup, accountName, ApplicationId, new UpdateApplicationParameters diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackageFixture.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackageFixture.cs index 7557f76934b0..b45fc3a968a2 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackageFixture.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackageFixture.cs @@ -18,6 +18,7 @@ using System.Linq; using System.Threading.Tasks; using BatchTestCommon; + using IntegrationTestCommon; public class ApplicationPackageFixture : IDisposable { @@ -26,7 +27,7 @@ public class ApplicationPackageFixture : IDisposable public ApplicationPackageFixture() { - TestCommon.EnableAutoStorageAsync().Wait(); + IntegrationTestCommon.EnableAutoStorageAsync().Wait(); ApplicationIntegrationCommon.UploadTestApplicationPackageIfNotAlreadyUploadedAsync( ApplicationId, diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesIntegrationTests.cs index a182baa580f3..5cc4a1987cb8 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesIntegrationTests.cs @@ -20,6 +20,7 @@ using System.Threading.Tasks; using BatchClientIntegrationTests.IntegrationTestUtilities; using BatchTestCommon; + using IntegrationTestCommon; using Microsoft.Azure.Batch; using Xunit; @@ -33,7 +34,7 @@ public ApplicationPackagesIntegrationTests() { - TestCommon.EnableAutoStorageAsync().Wait(); + IntegrationTestCommon.EnableAutoStorageAsync().Wait(); ApplicationIntegrationCommon.UploadTestApplicationPackageIfNotAlreadyUploadedAsync( ApplicationId, diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AuthenticationTest.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AuthenticationTest.cs index 5293661a1584..d4164662c76c 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AuthenticationTest.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AuthenticationTest.cs @@ -4,6 +4,7 @@ namespace BatchClientIntegrationTests using System; using System.Threading.Tasks; using BatchTestCommon; + using IntegrationTestCommon; using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Auth; using Xunit; @@ -22,7 +23,7 @@ public AuthenticationTest(ITestOutputHelper testOutputHelper) [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.ShortDuration)] public async Task CanAuthenticateToServiceWithAADToken() { - Func> tokenProvider = () => TestCommon.GetAuthenticationTokenAsync("https://batch.core.windows.net/"); + Func> tokenProvider = () => IntegrationTestCommon.GetAuthenticationTokenAsync("https://batch.core.windows.net/"); using (var client = await BatchClient.OpenAsync(new BatchTokenCredentials(TestCommon.Configuration.BatchAccountUrl, tokenProvider))) { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj index 39b5ac5eeff9..b18c5f18957a 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj @@ -18,6 +18,14 @@ + + $(LibraryNugetPackageFolder)\Azure.Batch.6.0.0\lib\net45\Azure.Batch.dll + True + + + $(LibraryNugetPackageFolder)\Common.1.0.0\lib\net45\Common.dll + True + $(LibraryNugetPackageFolder)\Microsoft.Azure.Management.Batch.3.0.0\lib\net45\Microsoft.Azure.Management.Batch.dll True @@ -35,6 +43,14 @@ $(LibraryNugetPackageFolder)\Microsoft.Data.Services.Client.5.7.0\lib\net40\Microsoft.Data.Services.Client.dll True + + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll + True + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll True @@ -64,6 +80,7 @@ $(LibraryNugetPackageFolder)\System.Spatial.5.7.0\lib\net40\System.Spatial.dll True + @@ -81,13 +98,13 @@ - - {3328fbbf-9c20-4775-b367-856c09dc13bf} - Batch - - + + + {71f7cd84-d760-425f-823b-def2eaae5dc1} + IntegrationTestCommon @@ -98,6 +115,7 @@ + diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CertificateUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CertificateUnitTests.cs similarity index 70% rename from src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CertificateUnitTests.cs rename to src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CertificateUnitTests.cs index 2ac75d4ca359..2ced2af02b75 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CertificateUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CertificateUnitTests.cs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -namespace Azure.Batch.Unit.Tests +namespace BatchClientIntegrationTests { using System; using System.Collections.Generic; @@ -21,12 +21,17 @@ using System.Security.Cryptography.X509Certificates; using BatchTestCommon; using Microsoft.Azure.Batch; + using Microsoft.Azure.Batch.Auth; using Microsoft.Azure.Batch.Common; - using TestUtilities; + using IntegrationTestCommon; using Xunit; using Xunit.Abstractions; using Protocol = Microsoft.Azure.Batch.Protocol; + // + // NOTE: These are really unit tests but they cannot live in the unit tests project right now because the method we use to generate certificates is not + // coreclr compatible + // public class CertificateUnitTests { private readonly ITestOutputHelper testOutputHelper; @@ -42,7 +47,7 @@ public CertificateUnitTests(ITestOutputHelper testOutputHelper) [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] public void TestCreateCerFileFromRawData() { - string filePath = TestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.cer", CertificateFilePrefix)); + string filePath = IntegrationTestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.cer", CertificateFilePrefix)); CertificateBuilder.CreateSelfSignedInFile("Foo", filePath, CertificateBuilder.Sha1Algorithm); TestCertificateFromRawData(filePath, CertificateBuilder.Sha1Algorithm); @@ -52,8 +57,8 @@ public void TestCreateCerFileFromRawData() [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] public void TestCreatePfxFileFromRawData() { - string filePath = TestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", CertificateFilePrefix)); - CertificateBuilder.CreateSelfSignedInFile("Foo", filePath, CertificateBuilder.Sha1Algorithm, password: CommonResources.CertificatePassword); + string filePath = IntegrationTestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", CertificateFilePrefix)); + CertificateBuilder.CreateSelfSignedInFile("Foo", filePath, CertificateBuilder.Sha1Algorithm, CommonResources.CertificatePassword); TestCertificateFromRawData(filePath, CertificateBuilder.Sha1Algorithm, CommonResources.CertificatePassword); } @@ -62,7 +67,7 @@ public void TestCreatePfxFileFromRawData() [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] public void TestCreateSha256Cer() { - string filePath = TestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", CertificateFilePrefix)); + string filePath = IntegrationTestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", CertificateFilePrefix)); CertificateBuilder.CreateSelfSignedInFile("Foo", filePath, CertificateBuilder.Sha256Algorithm); TestCertificateFromRawData(filePath, CertificateBuilder.Sha256Algorithm); @@ -72,7 +77,7 @@ public void TestCreateSha256Cer() [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] public void TestCreateSha256Pfx() { - string filePath = TestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", CertificateFilePrefix)); + string filePath = IntegrationTestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", CertificateFilePrefix)); CertificateBuilder.CreateSelfSignedInFile("Foo", filePath, CertificateBuilder.Sha256Algorithm, password: CommonResources.CertificatePassword); TestCertificateFromRawData(filePath, CertificateBuilder.Sha256Algorithm, CommonResources.CertificatePassword); @@ -84,7 +89,7 @@ private static void TestCertificateFromRawData(string certificateFileLocation, s try { - using (BatchClient batchClient = ClientUnitTestCommon.CreateDummyClient()) + using (BatchClient batchClient = CreateDummyClient()) { X509Certificate2 x509Certificate = password == null ? new X509Certificate2(certificateFileLocation) : new X509Certificate2(certificateFileLocation, password); byte[] cerBytes = x509Certificate.Export(X509ContentType.Cert); @@ -102,5 +107,24 @@ private static void TestCertificateFromRawData(string certificateFileLocation, s } } + private const string DummyBaseUrl = "testbatch://batch-test.windows-int.net"; + private const string DummyAccountName = "Dummy"; + private const string DummyAccountKey = "ZmFrZQ=="; + + private static BatchSharedKeyCredentials CreateDummySharedKeyCredential() + { + BatchSharedKeyCredentials credentials = new BatchSharedKeyCredentials( + DummyBaseUrl, + DummyAccountName, + DummyAccountKey); + + return credentials; + } + + private static BatchClient CreateDummyClient() + { + return BatchClient.Open(CreateDummySharedKeyCredential()); + } + } } diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudCertificateIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudCertificateIntegrationTests.cs index 70b63aca65ae..e0e446c84506 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudCertificateIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudCertificateIntegrationTests.cs @@ -21,6 +21,7 @@ using System.Threading.Tasks; using BatchTestCommon; using Fixtures; + using IntegrationTestCommon; using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Common; using IntegrationTestUtilities; @@ -48,8 +49,8 @@ public async Task TestCertificateVerbs() //Generate the certificates const string certificatePrefix = "testcertificatecrud"; - string cerFilePath = TestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.cer", certificatePrefix)); - string pfxFilePath = TestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", certificatePrefix)); + string cerFilePath = IntegrationTestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.cer", certificatePrefix)); + string pfxFilePath = IntegrationTestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", certificatePrefix)); IEnumerable certificates = GenerateCertificates(batchCli, cerFilePath, pfxFilePath); @@ -126,8 +127,8 @@ public async Task TestPoolCertificateReferencesWithUpdate() //Generate the certificates const string certificatePrefix = "poolwithcertificatereferences"; - string cerFilePath = TestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.cer", certificatePrefix)); - string pfxFilePath = TestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", certificatePrefix)); + string cerFilePath = IntegrationTestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.cer", certificatePrefix)); + string pfxFilePath = IntegrationTestCommon.GetTemporaryCertificateFilePath(string.Format("{0}.pfx", certificatePrefix)); IEnumerable certificates = GenerateCertificates(batchCli, cerFilePath, pfxFilePath); diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NuGet.config b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NuGet.config new file mode 100644 index 000000000000..64fa0290b5d9 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NuGet.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/packages.config b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/packages.config index d7c536d43979..e822abfc4e5e 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/packages.config +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/packages.config @@ -1,10 +1,13 @@  + + + diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp new file mode 100644 index 000000000000..197d9bcee5c9 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + {C809285A-784D-48E4-9D7A-F5685A19F595} + BatchTestCommon + .\obj + .\bin\ + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp.project.json b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp.project.json new file mode 100644 index 000000000000..a38fda4d57df --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp.project.json @@ -0,0 +1,35 @@ +{ + "version": "1.0.0", + "description": "Azure Batch Integration tests class library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "tags": [ "" ], + "projectUrl": "", + "licenseUrl": "" + }, + + "buildOptions": { + }, + "frameworks": { + "net45": { + "buildOptions": { "warningsAsErrors": true }, + "dependencies": { + "xunit": "2.1.0", + "xunit.runner.visualstudio": "2.1.0", + "Azure.Batch": { + "target": "project", + "version": "6.0.0" + }, + "IntegrationTestCommon": "1.0.0" + }, + "frameworkAssemblies": { + "System.Runtime": "", + "WindowsBase": "", + "System.Threading.Tasks": "" + } + } + }, + "dependencies": { + } +} \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Common/BatchTestCommon.xproj b/src/Batch/Client/Tests/ObjectModel/Common/BatchTestCommon.xproj new file mode 100644 index 000000000000..10eb37401513 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/Common/BatchTestCommon.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + {B697759F-6EF9-4142-8BD3-D78BF18C678E} + BatchTestCommon + .\obj + .\bin\ + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Common/TestCommon.cs b/src/Batch/Client/Tests/ObjectModel/Common/TestCommon.cs index 6fd18eb7d4d3..fd27aa32e360 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/TestCommon.cs +++ b/src/Batch/Client/Tests/ObjectModel/Common/TestCommon.cs @@ -16,20 +16,7 @@ { using System; using System.Collections.Generic; - using System.IO; - using System.IO.Compression; using System.Linq; - using System.Net; - using System.Net.Security; - using System.Security.Cryptography.X509Certificates; - using System.Threading.Tasks; - using Microsoft.Azure; - using Microsoft.Azure.Management.Batch; - using Microsoft.Azure.Management.Batch.Models; - using Microsoft.IdentityModel.Clients.ActiveDirectory; - using Microsoft.Rest; - using System.Text; - using Microsoft.WindowsAzure.Storage.Blob; public static class TestCommon { @@ -144,182 +131,5 @@ public static TestConfiguration Configuration { get { return configurationInstance.Value; } } - - public static BatchManagementClient OpenBatchManagementClient() - { - ServiceClientCredentials credentials; - - if (IsManagementUrlAValidProductionURL()) - { - string accessToken = GetAuthenticationToken("https://management.core.windows.net/"); - credentials = new TokenCredentials(accessToken); - } - else - { - credentials = GetBatchTestTenantCloudCredentials(); - } - - string managementUrl = Configuration.BatchManagementUrl; - - var managementClient = new BatchManagementClient(credentials) - { - BaseUri = new Uri(managementUrl), - SubscriptionId = Configuration.BatchSubscription - }; - - //Add the extra headers as specified in the configuration - foreach (KeyValuePair extraHeader in Configuration.BatchTRPExtraHeaders) - { - managementClient.HttpClient.DefaultRequestHeaders.Add(extraHeader.Key, extraHeader.Value); - } - - return managementClient; - } - - private static bool IsManagementUrlAValidProductionURL() - { - return new[] { "https://management.azure.com" }.Any(x => Configuration.BatchManagementUrl.StartsWith(x, StringComparison.OrdinalIgnoreCase)); - } - - public static string GetAuthenticationToken(string resource) - { - var authContext = new AuthenticationContext(Configuration.BatchAuthorityUrl); - - var authResult = authContext.AcquireToken(resource, new ClientCredential(Configuration.AzureAuthenticationClientId, Configuration.AzureAuthenticationClientSecret)); - - return authResult.AccessToken; - } - - public static async Task GetAuthenticationTokenAsync(string resource) - { - var authContext = new AuthenticationContext(Configuration.BatchAuthorityUrl); - - var authResult = await authContext.AcquireTokenAsync(resource, new ClientCredential(Configuration.AzureAuthenticationClientId, Configuration.AzureAuthenticationClientSecret)); - - return authResult.AccessToken; - } - - private static CertificateCredentials GetBatchTestTenantCloudCredentials() - { - X509Certificate2 certificate2 = null; - X509Store store = null; - - try - { - store = new X509Store(StoreLocation.CurrentUser); - - store.Open(OpenFlags.ReadOnly); - - X509Certificate2Collection certificates = store.Certificates; - - certificate2 = certificates.Cast().FirstOrDefault( - c => String.Equals( - c.Thumbprint, - Configuration.BatchTRPCertificateThumbprint(), - StringComparison.OrdinalIgnoreCase)); - - if (certificate2 == null) - { - throw new InvalidOperationException("The certificate with thumbprint '" + Configuration.BatchTRPCertificateThumbprint + - "' is not installed on your machine. Refer to the howto.txt for information about setting up your machine for client integration tests."); - } - } - finally - { - if (store != null) - { - store.Close(); - } - } - - return new CertificateCredentials(certificate2); - } - - public static async Task EnableAutoStorageAsync() - { - using (BatchManagementClient managementClient = OpenBatchManagementClient()) - { - //TODO: Why do we need this...? - ServicePointManager.ServerCertificateValidationCallback = - delegate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) - { - HttpWebRequest request = sender as HttpWebRequest; - if (request != null) - { - if (request.Address.ToString().Contains(Configuration.BatchManagementUrl)) - { - return true; - } - } - return sslPolicyErrors == SslPolicyErrors.None; //use the default validation for all other certificates - }; - - //If the account doesn't already have auto storage enabled, enable it - BatchAccount batchAccount = await managementClient.BatchAccount.GetAsync(Configuration.BatchAccountResourceGroup, Configuration.BatchAccountName); - if (batchAccount.AutoStorage == null) - { - const string classicStorageAccountGroup = "Microsoft.ClassicStorage"; - const string storageAccountGroup = "Microsoft.Storage"; - string resourceFormatString = $"/subscriptions/{Configuration.BatchSubscription}/resourceGroups/{Configuration.StorageAccountResourceGroup}/providers/" + "{0}" + - $"/storageAccounts/{Configuration.StorageAccountName}"; - - string classicStorageAccountFullResourceId = string.Format(resourceFormatString, classicStorageAccountGroup); - string storageAccountFullResourceId = string.Format(resourceFormatString, storageAccountGroup); - - var updateParameters = new BatchAccountUpdateParameters() - { - AutoStorage = new AutoStorageBaseProperties - { - StorageAccountId = classicStorageAccountFullResourceId - } - }; - try - { - await managementClient.BatchAccount.UpdateAsync(Configuration.BatchAccountResourceGroup, Configuration.BatchAccountName, updateParameters); - } - catch (Exception e) when (e.Message.Contains("The specified storage account could not be found")) - { - //If the storage account could not be found, it might be because we looked in "Classic" -- in that case swallow - //the exception. - } - - updateParameters.AutoStorage.StorageAccountId = storageAccountFullResourceId; - await managementClient.BatchAccount.UpdateAsync(Configuration.BatchAccountResourceGroup, Configuration.BatchAccountName, updateParameters); - } - } - } - - public static async Task UploadTestApplicationAsync(string storageUrl) - { - CloudBlockBlob blob = new CloudBlockBlob(new Uri(storageUrl)); - - const string dummyPackageContentFile = @"TestApplicationPackage.zip"; - - using (MemoryStream fakeApplicationPackageZip = new MemoryStream()) - { - using (ZipArchive zip = new ZipArchive(fakeApplicationPackageZip, ZipArchiveMode.Create, leaveOpen: true)) - { - ZipArchiveEntry entry = zip.CreateEntry(dummyPackageContentFile); - using (var s = entry.Open()) - { - byte[] bytes = Encoding.UTF8.GetBytes("The quick brown fox jumps over the lazy dog."); - s.Write(bytes, 0, bytes.Length); - } - } - - fakeApplicationPackageZip.Seek(0, SeekOrigin.Begin); - - await blob.UploadFromStreamAsync(fakeApplicationPackageZip).ConfigureAwait(false); - } - } - - public static string GetTemporaryCertificateFilePath(string fileName) - { - string certificateFolderPath = Path.Combine(Path.GetTempPath(), @"BatchTestCertificates"); - - Directory.CreateDirectory(certificateFolderPath); - - return Path.Combine(certificateFolderPath, fileName); - } } } \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Common/project.json b/src/Batch/Client/Tests/ObjectModel/Common/project.json new file mode 100644 index 000000000000..9ebb8b3cbca7 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/Common/project.json @@ -0,0 +1,50 @@ +{ + "version": "1.0.0", + "description": "Azure Batch test common library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "tags": [ "" ], + "projectUrl": "", + "licenseUrl": "" + }, + + "buildOptions": { + }, + "frameworks": { + "net45": { + "buildOptions": { "warningsAsErrors": true }, + "dependencies": { + }, + "frameworkAssemblies": { + "System.IO.Compression": "4.0.0.0" + } + }, + "netstandard1.5": { + "imports": [ "dnxcore50", "portable-net451+win8" ], + "buildOptions": { + "warningsAsErrors": false, + "define": [ "PORTABLE" ] + }, + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + } + }, + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "3.3.5", + "WindowsAzure.Storage": "8.0.1", + "Microsoft.Azure.Management.Batch": "3.0.0", + "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.8" + }, + "scripts": { + "postcompile": [ + "dotnet pack --no-build --configuration %compile:Configuration%", + "nuget add bin\\Debug\\Common.1.0.0.nupkg -Source ..\\..\\..\\LocalNuget -NonInteractive" + ] + } +} \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Common/CertificateBuilder.cs b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CertificateBuilder.cs similarity index 99% rename from src/Batch/Client/Tests/ObjectModel/Common/CertificateBuilder.cs rename to src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CertificateBuilder.cs index 610b5de90a98..f8cf644215f5 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/CertificateBuilder.cs +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CertificateBuilder.cs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -namespace BatchTestCommon +namespace IntegrationTestCommon { using System; using System.IO; diff --git a/src/Batch/Client/Tests/ObjectModel/Common/CommonResources.cs b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CommonResources.cs similarity index 95% rename from src/Batch/Client/Tests/ObjectModel/Common/CommonResources.cs rename to src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CommonResources.cs index 82696e2b6782..06ec5a8d2bdc 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/CommonResources.cs +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CommonResources.cs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -namespace BatchTestCommon +namespace IntegrationTestCommon { public static class CommonResources { diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs new file mode 100644 index 000000000000..197e7e05f74f --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs @@ -0,0 +1,205 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace IntegrationTestCommon +{ + using System; + using System.Collections.Generic; + using System.IO; + using System.IO.Compression; + using System.Linq; + using System.Net; + using System.Net.Security; + using System.Security.Cryptography.X509Certificates; + using System.Threading.Tasks; + using Microsoft.Azure; + using Microsoft.Azure.Management.Batch; + using Microsoft.Azure.Management.Batch.Models; + using Microsoft.IdentityModel.Clients.ActiveDirectory; + using System.Text; + using Microsoft.WindowsAzure.Storage.Blob; + using BatchTestCommon; + using Microsoft.Rest; + + public class IntegrationTestCommon + { + public static BatchManagementClient OpenBatchManagementClient() + { + ServiceClientCredentials credentials; + + if (IsManagementUrlAValidProductionURL()) + { + string accessToken = GetAuthenticationTokenAsync("https://management.core.windows.net/").Result; + credentials = new TokenCredentials(accessToken); + } + else + { + credentials = GetBatchTestTenantCloudCredentials(); + } + + string managementUrl = TestCommon.Configuration.BatchManagementUrl; + + var managementClient = new BatchManagementClient(credentials) + { + BaseUri = new Uri(managementUrl), + SubscriptionId = TestCommon.Configuration.BatchSubscription + }; + + //Add the extra headers as specified in the configuration + foreach (KeyValuePair extraHeader in TestCommon.Configuration.BatchTRPExtraHeaders) + { + managementClient.HttpClient.DefaultRequestHeaders.Add(extraHeader.Key, extraHeader.Value); + } + + return managementClient; + } + + private static bool IsManagementUrlAValidProductionURL() + { + return new[] { "https://management.azure.com" }.Any(x => TestCommon.Configuration.BatchManagementUrl.StartsWith(x, StringComparison.OrdinalIgnoreCase)); + } + + public static async Task GetAuthenticationTokenAsync(string resource) + { + var authContext = new AuthenticationContext(TestCommon.Configuration.BatchAuthorityUrl); + + var authResult = await authContext.AcquireTokenAsync(resource, new ClientCredential(TestCommon.Configuration.AzureAuthenticationClientId, TestCommon.Configuration.AzureAuthenticationClientSecret)); + + return authResult.AccessToken; + } + + private static CertificateCredentials GetBatchTestTenantCloudCredentials() + { + X509Certificate2 certificate2 = null; + X509Store store = null; + + try + { + store = new X509Store(StoreLocation.CurrentUser); + + store.Open(OpenFlags.ReadOnly); + + X509Certificate2Collection certificates = store.Certificates; + + certificate2 = certificates.Cast().FirstOrDefault( + c => String.Equals( + c.Thumbprint, + TestCommon.Configuration.BatchTRPCertificateThumbprint, + StringComparison.OrdinalIgnoreCase)); + + if (certificate2 == null) + { + throw new InvalidOperationException("The certificate with thumbprint '" + TestCommon.Configuration.BatchTRPCertificateThumbprint + + "' is not installed on your machine. Refer to the howto.txt for information about setting up your machine for client integration tests."); + } + } + finally + { + if (store != null) + { + store.Close(); + } + } + + return new CertificateCredentials(certificate2); + } + + public static async Task EnableAutoStorageAsync() + { + using (BatchManagementClient managementClient = OpenBatchManagementClient()) + { + //TODO: Why do we need this...? + ServicePointManager.ServerCertificateValidationCallback = + delegate (object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) + { + HttpWebRequest request = sender as HttpWebRequest; + if (request != null) + { + if (request.Address.ToString().Contains(TestCommon.Configuration.BatchManagementUrl)) + { + return true; + } + } + return sslPolicyErrors == SslPolicyErrors.None; //use the default validation for all other certificates + }; + + //If the account doesn't already have auto storage enabled, enable it + BatchAccount batchAccount = await managementClient.BatchAccount.GetAsync(TestCommon.Configuration.BatchAccountResourceGroup, TestCommon.Configuration.BatchAccountName); + if (batchAccount.AutoStorage == null) + { + const string classicStorageAccountGroup = "Microsoft.ClassicStorage"; + const string storageAccountGroup = "Microsoft.Storage"; + string resourceFormatString = $"/subscriptions/{TestCommon.Configuration.BatchSubscription}/resourceGroups/{TestCommon.Configuration.StorageAccountResourceGroup}/providers/" + "{0}" + + $"/storageAccounts/{TestCommon.Configuration.StorageAccountName}"; + + string classicStorageAccountFullResourceId = string.Format(resourceFormatString, classicStorageAccountGroup); + string storageAccountFullResourceId = string.Format(resourceFormatString, storageAccountGroup); + + var updateParameters = new BatchAccountUpdateParameters() + { + AutoStorage = new AutoStorageBaseProperties + { + StorageAccountId = classicStorageAccountFullResourceId + } + }; + try + { + await managementClient.BatchAccount.UpdateAsync(TestCommon.Configuration.BatchAccountResourceGroup, TestCommon.Configuration.BatchAccountName, updateParameters); + } + catch (Exception e) when (e.Message.Contains("The specified storage account could not be found")) + { + //If the storage account could not be found, it might be because we looked in "Classic" -- in that case swallow + //the exception. + } + + updateParameters.AutoStorage.StorageAccountId = storageAccountFullResourceId; + await managementClient.BatchAccount.UpdateAsync(TestCommon.Configuration.BatchAccountResourceGroup, TestCommon.Configuration.BatchAccountName, updateParameters); + } + } + } + + public static async Task UploadTestApplicationAsync(string storageUrl) + { + CloudBlockBlob blob = new CloudBlockBlob(new Uri(storageUrl)); + + const string dummyPackageContentFile = @"TestApplicationPackage.zip"; + + using (MemoryStream fakeApplicationPackageZip = new MemoryStream()) + { + using (ZipArchive zip = new ZipArchive(fakeApplicationPackageZip, ZipArchiveMode.Create, leaveOpen: true)) + { + ZipArchiveEntry entry = zip.CreateEntry(dummyPackageContentFile); + using (var s = entry.Open()) + { + byte[] bytes = Encoding.UTF8.GetBytes("The quick brown fox jumps over the lazy dog."); + s.Write(bytes, 0, bytes.Length); + } + } + + fakeApplicationPackageZip.Seek(0, SeekOrigin.Begin); + + await blob.UploadFromStreamAsync(fakeApplicationPackageZip).ConfigureAwait(false); + } + } + + public static string GetTemporaryCertificateFilePath(string fileName) + { + string certificateFolderPath = Path.Combine(Path.GetTempPath(), @"BatchTestCertificates"); + + Directory.CreateDirectory(certificateFolderPath); + + return Path.Combine(certificateFolderPath, fileName); + } + } +} diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj new file mode 100644 index 000000000000..8ceb088aee87 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj @@ -0,0 +1,94 @@ + + + + + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1} + Library + Properties + IntegrationTestCommon + IntegrationTestCommon + + + 512 + true + true + + + + + $(LibraryNugetPackageFolder)\Common.1.0.0\lib\net45\Common.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Azure.Management.Batch.3.0.0\lib\net45\Microsoft.Azure.Management.Batch.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Data.Edm.5.7.0\lib\net40\Microsoft.Data.Edm.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Data.OData.5.7.0\lib\net40\Microsoft.Data.OData.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Data.Services.Client.5.7.0\lib\net40\Microsoft.Data.Services.Client.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.3.3.5\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + True + + + $(LibraryNugetPackageFolder)\WindowsAzure.Storage.8.0.1\lib\net45\Microsoft.WindowsAzure.Storage.dll + True + + + $(LibraryNugetPackageFolder)\Mono.Security.3.2.3.0\lib\net45\Mono.Security.dll + True + + + $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + True + + + + + + + + + + + $(LibraryNugetPackageFolder)\System.Spatial.5.7.0\lib\net40\System.Spatial.dll + True + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.xproj b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.xproj new file mode 100644 index 000000000000..697e91c3f254 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 71f7cd84-d760-425f-823b-def2eaae5dc1 + IntegrationTestCommon + .\obj + .\bin\ + v4.5 + + + + 2.0 + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/NuGet.config b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/NuGet.config new file mode 100644 index 000000000000..64fa0290b5d9 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/NuGet.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/Properties/AssemblyInfo.cs b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..d71f8ec7d6fb --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("IntegrationTestCommon")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("71f7cd84-d760-425f-823b-def2eaae5dc1")] diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/packages.config b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/packages.config new file mode 100644 index 000000000000..cc794f460237 --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/packages.config @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/temp.project.json b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/temp.project.json new file mode 100644 index 000000000000..5f7a02b5f7ae --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/temp.project.json @@ -0,0 +1,32 @@ +{ + "version": "1.0.0", + "description": "Azure Batch integration test common library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "tags": [ "" ], + "projectUrl": "", + "licenseUrl": "" + }, + + "buildOptions": { + }, + "frameworks": { + "net45": { + "buildOptions": { "warningsAsErrors": true }, + "dependencies": { + "Mono.Security": "3.2.3.0", + "Microsoft.Azure.Management.Batch": "3.0.0", + "Microsoft.Rest.ClientRuntime.Azure": "3.3.5", + "Microsoft.IdentityModel.Clients.ActiveDirectory": "2.11.10918.1222", + "WindowsAzure.Storage": "8.0.1", + "Common": "1.0.0" + }, + "frameworkAssemblies": { + "System.IO.Compression": "4.0.0.0" + } + } + }, + "dependencies": { + } +} \ No newline at end of file diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs index 6f6ed622b025..67f34e572436 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs @@ -21,6 +21,7 @@ using System.IO.Compression; using System.Text; using BatchTestCommon; + using IntegrationTestCommon; using Microsoft.Azure.Management.Batch; using Microsoft.Azure.Management.Batch.Models; using Microsoft.WindowsAzure.Storage.Blob; @@ -33,7 +34,7 @@ public static async Task UpdateApplicationPackageAsync(string applicationId, str string accountName = TestCommon.Configuration.BatchAccountName; string resourceGroupName = TestCommon.Configuration.BatchAccountResourceGroup; - BatchManagementClient mgmtClient = TestCommon.OpenBatchManagementClient(); + BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient(); if (hasDefaultVersion) { @@ -58,7 +59,7 @@ public static async Task UploadTestApplicationPackageIfNotAlreadyUploadedAsync(s string accountName = TestCommon.Configuration.BatchAccountName; string resourceGroupName = TestCommon.Configuration.BatchAccountResourceGroup; - using (BatchManagementClient mgmtClient = TestCommon.OpenBatchManagementClient()) + using (BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) { var applicationSummaries = await mgmtClient.Application.ListAsync(resourceGroupName, accountName); @@ -77,13 +78,13 @@ private static async Task UploadTestApplicationAndActivateAsync(string appPackag { const string format = "zip"; - using (BatchManagementClient mgmtClient = TestCommon.OpenBatchManagementClient()) + using (BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) { var addResponse = await mgmtClient.ApplicationPackage.CreateAsync(resourceGroupName, accountName, appPackageName, applicationVersion).ConfigureAwait(false); var storageUrl = addResponse.StorageUrl; - await TestCommon.UploadTestApplicationAsync(storageUrl).ConfigureAwait(false); + await IntegrationTestCommon.UploadTestApplicationAsync(storageUrl).ConfigureAwait(false); await mgmtClient.ApplicationPackage.ActivateAsync(resourceGroupName, accountName, appPackageName, applicationVersion, format).ConfigureAwait(false); } diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj index a52c2409597b..27bf99bd30d2 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj @@ -16,6 +16,14 @@ + + ..\..\..\..\..\..\Packages\Azure.Batch.6.0.0\lib\net45\Azure.Batch.dll + True + + + ..\..\..\..\..\..\Packages\Common.1.0.0\lib\net45\Common.dll + True + $(LibraryNugetPackageFolder)\Microsoft.Azure.Management.Batch.3.0.0\lib\net45\Microsoft.Azure.Management.Batch.dll True @@ -32,6 +40,14 @@ $(LibraryNugetPackageFolder)\Microsoft.Data.Services.Client.5.7.0\lib\net40\Microsoft.Data.Services.Client.dll True + + ..\..\..\..\..\..\Packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + True + + + ..\..\..\..\..\..\Packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll + True + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll True @@ -64,6 +80,7 @@ $(LibraryNugetPackageFolder)\System.Spatial.5.7.0\lib\net40\System.Spatial.dll True + @@ -84,13 +101,17 @@ - + + + + {71f7cd84-d760-425f-823b-def2eaae5dc1} + IntegrationTestCommon diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs index 91840dcb78ef..0315973a9bf4 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs @@ -21,6 +21,7 @@ using System.Threading; using System.Threading.Tasks; using BatchTestCommon; + using IntegrationTestCommon; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; using Microsoft.Azure.Management.Batch; @@ -43,7 +44,7 @@ public IntegrationJobApplicationPackageReferencesTests(ITestOutputHelper output) { this.output = output; - TestCommon.EnableAutoStorageAsync().Wait(); + IntegrationTestCommon.EnableAutoStorageAsync().Wait(); ApplicationPackageCommon.UploadTestApplicationPackageIfNotAlreadyUploadedAsync(AppPackageName, Version).Wait(); ApplicationPackageCommon.UpdateApplicationPackageAsync(AppPackageName, Version, "My First App", false).Wait(); @@ -183,7 +184,7 @@ private string WaitForAutoPool(BatchServiceClient client, string jobId) public void Dispose() { - BatchManagementClient mgmtClient = TestCommon.OpenBatchManagementClient(); + BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient(); string accountName = TestCommon.Configuration.BatchAccountName; string resourceGroupName = TestCommon.Configuration.BatchAccountResourceGroup; diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs index 64315c032816..9d2060fdfa7a 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs @@ -20,9 +20,8 @@ using System.Net; using System.Threading; using System.Threading.Tasks; - using BatchTestCommon; - + using IntegrationTestCommon; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; using Microsoft.Azure.Management.Batch; @@ -416,7 +415,7 @@ public void CanPatchPoolByDeletingAppPkgRefs() public void Dispose() { - using (var mgmtClient = TestCommon.OpenBatchManagementClient()) + using (var mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) { string accountName = TestCommon.Configuration.BatchAccountName; string resourceGroupName = TestCommon.Configuration.BatchAccountResourceGroup; diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config index 6b65611c8f10..5c5facc19adb 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config @@ -1,10 +1,13 @@  + + + diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs index 3f7f0dba0c8f..f9913f222dd7 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs @@ -26,7 +26,7 @@ public static void Main(string[] args) { GenerateModelFiles(); - GenerateSomeRoslynFiles(); + //GenerateSomeRoslynFiles(); } private static void GenerateModelFiles() @@ -45,7 +45,7 @@ private static void GenerateModelFiles() } seen.Add(type.Name); - string outputDirectory = "../../../../../src/Generated"; + string outputDirectory = "../../../../../src/Azure.Batch/Generated"; string outputFilePath = Path.Combine(outputDirectory, type.Name + ".cs"); string innerClassString; @@ -81,7 +81,7 @@ private static string GetSourceDirectory([System.Runtime.CompilerServices.Caller private static void GenerateSomeRoslynFiles() { - var projectFile = @"..\..\..\..\..\src\Batch.csproj"; + var projectFile = @"..\..\..\..\..\src\Azure.Batch\Batch.csproj"; IEnumerable batchRequests = BatchRequestTemplateBuilder.GetBatchRequestTemplatesAsync(projectFile).Result; NamedBatchRequests generator = new NamedBatchRequests(batchRequests); diff --git a/src/Batch/Client/global.json b/src/Batch/Client/global.json new file mode 100644 index 000000000000..bc64a565c641 --- /dev/null +++ b/src/Batch/Client/global.json @@ -0,0 +1,8 @@ +{ + "projects": [ + "src","tests/objectmodel" + ], + "sdk": { + "version": "1.0.0-preview2-003121" + } +} \ No newline at end of file From fb3dc4845ef5e47161d0ec8719a088fda5559794 Mon Sep 17 00:00:00 2001 From: matthchr Date: Tue, 21 Feb 2017 16:31:19 -0800 Subject: [PATCH 026/137] Horrible copy thing --- src/Batch/Client/Batch.sln | 97 ---- .../Azure.Batch/Azure.Batch.nuget.proj.old | 9 - .../Src/Azure.Batch/Azure.Batch.nuspec.old | 37 -- src/Batch/Client/Src/Azure.Batch/Batch.csproj | 253 ---------- src/Batch/Client/Src/Azure.Batch/project.json | 6 - .../ObjectModel/Azure.Batch.Unit.Tests/temp | 0 ...=> BatchClientIntegrationTests.csproj.old} | 0 .../BatchClientIntegrationTests/NuGet.config | 7 - .../BatchClientIntegrationTests/temp | 21 - .../temp.project.json | 35 -- .../Tests/ObjectModel/Common/project.json | 6 - ...sproj => IntegrationTestCommon.csproj.old} | 0 .../IntegrationTestCommon.xproj | 21 - .../IntegrationTestCommon/NuGet.config | 7 - .../IntegrationTestCommon/temp.project.json | 32 -- ...> ConfigureAwaitAnalyzer.Tests.csproj.old} | 0 ...proj => ConfigureAwaitAnalyzer.csproj.old} | 0 ...sproj => CodeGenerationLibrary.csproj.old} | 0 ...oj => ObjectModelCodeGenerator.csproj.old} | 0 ...ser.csproj => ProxyLayerParser.csproj.old} | 0 src/Batch/ClientIntegrationTesting/Batch.sln | 156 +++++++ .../Src/Azure.Batch/Batch.csproj | 95 ++++ .../BatchErrorMessages.Designer.cs | 288 ++++++++++++ .../Src/Azure.Batch/BatchErrorMessages.resx | 195 ++++++++ .../Src/Azure.Batch/packages.config | 6 + .../Azure.Batch.Unit.Tests.csproj | 53 +-- .../StaticAnalysisUnitTests.cs | 182 ++++++++ .../Azure.Batch.Unit.Tests/packages.config | 13 + .../BatchClientIntegrationTests.csproj | 133 ++++++ .../packages.config | 21 + .../ObjectModel/Common/BatchTestCommon.csproj | 8 +- .../Tests/ObjectModel/Common/packages.config | 21 + .../IntegrationTestCommon.csproj | 94 ++++ .../IntegrationTestCommon/packages.config | 16 + .../BatchProxyIntegrationTests/App.config | 30 ++ .../ApplicationPackageCommon.cs | 93 ++++ .../BatchProxyIntegrationTests.csproj | 29 +- ...ionJobApplicationPackageReferencesTests.cs | 200 ++++++++ ...onPoolApplicationPackageReferencesTests.cs | 436 ++++++++++++++++++ .../TestUtilities.cs | 49 ++ .../packages.config | 22 + .../ConfigureAwaitAnalyzer.Tests.csproj | 144 ++++++ .../packages.config | 18 + .../ConfigureAwaitAnalyzer.csproj | 92 ++++ .../ConfigureAwaitAnalyzer/packages.config | 12 + .../CodeGenerationLibrary.csproj | 52 +++ .../CodeGenerationLibrary/packages.config | 4 + .../ObjectModelCodeGenerator.csproj | 138 ++++++ .../ObjectModelCodeGenerator/packages.config | 6 + .../RoslynParser/ProxyLayerParser.csproj | 112 +++++ .../RoslynParser/packages.config | 26 ++ .../ClientIntegrationTesting/nuget.config | 6 + 52 files changed, 2678 insertions(+), 603 deletions(-) delete mode 100644 src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuget.proj.old delete mode 100644 src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuspec.old delete mode 100644 src/Batch/Client/Src/Azure.Batch/Batch.csproj create mode 100644 src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/temp rename src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/{BatchClientIntegrationTests.csproj => BatchClientIntegrationTests.csproj.old} (100%) delete mode 100644 src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NuGet.config delete mode 100644 src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp delete mode 100644 src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp.project.json rename src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/{IntegrationTestCommon.csproj => IntegrationTestCommon.csproj.old} (100%) delete mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.xproj delete mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/NuGet.config delete mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/temp.project.json rename src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/{ConfigureAwaitAnalyzer.Tests.csproj => ConfigureAwaitAnalyzer.Tests.csproj.old} (100%) rename src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/{ConfigureAwaitAnalyzer.csproj => ConfigureAwaitAnalyzer.csproj.old} (100%) rename src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/{CodeGenerationLibrary.csproj => CodeGenerationLibrary.csproj.old} (100%) rename src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/{ObjectModelCodeGenerator.csproj => ObjectModelCodeGenerator.csproj.old} (100%) rename src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/{ProxyLayerParser.csproj => ProxyLayerParser.csproj.old} (100%) create mode 100644 src/Batch/ClientIntegrationTesting/Batch.sln create mode 100644 src/Batch/ClientIntegrationTesting/Src/Azure.Batch/Batch.csproj create mode 100644 src/Batch/ClientIntegrationTesting/Src/Azure.Batch/BatchErrorMessages.Designer.cs create mode 100644 src/Batch/ClientIntegrationTesting/Src/Azure.Batch/BatchErrorMessages.resx create mode 100644 src/Batch/ClientIntegrationTesting/Src/Azure.Batch/packages.config rename src/Batch/{Client => ClientIntegrationTesting}/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.csproj (72%) create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ObjectModel/BatchClientIntegrationTests/packages.config rename src/Batch/{Client => ClientIntegrationTesting}/Tests/ObjectModel/Common/BatchTestCommon.csproj (96%) create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Common/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/App.config create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs rename src/Batch/{Client => ClientIntegrationTesting}/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj (85%) create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/TestUtilities.cs create mode 100644 src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj create mode 100644 src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/RoslynParser/packages.config create mode 100644 src/Batch/ClientIntegrationTesting/nuget.config diff --git a/src/Batch/Client/Batch.sln b/src/Batch/Client/Batch.sln index a74eef1c8da1..d6591126126f 100644 --- a/src/Batch/Client/Batch.sln +++ b/src/Batch/Client/Batch.sln @@ -18,42 +18,6 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "BatchTestCommon", "Tests\Ob EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{29D10BE2-8818-46D0-9104-39FD62BD7A24}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BatchClientIntegrationTests", "Tests\ObjectModel\BatchClientIntegrationTests\BatchClientIntegrationTests.csproj", "{C809285A-784D-48E4-9D7A-F5685A19F595}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BatchClientIntegrationTests", "BatchClientIntegrationTests", "{62E96F01-6F15-420C-BA43-0BA18914DE5E}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BatchProxyIntegrationTests", "Tests\ProtocolLayer\BatchProxyIntegrationTests\BatchProxyIntegrationTests.csproj", "{FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ProtocolLayer", "ProtocolLayer", "{E105A452-302D-4CC8-A371-49EF488B4DF1}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BatchProxyIntegrationTests", "BatchProxyIntegrationTests", "{565840EA-7ADC-438C-8CB3-23D56A0C57BD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{3DE96B66-463F-470B-92F2-7284A2DD022C}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeGenerationLibrary", "Tools\ObjectModelCodeGeneration\CodeGenerationLibrary\CodeGenerationLibrary.csproj", "{4D93A489-2576-400B-93CD-9340A892B0E8}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ObjectModelCodeGeneration", "ObjectModelCodeGeneration", "{CB71AF88-3513-4109-92D4-0BA8770BB454}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CodeGenerationLibrary", "CodeGenerationLibrary", "{64425AA2-0B20-46B6-8BC6-A4D64C1C50D0}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ObjectModelCodeGenerator", "Tools\ObjectModelCodeGeneration\ObjectModelCodeGenerator\ObjectModelCodeGenerator.csproj", "{8734474A-543E-46C3-8E1B-6B37E4B97C78}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ObjectModelCodeGenerator", "ObjectModelCodeGenerator", "{380D5910-2411-4E93-AE2B-1533033A8D79}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ProxyLayerParser", "ProxyLayerParser", "{686EAF74-B419-4310-AFD8-3710E8E8061F}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxyLayerParser", "Tools\ObjectModelCodeGeneration\RoslynParser\ProxyLayerParser.csproj", "{13A13BB2-684F-4A2B-BCF9-34A9F9616599}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ConfigureAwaitAnalyzer", "ConfigureAwaitAnalyzer", "{D007B9BF-D886-4B0A-87E0-AEB6EFB1390F}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureAwaitAnalyzer", "Tools\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer.csproj", "{48215D6D-DB21-48B8-AB03-1297A94DF696}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureAwaitAnalyzer.Tests", "Tools\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer.Tests\ConfigureAwaitAnalyzer.Tests.csproj", "{5F8690AA-765A-4112-8C68-0BB00C322FDB}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IntegrationTestCommon", "IntegrationTestCommon", "{DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IntegrationTestCommon", "Tests\ObjectModel\IntegrationTestCommon\IntegrationTestCommon.csproj", "{71F7CD84-D760-425F-823B-DEF2EAAE5DC1}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4C8CADC5-571C-42D0-92AF-9BC0CFDEBBF6}" ProjectSection(SolutionItems) = preProject global.json = global.json @@ -82,50 +46,6 @@ Global {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Release|Any CPU.ActiveCfg = Debug|Any CPU {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Portable-Release|Any CPU.ActiveCfg = Debug|Any CPU - {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU - {C809285A-784D-48E4-9D7A-F5685A19F595}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {C809285A-784D-48E4-9D7A-F5685A19F595}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {4D93A489-2576-400B-93CD-9340A892B0E8}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {4D93A489-2576-400B-93CD-9340A892B0E8}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {4D93A489-2576-400B-93CD-9340A892B0E8}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {4D93A489-2576-400B-93CD-9340A892B0E8}.Portable-Debug|Any CPU.ActiveCfg = Portable-Release|Any CPU - {4D93A489-2576-400B-93CD-9340A892B0E8}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU - {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {48215D6D-DB21-48B8-AB03-1297A94DF696}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {48215D6D-DB21-48B8-AB03-1297A94DF696}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {48215D6D-DB21-48B8-AB03-1297A94DF696}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {48215D6D-DB21-48B8-AB03-1297A94DF696}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU - {48215D6D-DB21-48B8-AB03-1297A94DF696}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {48215D6D-DB21-48B8-AB03-1297A94DF696}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU - {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU - {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU - {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU - {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -137,22 +57,5 @@ Global {1C4CF4F3-AE0A-4194-9C99-087DFC6E3DC2} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} {B697759F-6EF9-4142-8BD3-D78BF18C678E} = {29D10BE2-8818-46D0-9104-39FD62BD7A24} {29D10BE2-8818-46D0-9104-39FD62BD7A24} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} - {C809285A-784D-48E4-9D7A-F5685A19F595} = {62E96F01-6F15-420C-BA43-0BA18914DE5E} - {62E96F01-6F15-420C-BA43-0BA18914DE5E} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} - {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12} = {565840EA-7ADC-438C-8CB3-23D56A0C57BD} - {E105A452-302D-4CC8-A371-49EF488B4DF1} = {C62E0485-00BD-4C9E-912D-752B0B50E050} - {565840EA-7ADC-438C-8CB3-23D56A0C57BD} = {E105A452-302D-4CC8-A371-49EF488B4DF1} - {4D93A489-2576-400B-93CD-9340A892B0E8} = {64425AA2-0B20-46B6-8BC6-A4D64C1C50D0} - {CB71AF88-3513-4109-92D4-0BA8770BB454} = {3DE96B66-463F-470B-92F2-7284A2DD022C} - {64425AA2-0B20-46B6-8BC6-A4D64C1C50D0} = {CB71AF88-3513-4109-92D4-0BA8770BB454} - {8734474A-543E-46C3-8E1B-6B37E4B97C78} = {380D5910-2411-4E93-AE2B-1533033A8D79} - {380D5910-2411-4E93-AE2B-1533033A8D79} = {CB71AF88-3513-4109-92D4-0BA8770BB454} - {686EAF74-B419-4310-AFD8-3710E8E8061F} = {CB71AF88-3513-4109-92D4-0BA8770BB454} - {13A13BB2-684F-4A2B-BCF9-34A9F9616599} = {686EAF74-B419-4310-AFD8-3710E8E8061F} - {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} = {3DE96B66-463F-470B-92F2-7284A2DD022C} - {48215D6D-DB21-48B8-AB03-1297A94DF696} = {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} - {5F8690AA-765A-4112-8C68-0BB00C322FDB} = {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} - {DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} - {71F7CD84-D760-425F-823B-DEF2EAAE5DC1} = {DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647} EndGlobalSection EndGlobal diff --git a/src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuget.proj.old b/src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuget.proj.old deleted file mode 100644 index d709d23e2277..000000000000 --- a/src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuget.proj.old +++ /dev/null @@ -1,9 +0,0 @@ - - - - - 6.0.0 - $(MSBuildThisFileDirectory) - - - diff --git a/src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuspec.old b/src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuspec.old deleted file mode 100644 index 6d82f1e75d25..000000000000 --- a/src/Batch/Client/Src/Azure.Batch/Azure.Batch.nuspec.old +++ /dev/null @@ -1,37 +0,0 @@ - - - - Azure.Batch - $version$ - Microsoft Azure Batch - Microsoft - azure-sdk, Microsoft - http://aka.ms/windowsazureapache2 - https://github.com/Azure/azure-sdk-for-net - http://go.microsoft.com/fwlink/?LinkID=288890 - true - -This client library provides access to the Microsoft Azure Batch service. - -Visit our home page for more detail - http://azure.microsoft.com/services/batch/. - -For technical overview, see http://azure.microsoft.com/documentation/articles/batch-technical-overview/. - -API reference can be found at http://go.microsoft.com/fwlink/?LinkId=717949. - The client library for the Microsoft Azure Batch service. - -For detailed release notes, see https://github.com/Azure/azure-sdk-for-net/blob/AutoRest/src/Batch/Client/changelog.md - - Microsoft, Azure, Batch, windowsazureofficial - - - - - - - - - - - - diff --git a/src/Batch/Client/Src/Azure.Batch/Batch.csproj b/src/Batch/Client/Src/Azure.Batch/Batch.csproj deleted file mode 100644 index 3efa9994b999..000000000000 --- a/src/Batch/Client/Src/Azure.Batch/Batch.csproj +++ /dev/null @@ -1,253 +0,0 @@ - - - - - {3328FBBF-9C20-4775-B367-856C09DC13BF} - AnyCPU - Library - Properties - Microsoft.Azure.Batch - Microsoft.Azure.Batch - $(ProjectDir)$(OutputPath)$(AssemblyName).xml - true - - - - - - - - - $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.3.3.5\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll - True - - - $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll - True - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - True - BatchClientErrorMessages.resx - - - - - - - ResXFileCodeGenerator - BatchClientErrorMessages.Designer.cs - Designer - - - - - - - - - - - - - - - - - - True - True - BatchErrorMessages.resx - - - - - - - ResXFileCodeGenerator - BatchErrorMessages.Designer.cs - Designer - - - - - - - - - - Designer - - - - - {48215d6d-db21-48b8-ab03-1297a94df696} - ConfigureAwaitAnalyzer - false - False - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Src/Azure.Batch/project.json b/src/Batch/Client/Src/Azure.Batch/project.json index 9adce8b2ff61..555a3c1a4388 100644 --- a/src/Batch/Client/Src/Azure.Batch/project.json +++ b/src/Batch/Client/Src/Azure.Batch/project.json @@ -43,11 +43,5 @@ "System.Threading.Tasks": "4.3.0" } } - }, - "scripts": { - "postcompile": [ - "dotnet pack --no-build --configuration %compile:Configuration%", - "nuget add bin\\Debug\\Azure.Batch.6.0.0.nupkg -Source ..\\..\\LocalNuget -NonInteractive" - ] } } \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/temp b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/temp new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj.old similarity index 100% rename from src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj rename to src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj.old diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NuGet.config b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NuGet.config deleted file mode 100644 index 64fa0290b5d9..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NuGet.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp deleted file mode 100644 index 197d9bcee5c9..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - {C809285A-784D-48E4-9D7A-F5685A19F595} - BatchTestCommon - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp.project.json b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp.project.json deleted file mode 100644 index a38fda4d57df..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/temp.project.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": "1.0.0", - "description": "Azure Batch Integration tests class library", - "authors": [ "Microsoft Corporation" ], - - "packOptions": { - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "" - }, - - "buildOptions": { - }, - "frameworks": { - "net45": { - "buildOptions": { "warningsAsErrors": true }, - "dependencies": { - "xunit": "2.1.0", - "xunit.runner.visualstudio": "2.1.0", - "Azure.Batch": { - "target": "project", - "version": "6.0.0" - }, - "IntegrationTestCommon": "1.0.0" - }, - "frameworkAssemblies": { - "System.Runtime": "", - "WindowsBase": "", - "System.Threading.Tasks": "" - } - } - }, - "dependencies": { - } -} \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Common/project.json b/src/Batch/Client/Tests/ObjectModel/Common/project.json index 9ebb8b3cbca7..8962341f134e 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/project.json +++ b/src/Batch/Client/Tests/ObjectModel/Common/project.json @@ -40,11 +40,5 @@ "WindowsAzure.Storage": "8.0.1", "Microsoft.Azure.Management.Batch": "3.0.0", "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.8" - }, - "scripts": { - "postcompile": [ - "dotnet pack --no-build --configuration %compile:Configuration%", - "nuget add bin\\Debug\\Common.1.0.0.nupkg -Source ..\\..\\..\\LocalNuget -NonInteractive" - ] } } \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj.old similarity index 100% rename from src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj rename to src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj.old diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.xproj b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.xproj deleted file mode 100644 index 697e91c3f254..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - 71f7cd84-d760-425f-823b-def2eaae5dc1 - IntegrationTestCommon - .\obj - .\bin\ - v4.5 - - - - 2.0 - - - \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/NuGet.config b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/NuGet.config deleted file mode 100644 index 64fa0290b5d9..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/NuGet.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/temp.project.json b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/temp.project.json deleted file mode 100644 index 5f7a02b5f7ae..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/temp.project.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "version": "1.0.0", - "description": "Azure Batch integration test common library", - "authors": [ "Microsoft Corporation" ], - - "packOptions": { - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "" - }, - - "buildOptions": { - }, - "frameworks": { - "net45": { - "buildOptions": { "warningsAsErrors": true }, - "dependencies": { - "Mono.Security": "3.2.3.0", - "Microsoft.Azure.Management.Batch": "3.0.0", - "Microsoft.Rest.ClientRuntime.Azure": "3.3.5", - "Microsoft.IdentityModel.Clients.ActiveDirectory": "2.11.10918.1222", - "WindowsAzure.Storage": "8.0.1", - "Common": "1.0.0" - }, - "frameworkAssemblies": { - "System.IO.Compression": "4.0.0.0" - } - } - }, - "dependencies": { - } -} \ No newline at end of file diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj.old similarity index 100% rename from src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj rename to src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj.old diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj.old similarity index 100% rename from src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj rename to src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj.old diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj.old similarity index 100% rename from src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj rename to src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj.old diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj.old similarity index 100% rename from src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj rename to src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj.old diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj b/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj.old similarity index 100% rename from src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj rename to src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj.old diff --git a/src/Batch/ClientIntegrationTesting/Batch.sln b/src/Batch/ClientIntegrationTesting/Batch.sln new file mode 100644 index 000000000000..49ddb977b65f --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Batch.sln @@ -0,0 +1,156 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Batch", "Src\Azure.Batch\Batch.csproj", "{3328FBBF-9C20-4775-B367-856C09DC13BF}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Src", "Src", "{9EC38B72-3B6D-46DF-89B4-1CF689C3CB2C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Batch.Unit.Tests", "Tests\ObjectModel\Azure.Batch.Unit.Tests\Azure.Batch.Unit.Tests.csproj", "{37F66AC7-C54C-4FE2-B691-5260D3971BAB}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{C62E0485-00BD-4C9E-912D-752B0B50E050}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ObjectModel", "ObjectModel", "{973E84B0-A7DE-46EC-AD73-A5224D8041C8}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Azure.Batch.Unit.Tests", "Azure.Batch.Unit.Tests", "{1C4CF4F3-AE0A-4194-9C99-087DFC6E3DC2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BatchTestCommon", "Tests\ObjectModel\Common\BatchTestCommon.csproj", "{B697759F-6EF9-4142-8BD3-D78BF18C678E}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{29D10BE2-8818-46D0-9104-39FD62BD7A24}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BatchClientIntegrationTests", "Tests\ObjectModel\BatchClientIntegrationTests\BatchClientIntegrationTests.csproj", "{C809285A-784D-48E4-9D7A-F5685A19F595}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BatchClientIntegrationTests", "BatchClientIntegrationTests", "{62E96F01-6F15-420C-BA43-0BA18914DE5E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BatchProxyIntegrationTests", "Tests\ProtocolLayer\BatchProxyIntegrationTests\BatchProxyIntegrationTests.csproj", "{FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ProtocolLayer", "ProtocolLayer", "{E105A452-302D-4CC8-A371-49EF488B4DF1}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BatchProxyIntegrationTests", "BatchProxyIntegrationTests", "{565840EA-7ADC-438C-8CB3-23D56A0C57BD}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{3DE96B66-463F-470B-92F2-7284A2DD022C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeGenerationLibrary", "Tools\ObjectModelCodeGeneration\CodeGenerationLibrary\CodeGenerationLibrary.csproj", "{4D93A489-2576-400B-93CD-9340A892B0E8}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ObjectModelCodeGeneration", "ObjectModelCodeGeneration", "{CB71AF88-3513-4109-92D4-0BA8770BB454}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CodeGenerationLibrary", "CodeGenerationLibrary", "{64425AA2-0B20-46B6-8BC6-A4D64C1C50D0}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ObjectModelCodeGenerator", "Tools\ObjectModelCodeGeneration\ObjectModelCodeGenerator\ObjectModelCodeGenerator.csproj", "{8734474A-543E-46C3-8E1B-6B37E4B97C78}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ObjectModelCodeGenerator", "ObjectModelCodeGenerator", "{380D5910-2411-4E93-AE2B-1533033A8D79}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ProxyLayerParser", "ProxyLayerParser", "{686EAF74-B419-4310-AFD8-3710E8E8061F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxyLayerParser", "Tools\ObjectModelCodeGeneration\RoslynParser\ProxyLayerParser.csproj", "{13A13BB2-684F-4A2B-BCF9-34A9F9616599}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ConfigureAwaitAnalyzer", "ConfigureAwaitAnalyzer", "{D007B9BF-D886-4B0A-87E0-AEB6EFB1390F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureAwaitAnalyzer", "Tools\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer.csproj", "{48215D6D-DB21-48B8-AB03-1297A94DF696}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureAwaitAnalyzer.Tests", "Tools\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer.Tests\ConfigureAwaitAnalyzer.Tests.csproj", "{5F8690AA-765A-4112-8C68-0BB00C322FDB}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IntegrationTestCommon", "IntegrationTestCommon", "{DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IntegrationTestCommon", "Tests\ObjectModel\IntegrationTestCommon\IntegrationTestCommon.csproj", "{71F7CD84-D760-425F-823B-DEF2EAAE5DC1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Net45-Debug|Any CPU = Net45-Debug|Any CPU + Net45-Release|Any CPU = Net45-Release|Any CPU + Portable-Debug|Any CPU = Portable-Debug|Any CPU + Portable-Release|Any CPU = Portable-Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {3328FBBF-9C20-4775-B367-856C09DC13BF}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {37F66AC7-C54C-4FE2-B691-5260D3971BAB}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {B697759F-6EF9-4142-8BD3-D78BF18C678E}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {C809285A-784D-48E4-9D7A-F5685A19F595}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {C809285A-784D-48E4-9D7A-F5685A19F595}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {C809285A-784D-48E4-9D7A-F5685A19F595}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {4D93A489-2576-400B-93CD-9340A892B0E8}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {4D93A489-2576-400B-93CD-9340A892B0E8}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {4D93A489-2576-400B-93CD-9340A892B0E8}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {4D93A489-2576-400B-93CD-9340A892B0E8}.Portable-Debug|Any CPU.ActiveCfg = Portable-Release|Any CPU + {4D93A489-2576-400B-93CD-9340A892B0E8}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {8734474A-543E-46C3-8E1B-6B37E4B97C78}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {13A13BB2-684F-4A2B-BCF9-34A9F9616599}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {48215D6D-DB21-48B8-AB03-1297A94DF696}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {48215D6D-DB21-48B8-AB03-1297A94DF696}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {48215D6D-DB21-48B8-AB03-1297A94DF696}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {48215D6D-DB21-48B8-AB03-1297A94DF696}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {48215D6D-DB21-48B8-AB03-1297A94DF696}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {48215D6D-DB21-48B8-AB03-1297A94DF696}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {5F8690AA-765A-4112-8C68-0BB00C322FDB}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {3328FBBF-9C20-4775-B367-856C09DC13BF} = {9EC38B72-3B6D-46DF-89B4-1CF689C3CB2C} + {37F66AC7-C54C-4FE2-B691-5260D3971BAB} = {1C4CF4F3-AE0A-4194-9C99-087DFC6E3DC2} + {973E84B0-A7DE-46EC-AD73-A5224D8041C8} = {C62E0485-00BD-4C9E-912D-752B0B50E050} + {1C4CF4F3-AE0A-4194-9C99-087DFC6E3DC2} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} + {B697759F-6EF9-4142-8BD3-D78BF18C678E} = {29D10BE2-8818-46D0-9104-39FD62BD7A24} + {29D10BE2-8818-46D0-9104-39FD62BD7A24} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} + {C809285A-784D-48E4-9D7A-F5685A19F595} = {62E96F01-6F15-420C-BA43-0BA18914DE5E} + {62E96F01-6F15-420C-BA43-0BA18914DE5E} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} + {FFA1A7D5-AE12-4F66-91A8-C2DE2E383E12} = {565840EA-7ADC-438C-8CB3-23D56A0C57BD} + {E105A452-302D-4CC8-A371-49EF488B4DF1} = {C62E0485-00BD-4C9E-912D-752B0B50E050} + {565840EA-7ADC-438C-8CB3-23D56A0C57BD} = {E105A452-302D-4CC8-A371-49EF488B4DF1} + {4D93A489-2576-400B-93CD-9340A892B0E8} = {64425AA2-0B20-46B6-8BC6-A4D64C1C50D0} + {CB71AF88-3513-4109-92D4-0BA8770BB454} = {3DE96B66-463F-470B-92F2-7284A2DD022C} + {64425AA2-0B20-46B6-8BC6-A4D64C1C50D0} = {CB71AF88-3513-4109-92D4-0BA8770BB454} + {8734474A-543E-46C3-8E1B-6B37E4B97C78} = {380D5910-2411-4E93-AE2B-1533033A8D79} + {380D5910-2411-4E93-AE2B-1533033A8D79} = {CB71AF88-3513-4109-92D4-0BA8770BB454} + {686EAF74-B419-4310-AFD8-3710E8E8061F} = {CB71AF88-3513-4109-92D4-0BA8770BB454} + {13A13BB2-684F-4A2B-BCF9-34A9F9616599} = {686EAF74-B419-4310-AFD8-3710E8E8061F} + {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} = {3DE96B66-463F-470B-92F2-7284A2DD022C} + {48215D6D-DB21-48B8-AB03-1297A94DF696} = {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} + {5F8690AA-765A-4112-8C68-0BB00C322FDB} = {D007B9BF-D886-4B0A-87E0-AEB6EFB1390F} + {DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647} = {973E84B0-A7DE-46EC-AD73-A5224D8041C8} + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1} = {DA5EAFA3-E8A7-4854-A9BF-DE7FE3162647} + EndGlobalSection +EndGlobal diff --git a/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/Batch.csproj b/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/Batch.csproj new file mode 100644 index 000000000000..eb7584717def --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/Batch.csproj @@ -0,0 +1,95 @@ + + + + + {3328FBBF-9C20-4775-B367-856C09DC13BF} + AnyCPU + Library + Properties + Microsoft.Azure.Batch + Microsoft.Azure.Batch + $(ProjectDir)$(OutputPath)$(AssemblyName).xml + true + + + + + + + + + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.3.3.5\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + True + + + $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + True + + + + + + + + + + + + + + + + + %(RecursiveDir)\%(FileName)%(Extension) + + + True + True + BatchErrorMessages.resx + + + + + + + ResXFileCodeGenerator + BatchErrorMessages.Designer.cs + Designer + + + + + + Designer + + + + + {48215d6d-db21-48b8-ab03-1297a94df696} + ConfigureAwaitAnalyzer + false + False + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/BatchErrorMessages.Designer.cs b/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/BatchErrorMessages.Designer.cs new file mode 100644 index 000000000000..b602f0935e0e --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/BatchErrorMessages.Designer.cs @@ -0,0 +1,288 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Batch { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class BatchErrorMessages { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal BatchErrorMessages() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Batch.BatchErrorMessages", typeof(BatchErrorMessages).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Addition of a task failed with unexpected status code. Details: {0}. + /// + internal static string AddTaskCollectionTerminated { + get { + return ResourceManager.GetString("AddTaskCollectionTerminated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Task {0} reported AddTaskResultAction.UnretryableFailure. + /// + internal static string AddTaskResultActionUnretryableFailure { + get { + return ResourceManager.GetString("AddTaskResultActionUnretryableFailure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An attempt was made to use an instance of BatchClient that is in the closed state. No further calls to the Batch Service can be made with that instance. This can happen if the instance was explicitly closed or if the BatchClient.Dispose() method was called.. + /// + internal static string BatchClientIsClosed { + get { + return ResourceManager.GetString("BatchClientIsClosed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This BatchRequest has started executing and can no longer be modified.. + /// + internal static string BatchRequestCannotBeModified { + get { + return ResourceManager.GetString("BatchRequestCannotBeModified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A value of null cannot be specified when invoking the CommitChanges operation.. + /// + internal static string CannotPatchNullValue { + get { + return ResourceManager.GetString("CannotPatchNullValue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} can only be run once.. + /// + internal static string CanOnlyBeRunOnceFailure { + get { + return ResourceManager.GetString("CanOnlyBeRunOnceFailure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items contained in collection must not be null. + /// + internal static string CollectionMustNotContainNull { + get { + return ResourceManager.GetString("CollectionMustNotContainNull", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Must have at least one behavior of type {0}. + /// + internal static string GeneralBehaviorMissing { + get { + return ResourceManager.GetString("GeneralBehaviorMissing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This object is in an invalid state. Write access is not allowed.. + /// + internal static string GeneralObjectInInvalidState { + get { + return ResourceManager.GetString("GeneralObjectInInvalidState", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Simultaneous Commit operators are forbidden.. + /// + internal static string GeneralSimultaneousCommitsForbidden { + get { + return ResourceManager.GetString("GeneralSimultaneousCommitsForbidden", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Incorrect type returned.. + /// + internal static string IncorrectTypeReturned { + get { + return ResourceManager.GetString("IncorrectTypeReturned", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Monitor requires all instances to have the same server-side parent.. + /// + internal static string MonitorInstancesMustHaveSameServerSideParent { + get { + return ResourceManager.GetString("MonitorInstancesMustHaveSameServerSideParent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to One or more requests to the Azure Batch service failed.. + /// + internal static string MultipleParallelRequestsHitUnexpectedErrors { + get { + return ResourceManager.GetString("MultipleParallelRequestsHitUnexpectedErrors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Timed out waiting for resources after {0}.. + /// + internal static string ODataMonitorTimedOut { + get { + return ResourceManager.GetString("ODataMonitorTimedOut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This operation is forbidden on bound objects.. + /// + internal static string OperationForbiddenOnBoundObjects { + get { + return ResourceManager.GetString("OperationForbiddenOnBoundObjects", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This operation is forbidden on unbound objects.. + /// + internal static string OperationForbiddenOnUnboundObjects { + get { + return ResourceManager.GetString("OperationForbiddenOnUnboundObjects", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The property {0} cannot be read while the object is in the {1} state.. + /// + internal static string PropertiesReadAccessViolation { + get { + return ResourceManager.GetString("PropertiesReadAccessViolation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The property {0} cannot be modified while the object is in the {1} state.. + /// + internal static string PropertiesWriteAccessViolation { + get { + return ResourceManager.GetString("PropertiesWriteAccessViolation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End task id must be greater than or equal to the start task id.. + /// + internal static string TaskIdRangeCannotHaveEndLessThanStart { + get { + return ResourceManager.GetString("TaskIdRangeCannotHaveEndLessThanStart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End task id must be greater or equal to 0.. + /// + internal static string TaskIdRangeCannotHaveNegativeEnd { + get { + return ResourceManager.GetString("TaskIdRangeCannotHaveNegativeEnd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to First task id must be greater or equal to 0.. + /// + internal static string TaskIdRangeCannotHaveNegativeStart { + get { + return ResourceManager.GetString("TaskIdRangeCannotHaveNegativeStart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type {0} does not support an expand clause.. + /// + internal static string TypeDoesNotSupportExpandClause { + get { + return ResourceManager.GetString("TypeDoesNotSupportExpandClause", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type {0} does not support a filter clause.. + /// + internal static string TypeDoesNotSupportFilterClause { + get { + return ResourceManager.GetString("TypeDoesNotSupportFilterClause", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type {0} does not support a select clause.. + /// + internal static string TypeDoesNotSupportSelectClause { + get { + return ResourceManager.GetString("TypeDoesNotSupportSelectClause", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unknown AddTaskResultAction value: {0}. + /// + internal static string UnknownAddTaskResultAction { + get { + return ResourceManager.GetString("UnknownAddTaskResultAction", resourceCulture); + } + } + } +} diff --git a/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/BatchErrorMessages.resx b/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/BatchErrorMessages.resx new file mode 100644 index 000000000000..e797da89bceb --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/BatchErrorMessages.resx @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Addition of a task failed with unexpected status code. Details: {0} + + + Task {0} reported AddTaskResultAction.UnretryableFailure + + + An attempt was made to use an instance of BatchClient that is in the closed state. No further calls to the Batch Service can be made with that instance. This can happen if the instance was explicitly closed or if the BatchClient.Dispose() method was called. + + + This BatchRequest has started executing and can no longer be modified. + + + A value of null cannot be specified when invoking the CommitChanges operation. + + + {0} can only be run once. + + + Items contained in collection must not be null + + + Must have at least one behavior of type {0} + + + This object is in an invalid state. Write access is not allowed. + + + Simultaneous Commit operators are forbidden. + + + Incorrect type returned. + + + Monitor requires all instances to have the same server-side parent. + + + One or more requests to the Azure Batch service failed. + + + This operation is forbidden on bound objects. + + + This operation is forbidden on unbound objects. + + + The property {0} cannot be read while the object is in the {1} state. + + + The property {0} cannot be modified while the object is in the {1} state. + + + End task id must be greater than or equal to the start task id. + + + End task id must be greater or equal to 0. + + + First task id must be greater or equal to 0. + + + Type {0} does not support an expand clause. + + + Type {0} does not support a filter clause. + + + Type {0} does not support a select clause. + + + Unknown AddTaskResultAction value: {0} + + + Timed out waiting for resources after {0}. + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/packages.config b/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/packages.config new file mode 100644 index 000000000000..12622deefb9f --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Src/Azure.Batch/packages.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.csproj b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.csproj similarity index 72% rename from src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.csproj rename to src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.csproj index abb21e0896a0..601b4174c515 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.csproj +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/Azure.Batch.Unit.Tests.csproj @@ -64,7 +64,7 @@ - + {3328FBBF-9C20-4775-B367-856C09DC13BF} Batch @@ -74,56 +74,16 @@ - + Designer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + %(RecursiveDir)\%(FileName)%(Extension) + - - - - - - - - - - - @@ -131,9 +91,6 @@ - - - diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs new file mode 100644 index 000000000000..f8818a411fbe --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs @@ -0,0 +1,182 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Azure.Batch.Unit.Tests +{ + using System.Collections.Generic; + using System.Linq; + using System.IO; + using BatchTestCommon; + using TestUtilities; + using Xunit; + using Xunit.Abstractions; + + public class StaticAnalysisUnitTests + { + private readonly string sourceLocation; + private readonly string proxySourceLocation; + + private const string SourceFileType = @".*\.cs"; + private readonly ITestOutputHelper testOutputHelper; + + private const string GeneratedProtocolFolder = "GeneratedProtocol"; + + public StaticAnalysisUnitTests(ITestOutputHelper testOutputHelper) + { + this.testOutputHelper = testOutputHelper; + + this.sourceLocation = @"..\..\..\..\..\..\Client\src\Azure.Batch"; + this.proxySourceLocation = Path.Combine(this.sourceLocation, GeneratedProtocolFolder); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] + public void ExceptionsThrownDirectlyByRestProxyDontChange() + { + const string exceptionNameCaptureGroup = "ExceptionName"; + string pattern = GetExceptionCaptureRegex(exceptionNameCaptureGroup); + + SourceParser sourceParser = new SourceParser(this.proxySourceLocation, SourceFileType, null, pattern); + + List results = sourceParser.Parse().ToList(); + + //Ensure we've scanned at least some files... + const int expectedExceptionCount = 100; + this.testOutputHelper.WriteLine("Found {0} \"throw new Exception\" strings", results.Count); + Assert.True(results.Count > expectedExceptionCount); + + HashSet exceptionSet = new HashSet(); + + foreach (SourceParserResult parserResult in results) + { + string exceptionName = parserResult.Match.Groups[exceptionNameCaptureGroup].Value; + exceptionSet.Add(exceptionName); + } + + this.testOutputHelper.WriteLine("Found {0} types of exception thrown by rest proxy", exceptionSet.Count); + this.testOutputHelper.WriteLine("Exceptions:"); + this.testOutputHelper.WriteLine("------------------------"); + foreach (string exceptionType in exceptionSet) + { + this.testOutputHelper.WriteLine("{0}", exceptionType); + } + + IReadOnlyCollection expectedExceptions = new List() + { + "ArgumentNullException", + "ValidationException", + "SerializationException" + }; + Assert.Equal((IEnumerable)expectedExceptions, exceptionSet); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] + public void ExceptionsThrownDirectlyByObjectModelDontChange() + { + const string exceptionNameCaptureGroup = "ExceptionName"; + string pattern = GetExceptionCaptureRegex(exceptionNameCaptureGroup); + + SourceParser sourceParser = new SourceParser(this.sourceLocation, SourceFileType, GeneratedProtocolFolder, pattern); + + List results = sourceParser.Parse().ToList(); + + //Ensure we've scanned at least some files... + const int expectedExceptionCount = 50; + this.testOutputHelper.WriteLine("Found {0} \"throw new Exception\" strings", results.Count); + Assert.True(results.Count > expectedExceptionCount); + + HashSet exceptionSet = new HashSet(); + + foreach (SourceParserResult parserResult in results) + { + string exceptionName = parserResult.Match.Groups[exceptionNameCaptureGroup].Value; + exceptionSet.Add(exceptionName); + } + + this.testOutputHelper.WriteLine("Found {0} types of exception thrown by object model", exceptionSet.Count); + this.testOutputHelper.WriteLine("Exceptions:"); + this.testOutputHelper.WriteLine("------------------------"); + foreach (string exceptionType in exceptionSet) + { + this.testOutputHelper.WriteLine("{0}", exceptionType); + } + + var expectedExceptions = new HashSet + { + "ArgumentNullException", + "AddTaskCollectionTerminatedException", + "BatchClientException", + "RunOnceException", + "TimeoutException", + "ArgumentOutOfRangeException", + "InvalidOperationException", + "ArgumentException", + "ParallelOperationsException", + }; + + Assert.Equal(expectedExceptions.OrderBy(e => e), exceptionSet.OrderBy(e => e)); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.VeryShortDuration)] + public void DotWaitAndDotResultAreNeverUsed() + { + //TODO: We should use Roslyn to do this + + //What this expression means: + //(? results = sourceParser.Parse().ToList(); + + //There should be no .Result or .Wait() calls outside of the two which are expected below + //Remove the two we expect + results.Remove(results.First(r => r.File.Contains("UtilitiesInternal.cs"))); + results.Remove(results.First(r => r.File.Contains("SynchronousMethodExceptionBehavior.cs"))); + + foreach (SourceParserResult parserResult in results) + { + this.testOutputHelper.WriteLine("Found .Wait or .Result in {0} at {1} -- {2}", parserResult.File, parserResult.LineNumber, parserResult.Match); + } + + Assert.Equal(0, results.Count); + } + + #region Private helpers + + private static string GetExceptionCaptureRegex(string exceptionNameCaptureGroup) + { + //TODO: Note that this misses anything like "throw ex;" since it's missing the new -- we should try to use + //TODO: Roslyn or something else to do a better job of this. + //What this expression means: + //(?\\w+?)\\( - find everything after the "new" in the previous part of the expression which is a + // "word" character (alphanumeric), and comes before the next "(" character + // and store it in the group named "ExceptionName" + + string pattern = string.Format("(?\\w+?)\\()", exceptionNameCaptureGroup); + + return pattern; + } + + #endregion + } +} diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/packages.config b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/packages.config new file mode 100644 index 000000000000..218042073a90 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/packages.config @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj new file mode 100644 index 000000000000..2fda78d8ca2d --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj @@ -0,0 +1,133 @@ + + + + + {C809285A-784D-48E4-9D7A-F5685A19F595} + Library + Properties + BatchClientIntegrationTests + BatchClientIntegrationTests + + + 512 + ceeaaba5 + true + true + + + + + + + $(LibraryNugetPackageFolder)\Microsoft.Azure.Management.Batch.3.0.0\lib\net45\Microsoft.Azure.Management.Batch.dll + True + + + + $(LibraryNugetPackageFolder)\Microsoft.Data.Edm.5.7.0\lib\net40\Microsoft.Data.Edm.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Data.OData.5.7.0\lib\net40\Microsoft.Data.OData.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Data.Services.Client.5.7.0\lib\net40\Microsoft.Data.Services.Client.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.3.3.5\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + True + + + $(LibraryNugetPackageFolder)\WindowsAzure.Storage.8.0.1\lib\net45\Microsoft.WindowsAzure.Storage.dll + True + + + $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + True + + + + + + + + + + + + $(LibraryNugetPackageFolder)\System.Spatial.5.7.0\lib\net40\System.Spatial.dll + True + + + + + + + $(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll + True + + + False + $(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll + + + $(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll + True + + + + + {B697759F-6EF9-4142-8BD3-D78BF18C678E} + BatchTestCommon + + + {71f7cd84-d760-425f-823b-def2eaae5dc1} + IntegrationTestCommon + + + {3328fbbf-9c20-4775-b367-856c09dc13bf} + Batch + + + + + + + + + %(RecursiveDir)\%(FileName)%(Extension) + + + + + + + + TestResources\%(FileName)%(Extension) + Always + + + + + + + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/BatchClientIntegrationTests/packages.config b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/BatchClientIntegrationTests/packages.config new file mode 100644 index 000000000000..1a381fa404e0 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/BatchClientIntegrationTests/packages.config @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Common/BatchTestCommon.csproj b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Common/BatchTestCommon.csproj similarity index 96% rename from src/Batch/Client/Tests/ObjectModel/Common/BatchTestCommon.csproj rename to src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Common/BatchTestCommon.csproj index 97c9ae500e5e..fcbe17390652 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/BatchTestCommon.csproj +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Common/BatchTestCommon.csproj @@ -68,11 +68,9 @@ - - - - - + + %(RecursiveDir)\%(FileName)%(Extension) + diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Common/packages.config b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Common/packages.config new file mode 100644 index 000000000000..1718bd2ffc94 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Common/packages.config @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj new file mode 100644 index 000000000000..1c8382e2bc60 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj @@ -0,0 +1,94 @@ + + + + + {71F7CD84-D760-425F-823B-DEF2EAAE5DC1} + Library + Properties + IntegrationTestCommon + IntegrationTestCommon + + + 512 + true + true + + + + + $(LibraryNugetPackageFolder)\Common.1.0.0\lib\net45\Common.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Azure.Management.Batch.3.0.0\lib\net45\Microsoft.Azure.Management.Batch.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Data.Edm.5.7.0\lib\net40\Microsoft.Data.Edm.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Data.OData.5.7.0\lib\net40\Microsoft.Data.OData.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Data.Services.Client.5.7.0\lib\net40\Microsoft.Data.Services.Client.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.3.3.5\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + True + + + $(LibraryNugetPackageFolder)\WindowsAzure.Storage.8.0.1\lib\net45\Microsoft.WindowsAzure.Storage.dll + True + + + $(LibraryNugetPackageFolder)\Mono.Security.3.2.3.0\lib\net45\Mono.Security.dll + True + + + $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + True + + + + + + + + + + + $(LibraryNugetPackageFolder)\System.Spatial.5.7.0\lib\net40\System.Spatial.dll + True + + + + + + %(RecursiveDir)\%(FileName)%(Extension) + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/packages.config b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/packages.config new file mode 100644 index 000000000000..cc794f460237 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/packages.config @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/App.config b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/App.config new file mode 100644 index 000000000000..8398b1a71589 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/App.config @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs new file mode 100644 index 000000000000..67f34e572436 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs @@ -0,0 +1,93 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace BatchProxyIntegrationTests +{ + using System; + using System.IO; + using System.Linq; + using System.Threading.Tasks; + using System.IO.Compression; + using System.Text; + using BatchTestCommon; + using IntegrationTestCommon; + using Microsoft.Azure.Management.Batch; + using Microsoft.Azure.Management.Batch.Models; + using Microsoft.WindowsAzure.Storage.Blob; + + + internal static class ApplicationPackageCommon + { + public static async Task UpdateApplicationPackageAsync(string applicationId, string defaultVersion, string displayName, bool hasDefaultVersion) + { + string accountName = TestCommon.Configuration.BatchAccountName; + string resourceGroupName = TestCommon.Configuration.BatchAccountResourceGroup; + + BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient(); + + if (hasDefaultVersion) + { + await mgmtClient.Application.UpdateAsync( + resourceGroupName, + accountName, + applicationId, + new UpdateApplicationParameters { AllowUpdates = true, DefaultVersion = defaultVersion, DisplayName = displayName }); + } + else + { + await mgmtClient.Application.UpdateAsync( + resourceGroupName, + accountName, + applicationId, + new UpdateApplicationParameters { AllowUpdates = true, DisplayName = displayName }); + } + } + + public static async Task UploadTestApplicationPackageIfNotAlreadyUploadedAsync(string appPackageName, string applicationVersion) + { + string accountName = TestCommon.Configuration.BatchAccountName; + string resourceGroupName = TestCommon.Configuration.BatchAccountResourceGroup; + + using (BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) + { + var applicationSummaries = await mgmtClient.Application.ListAsync(resourceGroupName, accountName); + + bool testPackageAlreadyUploaded = applicationSummaries.Any(a => + string.Equals(appPackageName, a.Id, StringComparison.OrdinalIgnoreCase) && + string.Equals(applicationVersion, a.DefaultVersion, StringComparison.OrdinalIgnoreCase)); + + if (!testPackageAlreadyUploaded) + { + await UploadTestApplicationAndActivateAsync(appPackageName, applicationVersion, resourceGroupName, accountName).ConfigureAwait(false); + } + } + } + + private static async Task UploadTestApplicationAndActivateAsync(string appPackageName, string applicationVersion, string resourceGroupName, string accountName) + { + const string format = "zip"; + + using (BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) + { + var addResponse = await mgmtClient.ApplicationPackage.CreateAsync(resourceGroupName, accountName, appPackageName, applicationVersion).ConfigureAwait(false); + + var storageUrl = addResponse.StorageUrl; + + await IntegrationTestCommon.UploadTestApplicationAsync(storageUrl).ConfigureAwait(false); + + await mgmtClient.ApplicationPackage.ActivateAsync(resourceGroupName, accountName, appPackageName, applicationVersion, format).ConfigureAwait(false); + } + } + } +} diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj similarity index 85% rename from src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj rename to src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj index 27bf99bd30d2..03e639b06cb8 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj +++ b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/BatchProxyIntegrationTests.csproj @@ -16,14 +16,6 @@ - - ..\..\..\..\..\..\Packages\Azure.Batch.6.0.0\lib\net45\Azure.Batch.dll - True - - - ..\..\..\..\..\..\Packages\Common.1.0.0\lib\net45\Common.dll - True - $(LibraryNugetPackageFolder)\Microsoft.Azure.Management.Batch.3.0.0\lib\net45\Microsoft.Azure.Management.Batch.dll True @@ -41,11 +33,11 @@ True - ..\..\..\..\..\..\Packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True - ..\..\..\..\..\..\Packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll + $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll True @@ -101,28 +93,27 @@ - - + {71f7cd84-d760-425f-823b-def2eaae5dc1} IntegrationTestCommon - + - - - - + + %(RecursiveDir)\%(FileName)%(Extension) + diff --git a/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs new file mode 100644 index 000000000000..0315973a9bf4 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs @@ -0,0 +1,200 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace BatchProxyIntegrationTests +{ + using System; + using System.Diagnostics; + using System.Linq; + using System.Net; + using System.Threading; + using System.Threading.Tasks; + using BatchTestCommon; + using IntegrationTestCommon; + using Microsoft.Azure.Batch.Protocol; + using Microsoft.Azure.Batch.Protocol.Models; + using Microsoft.Azure.Management.Batch; + using Microsoft.Rest.Azure; + using Xunit; + using Xunit.Abstractions; + + public class IntegrationJobApplicationPackageReferencesTests : IDisposable + { + private readonly string AccountName = TestCommon.Configuration.BatchAccountName; + private readonly string AccountKey = TestCommon.Configuration.BatchAccountKey; + private readonly string Url = TestCommon.Configuration.BatchAccountUrl; + + private readonly ITestOutputHelper output; + + private const string AppPackageName = "job-application-package-references-tests"; + private const string Version = "1.0"; + + public IntegrationJobApplicationPackageReferencesTests(ITestOutputHelper output) + { + this.output = output; + + IntegrationTestCommon.EnableAutoStorageAsync().Wait(); + + ApplicationPackageCommon.UploadTestApplicationPackageIfNotAlreadyUploadedAsync(AppPackageName, Version).Wait(); + ApplicationPackageCommon.UpdateApplicationPackageAsync(AppPackageName, Version, "My First App", false).Wait(); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public async Task CanCreateJobAndAutoPoolWithAppPackageReferences() + { + var jobId = Guid.NewGuid().ToString(); + + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolInfo = new PoolInformation + { + AutoPoolSpecification = new AutoPoolSpecification(poolLifetimeOption: PoolLifetimeOption.Job, pool: new PoolSpecification + { + TargetDedicated = 0, + ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageName, Version = Version }, + }, + CloudServiceConfiguration = new CloudServiceConfiguration("4"), + VmSize = "small", + }) + }; + + try + { + AzureOperationHeaderResponse addResponse = await client.Job.AddWithHttpMessagesAsync(new JobAddParameter(jobId, poolInfo: poolInfo)).ConfigureAwait(false); + Assert.Equal(HttpStatusCode.Created, addResponse.Response.StatusCode); + + AzureOperationResponse response = await client.Job.GetWithHttpMessagesAsync(jobId).ConfigureAwait(false); + Assert.Equal(HttpStatusCode.OK, response.Response.StatusCode); + Assert.NotNull(response.Body); + Assert.NotNull(response.Body.PoolInfo.AutoPoolSpecification.Pool.ApplicationPackageReferences); + Assert.Equal(1, response.Body.PoolInfo.AutoPoolSpecification.Pool.ApplicationPackageReferences.Count); + Assert.Equal(AppPackageName, response.Body.PoolInfo.AutoPoolSpecification.Pool.ApplicationPackageReferences[0].ApplicationId); + Assert.Equal(Version, response.Body.PoolInfo.AutoPoolSpecification.Pool.ApplicationPackageReferences[0].Version); + } + finally + { + TestUtilities.DeleteJobIfExistsNoThrow(client, jobId, output); + } + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public async Task AutoPoolApplicationPackagesFlowThroughToPool() + { + var jobId = Guid.NewGuid().ToString(); + + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolInfo = new PoolInformation + { + AutoPoolSpecification = new AutoPoolSpecification(poolLifetimeOption: PoolLifetimeOption.Job, pool: new PoolSpecification + { + TargetDedicated = 0, + ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageName, Version = Version }, + }, + CloudServiceConfiguration = new CloudServiceConfiguration("4"), + VmSize = "small", + }) + }; + + try + { + AzureOperationHeaderResponse addResponse = await client.Job.AddWithHttpMessagesAsync(new JobAddParameter(jobId, poolInfo: poolInfo)).ConfigureAwait(false); + + Assert.Equal(HttpStatusCode.Created, addResponse.Response.StatusCode); + + var autoPoolId = WaitForAutoPool(client, jobId); + + var poolResponse = await client.Pool.GetWithHttpMessagesAsync(autoPoolId).ConfigureAwait(false); + + Assert.Equal(HttpStatusCode.OK, poolResponse.Response.StatusCode); + Assert.NotNull(poolResponse.Body); + Assert.Equal(1, poolResponse.Body.ApplicationPackageReferences.Count); + Assert.Equal(AppPackageName, poolResponse.Body.ApplicationPackageReferences[0].ApplicationId); + Assert.Equal(Version, poolResponse.Body.ApplicationPackageReferences[0].Version); + } + finally + { + TestUtilities.DeleteJobIfExistsNoThrow(client, jobId, output); + } + } + + private string WaitForAutoPool(BatchServiceClient client, string jobId) + { + var stopwatch = Stopwatch.StartNew(); + + string poolId = null; + + while (true) + { + if (stopwatch.Elapsed > TimeSpan.FromMinutes(1)) + { + throw new Exception("Timeout waiting for auto pool for job " + jobId); + } + + var job = client.Job.GetAsync(jobId).Result; + + if (!string.IsNullOrEmpty(job.ExecutionInfo.PoolId)) + { + poolId = job.ExecutionInfo.PoolId; + break; + } + + Thread.Sleep(1000); + } + + stopwatch.Restart(); + + while (true) + { + if (stopwatch.Elapsed > TimeSpan.FromMinutes(1)) + { + throw new Exception("Timeout waiting for auto pool for job " + jobId); + } + + try + { + var response = client.Pool.GetAsync(poolId).Result; + return poolId; + } + catch (Exception) + { + // ignored + } + + Thread.Sleep(1000); + } + } + + public void Dispose() + { + BatchManagementClient mgmtClient = IntegrationTestCommon.OpenBatchManagementClient(); + string accountName = TestCommon.Configuration.BatchAccountName; + string resourceGroupName = TestCommon.Configuration.BatchAccountResourceGroup; + + Func cleanupTask = async () => + { + await mgmtClient.ApplicationPackage.DeleteAsync(resourceGroupName, accountName, AppPackageName, Version); + await mgmtClient.Application.DeleteAsync(resourceGroupName, accountName, AppPackageName); + }; + + Task.Run(cleanupTask).GetAwaiter().GetResult(); + } + } +} diff --git a/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs new file mode 100644 index 000000000000..9d2060fdfa7a --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs @@ -0,0 +1,436 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace BatchProxyIntegrationTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Threading; + using System.Threading.Tasks; + using BatchTestCommon; + using IntegrationTestCommon; + using Microsoft.Azure.Batch.Protocol; + using Microsoft.Azure.Batch.Protocol.Models; + using Microsoft.Azure.Management.Batch; + using Microsoft.Rest.Azure; + using Xunit; + using Xunit.Abstractions; + + public class IntegrationPoolApplicationPackageReferencesTests : IDisposable + { + private readonly string AccountName = TestCommon.Configuration.BatchAccountName; + private readonly string AccountKey = TestCommon.Configuration.BatchAccountKey; + private readonly string Url = TestCommon.Configuration.BatchAccountUrl; + + private readonly ITestOutputHelper output; + + private const string AppPackageIdOne = "pool-application-package-references-one"; + private const string AppPackageIdTwo = "pool-application-package-references-two"; + + + public IntegrationPoolApplicationPackageReferencesTests(ITestOutputHelper output) + { + this.output = output; + ApplicationPackageCommon.UploadTestApplicationPackageIfNotAlreadyUploadedAsync(AppPackageIdOne, "1.0").Wait(); + ApplicationPackageCommon.UpdateApplicationPackageAsync(AppPackageIdOne, "1.0", "My First App", false).Wait(); + ApplicationPackageCommon.UploadTestApplicationPackageIfNotAlreadyUploadedAsync(AppPackageIdTwo, "1.0").Wait(); + ApplicationPackageCommon.UploadTestApplicationPackageIfNotAlreadyUploadedAsync(AppPackageIdTwo, "1.1").Wait(); + ApplicationPackageCommon.UpdateApplicationPackageAsync(AppPackageIdTwo, "1.0", "My Second App", true).Wait(); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void BadAppPackageReferenceFails() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + poolAddParameter.ApplicationPackageReferences = new[] { new ApplicationPackageReference { ApplicationId = "bad" } }; + + var exception = Assert.Throws(() => client.Pool.AddAsync(poolAddParameter).Result); + + var batchException = (BatchErrorException)exception.InnerException; + + Assert.NotNull(batchException); + Assert.Equal("InvalidApplicationPackageReferences", batchException.Body.Code); + Assert.Equal(1, batchException.Body.Values.Count()); + Assert.Equal("bad", batchException.Body.Values[0].Key); + Assert.Equal("The specified application package does not exist.", batchException.Body.Values[0].Value); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void BadAppPackageReferenceAndVersionFails() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + poolAddParameter.ApplicationPackageReferences = new[] { new ApplicationPackageReference { ApplicationId = "bad", Version = "999" } }; + var exception = Assert.Throws(() => client.Pool.AddAsync(poolAddParameter).Result); + + var batchException = (BatchErrorException)exception.InnerException; + + Assert.NotNull(batchException); + Assert.Equal("InvalidApplicationPackageReferences", batchException.Body.Code); + Assert.Equal(1, batchException.Body.Values.Count()); + Assert.Equal("bad:999", batchException.Body.Values[0].Key); + Assert.Equal("The specified application package does not exist.", batchException.Body.Values[0].Value); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void AppPackageReferenceWithInvalidVersionFails() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + + poolAddParameter.ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne, Version = "999" }, // invalid version + }; + + var exception = Assert.Throws(() => client.Pool.AddAsync(poolAddParameter).Result); + var batchException = (BatchErrorException)exception.InnerException; + + Assert.NotNull(batchException); + Assert.Equal("InvalidApplicationPackageReferences", batchException.Body.Code); + Assert.Equal(1, batchException.Body.Values.Count()); + Assert.Equal(AppPackageIdOne + ":999", batchException.Body.Values[0].Key); + Assert.Equal("The specified application package does not exist.", batchException.Body.Values[0].Value); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void ValidAppPackageReferenceWithNoDefaultFails() + { + var poolId = Guid.NewGuid().ToString(); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + poolAddParameter.ApplicationPackageReferences = new[] { new ApplicationPackageReference { ApplicationId = AppPackageIdOne } }; // valid pkg, but has no default set + var exception = Assert.Throws(() => client.Pool.AddAsync(poolAddParameter).Result); + var batchException = (BatchErrorException)exception.InnerException; + client.Application.List(); + + Assert.NotNull(batchException); + Assert.Equal("InvalidApplicationPackageReferences", batchException.Body.Code); + Assert.Equal(1, batchException.Body.Values.Count); + Assert.Equal(AppPackageIdOne, batchException.Body.Values[0].Key); + Assert.Equal("The specified application package does not have a default version set.", batchException.Body.Values[0].Value); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void MultipleAppPackageReferenceWithNoDefaultFails() + { + string poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + + poolAddParameter.ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne }, // valid pkg, but has no default set + new ApplicationPackageReference { ApplicationId = AppPackageIdTwo } + }; + + var exception = Assert.Throws(() => client.Pool.AddAsync(poolAddParameter).Result); + var batchException = (BatchErrorException)exception.InnerException; + + Assert.NotNull(batchException); + Assert.Equal("InvalidApplicationPackageReferences", batchException.Body.Code); + Assert.Equal(1, batchException.Body.Values.Count); + Assert.Equal(AppPackageIdOne, batchException.Body.Values[0].Key); + Assert.Equal("The specified application package does not have a default version set.", batchException.Body.Values[0].Value); + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void CanCreatePoolWithAppPkgRefAndVersion() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + + poolAddParameter.ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne, Version = "1.0"} + }; + + try + { + var response = client.Pool.AddWithHttpMessagesAsync(poolAddParameter).Result; + Assert.Equal(HttpStatusCode.Created, response.Response.StatusCode); + } + finally + { + TestUtilities.DeletePoolIfExistsNoThrow(client, poolId, output); + } + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void CanCreatePoolWithAppPkgRefAndDefault() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + + poolAddParameter.ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageIdTwo }, + }; + + try + { + var response = client.Pool.AddWithHttpMessagesAsync(poolAddParameter).Result; + Assert.Equal(HttpStatusCode.Created, response.Response.StatusCode); + } + finally + { + TestUtilities.DeletePoolIfExistsNoThrow(client, poolId, output); + } + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void CanCreatePoolWithTwoAppPkgRefAndVersion() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + + poolAddParameter.ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne, Version = "1.0" }, + new ApplicationPackageReference { ApplicationId = AppPackageIdTwo }, + }; + + try + { + var response = client.Pool.AddWithHttpMessagesAsync(poolAddParameter).Result; + Assert.Equal(HttpStatusCode.Created, response.Response.StatusCode); + } + finally + { + TestUtilities.DeletePoolIfExistsNoThrow(client, poolId, output); + } + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void CanCreatePoolAndRetrieveAppPkgRefs() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + + poolAddParameter.ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne, Version = "1.0" }, + new ApplicationPackageReference { ApplicationId = AppPackageIdTwo }, + }; + + try + { + var addResponse = client.Pool.AddAsync(poolAddParameter).Result; + + var pool = client.Pool.GetAsync(poolId).Result; + Assert.Equal(poolId, pool.Id); + Assert.Equal(2, pool.ApplicationPackageReferences.Count); + Assert.Equal(AppPackageIdOne, pool.ApplicationPackageReferences[0].ApplicationId); + Assert.Equal("1.0", pool.ApplicationPackageReferences[0].Version); + Assert.Equal(AppPackageIdTwo, pool.ApplicationPackageReferences[1].ApplicationId); + Assert.Null(pool.ApplicationPackageReferences[1].Version); + } + finally + { + TestUtilities.DeletePoolIfExistsNoThrow(client, poolId, output); + } + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void CanUpdatePoolByAddingAppPkgRefs() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + try + { + var addResponse = client.Pool.AddAsync(poolAddParameter).Result; + + var appRefs = new List + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne, Version = "1.0"}, + new ApplicationPackageReference { ApplicationId = AppPackageIdTwo }, + }; + + var updateParams = new PoolUpdatePropertiesParameter(new List(), appRefs, new List()); + var updateResponse = client.Pool.UpdatePropertiesWithHttpMessagesAsync(poolId, updateParams).Result; + Assert.Equal(HttpStatusCode.NoContent, updateResponse.Response.StatusCode); + + var pool = client.Pool.GetAsync(poolId).Result; + Assert.Equal(poolId, pool.Id); + Assert.Equal(2, pool.ApplicationPackageReferences.Count); + Assert.Equal(AppPackageIdOne, pool.ApplicationPackageReferences[0].ApplicationId); + Assert.Equal("1.0", pool.ApplicationPackageReferences[0].Version); + Assert.Equal(AppPackageIdTwo, pool.ApplicationPackageReferences[1].ApplicationId); + Assert.Null(pool.ApplicationPackageReferences[1].Version); + } + finally + { + TestUtilities.DeletePoolIfExistsNoThrow(client, poolId, output); + } + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void CanUpdatePoolByDeletingAppPkgRefs() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + + poolAddParameter.ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne, Version = "1.0"}, + new ApplicationPackageReference { ApplicationId = AppPackageIdTwo }, + }; + try + { + client.Pool.AddAsync(poolAddParameter).Wait(); + + var updateParams = new PoolUpdatePropertiesParameter( + new List(), + new List(), + new List()); + + var updateResponse = client.Pool.UpdatePropertiesWithHttpMessagesAsync(poolId, updateParams).Result; + Assert.Equal(HttpStatusCode.NoContent, updateResponse.Response.StatusCode); + + var pool = client.Pool.GetAsync(poolId).Result; + + Assert.Equal(poolId, pool.Id); + Assert.Null(pool.ApplicationPackageReferences); + } + finally + { + TestUtilities.DeletePoolIfExistsNoThrow(client, poolId, output); + } + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void CanPatchPoolByAddingAppPkgRefs() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + try + { + client.Pool.AddAsync(poolAddParameter).Wait(); + + var appRefs = new List + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne, Version = "1.0"}, + new ApplicationPackageReference { ApplicationId = AppPackageIdTwo }, + }; + + var patchParams = new PoolPatchParameter(); + patchParams.ApplicationPackageReferences = appRefs; + var updateResponse = client.Pool.PatchWithHttpMessagesAsync(poolId, patchParams).Result; + Assert.Equal(HttpStatusCode.OK, updateResponse.Response.StatusCode); + + var pool = client.Pool.GetAsync(poolId).Result; + Assert.Equal(poolId, pool.Id); + Assert.Equal(2, pool.ApplicationPackageReferences.Count); + Assert.Equal(AppPackageIdOne, pool.ApplicationPackageReferences[0].ApplicationId); + Assert.Equal("1.0", pool.ApplicationPackageReferences[0].Version); + Assert.Equal(AppPackageIdTwo, pool.ApplicationPackageReferences[1].ApplicationId); + Assert.Null(pool.ApplicationPackageReferences[1].Version); + } + finally + { + TestUtilities.DeletePoolIfExistsNoThrow(client, poolId, output); + } + } + + [Fact] + [Trait(TestTraits.Duration.TraitName, TestTraits.Duration.Values.MediumDuration)] + public void CanPatchPoolByDeletingAppPkgRefs() + { + var poolId = Guid.NewGuid().ToString(); + var client = new BatchServiceClient(new Uri(Url), new BatchSharedKeyCredential(AccountName, AccountKey)); + + var poolAddParameter = new PoolAddParameter(poolId, "small", cloudServiceConfiguration: new CloudServiceConfiguration("4")); + + poolAddParameter.ApplicationPackageReferences = new[] + { + new ApplicationPackageReference { ApplicationId = AppPackageIdOne, Version = "1.0" }, + new ApplicationPackageReference { ApplicationId = AppPackageIdTwo }, + }; + + try + { + client.Pool.AddAsync(poolAddParameter).Wait(); + + var patchParams = new PoolPatchParameter(); + patchParams.ApplicationPackageReferences = new ApplicationPackageReference[] { }; + var updateResponse = client.Pool.PatchWithHttpMessagesAsync(poolId, patchParams).Result; + Assert.Equal(HttpStatusCode.OK, updateResponse.Response.StatusCode); + + var pool = client.Pool.GetAsync(poolId).Result; + Assert.Equal(poolId, pool.Id); + Assert.Null(pool.ApplicationPackageReferences); + } + finally + { + TestUtilities.DeletePoolIfExistsNoThrow(client, poolId, output); + } + } + + public void Dispose() + { + using (var mgmtClient = IntegrationTestCommon.OpenBatchManagementClient()) + { + string accountName = TestCommon.Configuration.BatchAccountName; + string resourceGroupName = TestCommon.Configuration.BatchAccountResourceGroup; + + Func cleanupTask = async () => + { + await mgmtClient.ApplicationPackage.DeleteAsync(resourceGroupName, accountName, AppPackageIdOne, "1.0"); + await mgmtClient.ApplicationPackage.DeleteAsync(resourceGroupName, accountName, AppPackageIdTwo, "1.0"); + await mgmtClient.ApplicationPackage.DeleteAsync(resourceGroupName, accountName, AppPackageIdTwo, "1.1"); + await mgmtClient.Application.DeleteAsync(resourceGroupName, accountName, AppPackageIdOne); + await mgmtClient.Application.DeleteAsync(resourceGroupName, accountName, AppPackageIdTwo); + }; + + Task.Run(cleanupTask).GetAwaiter().GetResult(); + } + } + } +} diff --git a/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/TestUtilities.cs b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/TestUtilities.cs new file mode 100644 index 000000000000..2729d1c3bbda --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/TestUtilities.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace BatchProxyIntegrationTests +{ + using System; + using System.Linq; + using Microsoft.Azure.Batch.Protocol; + using Microsoft.Azure.Batch.Protocol.Models; + using Xunit.Abstractions; + + public static class TestUtilities + { + public static void DeleteJobIfExistsNoThrow(BatchServiceClient client, string jobId, ITestOutputHelper output) + { + try + { + client.Job.Delete(jobId); + } + catch (BatchErrorException e) + { + output.WriteLine("Job failed to delete: {0}", e); + } + } + + public static void DeletePoolIfExistsNoThrow(BatchServiceClient client, string poolId, ITestOutputHelper output) + { + try + { + client.Pool.Delete(poolId); + } + catch (BatchErrorException e) + { + output.WriteLine("Pool failed to delete: {0}", e); + } + } + } +} diff --git a/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config new file mode 100644 index 000000000000..5c5facc19adb --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj b/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj new file mode 100644 index 000000000000..e8dacf1cb5d4 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj @@ -0,0 +1,144 @@ + + + + + + AnyCPU + {5F8690AA-765A-4112-8C68-0BB00C322FDB} + Library + Properties + ConfigureAwaitAnalyzerTests + ConfigureAwaitAnalyzer.Tests + 512 + true + true + true + + + + + bin\Net45-Debug\ConfigureAwaitAnalyzer.Tests.xml + + + + + + + false + false + + + + $(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll + True + + + $(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Common.1.0.0\lib\net45\Microsoft.CodeAnalysis.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.1.0.0\lib\net45\Microsoft.CodeAnalysis.CSharp.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.Workspaces.1.0.0\lib\net45\Microsoft.CodeAnalysis.CSharp.Workspaces.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.VisualBasic.1.0.0\lib\net45\Microsoft.CodeAnalysis.VisualBasic.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.0.0\lib\net45\Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.0.0\lib\net45\Microsoft.CodeAnalysis.Workspaces.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.0.0\lib\net45\Microsoft.CodeAnalysis.Workspaces.Desktop.dll + True + + + + $(LibraryNugetPackageFolder)\System.Collections.Immutable.1.1.36\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll + True + + + + $(LibraryNugetPackageFolder)\System.Reflection.Metadata.1.0.21\lib\portable-net45+win8\System.Reflection.Metadata.dll + True + + + + + + + + $(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll + True + + + + + %(RecursiveDir)\%(FileName)%(Extension) + + + + + Designer + + + + + {48215D6D-DB21-48B8-AB03-1297A94DF696} + ConfigureAwaitAnalyzer + + + + + + + + + + + + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/packages.config b/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/packages.config new file mode 100644 index 000000000000..51ff8367529c --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/packages.config @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj b/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj new file mode 100644 index 000000000000..2cc0ba109acd --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj @@ -0,0 +1,92 @@ + + + + + AnyCPU + 11.0 + {48215D6D-DB21-48B8-AB03-1297A94DF696} + Library + Properties + ConfigureAwaitAnalyzer + ConfigureAwaitAnalyzer + 512 + true + true + true + + + + + false + false + + + + + + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Common.1.0.0\lib\portable-net45+win8\Microsoft.CodeAnalysis.dll + False + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.1.0.0\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.dll + False + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.Workspaces.1.0.0\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.Workspaces.dll + False + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.0.0\lib\portable-net45+win8\Microsoft.CodeAnalysis.Workspaces.dll + False + + + $(LibraryNugetPackageFolder)\System.Collections.Immutable.1.1.36\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + False + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll + False + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll + False + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll + False + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll + False + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll + False + + + $(LibraryNugetPackageFolder)\System.Reflection.Metadata.1.0.21\lib\portable-net45+win8\System.Reflection.Metadata.dll + False + + + + + %(RecursiveDir)\%(FileName)%(Extension) + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/packages.config b/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/packages.config new file mode 100644 index 000000000000..40bf2c20c81c --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/packages.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj new file mode 100644 index 000000000000..a17484253ca8 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj @@ -0,0 +1,52 @@ + + + + + AnyCPU + {4D93A489-2576-400B-93CD-9340A892B0E8} + Library + Properties + CodeGenerationLibrary + CodeGenerationLibrary + 512 + true + true + true + + + + + $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + True + + + + + + + + + + + + + %(RecursiveDir)\%(FileName)%(Extension) + + + + + Designer + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/packages.config b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/packages.config new file mode 100644 index 000000000000..747efc53e40d --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj new file mode 100644 index 000000000000..c818087f7b48 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj @@ -0,0 +1,138 @@ + + + + + AnyCPU + {8734474A-543E-46C3-8E1B-6B37E4B97C78} + Exe + Properties + ObjectModelCodeGenerator + ObjectModelCodeGenerator + 512 + true + true + true + + + + v4.5.2 + $(LibrarySourceFolder)\Batch\Client\Tools\ObjectModelCodeGeneration\ObjectModelCodeGenerator + + + + $(LibraryNugetPackageFolder)\Microsoft.VisualStudio.TextTemplating.14.0\lib\net45\Microsoft.VisualStudio.TextTemplating.14.0.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.VisualStudio.TextTemplating.Interfaces.10.0\lib\net40\Microsoft.VisualStudio.TextTemplating.Interfaces.10.0.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.VisualStudio.TextTemplating.Interfaces.11.0\lib\net45\Microsoft.VisualStudio.TextTemplating.Interfaces.11.0.dll + True + + + + + + + + + + + + + + GetTransportObjectSnippet.tt + True + True + + + CollectionConversionSnippet.tt + True + True + + + True + True + ModelClassTemplate.tt + + + + TextTemplatingFilePreprocessor + GetTransportObjectSnippet.cs + + + TextTemplatingFilePreprocessor + CollectionConversionSnippet.cs + + + TextTemplatingFilePreprocessor + StaticReadOnlyClassTemplate.cs + + + TextTemplatingFilePreprocessor + ModifiableClassTemplate.cs + + + TextTemplatingFilePreprocessor + ModelClassTemplate.cs + + + TextTemplatingFilePreprocessor + NamedBatchRequests.cs + + + + + StaticReadOnlyClassTemplate.tt + True + True + + + True + True + ModifiableClassTemplate.tt + + + + True + True + NamedBatchRequests.tt + + + + + + + + + %(RecursiveDir)\%(FileName)%(Extension) + + + + + + + + + + + {4d93a489-2576-400b-93cd-9340a892b0e8} + CodeGenerationLibrary + + + {13a13bb2-684f-4a2b-bcf9-34a9f9616599} + ProxyLayerParser + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/packages.config b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/packages.config new file mode 100644 index 000000000000..3194432ce272 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/packages.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj new file mode 100644 index 000000000000..9a4a0c53d288 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj @@ -0,0 +1,112 @@ + + + + + AnyCPU + {13A13BB2-684F-4A2B-BCF9-34A9F9616599} + Library + Properties + ProxyLayerParser + ProxyLayerParser + 512 + true + true + + + + v4.5.2 + + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Common.1.3.2\lib\net45\Microsoft.CodeAnalysis.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.1.3.2\lib\net45\Microsoft.CodeAnalysis.CSharp.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2\lib\net45\Microsoft.CodeAnalysis.CSharp.Workspaces.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.3.2\lib\net45\Microsoft.CodeAnalysis.Workspaces.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.3.2\lib\net45\Microsoft.CodeAnalysis.Workspaces.Desktop.dll + True + + + + $(LibraryNugetPackageFolder)\System.Collections.Immutable.1.1.37\lib\dotnet\System.Collections.Immutable.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll + True + + + $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll + True + + + + $(LibraryNugetPackageFolder)\System.Reflection.Metadata.1.2.0\lib\portable-net45+win8\System.Reflection.Metadata.dll + True + + + + + + + + + + + %(RecursiveDir)\%(FileName)%(Extension) + + + + + + + PreserveNewest + + + + PreserveNewest + + + + PreserveNewest + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/RoslynParser/packages.config b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/RoslynParser/packages.config new file mode 100644 index 000000000000..f6ebc9303476 --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/Tools/ObjectModelCodeGeneration/RoslynParser/packages.config @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/nuget.config b/src/Batch/ClientIntegrationTesting/nuget.config new file mode 100644 index 000000000000..5a03cb00905d --- /dev/null +++ b/src/Batch/ClientIntegrationTesting/nuget.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From 39bf1d2c0f4f2378e32b2a274c8e8650d2192225 Mon Sep 17 00:00:00 2001 From: matthchr Date: Wed, 22 Feb 2017 11:47:28 -0800 Subject: [PATCH 027/137] Fix signing --- src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs | 2 +- src/Batch/Client/Src/Azure.Batch/project.json | 7 +++++-- .../Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json | 7 ++++++- src/Batch/Client/Tests/ObjectModel/Common/project.json | 6 ++++-- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs index 9665343caced..1c98db971e5b 100644 --- a/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs +++ b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs @@ -29,7 +29,7 @@ [assembly: ComVisible(false)] -#if CODESIGN +#if CODESIGN || TESTSIGN [assembly: InternalsVisibleTo("Azure.Batch.Unit.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else [assembly: InternalsVisibleTo("Azure.Batch.Unit.Tests")] diff --git a/src/Batch/Client/Src/Azure.Batch/project.json b/src/Batch/Client/Src/Azure.Batch/project.json index 555a3c1a4388..94ddf7958b11 100644 --- a/src/Batch/Client/Src/Azure.Batch/project.json +++ b/src/Batch/Client/Src/Azure.Batch/project.json @@ -14,9 +14,12 @@ }, "buildOptions": { "outputName": "Microsoft.Azure.Batch", - "warningsAsErrors": true + "warningsAsErrors": true, + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../../tools/MSSharedLibKey.snk", + "define": [ "TESTSIGN" ] }, - "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "3.3.5" }, diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json index 07c76f53e457..9ac90b8d79c1 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json @@ -8,7 +8,12 @@ "projectUrl": "", "licenseUrl": "" }, - + "buildOptions": { + "warningsAsErrors": true, + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../../../tools/MSSharedLibKey.snk" + }, "testRunner": "xunit", "frameworks": { diff --git a/src/Batch/Client/Tests/ObjectModel/Common/project.json b/src/Batch/Client/Tests/ObjectModel/Common/project.json index 8962341f134e..40b6291b00ea 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/project.json +++ b/src/Batch/Client/Tests/ObjectModel/Common/project.json @@ -10,10 +10,13 @@ }, "buildOptions": { + "warningsAsErrors": true, + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../../../tools/MSSharedLibKey.snk" }, "frameworks": { "net45": { - "buildOptions": { "warningsAsErrors": true }, "dependencies": { }, "frameworkAssemblies": { @@ -23,7 +26,6 @@ "netstandard1.5": { "imports": [ "dnxcore50", "portable-net451+win8" ], "buildOptions": { - "warningsAsErrors": false, "define": [ "PORTABLE" ] }, "dependencies": { From a82503c72408794b93f6107d35eaf827a6f5e028 Mon Sep 17 00:00:00 2001 From: matthchr Date: Fri, 24 Feb 2017 10:40:56 -0800 Subject: [PATCH 028/137] Clean up various extra files and packages --- src/Batch/Client/.gitignore | 1 - .../2015.07.jul.GA.ReleaseNotes.txt | 94 -------- .../2015.07.jul.GA.delta.from.doc.build.txt | 7 - .../Azure.Batch.Unit.Tests/howto.txt | 5 - .../ObjectModel/Azure.Batch.Unit.Tests/temp | 0 .../BatchClientIntegrationTests.csproj.old | 167 -------------- .../IntegrationTestCommon.csproj.old | 94 -------- .../ConfigureAwaitAnalyzer.Tests.csproj.old | 145 ------------ .../ConfigureAwaitAnalyzer.csproj.old | 91 -------- .../CodeGenerationLibrary.csproj.old | 58 ----- .../ObjectModelCodeGenerator.csproj.old | 210 ------------------ .../RoslynParser/ProxyLayerParser.csproj.old | 112 ---------- .../IntegrationTestCommon/packages.config | 1 - .../packages.config | 2 - 14 files changed, 987 deletions(-) delete mode 100644 src/Batch/Client/.gitignore delete mode 100644 src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt delete mode 100644 src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt delete mode 100644 src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/howto.txt delete mode 100644 src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/temp delete mode 100644 src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj.old delete mode 100644 src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj.old delete mode 100644 src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj.old delete mode 100644 src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj.old delete mode 100644 src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj.old delete mode 100644 src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj.old delete mode 100644 src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj.old diff --git a/src/Batch/Client/.gitignore b/src/Batch/Client/.gitignore deleted file mode 100644 index 72e9b80b7a82..000000000000 --- a/src/Batch/Client/.gitignore +++ /dev/null @@ -1 +0,0 @@ -LocalNuget \ No newline at end of file diff --git a/src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt b/src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt deleted file mode 100644 index e729e6f35d21..000000000000 --- a/src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.ReleaseNotes.txt +++ /dev/null @@ -1,94 +0,0 @@ -Release Notes: Azure Batch Service General Availability - -Backwards compatibility and support lifecycle of Public Preview assembly. - Please see the following blog post: - http://blogs.technet.com/b/windowshpc/archive/2015/07/10/what-39-s-new-in-azure-batch-july-release-general-availability.aspx - -Architecture changes: - CloudJobSchedule added. Use this class to control job schedules. - CloudWorkitem removed. The features in this class were moved to other classes. - CloudJob promoted to top level entity. This class got some features of the deprecated CloudWorkitem. - - IMPORTANT: - You create a CloudJob directly now with the BatchClient.JobOperations.CreateJob() method. - It is no longer necessary to create a CloudWorkitem and wait on the RecentJob. - -Operations instead of Managers: - The interface IBatchClient has been removed (see interface section removal below) and replaced by the implementation class BatchClient. - The factories found on IBatchClient have been renamed or removed from the BatchClient class. - The BatchClient class now has the following properties: - - CertificateOperations (replaces IBatchClient.OpenCertificateManager()) - JobOperations (includes methods formerly found on IBatchClient.OpenWorkItemManager()) - JobScheduleOperations (methods for use of the CloudJobSchedule class) - PoolOperations (replaces IBatchClient.OpenPoolManager() - Utilities (replaces IBatchClient.OpenToolbox()) - -Interfaces removed: - Most of the C# Interfaces have been removed from the library. - In their place, the implementation classes have been made public. - - Examples: - IBatchClient removed and replaced by class BatchClient. - ICloudWorkItem removed. - ICloudJob removed and replaced by class CloudJob. - ICloudTask removed. Class CloudTask was always public. - ICloudPool removed and replaced by class CloudPool - etc. - -Many implementations of IDisposable removed. - IDisposable is no longer on many classes. - Please note that class BatchClient still implements IDisposable. - -Publics renamed: - "Managers" have been renamed (see section above "Operations instead of Managers"). - The VM class has been renamed to ComputeNode. - ITaskFile has been replaced by NodeFile. - BatchCredential has been renamed/replaced with BatchSharedKeyCredential. - BatchClient.Connect() has been renamed to BatchClient.OpenAsync() and/or BatchClient.Open(). - - "Name" to "Id": - The "Name" field has been renamed to "Id" in top level classes (CloudJob, CloudPool, CloudTask, etc). - In most cases an additional field "DispalyName" has been added. - - PoolManager (now PoolOperations): - GetJobPreparationTaskStatusAsync was removed and replaced by JobOperations.ListJobPreparationAndReleaseTaskStatus(). - GetJobReleaseTaskStatusAsync was removed and replaced by JobOperations.ListJobPreparationAndReleaseTaskStatus(). - -IEnumerableAsyncExtended and Paged Collections: - IPagedEnumerable/IPagedEnumerator replace the IEnumerableAsyncExtended feature set. - These interfaces expose asynchronous patterns for enumeration of collections that are backed by paging calls to the Batch Service. - IPagedEnumerable also implements IEnumerable so all common collection manipulations are supported. - Caution should be used with IEnumerable since it is a synchronous calling pattern and results in - calls to the blocking synchronous wrapper of IPagedEnumerator.MoveNextAsync(). - - IPagedEnumerable exposes the following new asynchronous methods: - - Task ForEachAsync() - Task> ToListAsync() - - These methods can assist the transition to asynchronous programming patterns with paged collections. - -REST Proxy Level - - The REST proxies from Public Preview have been replaced by the Protocol.BatchService class and associated namespaces. - Azure services are adopting generated proxies to enable multiple languages and platforms. - The methods and classes found in the Protocol.BatchService are complete over Batch Service REST API. - The BatchClient class constructs an instance of Protocol.BatchService internally. - There is an override of BatchClient.OpenAsync()/Open() that allows the caller to provide their own instance of Protocol.BatchService. - - Features found in BatchClient and Protocol.BatchService can be used independently or simultaneously. - However, it is important to know that BatchClient classes and features are not automatically aware of the effects of - calls made via Protocol.BatchService. - - If a mixed programming model is needed, use the BatchClientBehavior and Interceptor Model. - -BatchClientBehavior and Interceptor Model: - - Some behaviors have been renamed (SetRetryPolicy is now RetryPolicyProvider) and some have removed (OperationContextFactory). - The YieldInjectionInterceptor has been removed (use BatchRequest.ServiceRequestFunc). - - Interfaces and signatures of the interceptors have been changed to align with the new BatchRequest. - - - diff --git a/src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt b/src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt deleted file mode 100644 index 5672d5565214..000000000000 --- a/src/Batch/Client/Src/Azure.Batch/ReadMe_ReleaseNotes/2015.07.jul.GA.delta.from.doc.build.txt +++ /dev/null @@ -1,7 +0,0 @@ -Changes to publics made after "doc build" was handed off - -CloudJob: many props missing "?" nullability - -ListPoolUsageMetrics: - DateTime args needed ? I can't remember if the "?"s made it into doc build. - ? args get "=null" default value \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/howto.txt b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/howto.txt deleted file mode 100644 index 0e93a9ea8ca3..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/howto.txt +++ /dev/null @@ -1,5 +0,0 @@ -How to run the BatchClient unit tests: - -1. Use sn.exe to trust the public key associated with Microsoft.Azure.Batch.dll. This is required because at the time - the tests are run, the dll is delay-signed and thus is not trusted. Run - sn -Vr *,31bf3856ad364e35 in order to bypass strong name signing and allow the tests to run. \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/temp b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/temp deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj.old b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj.old deleted file mode 100644 index b18c5f18957a..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchClientIntegrationTests.csproj.old +++ /dev/null @@ -1,167 +0,0 @@ - - - - - {C809285A-784D-48E4-9D7A-F5685A19F595} - Library - Properties - BatchClientIntegrationTests - BatchClientIntegrationTests - - - 512 - ceeaaba5 - true - true - - - - - - - $(LibraryNugetPackageFolder)\Azure.Batch.6.0.0\lib\net45\Azure.Batch.dll - True - - - $(LibraryNugetPackageFolder)\Common.1.0.0\lib\net45\Common.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Azure.Management.Batch.3.0.0\lib\net45\Microsoft.Azure.Management.Batch.dll - True - - - - $(LibraryNugetPackageFolder)\Microsoft.Data.Edm.5.7.0\lib\net40\Microsoft.Data.Edm.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Data.OData.5.7.0\lib\net40\Microsoft.Data.OData.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Data.Services.Client.5.7.0\lib\net40\Microsoft.Data.Services.Client.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.3.3.5\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll - True - - - $(LibraryNugetPackageFolder)\WindowsAzure.Storage.8.0.1\lib\net45\Microsoft.WindowsAzure.Storage.dll - True - - - $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll - True - - - - - - - - - - - - $(LibraryNugetPackageFolder)\System.Spatial.5.7.0\lib\net40\System.Spatial.dll - True - - - - - - - $(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll - True - - - False - $(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll - - - $(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll - True - - - - - - {71f7cd84-d760-425f-823b-def2eaae5dc1} - IntegrationTestCommon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - PreserveNewest - - - Always - - - - - - - This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj.old b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj.old deleted file mode 100644 index 8ceb088aee87..000000000000 --- a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj.old +++ /dev/null @@ -1,94 +0,0 @@ - - - - - {71F7CD84-D760-425F-823B-DEF2EAAE5DC1} - Library - Properties - IntegrationTestCommon - IntegrationTestCommon - - - 512 - true - true - - - - - $(LibraryNugetPackageFolder)\Common.1.0.0\lib\net45\Common.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Azure.Management.Batch.3.0.0\lib\net45\Microsoft.Azure.Management.Batch.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Data.Edm.5.7.0\lib\net40\Microsoft.Data.Edm.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Data.OData.5.7.0\lib\net40\Microsoft.Data.OData.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Data.Services.Client.5.7.0\lib\net40\Microsoft.Data.Services.Client.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.2.3.5\lib\net45\Microsoft.Rest.ClientRuntime.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.3.3.5\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll - True - - - $(LibraryNugetPackageFolder)\WindowsAzure.Storage.8.0.1\lib\net45\Microsoft.WindowsAzure.Storage.dll - True - - - $(LibraryNugetPackageFolder)\Mono.Security.3.2.3.0\lib\net45\Mono.Security.dll - True - - - $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll - True - - - - - - - - - - - $(LibraryNugetPackageFolder)\System.Spatial.5.7.0\lib\net40\System.Spatial.dll - True - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj.old b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj.old deleted file mode 100644 index ae60bf103474..000000000000 --- a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzer.Tests.csproj.old +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - AnyCPU - {5F8690AA-765A-4112-8C68-0BB00C322FDB} - Library - Properties - ConfigureAwaitAnalyzerTests - ConfigureAwaitAnalyzer.Tests - 512 - true - true - true - - - - - bin\Net45-Debug\ConfigureAwaitAnalyzer.Tests.xml - - - - - - - false - false - - - - $(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll - True - - - $(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Common.1.0.0\lib\net45\Microsoft.CodeAnalysis.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.1.0.0\lib\net45\Microsoft.CodeAnalysis.CSharp.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.Workspaces.1.0.0\lib\net45\Microsoft.CodeAnalysis.CSharp.Workspaces.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.VisualBasic.1.0.0\lib\net45\Microsoft.CodeAnalysis.VisualBasic.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.0.0\lib\net45\Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.0.0\lib\net45\Microsoft.CodeAnalysis.Workspaces.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.0.0\lib\net45\Microsoft.CodeAnalysis.Workspaces.Desktop.dll - True - - - - $(LibraryNugetPackageFolder)\System.Collections.Immutable.1.1.36\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll - True - - - - $(LibraryNugetPackageFolder)\System.Reflection.Metadata.1.0.21\lib\portable-net45+win8\System.Reflection.Metadata.dll - True - - - - - - - - $(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll - True - - - - - - - - - - - Designer - - - - - {48215D6D-DB21-48B8-AB03-1297A94DF696} - ConfigureAwaitAnalyzer - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj.old b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj.old deleted file mode 100644 index 9651115717fb..000000000000 --- a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.csproj.old +++ /dev/null @@ -1,91 +0,0 @@ - - - - - AnyCPU - 11.0 - {48215D6D-DB21-48B8-AB03-1297A94DF696} - Library - Properties - ConfigureAwaitAnalyzer - ConfigureAwaitAnalyzer - 512 - true - true - true - - - - - false - false - - - - - - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Common.1.0.0\lib\portable-net45+win8\Microsoft.CodeAnalysis.dll - False - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.1.0.0\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.dll - False - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.Workspaces.1.0.0\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.Workspaces.dll - False - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.0.0\lib\portable-net45+win8\Microsoft.CodeAnalysis.Workspaces.dll - False - - - $(LibraryNugetPackageFolder)\System.Collections.Immutable.1.1.36\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll - False - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll - False - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll - False - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll - False - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll - False - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll - False - - - $(LibraryNugetPackageFolder)\System.Reflection.Metadata.1.0.21\lib\portable-net45+win8\System.Reflection.Metadata.dll - False - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj.old b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj.old deleted file mode 100644 index 3e2073c2be85..000000000000 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationLibrary.csproj.old +++ /dev/null @@ -1,58 +0,0 @@ - - - - - AnyCPU - {4D93A489-2576-400B-93CD-9340A892B0E8} - Library - Properties - CodeGenerationLibrary - CodeGenerationLibrary - 512 - true - true - true - - - - - $(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll - True - - - - - - - - - - - - - - - - - - - - - - - - Designer - - - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj.old b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj.old deleted file mode 100644 index 6432545e15ad..000000000000 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ObjectModelCodeGenerator.csproj.old +++ /dev/null @@ -1,210 +0,0 @@ - - - - - AnyCPU - {8734474A-543E-46C3-8E1B-6B37E4B97C78} - Exe - Properties - ObjectModelCodeGenerator - ObjectModelCodeGenerator - 512 - true - true - true - - - - v4.5.2 - - - - $(LibraryNugetPackageFolder)\Microsoft.VisualStudio.TextTemplating.14.0\lib\net45\Microsoft.VisualStudio.TextTemplating.14.0.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.VisualStudio.TextTemplating.Interfaces.10.0\lib\net40\Microsoft.VisualStudio.TextTemplating.Interfaces.10.0.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.VisualStudio.TextTemplating.Interfaces.11.0\lib\net45\Microsoft.VisualStudio.TextTemplating.Interfaces.11.0.dll - True - - - - - - - - - - - - - - GetTransportObjectSnippet.tt - True - True - - - CollectionConversionSnippet.tt - True - True - - - True - True - ModelClassTemplate.tt - - - - TextTemplatingFilePreprocessor - GetTransportObjectSnippet.cs - - - TextTemplatingFilePreprocessor - CollectionConversionSnippet.cs - - - TextTemplatingFilePreprocessor - StaticReadOnlyClassTemplate.cs - - - TextTemplatingFilePreprocessor - ModifiableClassTemplate.cs - - - TextTemplatingFilePreprocessor - ModelClassTemplate.cs - - - TextTemplatingFilePreprocessor - NamedBatchRequests.cs - - - - - StaticReadOnlyClassTemplate.tt - True - True - - - True - True - ModifiableClassTemplate.tt - - - - True - True - NamedBatchRequests.tt - - - - - - - - - - - - - {4d93a489-2576-400b-93cd-9340a892b0e8} - CodeGenerationLibrary - - - {13a13bb2-684f-4a2b-bcf9-34a9f9616599} - ProxyLayerParser - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj.old b/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj.old deleted file mode 100644 index aa62a997cd06..000000000000 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/ProxyLayerParser.csproj.old +++ /dev/null @@ -1,112 +0,0 @@ - - - - - AnyCPU - {13A13BB2-684F-4A2B-BCF9-34A9F9616599} - Library - Properties - ProxyLayerParser - ProxyLayerParser - 512 - true - true - - - - v4.5.2 - - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Common.1.3.2\lib\net45\Microsoft.CodeAnalysis.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.1.3.2\lib\net45\Microsoft.CodeAnalysis.CSharp.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2\lib\net45\Microsoft.CodeAnalysis.CSharp.Workspaces.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.3.2\lib\net45\Microsoft.CodeAnalysis.Workspaces.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.CodeAnalysis.Workspaces.Common.1.3.2\lib\net45\Microsoft.CodeAnalysis.Workspaces.Desktop.dll - True - - - - $(LibraryNugetPackageFolder)\System.Collections.Immutable.1.1.37\lib\dotnet\System.Collections.Immutable.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll - True - - - $(LibraryNugetPackageFolder)\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll - True - - - - $(LibraryNugetPackageFolder)\System.Reflection.Metadata.1.2.0\lib\portable-net45+win8\System.Reflection.Metadata.dll - True - - - - - - - - - - - - - - - - - - PreserveNewest - - - - PreserveNewest - - - - PreserveNewest - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/packages.config b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/packages.config index cc794f460237..ec96ec52499d 100644 --- a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/packages.config +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/packages.config @@ -1,6 +1,5 @@  - diff --git a/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config index 5c5facc19adb..be3ca77320dc 100644 --- a/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config +++ b/src/Batch/ClientIntegrationTesting/Tests/ProtocolLayer/BatchProxyIntegrationTests/packages.config @@ -1,7 +1,5 @@  - - From c58ed5f8d14843242036220b00393f1c0587b6db Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Fri, 24 Feb 2017 12:35:26 -0800 Subject: [PATCH 029/137] Adding netcore package --- .../project.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json index f1fb50cb7820..629fbec197a9 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json @@ -43,7 +43,8 @@ "dependencies": { "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.8", "Microsoft.IdentityModel.Tokens": "5.1.2", - "NETStandard.Library": "1.6.1" + "NETStandard.Library": "1.6.1", + "Microsoft.NETCore.Platforms": "1.1.0" } }, "netstandard1.5": { @@ -55,7 +56,8 @@ "dependencies": { "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.8", "Microsoft.IdentityModel.Tokens": "5.1.2", - "NETStandard.Library": "1.6.1" + "NETStandard.Library": "1.6.1", + "Microsoft.NETCore.Platforms": "1.1.0" } } } From 67ec4d558ad3becf0a45eec26a39922b5f701e19 Mon Sep 17 00:00:00 2001 From: matthchr Date: Fri, 24 Feb 2017 10:57:08 -0800 Subject: [PATCH 030/137] Update version to 6.0.1 --- src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs | 4 ++-- src/Batch/Client/Src/Azure.Batch/project.json | 5 +++-- .../Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs index 1c98db971e5b..c6f14c005099 100644 --- a/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs +++ b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs @@ -20,8 +20,8 @@ [assembly: AssemblyTitle("Microsoft.Azure.Batch")] [assembly: AssemblyDescription("Client library for interacting with the Azure Batch service.")] -[assembly: AssemblyVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.0.0.0")] +[assembly: AssemblyVersion("6.0.1.0")] +[assembly: AssemblyFileVersion("6.0.1.0")] [assembly: AssemblyCompany("Microsoft Corporation")] [assembly: AssemblyProduct("Microsoft Azure")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation. All rights reserved.")] diff --git a/src/Batch/Client/Src/Azure.Batch/project.json b/src/Batch/Client/Src/Azure.Batch/project.json index 94ddf7958b11..739b0b2440d8 100644 --- a/src/Batch/Client/Src/Azure.Batch/project.json +++ b/src/Batch/Client/Src/Azure.Batch/project.json @@ -1,5 +1,5 @@ { - "version": "6.0.0", + "version": "6.0.1", "name": "Azure.Batch", "description": "This client library provides access to the Microsoft Azure Batch service.", "authors": [ "Microsoft" ], @@ -10,7 +10,8 @@ "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "http://aka.ms/windowsazureapache2", "tags": [ "Microsoft", "Azure", "Batch", "windowsazureofficial" ], - "requireLicenseAcceptance": true + "requireLicenseAcceptance": true, + "releaseNotes": "See https://github.com/Azure/azure-sdk-for-net/blob/AutoRest/src/Batch/Client/changelog.md for release notes." }, "buildOptions": { "outputName": "Microsoft.Azure.Batch", diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json index 9ac90b8d79c1..4d7aadd9dcdf 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json @@ -31,7 +31,7 @@ "dotnet-test-xunit": "2.2.0-preview2-build1029", "Azure.Batch": { "target": "project", - "version": "6.0.0" + "version": "6.0.1" }, "Common": "1.0.0" } From 6c57343e8f4c7d3f1d52f6bdc59c284ef35cd53e Mon Sep 17 00:00:00 2001 From: matthchr Date: Fri, 24 Feb 2017 14:53:28 -0800 Subject: [PATCH 031/137] Avoid packaging folders containing "tests" --- .../FilterOutAutoRestLibraries.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs index f9cde92f1180..4c131bab2aa0 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs @@ -119,7 +119,8 @@ public override bool Execute() string dirPath = Path.GetDirectoryName(file); string dirName = Path.GetFileName(dirPath); if (dirPath.EndsWith(".test", System.StringComparison.OrdinalIgnoreCase) || - dirPath.EndsWith(".tests", System.StringComparison.OrdinalIgnoreCase)) + dirPath.EndsWith(".tests", System.StringComparison.OrdinalIgnoreCase) || + dirPath.IndexOf("tests", System.StringComparison.OrdinalIgnoreCase) >= 0) { testDirectories.Add(dirPath); } From 196d22536fb2d6ebce91a73eff4989ef1a82da71 Mon Sep 17 00:00:00 2001 From: matthchr Date: Fri, 24 Feb 2017 15:16:04 -0800 Subject: [PATCH 032/137] Clean up project.json and global.json --- .../Tests/ObjectModel/Azure.Batch.Unit.Tests/.gitignore | 1 + .../Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json | 5 ----- src/Batch/Client/Tests/ObjectModel/Common/project.json | 6 ------ src/Batch/Client/global.json | 5 +---- 4 files changed, 2 insertions(+), 15 deletions(-) create mode 100644 src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/.gitignore diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/.gitignore b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/.gitignore new file mode 100644 index 000000000000..3602361dafee --- /dev/null +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/.gitignore @@ -0,0 +1 @@ +temp \ No newline at end of file diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json index 4d7aadd9dcdf..389912829d13 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json @@ -3,11 +3,6 @@ "description": "Azure Batch Unit tests class library", "authors": [ "Microsoft Corporation" ], - "packOptions": { - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "" - }, "buildOptions": { "warningsAsErrors": true, "delaySign": true, diff --git a/src/Batch/Client/Tests/ObjectModel/Common/project.json b/src/Batch/Client/Tests/ObjectModel/Common/project.json index 40b6291b00ea..3870a9d06380 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/project.json +++ b/src/Batch/Client/Tests/ObjectModel/Common/project.json @@ -3,12 +3,6 @@ "description": "Azure Batch test common library", "authors": [ "Microsoft Corporation" ], - "packOptions": { - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "" - }, - "buildOptions": { "warningsAsErrors": true, "delaySign": true, diff --git a/src/Batch/Client/global.json b/src/Batch/Client/global.json index bc64a565c641..2f7633de6544 100644 --- a/src/Batch/Client/global.json +++ b/src/Batch/Client/global.json @@ -1,8 +1,5 @@ { "projects": [ "src","tests/objectmodel" - ], - "sdk": { - "version": "1.0.0-preview2-003121" - } + ] } \ No newline at end of file From 2c8284b51cf7ff1dc9193020c7cf063b88722c3c Mon Sep 17 00:00:00 2001 From: matthchr Date: Fri, 24 Feb 2017 15:42:37 -0800 Subject: [PATCH 033/137] Fix minor build error --- .../IntegrationTestCommon/IntegrationTestCommon.cs | 2 +- .../IntegrationTestCommon/IntegrationTestCommon.csproj | 10 ++++++---- src/Batch/FileStaging/AzureBatchFileStaging.sln | 2 +- .../Src/AzureBatchFileStaging/Batch.FileStaging.csproj | 4 ++-- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs index 197e7e05f74f..7909fc725c2a 100644 --- a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs @@ -95,7 +95,7 @@ private static CertificateCredentials GetBatchTestTenantCloudCredentials() certificate2 = certificates.Cast().FirstOrDefault( c => String.Equals( c.Thumbprint, - TestCommon.Configuration.BatchTRPCertificateThumbprint, + TestCommon.Configuration.BatchTRPCertificateThumbprint(), StringComparison.OrdinalIgnoreCase)); if (certificate2 == null) diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj index 1c8382e2bc60..922ed95ce879 100644 --- a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.csproj @@ -15,10 +15,6 @@ - - $(LibraryNugetPackageFolder)\Common.1.0.0\lib\net45\Common.dll - True - $(LibraryNugetPackageFolder)\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll True @@ -89,6 +85,12 @@ + + + {b697759f-6ef9-4142-8bd3-d78bf18c678e} + BatchTestCommon + + \ No newline at end of file diff --git a/src/Batch/FileStaging/AzureBatchFileStaging.sln b/src/Batch/FileStaging/AzureBatchFileStaging.sln index 0053ff9e26eb..4504d83adeb0 100644 --- a/src/Batch/FileStaging/AzureBatchFileStaging.sln +++ b/src/Batch/FileStaging/AzureBatchFileStaging.sln @@ -6,7 +6,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Batch.FileStaging", "Src\Az EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Batch.FileStaging.Tests", "Tests\Batch.FileStaging.Tests\Batch.FileStaging.Tests.csproj", "{C809285A-784D-48E4-9D7A-F5685A19F595}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureAwaitAnalyzer", "..\Client\Tools\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer.csproj", "{48215D6D-DB21-48B8-AB03-1297A94DF696}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigureAwaitAnalyzer", "..\ClientIntegrationTesting\Tools\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer\ConfigureAwaitAnalyzer.csproj", "{48215D6D-DB21-48B8-AB03-1297A94DF696}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/Batch/FileStaging/Src/AzureBatchFileStaging/Batch.FileStaging.csproj b/src/Batch/FileStaging/Src/AzureBatchFileStaging/Batch.FileStaging.csproj index 1300c1a2a427..9c15ed6c8d8c 100644 --- a/src/Batch/FileStaging/Src/AzureBatchFileStaging/Batch.FileStaging.csproj +++ b/src/Batch/FileStaging/Src/AzureBatchFileStaging/Batch.FileStaging.csproj @@ -16,7 +16,7 @@ - + @@ -97,7 +97,7 @@ - + {48215d6d-db21-48b8-ab03-1297a94df696} ConfigureAwaitAnalyzer false From fe77a4b22ae0af8437a775a8653b48156f89820d Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Fri, 24 Feb 2017 16:41:17 -0800 Subject: [PATCH 034/137] Updates for Cdn, Cognitive, Compute, Container and CustomerInsights --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 27 +++---- .../Properties/AssemblyInfo.cs | 4 +- .../project.json | 80 +++++++++---------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 24 +++--- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 20 +++-- .../Properties/AssemblyInfo.cs | 4 +- .../project.json | 2 +- 10 files changed, 85 insertions(+), 82 deletions(-) diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs index 2b6a64a6daea..e62bb150870a 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure CDN.")] [assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.0.1.0")] +[assembly: AssemblyFileVersion("3.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json index c13c63895694..bc5691ce8da2 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json @@ -1,5 +1,5 @@ { - "version": "3.0.1-preview", + "version": "3.1.0-preview", "description": "Microsoft Azure CDN Management Library", "authors": [ "Microsoft" ], @@ -8,8 +8,8 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft Azure CDN management", "CDN", "Cdn management", "REST HTTP client", "windowsazureofficial" ], - "requireLicenseAcceptance": true, + "tags": [ "Microsoft Azure CDN management", "CDN", "Cdn management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,26 +19,25 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { - "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.1.0,3.0.0)" + "dependencies": { } }, "netstandard1.5": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "System.Threading.Tasks": "4.3.0", + "NETStandard.Library": "1.6.1" } }, "netstandard1.1": { @@ -46,8 +45,8 @@ "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1" } } } diff --git a/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/Properties/AssemblyInfo.cs b/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/Properties/AssemblyInfo.cs index 1fe0f288f7e3..fa61605e921e 100644 --- a/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Cognitive Services Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Cognitive Services management functions for managing Microsoft Azure Cognitive Services accounts.")] -[assembly: AssemblyVersion("0.2.0.0")] -[assembly: AssemblyFileVersion("0.2.1.0")] +[assembly: AssemblyVersion("0.3.0.0")] +[assembly: AssemblyFileVersion("0.3.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json b/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json index 191c7ea773d0..874a6fc94371 100644 --- a/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json +++ b/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json @@ -1,5 +1,5 @@ { - "version": "0.2.1-preview", + "version": "0.3.0-preview", "description": "Microsoft Azure Management Cognitive Services Library", "authors": [ "Microsoft" ], @@ -8,8 +8,8 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft Azure Cognitive Services management", "Cognitive Services", "Cognitive Services management", "REST HTTP client", "windowsazureofficial" ], - "requireLicenseAcceptance": true, + "tags": [ "Microsoft Azure Cognitive Services management", "Cognitive Services", "Cognitive Services management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,61 +19,59 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime": "[2.1.0,3.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.1": { "buildOptions": { "define": [ "PORTABLE" ] }, "imports": ["dnxcore50", "portable-net45+win8"], "dependencies": { - "NETStandard.Library": "1.6.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } }, "netstandard1.5": { "buildOptions": { "define": [ "PORTABLE" ] }, "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Numerics": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11", - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/Properties/AssemblyInfo.cs b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/Properties/AssemblyInfo.cs index c7df55dc3691..83b85985c85e 100644 --- a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] [assembly: AssemblyVersion("14.0.0.0")] -[assembly: AssemblyFileVersion("14.0.0.0")] +[assembly: AssemblyFileVersion("14.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json index 162ccc6e04c4..6bcf3c73503a 100644 --- a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json +++ b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json @@ -1,15 +1,15 @@ { - "version": "14.0.0-prerelease", + "version": "14.1.0-prerelease", "description": "Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure resource management", "virtual machine", "compute", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure resource management", "virtual machine", "compute", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -18,30 +18,32 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs index 03a2075440c9..49dbc5dda5a0 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Container Registry.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json index 66ed81bb4566..63b04956045b 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json @@ -1,12 +1,12 @@ { - "version": "1.0.0-preview", + "version": "1.1.0-preview", "description": "Microsoft Azure Container Registry Management Library", "authors": [ "Microsoft" ], "packOptions": { "summary": "Microsoft Azure Container Registry Management Library", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Container Registry Management", "Container Registry", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Container Registry Management", "Container Registry", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -19,7 +19,8 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.4,4.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -30,17 +31,20 @@ "netstandard1.5": { "imports": [ "dnxcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11" + "System.Threading.Tasks": "4.3.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1" + "System.Runtime.Serialization.Primitives": "4.1.1", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1" } } } diff --git a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/Properties/AssemblyInfo.cs b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/Properties/AssemblyInfo.cs index 3adea2940aee..eba9e08ca9bc 100644 --- a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure CustomerInsights Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure CustomerInsights management functions for managing the Microsoft Azure CustomerInsights service.")] -[assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.0.1.0")] +[assembly: AssemblyVersion("0.1.0.0")] +[assembly: AssemblyFileVersion("0.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json index 353c05a6f505..982218b4d086 100644 --- a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json +++ b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json @@ -1,5 +1,5 @@ { - "version": "0.0.1-preview", + "version": "0.1.0-preview", "description": "Provides developers with libraries to create and manage Namespaces and manage Authorization Rules. Note: This client library is for CustomerInsights under Azure Resource Manager.", "authors": [ "Microsoft" ], From 1529b6a907a1772a4fafc6462fc5756c57437f91 Mon Sep 17 00:00:00 2001 From: David Burg Date: Wed, 22 Feb 2017 13:29:26 -0800 Subject: [PATCH 035/137] Regenerated whole Logic SDK with actual rest API PR. New autorest version per SDK PR checklist. Integration Account Session Tests extended and cleaned up code. Build fix. --- .../IntegrationAccountSessionInMemoryTests.cs | 12 +- ...ntegrationAccountSessions.ScenarioTests.cs | 356 ++++++---- ...eAndDeleteIntegrationAccountAgreement.json | 102 +-- ...eateAndGetIntegrationAccountAgreement.json | 84 +-- ...eAndUpdateIntegrationAccountAgreement.json | 86 +-- ...eIntegrationAccountAgreementUsingFile.json | 120 ++-- ...nAccountAgreementWithEnvelopeOverride.json | 86 +-- ...tionAccountAgreementOnAccountDeletion.json | 84 +-- .../ListIntegrationAccountAgreements.json | 142 ++-- ...ndDeleteIntegrationAccountCertificate.json | 86 ++- ...teAndGetIntegrationAccountCertificate.json | 83 ++- ...ndUpdateIntegrationAccountCertificate.json | 111 ++-- ...ationAccountCertificateWithPrivateKey.json | 82 +-- ...rationAccountCertificateWithPublicKey.json | 82 ++- ...onAccountCertificateOnAccountDeletion.json | 88 ++- .../ListIntegrationAccountCertificates.json | 89 ++- .../CreateAndDeleteIntegrationAccountMap.json | 80 +-- .../CreateAndGetIntegrationAccountMap.json | 86 +-- .../CreateAndUpdateIntegrationAccountMap.json | 106 +-- ...ntegrationAccountMapOnAccountDeletion.json | 84 +-- .../ListIntegrationAccountMaps.json | 84 +-- ...ateAndDeleteIntegrationAccountPartner.json | 82 +-- ...CreateAndGetIntegrationAccountPartner.json | 86 +-- ...ateAndUpdateIntegrationAccountPartner.json | 86 +-- ...rationAccountPartnerOnAccountDeletion.json | 82 +-- .../ListIntegrationAccountPartners.json | 84 +-- .../CreateAndDeleteIntegrationAccount.json | 40 +- .../CreateAndGetIntegrationAccountByName.json | 62 +- .../CreateAndUpdateIntegrationAccount.json | 62 +- ...ListIntegrationAccountByResourceGroup.json | 56 +- .../ListIntegrationAccountBySubscription.json | 78 +-- .../ListIntegrationAccountCallbackUrl.json | 144 ++-- .../UpdateIntegrationAccount.json | 62 +- ...eateAndDeleteIntegrationAccountSchema.json | 96 +-- .../CreateAndGetIntegrationAccountSchema.json | 84 +-- ...eateAndUpdateIntegrationAccountSchema.json | 86 +-- ...grationAccountSchemaOnAccountDeletion.json | 82 +-- .../ListIntegrationAccountSchemas.json | 80 +-- ...ateAndDeleteIntegrationAccountSession.json | 215 ++++-- ...CreateAndGetIntegrationAccountSession.json | 90 +-- ...ateAndUpdateIntegrationAccountSession.json | 96 +-- ...ateIntegrationAccountSessionUsingFile.json | 122 ++-- ...rationAccountSessionOnAccountDeletion.json | 86 +-- .../ListIntegrationAccountSessions.json | 146 ++--- .../GetProviderOperations.json | 14 +- .../Logic/Logic.Tests/Utilities/Constants.cs | 5 + .../Generated/AgreementsOperations.cs | 282 ++++---- .../AgreementsOperationsExtensions.cs | 28 +- .../Generated/CertificatesOperations.cs | 280 ++++---- .../CertificatesOperationsExtensions.cs | 26 +- .../Generated/IAgreementsOperations.cs | 46 +- .../Generated/ICertificatesOperations.cs | 44 +- .../IIntegrationAccountsOperations.cs | 68 +- .../Generated/ILogicManagementClient.cs | 30 +- .../Generated/IMapsOperations.cs | 46 +- .../Generated/IPartnersOperations.cs | 46 +- .../Generated/ISchemasOperations.cs | 46 +- .../Generated/ISessionsOperations.cs | 48 +- .../IWorkflowRunActionsOperations.cs | 36 +- .../Generated/IWorkflowRunsOperations.cs | 40 +- .../IWorkflowTriggerHistoriesOperations.cs | 36 +- .../Generated/IWorkflowTriggersOperations.cs | 46 +- .../Generated/IWorkflowVersionsOperations.cs | 34 +- .../Generated/IWorkflowsOperations.cs | 82 +-- .../IntegrationAccountsOperations.cs | 468 +++++++------ ...IntegrationAccountsOperationsExtensions.cs | 34 +- .../Generated/LogicManagementClient.cs | 235 +++---- .../LogicManagementClientExtensions.cs | 20 +- .../Generated/MapsOperations.cs | 282 ++++---- .../Generated/MapsOperationsExtensions.cs | 28 +- .../AS2AcknowledgementConnectionSettings.cs | 25 +- .../Generated/Models/AS2AgreementContent.cs | 27 +- .../Generated/Models/AS2EnvelopeSettings.cs | 25 +- .../Generated/Models/AS2ErrorSettings.cs | 21 +- .../Generated/Models/AS2MdnSettings.cs | 34 +- .../Models/AS2MessageConnectionSettings.cs | 25 +- .../Generated/Models/AS2OneWayAgreement.cs | 33 +- .../Generated/Models/AS2ProtocolSettings.cs | 53 +- .../Generated/Models/AS2SecuritySettings.cs | 51 +- .../Generated/Models/AS2ValidationSettings.cs | 42 +- .../Generated/Models/AgreementContent.cs | 32 +- .../Generated/Models/AgreementType.cs | 9 +- .../Generated/Models/B2BPartnerContent.cs | 19 +- .../Generated/Models/BusinessIdentity.cs | 20 +- .../Generated/Models/CallbackUrl.cs | 16 +- .../Generated/Models/ContentHash.cs | 17 +- .../Generated/Models/ContentLink.cs | 20 +- .../Generated/Models/Correlation.cs | 16 +- .../Generated/Models/DayOfWeek.cs | 9 +- .../Generated/Models/DaysOfWeek.cs | 9 +- .../Models/EdifactAcknowledgementSettings.cs | 44 +- .../Models/EdifactAgreementContent.cs | 28 +- .../Generated/Models/EdifactCharacterSet.cs | 9 +- .../Models/EdifactDecimalIndicator.cs | 9 +- .../Models/EdifactDelimiterOverride.cs | 35 +- .../Models/EdifactEnvelopeOverride.cs | 43 +- .../Models/EdifactEnvelopeSettings.cs | 108 ++- .../Models/EdifactFramingSettings.cs | 40 +- .../Generated/Models/EdifactMessageFilter.cs | 19 +- .../Models/EdifactMessageIdentifier.cs | 18 +- .../Models/EdifactOneWayAgreement.cs | 34 +- .../Models/EdifactProcessingSettings.cs | 32 +- .../Models/EdifactProtocolSettings.cs | 78 ++- .../Models/EdifactSchemaReference.cs | 26 +- .../Models/EdifactValidationOverride.cs | 37 +- .../Models/EdifactValidationSettings.cs | 46 +- .../Generated/Models/EncryptionAlgorithm.cs | 9 +- .../Generated/Models/ErrorProperties.cs | 54 ++ .../Generated/Models/ErrorResponse.cs | 35 +- .../Models/ErrorResponseException.cs | 31 +- .../GenerateUpgradedDefinitionParameters.cs | 17 +- .../Models/GetCallbackUrlParameters.cs | 26 +- .../Generated/Models/HashingAlgorithm.cs | 9 +- .../Generated/Models/IntegrationAccount.cs | 31 +- .../Models/IntegrationAccountAgreement.cs | 56 +- .../IntegrationAccountAgreementFilter.cs | 28 +- .../Models/IntegrationAccountCertificate.cs | 39 +- .../Generated/Models/IntegrationAccountMap.cs | 46 +- .../Models/IntegrationAccountMapFilter.cs | 19 +- ...ionAccountMapPropertiesParametersSchema.cs | 16 +- .../Models/IntegrationAccountPartner.cs | 36 +- .../Models/IntegrationAccountPartnerFilter.cs | 19 +- .../Models/IntegrationAccountSchema.cs | 44 +- .../Models/IntegrationAccountSchemaFilter.cs | 19 +- .../Models/IntegrationAccountSession.cs | 33 +- .../Models/IntegrationAccountSessionFilter.cs | 23 +- .../Generated/Models/IntegrationAccountSku.cs | 23 +- .../Models/IntegrationAccountSkuName.cs | 9 +- .../Generated/Models/KeyType.cs | 9 +- .../Generated/Models/KeyVaultKeyReference.cs | 20 +- .../Models/KeyVaultKeyReferenceKeyVault.cs | 22 +- .../Generated/Models/MapType.cs | 9 +- .../Generated/Models/MessageFilterType.cs | 9 +- .../Generated/Models/Operation.cs | 19 +- .../Generated/Models/OperationDisplay.cs | 24 +- .../Generated/Models/Page.cs | 19 +- .../Generated/Models/ParameterType.cs | 9 +- .../Generated/Models/PartnerContent.cs | 16 +- .../Generated/Models/PartnerType.cs | 9 +- .../Generated/Models/RecurrenceFrequency.cs | 9 +- .../Generated/Models/RecurrenceSchedule.cs | 22 +- .../Models/RecurrenceScheduleOccurrence.cs | 19 +- .../Generated/Models/Resource.cs | 34 +- .../Generated/Models/ResourceReference.cs | 28 +- .../Generated/Models/SchemaType.cs | 9 +- .../Models/SegmentTerminatorSuffix.cs | 9 +- .../Generated/Models/Sku.cs | 21 +- .../Generated/Models/SkuName.cs | 9 +- .../Generated/Models/SubResource.cs | 20 +- .../Models/TrailingSeparatorPolicy.cs | 9 +- .../Generated/Models/UsageIndicator.cs | 9 +- .../Generated/Models/Workflow.cs | 66 +- .../Generated/Models/WorkflowFilter.cs | 18 +- .../Models/WorkflowOutputParameter.cs | 26 +- .../Generated/Models/WorkflowParameter.cs | 21 +- .../Models/WorkflowProvisioningState.cs | 9 +- .../Generated/Models/WorkflowRun.cs | 92 ++- .../Generated/Models/WorkflowRunAction.cs | 85 ++- .../Models/WorkflowRunActionFilter.cs | 19 +- .../Generated/Models/WorkflowRunFilter.cs | 19 +- .../Generated/Models/WorkflowRunTrigger.cs | 87 ++- .../Generated/Models/WorkflowState.cs | 9 +- .../Generated/Models/WorkflowStatus.cs | 9 +- .../Generated/Models/WorkflowTrigger.cs | 92 ++- .../Models/WorkflowTriggerCallbackUrl.cs | 20 +- .../Generated/Models/WorkflowTriggerFilter.cs | 18 +- .../Models/WorkflowTriggerHistory.cs | 91 ++- .../Models/WorkflowTriggerHistoryFilter.cs | 19 +- .../WorkflowTriggerProvisioningState.cs | 9 +- .../Models/WorkflowTriggerRecurrence.cs | 33 +- .../Generated/Models/WorkflowVersion.cs | 57 +- .../Models/X12AcknowledgementSettings.cs | 54 +- .../Generated/Models/X12AgreementContent.cs | 27 +- .../Generated/Models/X12CharacterSet.cs | 9 +- .../Generated/Models/X12DateFormat.cs | 9 +- .../Generated/Models/X12DelimiterOverrides.cs | 31 +- .../Generated/Models/X12EnvelopeOverride.cs | 35 +- .../Generated/Models/X12EnvelopeSettings.cs | 79 ++- .../Generated/Models/X12FramingSettings.cs | 29 +- .../Generated/Models/X12MessageFilter.cs | 19 +- .../Generated/Models/X12MessageIdentifier.cs | 17 +- .../Generated/Models/X12OneWayAgreement.cs | 33 +- .../Generated/Models/X12ProcessingSettings.cs | 38 +- .../Generated/Models/X12ProtocolSettings.cs | 85 ++- .../Generated/Models/X12SchemaReference.cs | 21 +- .../Generated/Models/X12SecuritySettings.cs | 21 +- .../Generated/Models/X12TimeFormat.cs | 9 +- .../Generated/Models/X12ValidationOverride.cs | 37 +- .../Generated/Models/X12ValidationSettings.cs | 46 +- .../Generated/PartnersOperations.cs | 282 ++++---- .../Generated/PartnersOperationsExtensions.cs | 28 +- .../Generated/SchemasOperations.cs | 282 ++++---- .../Generated/SchemasOperationsExtensions.cs | 28 +- .../Generated/SessionsOperations.cs | 306 +++++---- .../Generated/SessionsOperationsExtensions.cs | 32 +- .../Generated/WorkflowRunActionsOperations.cs | 176 ++--- .../WorkflowRunActionsOperationsExtensions.cs | 24 +- .../Generated/WorkflowRunsOperations.cs | 221 ++++--- .../WorkflowRunsOperationsExtensions.cs | 26 +- .../WorkflowTriggerHistoriesOperations.cs | 176 ++--- ...lowTriggerHistoriesOperationsExtensions.cs | 24 +- .../Generated/WorkflowTriggersOperations.cs | 278 ++++---- .../WorkflowTriggersOperationsExtensions.cs | 28 +- .../Generated/WorkflowVersionsOperations.cs | 170 ++--- .../WorkflowVersionsOperationsExtensions.cs | 22 +- .../Generated/WorkflowsOperations.cs | 619 ++++++++++-------- .../WorkflowsOperationsExtensions.cs | 42 +- .../generate.cmd | 4 +- 208 files changed, 7246 insertions(+), 5604 deletions(-) create mode 100644 src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorProperties.cs diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs index 0a07610e8810..ea735ae68a17 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs @@ -262,12 +262,6 @@ public void IntegrationAccountSession_Get_Exception() var handler = new RecordedDelegatingHandler(); var client = this.CreateIntegrationAccountClient(handler); - handler.Response = new HttpResponseMessage - { - StatusCode = HttpStatusCode.NotFound, - Content = new StringContent(string.Empty) - }; - Assert.Throws(() => client.Sessions.Get( resourceGroupName: null, integrationAccountName: "IntegrationAccountName", @@ -280,10 +274,6 @@ public void IntegrationAccountSession_Get_Exception() resourceGroupName: ResourceGroupName, integrationAccountName: "IntegrationAccountName", sessionName: null)); - Assert.Throws(() => client.Sessions.Get( - resourceGroupName: ResourceGroupName, - integrationAccountName: "IntegrationAccountName", - sessionName: "SessionName")); } [Fact] @@ -306,7 +296,7 @@ public void IntegrationAccountSession_Get_OK() handler.Request.ValidateAuthorizationHeader(); handler.Request.ValidateMethod(HttpMethod.Get); - this.ValidateSession(result); + this.ValidateSession(result as IntegrationAccountSession); } private void ValidateSessionList(IPage result) diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs index 81cb3c3aae25..efb626d6b8e5 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs @@ -6,13 +6,11 @@ namespace Test.Azure.Management.Logic { using System.Collections.Generic; using System.Linq; - using Microsoft.Rest.ClientRuntime.Azure.TestFramework; - using Xunit; using Microsoft.Azure.Management.Logic; using Microsoft.Azure.Management.Logic.Models; using Microsoft.Rest.Azure; - using Newtonsoft.Json; - using System.IO; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; /// /// Scenario tests for the integration accounts session. @@ -32,33 +30,62 @@ public class IntegrationAccountSessionScenarioTests : BaseScenarioTests [Fact] public void CreateAndDeleteIntegrationAccountSession() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(className: TestClass)) { - string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); - string integrationAccountSessionName = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); + var integrationAccountSessionName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); var client = context.GetServiceClient(); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate( - Constants.DefaultResourceGroup, - integrationAccountName, - CreateIntegrationAccountInstance(integrationAccountName)); + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + integrationAccount: this.CreateIntegrationAccountInstance(integrationAccountName: integrationAccountName)); - var instance = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName); + var instance = this.CreateIntegrationAccountSessionInstanceWithoutLocation( + integrationAccountSessionName: integrationAccountSessionName, + integrationAccountName: integrationAccountName); instance.Content = "256"; - var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountSessionName, instance); - - var getSession = client.Sessions.Get(Constants.DefaultResourceGroup, - integrationAccountName, - integrationAccountSessionName); - - Assert.Equal(getSession.Name, integrationAccountSessionName); - Assert.Equal(getSession.Content, "256"); - - client.Sessions.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSessionName); - client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + var session = client.Sessions.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName, + session: instance); + + var getSession = client.Sessions.Get( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName) as IntegrationAccountSession; + + Assert.Equal(expected: integrationAccountSessionName, actual: getSession.Name); + Assert.Equal(expected: "256", actual: getSession.Content); + + // Deleting an existing record should return 200 + client.Sessions.Delete( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName); + + // Deleting an absent record should not throw, RP returns 204 + client.Sessions.Delete( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName); + + // Getting an absent record should not throw, RP returns 404 and error response + var errorResponse = client.Sessions.Get( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName) as ErrorResponse; + Assert.NotNull(errorResponse); + Assert.NotNull(errorResponse.Error); + Assert.Equal(expected: "SessionNotFound", actual: errorResponse.Error.Code); + Assert.Contains(expectedSubstring: "could not be found in integration account", actualString: errorResponse.Error.Message); + + // Clean-up the integration account. + client.IntegrationAccounts.Delete( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName); } } @@ -68,34 +95,42 @@ public void CreateAndDeleteIntegrationAccountSession() [Fact] public void CreateAndUpdateIntegrationAccountSession() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(className: TestClass)) { - string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); - string integrationAccountSessionName = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); - + var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); + var integrationAccountSessionName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); var client = context.GetServiceClient(); - var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, - CreateIntegrationAccountInstance(integrationAccountName)); - - var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountSessionName, - CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName)); - - var updateSession = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, - integrationAccountName); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + integrationAccount: this.CreateIntegrationAccountInstance(integrationAccountName: integrationAccountName)); + + var session = client.Sessions.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName, + session: this.CreateIntegrationAccountSessionInstanceWithoutLocation( + integrationAccountSessionName: integrationAccountSessionName, + integrationAccountName: integrationAccountName)); + + var updateSession = this.CreateIntegrationAccountSessionInstanceWithoutLocation( + integrationAccountSessionName: integrationAccountSessionName, + integrationAccountName: integrationAccountName); + updateSession.Content = "foobar_update"; var updatedSession = client.Sessions.CreateOrUpdate( - Constants.DefaultResourceGroup, - integrationAccountName, - integrationAccountSessionName, updateSession); + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName, + session: updateSession); - Assert.Equal(updatedSession.Name, integrationAccountSessionName); + Assert.Equal(expected: integrationAccountSessionName, actual: updatedSession.Name); + Assert.Equal(expected: "foobar_update", actual: updateSession.Content); - client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + client.IntegrationAccounts.Delete( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName); } } @@ -106,34 +141,40 @@ public void CreateAndUpdateIntegrationAccountSession() [Fact] public void CreateAndGetIntegrationAccountSession() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(TestClass)) { - string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); - string integrationAccountSessionName = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); + var integrationAccountSessionName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); var client = context.GetServiceClient(); - var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, - CreateIntegrationAccountInstance(integrationAccountName)); - var instance = CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName); - + var createdAccount = client.IntegrationAccounts.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + integrationAccount: this.CreateIntegrationAccountInstance(integrationAccountName: integrationAccountName)); + var instance = this.CreateIntegrationAccountSessionInstanceWithoutLocation( + integrationAccountSessionName: integrationAccountSessionName, + integrationAccountName: integrationAccountName); instance.Content= "256"; - var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountSessionName, instance); + var session = client.Sessions.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName, + session: instance); - Assert.Equal(session.Name, integrationAccountSessionName); + Assert.Equal(actual: session.Name, expected: integrationAccountSessionName); - var getSession = client.Sessions.Get(Constants.DefaultResourceGroup, - integrationAccountName, - integrationAccountSessionName); + var getSession = client.Sessions.Get( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName) as IntegrationAccountSession; Assert.Equal(session.Name, getSession.Name); Assert.Equal(session.Content, "256"); - client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + client.IntegrationAccounts.Delete( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName); } } @@ -143,45 +184,54 @@ public void CreateAndGetIntegrationAccountSession() [Fact] public void ListIntegrationAccountSessions() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(TestClass)) { - var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); - var integrationAccountSessionName1 = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); - var integrationAccountSessionName2 = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); - var integrationAccountSessionName3 = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationAccountSessionName1 = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); + var integrationAccountSessionName2 = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); + var integrationAccountSessionName3 = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); var client = context.GetServiceClient(); - var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, - CreateIntegrationAccountInstance(integrationAccountName)); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + integrationAccount: this.CreateIntegrationAccountInstance(integrationAccountName: integrationAccountName)); client.Sessions.CreateOrUpdate( - Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountSessionName1, - CreateIntegrationAccountSessionInstance(integrationAccountSessionName1, integrationAccountName)); + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName1, + session: this.CreateIntegrationAccountSessionInstanceWithoutLocation( + integrationAccountSessionName: integrationAccountSessionName1, + integrationAccountName: integrationAccountName)); client.Sessions.CreateOrUpdate( - Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountSessionName2, - CreateIntegrationAccountSessionInstance(integrationAccountSessionName2, integrationAccountName)); + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName2, + session: this.CreateIntegrationAccountSessionInstanceWithoutLocation( + integrationAccountSessionName: integrationAccountSessionName2, + integrationAccountName: integrationAccountName)); client.Sessions.CreateOrUpdate( - Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountSessionName3, - CreateIntegrationAccountSessionInstance(integrationAccountSessionName3, integrationAccountName)); + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName3, + session: this.CreateIntegrationAccountSessionInstanceWithoutLocation( + integrationAccountSessionName: integrationAccountSessionName3, + integrationAccountName: integrationAccountName)); - var sessions = client.Sessions.ListByIntegrationAccounts(Constants.DefaultResourceGroup, integrationAccountName); + var sessions = client.Sessions.ListByIntegrationAccounts( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName); Assert.True(sessions.Count() == 3); - client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); - + client.IntegrationAccounts.Delete( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName); } } @@ -192,27 +242,38 @@ public void ListIntegrationAccountSessions() [Fact] public void DeleteIntegrationAccountSessionOnAccountDeletion() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(TestClass)) { - string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); - string integrationAccountSessionName = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); + var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + var integrationAccountSessionName = TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); var client = context.GetServiceClient(); - var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, - CreateIntegrationAccountInstance(integrationAccountName)); - var session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountSessionName, - CreateIntegrationAccountSessionInstance(integrationAccountSessionName, integrationAccountName)); - - Assert.Equal(session.Name, integrationAccountSessionName); - - client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); - Assert.Throws( - () => - client.Sessions.Get(Constants.DefaultResourceGroup, integrationAccountName, - integrationAccountSessionName)); + + var createdAccount = client.IntegrationAccounts.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + integrationAccount: this.CreateIntegrationAccountInstance(integrationAccountName: integrationAccountName)); + var session = client.Sessions.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName, + session: this.CreateIntegrationAccountSessionInstanceWithoutLocation( + integrationAccountSessionName: integrationAccountSessionName, + integrationAccountName: integrationAccountName)); + + Assert.Equal(actual: session.Name, expected: integrationAccountSessionName); + + client.IntegrationAccounts.Delete( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName); + var errorResponse = client.Sessions + .Get( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName) as ErrorResponse; + Assert.NotNull(errorResponse); + Assert.NotNull(errorResponse.Error); + Assert.Equal(expected: "ResourceNotFound", actual: errorResponse.Error.Code); + Assert.Contains(expectedSubstring: "under resource group 'flowrg' was not found.", actualString: errorResponse.Error.Message); } } @@ -222,63 +283,70 @@ public void DeleteIntegrationAccountSessionOnAccountDeletion() [Fact] public void CreateIntegrationAccountSessionUsingFile() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(TestClass)) { - var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); - - var integrationAs2AccountSessionName = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); - var integrationX12AccountSessionName = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); - var integrationEdifactAccountSessionName = - TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); - + var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); + var integrationAs2AccountSessionName =TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); + var integrationX12AccountSessionName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); + var integrationEdifactAccountSessionName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); var client = context.GetServiceClient(); - var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - - var as2Session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, integrationAs2AccountSessionName, - CreateIntegrationAccountSessionInstanceFromFile(integrationAs2AccountSessionName, - integrationAccountName)); + var createdAccount = client.IntegrationAccounts.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + integrationAccount: this.CreateIntegrationAccountInstance(integrationAccountName: integrationAccountName)); + + var as2Session = client.Sessions.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAs2AccountSessionName, + session: this.CreateIntegrationAccountSessionInstanceWithLocation( + integrationAccountSessionName: integrationAs2AccountSessionName, + integrationAccountName: integrationAccountName)); var edifactSession = client.Sessions.CreateOrUpdate( - Constants.DefaultResourceGroup, - integrationAccountName, integrationEdifactAccountSessionName, - CreateIntegrationAccountSessionInstanceFromFile(integrationEdifactAccountSessionName, integrationAccountName)); - - var x12Session = client.Sessions.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, integrationX12AccountSessionName, - CreateIntegrationAccountSessionInstanceFromFile(integrationX12AccountSessionName, integrationAccountName)); - - Assert.Equal(as2Session.Name, integrationAs2AccountSessionName); - Assert.Equal(edifactSession.Name, integrationEdifactAccountSessionName); - Assert.Equal(x12Session.Name, integrationX12AccountSessionName); - - client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationEdifactAccountSessionName, + session: this.CreateIntegrationAccountSessionInstanceWithLocation( + integrationAccountSessionName: integrationEdifactAccountSessionName, + integrationAccountName: integrationAccountName)); + + var x12Session = client.Sessions.CreateOrUpdate( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationX12AccountSessionName, + session: this.CreateIntegrationAccountSessionInstanceWithLocation( + integrationAccountSessionName: integrationX12AccountSessionName, + integrationAccountName: integrationAccountName)); + + Assert.Equal(actual: as2Session.Name, expected: integrationAs2AccountSessionName); + Assert.Equal(actual: edifactSession.Name, expected: integrationEdifactAccountSessionName); + Assert.Equal(actual: x12Session.Name, expected: integrationX12AccountSessionName); + + client.IntegrationAccounts.Delete( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName); } } #region Private /// - /// Creates an Integration account session + /// Creates an Integration account session without the location property /// /// Name of the integration account session /// Name of the integration account /// Session instance - private IntegrationAccountSession CreateIntegrationAccountSessionInstance( + private IntegrationAccountSession CreateIntegrationAccountSessionInstanceWithoutLocation( string integrationAccountSessionName, string integrationAccountName) { - IDictionary tags = new Dictionary(); + var tags = new Dictionary(); tags.Add("IntegrationAccountSession", integrationAccountSessionName); var session = new IntegrationAccountSession { - Location = Constants.DefaultLocation, Tags = tags, Content = "123" }; @@ -287,16 +355,16 @@ private IntegrationAccountSession CreateIntegrationAccountSessionInstance( } /// - /// Creates an Integration account session from file source + /// Creates an Integration account session with the location property /// /// Name of the integration account session /// Name of the integration account /// Session instance - private IntegrationAccountSession CreateIntegrationAccountSessionInstanceFromFile( + private IntegrationAccountSession CreateIntegrationAccountSessionInstanceWithLocation( string integrationAccountSessionName, string integrationAccountName) { - IDictionary tags = new Dictionary(); + var tags = new Dictionary(); tags.Add("IntegrationAccountSession", integrationAccountSessionName); var session = new IntegrationAccountSession diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json index b676861bf84e..071a3f7348c9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "f5bd57a4-48cc-4fe9-b5f4-e7fdba5bf6ab" + "545ecb69-c93c-4328-8c17-b58e1f5532d5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646\",\r\n \"name\": \"IntegrationAccount8646\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579\",\r\n \"name\": \"IntegrationAccount7579\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:24 GMT" + "Sat, 25 Feb 2017 00:21:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2c794371-e4f2-4d5d-8f3d-3cd4c0189437" + "westus:8f0e70ee-bd1e-48b7-9a13-63f8b552f207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1190" ], "x-ms-correlation-request-id": [ - "a7b88f44-7a6c-445a-b046-0efc62be9923" + "7c2a3b8b-26e5-4895-8cbd-7935e8cd5cb4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015925Z:a7b88f44-7a6c-445a-b046-0efc62be9923" + "WESTUS2:20170225T002131Z:7c2a3b8b-26e5-4895-8cbd-7935e8cd5cb4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyNzQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU1MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8274\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8274\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5509\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5509\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5860" ], "x-ms-client-request-id": [ - "eed47123-4d9c-4bf7-836c-78e0d129fa37" + "f40a3249-252a-4b03-9481-40f04235a9c6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:25.6809346Z\",\r\n \"changedTime\": \"2017-02-11T01:59:25.6816604Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8274\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274\",\r\n \"name\": \"IntegrationAccountAgreement8274\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:32.0684482Z\",\r\n \"changedTime\": \"2017-02-25T00:21:32.0687964Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5509\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509\",\r\n \"name\": \"IntegrationAccountAgreement5509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3917" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:24 GMT" + "Sat, 25 Feb 2017 00:21:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c1e0cfb6-174f-498e-b49b-a3cc02c9df32" + "westus:add98529-1efc-47dd-8129-88c8e1c173bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1189" ], "x-ms-correlation-request-id": [ - "d6363852-098c-44b7-be1e-31091cff653f" + "0a3f8701-c683-4e99-9a81-b72520aaadce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015925Z:d6363852-098c-44b7-be1e-31091cff653f" + "WESTUS2:20170225T002132Z:0a3f8701-c683-4e99-9a81-b72520aaadce" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyNzQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU1MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69e436d6-a682-4e46-9b15-823215577440" + "3898cd11-e210-4b08-af8d-0d8c2713ecfb" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:25.6809346Z\",\r\n \"changedTime\": \"2017-02-11T01:59:25.6816604Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8274\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274\",\r\n \"name\": \"IntegrationAccountAgreement8274\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:32.0684482Z\",\r\n \"changedTime\": \"2017-02-25T00:21:32.0687964Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5509\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509\",\r\n \"name\": \"IntegrationAccountAgreement5509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:24 GMT" + "Sat, 25 Feb 2017 00:21:31 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f551c382-f74d-47ce-a4f5-d996d43e1e14" + "westus:c2551f66-edc5-43ce-b895-834142b32de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14799" + "14609" ], "x-ms-correlation-request-id": [ - "33898fb6-7afa-4a30-87b1-e2be46b56fce" + "8a514bf0-542f-4f26-875d-bcff16b0d2c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015925Z:33898fb6-7afa-4a30-87b1-e2be46b56fce" + "WESTUS2:20170225T002132Z:8a514bf0-542f-4f26-875d-bcff16b0d2c8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyNzQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU1MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc5f4d98-7611-4b80-bfa9-0e2768ee3fad" + "24b37a0c-15ce-4e2f-bf43-5c491cfe9461" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,44 +210,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:25 GMT" + "Sat, 25 Feb 2017 00:21:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9adfada2-1863-4800-a397-e3b7cc739283" + "westus:f2a90077-eed4-4fc1-8304-50cbe4b5fcdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1188" ], "x-ms-correlation-request-id": [ - "caf6a236-e846-4d21-9ff9-9b61628594f1" + "fd0710ea-b116-4f13-85f4-254dcc4216ee" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015926Z:caf6a236-e846-4d21-9ff9-9b61628594f1" + "WESTUS2:20170225T002132Z:fd0710ea-b116-4f13-85f4-254dcc4216ee" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4eb43cbe-2d64-4e29-936d-221c44a0f8c5" + "27fb0125-0010-43fb-9c09-f51e298e5408" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -262,25 +262,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:25 GMT" + "Sat, 25 Feb 2017 00:21:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bd1bb180-85cf-4360-b2e9-7bec891bcf86" + "westus:1fb499de-36ff-45f8-82c4-5bfe055f490c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1187" ], "x-ms-correlation-request-id": [ - "472199cb-66b0-4ba1-a006-14734c163359" + "e9125c8f-2aa1-4471-81c0-1b7cc7c8bb1a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015926Z:472199cb-66b0-4ba1-a006-14734c163359" + "WESTUS2:20170225T002132Z:e9125c8f-2aa1-4471-81c0-1b7cc7c8bb1a" ] }, "StatusCode": 200 @@ -288,8 +288,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountAgreement": [ - "IntegrationAccount8646", - "IntegrationAccountAgreement8274" + "IntegrationAccount7579", + "IntegrationAccountAgreement5509" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json index fc8f56a73731..a878ce5b0f89 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTU2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "354f6a71-07d8-46d4-a577-b44b1f118836" + "232fcc82-606a-4b53-bf8e-cba30391f17a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562\",\r\n \"name\": \"IntegrationAccount5562\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552\",\r\n \"name\": \"IntegrationAccount4552\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:13 GMT" + "Sat, 25 Feb 2017 00:21:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c21c5bd9-ab9c-421c-872b-589e541ac326" + "westus:4ac3eff1-70ce-455e-9a37-c2863939b521" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "179e723c-36ea-4a70-b08c-baeca3ffeb2c" + "0fe73687-e784-4bb2-8a37-6fb2f730da82" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015913Z:179e723c-36ea-4a70-b08c-baeca3ffeb2c" + "WESTUS2:20170225T002126Z:0fe73687-e784-4bb2-8a37-6fb2f730da82" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562/agreements/IntegrationAccountAgreement7901?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTU2Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc5MDE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552/agreements/IntegrationAccountAgreement9329?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDkzMjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7901\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7901\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement9329\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement9329\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5862" ], "x-ms-client-request-id": [ - "4af82c5e-028a-4bd8-b2d7-66f203354049" + "919b4874-81be-43da-adda-7c90b53f843c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:14.5613147Z\",\r\n \"changedTime\": \"2017-02-11T01:59:14.5615579Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7901\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562/agreements/IntegrationAccountAgreement7901\",\r\n \"name\": \"IntegrationAccountAgreement7901\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:26.6913573Z\",\r\n \"changedTime\": \"2017-02-25T00:21:26.6920065Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9329\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552/agreements/IntegrationAccountAgreement9329\",\r\n \"name\": \"IntegrationAccountAgreement9329\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3919" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:13 GMT" + "Sat, 25 Feb 2017 00:21:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c3fc04bb-ce9c-4fe6-a56a-aac94b7be15c" + "westus:f9869cec-97b2-46a3-b225-72c13e1302f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "fec1ad2f-5cd2-4015-9c6c-f1016fa270a6" + "a13cbb5b-a69e-4024-b38f-298bae86ea26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015914Z:fec1ad2f-5cd2-4015-9c6c-f1016fa270a6" + "WESTUS2:20170225T002126Z:a13cbb5b-a69e-4024-b38f-298bae86ea26" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562/agreements/IntegrationAccountAgreement7901?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTU2Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc5MDE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552/agreements/IntegrationAccountAgreement9329?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDkzMjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b78d613f-3a9e-4d25-b861-a3537c61a646" + "23d10b46-bd8e-426b-85fb-28567c0d36d4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:14.5613147Z\",\r\n \"changedTime\": \"2017-02-11T01:59:14.5615579Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7901\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562/agreements/IntegrationAccountAgreement7901\",\r\n \"name\": \"IntegrationAccountAgreement7901\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:26.6913573Z\",\r\n \"changedTime\": \"2017-02-25T00:21:26.6920065Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9329\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552/agreements/IntegrationAccountAgreement9329\",\r\n \"name\": \"IntegrationAccountAgreement9329\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:13 GMT" + "Sat, 25 Feb 2017 00:21:26 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:3f05c66e-4621-4805-9fa6-3022f31be816" + "westus:42737abf-dcb9-4444-a018-9cfa4fd98ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" + "14818" ], "x-ms-correlation-request-id": [ - "8bd42181-1db9-4a0b-bd7d-32ba5a8498d9" + "a692dd66-b407-4a0d-b49e-34b16528f65b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015914Z:8bd42181-1db9-4a0b-bd7d-32ba5a8498d9" + "WESTUS2:20170225T002126Z:a692dd66-b407-4a0d-b49e-34b16528f65b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTU2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65a68a47-03bb-492e-830a-9dab87fbef2f" + "f6fb75b3-b8bb-4b90-9477-42ecf6e9a30e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:14 GMT" + "Sat, 25 Feb 2017 00:21:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:00aa5889-437e-4dbb-bb79-acfc2221ce9e" + "westus:7a355147-41c6-4d1f-97e5-4c2285f5c46b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "9665fbd0-7057-44b0-a0c0-aa061de2666a" + "1eff78c5-8ef7-4540-ba2e-dce97f296759" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015915Z:9665fbd0-7057-44b0-a0c0-aa061de2666a" + "WESTUS2:20170225T002127Z:1eff78c5-8ef7-4540-ba2e-dce97f296759" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountAgreement": [ - "IntegrationAccount5562", - "IntegrationAccountAgreement7901" + "IntegrationAccount4552", + "IntegrationAccountAgreement9329" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json index ed8e0a092081..dfad4c3a69d1 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjM2OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "d9302c27-0928-4c54-92f9-856680cc7ca4" + "a197abba-18db-4aec-8b0e-e1eabc325025" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368\",\r\n \"name\": \"IntegrationAccount6368\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966\",\r\n \"name\": \"IntegrationAccount9966\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:57 GMT" + "Sat, 25 Feb 2017 00:21:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:59b4fd1e-95ce-40d7-b8a0-60d514a5e57b" + "westus:f6b53a82-7c97-4bf8-8cd7-6285ba7c17ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1185" ], "x-ms-correlation-request-id": [ - "17d32a5c-6335-4834-b075-f20393873f10" + "fcf1c973-fd61-4210-a3eb-f6fa589f92c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015857Z:17d32a5c-6335-4834-b075-f20393873f10" + "WESTUS2:20170225T002115Z:fcf1c973-fd61-4210-a3eb-f6fa589f92c4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368/agreements/IntegrationAccountAgreement5189?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjM2OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDUxODk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966/agreements/IntegrationAccountAgreement6780?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk2Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDY3ODA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5189\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5189\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6780\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6780\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5862" ], "x-ms-client-request-id": [ - "8ea00d81-a940-4dc5-b121-6acf7d03b05c" + "781e0f4a-7abf-44ac-94a6-6b93848ec79c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:58:58.7541619Z\",\r\n \"changedTime\": \"2017-02-11T01:58:58.7549414Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5189\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368/agreements/IntegrationAccountAgreement5189\",\r\n \"name\": \"IntegrationAccountAgreement5189\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:16.2062682Z\",\r\n \"changedTime\": \"2017-02-25T00:21:16.2070737Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6780\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966/agreements/IntegrationAccountAgreement6780\",\r\n \"name\": \"IntegrationAccountAgreement6780\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3919" @@ -99,34 +99,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:58 GMT" + "Sat, 25 Feb 2017 00:21:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2fda763b-7954-40f8-b44f-54d1613dc8d9" + "westus:48ed156c-8069-402f-ab75-45adbf1e78ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1184" ], "x-ms-correlation-request-id": [ - "a5acb589-1506-40f1-8d9c-9b2d7a17ac50" + "41f1d603-d29c-4ac1-99a3-5b254310717c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015858Z:a5acb589-1506-40f1-8d9c-9b2d7a17ac50" + "WESTUS2:20170225T002116Z:41f1d603-d29c-4ac1-99a3-5b254310717c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368/agreements/IntegrationAccountAgreement5189?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjM2OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDUxODk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966/agreements/IntegrationAccountAgreement6780?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk2Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDY3ODA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5189\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5189\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6780\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6780\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -135,17 +135,17 @@ "8185" ], "x-ms-client-request-id": [ - "870fa9c7-870d-43d8-84b9-66555249ce9d" + "e0f5f77b-82aa-4955-8b36-b65a8f75ad66" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:58:58.7541619Z\",\r\n \"changedTime\": \"2017-02-11T01:58:59.106802Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5189\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368/agreements/IntegrationAccountAgreement5189\",\r\n \"name\": \"IntegrationAccountAgreement5189\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:16.2062682Z\",\r\n \"changedTime\": \"2017-02-25T00:21:16.5389193Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6780\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966/agreements/IntegrationAccountAgreement6780\",\r\n \"name\": \"IntegrationAccountAgreement6780\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:58 GMT" + "Sat, 25 Feb 2017 00:21:16 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:86c94291-4c8d-4d42-8ddf-1efcafb8c143" + "westus:b65fbb28-fdbd-4bdf-9c15-9a9d6242e831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1183" ], "x-ms-correlation-request-id": [ - "0c15242f-58d1-4d2f-9a0e-db0b7e6599f0" + "ed4446ea-eaa7-4524-8fcc-fae5010f6d59" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015858Z:0c15242f-58d1-4d2f-9a0e-db0b7e6599f0" + "WESTUS2:20170225T002116Z:ed4446ea-eaa7-4524-8fcc-fae5010f6d59" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjM2OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2592df7-39de-4ece-827c-8e74e297055b" + "be06dc66-3222-4505-81f2-dadfd565fbd8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:59 GMT" + "Sat, 25 Feb 2017 00:21:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2c9ebf7c-8cd9-403d-bb01-e3351464d800" + "westus:4a0056e5-82f3-4fea-8887-01f6e312b6f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1182" ], "x-ms-correlation-request-id": [ - "cb58892d-8828-487c-9df9-e32ce72eedd1" + "da92a5bc-5032-430f-b43f-365eccb2bb60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015859Z:cb58892d-8828-487c-9df9-e32ce72eedd1" + "WESTUS2:20170225T002117Z:da92a5bc-5032-430f-b43f-365eccb2bb60" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountAgreement": [ - "IntegrationAccount6368", - "IntegrationAccountAgreement5189" + "IntegrationAccount9966", + "IntegrationAccountAgreement6780" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json index f1e290c0aa1c..9fa9111b8390 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "05714721-6c1a-46aa-a5bd-ea51ce1d02bc" + "512efc7b-3cd4-4174-969d-87b8c7283d6f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814\",\r\n \"name\": \"IntegrationAccount814\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314\",\r\n \"name\": \"IntegrationAccount1314\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:02 GMT" + "Sat, 25 Feb 2017 00:21:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:1e459d17-52ed-48dd-b033-aef53d7ff9d0" + "westus:9a6d2585-ba15-45a9-9e63-d372b979426f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-correlation-request-id": [ - "a0dc562b-851d-4363-9e2c-fad8b8d6ba5e" + "453ba440-d048-4bdd-86bb-8a07129e76b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015903Z:a0dc562b-851d-4363-9e2c-fad8b8d6ba5e" + "WESTUS2:20170225T002118Z:453ba440-d048-4bdd-86bb-8a07129e76b3" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement4411?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50NDQxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement7693?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc2OTM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement4411\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": false,\r\n \"signMdn\": false,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement4411\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7693\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": false,\r\n \"signMdn\": false,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7693\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "5865" ], "x-ms-client-request-id": [ - "b9f753bb-19a0-4d44-918d-8529fab9d387" + "80d84386-ede7-485b-8957-1b6681d6f1a1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": false,\r\n \"signMDN\": false,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:04.0981927Z\",\r\n \"changedTime\": \"2017-02-11T01:59:04.0991714Z\",\r\n \"metadata\": \"IntegrationAccountAgreement4411\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement4411\",\r\n \"name\": \"IntegrationAccountAgreement4411\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": false,\r\n \"signMDN\": false,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:18.9418556Z\",\r\n \"changedTime\": \"2017-02-25T00:21:18.9426484Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7693\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement7693\",\r\n \"name\": \"IntegrationAccountAgreement7693\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3921" + "3922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,34 +99,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:03 GMT" + "Sat, 25 Feb 2017 00:21:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e3f6a193-0295-4fa6-9a67-08df17180ab7" + "westus:e70d3188-87c8-4c72-af88-7cbc06a6df86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1188" ], "x-ms-correlation-request-id": [ - "82080ea6-3f04-4728-b3cd-177cc9d83b67" + "95497b6f-4619-4ddc-ba36-7fd0d653929b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015904Z:82080ea6-3f04-4728-b3cd-177cc9d83b67" + "WESTUS2:20170225T002118Z:95497b6f-4619-4ddc-ba36-7fd0d653929b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement2871?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50Mjg3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement8388?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgzODg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement2871\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement2871\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8388\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8388\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -135,20 +135,20 @@ "9796" ], "x-ms-client-request-id": [ - "d4a0e8d6-0d21-41a3-a186-92e15bb8b5ae" + "89c77cd1-57ac-45ce-b012-b8e78635a6df" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:04.5058675Z\",\r\n \"changedTime\": \"2017-02-11T01:59:04.5063725Z\",\r\n \"metadata\": \"IntegrationAccountAgreement2871\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement2871\",\r\n \"name\": \"IntegrationAccountAgreement2871\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:19.3340204Z\",\r\n \"changedTime\": \"2017-02-25T00:21:19.3342356Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8388\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement8388\",\r\n \"name\": \"IntegrationAccountAgreement8388\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6656" + "6657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,34 +160,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:03 GMT" + "Sat, 25 Feb 2017 00:21:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:37768955-4125-438d-9577-7341a0133e55" + "westus:b49af9c8-13d5-433e-b84d-aad846c8e3f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1187" ], "x-ms-correlation-request-id": [ - "7b3cbb46-cce9-48c0-a9bd-70a151fbf3a1" + "c98cddb7-3850-4e3f-88b6-9e9738d05579" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015904Z:7b3cbb46-cce9-48c0-a9bd-70a151fbf3a1" + "WESTUS2:20170225T002119Z:c98cddb7-3850-4e3f-88b6-9e9738d05579" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement9517?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50OTUxNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement4927?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDQ5Mjc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement9517\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement9517\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement4927\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement4927\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -196,20 +196,20 @@ "8185" ], "x-ms-client-request-id": [ - "d360cd5a-796b-40e2-9ff0-acf0f3aa2d14" + "8dabc7e0-9c94-4f0e-a164-1ec67e143a8c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:04.8997701Z\",\r\n \"changedTime\": \"2017-02-11T01:59:04.9006718Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9517\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement9517\",\r\n \"name\": \"IntegrationAccountAgreement9517\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:19.6767008Z\",\r\n \"changedTime\": \"2017-02-25T00:21:19.6771313Z\",\r\n \"metadata\": \"IntegrationAccountAgreement4927\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement4927\",\r\n \"name\": \"IntegrationAccountAgreement4927\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5548" + "5549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -221,44 +221,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:04 GMT" + "Sat, 25 Feb 2017 00:21:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f7ba1a01-7d34-460e-96e7-bffaed5cbc28" + "westus:5d12472f-86dc-4251-937b-b22095fc83de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1186" ], "x-ms-correlation-request-id": [ - "b1de8ae4-03cc-4487-85db-4a4ce35054ea" + "e76f602a-4fcc-4c4e-a029-411cd09efca3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015904Z:b1de8ae4-03cc-4487-85db-4a4ce35054ea" + "WESTUS2:20170225T002119Z:e76f602a-4fcc-4c4e-a029-411cd09efca3" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d070800-f0d0-4b63-bfe4-28adb37623be" + "0ef4beb2-cd7d-47f9-9f7a-cb17fec05bae" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -273,25 +273,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:05 GMT" + "Sat, 25 Feb 2017 00:21:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3e00eb10-c143-4ae9-9c03-7408c78bc472" + "westus:a3d55e84-6049-403e-b10b-ee4a26308e34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1185" ], "x-ms-correlation-request-id": [ - "dc2401ef-5420-41f9-bc72-5db5b9f5c0fd" + "8bb9e93f-de53-43ae-a215-73baaa5fa861" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015905Z:dc2401ef-5420-41f9-bc72-5db5b9f5c0fd" + "WESTUS2:20170225T002120Z:8bb9e93f-de53-43ae-a215-73baaa5fa861" ] }, "StatusCode": 200 @@ -299,10 +299,10 @@ ], "Names": { "CreateIntegrationAccountAgreementUsingFile": [ - "IntegrationAccount814", - "IntegrationAccountAgreement4411", - "IntegrationAccountAgreement9517", - "IntegrationAccountAgreement2871" + "IntegrationAccount1314", + "IntegrationAccountAgreement7693", + "IntegrationAccountAgreement4927", + "IntegrationAccountAgreement8388" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json index fe945af99e19..3d9b8cf9921f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk1OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzAyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "7dea44b6-6303-4788-abfd-dee1a7d1ebee" + "9be9d019-2469-4874-95f8-8746c0b95b59" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958\",\r\n \"name\": \"IntegrationAccount6958\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302\",\r\n \"name\": \"IntegrationAccount302\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:08 GMT" + "Sat, 25 Feb 2017 00:21:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6f8a7c3a-435e-4f1c-af03-52f1a74fa5ea" + "westus:52ff4561-c0ff-490d-909f-15529ffeaf46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "acd31022-ae8a-4040-b81d-3bca31714a52" + "fc3f7adf-c937-478c-91db-35889fb63736" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015909Z:acd31022-ae8a-4040-b81d-3bca31714a52" + "WESTUS2:20170225T002122Z:fc3f7adf-c937-478c-91db-35889fb63736" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958/agreements/IntegrationAccountAgreement6183?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk1OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDYxODM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302/agreements/IntegrationAccountAgreement2827?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzAyL2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50MjgyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6183\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6183\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement2827\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement2827\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "8710" ], "x-ms-client-request-id": [ - "779178e7-0fe6-4e2e-8d6f-50581bdbc627" + "784df107-ec36-49e7-a75a-f0b7e905d2aa" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:10.108078Z\",\r\n \"changedTime\": \"2017-02-11T01:59:10.1082912Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6183\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958/agreements/IntegrationAccountAgreement6183\",\r\n \"name\": \"IntegrationAccountAgreement6183\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:23.2215644Z\",\r\n \"changedTime\": \"2017-02-25T00:21:23.2219458Z\",\r\n \"metadata\": \"IntegrationAccountAgreement2827\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302/agreements/IntegrationAccountAgreement2827\",\r\n \"name\": \"IntegrationAccountAgreement2827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5822" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:09 GMT" + "Sat, 25 Feb 2017 00:21:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:98c3055e-5966-412c-a186-179decc77ff7" + "westus:a2fee185-c11f-4bc3-8911-1bde2fef7448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "f890fbd2-509f-4509-bda9-15ea6d0dc11d" + "ca7841f8-000d-4f03-b84a-394ff64ac35b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015909Z:f890fbd2-509f-4509-bda9-15ea6d0dc11d" + "WESTUS2:20170225T002123Z:ca7841f8-000d-4f03-b84a-394ff64ac35b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958/agreements/IntegrationAccountAgreement6183?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk1OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDYxODM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302/agreements/IntegrationAccountAgreement2827?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzAyL2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50MjgyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9014bbfe-17e3-4c73-afaa-b482c41b7de4" + "732a4764-3dde-4419-b94b-81a1dfb7578b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:10.108078Z\",\r\n \"changedTime\": \"2017-02-11T01:59:10.1082912Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6183\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958/agreements/IntegrationAccountAgreement6183\",\r\n \"name\": \"IntegrationAccountAgreement6183\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:23.2215644Z\",\r\n \"changedTime\": \"2017-02-25T00:21:23.2219458Z\",\r\n \"metadata\": \"IntegrationAccountAgreement2827\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302/agreements/IntegrationAccountAgreement2827\",\r\n \"name\": \"IntegrationAccountAgreement2827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:09 GMT" + "Sat, 25 Feb 2017 00:21:22 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:2a14135b-5604-476f-ad39-fc6de2c27286" + "westus:2998cc58-f754-46a7-ba58-c9e527069fd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" + "14759" ], "x-ms-correlation-request-id": [ - "bfd2acf2-0eb7-4f1a-a7cc-80b1605ea5c6" + "7c2c6175-e6d1-4223-ac92-af20c248349b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015910Z:bfd2acf2-0eb7-4f1a-a7cc-80b1605ea5c6" + "WESTUS2:20170225T002123Z:7c2c6175-e6d1-4223-ac92-af20c248349b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk1OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzAyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b842503-2406-436a-a386-232101fa5aa2" + "d54400ac-f0f7-4f57-994d-bf5479ebb8b7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:10 GMT" + "Sat, 25 Feb 2017 00:21:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4ace1ed8-0b5f-4d63-85e7-3dc3dd1dfd5a" + "westus:2d275801-dbf9-40f5-84f5-529b74fb7af2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "3b05d614-0ee4-4df5-852a-0d1faf735b0b" + "432bf009-b0dd-4eb2-8628-33d7a5e17e3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015910Z:3b05d614-0ee4-4df5-852a-0d1faf735b0b" + "WESTUS2:20170225T002123Z:432bf009-b0dd-4eb2-8628-33d7a5e17e3e" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateIntegrationAccountAgreementWithEnvelopeOverride": [ - "IntegrationAccount6958", - "IntegrationAccountAgreement6183" + "IntegrationAccount302", + "IntegrationAccountAgreement2827" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json index 6dadded7e02a..4738b827b716 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzUxND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg5NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "aff06627-5a67-46e2-aad1-cdbd1d95b4b7" + "7912d4eb-ffd4-4bbf-bc52-61dbb812e67f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514\",\r\n \"name\": \"IntegrationAccount7514\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895\",\r\n \"name\": \"IntegrationAccount5895\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:19 GMT" + "Sat, 25 Feb 2017 00:21:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a327f8e0-ac17-4de8-99e7-409814516ae4" + "westus:45b8656c-f4e1-42f2-a56a-4d6eabf2409f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "713e2bec-b57e-4880-948e-e510a6831bb9" + "75d46e32-780e-4e31-a939-6dc34491ac71" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015919Z:713e2bec-b57e-4880-948e-e510a6831bb9" + "WESTUS2:20170225T002128Z:75d46e32-780e-4e31-a939-6dc34491ac71" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514/agreements/IntegrationAccountAgreement7949?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzUxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc5NDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895/agreements/IntegrationAccountAgreement3063?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg5NS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMwNjM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7949\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7949\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement3063\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement3063\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8185" ], "x-ms-client-request-id": [ - "aa17d212-d86f-4961-8258-7850978ebf4c" + "6411b59e-c02a-4fe2-8e0c-327dbb3aed30" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:21.4222791Z\",\r\n \"changedTime\": \"2017-02-11T01:59:21.422616Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7949\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514/agreements/IntegrationAccountAgreement7949\",\r\n \"name\": \"IntegrationAccountAgreement7949\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:29.2857526Z\",\r\n \"changedTime\": \"2017-02-25T00:21:29.2865766Z\",\r\n \"metadata\": \"IntegrationAccountAgreement3063\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895/agreements/IntegrationAccountAgreement3063\",\r\n \"name\": \"IntegrationAccountAgreement3063\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5548" + "5549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:20 GMT" + "Sat, 25 Feb 2017 00:21:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d57496bf-0622-4fe5-8b44-d892a4850f54" + "westus:be068abb-3066-4fad-958d-4c44f65fc980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "e692c7b4-f3be-45a1-b430-9dd20dc65e33" + "f79b3cee-7d3b-4789-8a8c-d6e16cb80345" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015921Z:e692c7b4-f3be-45a1-b430-9dd20dc65e33" + "WESTUS2:20170225T002129Z:f79b3cee-7d3b-4789-8a8c-d6e16cb80345" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzUxND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg5NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b19ccd7e-daba-4de6-a8a1-ae8fec4e83b8" + "601f11f1-a7bd-4118-b6da-5ef4592f926e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:21 GMT" + "Sat, 25 Feb 2017 00:21:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:937f0fca-ea30-4ca3-8928-b2498478cd5b" + "westus:79b7c2e0-b27b-4be7-a8cf-2d6f350a1a74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "97306266-f0c7-4113-bb8f-488b7aa3d9ee" + "a757308d-1ed6-4e14-8fa6-c2380832d043" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015922Z:97306266-f0c7-4113-bb8f-488b7aa3d9ee" + "WESTUS2:20170225T002129Z:a757308d-1ed6-4e14-8fa6-c2380832d043" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514/agreements/IntegrationAccountAgreement7949?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzUxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc5NDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895/agreements/IntegrationAccountAgreement3063?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg5NS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMwNjM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41d19cad-6f7e-4975-b19f-2f1bdda0db93" + "6a1d1532-2f0f-4c93-b4fa-c9c4ef2edb61" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7514' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount5895' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:21 GMT" + "Sat, 25 Feb 2017 00:21:29 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "ef005721-6756-4ae5-9acb-8fcb6e1f328e" + "0eec5f85-7a3b-4aaa-99f3-aa7cb6e6850f" ], "x-ms-correlation-request-id": [ - "ef005721-6756-4ae5-9acb-8fcb6e1f328e" + "0eec5f85-7a3b-4aaa-99f3-aa7cb6e6850f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015922Z:ef005721-6756-4ae5-9acb-8fcb6e1f328e" + "WESTUS2:20170225T002129Z:0eec5f85-7a3b-4aaa-99f3-aa7cb6e6850f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountAgreementOnAccountDeletion": [ - "IntegrationAccount7514", - "IntegrationAccountAgreement7949" + "IntegrationAccount5895", + "IntegrationAccountAgreement3063" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json index 235b0400b744..59ff02b5acce 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "8cbf2023-cb98-4ec1-84c2-d87d75a3a6ab" + "5af88297-15e3-467d-8fc4-19be857c38de" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227\",\r\n \"name\": \"IntegrationAccount5227\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886\",\r\n \"name\": \"IntegrationAccount886\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:29 GMT" + "Sat, 25 Feb 2017 00:21:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4d59a773-2d59-4951-be98-20cf42e151a4" + "westus:06b436a8-a99e-4c23-8e01-60907c6450dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "3b07354b-b645-4b6f-8879-aeaeee04cd90" + "d00a9cf5-d539-4c8b-9946-27dde4269a81" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015929Z:3b07354b-b645-4b6f-8879-aeaeee04cd90" + "WESTUS2:20170225T002134Z:d00a9cf5-d539-4c8b-9946-27dde4269a81" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement6482?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDY0ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement6685?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50NjY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6482\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6482\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6685\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6685\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "5862" ], "x-ms-client-request-id": [ - "1da07a49-db60-442d-a2ba-86830969d2a8" + "743913f8-cb7f-4798-bef2-dedceb1cba10" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:29.7652416Z\",\r\n \"changedTime\": \"2017-02-11T01:59:29.7660158Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement6482\",\r\n \"name\": \"IntegrationAccountAgreement6482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:34.6145045Z\",\r\n \"changedTime\": \"2017-02-25T00:21:34.6152645Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6685\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement6685\",\r\n \"name\": \"IntegrationAccountAgreement6685\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3919" + "3918" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,34 +99,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:29 GMT" + "Sat, 25 Feb 2017 00:21:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ab320817-0a54-46b1-b1c2-ed671c8fab1a" + "westus:f9b142ba-fb4b-404b-a711-b6aa6c8a339b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "03e2b75c-e7b9-45d3-a4d8-45a9a698c0eb" + "dad1e676-62a9-4534-8706-a6024de33750" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015929Z:03e2b75c-e7b9-45d3-a4d8-45a9a698c0eb" + "WESTUS2:20170225T002134Z:dad1e676-62a9-4534-8706-a6024de33750" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8917?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg5MTc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement1151?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50MTE1MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8917\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8917\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1151\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1151\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -135,20 +135,20 @@ "9757" ], "x-ms-client-request-id": [ - "318eb1a0-a1e9-41c7-89f9-bc865c431340" + "8e32eecd-5c93-4572-9f82-edfde3942a8f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:30.0291842Z\",\r\n \"changedTime\": \"2017-02-11T01:59:30.0293876Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8917\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8917\",\r\n \"name\": \"IntegrationAccountAgreement8917\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:35.0017185Z\",\r\n \"changedTime\": \"2017-02-25T00:21:35.002357Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1151\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement1151\",\r\n \"name\": \"IntegrationAccountAgreement1151\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6618" + "6616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,56 +160,56 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:29 GMT" + "Sat, 25 Feb 2017 00:21:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:83ec20f6-64eb-445f-a664-354381712150" + "westus:0b4b37d6-97f2-433d-bf5c-48cae4cecdf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-correlation-request-id": [ - "45fe6fc6-571e-46d0-be43-ad5fd790e089" + "38e6240e-8b4e-4432-8159-9d2dd3809e3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015930Z:45fe6fc6-571e-46d0-be43-ad5fd790e089" + "WESTUS2:20170225T002135Z:38e6240e-8b4e-4432-8159-9d2dd3809e3a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8482?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg0ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement25?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50MjU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8482\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8482\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement25\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement25\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8185" + "8181" ], "x-ms-client-request-id": [ - "b98653ff-4b5f-41b9-bc05-e86d8e332ae3" + "7205ddd6-111b-40a6-99c6-ba9983b5f2c9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:30.2848925Z\",\r\n \"changedTime\": \"2017-02-11T01:59:30.2857039Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8482\",\r\n \"name\": \"IntegrationAccountAgreement8482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:35.2712239Z\",\r\n \"changedTime\": \"2017-02-25T00:21:35.2721842Z\",\r\n \"metadata\": \"IntegrationAccountAgreement25\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement25\",\r\n \"name\": \"IntegrationAccountAgreement25\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5549" + "5542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -221,47 +221,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:30 GMT" + "Sat, 25 Feb 2017 00:21:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:11a346c5-e3c7-4704-94c1-b4639a3fb0c4" + "westus:ac6b0200-e77e-4ba3-8c06-ce8239bd0e98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-correlation-request-id": [ - "29b6394e-c497-4da2-8b09-a391e9e49a96" + "915de39a-c799-46e9-b6f9-d916fc0ab526" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015930Z:29b6394e-c497-4da2-8b09-a391e9e49a96" + "WESTUS2:20170225T002135Z:915de39a-c799-46e9-b6f9-d916fc0ab526" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNy9hZ3JlZW1lbnRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2L2FncmVlbWVudHM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c853667d-c840-4408-84a9-89c9e52b30ae" + "c320881f-f57e-4d55-805c-ccaf857e493d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:29.7652416Z\",\r\n \"changedTime\": \"2017-02-11T01:59:29.7660158Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement6482\",\r\n \"name\": \"IntegrationAccountAgreement6482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:30.2848925Z\",\r\n \"changedTime\": \"2017-02-11T01:59:30.2857039Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8482\",\r\n \"name\": \"IntegrationAccountAgreement8482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:30.0291842Z\",\r\n \"changedTime\": \"2017-02-11T01:59:30.0293876Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8917\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8917\",\r\n \"name\": \"IntegrationAccountAgreement8917\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:35.0017185Z\",\r\n \"changedTime\": \"2017-02-25T00:21:35.002357Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1151\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement1151\",\r\n \"name\": \"IntegrationAccountAgreement1151\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:35.2712239Z\",\r\n \"changedTime\": \"2017-02-25T00:21:35.2721842Z\",\r\n \"metadata\": \"IntegrationAccountAgreement25\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement25\",\r\n \"name\": \"IntegrationAccountAgreement25\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:34.6145045Z\",\r\n \"changedTime\": \"2017-02-25T00:21:34.6152645Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6685\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement6685\",\r\n \"name\": \"IntegrationAccountAgreement6685\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -273,7 +273,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:30 GMT" + "Sat, 25 Feb 2017 00:21:34 GMT" ], "Pragma": [ "no-cache" @@ -286,38 +286,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:bed88533-c1dd-4e0f-b5db-c2944666ddcb" + "westus:48acc348-9025-45c1-8e50-154065d38245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14641" + "14726" ], "x-ms-correlation-request-id": [ - "0c499edb-0895-4b2c-87bb-ed897b182bd0" + "1e71588b-f761-4179-9dc5-608de1115de9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015930Z:0c499edb-0895-4b2c-87bb-ed897b182bd0" + "WESTUS2:20170225T002135Z:1e71588b-f761-4179-9dc5-608de1115de9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2db76193-4f3e-42b8-be76-27f62c29ae17" + "b8645b00-ba09-4b0a-8916-3f195dae2065" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -332,25 +332,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:30 GMT" + "Sat, 25 Feb 2017 00:21:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5030ceba-f707-45b6-959d-6313998a45a9" + "westus:7c4f72da-465b-4a5e-9590-e407c56acd48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1188" ], "x-ms-correlation-request-id": [ - "347b3c60-a9a2-436e-96c2-eed56e52bd05" + "bd340039-993c-4209-9672-a410b2b99d7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015930Z:347b3c60-a9a2-436e-96c2-eed56e52bd05" + "WESTUS2:20170225T002135Z:bd340039-993c-4209-9672-a410b2b99d7c" ] }, "StatusCode": 200 @@ -358,10 +358,10 @@ ], "Names": { "ListIntegrationAccountAgreements": [ - "IntegrationAccount5227", - "IntegrationAccountAgreement6482", - "IntegrationAccountAgreement8917", - "IntegrationAccountAgreement8482" + "IntegrationAccount886", + "IntegrationAccountAgreement6685", + "IntegrationAccountAgreement1151", + "IntegrationAccountAgreement25" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json index a7d698ca9158..7d838f3f7b98 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzU4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "616c914f-9139-4a99-afd0-f44f91d5cd36" + "4b56e575-f30d-4d3e-b80f-4652e04a3b42" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358\",\r\n \"name\": \"IntegrationAccount358\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652\",\r\n \"name\": \"IntegrationAccount6652\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,33 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:47 GMT" + "Sat, 25 Feb 2017 00:21:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6bd42d17-beef-4236-91c0-e1955bed6563" + "westus:caf13245-8337-4819-b757-0ce52a0f4d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "1f1db14e-24bf-4348-a077-13ee9b41b09d" + "fda0be84-2972-4312-a2d2-50b9c61d9a55" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015848Z:1f1db14e-24bf-4348-a077-13ee9b41b09d" + "WESTUS2:20170225T002101Z:fda0be84-2972-4312-a2d2-50b9c61d9a55" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358/certificates/IntegrationAccountCertificate7237?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzU4L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTcyMzc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652/certificates/IntegrationAccountCertificate6176?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MTc2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -75,21 +74,20 @@ "1088" ], "x-ms-client-request-id": [ - "34ec5144-137f-4304-b9de-3d16f523ddd5" + "db2edb78-7571-4874-af18-8dad5c3777f5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:49.0995224Z\",\r\n \"changedTime\": \"2017-02-11T01:58:49.0999398Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358/certificates/IntegrationAccountCertificate7237\",\r\n \"name\": \"IntegrationAccountCertificate7237\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:21:01.8960296Z\",\r\n \"changedTime\": \"2017-02-25T00:21:01.8968772Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652/certificates/IntegrationAccountCertificate6176\",\r\n \"name\": \"IntegrationAccountCertificate6176\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1433" + "1434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:48 GMT" + "Sat, 25 Feb 2017 00:21:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:05af6a88-1d00-4c98-8029-d99cebb04a00" + "westus:05b01ee2-3cf7-4131-9020-db0180533ff7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "39f1439a-f4e6-46d4-baa6-9ec2c17014af" + "21f6e8e9-c2ab-4450-93aa-a3e16cfeec5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015849Z:39f1439a-f4e6-46d4-baa6-9ec2c17014af" + "WESTUS2:20170225T002101Z:21f6e8e9-c2ab-4450-93aa-a3e16cfeec5c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358/certificates/IntegrationAccountCertificate7237?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzU4L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTcyMzc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652/certificates/IntegrationAccountCertificate6176?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MTc2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75f3b256-21a1-4950-9014-bb7eaf62b374" + "6d39ed36-c0cc-4e70-8756-d40c07685e34" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -153,44 +151,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:48 GMT" + "Sat, 25 Feb 2017 00:21:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:27618a0d-6523-4c44-a3f1-43d30cb923c8" + "westus:959d4743-8f57-495c-b38b-85353b3d3d59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "74ab98c7-cd28-4cc1-b1b3-9c91b9fd3221" + "f7fca5f0-dd09-4f63-a784-6faa92e92859" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015849Z:74ab98c7-cd28-4cc1-b1b3-9c91b9fd3221" + "WESTUS2:20170225T002102Z:f7fca5f0-dd09-4f63-a784-6faa92e92859" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzU4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1765ea28-42f9-4d36-bc00-ff06c1422866" + "fd03c708-188c-40b3-a132-343ce29e3e72" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -205,25 +203,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:49 GMT" + "Sat, 25 Feb 2017 00:21:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:46e422bf-7a83-440a-b0f5-74b15ed10ac8" + "westus:218a4305-4ba9-4479-8586-6adacdd869b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "c0df6687-d750-4c2d-9f75-798402b73463" + "307cbae1-82ff-4433-a15c-a105515ff333" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015849Z:c0df6687-d750-4c2d-9f75-798402b73463" + "WESTUS2:20170225T002102Z:307cbae1-82ff-4433-a15c-a105515ff333" ] }, "StatusCode": 200 @@ -231,8 +229,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountCertificate": [ - "IntegrationAccount358", - "IntegrationAccountCertificate7237" + "IntegrationAccount6652", + "IntegrationAccountCertificate6176" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json index 1caf1a46a2e0..fbf8b4dd4fce 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODI1NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "81137594-eb53-4d4b-ae02-580db1b8ee0b" + "bb52ca14-b78b-475b-a7b5-796b80c12802" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255\",\r\n \"name\": \"IntegrationAccount8255\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739\",\r\n \"name\": \"IntegrationAccount739\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:34 GMT" + "Sat, 25 Feb 2017 00:20:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:90683b3d-d540-42bc-b43d-d56edc9c6f73" + "westus:3e977fe9-3668-4ecf-a7b9-5697b7bdc001" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,19 +53,18 @@ "1199" ], "x-ms-correlation-request-id": [ - "0b8d721a-dc80-4ecf-bb7b-584d672a67a9" + "0e483c6c-0d4b-4aa3-80e4-a82478a2f036" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015835Z:0b8d721a-dc80-4ecf-bb7b-584d672a67a9" + "WESTUS2:20170225T002047Z:0e483c6c-0d4b-4aa3-80e4-a82478a2f036" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255/certificates/IntegrationAccountCertificate2896?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODI1NS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUyODk2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTQ4MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -75,21 +74,20 @@ "1088" ], "x-ms-client-request-id": [ - "c1f883ab-413b-4633-bb03-3bc9af5fcc57" + "417de579-1a00-4253-84fa-b0311b01b097" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:36.3797842Z\",\r\n \"changedTime\": \"2017-02-11T01:58:36.3802113Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255/certificates/IntegrationAccountCertificate2896\",\r\n \"name\": \"IntegrationAccountCertificate2896\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:49.3996839Z\",\r\n \"changedTime\": \"2017-02-25T00:20:49.4004187Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809\",\r\n \"name\": \"IntegrationAccountCertificate4809\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1434" + "1433" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,13 +99,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:35 GMT" + "Sat, 25 Feb 2017 00:20:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5e845b91-8f72-473b-8b23-3c5f18426f98" + "westus:e4b63c51-9d39-4458-b3d4-b9d901bbabe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -116,33 +114,32 @@ "1198" ], "x-ms-correlation-request-id": [ - "92297495-a440-42f2-b9ae-902954852fcf" + "e3057405-480c-4fd4-859e-cb0c8c958469" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015836Z:92297495-a440-42f2-b9ae-902954852fcf" + "WESTUS2:20170225T002049Z:e3057405-480c-4fd4-859e-cb0c8c958469" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255/certificates/IntegrationAccountCertificate2896?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODI1NS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUyODk2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTQ4MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04a52283-03dc-40c2-8753-a7c1836d63d3" + "09c2995a-cb9c-4c1e-8f3c-36248fed238d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:36.3797842Z\",\r\n \"changedTime\": \"2017-02-11T01:58:36.3802113Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255/certificates/IntegrationAccountCertificate2896\",\r\n \"name\": \"IntegrationAccountCertificate2896\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:49.3996839Z\",\r\n \"changedTime\": \"2017-02-25T00:20:49.4004187Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809\",\r\n \"name\": \"IntegrationAccountCertificate4809\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:35 GMT" + "Sat, 25 Feb 2017 00:20:48 GMT" ], "Pragma": [ "no-cache" @@ -167,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:73c0ca79-77fc-44e5-a7e9-7daca1468fdb" + "westus:ae770342-4950-4e7c-b447-24235afdcca0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14823" ], "x-ms-correlation-request-id": [ - "aa1227e0-6d4e-4e11-bd89-8858ae81c8ed" + "064485d2-9636-49df-be41-aeb5098bb452" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015836Z:aa1227e0-6d4e-4e11-bd89-8858ae81c8ed" + "WESTUS2:20170225T002049Z:064485d2-9636-49df-be41-aeb5098bb452" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODI1NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80dce1a0-a846-49d3-b7e5-b1f272ba91b9" + "0f4112a6-2e4e-4601-9443-3a3a978563a7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -213,13 +210,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:36 GMT" + "Sat, 25 Feb 2017 00:20:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:cb2e0c5b-bdcc-4319-88d6-daeaa22a1026" + "westus:f544328c-aa07-4ca5-a9f0-0a3fa7924a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,10 +225,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "4e19b9b4-75ff-4885-ba1e-9abf3105f6be" + "54b47dc6-941d-4e79-9075-c041bad98179" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015837Z:4e19b9b4-75ff-4885-ba1e-9abf3105f6be" + "WESTUS2:20170225T002049Z:54b47dc6-941d-4e79-9075-c041bad98179" ] }, "StatusCode": 200 @@ -239,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountCertificate": [ - "IntegrationAccount8255", - "IntegrationAccountCertificate2896" + "IntegrationAccount739", + "IntegrationAccountCertificate4809" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json index 21246ab07d70..c1410eab067c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "2e6e7094-bf83-47bf-8f12-1634e75a9ac2" + "7757d6a6-96d9-4181-95db-721b5455faec" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181\",\r\n \"name\": \"IntegrationAccount181\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471\",\r\n \"name\": \"IntegrationAccount2471\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,33 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:41 GMT" + "Sat, 25 Feb 2017 00:20:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a8a4134a-105d-4485-b424-8daa8b221a3b" + "westus:9e95e0a1-6832-4ba7-bfbe-e8a5e9001be5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "d4b51b90-4e84-4cd2-8c9c-92f6d411a39d" + "94cf96f7-fd4e-4dde-9da6-7e9489b1d9b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015842Z:d4b51b90-4e84-4cd2-8c9c-92f6d411a39d" + "WESTUS2:20170225T002054Z:94cf96f7-fd4e-4dde-9da6-7e9489b1d9b0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTUwMTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MjA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -75,21 +74,20 @@ "1088" ], "x-ms-client-request-id": [ - "73f311de-d065-47e8-915a-15437beace41" + "0029599f-1b3a-470d-b5f7-a34a050ebd18" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:42.6899436Z\",\r\n \"changedTime\": \"2017-02-11T01:58:42.690472Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014\",\r\n \"name\": \"IntegrationAccountCertificate5014\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.3434443Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1432" + "1433" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,34 +99,33 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:41 GMT" + "Sat, 25 Feb 2017 00:20:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:48c5b9a1-3264-4a3f-aa0f-8025715f40b6" + "westus:5467de9b-9374-4b41-80e5-f9ebc87ce53e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "30f9150e-f36c-44da-9c49-a5351ebbef1c" + "38145ea8-34c3-426a-afd3-de29641bdecd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015842Z:30f9150e-f36c-44da-9c49-a5351ebbef1c" + "WESTUS2:20170225T002055Z:38145ea8-34c3-426a-afd3-de29641bdecd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTUwMTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MjA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -138,18 +135,17 @@ "1088" ], "x-ms-client-request-id": [ - "12070b01-0502-4300-b303-de0ea9939b1b" + "8c928420-63b4-48ed-b330-bf1da561c9ff" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:42.6899436Z\",\r\n \"changedTime\": \"2017-02-11T01:58:42.869983Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014\",\r\n \"name\": \"IntegrationAccountCertificate5014\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.8645787Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -161,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:41 GMT" + "Sat, 25 Feb 2017 00:20:55 GMT" ], "Pragma": [ "no-cache" @@ -174,42 +170,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:61e69af0-c291-4000-ae87-8450546415d5" + "westus:b0d9c876-5984-47f5-a0c8-9891cdbeb6e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1192" ], "x-ms-correlation-request-id": [ - "7853f468-f9eb-4bac-8ac6-f5d90edfe6ee" + "9dd6b4d5-1044-464a-ad54-1155508f635a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015842Z:7853f468-f9eb-4bac-8ac6-f5d90edfe6ee" + "WESTUS2:20170225T002055Z:9dd6b4d5-1044-464a-ad54-1155508f635a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTUwMTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MjA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e94875bf-04d2-479f-bc8b-9e375e72c4e0" + "0abc6386-7ed8-4495-8834-4b81c63c29e5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:42.6899436Z\",\r\n \"changedTime\": \"2017-02-11T01:58:42.869983Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014\",\r\n \"name\": \"IntegrationAccountCertificate5014\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.8645787Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +216,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:41 GMT" + "Sat, 25 Feb 2017 00:20:55 GMT" ], "Pragma": [ "no-cache" @@ -234,38 +229,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:5599b1e6-213f-426b-ad83-5d385fff001c" + "westus:d5e8b9a0-a6e5-4fc5-9504-b67eaef4ac11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "14781" ], "x-ms-correlation-request-id": [ - "bcc54c26-4f6b-4740-bf63-62f62b1a689e" + "6b04e1b3-7d65-4c5b-b66f-95e1df82eae3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015842Z:bcc54c26-4f6b-4740-bf63-62f62b1a689e" + "WESTUS2:20170225T002055Z:6b04e1b3-7d65-4c5b-b66f-95e1df82eae3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2064ee36-d574-4029-87e0-5219ba92fc34" + "028e21f5-b131-4b0f-8562-80b276b51b55" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -280,25 +275,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:42 GMT" + "Sat, 25 Feb 2017 00:20:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bf894847-5750-46ad-9e87-140aaad9ad14" + "westus:0d370a26-07d4-41fc-a376-e88a79da6643" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "22c73f17-d2d6-4868-b2f3-ade49a55d37d" + "01df942e-6670-4112-89ca-32784c397e9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015843Z:22c73f17-d2d6-4868-b2f3-ade49a55d37d" + "WESTUS2:20170225T002056Z:01df942e-6670-4112-89ca-32784c397e9b" ] }, "StatusCode": 200 @@ -306,8 +301,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountCertificate": [ - "IntegrationAccount181", - "IntegrationAccountCertificate5014" + "IntegrationAccount2471", + "IntegrationAccountCertificate4205" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json index 750cd7e41a03..14ebe31b4cf9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTE3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "e74b5bd7-fe68-4e0d-a33d-f61ddb46732d" + "53c2c15e-e883-4cd2-9c2e-b9a1ac78d08a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176\",\r\n \"name\": \"IntegrationAccount9176\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994\",\r\n \"name\": \"IntegrationAccount5994\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:52 GMT" + "Sat, 25 Feb 2017 00:21:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8f59e0ea-2f9d-4281-aa14-b28f11089259" + "westus:59784719-bf56-468a-bad8-c10fc8558c30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "994a0c0d-e9bf-4831-bea9-189cbf2205bd" + "b7ce2b39-e4ef-420d-b24f-f7df6d2c177c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015853Z:994a0c0d-e9bf-4831-bea9-189cbf2205bd" + "WESTUS2:20170225T002104Z:b7ce2b39-e4ef-420d-b24f-f7df6d2c177c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176/certificates/IntegrationAccountCertificate5827?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTE3Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU1ODI3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994/certificates/IntegrationAccountCertificate753?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5NC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3NTM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n }\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "346" ], "x-ms-client-request-id": [ - "3f9550e6-2363-46eb-b304-63217237faa0" + "9ee4fddf-26aa-4c34-8e62-07ece27f9882" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"createdTime\": \"2017-02-11T01:58:53.8111949Z\",\r\n \"changedTime\": \"2017-02-11T01:58:53.8115832Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176/certificates/IntegrationAccountCertificate5827\",\r\n \"name\": \"IntegrationAccountCertificate5827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:04.9581585Z\",\r\n \"changedTime\": \"2017-02-25T00:21:04.9583985Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994/certificates/IntegrationAccountCertificate753\",\r\n \"name\": \"IntegrationAccountCertificate753\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "699" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:53 GMT" + "Sat, 25 Feb 2017 00:21:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:454006a8-812f-47b2-bca2-d9a4037ba6cd" + "westus:8ef9ea9a-f8bc-4e64-9b1f-a76ea20fc8cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "dacc48db-ce97-4675-afd8-8df8012a1e60" + "738c65cb-b422-4240-98d2-7730ed4267ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015853Z:dacc48db-ce97-4675-afd8-8df8012a1e60" + "WESTUS2:20170225T002104Z:738c65cb-b422-4240-98d2-7730ed4267ca" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176/certificates/IntegrationAccountCertificate5827?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTE3Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU1ODI3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994/certificates/IntegrationAccountCertificate753?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5NC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3NTM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85275ab4-ca63-4f03-8830-78303c139d43" + "8884bf50-1454-4137-8b61-52e6bd39427e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,44 +151,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:53 GMT" + "Sat, 25 Feb 2017 00:21:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:833c24c0-971c-4648-9aae-9f897c3d461f" + "westus:0c004606-2577-4b26-85d6-429af057ce4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1192" ], "x-ms-correlation-request-id": [ - "de615f83-5498-41b9-ac31-28d46500b4fa" + "fab51d06-75de-43ef-80ee-57c865ba1038" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015853Z:de615f83-5498-41b9-ac31-28d46500b4fa" + "WESTUS2:20170225T002105Z:fab51d06-75de-43ef-80ee-57c865ba1038" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTE3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "631525c0-3a44-4709-a40b-ec83cec0529d" + "a01210d3-172a-4d12-8df0-07b33c8cb5cc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -203,25 +203,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:54 GMT" + "Sat, 25 Feb 2017 00:21:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b44e8133-ca29-4f4e-b8ed-df7c268608f2" + "westus:c46f46de-e27b-44de-816c-c90bf4e982d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "6e9d6b9f-ecdd-494d-8945-c7f1e2681685" + "b83431f9-7ab3-40d2-9049-71064dd0c4a0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015854Z:6e9d6b9f-ecdd-494d-8945-c7f1e2681685" + "WESTUS2:20170225T002105Z:b83431f9-7ab3-40d2-9049-71064dd0c4a0" ] }, "StatusCode": 200 @@ -229,8 +229,8 @@ ], "Names": { "CreateIntegrationAccountCertificateWithPrivateKey": [ - "IntegrationAccount9176", - "IntegrationAccountCertificate5827" + "IntegrationAccount5994", + "IntegrationAccountCertificate753" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json index 5f3c174c25bc..f43817d7c465 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "d58fd43e-d6ea-4eec-875d-b5a035741835" + "cd4b56e5-6add-4404-996c-cbe61686d7fa" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912\",\r\n \"name\": \"IntegrationAccount4912\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772\",\r\n \"name\": \"IntegrationAccount5772\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,33 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:28 GMT" + "Sat, 25 Feb 2017 00:20:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:976d66fa-79aa-4583-bc48-3df916c5e0e7" + "westus:3c4cb829-032f-4b7b-9636-88d39baac6be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-correlation-request-id": [ - "675f7b87-ec72-4da6-90e0-d2445588f4fa" + "7b5f968c-32db-4fb4-839b-431ab8dbe870" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015828Z:675f7b87-ec72-4da6-90e0-d2445588f4fa" + "WESTUS2:20170225T002045Z:7b5f968c-32db-4fb4-839b-431ab8dbe870" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912/certificates/IntegrationAccountCertificate6266?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkxMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MjY2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772/certificates/IntegrationAccountCertificate6964?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2OTY0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -75,18 +74,17 @@ "799" ], "x-ms-client-request-id": [ - "413fa246-34aa-448b-a26f-9c0807fbcf8a" + "7ca01e51-38ee-4fbd-aa4e-c31a78ac4b30" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:28.9067983Z\",\r\n \"changedTime\": \"2017-02-11T01:58:28.9070119Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912/certificates/IntegrationAccountCertificate6266\",\r\n \"name\": \"IntegrationAccountCertificate6266\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:45.7540057Z\",\r\n \"changedTime\": \"2017-02-25T00:20:45.7546271Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772/certificates/IntegrationAccountCertificate6964\",\r\n \"name\": \"IntegrationAccountCertificate6964\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1139" @@ -101,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:28 GMT" + "Sat, 25 Feb 2017 00:20:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7a4ac144-b7a9-4446-b266-fc1f0ea9dca9" + "westus:36da9ec0-41b1-492f-aefe-343f00ff618f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "143cc32c-4f89-4451-9eec-f7ee0eeae433" + "f2a4553b-0270-40dd-9ca6-f5f92c78ebdd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015828Z:143cc32c-4f89-4451-9eec-f7ee0eeae433" + "WESTUS2:20170225T002045Z:f2a4553b-0270-40dd-9ca6-f5f92c78ebdd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912/certificates/IntegrationAccountCertificate6266?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkxMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MjY2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772/certificates/IntegrationAccountCertificate6964?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2OTY0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00e819a7-1867-4f4b-9ea5-c342902e27a0" + "acbd2e56-020d-4dcf-8338-b96c5720b4c7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -153,44 +151,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:28 GMT" + "Sat, 25 Feb 2017 00:20:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8257aaff-0952-4e5a-b5a7-d2436544331e" + "westus:961b0ec7-f6af-4e8f-ab02-655be03618d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "14c1f01c-31c6-486a-8a8f-055b53672f04" + "86f881fc-72bd-4333-9456-a2fa5ca5322e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015829Z:14c1f01c-31c6-486a-8a8f-055b53672f04" + "WESTUS2:20170225T002046Z:86f881fc-72bd-4333-9456-a2fa5ca5322e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce90a626-6fa2-45ae-bf4c-c2be0a3db725" + "dc1d902f-4856-4259-88be-7becddec8322" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -205,25 +203,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:29 GMT" + "Sat, 25 Feb 2017 00:20:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b5736988-d0fb-4706-b364-c4320634a752" + "westus:8a0742b0-d504-4c83-ae78-a8d781e4bc80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "3d7bf059-0838-4d77-bbfc-c188f495a2fd" + "92e96ebd-073b-48b6-9156-f24bc60f6be2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015829Z:3d7bf059-0838-4d77-bbfc-c188f495a2fd" + "WESTUS2:20170225T002046Z:92e96ebd-073b-48b6-9156-f24bc60f6be2" ] }, "StatusCode": 200 @@ -231,8 +229,8 @@ ], "Names": { "CreateIntegrationAccountCertificateWithPublicKey": [ - "IntegrationAccount4912", - "IntegrationAccountCertificate6266" + "IntegrationAccount5772", + "IntegrationAccountCertificate6964" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json index 7439381eeebc..82ba8460fe22 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzUxNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "f10eb2b2-4ea8-4ab9-9b40-18c2020f7655" + "0d133636-8182-46e0-a7ce-0fe2e135e8e1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517\",\r\n \"name\": \"IntegrationAccount3517\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887\",\r\n \"name\": \"IntegrationAccount887\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,33 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:38 GMT" + "Sat, 25 Feb 2017 00:20:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:dcc42192-8c37-43c7-9bb4-5f71dcb81fba" + "westus:f100b291-df05-4612-a41b-e6ce75dd5c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "66d7c3b7-58af-4cd3-8ffa-035c52124036" + "60f52681-4d9a-40a1-9904-190b266fd315" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015839Z:66d7c3b7-58af-4cd3-8ffa-035c52124036" + "WESTUS2:20170225T002051Z:60f52681-4d9a-40a1-9904-190b266fd315" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517/certificates/IntegrationAccountCertificate1584?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzUxNy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxNTg0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887/certificates/IntegrationAccountCertificate2920?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTI5MjA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -75,21 +74,20 @@ "1088" ], "x-ms-client-request-id": [ - "7aa420da-be9a-431f-93ce-934106c0ef91" + "d7a1906a-7df6-4a89-8488-af6574780201" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:40.0797755Z\",\r\n \"changedTime\": \"2017-02-11T01:58:40.0802245Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517/certificates/IntegrationAccountCertificate1584\",\r\n \"name\": \"IntegrationAccountCertificate1584\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:51.9320654Z\",\r\n \"changedTime\": \"2017-02-25T00:20:51.9360857Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887/certificates/IntegrationAccountCertificate2920\",\r\n \"name\": \"IntegrationAccountCertificate2920\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1434" + "1433" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:39 GMT" + "Sat, 25 Feb 2017 00:20:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7eab3502-c0d3-48a3-981f-7988e6b8736b" + "westus:d3b6a38a-bab3-40b5-b026-775697589971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "cd8ec81a-faad-46cc-9625-8030f414c169" + "eb3c9873-7fbe-4088-96e2-afc61fbba4da" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015839Z:cd8ec81a-faad-46cc-9625-8030f414c169" + "WESTUS2:20170225T002051Z:eb3c9873-7fbe-4088-96e2-afc61fbba4da" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzUxNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a409708-63bf-434b-a20d-e5f42242c957" + "21f7b792-c002-4a5d-96fa-7c1863df0c94" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -153,50 +151,50 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:39 GMT" + "Sat, 25 Feb 2017 00:20:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3e9fefd3-52e9-407e-96d3-7d3e867ef442" + "westus:ff0e7d1d-5af7-4ce1-93d2-183be9a0306f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "78a26e27-35dd-4fe0-b277-1a828d821203" + "8024d48f-9c93-4276-b3a3-28a87d3b86a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015840Z:78a26e27-35dd-4fe0-b277-1a828d821203" + "WESTUS2:20170225T002052Z:8024d48f-9c93-4276-b3a3-28a87d3b86a8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517/certificates/IntegrationAccountCertificate1584?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzUxNy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxNTg0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887/certificates/IntegrationAccountCertificate2920?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTI5MjA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cde55883-7299-4aa0-b1d3-5dbd9446e5ba" + "855859f6-da10-4c55-8d84-49e24ee3386f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount3517' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount887' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "168" + "167" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:39 GMT" + "Sat, 25 Feb 2017 00:20:52 GMT" ], "Pragma": [ "no-cache" @@ -217,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "71fd2949-5b77-4071-bedb-b02f1a5ecc98" + "82b627ee-78e9-4141-b969-cdd68674a805" ], "x-ms-correlation-request-id": [ - "71fd2949-5b77-4071-bedb-b02f1a5ecc98" + "82b627ee-78e9-4141-b969-cdd68674a805" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015840Z:71fd2949-5b77-4071-bedb-b02f1a5ecc98" + "WESTUS2:20170225T002052Z:82b627ee-78e9-4141-b969-cdd68674a805" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountCertificateOnAccountDeletion": [ - "IntegrationAccount3517", - "IntegrationAccountCertificate1584" + "IntegrationAccount887", + "IntegrationAccountCertificate2920" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json index 8ccb6e602bd4..190f4b52097c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "e04872bf-7bc1-4085-affb-239243a21bbf" + "f47ef56c-27bb-4877-92f8-a7b2ac74bfb7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141\",\r\n \"name\": \"IntegrationAccount5141\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173\",\r\n \"name\": \"IntegrationAccount173\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,33 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:44 GMT" + "Sat, 25 Feb 2017 00:20:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:24b85797-0e5b-4686-b9a6-b88fc7480071" + "westus:eda6b6d8-b060-403f-8d5c-7698e6f2f685" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-correlation-request-id": [ - "d8712efe-6535-4dc6-b708-02ad078adeb7" + "ce159d73-d82f-49b1-8fdb-a9cde596fa81" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015844Z:d8712efe-6535-4dc6-b708-02ad078adeb7" + "WESTUS2:20170225T002058Z:ce159d73-d82f-49b1-8fdb-a9cde596fa81" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141/certificates/IntegrationAccountCertificate5236?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU1MjM2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTE1OTI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -75,21 +74,20 @@ "1088" ], "x-ms-client-request-id": [ - "17734579-c5e2-47e5-82b4-a80f79a780fd" + "ec35a891-82bb-4dc2-9ec5-6cf92233398a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:45.3508638Z\",\r\n \"changedTime\": \"2017-02-11T01:58:45.3511096Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141/certificates/IntegrationAccountCertificate5236\",\r\n \"name\": \"IntegrationAccountCertificate5236\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:59.0101599Z\",\r\n \"changedTime\": \"2017-02-25T00:20:59.0103597Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592\",\r\n \"name\": \"IntegrationAccountCertificate1592\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1434" + "1433" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,48 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:44 GMT" + "Sat, 25 Feb 2017 00:20:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:15766c6e-0019-4101-ada1-8bd51f2bdda7" + "westus:e97407d0-549e-4375-85bd-8fd902728e8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-correlation-request-id": [ - "d36f6638-4d01-4066-bfa4-4bca5ed822b7" + "9b50c0b0-655a-45b2-8721-b5010e0fcf21" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015845Z:d36f6638-4d01-4066-bfa4-4bca5ed822b7" + "WESTUS2:20170225T002058Z:9b50c0b0-655a-45b2-8721-b5010e0fcf21" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141/certificates?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0MS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7316b29a-d67e-4ed6-a994-c395d9d002bd" + "50087800-aa44-43b8-94f5-2bece3da4eea" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:45.3508638Z\",\r\n \"changedTime\": \"2017-02-11T01:58:45.3511096Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141/certificates/IntegrationAccountCertificate5236\",\r\n \"name\": \"IntegrationAccountCertificate5236\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:59.0101599Z\",\r\n \"changedTime\": \"2017-02-25T00:20:59.0103597Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592\",\r\n \"name\": \"IntegrationAccountCertificate1592\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:44 GMT" + "Sat, 25 Feb 2017 00:20:58 GMT" ], "Pragma": [ "no-cache" @@ -167,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:c8333530-df27-4ebc-a039-869a85a58c5b" + "westus:1287ddcf-d572-4345-abab-eb41dd247c50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" + "14538" ], "x-ms-correlation-request-id": [ - "7364e02e-3591-4b42-a066-f04b97112670" + "8ddd83d8-8af9-4f42-bb74-7482704a36a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015845Z:7364e02e-3591-4b42-a066-f04b97112670" + "WESTUS2:20170225T002059Z:8ddd83d8-8af9-4f42-bb74-7482704a36a8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e98b4a8e-23ad-4526-8618-017a90fa2e9b" + "510782f8-b91f-4a88-b228-05ad3ffbd813" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -213,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:58:44 GMT" + "Sat, 25 Feb 2017 00:20:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f5e9df22-7a92-4304-891f-4103db16983f" + "westus:9ba456b4-5830-4c1e-ba09-4a17f8b1bde0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1189" ], "x-ms-correlation-request-id": [ - "2ff448df-0442-4477-bd8b-d2789d8f3683" + "eb83b7d4-6e6b-4df2-a6c0-020dc048d960" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015845Z:2ff448df-0442-4477-bd8b-d2789d8f3683" + "WESTUS2:20170225T002059Z:eb83b7d4-6e6b-4df2-a6c0-020dc048d960" ] }, "StatusCode": 200 @@ -239,8 +236,8 @@ ], "Names": { "ListIntegrationAccountCertificates": [ - "IntegrationAccount5141", - "IntegrationAccountCertificate5236" + "IntegrationAccount173", + "IntegrationAccountCertificate1592" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json index 7277dee11ec4..8ce59f2c6a2f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzA0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc3OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "f14ad00e-b872-49f5-90a7-887c61466c79" + "34851dba-f8ff-45d9-9365-61fd26773b04" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704\",\r\n \"name\": \"IntegrationAccount704\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778\",\r\n \"name\": \"IntegrationAccount1778\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:24 GMT" + "Sat, 25 Feb 2017 00:20:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:87eb36f0-dd5c-4232-b595-0583d04e8f3d" + "westus:27d07142-157c-4a29-9680-d01b50cf7447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,41 +53,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "9c19525a-282c-4173-bba5-1dd7fe4c53e4" + "a2ec63c9-b362-4b92-8f28-5b2234e35211" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020024Z:9c19525a-282c-4173-bba5-1dd7fe4c53e4" + "WESTUS2:20170225T002034Z:a2ec63c9-b362-4b92-8f28-5b2234e35211" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704/maps/IntegrationAccountMap353?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzA0L21hcHMvSW50ZWdyYXRpb25BY2NvdW50TWFwMzUzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778/maps/IntegrationAccountMap5611?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc3OC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU2MTE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap353\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap353\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap5611\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap5611\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3512" + "3514" ], "x-ms-client-request-id": [ - "87649791-fc06-4b86-9cac-07edc1cf0630" + "28dec499-a375-4e56-9691-0393c3dcdbec" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccounts5699480620c94359a93f89e588649568/99D1E_XSLT_INTEGRATIONACCOUNTMAP353-FD0554497C364E2782E712ABFF5660D0?sv=2014-02-14&sr=b&sig=NyrykwkAmPiwOhxpzRrNHCs1cBarEHxYf9XpJwf2MZk%3D&se=2017-02-11T06%3A00%3A25Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BEEBB567\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:25.52449Z\",\r\n \"changedTime\": \"2017-02-11T02:00:25.5248267Z\",\r\n \"metadata\": \"IntegrationAccountMap353\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704/maps/IntegrationAccountMap353\",\r\n \"name\": \"IntegrationAccountMap353\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu18by01.blob.core.windows.net/integrationaccountscf402499fcae453283dea85faa806427/99D1E_XSLT_INTEGRATIONACCOUNTMAP5611-9A7CB2B74F7349E0897D5277EB90BCA8?sv=2016-05-31&sr=b&sig=ZGsqgmFWLOskmVNuwimF0Uysl37bkK2qGbUE8SL%2FLlY%3D&se=2017-02-25T04%3A20%3A34Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141D67D3A5\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:34.6221241Z\",\r\n \"changedTime\": \"2017-02-25T00:20:34.6271015Z\",\r\n \"metadata\": \"IntegrationAccountMap5611\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778/maps/IntegrationAccountMap5611\",\r\n \"name\": \"IntegrationAccountMap5611\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "846" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:25 GMT" + "Sat, 25 Feb 2017 00:20:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4694456f-a21d-42b2-bcac-b89656e8f2f9" + "westus:041ab138-7971-4c49-89d3-f68cab56e949" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,29 +114,29 @@ "1195" ], "x-ms-correlation-request-id": [ - "6d551f37-61ec-48c1-bfdc-1edd0f99a23d" + "265ac82a-668a-490f-98af-10ef4789d2ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020025Z:6d551f37-61ec-48c1-bfdc-1edd0f99a23d" + "WESTUS2:20170225T002034Z:265ac82a-668a-490f-98af-10ef4789d2ca" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704/maps/IntegrationAccountMap353?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzA0L21hcHMvSW50ZWdyYXRpb25BY2NvdW50TWFwMzUzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778/maps/IntegrationAccountMap5611?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc3OC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU2MTE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb17556a-4496-48d3-b70b-cbcb870b9951" + "6d71f3ba-cf5e-4983-84df-98574eb830c1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:25 GMT" + "Sat, 25 Feb 2017 00:20:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c1b9ae05-ed6f-4871-9108-c6770f8976b7" + "westus:2bc0cca5-a0a5-4d8d-9936-061416e5c201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,29 +166,29 @@ "1194" ], "x-ms-correlation-request-id": [ - "69d4864b-9d85-4456-8a51-1f451ccbdc08" + "aa4f9317-e916-47b1-89a1-60ea05cf47fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020025Z:69d4864b-9d85-4456-8a51-1f451ccbdc08" + "WESTUS2:20170225T002034Z:aa4f9317-e916-47b1-89a1-60ea05cf47fd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzA0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc3OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33e95217-63ee-4d83-8975-d708a4f0c8df" + "2049b598-5ad1-430d-9e94-dc19699963b9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -203,13 +203,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:25 GMT" + "Sat, 25 Feb 2017 00:20:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:65822238-ce9f-4474-be83-5d92771130da" + "westus:2b6b6bc3-e3f1-4081-97a4-6d92ee9cae27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -218,10 +218,10 @@ "1193" ], "x-ms-correlation-request-id": [ - "c63f1d34-34a1-4f76-8172-89e54554e87e" + "219fb562-fe6d-4009-b6f4-9e331c5885c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020026Z:c63f1d34-34a1-4f76-8172-89e54554e87e" + "WESTUS2:20170225T002035Z:219fb562-fe6d-4009-b6f4-9e331c5885c5" ] }, "StatusCode": 200 @@ -229,8 +229,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountMap": [ - "IntegrationAccount704", - "IntegrationAccountMap353" + "IntegrationAccount1778", + "IntegrationAccountMap5611" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json index 07db23dfc0d7..802b245055b3 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "28ee7ce4-5b05-4a26-9de6-ad86d314753d" + "67a86389-5628-4bd4-a074-4fbe0ec5b0c5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937\",\r\n \"name\": \"IntegrationAccount2937\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:30 GMT" + "Sat, 25 Feb 2017 00:20:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:46e4f8a0-c85d-45c6-826c-ab2036c1a2ef" + "westus:a6e742fa-2dc4-457b-b2df-3f07d5ff0967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "8b990676-bab8-4c3b-adce-a36bb9d1e95c" + "6c57e789-e147-45e5-b3a8-650236ca72a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020030Z:8b990676-bab8-4c3b-adce-a36bb9d1e95c" + "WESTUS2:20170225T002038Z:6c57e789-e147-45e5-b3a8-650236ca72a8" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937/maps/IntegrationAccountMap1906?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkzNy9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDE5MDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794/maps/IntegrationAccountMap6107?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc5NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDYxMDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap1906\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap1906\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap6107\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap6107\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "3514" ], "x-ms-client-request-id": [ - "6331b902-5300-4a6c-bdde-59b6df108236" + "707ca3aa-b346-421a-aec4-19fcf8bc9afe" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu18by01.blob.core.windows.net/integrationaccounts26eb1646b43d4f62885c8850c5b9bb19/99D1E_XSLT_INTEGRATIONACCOUNTMAP1906-BFD4B28C49094D938DC33B1497E80D09?sv=2014-02-14&sr=b&sig=tDyp9csDuzMtSkKvIQ0NW0l8vg%2F8%2F4p87gDRBHXCQa4%3D&se=2017-02-11T06%3A00%3A31Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221C1DEC46B\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:31.0823507Z\",\r\n \"changedTime\": \"2017-02-11T02:00:31.0832489Z\",\r\n \"metadata\": \"IntegrationAccountMap1906\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937/maps/IntegrationAccountMap1906\",\r\n \"name\": \"IntegrationAccountMap1906\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/integrationaccountsd403622cbdaf400895cefa7a712df19e/99D1E_XSLT_INTEGRATIONACCOUNTMAP6107-69E5AC464F154D21B4417DD9A8A01BB0?sv=2016-05-31&sr=b&sig=fmmtrlMnWgNb7sJ6ODHTv6aMvlVUUkK7Gx1MleJR96c%3D&se=2017-02-25T04%3A20%3A39Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1420BA5FFF\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:39.2545843Z\",\r\n \"changedTime\": \"2017-02-25T00:20:39.2555711Z\",\r\n \"metadata\": \"IntegrationAccountMap6107\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794/maps/IntegrationAccountMap6107\",\r\n \"name\": \"IntegrationAccountMap6107\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "857" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:30 GMT" + "Sat, 25 Feb 2017 00:20:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:411e9781-cb08-4fe4-bcfc-d58fdc14f22d" + "westus:650d4c83-7b72-4b84-a680-9d534ffb4db1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "afce76e0-20c1-474f-8a77-46d340355cf4" + "eae85177-1ec2-4479-9a79-dcc5d94bac70" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020030Z:afce76e0-20c1-474f-8a77-46d340355cf4" + "WESTUS2:20170225T002039Z:eae85177-1ec2-4479-9a79-dcc5d94bac70" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937/maps/IntegrationAccountMap1906?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkzNy9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDE5MDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794/maps/IntegrationAccountMap6107?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc5NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDYxMDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51d8d459-1c74-4018-8829-e78a62ac4976" + "01fd769d-add9-4cfb-af48-de944035c02f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu18by01.blob.core.windows.net/integrationaccounts26eb1646b43d4f62885c8850c5b9bb19/99D1E_XSLT_INTEGRATIONACCOUNTMAP1906-BFD4B28C49094D938DC33B1497E80D09?sv=2014-02-14&sr=b&sig=tDyp9csDuzMtSkKvIQ0NW0l8vg%2F8%2F4p87gDRBHXCQa4%3D&se=2017-02-11T06%3A00%3A31Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221C1DEC46B\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:31.0823507Z\",\r\n \"changedTime\": \"2017-02-11T02:00:31.0832489Z\",\r\n \"metadata\": \"IntegrationAccountMap1906\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937/maps/IntegrationAccountMap1906\",\r\n \"name\": \"IntegrationAccountMap1906\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/integrationaccountsd403622cbdaf400895cefa7a712df19e/99D1E_XSLT_INTEGRATIONACCOUNTMAP6107-69E5AC464F154D21B4417DD9A8A01BB0?sv=2016-05-31&sr=b&sig=fmmtrlMnWgNb7sJ6ODHTv6aMvlVUUkK7Gx1MleJR96c%3D&se=2017-02-25T04%3A20%3A39Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1420BA5FFF\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:39.2545843Z\",\r\n \"changedTime\": \"2017-02-25T00:20:39.2555711Z\",\r\n \"metadata\": \"IntegrationAccountMap6107\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794/maps/IntegrationAccountMap6107\",\r\n \"name\": \"IntegrationAccountMap6107\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:30 GMT" + "Sat, 25 Feb 2017 00:20:38 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:7f738dd2-2e18-4dbf-a559-cab923cc9a52" + "westus:74cb91cd-e573-4fb3-9236-b435c6440530" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "14681" ], "x-ms-correlation-request-id": [ - "e1932cff-2f05-4ace-8fee-c8ec4dc53b28" + "d57cc9ca-5bde-4d09-aba3-f9b0efae8d50" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020031Z:e1932cff-2f05-4ace-8fee-c8ec4dc53b28" + "WESTUS2:20170225T002039Z:d57cc9ca-5bde-4d09-aba3-f9b0efae8d50" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0999d185-0195-4a10-b876-2f7c17c310c1" + "94e15fc7-fd57-43c8-95c3-5349537a4c51" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:31 GMT" + "Sat, 25 Feb 2017 00:20:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0c29d302-d9ea-40a5-8c24-623948840779" + "westus:7a09545e-2331-4999-ac80-c6c706cbe46e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-correlation-request-id": [ - "b1318f35-dd65-4f3c-9513-71c4b522647f" + "ccbb78ef-9855-457e-aed9-57a159b7f320" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020031Z:b1318f35-dd65-4f3c-9513-71c4b522647f" + "WESTUS2:20170225T002040Z:ccbb78ef-9855-457e-aed9-57a159b7f320" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountMap": [ - "IntegrationAccount2937", - "IntegrationAccountMap1906" + "IntegrationAccount8794", + "IntegrationAccountMap6107" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json index 2615a0cb7e89..5e65a8522f0d 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "6e9d9c3c-4374-4e1c-b363-514ea433f57f" + "e1cdf012-118b-455b-9677-dc539a2b8c72" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901\",\r\n \"name\": \"IntegrationAccount8901\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581\",\r\n \"name\": \"IntegrationAccount2581\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:16 GMT" + "Sat, 25 Feb 2017 00:20:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b3a9504d-9f50-446d-ba78-5796f500458e" + "westus:9ca01f2e-cfa4-4083-acdb-c807b917644f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "72985ccf-1015-45f5-94fb-621048e94f0c" + "a6d3f30a-1ae0-49b6-9415-e3d9a6bcdfc9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020017Z:72985ccf-1015-45f5-94fb-621048e94f0c" + "WESTUS2:20170225T002027Z:a6d3f30a-1ae0-49b6-9415-e3d9a6bcdfc9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDczOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDEwNDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap7396\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap7396\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap1047\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap1047\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "3514" ], "x-ms-client-request-id": [ - "0e7d66a5-80e2-4b67-a309-26d387e28220" + "ca878b6d-7e28-4bd5-9eb3-2019e7e01f7e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccounts703cdb2fa6af4d93b8c350a085817049/99D1E_XSLT_INTEGRATIONACCOUNTMAP7396-9D0B304251064BEFB7E714A0F4531189?sv=2014-02-14&sr=b&sig=CpACeNLgTh%2B%2FwYqblpepgyxsJAkXk8xTP%2FovqZwk1l0%3D&se=2017-02-11T06%3A00%3A17Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BA12554D\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:17.7372446Z\",\r\n \"changedTime\": \"2017-02-11T02:00:17.7378536Z\",\r\n \"metadata\": \"IntegrationAccountMap7396\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396\",\r\n \"name\": \"IntegrationAccountMap7396\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu21by01.blob.core.windows.net/integrationaccountsa34fd4c885a94485a43952d486a1f616/99D1E_XSLT_INTEGRATIONACCOUNTMAP1047-C7CC3493819E4F91A563E61CEF081BC1?sv=2016-05-31&sr=b&sig=pBAL1%2BcBUpmCXag%2Bqx9P%2FU4xF9mw1%2FU8gLblN3i7i4I%3D&se=2017-02-25T04%3A20%3A27Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1419425086\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:27.4618778Z\",\r\n \"changedTime\": \"2017-02-25T00:20:27.4693496Z\",\r\n \"metadata\": \"IntegrationAccountMap1047\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047\",\r\n \"name\": \"IntegrationAccountMap1047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "859" + "861" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:16 GMT" + "Sat, 25 Feb 2017 00:20:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3b45dc97-a228-4422-8373-9c54dc802b0d" + "westus:f3bcbabd-72a7-4821-8de4-55b35cebb5bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "6c5dc60e-6ace-4819-87dc-380cf84f4244" + "f1978838-08d7-413c-9ed8-cd7121569b68" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020017Z:6c5dc60e-6ace-4819-87dc-380cf84f4244" + "WESTUS2:20170225T002027Z:f1978838-08d7-413c-9ed8-cd7121569b68" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDczOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDEwNDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "3417" ], "x-ms-client-request-id": [ - "3edf3717-b5fd-4aa2-b8cf-945d50f36bc0" + "2dd7367a-8511-48c9-8750-3c67e4f0e50d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccounts703cdb2fa6af4d93b8c350a085817049/99D1E_XSLT_INTEGRATIONACCOUNTMAP7396-F0475F4E9DE145F3AC383E643BFD6826?sv=2014-02-14&sr=b&sig=GsT7VKKGn3iPPKsdvIcvLjTrff6S6%2FTdbH%2FT8JhHEHc%3D&se=2017-02-11T06%3A00%3A18Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BA4669FA\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:17.7372446Z\",\r\n \"changedTime\": \"2017-02-11T02:00:18.0416125Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396\",\r\n \"name\": \"IntegrationAccountMap7396\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu21by01.blob.core.windows.net/integrationaccountsa34fd4c885a94485a43952d486a1f616/99D1E_XSLT_INTEGRATIONACCOUNTMAP1047-B66D93AE473D4D4EB9068848786D4A7D?sv=2016-05-31&sr=b&sig=uF8P0l8AFV%2F2ccIHvMqsnUQ0CTReWcBRzwFa6kSACY0%3D&se=2017-02-25T04%3A20%3A27Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141967E060\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:27.4618778Z\",\r\n \"changedTime\": \"2017-02-25T00:20:27.7025991Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047\",\r\n \"name\": \"IntegrationAccountMap1047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:17 GMT" + "Sat, 25 Feb 2017 00:20:27 GMT" ], "Pragma": [ "no-cache" @@ -170,41 +170,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:37680159-8718-4d5c-b4e8-f3f73dab272e" + "westus:3a320fab-0e17-405d-a016-292d076bbe9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "2fb5e22b-a488-49da-8067-85721d1ac86f" + "e8a0d84a-c902-428a-a203-6b4b4e3fca92" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020017Z:2fb5e22b-a488-49da-8067-85721d1ac86f" + "WESTUS2:20170225T002027Z:e8a0d84a-c902-428a-a203-6b4b4e3fca92" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDczOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDEwNDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dba145f7-7eb3-414d-aa1d-07e7df386ea7" + "76a2b97e-b379-40de-a3ff-f39fd1feb00b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccounts703cdb2fa6af4d93b8c350a085817049/99D1E_XSLT_INTEGRATIONACCOUNTMAP7396-F0475F4E9DE145F3AC383E643BFD6826?sv=2014-02-14&sr=b&sig=GsT7VKKGn3iPPKsdvIcvLjTrff6S6%2FTdbH%2FT8JhHEHc%3D&se=2017-02-11T06%3A00%3A18Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BA4669FA\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:17.7372446Z\",\r\n \"changedTime\": \"2017-02-11T02:00:18.0416125Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396\",\r\n \"name\": \"IntegrationAccountMap7396\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu21by01.blob.core.windows.net/integrationaccountsa34fd4c885a94485a43952d486a1f616/99D1E_XSLT_INTEGRATIONACCOUNTMAP1047-B66D93AE473D4D4EB9068848786D4A7D?sv=2016-05-31&sr=b&sig=uF8P0l8AFV%2F2ccIHvMqsnUQ0CTReWcBRzwFa6kSACY0%3D&se=2017-02-25T04%3A20%3A27Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141967E060\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:27.4618778Z\",\r\n \"changedTime\": \"2017-02-25T00:20:27.7025991Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047\",\r\n \"name\": \"IntegrationAccountMap1047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:17 GMT" + "Sat, 25 Feb 2017 00:20:27 GMT" ], "Pragma": [ "no-cache" @@ -229,38 +229,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:65784b7f-6d77-443c-b49f-feb040b8a850" + "westus:20ecdb3b-ce7d-4fea-bfa6-04caddcc2a12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14547" ], "x-ms-correlation-request-id": [ - "f9db2452-7f10-45f8-9d3e-25074a77b989" + "7bac3236-1c2c-491c-af9d-d986aba58418" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020018Z:f9db2452-7f10-45f8-9d3e-25074a77b989" + "WESTUS2:20170225T002027Z:7bac3236-1c2c-491c-af9d-d986aba58418" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d62ae101-35b6-4903-8f80-547d9d91e809" + "eaff922a-797c-442f-8430-7e1db524663e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -275,25 +275,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:18 GMT" + "Sat, 25 Feb 2017 00:20:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a1f63b04-ec6e-4f19-af54-2377e4c6505c" + "westus:284c6a07-a049-453c-a0ce-251f2127d82c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "79320ef6-9750-4374-81fd-012142003cc1" + "9e379faf-0343-4581-9740-87f4d0198220" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020018Z:79320ef6-9750-4374-81fd-012142003cc1" + "WESTUS2:20170225T002028Z:9e379faf-0343-4581-9740-87f4d0198220" ] }, "StatusCode": 200 @@ -301,8 +301,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountMap": [ - "IntegrationAccount8901", - "IntegrationAccountMap7396" + "IntegrationAccount2581", + "IntegrationAccountMap1047" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json index 2958e4ea6b9f..4b52b06515f2 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "655d3581-6f99-4c57-88b3-5f60fad5fd23" + "ec0518a9-9954-4d4a-b184-25c6525f248f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381\",\r\n \"name\": \"IntegrationAccount5381\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793\",\r\n \"name\": \"IntegrationAccount6793\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:27 GMT" + "Sat, 25 Feb 2017 00:20:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e15a36a3-5871-4555-8cbd-2167492d657c" + "westus:cb5b33ea-bcf2-42fd-863c-67e49cf9aeff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "5fd10f76-57ef-4e3a-8700-f820d13014f8" + "58936a38-2928-4e91-965d-fd94f953d767" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020027Z:5fd10f76-57ef-4e3a-8700-f820d13014f8" + "WESTUS2:20170225T002036Z:58936a38-2928-4e91-965d-fd94f953d767" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381/maps/IntegrationAccountMap5567?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU1Njc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793/maps/IntegrationAccountMap2146?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5My9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIxNDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap5567\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap5567\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap2146\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap2146\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "3514" ], "x-ms-client-request-id": [ - "e5f60431-9314-4ce6-a1a5-66365bb96615" + "0570d807-c042-4db7-86e4-9326a6e67e9b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu29by01.blob.core.windows.net/integrationaccounts7fab4349d0c5417fbecf39abf9b12acc/99D1E_XSLT_INTEGRATIONACCOUNTMAP5567-057669CA633046C98AC94E5024BB8B58?sv=2014-02-14&sr=b&sig=coOJwAm7VbTg8obDr8Vqig09euxUjOvfNaLv3MuOv5U%3D&se=2017-02-11T06%3A00%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221C02FDE51\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:28.2577686Z\",\r\n \"changedTime\": \"2017-02-11T02:00:28.25807Z\",\r\n \"metadata\": \"IntegrationAccountMap5567\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381/maps/IntegrationAccountMap5567\",\r\n \"name\": \"IntegrationAccountMap5567\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu18by01.blob.core.windows.net/integrationaccountsd52525e0b27141c3959b87f356314d0f/99D1E_XSLT_INTEGRATIONACCOUNTMAP2146-621A32EA940E4A16A39D94AA679CA5E7?sv=2016-05-31&sr=b&sig=zpkDtbxgxQzeX8U6wlGTRxeqUMTkOTir3PcCv5XdLyA%3D&se=2017-02-25T04%3A20%3A37Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141ED0F31D\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:36.9949892Z\",\r\n \"changedTime\": \"2017-02-25T00:20:36.9953556Z\",\r\n \"metadata\": \"IntegrationAccountMap2146\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793/maps/IntegrationAccountMap2146\",\r\n \"name\": \"IntegrationAccountMap2146\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "851" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:27 GMT" + "Sat, 25 Feb 2017 00:20:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:67003904-72ea-4f0c-a13f-c18477a24100" + "westus:d2cc59c2-0005-4812-9ace-c625db40c65b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "271b983f-767d-4dc7-8620-e40a43795c87" + "a9360c4e-5879-4c0f-88e4-0d401a628ff7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020028Z:271b983f-767d-4dc7-8620-e40a43795c87" + "WESTUS2:20170225T002036Z:a9360c4e-5879-4c0f-88e4-0d401a628ff7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abcec13d-b43a-42d5-8bb6-0d099c0c8f1d" + "40a0fc6d-751e-4abb-a521-aa30b8a0ccc1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:28 GMT" + "Sat, 25 Feb 2017 00:20:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c55b3d90-165e-44f1-ab38-4ad2674fb571" + "westus:47565bb2-6387-4c6f-9b9b-5f4ef6428be1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-correlation-request-id": [ - "843d6269-db38-4907-b00f-505f9e92bbfc" + "b7e33435-edff-494c-8f8c-b295b54b5d25" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020028Z:843d6269-db38-4907-b00f-505f9e92bbfc" + "WESTUS2:20170225T002037Z:b7e33435-edff-494c-8f8c-b295b54b5d25" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381/maps/IntegrationAccountMap5567?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU1Njc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793/maps/IntegrationAccountMap2146?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5My9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIxNDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ba64737-ff35-467c-9c85-a4d387208b53" + "45750303-3a96-49ba-8a81-15d1ff458bec" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount5381' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount6793' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:28 GMT" + "Sat, 25 Feb 2017 00:20:37 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "90dff9bb-302e-43e2-8ce2-7446bd5f57e9" + "ddfdc9cc-712b-4acd-bf38-14f868265f68" ], "x-ms-correlation-request-id": [ - "90dff9bb-302e-43e2-8ce2-7446bd5f57e9" + "ddfdc9cc-712b-4acd-bf38-14f868265f68" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020028Z:90dff9bb-302e-43e2-8ce2-7446bd5f57e9" + "WESTUS2:20170225T002037Z:ddfdc9cc-712b-4acd-bf38-14f868265f68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountMapOnAccountDeletion": [ - "IntegrationAccount5381", - "IntegrationAccountMap5567" + "IntegrationAccount6793", + "IntegrationAccountMap2146" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json index 7421a6c9e1c1..d140c9fa7441 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTEzOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "d059c63e-3e89-488f-a967-a22483032566" + "11a213ea-2a7e-49f7-a896-534753743e1e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139\",\r\n \"name\": \"IntegrationAccount1139\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811\",\r\n \"name\": \"IntegrationAccount8811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:20 GMT" + "Sat, 25 Feb 2017 00:20:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d6294fe0-0f26-42f8-a294-ca397e719e99" + "westus:d97ee1cf-effc-4cb0-bfcc-ff813db55f19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "6d6bd5b0-bbcb-4307-a943-2d968ebdf047" + "de0efb8c-4c59-4f26-a9eb-0ac9a3b72485" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020020Z:6d6bd5b0-bbcb-4307-a943-2d968ebdf047" + "WESTUS2:20170225T002030Z:de0efb8c-4c59-4f26-a9eb-0ac9a3b72485" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139/maps/IntegrationAccountMap8728?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTEzOS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDg3Mjg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811/maps/IntegrationAccountMap5827?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgxMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU4Mjc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap8728\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap8728\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap5827\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap5827\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "3514" ], "x-ms-client-request-id": [ - "4028e33f-ae3b-4c64-9ea4-1a711cfb6da2" + "5d61a95c-b28e-4d44-ba7b-f3b8f31179a9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu30by01.blob.core.windows.net/integrationaccountsc5db551a8ca940cbaef1c68a9450bb90/99D1E_XSLT_INTEGRATIONACCOUNTMAP8728-B47C79E4289C48888E6F7499878177D2?sv=2014-02-14&sr=b&sig=1tgFsPG%2Bavg5Hvi2hz5wEz%2Bzl1dPmX63WfknnbzugEo%3D&se=2017-02-11T06%3A00%3A21Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BC2D4E02\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:21.5959472Z\",\r\n \"changedTime\": \"2017-02-11T02:00:21.5964804Z\",\r\n \"metadata\": \"IntegrationAccountMap8728\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139/maps/IntegrationAccountMap8728\",\r\n \"name\": \"IntegrationAccountMap8728\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu29by01.blob.core.windows.net/integrationaccounts7d1d7d9029a24ebcb7da29bd7a6dddfc/99D1E_XSLT_INTEGRATIONACCOUNTMAP5827-6A1E0298D4C44FE281C2208A92BD4E8C?sv=2016-05-31&sr=b&sig=6D3BsZmo86RPnPnIc33k%2BgDeQMH%2BhijyCYoIbv6KxVE%3D&se=2017-02-25T04%3A20%3A31Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141BA33E83\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:31.4249333Z\",\r\n \"changedTime\": \"2017-02-25T00:20:31.4303778Z\",\r\n \"metadata\": \"IntegrationAccountMap5827\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811/maps/IntegrationAccountMap5827\",\r\n \"name\": \"IntegrationAccountMap5827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ "857" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:20 GMT" + "Sat, 25 Feb 2017 00:20:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:23118103-c30d-403b-aac7-893b59830868" + "westus:25b89125-0cb2-4b0d-9ccc-091e893c81d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "c1c32565-f716-4c18-9e88-134b79c2a468" + "667c023f-d845-4bb7-9f0b-d9ffddc31b93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020021Z:c1c32565-f716-4c18-9e88-134b79c2a468" + "WESTUS2:20170225T002031Z:667c023f-d845-4bb7-9f0b-d9ffddc31b93" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139/maps?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTEzOS9tYXBzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811/maps?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgxMS9tYXBzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d742cde5-91ca-4175-a955-6fd93079a753" + "7f7d607f-3a3d-47c3-898a-0792b140f462" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu30by01.blob.core.windows.net/integrationaccountsc5db551a8ca940cbaef1c68a9450bb90/99D1E_XSLT_INTEGRATIONACCOUNTMAP8728-B47C79E4289C48888E6F7499878177D2?sv=2014-02-14&sr=b&sig=1tgFsPG%2Bavg5Hvi2hz5wEz%2Bzl1dPmX63WfknnbzugEo%3D&se=2017-02-11T06%3A00%3A21Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BC2D4E02\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:21.5959472Z\",\r\n \"changedTime\": \"2017-02-11T02:00:21.5964804Z\",\r\n \"metadata\": \"IntegrationAccountMap8728\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139/maps/IntegrationAccountMap8728\",\r\n \"name\": \"IntegrationAccountMap8728\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu29by01.blob.core.windows.net/integrationaccounts7d1d7d9029a24ebcb7da29bd7a6dddfc/99D1E_XSLT_INTEGRATIONACCOUNTMAP5827-6A1E0298D4C44FE281C2208A92BD4E8C?sv=2016-05-31&sr=b&sig=6D3BsZmo86RPnPnIc33k%2BgDeQMH%2BhijyCYoIbv6KxVE%3D&se=2017-02-25T04%3A20%3A31Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141BA33E83\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:31.4249333Z\",\r\n \"changedTime\": \"2017-02-25T00:20:31.4303778Z\",\r\n \"metadata\": \"IntegrationAccountMap5827\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811/maps/IntegrationAccountMap5827\",\r\n \"name\": \"IntegrationAccountMap5827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:20 GMT" + "Sat, 25 Feb 2017 00:20:31 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:93e93875-3eea-4652-8950-949c3eb3af60" + "westus:fc47af98-1bdc-4e86-b8c2-ceccb8a200ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" + "14615" ], "x-ms-correlation-request-id": [ - "0fb14ddf-8de2-4dce-8d47-3dde61c685df" + "20d3a4ae-ade7-43c4-a45b-ae648fce5392" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020021Z:0fb14ddf-8de2-4dce-8d47-3dde61c685df" + "WESTUS2:20170225T002031Z:20d3a4ae-ade7-43c4-a45b-ae648fce5392" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTEzOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b29493e4-ffd5-4483-832a-e7dd1d164a14" + "ef9403a9-5d4c-4a0b-aa02-1e280b3e6e05" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:21 GMT" + "Sat, 25 Feb 2017 00:20:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:dcb33827-b5e2-4da8-a542-5756d2ff0fb9" + "westus:232864dd-83a2-430b-a429-8014edf1f461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "6a56240b-2809-43ac-bf55-dffb7b7b3d1d" + "bdd4e8b4-8cb6-4212-b7ab-9ee883504bc6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020022Z:6a56240b-2809-43ac-bf55-dffb7b7b3d1d" + "WESTUS2:20170225T002032Z:bdd4e8b4-8cb6-4212-b7ab-9ee883504bc6" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountMaps": [ - "IntegrationAccount1139", - "IntegrationAccountMap8728" + "IntegrationAccount8811", + "IntegrationAccountMap5827" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json index 3f768730a0b6..a6ea71024fc3 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMwP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTg4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "c644c75a-ecb1-406e-afb9-8a85fab3f930" + "6c37c4a6-e7e7-44b2-b210-4721745c2f9f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630\",\r\n \"name\": \"IntegrationAccount630\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988\",\r\n \"name\": \"IntegrationAccount988\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "288" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:40 GMT" + "Sat, 25 Feb 2017 00:21:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a6947384-7a7f-4578-9c67-3cfc47d575ea" + "westus:d6e9d262-6a6c-4dd8-973b-aef768f5d1b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1186" ], "x-ms-correlation-request-id": [ - "af9f0d38-194a-4abc-89ad-3a9438676f21" + "5ee78be9-190f-4c4f-83a0-d65aec4b060e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015941Z:af9f0d38-194a-4abc-89ad-3a9438676f21" + "WESTUS2:20170225T002144Z:5ee78be9-190f-4c4f-83a0-d65aec4b060e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630/partners/IntegrationAccountPartner9262?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMwL3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI5MjYyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988/partners/IntegrationAccountPartner4394?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTg4L3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI0Mzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner9262\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner9262\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner4394\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner4394\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "431d4151-f8a2-4994-a86e-103390b2f629" + "de9e4ccd-7335-4bfc-ae9e-2ed1d8d4ec26" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:41.8597082Z\",\r\n \"changedTime\": \"2017-02-11T01:59:41.8599041Z\",\r\n \"metadata\": \"IntegrationAccountPartner9262\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630/partners/IntegrationAccountPartner9262\",\r\n \"name\": \"IntegrationAccountPartner9262\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:44.9998631Z\",\r\n \"changedTime\": \"2017-02-25T00:21:45.0007342Z\",\r\n \"metadata\": \"IntegrationAccountPartner4394\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988/partners/IntegrationAccountPartner4394\",\r\n \"name\": \"IntegrationAccountPartner4394\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "525" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:41 GMT" + "Sat, 25 Feb 2017 00:21:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2b916046-231d-4fc0-a492-e91fc8c1779e" + "westus:a640058a-093b-4776-92f8-7a4f75e5591f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1185" ], "x-ms-correlation-request-id": [ - "c22f455c-2b2c-4f4b-a9a7-7bdcf24b1ce4" + "26936dfc-083b-4bad-9798-0636a06f2124" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015941Z:c22f455c-2b2c-4f4b-a9a7-7bdcf24b1ce4" + "WESTUS2:20170225T002144Z:26936dfc-083b-4bad-9798-0636a06f2124" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630/partners/IntegrationAccountPartner9262?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMwL3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI5MjYyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988/partners/IntegrationAccountPartner4394?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTg4L3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI0Mzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec0580ef-e958-42ec-813b-8a5d91a73eb5" + "f875d581-4d27-4aeb-9130-1942383facaf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,44 +151,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:41 GMT" + "Sat, 25 Feb 2017 00:21:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e1202611-df98-4407-85ab-4f1818d68970" + "westus:c3624b8e-e3d5-4ef7-8968-af9a98087774" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1184" ], "x-ms-correlation-request-id": [ - "fd46ce82-e573-4724-97ce-5eeec8f6fb9b" + "d24cd4c5-b12a-4a01-a26b-e5d85d358109" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015941Z:fd46ce82-e573-4724-97ce-5eeec8f6fb9b" + "WESTUS2:20170225T002145Z:d24cd4c5-b12a-4a01-a26b-e5d85d358109" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMwP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTg4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a4b7902-855f-41ad-bc1f-089165f2aada" + "8c1100f9-3874-445d-97cf-a868c7f8e74a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -203,25 +203,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:42 GMT" + "Sat, 25 Feb 2017 00:21:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:644f2b39-f74f-4eff-a1a0-884afec1fa17" + "westus:25749113-9ac4-49dd-9958-4b578a1c8c67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1183" ], "x-ms-correlation-request-id": [ - "c6bcaccf-61ed-4ea4-96b9-549389f7500a" + "a19ffd20-353f-463c-a374-902afc04a80a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015942Z:c6bcaccf-61ed-4ea4-96b9-549389f7500a" + "WESTUS2:20170225T002145Z:a19ffd20-353f-463c-a374-902afc04a80a" ] }, "StatusCode": 200 @@ -229,8 +229,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountPartner": [ - "IntegrationAccount630", - "IntegrationAccountPartner9262" + "IntegrationAccount988", + "IntegrationAccountPartner4394" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json index 38a92652bf11..cd9140744de9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTM5MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "3d5075ab-57cc-4210-81ab-d51170135dcb" + "f2f501b0-6307-444d-a79c-d2bf392e8ae7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862\",\r\n \"name\": \"IntegrationAccount1862\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391\",\r\n \"name\": \"IntegrationAccount1391\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:32 GMT" + "Sat, 25 Feb 2017 00:21:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b548c28e-2069-4ae9-8f94-b9292d3a014a" + "westus:5fbf5a4e-324f-43eb-9f31-2e79de703f54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "fe364b33-6e70-492c-ad31-22f88093e987" + "baceee55-e930-42a1-b35d-11903f97ecba" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015933Z:fe364b33-6e70-492c-ad31-22f88093e987" + "WESTUS2:20170225T002140Z:baceee55-e930-42a1-b35d-11903f97ecba" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862/partners/IntegrationAccountPartner9515?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg2Mi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTUxNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391/partners/IntegrationAccountPartner7936?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTM5MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzkzNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner9515\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner9515\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7936\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7936\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "398" ], "x-ms-client-request-id": [ - "f71a4424-45a1-41e9-8f6f-fc184ef3e442" + "67790a62-6af4-4d84-a33e-28ccc3da4a40" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:33.886693Z\",\r\n \"changedTime\": \"2017-02-11T01:59:33.8873688Z\",\r\n \"metadata\": \"IntegrationAccountPartner9515\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862/partners/IntegrationAccountPartner9515\",\r\n \"name\": \"IntegrationAccountPartner9515\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:40.3342994Z\",\r\n \"changedTime\": \"2017-02-25T00:21:40.3354521Z\",\r\n \"metadata\": \"IntegrationAccountPartner7936\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391/partners/IntegrationAccountPartner7936\",\r\n \"name\": \"IntegrationAccountPartner7936\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "525" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:33 GMT" + "Sat, 25 Feb 2017 00:21:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e0f9655b-bd0b-417f-9bf3-5264a27bb058" + "westus:988777ee-f3d6-4cbf-84a5-8c277015287a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "45c458d2-05d6-43aa-91f5-9c3ee418d8b0" + "93a470d2-08af-41b2-8c27-6de619f1dd6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015933Z:45c458d2-05d6-43aa-91f5-9c3ee418d8b0" + "WESTUS2:20170225T002140Z:93a470d2-08af-41b2-8c27-6de619f1dd6c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862/partners/IntegrationAccountPartner9515?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg2Mi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTUxNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391/partners/IntegrationAccountPartner7936?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTM5MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzkzNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a642c3a-2f7f-4732-aad1-0fa70e3b9a40" + "993ee77e-2835-4f37-a6d6-9f3d1b3aa1ea" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:33.886693Z\",\r\n \"changedTime\": \"2017-02-11T01:59:33.8873688Z\",\r\n \"metadata\": \"IntegrationAccountPartner9515\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862/partners/IntegrationAccountPartner9515\",\r\n \"name\": \"IntegrationAccountPartner9515\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:40.3342994Z\",\r\n \"changedTime\": \"2017-02-25T00:21:40.3354521Z\",\r\n \"metadata\": \"IntegrationAccountPartner7936\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391/partners/IntegrationAccountPartner7936\",\r\n \"name\": \"IntegrationAccountPartner7936\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:33 GMT" + "Sat, 25 Feb 2017 00:21:40 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f08eb9d5-5e58-41a3-b33f-fabf0491e01d" + "westus:08bac078-d9b9-4cf0-940c-8453d754c5a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14813" ], "x-ms-correlation-request-id": [ - "fc8b4e68-20c3-485d-b0d9-bc37403d8934" + "0ca54082-ab6b-4ed1-a1df-733fdc8606a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015933Z:fc8b4e68-20c3-485d-b0d9-bc37403d8934" + "WESTUS2:20170225T002140Z:0ca54082-ab6b-4ed1-a1df-733fdc8606a3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTM5MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea96e5ad-bbd9-40de-b47d-555c1b2301c2" + "73927aac-8fb3-4d10-9a5b-3d1530d042f6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:33 GMT" + "Sat, 25 Feb 2017 00:21:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7bf99456-8b6c-49c8-bcb5-59e6927d68c9" + "westus:d367fcc1-977d-4ec4-a634-a7fb481b2f0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-correlation-request-id": [ - "c22bf2b8-70cf-4b01-b01e-fb1155dc2ca5" + "20eb3d05-b45f-44ce-837f-64f9c91fcb64" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015934Z:c22bf2b8-70cf-4b01-b01e-fb1155dc2ca5" + "WESTUS2:20170225T002140Z:20eb3d05-b45f-44ce-837f-64f9c91fcb64" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountPartner": [ - "IntegrationAccount1862", - "IntegrationAccountPartner9515" + "IntegrationAccount1391", + "IntegrationAccountPartner7936" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json index 58bfc6559421..1ab33fdc4f71 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "e384c869-588e-4e94-ae32-b9a45b2db928" + "959f28bc-eac4-4d42-b29d-5402c46cc72c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961\",\r\n \"name\": \"IntegrationAccount6961\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635\",\r\n \"name\": \"IntegrationAccount2635\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:45 GMT" + "Sat, 25 Feb 2017 00:21:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8dac4f47-c868-4690-8213-458dedd58f28" + "westus:05f63253-89c0-4400-b310-affe10541c94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-correlation-request-id": [ - "9266a0b4-969a-44d0-9f40-9243e5a30719" + "4067585d-0744-456b-91da-8c96449a3375" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015946Z:9266a0b4-969a-44d0-9f40-9243e5a30719" + "WESTUS2:20170225T002146Z:4067585d-0744-456b-91da-8c96449a3375" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961/partners/IntegrationAccountPartner5662?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk2MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTY2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635/partners/IntegrationAccountPartner9831?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjYzNS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTgzMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner5662\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner5662\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner9831\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner9831\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "398" ], "x-ms-client-request-id": [ - "1333192c-eeb8-4432-bdcb-df773b309e5b" + "36622e6a-5aa6-47bb-a4df-db98ee8cb5ad" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:47.3587126Z\",\r\n \"changedTime\": \"2017-02-11T01:59:47.3591666Z\",\r\n \"metadata\": \"IntegrationAccountPartner5662\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961/partners/IntegrationAccountPartner5662\",\r\n \"name\": \"IntegrationAccountPartner5662\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:47.0900617Z\",\r\n \"changedTime\": \"2017-02-25T00:21:47.09127Z\",\r\n \"metadata\": \"IntegrationAccountPartner9831\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635/partners/IntegrationAccountPartner9831\",\r\n \"name\": \"IntegrationAccountPartner9831\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "526" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:46 GMT" + "Sat, 25 Feb 2017 00:21:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3dd7a8bf-cd45-48ac-85d0-0589047f6f49" + "westus:350c11e2-49e2-4c39-bd30-7ea235c286fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1188" ], "x-ms-correlation-request-id": [ - "a8cfa803-6d1e-4612-82fc-90dff4ea4b99" + "38ae8f3b-8e85-49bc-a803-f184165d198c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015947Z:a8cfa803-6d1e-4612-82fc-90dff4ea4b99" + "WESTUS2:20170225T002147Z:38ae8f3b-8e85-49bc-a803-f184165d198c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961/partners/IntegrationAccountPartner5662?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk2MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTY2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635/partners/IntegrationAccountPartner9831?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjYzNS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTgzMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"updated\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "373" ], "x-ms-client-request-id": [ - "4aa3ca32-b592-4e33-834c-5938fee7bd6f" + "437c6d2b-0b88-4d7a-9f77-6e7a6b67fbde" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:47.3587126Z\",\r\n \"changedTime\": \"2017-02-11T01:59:47.513454Z\",\r\n \"metadata\": \"updated\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961/partners/IntegrationAccountPartner5662\",\r\n \"name\": \"IntegrationAccountPartner5662\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:47.0900617Z\",\r\n \"changedTime\": \"2017-02-25T00:21:47.1881395Z\",\r\n \"metadata\": \"updated\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635/partners/IntegrationAccountPartner9831\",\r\n \"name\": \"IntegrationAccountPartner9831\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:46 GMT" + "Sat, 25 Feb 2017 00:21:47 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:9e95f926-a2a0-4fac-ac5c-9a9ec8e07fa8" + "westus:1d93e3bb-4d3b-4b1f-a2f7-5c1df86735eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1187" ], "x-ms-correlation-request-id": [ - "85512ffd-4da9-4587-8806-6301a7529775" + "d0be605f-f4d1-42af-981c-4967d0ff6c26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015947Z:85512ffd-4da9-4587-8806-6301a7529775" + "WESTUS2:20170225T002147Z:d0be605f-f4d1-42af-981c-4967d0ff6c26" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "334661c4-ca51-4f87-830f-9f3f329f63e1" + "117ee1cd-c23e-4253-8607-9510680c0fe2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:47 GMT" + "Sat, 25 Feb 2017 00:21:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:cec0e57f-1e04-4ef7-ae3c-56ff1eed5a18" + "westus:1477a6d5-0bfc-4bd5-9d44-d5885747ad05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1186" ], "x-ms-correlation-request-id": [ - "9fbc5898-23ae-437f-a144-d9e3f3915656" + "b56b9278-4f8a-4335-8b39-93ee27dfa0d2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015948Z:9fbc5898-23ae-437f-a144-d9e3f3915656" + "WESTUS2:20170225T002147Z:b56b9278-4f8a-4335-8b39-93ee27dfa0d2" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountPartner": [ - "IntegrationAccount6961", - "IntegrationAccountPartner5662" + "IntegrationAccount2635", + "IntegrationAccountPartner9831" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json index 4f785e43b874..4f3c586d2c40 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTAyND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "a92c215f-f7e7-49c8-b5c3-27566f2aee7f" + "436c13a2-e224-41c3-9ded-2f1e952041d5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262\",\r\n \"name\": \"IntegrationAccount1262\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024\",\r\n \"name\": \"IntegrationAccount1024\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:50 GMT" + "Sat, 25 Feb 2017 00:21:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:aa6cd6c5-d1a7-4470-9254-add3ec1d5eef" + "westus:bba89751-ff99-40b2-8e51-d390abf62ff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1181" ], "x-ms-correlation-request-id": [ - "afae8812-6978-4584-a533-f3eb8d30d5ed" + "19c9359d-17ba-4438-bc56-b532e65698c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015950Z:afae8812-6978-4584-a533-f3eb8d30d5ed" + "WESTUS2:20170225T002149Z:19c9359d-17ba-4438-bc56-b532e65698c9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262/partners/IntegrationAccountPartner4140?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI2Mi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNDE0MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024/partners/IntegrationAccountPartner3164?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTAyNC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMzE2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner4140\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner4140\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner3164\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner3164\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "ecee570b-9a27-4ecb-9d3b-847e3bfd7955" + "1a146add-a6d0-430b-a119-04096771afbb" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:51.3617776Z\",\r\n \"changedTime\": \"2017-02-11T01:59:51.3626998Z\",\r\n \"metadata\": \"IntegrationAccountPartner4140\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262/partners/IntegrationAccountPartner4140\",\r\n \"name\": \"IntegrationAccountPartner4140\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:50.1013831Z\",\r\n \"changedTime\": \"2017-02-25T00:21:50.1019686Z\",\r\n \"metadata\": \"IntegrationAccountPartner3164\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024/partners/IntegrationAccountPartner3164\",\r\n \"name\": \"IntegrationAccountPartner3164\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:50 GMT" + "Sat, 25 Feb 2017 00:21:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c1277759-4662-44f2-8f9a-2cffe0752117" + "westus:2b62e08f-b4ae-4e5c-a9be-cd3275cb740b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1180" ], "x-ms-correlation-request-id": [ - "986b8dd7-b8d7-45c6-9374-16d36339655a" + "2ea5d664-b3d8-4f95-aa89-2aa8b77da51c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015951Z:986b8dd7-b8d7-45c6-9374-16d36339655a" + "WESTUS2:20170225T002150Z:2ea5d664-b3d8-4f95-aa89-2aa8b77da51c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTAyND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d69cc865-c59b-496b-bd91-80a8155101e0" + "bcb16862-abbe-489e-bac7-3bd0fc1861bb" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:51 GMT" + "Sat, 25 Feb 2017 00:21:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e036aecf-a585-4147-b9e6-4eb4f59e6849" + "westus:8fd6de8e-a97f-432e-96d9-e22bc75cbb49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1179" ], "x-ms-correlation-request-id": [ - "8c5034a1-584c-43a0-8450-ab3759c63abc" + "a7cf0903-11ac-4275-b5a0-043edeb35962" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015952Z:8c5034a1-584c-43a0-8450-ab3759c63abc" + "WESTUS2:20170225T002150Z:a7cf0903-11ac-4275-b5a0-043edeb35962" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262/partners/IntegrationAccountPartner4140?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI2Mi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNDE0MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024/partners/IntegrationAccountPartner3164?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTAyNC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMzE2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7830e2a-21ac-4e59-8573-9a3062389f26" + "9357a878-b63b-44bc-993b-28853913396d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount1262' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount1024' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:51 GMT" + "Sat, 25 Feb 2017 00:21:50 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "d86bedef-1cf6-4251-9448-847f599c443a" + "bf8d7d6d-2ac0-4e8f-9855-0ce0bd7cca52" ], "x-ms-correlation-request-id": [ - "d86bedef-1cf6-4251-9448-847f599c443a" + "bf8d7d6d-2ac0-4e8f-9855-0ce0bd7cca52" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015952Z:d86bedef-1cf6-4251-9448-847f599c443a" + "WESTUS2:20170225T002150Z:bf8d7d6d-2ac0-4e8f-9855-0ce0bd7cca52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountPartnerOnAccountDeletion": [ - "IntegrationAccount1262", - "IntegrationAccountPartner4140" + "IntegrationAccount1024", + "IntegrationAccountPartner3164" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json index 114517814529..84427127e79b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjAxNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODAxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "c465a52c-bc12-4ca6-996f-9a9c32326d89" + "8c93f21e-3f4c-4cce-90e5-f4578768488c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015\",\r\n \"name\": \"IntegrationAccount6015\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012\",\r\n \"name\": \"IntegrationAccount8012\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:36 GMT" + "Sat, 25 Feb 2017 00:21:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c006f016-3dc8-4511-a115-ea239fa1d998" + "westus:104dce45-4b1f-4c38-98cd-869ca9be2a76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-correlation-request-id": [ - "0f637f9b-f232-4946-8f59-6a42fdc8bf0b" + "272c5d7e-fc02-4727-af52-654b92b964f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015936Z:0f637f9b-f232-4946-8f59-6a42fdc8bf0b" + "WESTUS2:20170225T002142Z:272c5d7e-fc02-4727-af52-654b92b964f0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015/partners/IntegrationAccountPartner7302?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjAxNS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzMwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012/partners/IntegrationAccountPartner1155?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODAxMi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMTE1NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7302\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7302\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner1155\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner1155\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "0c43ac19-0f04-43b2-bc67-0b4bfd070e53" + "8ab12591-41e7-4eb9-a342-ea092764e0b9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:37.3968142Z\",\r\n \"changedTime\": \"2017-02-11T01:59:37.3974798Z\",\r\n \"metadata\": \"IntegrationAccountPartner7302\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015/partners/IntegrationAccountPartner7302\",\r\n \"name\": \"IntegrationAccountPartner7302\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:42.5009157Z\",\r\n \"changedTime\": \"2017-02-25T00:21:42.5020967Z\",\r\n \"metadata\": \"IntegrationAccountPartner1155\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012/partners/IntegrationAccountPartner1155\",\r\n \"name\": \"IntegrationAccountPartner1155\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:36 GMT" + "Sat, 25 Feb 2017 00:21:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:fa653443-2f46-4890-99fa-d6ba532bbb25" + "westus:488a0c46-a4e8-4773-a13a-88ec9a941243" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "6b6a0ca2-3636-4c0f-85dc-849c0f7de5aa" + "fe6a39ce-2d50-41c7-a2f1-6f58f2a11941" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015937Z:6b6a0ca2-3636-4c0f-85dc-849c0f7de5aa" + "WESTUS2:20170225T002142Z:fe6a39ce-2d50-41c7-a2f1-6f58f2a11941" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015/partners?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjAxNS9wYXJ0bmVycz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012/partners?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODAxMi9wYXJ0bmVycz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fd6b27f-69e7-4d71-b689-405ede86c03b" + "161281fc-d794-423a-81d6-c2e5741a18ab" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:37.3968142Z\",\r\n \"changedTime\": \"2017-02-11T01:59:37.3974798Z\",\r\n \"metadata\": \"IntegrationAccountPartner7302\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015/partners/IntegrationAccountPartner7302\",\r\n \"name\": \"IntegrationAccountPartner7302\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:42.5009157Z\",\r\n \"changedTime\": \"2017-02-25T00:21:42.5020967Z\",\r\n \"metadata\": \"IntegrationAccountPartner1155\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012/partners/IntegrationAccountPartner1155\",\r\n \"name\": \"IntegrationAccountPartner1155\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:36 GMT" + "Sat, 25 Feb 2017 00:21:41 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:ad84603d-60cc-4ebf-94ea-ba80a907d6db" + "westus:70d8f098-3971-4143-9bb3-eb5222930eec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14608" ], "x-ms-correlation-request-id": [ - "9177b08a-89e2-4100-854b-81b372eb9a2b" + "5c62d562-8fad-45f4-94a6-1dca88247f85" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015937Z:9177b08a-89e2-4100-854b-81b372eb9a2b" + "WESTUS2:20170225T002142Z:5c62d562-8fad-45f4-94a6-1dca88247f85" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjAxNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODAxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c917fdf8-9b4a-4de6-bf29-cf71b4d12e5b" + "513c9eb1-cd90-437b-8c33-962550f62b04" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:37 GMT" + "Sat, 25 Feb 2017 00:21:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0ea9df64-6341-487b-972d-f6f4e4966658" + "westus:9d31c8a1-c0f5-43e5-9fe3-80a5ae4d1666" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "b4d3c128-701f-418a-9896-8d258ddd76c5" + "ffe89899-5ab2-427d-b400-b5396764f414" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015938Z:b4d3c128-701f-418a-9896-8d258ddd76c5" + "WESTUS2:20170225T002143Z:ffe89899-5ab2-427d-b400-b5396764f414" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountPartners": [ - "IntegrationAccount6015", - "IntegrationAccountPartner7302" + "IntegrationAccount8012", + "IntegrationAccountPartner1155" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json index bd469345dc8e..1dec14e39ff3 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8657?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1283?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI4Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "bebfa88a-1f63-47e3-9ec9-c71f97b5beca" + "590849f5-ac83-4aaf-a3ec-672ffdd88461" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8657\",\r\n \"name\": \"IntegrationAccount8657\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1283\",\r\n \"name\": \"IntegrationAccount1283\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,44 +38,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:36 GMT" + "Sat, 25 Feb 2017 00:20:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:863ccf4e-8ae9-481c-8b3a-f7e408c108a3" + "westus:b747bd6f-ea2a-427f-92a0-268e89aac90d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "35d92968-0971-4b29-8317-259951d7cd5b" + "b374cc31-8ee7-43f7-a3ea-4e5f5d099a0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020036Z:35d92968-0971-4b29-8317-259951d7cd5b" + "WESTUS2:20170225T002005Z:b374cc31-8ee7-43f7-a3ea-4e5f5d099a0d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8657?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1283?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI4Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57c93f4f-c871-4626-8d4c-8f0a50654bda" + "d0add56d-e570-4404-8302-93a509236e39" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -90,25 +90,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:36 GMT" + "Sat, 25 Feb 2017 00:20:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4d9db001-e2ef-4a74-bb4c-e7473723a667" + "westus:f7f2892f-9058-45b6-9f76-c84d96d12878" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "5d7c4042-eec1-4799-9f90-ea313aa85afc" + "3ea4fd9a-7b05-49f3-820d-0c36c97865e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020037Z:5d7c4042-eec1-4799-9f90-ea313aa85afc" + "WESTUS2:20170225T002005Z:3ea4fd9a-7b05-49f3-820d-0c36c97865e9" ] }, "StatusCode": 200 @@ -116,7 +116,7 @@ ], "Names": { "CreateAndDeleteIntegrationAccount": [ - "IntegrationAccount8657" + "IntegrationAccount1283" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json index b7113bfde2c9..8f537632b652 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTY2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "b6fe5238-9dd7-456d-835e-644853423202" + "d6918b1d-711a-46b2-887e-fc1d42d0ec6f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660\",\r\n \"name\": \"IntegrationAccount9660\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912\",\r\n \"name\": \"IntegrationAccount912\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,47 +38,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:48 GMT" + "Sat, 25 Feb 2017 00:20:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a328172e-3e62-489e-944a-84edab9fe0de" + "westus:9b4a7371-e777-4dfc-a330-8982deeb94ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "0d596801-81b8-4507-a3d8-36f3b75d7021" + "426eaa37-7b64-4176-a26a-40b940213d7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020048Z:0d596801-81b8-4507-a3d8-36f3b75d7021" + "WESTUS2:20170225T002017Z:426eaa37-7b64-4176-a26a-40b940213d7b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTY2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12eb2b32-be4b-4c94-b99a-cb4c172fbd7d" + "d6ce0f79-8c75-47b9-bd85-2ca791ad2591" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660\",\r\n \"name\": \"IntegrationAccount9660\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912\",\r\n \"name\": \"IntegrationAccount912\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:48 GMT" + "Sat, 25 Feb 2017 00:20:17 GMT" ], "Pragma": [ "no-cache" @@ -103,38 +103,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:d5bfc0c0-d61b-4548-b6f2-f7ed12ffef6b" + "westus:d8a3fda4-95b8-4c27-bc3d-bf2e03292430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14630" + "14782" ], "x-ms-correlation-request-id": [ - "c80d790b-d268-4bc7-8256-9027da27dbbc" + "9ac4c5bb-2119-42cd-82ca-3fe76015442b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020048Z:c80d790b-d268-4bc7-8256-9027da27dbbc" + "WESTUS2:20170225T002018Z:9ac4c5bb-2119-42cd-82ca-3fe76015442b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTY2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "743f8bee-4fcb-4296-af0f-72e104177dd8" + "e15e3578-d639-4765-a183-c1005ed7fa5e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -149,25 +149,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:48 GMT" + "Sat, 25 Feb 2017 00:20:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a0b6ec19-e294-4b5c-ae72-d68e196b6d07" + "westus:2449b5c5-f8eb-425e-a8be-b2f314cc9f63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "be08b705-0f1a-47bb-ad1b-e83ed86611dd" + "7cffa2f9-f02c-4431-b3e0-d36790442366" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020049Z:be08b705-0f1a-47bb-ad1b-e83ed86611dd" + "WESTUS2:20170225T002018Z:7cffa2f9-f02c-4431-b3e0-d36790442366" ] }, "StatusCode": 200 @@ -175,7 +175,7 @@ ], "Names": { "CreateAndGetIntegrationAccountByName": [ - "IntegrationAccount9660" + "IntegrationAccount912" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json index 267a651f3ac2..3666df2f4ecf 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "55bf08e4-a01c-4ffa-a1f2-18c156c8d46c" + "e85de05c-75af-4d67-ae5f-99a2ff4e5509" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374\",\r\n \"name\": \"IntegrationAccount5374\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960\",\r\n \"name\": \"IntegrationAccount5960\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:44 GMT" + "Sat, 25 Feb 2017 00:20:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6daef8a7-0615-4688-b892-5730c9c89948" + "westus:3967307b-3963-43b4-9f07-4ba846c2c0f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "273cb95f-2e7e-4ada-9ee5-754f888f853f" + "bcdf2f66-9516-4621-9c90-0144c5447def" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020045Z:273cb95f-2e7e-4ada-9ee5-754f888f853f" + "WESTUS2:20170225T002014Z:bcdf2f66-9516-4621-9c90-0144c5447def" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "91" ], "x-ms-client-request-id": [ - "76d0c1fa-31e4-4abe-b40b-40da2a22203e" + "04e79dcb-a3c3-4e46-b06c-e826bf93fa8d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374\",\r\n \"name\": \"IntegrationAccount5374\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960\",\r\n \"name\": \"IntegrationAccount5960\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:45 GMT" + "Sat, 25 Feb 2017 00:20:14 GMT" ], "Pragma": [ "no-cache" @@ -109,38 +109,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a6820687-cab7-4fb3-8ebe-f47c6f276a7f" + "westus:0eeab863-661f-416b-8e8a-3f83a292e9b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "362127eb-194c-47ad-901c-03f803e32b76" + "94f31256-5ccf-4a49-ac1e-1b2a6daa49bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020046Z:362127eb-194c-47ad-901c-03f803e32b76" + "WESTUS2:20170225T002014Z:94f31256-5ccf-4a49-ac1e-1b2a6daa49bb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63c77563-b276-431e-9c8b-2548dd43e034" + "cb967d41-f755-4965-ae7e-5551d6846b2e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -155,33 +155,33 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:45 GMT" + "Sat, 25 Feb 2017 00:20:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4c35bb56-a73f-4a62-a5e6-d1ed747184a9" + "westus:19ec8563-adf6-40f9-8c1b-ce7487f05999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "366a8269-2a96-4f0c-82ac-51a4b84ad63f" + "a553d74c-0257-4ffe-9ae2-e5e55c3c0a4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020046Z:366a8269-2a96-4f0c-82ac-51a4b84ad63f" + "WESTUS2:20170225T002015Z:a553d74c-0257-4ffe-9ae2-e5e55c3c0a4f" ] }, - "StatusCode": 200 + "StatusCode": 204 } ], "Names": { "CreateAndUpdateIntegrationAccount": [ - "IntegrationAccount5374" + "IntegrationAccount5960" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json index 79eaff32da6b..e976f41a54d1 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1875?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7425?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzQyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "819a9ddb-c454-4810-9d13-1351e17275a2" + "2630f499-594e-4063-8214-c23c10869309" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1875\",\r\n \"name\": \"IntegrationAccount1875\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7425\",\r\n \"name\": \"IntegrationAccount7425\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,25 +38,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:42 GMT" + "Sat, 25 Feb 2017 00:20:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e92ba672-9bd9-4bfb-ab44-1249ecde6cfe" + "westus:5f135140-f64d-4ec9-8a1a-70ba7f550f03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "a3d7758c-383d-47bc-8f9c-251c7a3a4e32" + "9e79458e-e81b-4725-94f5-2fb2b2200e05" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020043Z:a3d7758c-383d-47bc-8f9c-251c7a3a4e32" + "WESTUS2:20170225T002011Z:9e79458e-e81b-4725-94f5-2fb2b2200e05" ] }, "StatusCode": 201 @@ -68,17 +68,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3b8b98d-df7b-473c-a49c-3e9846ee2fda" + "c670ffe4-1a61-4da3-89c4-f0b9f8c3764c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1875\",\r\n \"name\": \"IntegrationAccount1875\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7425\",\r\n \"name\": \"IntegrationAccount7425\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:42 GMT" + "Sat, 25 Feb 2017 00:20:10 GMT" ], "Pragma": [ "no-cache" @@ -103,38 +103,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:6b97db64-a8c9-4fbb-ba79-2fb713fbfdda" + "westus:2e445ca5-528c-47c4-b75a-e93c0ba7aca1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14604" + "14621" ], "x-ms-correlation-request-id": [ - "01bd8783-75b4-4e3a-a28d-257ff088ccaf" + "d5e05789-8231-4627-9b47-b69e651a66f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020043Z:01bd8783-75b4-4e3a-a28d-257ff088ccaf" + "WESTUS2:20170225T002011Z:d5e05789-8231-4627-9b47-b69e651a66f3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1875?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7425?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzQyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3de84599-bb3c-4c9d-a49f-95a57f14d03b" + "6caa3a6e-1977-4b5c-a9a9-13bb9523f732" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -149,25 +149,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:43 GMT" + "Sat, 25 Feb 2017 00:20:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a51851c9-128f-4428-b47c-6bb17982b19b" + "westus:d511b3ec-1744-4f3d-9ca3-9bf1573061ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "25faa2ea-e054-4572-b37d-f61466879bf8" + "16831ca4-9b70-4608-87a9-71589701f8b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020043Z:25faa2ea-e054-4572-b37d-f61466879bf8" + "WESTUS2:20170225T002012Z:16831ca4-9b70-4608-87a9-71589701f8b4" ] }, "StatusCode": 200 @@ -175,7 +175,7 @@ ], "Names": { "ListIntegrationAccountByResourceGroup": [ - "IntegrationAccount1875" + "IntegrationAccount7425" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json index b87112a1d443..c7ba37065071 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6318?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMxOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7851?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzg1MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "843b7f25-e7ff-4d0e-9ff5-1a80a0af589f" + "640c487b-da06-47d0-b2ff-f2bc0e0214d9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6318\",\r\n \"name\": \"IntegrationAccount6318\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7851\",\r\n \"name\": \"IntegrationAccount7851\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,25 +38,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:38 GMT" + "Sat, 25 Feb 2017 00:20:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:23a9b214-02e5-4c63-98ee-d0c77fc72c0f" + "westus:7147b66d-ea78-4aa8-9ac3-1d9cb0bd2567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "4253a2c6-a81c-41dd-8701-8818f91eb4f4" + "af940f03-5313-480f-9830-bbd9ce395c33" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020039Z:4253a2c6-a81c-41dd-8701-8818f91eb4f4" + "WESTUS2:20170225T002008Z:af940f03-5313-480f-9830-bbd9ce395c33" ] }, "StatusCode": 201 @@ -68,17 +68,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29c3f902-8436-49a7-a967-e9c166880493" + "2f42c709-e964-41dc-bfda-d15641b9db4c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIAFabrikam\",\r\n \"name\": \"daviburgIAFabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIANC\",\r\n \"name\": \"daviburgIANC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/DONOTDELETE-TrackingResourceGroupNorthCentralUS/providers/Microsoft.Logic/integrationAccounts/DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"name\": \"DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/testbatchtracking\",\r\n \"name\": \"testbatchtracking\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIANCUS\",\r\n \"name\": \"JavIANCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/sapdemo2\",\r\n \"name\": \"sapdemo2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/klamRG/providers/Microsoft.Logic/integrationAccounts/klamIntegrationAccount\",\r\n \"name\": \"klamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PaginationTestRG/providers/Microsoft.Logic/integrationAccounts/PaginationIA\",\r\n \"name\": \"PaginationIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIA2\",\r\n \"name\": \"sumikumIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIAt1\",\r\n \"name\": \"sumikumIAt1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccountDemo\",\r\n \"name\": \"ContosoIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccountDemo\",\r\n \"name\": \"FabrikamIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccountDemo\",\r\n \"name\": \"IntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsCentralUSAccount\",\r\n \"name\": \"JonsCentralUSAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsIntAcc\",\r\n \"name\": \"JonsIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsDemos\",\r\n \"name\": \"JonsDemos\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsigniteintacc\",\r\n \"name\": \"jonsigniteintacc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccCentralUS\",\r\n \"name\": \"JonsIntAccCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padintegrationaccountdiagnostics/providers/Microsoft.Logic/integrationAccounts/testdiagnostics\",\r\n \"name\": \"testdiagnostics\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuducentralusrg/providers/Microsoft.Logic/integrationAccounts/rarayuducentralusia\",\r\n \"name\": \"rarayuducentralusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinay-central-ua/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/VETERaccount\",\r\n \"name\": \"VETERaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ramacfar-test/providers/Microsoft.Logic/integrationAccounts/ramacfar_south_central\",\r\n \"name\": \"ramacfar_south_central\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2rg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaSCUS\",\r\n \"name\": \"rarayuduiaSCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JAV-RG-NorthEurope2/providers/Microsoft.Logic/integrationAccounts/Jav-IA-NorthEurope\",\r\n \"name\": \"Jav-IA-NorthEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestnortheuroperg/providers/Microsoft.Logic/integrationAccounts/rarayudutestnortheuropeia\",\r\n \"name\": \"rarayudutestnortheuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuestIA\",\r\n \"name\": \"TrackingTipGuestIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipHostIA\",\r\n \"name\": \"TrackingTipHostIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinayvsrg/providers/Microsoft.Logic/integrationAccounts/NorthEuropeTesting\",\r\n \"name\": \"NorthEuropeTesting\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRG-WestEurope2/providers/Microsoft.Logic/integrationAccounts/JavIA-WestEurope\",\r\n \"name\": \"JavIA-WestEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TestFreeAccount\",\r\n \"name\": \"TestFreeAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/X12WestEurope/providers/Microsoft.Logic/integrationAccounts/westeuropeia\",\r\n \"name\": \"westeuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/apsethRG/providers/Microsoft.Logic/integrationAccounts/APATEST\",\r\n \"name\": \"APATEST\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount-1.618\",\r\n \"name\": \"IntegrationAccount-1.618\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1890\",\r\n \"name\": \"IntegrationAccount1890\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2342\",\r\n \"name\": \"IntegrationAccount2342\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2800\",\r\n \"name\": \"IntegrationAccount2800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6287\",\r\n \"name\": \"IntegrationAccount6287\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6364\",\r\n \"name\": \"IntegrationAccount6364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9648\",\r\n \"name\": \"IntegrationAccount9648\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9789\",\r\n \"name\": \"IntegrationAccount9789\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Default-Web-WestUS/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/EIPIntegration\",\r\n \"name\": \"EIPIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6318\",\r\n \"name\": \"IntegrationAccount6318\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIABTS\",\r\n \"name\": \"JavIABTS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS4/providers/Microsoft.Logic/integrationAccounts/Jav-BrazilUSIA\",\r\n \"name\": \"Jav-BrazilUSIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsB2Baccount\",\r\n \"name\": \"JonsB2Baccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/AS2IntegrationAccount\",\r\n \"name\": \"AS2IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/myRGname/providers/Microsoft.Logic/integrationAccounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/paddemo/providers/Microsoft.Logic/integrationAccounts/integrationaccountdemo\",\r\n \"name\": \"integrationaccountdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PadmaCSADemo/providers/Microsoft.Logic/integrationAccounts/padintegrationdemo\",\r\n \"name\": \"padintegrationdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PrimaryRegionRG/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestas2westusia\",\r\n \"name\": \"rarayudutestas2westusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestdiagnosticsia\",\r\n \"name\": \"rarayudutestdiagnosticsia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestintegration\",\r\n \"name\": \"rarayudutestintegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testvetr/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonnewia\",\r\n \"name\": \"jonnewia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padmarg/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudueastusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaeastus\",\r\n \"name\": \"rarayuduiaeastus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/SecondaryRegionRG/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayudutestsignencryptis\",\r\n \"name\": \"rarayudutestsignencryptis\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/A2ABugBash_TUJAMGRG/providers/Microsoft.Logic/integrationAccounts/IntAccount-tujamg\",\r\n \"name\": \"IntAccount-tujamg\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Axrunz/providers/Microsoft.Logic/integrationAccounts/x12TestIntegrationAccount\",\r\n \"name\": \"x12TestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/BizTalkConnectorDemoRG/providers/Microsoft.Logic/integrationAccounts/BtsLogicAppTestIntAcc\",\r\n \"name\": \"BtsLogicAppTestIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/brazilsouth1/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/ContosoIntegration\",\r\n \"name\": \"ContosoIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS\",\r\n \"name\": \"daviburgIA_BS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS_Fabrikam\",\r\n \"name\": \"daviburgIA_BS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk4218\",\r\n \"name\": \"onesdk4218\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5235\",\r\n \"name\": \"onesdk5235\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5333\",\r\n \"name\": \"onesdk5333\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/CanaryIA\",\r\n \"name\": \"CanaryIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonIA2\",\r\n \"name\": \"JonIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsNewIA\",\r\n \"name\": \"JonsNewIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccountBrazil\",\r\n \"name\": \"JonsIntAccountBrazil\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padCSAdemo/providers/Microsoft.Logic/integrationAccounts/padcsaIAdemo\",\r\n \"name\": \"padcsaIAdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padmarg/providers/Microsoft.Logic/integrationAccounts/dfpadtestint\",\r\n \"name\": \"dfpadtestint\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/psrivasintAccount/providers/Microsoft.Logic/integrationAccounts/psrivasIntAcc\",\r\n \"name\": \"psrivasIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperfDecodeIA1\",\r\n \"name\": \"rarayuduperfDecodeIA1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia1\",\r\n \"name\": \"rarayuduperftestia1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia10\",\r\n \"name\": \"rarayuduperftestia10\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia2\",\r\n \"name\": \"rarayuduperftestia2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia3\",\r\n \"name\": \"rarayuduperftestia3\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia4\",\r\n \"name\": \"rarayuduperftestia4\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia5\",\r\n \"name\": \"rarayuduperftestia5\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia6\",\r\n \"name\": \"rarayuduperftestia6\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/msftconnectaccount\",\r\n \"name\": \"msftconnectaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/B2BEndToEndTracking/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuest\",\r\n \"name\": \"TrackingTipGuest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Contoso\",\r\n \"name\": \"daviburgWCUS_Contoso\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Fabrikam\",\r\n \"name\": \"daviburgWCUS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiatestwestcentralus\",\r\n \"name\": \"rarayuduiatestwestcentralus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTipRG/providers/Microsoft.Logic/integrationAccounts/TrackingTip\",\r\n \"name\": \"TrackingTip\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/westcentralus-rg/providers/Microsoft.Logic/integrationAccounts/westcentralus-ia\",\r\n \"name\": \"westcentralus-ia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01&%24skiptoken=5dHbbqMwEADQf0HqPi3BEKjaSNUq2eIUEsjG2EPEm7kkcTCXgnNr1X9fr7SfsG8r2Q8ej2ZGcz6NtrqptWjr0Zh9GqmfUJYYM%2bOoVD%2fOLKvhLT9UTdWqCf84D9Wk6BprPOdjMYheia4drf3UzR2HT03HQY7p7nPbzJGLTHs6dfLy2XkqnlyrH7qLKKthtCJRDN3Y7dVk3R1EYYlWVYeB%2f6k1L4ru3KrxB%2b%2bFedHJOvbiIPvRRPrY3x4cd6x1266u2pfqHp6z3RGxJb6XS4l4%2bnxOHPCCUyeixHcD8K8pjRMufRWIq8gbcEscXkqkZJUEj8HJP0Y00HnhO6ULwmvpMSBxxez37U5uCPSvFCAskedvd8e4qm2PpYrE%2bp%2f75BfBYQM%2b8xiObiBxBDKkDGBDcQwxO6YEMgZ1tiKSXTeQAUfekp3wiuEs3e5ISur%2bJ6MLlEgyZBgSqD1gNrN1S8hwTHS9FbzO7a30r1QuUtDDBC16mJbGd2NB5lmwTjaMvv1HWHP0z7D08iFVy1RmwPTVWJQ1t0Rj3diOaCz9hmzUCEuNq3H6N6ghBZzh3A835R2pvxhfX78B\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIAFabrikam\",\r\n \"name\": \"daviburgIAFabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIANC\",\r\n \"name\": \"daviburgIANC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/DONOTDELETE-TrackingResourceGroupNorthCentralUS/providers/Microsoft.Logic/integrationAccounts/DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"name\": \"DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/testbatchtracking\",\r\n \"name\": \"testbatchtracking\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIANCUS\",\r\n \"name\": \"JavIANCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/sapdemo2\",\r\n \"name\": \"sapdemo2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/klamRG/providers/Microsoft.Logic/integrationAccounts/klamIntegrationAccount\",\r\n \"name\": \"klamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PaginationTestRG/providers/Microsoft.Logic/integrationAccounts/PaginationIA\",\r\n \"name\": \"PaginationIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIA2\",\r\n \"name\": \"sumikumIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIAt1\",\r\n \"name\": \"sumikumIAt1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccountDemo\",\r\n \"name\": \"ContosoIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccountDemo\",\r\n \"name\": \"FabrikamIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccountDemo\",\r\n \"name\": \"IntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsCentralUSAccount\",\r\n \"name\": \"JonsCentralUSAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsIntAcc\",\r\n \"name\": \"JonsIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsDemos\",\r\n \"name\": \"JonsDemos\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsigniteintacc\",\r\n \"name\": \"jonsigniteintacc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccCentralUS\",\r\n \"name\": \"JonsIntAccCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padintegrationaccountdiagnostics/providers/Microsoft.Logic/integrationAccounts/testdiagnostics\",\r\n \"name\": \"testdiagnostics\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuducentralusrg/providers/Microsoft.Logic/integrationAccounts/rarayuducentralusia\",\r\n \"name\": \"rarayuducentralusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinay-central-ua/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/VETERaccount\",\r\n \"name\": \"VETERaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/HL7\",\r\n \"name\": \"HL7\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ramacfar-test/providers/Microsoft.Logic/integrationAccounts/ramacfar_south_central\",\r\n \"name\": \"ramacfar_south_central\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia1\",\r\n \"name\": \"rarayuduscusperfia1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia2\",\r\n \"name\": \"rarayuduscusperfia2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2rg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaSCUS\",\r\n \"name\": \"rarayuduiaSCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JAV-RG-NorthEurope2/providers/Microsoft.Logic/integrationAccounts/Jav-IA-NorthEurope\",\r\n \"name\": \"Jav-IA-NorthEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestnortheuroperg/providers/Microsoft.Logic/integrationAccounts/rarayudutestnortheuropeia\",\r\n \"name\": \"rarayudutestnortheuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuestIA\",\r\n \"name\": \"TrackingTipGuestIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipHostIA\",\r\n \"name\": \"TrackingTipHostIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinayvsrg/providers/Microsoft.Logic/integrationAccounts/NorthEuropeTesting\",\r\n \"name\": \"NorthEuropeTesting\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRG-WestEurope2/providers/Microsoft.Logic/integrationAccounts/JavIA-WestEurope\",\r\n \"name\": \"JavIA-WestEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TestFreeAccount\",\r\n \"name\": \"TestFreeAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/X12WestEurope/providers/Microsoft.Logic/integrationAccounts/westeuropeia\",\r\n \"name\": \"westeuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/apsethRG/providers/Microsoft.Logic/integrationAccounts/APATEST\",\r\n \"name\": \"APATEST\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount-1.618\",\r\n \"name\": \"IntegrationAccount-1.618\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1890\",\r\n \"name\": \"IntegrationAccount1890\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2342\",\r\n \"name\": \"IntegrationAccount2342\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2800\",\r\n \"name\": \"IntegrationAccount2800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6287\",\r\n \"name\": \"IntegrationAccount6287\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6364\",\r\n \"name\": \"IntegrationAccount6364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9648\",\r\n \"name\": \"IntegrationAccount9648\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9789\",\r\n \"name\": \"IntegrationAccount9789\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Default-Web-WestUS/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/EIPIntegration\",\r\n \"name\": \"EIPIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7851\",\r\n \"name\": \"IntegrationAccount7851\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIABTS\",\r\n \"name\": \"JavIABTS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS4/providers/Microsoft.Logic/integrationAccounts/Jav-BrazilUSIA\",\r\n \"name\": \"Jav-BrazilUSIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsB2Baccount\",\r\n \"name\": \"JonsB2Baccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/AS2IntegrationAccount\",\r\n \"name\": \"AS2IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/myRGname/providers/Microsoft.Logic/integrationAccounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PadmaCSADemo/providers/Microsoft.Logic/integrationAccounts/padintegrationdemo\",\r\n \"name\": \"padintegrationdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PrimaryRegionRG/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestas2westusia\",\r\n \"name\": \"rarayudutestas2westusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestdiagnosticsia\",\r\n \"name\": \"rarayudutestdiagnosticsia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestintegration\",\r\n \"name\": \"rarayudutestintegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testvetr/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTestResourceGroup/providers/Microsoft.Logic/integrationAccounts/TrackingTestIntegrationAccount\",\r\n \"name\": \"TrackingTestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonnewia\",\r\n \"name\": \"jonnewia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudueastusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaeastus\",\r\n \"name\": \"rarayuduiaeastus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/SecondaryRegionRG/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/yisha-brazilus/providers/Microsoft.Logic/integrationAccounts/yisha-guest\",\r\n \"name\": \"yisha-guest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayudutestsignencryptis\",\r\n \"name\": \"rarayudutestsignencryptis\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Axrunz/providers/Microsoft.Logic/integrationAccounts/x12TestIntegrationAccount\",\r\n \"name\": \"x12TestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/BizTalkConnectorDemoRG/providers/Microsoft.Logic/integrationAccounts/BtsLogicAppTestIntAcc\",\r\n \"name\": \"BtsLogicAppTestIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/brazilsouth1/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/ContosoIntegration\",\r\n \"name\": \"ContosoIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS\",\r\n \"name\": \"daviburgIA_BS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS_Fabrikam\",\r\n \"name\": \"daviburgIA_BS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1325\",\r\n \"name\": \"onesdk1325\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1407\",\r\n \"name\": \"onesdk1407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk167\",\r\n \"name\": \"onesdk167\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk2649\",\r\n \"name\": \"onesdk2649\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5806\",\r\n \"name\": \"onesdk5806\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6122\",\r\n \"name\": \"onesdk6122\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6407\",\r\n \"name\": \"onesdk6407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7137\",\r\n \"name\": \"onesdk7137\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7767\",\r\n \"name\": \"onesdk7767\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9526\",\r\n \"name\": \"onesdk9526\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9731\",\r\n \"name\": \"onesdk9731\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/Test\",\r\n \"name\": \"Test\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/CanaryIA\",\r\n \"name\": \"CanaryIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonIA2\",\r\n \"name\": \"JonIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsNewIA\",\r\n \"name\": \"JonsNewIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccountBrazil\",\r\n \"name\": \"JonsIntAccountBrazil\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padCSAdemo/providers/Microsoft.Logic/integrationAccounts/padcsaIAdemo\",\r\n \"name\": \"padcsaIAdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padmatestdr/providers/Microsoft.Logic/integrationAccounts/primaryia\",\r\n \"name\": \"primaryia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padmatestdr/providers/Microsoft.Logic/integrationAccounts/secondaryia\",\r\n \"name\": \"secondaryia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/msftconnectaccount\",\r\n \"name\": \"msftconnectaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/B2BEndToEndTracking/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuest\",\r\n \"name\": \"TrackingTipGuest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Contoso\",\r\n \"name\": \"daviburgWCUS_Contoso\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Fabrikam\",\r\n \"name\": \"daviburgWCUS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiatestwestcentralus\",\r\n \"name\": \"rarayuduiatestwestcentralus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTipRG/providers/Microsoft.Logic/integrationAccounts/TrackingTip\",\r\n \"name\": \"TrackingTip\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/westcentralus-rg/providers/Microsoft.Logic/integrationAccounts/westcentralus-ia\",\r\n \"name\": \"westcentralus-ia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01&%24skiptoken=5ZHLbqMwFIbfBamzGoLNJWoiVaNENRloIMXYJsPOgJNQzCXBSWirvvt4pNnOE4x0Vuf7L4v%2f0%2bjEpLZ114zG8tPIUEpoaiyNk1LDuLSslnf8KFrRqRn%2fuF7ErOxba7wWY3mpB1X33WgdHLewbe6Ytg1s0z0U0CyAC0zoOHZRLezH8tG1hkt%2fqytxGa2oLi%2f92B%2fUbNsf69KqOyWOF%2f4na1WW%2fbVT4w8%2b1OZNi%2fXvyQZwbgJ98NuD7Y6Nru0b0T2J9%2fCa70%2bAbvz3aiMBzxbX1GZe8NbXUYrcgKF7RuKUS6SC%2bl4XLXMrP7xVQEmRBvPgDZ0isgIBC8%2bErDFvpEcZjgWF52Qvd5gNz4SxsAIeSvanWDTQo5nCseYc4Vfshy1D1KN%2bNDHpR0yGGbXVhshgylHOIhYS2jUTYXFGJMOsCV8opFBHstyPsda%2fsOcVTCS6E7nOmC4LOvDgVMZ3Y41XebBNd5T8%2fG%2fG2JFfJ9oOceT753QvMUPQI9mwFtTzsyaOGZUOafBaIDgnmnOIoOY9RgtE25xiIhP64WeUTlmi7dye9pTlu1TikTYhjpCXMKkH%2bCcH6u8AX1%2b%2fAQ%3d%3d\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:39 GMT" + "Sat, 25 Feb 2017 00:20:08 GMT" ], "Pragma": [ "no-cache" @@ -99,29 +99,29 @@ "Accept-Encoding" ], "x-ms-original-request-ids": [ - "northcentralus:f423bf44-b11d-4374-a823-a9ada22ce095", - "centralus:cb1f7108-2534-4e27-a40c-7da1f8072090", - "southcentralus:f04d47cd-fe1d-495e-a198-9f82fe5da45b", - "northeurope:25cea73e-83c9-4474-8007-0f9104adfa03", - "westeurope:0ead2b4e-7d40-4d85-aafc-ecf2e64f1036", - "westus:6908d9b0-5a9c-4466-a7c7-19c2a97be0cc", - "eastus:a9bcc0da-dce7-4a81-81b1-219502c1bb72", - "eastus2:c3d1e56e-0ea5-478b-b5ef-c302b9ac20db", - "brazilsouth:91185814-b167-4d96-bead-17ba3170125a", - "westus2:f576bf66-6b39-4b00-b45f-7b711e357079", - "westcentralus:400d3a9f-c728-44f2-9b1b-4154d39daa16" + "northcentralus:d5a19eb4-5b2b-471a-9c84-452be3d9c646", + "centralus:6d954128-a9aa-4cfd-98bf-f74c3875b191", + "southcentralus:02fb68a4-9263-41de-a999-83e571e1edf3", + "northeurope:e03771a6-1dc9-49e4-89be-44e9c9d0e20a", + "westeurope:7df6a998-a160-48db-a341-63880d705824", + "westus:3c201786-e3da-45a9-a4d2-68f5fc2bba7e", + "eastus:64c21a34-598c-4dea-8263-7cb256b2637b", + "eastus2:56efbb6c-1b92-4013-9869-51cbaf959e11", + "brazilsouth:6c88fdff-f910-4086-95ae-7f5965dc62dc", + "westus2:ae156f5d-6ca4-4932-9fcc-8d42614a2cf9", + "westcentralus:569736d8-0e77-421d-bbc8-0497f6c40e5a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "14615" ], "x-ms-request-id": [ - "371f1aab-a2cd-496d-928f-f0de14be78ea" + "c4514149-b279-4533-bcc4-67f725ee0e96" ], "x-ms-correlation-request-id": [ - "371f1aab-a2cd-496d-928f-f0de14be78ea" + "c4514149-b279-4533-bcc4-67f725ee0e96" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020040Z:371f1aab-a2cd-496d-928f-f0de14be78ea" + "WESTUS2:20170225T002009Z:c4514149-b279-4533-bcc4-67f725ee0e96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,20 +130,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6318?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMxOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7851?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzg1MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56a97073-e384-409f-b858-192b46178517" + "705c2dd3-9bd0-47dd-be35-2875434561fd" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -158,25 +158,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:40 GMT" + "Sat, 25 Feb 2017 00:20:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:74a2de90-ab58-4dd3-a219-55e7d849b64c" + "westus:3bf06a9d-e33e-4df2-82a6-3c22a86ce6bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "ff8633bc-7c28-4990-ab7b-2aad23713c89" + "27c9a5f6-047d-47ec-a935-78cd5fae63b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020041Z:ff8633bc-7c28-4990-ab7b-2aad23713c89" + "WESTUS2:20170225T002010Z:27c9a5f6-047d-47ec-a935-78cd5fae63b7" ] }, "StatusCode": 200 @@ -184,7 +184,7 @@ ], "Names": { "ListIntegrationAccountBySubscription": [ - "IntegrationAccount6318" + "IntegrationAccount7851" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json index 9d3bfe4e9980..899b2e8a90ec 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "c6067697-5242-4a0a-b1e3-093f505821e5" + "09e811a9-549a-471a-9153-189d515664bf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785\",\r\n \"name\": \"IntegrationAccount9785\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199\",\r\n \"name\": \"IntegrationAccount2199\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:33 GMT" + "Sat, 25 Feb 2017 00:20:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:fe8d227d-bc2f-49ab-bfc5-cea002fca36e" + "westus:e03526c8-b8a7-4d0c-832b-2cd7fd02e4b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "e0abd999-a537-41f9-8b36-aa75a932db5f" + "08d41ced-3e66-4ddb-b288-dfd859b6a05e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020033Z:e0abd999-a537-41f9-8b36-aa75a932db5f" + "WESTUS2:20170225T002001Z:08d41ced-3e66-4ddb-b288-dfd859b6a05e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -74,17 +74,17 @@ "2" ], "x-ms-client-request-id": [ - "36f320d5-3e4d-4d8e-90f9-c8f1c7292886" + "bee1c07f-9932-4079-9b8a-2ff882653b21" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=ZliL4IFFJTBJo712YcXgHaWSnfhtcoazjFgpFPSX6QI\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=JlFkBXYeqaZy_gTJIDRs_6S9QLu6w9KBZGHG6VndTiI\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:33 GMT" + "Sat, 25 Feb 2017 00:20:00 GMT" ], "Pragma": [ "no-cache" @@ -109,26 +109,26 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:49e2d7d3-0833-4b9d-870e-9b4635df8131" + "westus:62c6affd-7206-4676-b3a3-8b1c5c2aadb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "c2d64a65-0c05-4b19-ac4c-4e8d394b3c2a" + "a86e4d4d-c8e4-4b58-8a2a-09bb47fe76f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020033Z:c2d64a65-0c05-4b19-ac4c-4e8d394b3c2a" + "WESTUS2:20170225T002001Z:a86e4d4d-c8e4-4b58-8a2a-09bb47fe76f7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -139,17 +139,17 @@ "2" ], "x-ms-client-request-id": [ - "0a092b4f-4f9b-46d9-886e-1b77bd33add7" + "8840e157-5c1f-46bf-bc47-f704947e92d1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=ZliL4IFFJTBJo712YcXgHaWSnfhtcoazjFgpFPSX6QI\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=JlFkBXYeqaZy_gTJIDRs_6S9QLu6w9KBZGHG6VndTiI\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -161,7 +161,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:33 GMT" + "Sat, 25 Feb 2017 00:20:00 GMT" ], "Pragma": [ "no-cache" @@ -174,28 +174,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:77738141-f2af-4a41-a396-c28fda394caa" + "westus:cba81a70-3bfb-41b1-ad21-1203451b5efa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "05fb078b-8583-41f3-bf69-a1e0562cec38" + "4c59a03f-b3e6-4904-863f-bdeeb5093729" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020033Z:05fb078b-8583-41f3-bf69-a1e0562cec38" + "WESTUS2:20170225T002001Z:4c59a03f-b3e6-4904-863f-bdeeb5093729" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"notAfter\": \"2017-02-20T08:00:00Z\",\r\n \"keyType\": \"Primary\"\r\n}", + "RequestBody": "{\r\n \"notAfter\": \"2017-03-06T08:00:00Z\",\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -204,17 +204,17 @@ "67" ], "x-ms-client-request-id": [ - "aa4c8720-018e-4084-8926-64f778ca92e6" + "bfa8ca02-0428-400f-af3f-90ab5190de1d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&se=2017-02-20T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=vLeve_PiBqsb_3xWC5ZnNOmPrO_uHgdzmEdnJ0q_wJw\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&se=2017-03-06T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=fg0ThOiuUsFf8oytfcFiHw6Tfv0ATZ59wQfAjQOJITw\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +226,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:33 GMT" + "Sat, 25 Feb 2017 00:20:00 GMT" ], "Pragma": [ "no-cache" @@ -239,26 +239,26 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f5e5ca40-dc29-4226-88bb-b51964e63bf3" + "westus:c66de77c-bd1d-4dae-9c8b-8c16c6d5c1a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "285f26f7-b0cd-45da-8656-a0a7d1dcaff9" + "832f1ce6-6fc8-4574-8125-0264bcd51f0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020033Z:285f26f7-b0cd-45da-8656-a0a7d1dcaff9" + "WESTUS2:20170225T002001Z:832f1ce6-6fc8-4574-8125-0264bcd51f0d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -269,17 +269,17 @@ "28" ], "x-ms-client-request-id": [ - "a7a316c4-87c0-43c4-bc3c-780f21e995a6" + "117557ca-b584-4c8d-96e1-064e1357e7bd" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=ZliL4IFFJTBJo712YcXgHaWSnfhtcoazjFgpFPSX6QI\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=JlFkBXYeqaZy_gTJIDRs_6S9QLu6w9KBZGHG6VndTiI\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -291,7 +291,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:33 GMT" + "Sat, 25 Feb 2017 00:20:00 GMT" ], "Pragma": [ "no-cache" @@ -304,28 +304,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4fe7a84b-8148-4796-830f-60cad4e00c49" + "westus:019dad6d-7238-4e7b-bf41-0bec8bdab6d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "895d33d5-4920-45d2-82bf-2b6d4fb59aa0" + "21890549-6fd9-4bee-a789-353a7f42efc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020034Z:895d33d5-4920-45d2-82bf-2b6d4fb59aa0" + "WESTUS2:20170225T002001Z:21890549-6fd9-4bee-a789-353a7f42efc9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"notAfter\": \"2017-02-20T08:00:00Z\"\r\n}", + "RequestBody": "{\r\n \"notAfter\": \"2017-03-06T08:00:00Z\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -334,17 +334,17 @@ "42" ], "x-ms-client-request-id": [ - "104488de-b201-4c92-9be7-f5c0570326c1" + "4dfb84ad-2591-4d75-8d91-90232cb42e8c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&se=2017-02-20T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=vLeve_PiBqsb_3xWC5ZnNOmPrO_uHgdzmEdnJ0q_wJw\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&se=2017-03-06T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=fg0ThOiuUsFf8oytfcFiHw6Tfv0ATZ59wQfAjQOJITw\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -356,7 +356,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:33 GMT" + "Sat, 25 Feb 2017 00:20:01 GMT" ], "Pragma": [ "no-cache" @@ -369,38 +369,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:c46d9fba-97ab-4cc1-961b-dec4d228abec" + "westus:8a3d60cc-ef99-4dbe-b92c-190cb2393e89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1194" ], "x-ms-correlation-request-id": [ - "b5f473a3-26d5-42d5-8f95-f0147e9214b8" + "b1eaacc8-0d2f-49af-9bd2-1d6c1094c031" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020034Z:b5f473a3-26d5-42d5-8f95-f0147e9214b8" + "WESTUS2:20170225T002001Z:b1eaacc8-0d2f-49af-9bd2-1d6c1094c031" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3f28cec-6a80-4b1d-b8fb-082fc10a0974" + "be529ec9-1408-4b85-b933-b507072587f0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -415,25 +415,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:33 GMT" + "Sat, 25 Feb 2017 00:20:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b365775f-6867-4ed1-99f3-aa9d83be96d0" + "westus:54dc456b-4ca0-4fee-8dbb-c0e36029e33b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1193" ], "x-ms-correlation-request-id": [ - "e71f3a2b-3cef-4ff1-84a8-1af9155325c0" + "4a125005-dffa-405d-afe7-f7699f053d41" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020034Z:e71f3a2b-3cef-4ff1-84a8-1af9155325c0" + "WESTUS2:20170225T002002Z:4a125005-dffa-405d-afe7-f7699f053d41" ] }, "StatusCode": 200 @@ -441,7 +441,7 @@ ], "Names": { "ListIntegrationAccountCallbackUrl": [ - "IntegrationAccount9785" + "IntegrationAccount2199" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json index c4dc07ab6c99..f49c84860354 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "23246d35-fa8e-461e-ac50-35678e13e2b6" + "fc752c47-25cc-46c1-9afd-13ea3256d25b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811\",\r\n \"name\": \"IntegrationAccount9811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311\",\r\n \"name\": \"IntegrationAccount4311\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:50 GMT" + "Sat, 25 Feb 2017 00:20:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4d4a892d-5d85-4902-b3f5-1065872d14f5" + "westus:25286b6b-94b7-4bc9-b223-45422d4bbfa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-correlation-request-id": [ - "2b5e64f5-ad88-41de-a294-a463fd3780f2" + "6e98fced-4c47-47a5-ad37-887bbaaf6115" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020050Z:2b5e64f5-ad88-41de-a294-a463fd3780f2" + "WESTUS2:20170225T002019Z:6e98fced-4c47-47a5-ad37-887bbaaf6115" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount9811\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount4311\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "74" ], "x-ms-client-request-id": [ - "2b8af1ea-e098-4fc9-8d53-43962ac43c60" + "a889a97d-9886-4010-86d0-18e41745ca30" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811\",\r\n \"name\": \"IntegrationAccount9811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount9811\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311\",\r\n \"name\": \"IntegrationAccount4311\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount4311\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:51 GMT" + "Sat, 25 Feb 2017 00:20:19 GMT" ], "Pragma": [ "no-cache" @@ -109,38 +109,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:95b46f7d-1d8c-435b-ab23-b82ddc417c1c" + "westus:52c3145c-2e4f-481a-903c-055c97bc1512" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-correlation-request-id": [ - "10318b88-ab54-4a8a-8383-9f34ce0f5201" + "74480bf9-68a3-4d32-b64f-813ee3ea168f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020051Z:10318b88-ab54-4a8a-8383-9f34ce0f5201" + "WESTUS2:20170225T002020Z:74480bf9-68a3-4d32-b64f-813ee3ea168f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a030cc0a-d5f7-4e78-972b-297e2c3af502" + "c080af2d-60e8-4618-9d0c-8fe43236e1d7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -155,25 +155,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:51 GMT" + "Sat, 25 Feb 2017 00:20:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3f3447cc-addc-4980-be8d-8530d8ba59ae" + "westus:8817b2be-8c7f-4c5b-993c-3658eccd382b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-correlation-request-id": [ - "f42c8e96-7a5d-4d1e-aa0a-d081b8aed191" + "0ce14804-ad27-43b3-90cc-8d665eb0e1fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020051Z:f42c8e96-7a5d-4d1e-aa0a-d081b8aed191" + "WESTUS2:20170225T002021Z:0ce14804-ad27-43b3-90cc-8d665eb0e1fa" ] }, "StatusCode": 200 @@ -181,7 +181,7 @@ ], "Names": { "UpdateIntegrationAccount": [ - "IntegrationAccount9811" + "IntegrationAccount4311" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json index d946622c3d9a..57bee967d32d 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "5e6ab795-daa5-43a6-8326-ec8e03a41bcc" + "1dc53d9c-bd5f-4dbb-82b0-15ff2a72cd12" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730\",\r\n \"name\": \"IntegrationAccount4730\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699\",\r\n \"name\": \"IntegrationAccount6699\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:09 GMT" + "Sat, 25 Feb 2017 00:19:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:be6302cd-2bec-4b1b-b81d-47c6afe8616c" + "westus:30d9a9fd-d1e9-47c9-a7be-9ca2b753d3b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,19 +53,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "3ff246d4-8926-47f2-8582-88698f7e29e8" + "d06df1b7-5364-4587-a28e-afd70ae925bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020009Z:3ff246d4-8926-47f2-8582-88698f7e29e8" + "WESTUS2:20170225T001953Z:d06df1b7-5364-4587-a28e-afd70ae925bb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730/schemas/IntegrationAccountSchema1938?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE5Mzg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699/schemas/IntegrationAccountSchema8125?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTgxMjU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema1938\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema1938\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema8125\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema8125\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "ec020faf-7ea1-4c5c-b656-8f9f47412210" + "34591b8f-39f8-40fe-88f9-eea0a44a7956" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu13by01.blob.core.windows.net/integrationaccounts10a94a04cfef4b71a664cc282fbdde96/3839E_XML_INTEGRATIONACCOUNTSCHEMA1938-CFF50723593248A8B94C5E5E185EEBD4?sv=2014-02-14&sr=b&sig=DTXxcGLeGU2AAuB%2FsSHx0I1oY7s%2BqsWVdWJCMhbv%2BmI%3D&se=2017-02-11T06%3A00%3A10Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B56A08DA\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:09.9828339Z\",\r\n \"changedTime\": \"2017-02-11T02:00:09.9835715Z\",\r\n \"metadata\": \"IntegrationAccountSchema1938\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730/schemas/IntegrationAccountSchema1938\",\r\n \"name\": \"IntegrationAccountSchema1938\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu29by01.blob.core.windows.net/integrationaccounts7da084f32e804fa9b90520f9c3d387aa/3839E_XML_INTEGRATIONACCOUNTSCHEMA8125-6248A47723C145439E518CE78C2DA4CC?sv=2016-05-31&sr=b&sig=VeHd%2Bk1DGvQJ%2Bo6hGPCacRipaObY0tjoST7czt6ezr0%3D&se=2017-02-25T04%3A19%3A53Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D140551B833\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:53.9858026Z\",\r\n \"changedTime\": \"2017-02-25T00:19:53.9897401Z\",\r\n \"metadata\": \"IntegrationAccountSchema8125\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699/schemas/IntegrationAccountSchema8125\",\r\n \"name\": \"IntegrationAccountSchema8125\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "954" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:09 GMT" + "Sat, 25 Feb 2017 00:19:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:453fa75a-3768-4f1e-9428-5fd7404ce4a7" + "westus:70a3391c-bbc8-449f-a049-1e559485b9d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,29 +114,29 @@ "1198" ], "x-ms-correlation-request-id": [ - "d7b7965e-c4bf-40b5-9a63-d8af78d4ee9a" + "e09aa9a5-45f6-4420-b406-2a808cb2ab59" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020009Z:d7b7965e-c4bf-40b5-9a63-d8af78d4ee9a" + "WESTUS2:20170225T001954Z:e09aa9a5-45f6-4420-b406-2a808cb2ab59" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730/schemas/IntegrationAccountSchema1938?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE5Mzg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699/schemas/IntegrationAccountSchema8125?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTgxMjU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19ee2360-0f51-4109-bbc4-b058026959bd" + "48289e56-f223-4c25-83b1-c1c226ceb503" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:10 GMT" + "Sat, 25 Feb 2017 00:19:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:90efbf25-2ce0-4d48-90bd-3d2489be245a" + "westus:55675182-2370-4e92-8936-147ef364066d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,32 +166,32 @@ "1197" ], "x-ms-correlation-request-id": [ - "1722be51-8328-48e8-986f-86f65d891e14" + "1f66c14e-d71f-4de3-821d-aa73ad886f7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020010Z:1722be51-8328-48e8-986f-86f65d891e14" + "WESTUS2:20170225T001954Z:1f66c14e-d71f-4de3-821d-aa73ad886f7a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730/schemas/IntegrationAccountSchema1938?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE5Mzg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699/schemas/IntegrationAccountSchema8125?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTgxMjU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a65774c7-9161-43ec-8b3c-68459664af31" + "e2eadd4b-7ae9-4178-85b0-5cba16933b77" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SchemaNotFound\",\r\n \"message\": \"The schema 'IntegrationAccountSchema1938' could not be found in integration account 'IntegrationAccount4730'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SchemaNotFound\",\r\n \"message\": \"The schema 'IntegrationAccountSchema8125' could not be found in integration account 'IntegrationAccount6699'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "157" @@ -206,44 +206,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:10 GMT" + "Sat, 25 Feb 2017 00:19:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2b35d412-3a11-4469-9823-046e52d2c130" + "westus:62c7bddb-7c70-414e-b042-6041a15dfcd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14616" + "14509" ], "x-ms-correlation-request-id": [ - "5b829957-0352-47dc-a417-7dcaaab32ccb" + "677a5449-e60f-4cc6-abfd-2486857cf7a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020010Z:5b829957-0352-47dc-a417-7dcaaab32ccb" + "WESTUS2:20170225T001954Z:677a5449-e60f-4cc6-abfd-2486857cf7a7" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3c717e0-a71c-4297-a924-0a0f6553f91c" + "5b0a9de8-5382-4d60-b8de-b4ad1dde3256" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -258,13 +258,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:10 GMT" + "Sat, 25 Feb 2017 00:19:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:06f75cdd-a5f3-42e1-bb87-2cda062d4d7c" + "westus:d2e71809-1f0a-4717-b8fc-96945e48a5b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -273,10 +273,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "7c0d8c0a-3831-4958-a71e-18db66f92b67" + "4432b83f-3470-40ed-9710-eb282bf42561" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020010Z:7c0d8c0a-3831-4958-a71e-18db66f92b67" + "WESTUS2:20170225T001954Z:4432b83f-3470-40ed-9710-eb282bf42561" ] }, "StatusCode": 200 @@ -284,8 +284,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountSchema": [ - "IntegrationAccount4730", - "IntegrationAccountSchema1938" + "IntegrationAccount6699", + "IntegrationAccountSchema8125" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json index b4eef5d37e26..321748ab95f7 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTgyMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "0d61ff3f-09ab-41ba-b672-156bd1d939cd" + "4bed437c-c601-4bef-9875-be6057dbf191" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820\",\r\n \"name\": \"IntegrationAccount5820\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755\",\r\n \"name\": \"IntegrationAccount755\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:59 GMT" + "Sat, 25 Feb 2017 00:19:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4aaa550f-d617-4142-a3b9-08d642980532" + "westus:0726f904-3608-4ebb-b6a2-27fe8fb911c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,41 +53,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "72e3e3cf-ab80-4d6b-b0cf-793be9c16357" + "c1e9223b-b99d-4a6c-90ce-f4f089e0bf0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T015959Z:72e3e3cf-ab80-4d6b-b0cf-793be9c16357" + "WESTUS2:20170225T001944Z:c1e9223b-b99d-4a6c-90ce-f4f089e0bf0b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820/schemas/IntegrationAccountSchema8656?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTgyMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTg2NTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755/schemas/IntegrationAccountSchema168?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU1L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hMTY4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema8656\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema8656\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema168\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema168\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8700" + "8698" ], "x-ms-client-request-id": [ - "a3da3989-ec74-479d-8848-0ef272e9625e" + "ed5f9d39-5647-4aac-af3f-87f44b4106cc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/integrationaccountsab504f345f8b4e15ba7a1104f7519eb9/3839E_XML_INTEGRATIONACCOUNTSCHEMA8656-569014A96527473BA5106F424E0BE72D?sv=2014-02-14&sr=b&sig=IywZrfm1rpPP1bma7PcFVAmb4idbFKAwsYOvxCo28BU%3D&se=2017-02-11T06%3A00%3A00Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B000BFC7\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:00.6674467Z\",\r\n \"changedTime\": \"2017-02-11T02:00:00.6677843Z\",\r\n \"metadata\": \"IntegrationAccountSchema8656\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820/schemas/IntegrationAccountSchema8656\",\r\n \"name\": \"IntegrationAccountSchema8656\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu23by01.blob.core.windows.net/integrationaccountsb1d55ee0e6f94168a2b7e29dda36d507/3839E_XML_INTEGRATIONACCOUNTSCHEMA168-B423109721094051956D6CBF67922ECD?sv=2016-05-31&sr=b&sig=9TBAJKfo2OdnQTYRletYLN95VjN9t0hjhPRTO2OaC%2F0%3D&se=2017-02-25T04%3A19%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D13FFCA1144\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:44.7255141Z\",\r\n \"changedTime\": \"2017-02-25T00:19:44.7263478Z\",\r\n \"metadata\": \"IntegrationAccountSchema168\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755/schemas/IntegrationAccountSchema168\",\r\n \"name\": \"IntegrationAccountSchema168\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "948" + "945" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:00 GMT" + "Sat, 25 Feb 2017 00:19:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e5439810-8ee0-4a6c-ad3c-029a3126a875" + "westus:66ad5f7a-19f7-4507-bce0-66bfd2526bb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,32 +114,32 @@ "1198" ], "x-ms-correlation-request-id": [ - "e0d8d119-6973-4587-96eb-83b5acddc73d" + "01467090-cdf1-4377-9890-118be41802c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020000Z:e0d8d119-6973-4587-96eb-83b5acddc73d" + "WESTUS2:20170225T001944Z:01467090-cdf1-4377-9890-118be41802c0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820/schemas/IntegrationAccountSchema8656?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTgyMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTg2NTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755/schemas/IntegrationAccountSchema168?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU1L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hMTY4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf334d60-68ac-4f37-9c0d-cf8aec23502c" + "8643e53a-1ef1-4c9b-9272-07283eafdc38" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/integrationaccountsab504f345f8b4e15ba7a1104f7519eb9/3839E_XML_INTEGRATIONACCOUNTSCHEMA8656-569014A96527473BA5106F424E0BE72D?sv=2014-02-14&sr=b&sig=IywZrfm1rpPP1bma7PcFVAmb4idbFKAwsYOvxCo28BU%3D&se=2017-02-11T06%3A00%3A00Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B000BFC7\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:00.6674467Z\",\r\n \"changedTime\": \"2017-02-11T02:00:00.6677843Z\",\r\n \"metadata\": \"IntegrationAccountSchema8656\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820/schemas/IntegrationAccountSchema8656\",\r\n \"name\": \"IntegrationAccountSchema8656\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu23by01.blob.core.windows.net/integrationaccountsb1d55ee0e6f94168a2b7e29dda36d507/3839E_XML_INTEGRATIONACCOUNTSCHEMA168-B423109721094051956D6CBF67922ECD?sv=2016-05-31&sr=b&sig=9TBAJKfo2OdnQTYRletYLN95VjN9t0hjhPRTO2OaC%2F0%3D&se=2017-02-25T04%3A19%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D13FFCA1144\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:44.7255141Z\",\r\n \"changedTime\": \"2017-02-25T00:19:44.7263478Z\",\r\n \"metadata\": \"IntegrationAccountSchema168\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755/schemas/IntegrationAccountSchema168\",\r\n \"name\": \"IntegrationAccountSchema168\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:00 GMT" + "Sat, 25 Feb 2017 00:19:44 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:70c57fbc-e323-4141-ab2c-1267572610a1" + "westus:4a235667-8d9c-4c6e-8a9e-0cfe4e92b68b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14714" ], "x-ms-correlation-request-id": [ - "67d868e1-32a7-4337-82c5-4f127ead4178" + "3653df15-9e83-49a3-815c-68a673bd2dba" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020000Z:67d868e1-32a7-4337-82c5-4f127ead4178" + "WESTUS2:20170225T001944Z:3653df15-9e83-49a3-815c-68a673bd2dba" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTgyMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0f9ee0b-554f-4d7c-9d70-911cd7bec683" + "696b5de1-5cb3-4909-b63b-fd3b30b2e37b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,13 +210,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:01 GMT" + "Sat, 25 Feb 2017 00:19:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e866097a-04ba-4823-a07c-7a86a3f810c6" + "westus:dd6144f9-e245-4ab0-b054-189d0304edab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,10 +225,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "ed6d9b27-a2dc-407d-aa63-3049ab0359ae" + "007699c7-f2c1-4323-92a1-7af4fdf783a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020001Z:ed6d9b27-a2dc-407d-aa63-3049ab0359ae" + "WESTUS2:20170225T001945Z:007699c7-f2c1-4323-92a1-7af4fdf783a8" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountSchema": [ - "IntegrationAccount5820", - "IntegrationAccountSchema8656" + "IntegrationAccount755", + "IntegrationAccountSchema168" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json index c24c3d9d1993..573d9910d360 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "5fc0f49b-f4f4-40e5-938d-19f96e58fc60" + "6cbb8dce-500a-40fc-a2d5-c19d8401fb32" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980\",\r\n \"name\": \"IntegrationAccount6980\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913\",\r\n \"name\": \"IntegrationAccount5913\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:03 GMT" + "Sat, 25 Feb 2017 00:19:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:77207c1c-787f-476d-a188-3e02ccebd8d1" + "westus:93e3021d-70d8-4b77-83d0-ecad50b3b7cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "80c5966d-85e7-4536-bd9e-b12d945712fe" + "5e574332-c189-4f78-b35c-b223239d3e8c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020004Z:80c5966d-85e7-4536-bd9e-b12d945712fe" + "WESTUS2:20170225T001948Z:5e574332-c189-4f78-b35c-b223239d3e8c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980/schemas/IntegrationAccountSchema1829?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk4MC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE4Mjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913/schemas/IntegrationAccountSchema9621?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTkxMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTk2MjE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema1829\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema1829\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema9621\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema9621\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "f7d5c9cf-5870-4644-a550-30fe82dabc41" + "a25bebe0-8075-4eba-8cae-240241e0b461" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu14by01.blob.core.windows.net/integrationaccounts68e5b5f525204eed83431fa6e718d0e5/3839E_XML_INTEGRATIONACCOUNTSCHEMA1829-92A70373D3B144EFAAB70B9157CC5D32?sv=2014-02-14&sr=b&sig=vwoYvn52nx66UETWMcbAQxSbWzLsE%2FF7rQZZLYs63dU%3D&se=2017-02-11T06%3A00%3A04Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B2382DDB\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:04.6281857Z\",\r\n \"changedTime\": \"2017-02-11T02:00:04.628661Z\",\r\n \"metadata\": \"IntegrationAccountSchema1829\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980/schemas/IntegrationAccountSchema1829\",\r\n \"name\": \"IntegrationAccountSchema1829\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu31by01.blob.core.windows.net/integrationaccountseab76f2d173f4cdf979ecafdc390913b/3839E_XML_INTEGRATIONACCOUNTSCHEMA9621-CF0B4F009C84465E89984197459E80DA?sv=2016-05-31&sr=b&sig=o9NPChOQ86vtJ0dLoccTCnAdrLQouG54SQQU5VMEB9M%3D&se=2017-02-25T04%3A19%3A49Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D14026DF92B\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:49.2437039Z\",\r\n \"changedTime\": \"2017-02-25T00:19:49.2481481Z\",\r\n \"metadata\": \"IntegrationAccountSchema9621\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913/schemas/IntegrationAccountSchema9621\",\r\n \"name\": \"IntegrationAccountSchema9621\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "949" + "948" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:03 GMT" + "Sat, 25 Feb 2017 00:19:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8d4f4591-0bf7-46a2-9b56-19a17f048993" + "westus:b524d4f9-43f8-420a-9e35-827347302b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "f7f77fd2-df8f-4bfa-b8fe-4ef95f91209a" + "5a42e67f-fcb0-4146-af9f-9b3afa603cc4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020004Z:f7f77fd2-df8f-4bfa-b8fe-4ef95f91209a" + "WESTUS2:20170225T001949Z:5a42e67f-fcb0-4146-af9f-9b3afa603cc4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980/schemas/IntegrationAccountSchema1829?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk4MC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE4Mjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913/schemas/IntegrationAccountSchema9621?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTkxMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTk2MjE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "8564" ], "x-ms-client-request-id": [ - "ab9c8668-d44f-4fc4-b6ed-35e6acd2b733" + "0810cb23-4d57-4929-8f80-740512806477" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu14by01.blob.core.windows.net/integrationaccounts68e5b5f525204eed83431fa6e718d0e5/3839E_XML_INTEGRATIONACCOUNTSCHEMA1829-9DEC35C29A8144B68C8F13C1EF47F818?sv=2014-02-14&sr=b&sig=iLfuqMLsSkN7d8hREmjqMDE7rD4wf3nyhyIcbLj1dac%3D&se=2017-02-11T06%3A00%3A05Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B2568BF6\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:04.6281857Z\",\r\n \"changedTime\": \"2017-02-11T02:00:04.8326679Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980/schemas/IntegrationAccountSchema1829\",\r\n \"name\": \"IntegrationAccountSchema1829\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu31by01.blob.core.windows.net/integrationaccountseab76f2d173f4cdf979ecafdc390913b/3839E_XML_INTEGRATIONACCOUNTSCHEMA9621-D389860E018C489A80F541679372A445?sv=2016-05-31&sr=b&sig=Lu3nW8Huo1SmbIhHN5dCzsBWHnaS879KJR48IJ7TKDQ%3D&se=2017-02-25T04%3A19%3A49Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1402861A62\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:49.2437039Z\",\r\n \"changedTime\": \"2017-02-25T00:19:49.4388297Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913/schemas/IntegrationAccountSchema9621\",\r\n \"name\": \"IntegrationAccountSchema9621\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:04 GMT" + "Sat, 25 Feb 2017 00:19:48 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:5b84d88f-54e4-4f79-9c6f-3e5a7eab62e1" + "westus:1bb537d1-7084-4d1c-8f2a-1633a9ebe851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "1f4017b2-37bd-49ff-8b7d-f7212c4fbc93" + "aca99d20-3a1b-44a4-85a9-69fac3809090" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020005Z:1f4017b2-37bd-49ff-8b7d-f7212c4fbc93" + "WESTUS2:20170225T001949Z:aca99d20-3a1b-44a4-85a9-69fac3809090" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60f24073-41be-4d1e-805f-2f3c4f424287" + "6d0b8c8a-7f7a-4a9c-9a19-7f709528790d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:05 GMT" + "Sat, 25 Feb 2017 00:19:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9d0dcb05-1fe2-4881-9d4b-7b549f687800" + "westus:8e8d0520-056e-451d-8ff1-a8d181264dab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-correlation-request-id": [ - "be8e46eb-ad47-4bb2-82ec-76870dedeef4" + "dad8eae8-04a3-4f01-8f52-4c1e0a0219dd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T020006Z:be8e46eb-ad47-4bb2-82ec-76870dedeef4" + "WESTUS2:20170225T001950Z:dad8eae8-04a3-4f01-8f52-4c1e0a0219dd" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountSchema": [ - "IntegrationAccount6980", - "IntegrationAccountSchema1829" + "IntegrationAccount5913", + "IntegrationAccountSchema9621" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json index ba096eccace2..2eb5d6812887 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY1OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "c444c989-cf29-47e9-b970-ce3aba17c15f" + "836e88fd-4c5a-4b42-8c6d-242d752a610c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659\",\r\n \"name\": \"IntegrationAccount7659\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003\",\r\n \"name\": \"IntegrationAccount2003\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:12 GMT" + "Sat, 25 Feb 2017 00:19:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:01b5e14d-1676-44d7-8d08-0da97c9358d4" + "westus:0bd427b6-e051-40e9-98f2-e4f17e14b754" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "3d93d488-c066-484b-805d-8df53a22c3d7" + "efc64937-e91b-4220-bc27-9a3ab61d71fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020012Z:3d93d488-c066-484b-805d-8df53a22c3d7" + "WESTUS2:20170225T001957Z:efc64937-e91b-4220-bc27-9a3ab61d71fd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659/schemas/IntegrationAccountSchema6785?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY1OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTY3ODU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003/schemas/IntegrationAccountSchema7549?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAwMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTc1NDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema6785\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema6785\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema7549\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema7549\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "8700" ], "x-ms-client-request-id": [ - "0d87c291-9e6d-4d45-98a2-b85ac213371c" + "023b6277-f502-47c5-af08-251971a01cf0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu16by01.blob.core.windows.net/integrationaccounts9748c9eb8b7d4d6b8419e6a04fe99c71/3839E_XML_INTEGRATIONACCOUNTSCHEMA6785-6CD1700638404F67BE4470B04EBB7D99?sv=2014-02-14&sr=b&sig=Qk%2B10w4jMsUx2byLTjJ8%2BmQAACIiEejRABs1Ra9Gf38%3D&se=2017-02-11T06%3A00%3A13Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B7701EB0\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:13.0423551Z\",\r\n \"changedTime\": \"2017-02-11T02:00:13.0431878Z\",\r\n \"metadata\": \"IntegrationAccountSchema6785\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659/schemas/IntegrationAccountSchema6785\",\r\n \"name\": \"IntegrationAccountSchema6785\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu11by01.blob.core.windows.net/integrationaccounts0d26fedc11ea495996c542d1ba7e63ea/3839E_XML_INTEGRATIONACCOUNTSCHEMA7549-DD6824B91DB847E181CB3ECB16C44825?sv=2016-05-31&sr=b&sig=Y42HNi%2BrYpTgyacOFnx%2FLjiGnB6JFPcOlq1yUoglY9Y%3D&se=2017-02-25T04%3A19%3A57Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1407C1D73F\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:57.8077324Z\",\r\n \"changedTime\": \"2017-02-25T00:19:57.8080574Z\",\r\n \"metadata\": \"IntegrationAccountSchema7549\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003/schemas/IntegrationAccountSchema7549\",\r\n \"name\": \"IntegrationAccountSchema7549\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ "952" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:12 GMT" + "Sat, 25 Feb 2017 00:19:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7fc5bdaf-2433-4195-85cd-20939dad7027" + "westus:53ee7fb3-0903-4c22-8e61-ead275db9583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "1362cfd0-5620-4649-bc1a-6640da967106" + "8aa32b98-56bc-4e12-bf6e-038d428de756" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020012Z:1362cfd0-5620-4649-bc1a-6640da967106" + "WESTUS2:20170225T001957Z:8aa32b98-56bc-4e12-bf6e-038d428de756" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY1OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e99fde5-92f6-4841-9213-d4353e0d2feb" + "f1a19719-e2c4-4863-9aa6-09471ceb5c1d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:13 GMT" + "Sat, 25 Feb 2017 00:19:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0def6dbd-8c5e-4c19-9ecb-70ee6f67ee45" + "westus:3c4b3acb-1a01-4935-933a-cb551192adb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "e17299bb-be28-4355-a319-c5ce5fc89a76" + "1c7b5aa3-d077-4377-8b57-a84f09ee561b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020013Z:e17299bb-be28-4355-a319-c5ce5fc89a76" + "WESTUS2:20170225T001958Z:1c7b5aa3-d077-4377-8b57-a84f09ee561b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659/schemas/IntegrationAccountSchema6785?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY1OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTY3ODU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003/schemas/IntegrationAccountSchema7549?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAwMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTc1NDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d1a371c-6ebe-486e-a9e7-caf7b8be9b56" + "a6346a55-078a-4f78-a960-69969216b8b5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7659' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount2003' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:13 GMT" + "Sat, 25 Feb 2017 00:19:58 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "52f94e84-aec8-47fb-86dc-dc6e692817f4" + "c48b23d4-09f4-417e-9854-be3994240664" ], "x-ms-correlation-request-id": [ - "52f94e84-aec8-47fb-86dc-dc6e692817f4" + "c48b23d4-09f4-417e-9854-be3994240664" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020013Z:52f94e84-aec8-47fb-86dc-dc6e692817f4" + "WESTUS2:20170225T001958Z:c48b23d4-09f4-417e-9854-be3994240664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountSchemaOnAccountDeletion": [ - "IntegrationAccount7659", - "IntegrationAccountSchema6785" + "IntegrationAccount2003", + "IntegrationAccountSchema7549" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json index 3533f385567b..1577a9747be7 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjM2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "de29aaed-b5e7-4afc-902e-f71152a924e7" + "d3bd7bb0-4de1-41bd-b92c-23438d1bb283" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146\",\r\n \"name\": \"IntegrationAccount3146\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361\",\r\n \"name\": \"IntegrationAccount2361\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:55 GMT" + "Sat, 25 Feb 2017 00:19:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c209cdaa-8bea-4af6-937a-cdcf4ca5869f" + "westus:f588f02b-735b-4bed-8ae8-05f17328552e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,19 +53,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "cb379bb3-264f-4369-a401-d4a3ff0b71e3" + "836bbad5-02da-43a8-87b3-3fd716b43149" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015955Z:cb379bb3-264f-4369-a401-d4a3ff0b71e3" + "WESTUS2:20170225T001940Z:836bbad5-02da-43a8-87b3-3fd716b43149" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146/schemas/IntegrationAccountSchema3633?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE0Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTM2MzM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361/schemas/IntegrationAccountSchema6506?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjM2MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTY1MDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema3633\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema3633\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema6506\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema6506\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "d3e82512-a2a9-48fd-99b3-96ff68cddee4" + "1d6da609-7fde-4e66-9d9d-5f97dc026187" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu19by01.blob.core.windows.net/integrationaccountseb36b889717a413f84b5635b8a0ee4c1/3839E_XML_INTEGRATIONACCOUNTSCHEMA3633-5231776D09F5497EAFDFE97BBCEDF42B?sv=2014-02-14&sr=b&sig=xYkAhCcvHme3bNmpyzFIIw0cU2DVccLCuMGAKjGC55M%3D&se=2017-02-11T05%3A59%3A57Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221ADD56D31\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:57.028461Z\",\r\n \"changedTime\": \"2017-02-11T01:59:57.0287217Z\",\r\n \"metadata\": \"IntegrationAccountSchema3633\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146/schemas/IntegrationAccountSchema3633\",\r\n \"name\": \"IntegrationAccountSchema3633\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/integrationaccounts8f2db22836cf4c23b03ba9ccc291e1b6/3839E_XML_INTEGRATIONACCOUNTSCHEMA6506-58A8E4FC9BDE48A0BADB0C8FA418F64A?sv=2016-05-31&sr=b&sig=0pXl6f5mCaJ3y2n%2FDniQGUaaZgn11fM6vG1Oxwl5sV0%3D&se=2017-02-25T04%3A19%3A41Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D13FDA9231F\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:41.1712365Z\",\r\n \"changedTime\": \"2017-02-25T00:19:41.1751365Z\",\r\n \"metadata\": \"IntegrationAccountSchema6506\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361/schemas/IntegrationAccountSchema6506\",\r\n \"name\": \"IntegrationAccountSchema6506\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "947" + "950" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:56 GMT" + "Sat, 25 Feb 2017 00:19:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5efbd36b-32d9-4dc9-84aa-081e799bb592" + "westus:7002922a-6932-486b-8b5b-86e0e0cd55fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,32 +114,32 @@ "1198" ], "x-ms-correlation-request-id": [ - "2742d62c-5e54-41eb-82cb-dd0156139fdd" + "04d44f09-9cb2-4b92-87f6-21b71e5f35cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015956Z:2742d62c-5e54-41eb-82cb-dd0156139fdd" + "WESTUS2:20170225T001941Z:04d44f09-9cb2-4b92-87f6-21b71e5f35cd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146/schemas?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE0Ni9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361/schemas?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjM2MS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cf18717-2695-4be2-b651-8a56c7534996" + "ff5df392-0cf8-4393-a962-3af0a80b8799" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu19by01.blob.core.windows.net/integrationaccountseb36b889717a413f84b5635b8a0ee4c1/3839E_XML_INTEGRATIONACCOUNTSCHEMA3633-5231776D09F5497EAFDFE97BBCEDF42B?sv=2014-02-14&sr=b&sig=xYkAhCcvHme3bNmpyzFIIw0cU2DVccLCuMGAKjGC55M%3D&se=2017-02-11T05%3A59%3A57Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221ADD56D31\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:57.028461Z\",\r\n \"changedTime\": \"2017-02-11T01:59:57.0287217Z\",\r\n \"metadata\": \"IntegrationAccountSchema3633\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146/schemas/IntegrationAccountSchema3633\",\r\n \"name\": \"IntegrationAccountSchema3633\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/integrationaccounts8f2db22836cf4c23b03ba9ccc291e1b6/3839E_XML_INTEGRATIONACCOUNTSCHEMA6506-58A8E4FC9BDE48A0BADB0C8FA418F64A?sv=2016-05-31&sr=b&sig=0pXl6f5mCaJ3y2n%2FDniQGUaaZgn11fM6vG1Oxwl5sV0%3D&se=2017-02-25T04%3A19%3A41Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D13FDA9231F\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:41.1712365Z\",\r\n \"changedTime\": \"2017-02-25T00:19:41.1751365Z\",\r\n \"metadata\": \"IntegrationAccountSchema6506\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361/schemas/IntegrationAccountSchema6506\",\r\n \"name\": \"IntegrationAccountSchema6506\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:56 GMT" + "Sat, 25 Feb 2017 00:19:41 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:91a99287-e44b-4e28-8511-cdd27c36ce7c" + "westus:e8bb4204-c7cc-472f-a358-dad511eb0257" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14763" ], "x-ms-correlation-request-id": [ - "39704b0e-1b6e-4caa-acef-10b3e489ac00" + "b613e91c-3491-4886-bd19-b2ba1fb3d020" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015957Z:39704b0e-1b6e-4caa-acef-10b3e489ac00" + "WESTUS2:20170225T001941Z:b613e91c-3491-4886-bd19-b2ba1fb3d020" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjM2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50db502c-9239-45cf-a995-d767abefea55" + "2c4835f9-c959-45f2-957f-cbb8527389cc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,13 +210,13 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 01:59:57 GMT" + "Sat, 25 Feb 2017 00:19:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4ef76f30-9325-4394-aa8a-7761039c4171" + "westus:2aa93642-5ba1-44cf-9a78-a5ef56aeaf6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,10 +225,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "d1830290-4184-4a33-823a-b9b2997ad9f0" + "85ad7c01-dc57-4247-bbaf-ca75f60ce2f8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170211T015957Z:d1830290-4184-4a33-823a-b9b2997ad9f0" + "WESTUS2:20170225T001941Z:85ad7c01-dc57-4247-bbaf-ca75f60ce2f8" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountSchemas": [ - "IntegrationAccount3146", - "IntegrationAccountSchema3633" + "IntegrationAccount2361", + "IntegrationAccountSchema6506" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json index 17af83096a28..3f5d20bdd167 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "de37d3bb-5846-44fc-8459-77f404a046cb" + "e049745c-d19d-4ab0-bbe1-542bd3186dc5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096\",\r\n \"name\": \"IntegrationAccount3096\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581\",\r\n \"name\": \"IntegrationAccount6581\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,53 +38,53 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:32 GMT" + "Sat, 25 Feb 2017 00:59:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:491e2b37-5b5d-4048-b301-9074d4a13478" + "westus:7a0b8bd8-5f4b-4352-ab54-6a0709e0e2cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1174" ], "x-ms-correlation-request-id": [ - "1557cef4-0ec2-465c-bcf8-6923a6606c35" + "9a4284f9-e828-4433-b15e-0b4aa3cafbd5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005932Z:1557cef4-0ec2-465c-bcf8-6923a6606c35" + "WESTUS2:20170225T005942Z:9a4284f9-e828-4433-b15e-0b4aa3cafbd5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession6103\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4133\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "160" + "135" ], "x-ms-client-request-id": [ - "643d9e0d-5fd5-4e5c-a260-d5fa81ebd3dd" + "e9115952-c85c-492f-86b2-157404a5789e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"changedTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103\",\r\n \"name\": \"IntegrationAccountSession6103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369125553179\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:42.4688041Z\",\r\n \"changedTime\": \"2017-02-25T00:59:42.4688041Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133\",\r\n \"name\": \"IntegrationAccountSession4133\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225030087644\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,50 +99,50 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:32 GMT" + "Sat, 25 Feb 2017 00:59:41 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369125553179\"" + "\"08587136225030087644\"" ], "x-ms-request-id": [ - "westus:b725268a-1bdb-48a1-9153-9b862c3c33ef" + "westus:bd8a135f-6008-407d-a97c-959af8372707" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1173" ], "x-ms-correlation-request-id": [ - "b6e6b32f-08f2-41ae-9d6c-43a176f81110" + "54b589b0-2f32-4eda-82ed-e4229471d5bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005932Z:b6e6b32f-08f2-41ae-9d6c-43a176f81110" + "WESTUS2:20170225T005942Z:54b589b0-2f32-4eda-82ed-e4229471d5bb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8acbda36-8e73-4304-8fe4-eaa945c5c372" + "1fa0aefd-6a7d-43e7-93bd-11a5fd2f1a11" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:32.9222454Z\",\r\n \"changedTime\": \"2017-02-04T00:59:32.9228329Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103\",\r\n \"name\": \"IntegrationAccountSession6103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369125553179\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:42.4688041Z\",\r\n \"changedTime\": \"2017-02-25T00:59:42.469179Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133\",\r\n \"name\": \"IntegrationAccountSession4133\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225030087644\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:32 GMT" + "Sat, 25 Feb 2017 00:59:41 GMT" ], "Pragma": [ "no-cache" @@ -163,45 +163,100 @@ "chunked" ], "ETag": [ - "\"08587154369125553179\"" + "\"08587136225030087644\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:3e21c26d-bad9-4e29-8cac-5ab9a11f999a" + "westus:83c43d23-0213-4faa-8f29-6fa63a59341a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14484" + "14723" ], "x-ms-correlation-request-id": [ - "f0425b73-2c7e-4293-895a-efd85c5a51d6" + "ea974b03-18a2-4499-bc7c-7ce80d825462" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005933Z:f0425b73-2c7e-4293-895a-efd85c5a51d6" + "WESTUS2:20170225T005942Z:ea974b03-18a2-4499-bc7c-7ce80d825462" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096/sessions/IntegrationAccountSession6103?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjEwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4dad6231-3d02-4362-85e9-993516a59e14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SessionNotFound\",\r\n \"message\": \"The session 'IntegrationAccountSession4133' could not be found in integration account 'IntegrationAccount6581'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:59:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:cd985543-14be-4a39-a6a8-38eaf7c6e596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14722" + ], + "x-ms-correlation-request-id": [ + "a357cba5-ce43-402e-9c27-6eb65367864f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T005942Z:a357cba5-ce43-402e-9c27-6eb65367864f" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b3716fc-4a4b-4f43-bdaf-bbbc3cd57ef7" + "c53ffbd4-9e7d-44ec-b3b3-64f01aa27346" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,44 +271,96 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:33 GMT" + "Sat, 25 Feb 2017 00:59:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c8986591-10f9-4a50-9faa-fecb6a1e65ae" + "westus:f839a942-4c84-45b2-b768-0bc4b77c85f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1172" ], "x-ms-correlation-request-id": [ - "0c0fe059-a47c-4be5-bdf4-a7886882c518" + "7ae24e54-2beb-4618-ab3d-9b761c1c8d80" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005933Z:0c0fe059-a47c-4be5-bdf4-a7886882c518" + "WESTUS2:20170225T005942Z:7ae24e54-2beb-4618-ab3d-9b761c1c8d80" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3096?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzA5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67dcf3d3-4bab-4d6b-a40d-00f29ca817b3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:59:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:cf56e6bd-9542-4dbb-9dcb-22483fd1b857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-correlation-request-id": [ + "778a74a5-6eaa-4bdc-86d4-3403d75558b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T005942Z:778a74a5-6eaa-4bdc-86d4-3403d75558b2" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d4544ff-b5ea-4f25-81c5-a95852a42d1e" + "0864c0ee-026f-4631-b772-d15b74c53995" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -268,25 +375,25 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:33 GMT" + "Sat, 25 Feb 2017 00:59:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c8ac3a15-fdff-40b8-8386-cc693de94610" + "westus:921c342a-44d6-4446-9a13-f139db881037" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1170" ], "x-ms-correlation-request-id": [ - "a59b6987-bfa8-4344-983c-6ec73cb52efd" + "51f2ffda-452f-40af-bd4a-dbcc37f71e58" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005934Z:a59b6987-bfa8-4344-983c-6ec73cb52efd" + "WESTUS2:20170225T005943Z:51f2ffda-452f-40af-bd4a-dbcc37f71e58" ] }, "StatusCode": 200 @@ -294,8 +401,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountSession": [ - "IntegrationAccount3096", - "IntegrationAccountSession6103" + "IntegrationAccount6581", + "IntegrationAccountSession4133" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json index b5d649689f40..42d9089ce063 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "3838e347-ef35-4a67-9d38-7332b59b8ccc" + "c2fbd428-95fa-4856-a790-3f19ccf13a8e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553\",\r\n \"name\": \"IntegrationAccount1553\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601\",\r\n \"name\": \"IntegrationAccount7601\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,53 +38,53 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:42 GMT" + "Sat, 25 Feb 2017 00:59:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bae11aa2-6aa3-4967-94da-4890dfb6fe6a" + "westus:267d2877-17ce-4891-9f72-205ba3dc3e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1179" ], "x-ms-correlation-request-id": [ - "47cc39cc-8b06-47bb-96e2-3793cb7fc23d" + "5b907fbd-fca5-4699-b919-ccdb8f4ee484" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005943Z:47cc39cc-8b06-47bb-96e2-3793cb7fc23d" + "WESTUS2:20170225T005947Z:5b907fbd-fca5-4699-b919-ccdb8f4ee484" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjYwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601/sessions/IntegrationAccountSession7913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession2609\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7913\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "160" + "135" ], "x-ms-client-request-id": [ - "78ec31b9-f82b-405a-96fa-f9ac0feace81" + "e843cecb-517d-4f0b-a814-68272dc27e57" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"changedTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609\",\r\n \"name\": \"IntegrationAccountSession2609\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369018295253\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:47.5522177Z\",\r\n \"changedTime\": \"2017-02-25T00:59:47.5522177Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601/sessions/IntegrationAccountSession7913\",\r\n \"name\": \"IntegrationAccountSession7913\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136224979253457\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,50 +99,50 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:43 GMT" + "Sat, 25 Feb 2017 00:59:47 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369018295253\"" + "\"08587136224979253457\"" ], "x-ms-request-id": [ - "westus:9feb7d57-8057-4dfc-9632-094c50efba08" + "westus:09439da6-e51e-4829-bc6c-343d3e5ecd72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1178" ], "x-ms-correlation-request-id": [ - "131270ab-2447-4e5a-bcdc-d25a4405ca29" + "64c56921-05bc-4f09-bd46-263b8dd26b1b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005943Z:131270ab-2447-4e5a-bcdc-d25a4405ca29" + "WESTUS2:20170225T005947Z:64c56921-05bc-4f09-bd46-263b8dd26b1b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjYwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601/sessions/IntegrationAccountSession7913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "997f9489-3214-45ad-943c-51e530f44d18" + "7f0b32ab-a263-453b-ab8b-0779f968c583" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:43.6480361Z\",\r\n \"changedTime\": \"2017-02-04T00:59:43.6489887Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553/sessions/IntegrationAccountSession2609\",\r\n \"name\": \"IntegrationAccountSession2609\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369018295253\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:47.5522177Z\",\r\n \"changedTime\": \"2017-02-25T00:59:47.5524709Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601/sessions/IntegrationAccountSession7913\",\r\n \"name\": \"IntegrationAccountSession7913\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136224979253457\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:43 GMT" + "Sat, 25 Feb 2017 00:59:47 GMT" ], "Pragma": [ "no-cache" @@ -163,45 +163,45 @@ "chunked" ], "ETag": [ - "\"08587154369018295253\"" + "\"08587136224979253457\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4c1df659-05b2-4e02-b799-7d44a649d373" + "westus:43667bdc-3199-4ad4-bbf7-94e4bf8756c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" + "14496" ], "x-ms-correlation-request-id": [ - "a0f9e2e0-515c-48a9-ae61-dde8892576b6" + "24516f1f-000a-43be-8048-36866d5d874f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005943Z:a0f9e2e0-515c-48a9-ae61-dde8892576b6" + "WESTUS2:20170225T005947Z:24516f1f-000a-43be-8048-36866d5d874f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1553?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b366a17d-89cb-4123-b553-e2c8ebce7d24" + "4a785eb8-1ab5-4525-8748-f9cc90935760" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:44 GMT" + "Sat, 25 Feb 2017 00:59:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:262d3e9e-d856-432b-8d20-b79fbc89e3ef" + "westus:504862c6-7f72-4c30-969a-71f68b8d4ebe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1177" ], "x-ms-correlation-request-id": [ - "1435119a-b2dc-44d7-ba15-fbd58a32e7de" + "9449f0af-3b02-4a8d-9ba9-8c410561aa9a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005944Z:1435119a-b2dc-44d7-ba15-fbd58a32e7de" + "WESTUS2:20170225T005948Z:9449f0af-3b02-4a8d-9ba9-8c410561aa9a" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndGetIntegrationAccountSession": [ - "IntegrationAccount1553", - "IntegrationAccountSession2609" + "IntegrationAccount7601", + "IntegrationAccountSession7913" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json index 61e20eab8974..5084ea495a0f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjczOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "06b9f859-4cb9-4af4-86ce-a92e66965c52" + "9c2a691d-970a-4cd6-bf21-59f94b371476" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234\",\r\n \"name\": \"IntegrationAccount9234\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738\",\r\n \"name\": \"IntegrationAccount2738\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,56 +38,56 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:23 GMT" + "Sat, 25 Feb 2017 00:59:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4183ecf4-e3de-4df8-9d37-1ec78bd09fa6" + "westus:7cc51f40-e652-4479-be14-bf6e7244056b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-correlation-request-id": [ - "88d3fe8f-2d7c-4b54-8c3c-783243fd9ccf" + "cd060d05-3bc2-4894-9168-fad453ca57b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005923Z:88d3fe8f-2d7c-4b54-8c3c-783243fd9ccf" + "WESTUS2:20170225T005936Z:cd060d05-3bc2-4894-9168-fad453ca57b4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODc4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738/sessions/IntegrationAccountSession1253?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjczOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTI1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession878\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1253\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "159" + "135" ], "x-ms-client-request-id": [ - "1aef32bf-0e01-4abf-a29f-2a3cf88ffa86" + "54ea60c5-768a-4dac-80d3-56ea1f63e8c9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"changedTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878\",\r\n \"name\": \"IntegrationAccountSession878\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369213813625\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:36.9859595Z\",\r\n \"changedTime\": \"2017-02-25T00:59:36.9859595Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738/sessions/IntegrationAccountSession1253\",\r\n \"name\": \"IntegrationAccountSession1253\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225084916088\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "436" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,56 +99,56 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:23 GMT" + "Sat, 25 Feb 2017 00:59:37 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369213813625\"" + "\"08587136225084916088\"" ], "x-ms-request-id": [ - "westus:5c52358c-accc-4ace-8178-f73ff0a10385" + "westus:299d52e6-49f0-41d9-99f2-6ece1fc53ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1188" ], "x-ms-correlation-request-id": [ - "cf9fe858-8dbb-47e5-8dbe-ad84af78abe4" + "ec66526b-f689-4b0d-b673-9b9d348f7ac4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005924Z:cf9fe858-8dbb-47e5-8dbe-ad84af78abe4" + "WESTUS2:20170225T005937Z:ec66526b-f689-4b0d-b673-9b9d348f7ac4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODc4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738/sessions/IntegrationAccountSession1253?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjczOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTI1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession878\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"foobar_update\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1253\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "159" + "145" ], "x-ms-client-request-id": [ - "8a2c85b9-5484-44c3-8ac9-97ee95ad6436" + "8bcc77b4-b420-41a2-a80b-51b7b09accc0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:24.0962037Z\",\r\n \"changedTime\": \"2017-02-04T00:59:24.0964532Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234/sessions/IntegrationAccountSession878\",\r\n \"name\": \"IntegrationAccountSession878\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369212374832\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:36.9859595Z\",\r\n \"changedTime\": \"2017-02-25T00:59:36.9866378Z\",\r\n \"content\": \"foobar_update\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738/sessions/IntegrationAccountSession1253\",\r\n \"name\": \"IntegrationAccountSession1253\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225084130971\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -160,7 +160,7 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:23 GMT" + "Sat, 25 Feb 2017 00:59:37 GMT" ], "Pragma": [ "no-cache" @@ -169,45 +169,45 @@ "chunked" ], "ETag": [ - "\"08587154369212374832\"" + "\"08587136225084130971\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:30f5d553-6922-456c-993e-8af8aa55f371" + "westus:95984bd2-d11a-46e7-9fc6-bb2fce27636a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1187" ], "x-ms-correlation-request-id": [ - "5b99a118-f5c4-4416-810a-997b80458a78" + "f03f7688-3499-458f-97fa-8e132e385f1f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005924Z:5b99a118-f5c4-4416-810a-997b80458a78" + "WESTUS2:20170225T005937Z:f03f7688-3499-458f-97fa-8e132e385f1f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9234?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjczOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b9608f9-07d6-4d8d-b733-6ef138764b99" + "0faf4e33-4e49-452d-99c7-cd0d4b6e3b30" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -222,25 +222,25 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:24 GMT" + "Sat, 25 Feb 2017 00:59:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ccf29047-6d93-4036-b65b-5db82bbf9347" + "westus:aac32fec-0e8e-44a1-b233-ac2505fabaff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1186" ], "x-ms-correlation-request-id": [ - "36dedb84-6c4c-4323-b801-902e181e4593" + "58310fa1-845d-453d-bdb6-b932a2f4b54d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005925Z:36dedb84-6c4c-4323-b801-902e181e4593" + "WESTUS2:20170225T005937Z:58310fa1-845d-453d-bdb6-b932a2f4b54d" ] }, "StatusCode": 200 @@ -248,8 +248,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountSession": [ - "IntegrationAccount9234", - "IntegrationAccountSession878" + "IntegrationAccount2738", + "IntegrationAccountSession1253" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json index e780d8e8eb39..9af281c593cd 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "ab06914c-be44-4aed-8886-95921c9117f2" + "cd417275-8f29-4dac-a5b6-bc0d7126e11c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128\",\r\n \"name\": \"IntegrationAccount4128\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224\",\r\n \"name\": \"IntegrationAccount9224\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:17 GMT" + "Sat, 25 Feb 2017 00:59:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6290c7ca-47a8-44d0-8d3a-3ee27032c5cd" + "westus:11056fce-b42e-4ff8-b156-40557d2cffe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1179" ], "x-ms-correlation-request-id": [ - "63ad44b9-2f08-478e-8f48-ec1dd430b825" + "53cd4a06-6074-492c-a53f-aec3bff74225" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005918Z:63ad44b9-2f08-478e-8f48-ec1dd430b825" + "WESTUS2:20170225T005933Z:53cd4a06-6074-492c-a53f-aec3bff74225" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession5697?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNTY5Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession4345?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDM0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession5697\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4345\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "160" ], "x-ms-client-request-id": [ - "32978cbe-a1eb-4579-9ac6-4a1abc4c00cc" + "100d5081-d0d1-42d3-87ad-a79a1249dd52" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.0235096Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.0235096Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession5697\",\r\n \"name\": \"IntegrationAccountSession5697\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369264540562\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:33.8703042Z\",\r\n \"changedTime\": \"2017-02-25T00:59:33.8703042Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession4345\",\r\n \"name\": \"IntegrationAccountSession4345\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225116072668\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,37 +99,37 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:18 GMT" + "Sat, 25 Feb 2017 00:59:33 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369264540562\"" + "\"08587136225116072668\"" ], "x-ms-request-id": [ - "westus:6128e791-ef85-4a19-9660-f7db3cc0d765" + "westus:ee911516-5ff3-4580-a774-584cbb2cf66f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1178" ], "x-ms-correlation-request-id": [ - "9f13d718-d56a-4f5b-8c3a-72c362816b77" + "82c35bb0-23fb-4a86-8e23-7fa1e9897ba2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005919Z:9f13d718-d56a-4f5b-8c3a-72c362816b77" + "WESTUS2:20170225T005933Z:82c35bb0-23fb-4a86-8e23-7fa1e9897ba2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession2575?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjU3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession9907?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uOTkwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession2575\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession9907\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -138,20 +138,20 @@ "160" ], "x-ms-client-request-id": [ - "b75cdaf5-3214-4bff-af13-d3a058dfce4c" + "ebf82d87-88dd-4473-beea-562be2ed8a2f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.3181315Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.3181315Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession2575\",\r\n \"name\": \"IntegrationAccountSession2575\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369261594325\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:33.95043Z\",\r\n \"changedTime\": \"2017-02-25T00:59:33.95043Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession9907\",\r\n \"name\": \"IntegrationAccountSession9907\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225115271411\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "438" + "434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,37 +163,37 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:18 GMT" + "Sat, 25 Feb 2017 00:59:33 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369261594325\"" + "\"08587136225115271411\"" ], "x-ms-request-id": [ - "westus:cd1539ab-eddc-4a65-9c0a-288387a84ad9" + "westus:cf1b6f03-237c-4475-a697-c48ccc791ba9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1177" ], "x-ms-correlation-request-id": [ - "9b7516cb-0454-4c5e-ba74-0b3dd224c73d" + "ef882dd8-ac37-49a8-8484-bcb3267f7871" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005919Z:9b7516cb-0454-4c5e-ba74-0b3dd224c73d" + "WESTUS2:20170225T005933Z:ef882dd8-ac37-49a8-8484-bcb3267f7871" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession8047?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODA0Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession4571?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDU3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession8047\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4571\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -202,20 +202,20 @@ "160" ], "x-ms-client-request-id": [ - "7fab120b-1e26-45cc-9868-1402e62568cc" + "8ed6b081-9920-498d-9f47-d187d6609aeb" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:19.499283Z\",\r\n \"changedTime\": \"2017-02-04T00:59:19.499283Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128/sessions/IntegrationAccountSession8047\",\r\n \"name\": \"IntegrationAccountSession8047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369259782850\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:34.0477317Z\",\r\n \"changedTime\": \"2017-02-25T00:59:34.0477317Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession4571\",\r\n \"name\": \"IntegrationAccountSession4571\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225114298391\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "436" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -227,47 +227,47 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:19 GMT" + "Sat, 25 Feb 2017 00:59:33 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369259782850\"" + "\"08587136225114298391\"" ], "x-ms-request-id": [ - "westus:11db73c7-f5ed-4760-b1c1-2fc298328650" + "westus:0ebe3452-676e-4480-9271-20c436bf2a9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1176" ], "x-ms-correlation-request-id": [ - "1020b696-bdee-419e-8de2-9c34b33c8ac9" + "e4901171-e693-4cf2-9708-174b47b83202" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005919Z:1020b696-bdee-419e-8de2-9c34b33c8ac9" + "WESTUS2:20170225T005934Z:e4901171-e693-4cf2-9708-174b47b83202" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4128?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEyOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd475ab1-62e2-4c0a-be8a-37d13641419e" + "c8f06308-ffb4-4d72-b317-3ccb1cfdaa3a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -282,25 +282,25 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:20 GMT" + "Sat, 25 Feb 2017 00:59:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9a57beec-0c9f-44a3-b1f9-4429dc2bf325" + "westus:1c386b8f-519a-4e6d-a336-6e59bc58975e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1175" ], "x-ms-correlation-request-id": [ - "6fefd431-5e03-4331-87ca-73b9b4fac1b5" + "521a74f2-8ea9-475b-a981-6c526edee824" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005920Z:6fefd431-5e03-4331-87ca-73b9b4fac1b5" + "WESTUS2:20170225T005934Z:521a74f2-8ea9-475b-a981-6c526edee824" ] }, "StatusCode": 200 @@ -308,10 +308,10 @@ ], "Names": { "CreateIntegrationAccountSessionUsingFile": [ - "IntegrationAccount4128", - "IntegrationAccountSession5697", - "IntegrationAccountSession8047", - "IntegrationAccountSession2575" + "IntegrationAccount9224", + "IntegrationAccountSession4345", + "IntegrationAccountSession4571", + "IntegrationAccountSession9907" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json index 72ae4fdf9eae..833abbafb541 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "d9ea285b-6ad4-4b0d-ab19-06b0074291dc" + "311fc1da-1658-4d5a-abae-112bf3cf09ac" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811\",\r\n \"name\": \"IntegrationAccount9811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685\",\r\n \"name\": \"IntegrationAccount3685\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,53 +38,53 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:27 GMT" + "Sat, 25 Feb 2017 00:59:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:67ec0660-dd5a-4c25-98d7-b04bf09330eb" + "westus:852d59c0-f54b-4ec4-af3a-2d52b9fb33ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1182" ], "x-ms-correlation-request-id": [ - "2d2ad241-a629-4341-8da4-a3bf6c0f2a9f" + "c10c26b9-4483-4851-9c53-87af919a4953" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005928Z:2d2ad241-a629-4341-8da4-a3bf6c0f2a9f" + "WESTUS2:20170225T005939Z:c10c26b9-4483-4851-9c53-87af919a4953" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTY5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685/sessions/IntegrationAccountSession7201?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzY4NS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzIwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1692\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7201\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "160" + "135" ], "x-ms-client-request-id": [ - "e5f960a9-5bc2-47a9-8f7e-57a2b060760d" + "84e7d073-d499-4cc4-81c5-ed7820b985f5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:28.4608095Z\",\r\n \"changedTime\": \"2017-02-04T00:59:28.4608095Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692\",\r\n \"name\": \"IntegrationAccountSession1692\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369170167581\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:40.3854014Z\",\r\n \"changedTime\": \"2017-02-25T00:59:40.3854014Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685/sessions/IntegrationAccountSession7201\",\r\n \"name\": \"IntegrationAccountSession7201\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225050921625\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:27 GMT" + "Sat, 25 Feb 2017 00:59:39 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369170167581\"" + "\"08587136225050921625\"" ], "x-ms-request-id": [ - "westus:b4231fd2-a11f-4c5a-9acf-d160d933f354" + "westus:604f7aba-0c3d-4c33-8a5f-9b41270ce1bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1181" ], "x-ms-correlation-request-id": [ - "c03d9014-4c7e-4910-a438-6fa528c62af2" + "d2473c51-d65b-428b-b6ff-ae4c47bd52de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005928Z:c03d9014-4c7e-4910-a438-6fa528c62af2" + "WESTUS2:20170225T005940Z:d2473c51-d65b-428b-b6ff-ae4c47bd52de" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fafe0e6-4c7d-42b8-a8fb-9b8f5a7c762a" + "96ce80b8-737d-46c7-902c-fee0b27bf172" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -154,47 +154,47 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:28 GMT" + "Sat, 25 Feb 2017 00:59:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6f692466-f9be-4f2e-a426-b956c2a49b65" + "westus:6669127c-5784-4a7b-8e78-f2773b39be72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1180" ], "x-ms-correlation-request-id": [ - "cc08c729-6dca-401b-961e-09e45d3ed46c" + "e2d36a88-20d3-42a6-872a-868bbd7590b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005929Z:cc08c729-6dca-401b-961e-09e45d3ed46c" + "WESTUS2:20170225T005941Z:e2d36a88-20d3-42a6-872a-868bbd7590b3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811/sessions/IntegrationAccountSession1692?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTY5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685/sessions/IntegrationAccountSession7201?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzY4NS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzIwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f9d20eb-a92b-4499-8c72-7bef83ad9af6" + "fcfc717c-d9d3-433b-be54-349d6c582449" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount9811' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount3685' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -209,7 +209,7 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:28 GMT" + "Sat, 25 Feb 2017 00:59:40 GMT" ], "Pragma": [ "no-cache" @@ -218,13 +218,13 @@ "gateway" ], "x-ms-request-id": [ - "8a3e00f6-a517-44c0-83ea-987905f72d30" + "266a954d-f32c-4a1a-8ea3-fedf5a2cdf59" ], "x-ms-correlation-request-id": [ - "8a3e00f6-a517-44c0-83ea-987905f72d30" + "266a954d-f32c-4a1a-8ea3-fedf5a2cdf59" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005929Z:8a3e00f6-a517-44c0-83ea-987905f72d30" + "WESTUS2:20170225T005941Z:266a954d-f32c-4a1a-8ea3-fedf5a2cdf59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,8 +235,8 @@ ], "Names": { "DeleteIntegrationAccountSessionOnAccountDeletion": [ - "IntegrationAccount9811", - "IntegrationAccountSession1692" + "IntegrationAccount3685", + "IntegrationAccountSession7201" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json index d88c0351e616..7983bebcbe9b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "581dee73-31d7-4079-8915-a140acca0e72" + "e8e0f3f8-51bc-4e63-ae31-46feff3f88ab" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705\",\r\n \"name\": \"IntegrationAccount8705\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472\",\r\n \"name\": \"IntegrationAccount6472\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,53 +38,53 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:37 GMT" + "Sat, 25 Feb 2017 00:59:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ca6625fd-a24d-4b7b-9fc7-f01fb7172f52" + "westus:07da4c72-8e2c-42fd-b4e8-084a7648e5da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1185" ], "x-ms-correlation-request-id": [ - "e14f6c9f-a6f3-49af-9307-b28def33b960" + "100a6f29-f2e7-44b7-8c55-873dac9c122a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005938Z:e14f6c9f-a6f3-49af-9307-b28def33b960" + "WESTUS2:20170225T005945Z:100a6f29-f2e7-44b7-8c55-873dac9c122a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDY3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession5635?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mi9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNTYzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4671\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession5635\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "160" + "135" ], "x-ms-client-request-id": [ - "922f709a-c8fa-480c-b5fa-88198694bdd9" + "d7b709d8-88a3-44ac-b014-861df1380393" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671\",\r\n \"name\": \"IntegrationAccountSession4671\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369061609122\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.2061745Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.2061745Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession5635\",\r\n \"name\": \"IntegrationAccountSession5635\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225002713938\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,56 +99,56 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:38 GMT" + "Sat, 25 Feb 2017 00:59:45 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369061609122\"" + "\"08587136225002713938\"" ], "x-ms-request-id": [ - "westus:2b6b9198-b421-471e-b69b-42b2a1d2420f" + "westus:0cbae5a6-6f51-49ce-a754-1f3711b582f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1184" ], "x-ms-correlation-request-id": [ - "5bb960f5-bdf9-4b86-8cd2-fc16c29f20e2" + "19e4531a-dcca-4095-89f5-7405d98ca9b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005939Z:5bb960f5-bdf9-4b86-8cd2-fc16c29f20e2" + "WESTUS2:20170225T005945Z:19e4531a-dcca-4095-89f5-7405d98ca9b8" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDE1Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession9630?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mi9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uOTYzMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4157\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession9630\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "160" + "135" ], "x-ms-client-request-id": [ - "bc9f9e4f-d8ca-4cf9-b45a-6b627cd6c9ae" + "6b18f38d-af3e-439a-bed6-1df02b1431ce" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157\",\r\n \"name\": \"IntegrationAccountSession4157\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369059210657\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.2872257Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.2872257Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession9630\",\r\n \"name\": \"IntegrationAccountSession9630\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225001903451\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -163,59 +163,59 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:38 GMT" + "Sat, 25 Feb 2017 00:59:45 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369059210657\"" + "\"08587136225001903451\"" ], "x-ms-request-id": [ - "westus:1b733c38-4a83-4f94-a588-0693695cf3c1" + "westus:f24c64f4-6e4f-482c-8d9d-41e03fe59fef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1183" ], "x-ms-correlation-request-id": [ - "4a8459fa-321a-491d-a5f0-8db65f4fd113" + "ab8c94d0-ae41-49b4-b77e-b64cafc8036f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005939Z:4a8459fa-321a-491d-a5f0-8db65f4fd113" + "WESTUS2:20170225T005945Z:ab8c94d0-ae41-49b4-b77e-b64cafc8036f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMjA5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession6975?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mi9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjk3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession209\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession6975\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "159" + "135" ], "x-ms-client-request-id": [ - "2ab95fba-552c-439b-a4dd-dfca64277a76" + "bf383048-186b-427d-afa9-fe8c0bda7a14" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209\",\r\n \"name\": \"IntegrationAccountSession209\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369056787106\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.3684865Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.3684865Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession6975\",\r\n \"name\": \"IntegrationAccountSession6975\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225001090832\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "436" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -227,50 +227,50 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:38 GMT" + "Sat, 25 Feb 2017 00:59:45 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587154369056787106\"" + "\"08587136225001090832\"" ], "x-ms-request-id": [ - "westus:3387afdb-184c-4c16-8e00-a8376b1b1c0b" + "westus:fe7505b2-8871-4d26-9d0e-c2e50639fe89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1182" ], "x-ms-correlation-request-id": [ - "9e900d1f-8692-4dd1-bcd5-c2b5d43e0151" + "e97e326a-29be-43c1-911e-a8b3f94682d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005939Z:9e900d1f-8692-4dd1-bcd5-c2b5d43e0151" + "WESTUS2:20170225T005945Z:e97e326a-29be-43c1-911e-a8b3f94682d6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNS9zZXNzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mi9zZXNzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbcafb3c-fd3c-4c27-8db3-9f3519afa326" + "b412cac9-d104-4cb2-8dc9-3615392c7ade" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.7988556Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.7997906Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession209\",\r\n \"name\": \"IntegrationAccountSession209\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369056787106\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.5564984Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.5574391Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4157\",\r\n \"name\": \"IntegrationAccountSession4157\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369059210657\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-04T00:59:39.3166527Z\",\r\n \"changedTime\": \"2017-02-04T00:59:39.317272Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705/sessions/IntegrationAccountSession4671\",\r\n \"name\": \"IntegrationAccountSession4671\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587154369061609122\\\"\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.2061745Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.2067025Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession5635\",\r\n \"name\": \"IntegrationAccountSession5635\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225002713938\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.3684865Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.3687436Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession6975\",\r\n \"name\": \"IntegrationAccountSession6975\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225001090832\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.2872257Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.2879408Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession9630\",\r\n \"name\": \"IntegrationAccountSession9630\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225001903451\\\"\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -282,7 +282,7 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:39 GMT" + "Sat, 25 Feb 2017 00:59:45 GMT" ], "Pragma": [ "no-cache" @@ -295,38 +295,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:eb5489c0-e710-4761-a36c-dab186f3e535" + "westus:4d764484-a5b9-43a5-a506-1db1214afe66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14684" + "14735" ], "x-ms-correlation-request-id": [ - "227538b9-a12c-4482-8a9a-eac7721efc59" + "ac586ea1-b44c-479e-ae7d-f24c2b5a8862" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005940Z:227538b9-a12c-4482-8a9a-eac7721efc59" + "WESTUS2:20170225T005945Z:ac586ea1-b44c-479e-ae7d-f24c2b5a8862" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8705?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODcwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4582d18c-e916-480a-836f-3e64f02921c9" + "f8fa839d-f458-43e4-955c-79a21cf1419e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -341,25 +341,25 @@ "no-cache" ], "Date": [ - "Sat, 04 Feb 2017 00:59:39 GMT" + "Sat, 25 Feb 2017 00:59:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e1fec6df-a5f5-417e-8a92-c500601cfda4" + "westus:dd831734-250b-4c9f-9a1e-f5d541dfcecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1181" ], "x-ms-correlation-request-id": [ - "251c7746-1c32-4010-abb5-1639e48eac0c" + "f720314c-d45d-41b4-825d-9b4141a16cd1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170204T005940Z:251c7746-1c32-4010-abb5-1639e48eac0c" + "WESTUS2:20170225T005945Z:f720314c-d45d-41b4-825d-9b4141a16cd1" ] }, "StatusCode": 200 @@ -367,10 +367,10 @@ ], "Names": { "ListIntegrationAccountSessions": [ - "IntegrationAccount8705", - "IntegrationAccountSession4671", - "IntegrationAccountSession4157", - "IntegrationAccountSession209" + "IntegrationAccount6472", + "IntegrationAccountSession5635", + "IntegrationAccountSession9630", + "IntegrationAccountSession6975" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.ProviderOperationsTests/GetProviderOperations.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.ProviderOperationsTests/GetProviderOperations.json index 3c257b75d44f..49605ce94f9f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.ProviderOperationsTests/GetProviderOperations.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.ProviderOperationsTests/GetProviderOperations.json @@ -7,14 +7,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7338864d-e722-4c85-9b73-f18c9a2b4966" + "235ea0d1-caf9-43a0-997f-5b2ce5e883b6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Logic/locations/workflows/validate/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Validate Workflow\",\r\n \"description\": \"Validates the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Get Workflow\",\r\n \"description\": \"Reads the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Set Workflow\",\r\n \"description\": \"Creates or updates the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Delete Workflow\",\r\n \"description\": \"Deletes the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/run/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Run Workflow\",\r\n \"description\": \"Starts a run of the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/disable/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Disable Workflow\",\r\n \"description\": \"Disables the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/enable/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Enable Workflow\",\r\n \"description\": \"Enables the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/validate/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Validate Workflow\",\r\n \"description\": \"Validates the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/move/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Move Workflow\",\r\n \"description\": \"Moves Workflow from its existing subscription id, resource group, and/or name to a different subscription id, resource group, and/or name.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/listSwagger/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Get workflow swagger\",\r\n \"description\": \"Gets the workflow swagger definitions.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/versions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Version\",\r\n \"operation\": \"Get Workflow Version\",\r\n \"description\": \"Reads the workflow version.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Get Access Key\",\r\n \"description\": \"Reads the access key.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Set Access Key\",\r\n \"description\": \"Creates or updates the access key.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Delete Access Key\",\r\n \"description\": \"Deletes the access key.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/list/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"List Access Key\",\r\n \"description\": \"Lists the access key secrets.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/regenerate/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Regenerate Access Key\",\r\n \"description\": \"Regenerates the access key secrets.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/regenerateAccessKey/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Regenerate Access Key\",\r\n \"description\": \"Regenerates the access key secrets.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Trigger\",\r\n \"operation\": \"Get Trigger\",\r\n \"description\": \"Reads the trigger.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/run/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Trigger\",\r\n \"operation\": \"Trigger Run\",\r\n \"description\": \"Executes the trigger.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/histories/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Trigger Histories\",\r\n \"operation\": \"Get Trigger Histories\",\r\n \"description\": \"Reads the trigger histories.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/histories/resubmit/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Trigger Histories\",\r\n \"operation\": \"Resubmit trigger\",\r\n \"description\": \"Resubmits the workflow trigger.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Run\",\r\n \"operation\": \"Get Workflow Run\",\r\n \"description\": \"Reads the workflow run.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/cancel/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Run\",\r\n \"operation\": \"Cancel Workflow Run\",\r\n \"description\": \"Cancels the run of a workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Run Operation\",\r\n \"operation\": \"Get Workflow Run Operation Status\",\r\n \"description\": \"Reads the workflow run operation status.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/actions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Run Action\",\r\n \"operation\": \"Get Workflow Run Action\",\r\n \"description\": \"Reads the workflow run action.\"\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Diagnostic Setting\",\r\n \"operation\": \"Get Workflow Diagnostic Setting\",\r\n \"description\": \"Reads the workflow diagnostic settings.\"\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Diagnostic Setting\",\r\n \"operation\": \"Set Workflow Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow diagnostic setting.\"\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Metric Definition\",\r\n \"operation\": \"Get Workflow Metric Definition\",\r\n \"description\": \"Reads the workflow metric definitions.\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RunsStarted\",\r\n \"displayName\": \"Runs Started\",\r\n \"displayDescription\": \"Number of workflow runs started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunsCompleted\",\r\n \"displayName\": \"Runs Completed\",\r\n \"displayDescription\": \"Number of workflow runs completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunsSucceeded\",\r\n \"displayName\": \"Runs Succeeded\",\r\n \"displayDescription\": \"Number of workflow runs succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunsFailed\",\r\n \"displayName\": \"Runs Failed\",\r\n \"displayDescription\": \"Number of workflow runs failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunsCancelled\",\r\n \"displayName\": \"Runs Cancelled\",\r\n \"displayDescription\": \"Number of workflow runs cancelled.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunLatency\",\r\n \"displayName\": \"Run Latency\",\r\n \"displayDescription\": \"Latency of completed workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"RunSuccessLatency\",\r\n \"displayName\": \"Run Success Latency\",\r\n \"displayDescription\": \"Latency of succeeded workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"RunThrottledEvents\",\r\n \"displayName\": \"Run Throttled Events\",\r\n \"displayDescription\": \"Number of workflow action or trigger throttled events.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunFailurePercentage\",\r\n \"displayName\": \"Run Failure Percentage\",\r\n \"displayDescription\": \"Percentage of workflow runs failed.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsStarted\",\r\n \"displayName\": \"Actions Started \",\r\n \"displayDescription\": \"Number of workflow actions started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsCompleted\",\r\n \"displayName\": \"Actions Completed \",\r\n \"displayDescription\": \"Number of workflow actions completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsSucceeded\",\r\n \"displayName\": \"Actions Succeeded \",\r\n \"displayDescription\": \"Number of workflow actions succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsFailed\",\r\n \"displayName\": \"Actions Failed\",\r\n \"displayDescription\": \"Number of workflow actions failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsSkipped\",\r\n \"displayName\": \"Actions Skipped \",\r\n \"displayDescription\": \"Number of workflow actions skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionLatency\",\r\n \"displayName\": \"Action Latency \",\r\n \"displayDescription\": \"Latency of completed workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"ActionSuccessLatency\",\r\n \"displayName\": \"Action Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"ActionThrottledEvents\",\r\n \"displayName\": \"Action Throttled Events\",\r\n \"displayDescription\": \"Number of workflow action throttled events..\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersStarted\",\r\n \"displayName\": \"Triggers Started \",\r\n \"displayDescription\": \"Number of workflow triggers started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersCompleted\",\r\n \"displayName\": \"Triggers Completed \",\r\n \"displayDescription\": \"Number of workflow triggers completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersSucceeded\",\r\n \"displayName\": \"Triggers Succeeded \",\r\n \"displayDescription\": \"Number of workflow triggers succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersFailed\",\r\n \"displayName\": \"Triggers Failed \",\r\n \"displayDescription\": \"Number of workflow triggers failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersSkipped\",\r\n \"displayName\": \"Triggers Skipped\",\r\n \"displayDescription\": \"Number of workflow triggers skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersFired\",\r\n \"displayName\": \"Triggers Fired \",\r\n \"displayDescription\": \"Number of workflow triggers fired.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggerLatency\",\r\n \"displayName\": \"Trigger Latency \",\r\n \"displayDescription\": \"Latency of completed workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"TriggerFireLatency\",\r\n \"displayName\": \"Trigger Fire Latency \",\r\n \"displayDescription\": \"Latency of fired workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"TriggerSuccessLatency\",\r\n \"displayName\": \"Trigger Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"TriggerThrottledEvents\",\r\n \"displayName\": \"Trigger Throttled Events\",\r\n \"displayDescription\": \"Number of workflow trigger throttled events.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"BillableActionExecutions\",\r\n \"displayName\": \"Billable Action Executions\",\r\n \"displayDescription\": \"Number of workflow action executions getting billed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"BillableTriggerExecutions\",\r\n \"displayName\": \"Billable Trigger Executions\",\r\n \"displayDescription\": \"Number of workflow trigger executions getting billed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TotalBillableExecutions\",\r\n \"displayName\": \"Total Billable Executions\",\r\n \"displayDescription\": \"Number of workflow executions getting billed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Log Definition\",\r\n \"operation\": \"Get Workflow Log Definition\",\r\n \"description\": \"Reads the workflow log definitions.\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"WorkflowRuntime\",\r\n \"displayName\": \"Workflow runtime diagnostic events\",\r\n \"description\": \"Diagnostic events related to workflow runtime executions.\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/integrationAccounts/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Integration Account Log Definition\",\r\n \"operation\": \"Get Integration Account Log Definition\",\r\n \"description\": \"Reads the Integration Account log definitions.\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"IntegrationAccountTrackingEvents\",\r\n \"displayName\": \"Integration Account track events\",\r\n \"description\": \"Track events related to Integration Account.\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Sat, 11 Feb 2017 02:00:52 GMT" + "Sat, 25 Feb 2017 00:20:40 GMT" ], "Pragma": [ "no-cache" @@ -42,19 +42,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:d3953fa0-0b79-47b7-972c-c49c539ca1cf" + "westus2:3c384226-208e-4570-9d10-d29183620b47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "957b2d31-3fac-4386-b88c-1eed7459b366" + "ccea634b-a4fa-4eba-b6dd-a75049a7da9c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170211T020052Z:957b2d31-3fac-4386-b88c-1eed7459b366" + "WESTUS2:20170225T002041Z:ccea634b-a4fa-4eba-b6dd-a75049a7da9c" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/Logic/Logic.Tests/Utilities/Constants.cs b/src/ResourceManagement/Logic/Logic.Tests/Utilities/Constants.cs index b8ace6c4dd40..e24819bc9faa 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/Utilities/Constants.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/Utilities/Constants.cs @@ -74,6 +74,11 @@ internal class Constants /// public const string IntegrationAccountCertificatePrefix = "IntegrationAccountCertificate"; + /// + /// Test integration account session name prefix + /// + public const string IntegrationAccountSessionPrefix = "IntegrationAccountSession"; + #endregion Prefix } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperations.cs index 6fbfee167618..2b9d75775d69 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// AgreementsOperations operations. @@ -36,16 +34,16 @@ internal partial class AgreementsOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal AgreementsOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -80,12 +78,15 @@ internal AgreementsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -97,7 +98,7 @@ internal AgreementsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -115,46 +116,48 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -170,10 +173,10 @@ internal AgreementsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -181,7 +184,7 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -195,7 +198,7 @@ internal AgreementsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -237,7 +240,7 @@ internal AgreementsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -283,12 +286,15 @@ internal AgreementsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -304,7 +310,7 @@ internal AgreementsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "agreementName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -322,39 +328,41 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements/{agreementName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{agreementName}", Uri.EscapeDataString(agreementName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements/{agreementName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{agreementName}", System.Uri.EscapeDataString(agreementName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -370,10 +378,10 @@ internal AgreementsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -381,7 +389,7 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -395,7 +403,7 @@ internal AgreementsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -437,7 +445,7 @@ internal AgreementsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -486,12 +494,15 @@ internal AgreementsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, IntegrationAccountAgreement agreement, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -507,7 +518,7 @@ internal AgreementsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "agreementName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -534,39 +545,41 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements/{agreementName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{agreementName}", Uri.EscapeDataString(agreementName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements/{agreementName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{agreementName}", System.Uri.EscapeDataString(agreementName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -583,15 +596,15 @@ internal AgreementsOperations(LogicManagementClient client) string _requestContent = null; if(agreement != null) { - _requestContent = SafeJsonConvert.SerializeObject(agreement, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(agreement, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -599,7 +612,7 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -613,7 +626,7 @@ internal AgreementsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -655,7 +668,7 @@ internal AgreementsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -673,7 +686,7 @@ internal AgreementsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -716,12 +729,15 @@ internal AgreementsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -737,7 +753,7 @@ internal AgreementsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "agreementName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -755,39 +771,41 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements/{agreementName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{agreementName}", Uri.EscapeDataString(agreementName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/agreements/{agreementName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{agreementName}", System.Uri.EscapeDataString(agreementName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -803,10 +821,10 @@ internal AgreementsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -814,7 +832,7 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -884,6 +902,9 @@ internal AgreementsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -910,26 +931,28 @@ internal AgreementsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -945,10 +968,10 @@ internal AgreementsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -956,7 +979,7 @@ internal AgreementsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -970,7 +993,7 @@ internal AgreementsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1012,7 +1035,7 @@ internal AgreementsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1033,3 +1056,4 @@ internal AgreementsOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperationsExtensions.cs index c4a055a51106..b1a8b84e3875 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for AgreementsOperations. @@ -40,7 +39,7 @@ public static partial class AgreementsOperationsExtensions /// public static IPage ListByIntegrationAccounts(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IAgreementsOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery).GetAwaiter().GetResult(); } /// @@ -86,7 +85,7 @@ public static partial class AgreementsOperationsExtensions /// public static IntegrationAccountAgreement Get(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName) { - return Task.Factory.StartNew(s => ((IAgreementsOperations)s).GetAsync(resourceGroupName, integrationAccountName, agreementName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, integrationAccountName, agreementName).GetAwaiter().GetResult(); } /// @@ -135,7 +134,7 @@ public static IntegrationAccountAgreement Get(this IAgreementsOperations operati /// public static IntegrationAccountAgreement CreateOrUpdate(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, IntegrationAccountAgreement agreement) { - return Task.Factory.StartNew(s => ((IAgreementsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, agreementName, agreement), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, agreementName, agreement).GetAwaiter().GetResult(); } /// @@ -184,7 +183,7 @@ public static IntegrationAccountAgreement CreateOrUpdate(this IAgreementsOperati /// public static void Delete(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName) { - Task.Factory.StartNew(s => ((IAgreementsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, agreementName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, integrationAccountName, agreementName).GetAwaiter().GetResult(); } /// @@ -221,7 +220,7 @@ public static void Delete(this IAgreementsOperations operations, string resource /// public static IPage ListByIntegrationAccountsNext(this IAgreementsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IAgreementsOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -246,3 +245,4 @@ public static IPage ListByIntegrationAccountsNext(t } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperations.cs index f3dd2923e0bd..bea33f4c0e79 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperations.cs @@ -1,28 +1,26 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; using System.Net; using System.Net.Http; - using System.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; /// /// CertificatesOperations operations. @@ -35,16 +33,16 @@ internal partial class CertificatesOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal CertificatesOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -79,12 +77,15 @@ internal CertificatesOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -96,7 +97,7 @@ internal CertificatesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -114,42 +115,44 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (top != null) { - _queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(SafeJsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -165,10 +168,10 @@ internal CertificatesOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -176,7 +179,7 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -190,7 +193,7 @@ internal CertificatesOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -232,7 +235,7 @@ internal CertificatesOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -278,12 +281,15 @@ internal CertificatesOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -299,7 +305,7 @@ internal CertificatesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -317,39 +323,41 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates/{certificateName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{certificateName}", Uri.EscapeDataString(certificateName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates/{certificateName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{certificateName}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -365,10 +373,10 @@ internal CertificatesOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -376,7 +384,7 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -390,7 +398,7 @@ internal CertificatesOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -432,7 +440,7 @@ internal CertificatesOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -481,12 +489,15 @@ internal CertificatesOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string certificateName, IntegrationAccountCertificate certificate, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -502,7 +513,7 @@ internal CertificatesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -529,39 +540,41 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates/{certificateName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{certificateName}", Uri.EscapeDataString(certificateName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates/{certificateName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{certificateName}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -578,15 +591,15 @@ internal CertificatesOperations(LogicManagementClient client) string _requestContent = null; if(certificate != null) { - _requestContent = SafeJsonConvert.SerializeObject(certificate, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(certificate, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -594,7 +607,7 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -608,7 +621,7 @@ internal CertificatesOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -650,7 +663,7 @@ internal CertificatesOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -668,7 +681,7 @@ internal CertificatesOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -711,12 +724,15 @@ internal CertificatesOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -732,7 +748,7 @@ internal CertificatesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -750,39 +766,41 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates/{certificateName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{certificateName}", Uri.EscapeDataString(certificateName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/certificates/{certificateName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{certificateName}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -798,10 +816,10 @@ internal CertificatesOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -809,7 +827,7 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -879,6 +897,9 @@ internal CertificatesOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -905,26 +926,28 @@ internal CertificatesOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -940,10 +963,10 @@ internal CertificatesOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -951,7 +974,7 @@ internal CertificatesOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -965,7 +988,7 @@ internal CertificatesOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1007,7 +1030,7 @@ internal CertificatesOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1028,3 +1051,4 @@ internal CertificatesOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperationsExtensions.cs index 9016914b62dd..b908dedf888d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperationsExtensions.cs @@ -1,21 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for CertificatesOperations. @@ -39,7 +38,7 @@ public static partial class CertificatesOperationsExtensions /// public static IPage ListByIntegrationAccounts(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, int? top = default(int?)) { - return Task.Factory.StartNew(s => ((ICertificatesOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, top).GetAwaiter().GetResult(); } /// @@ -85,7 +84,7 @@ public static partial class CertificatesOperationsExtensions /// public static IntegrationAccountCertificate Get(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName) { - return Task.Factory.StartNew(s => ((ICertificatesOperations)s).GetAsync(resourceGroupName, integrationAccountName, certificateName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, integrationAccountName, certificateName).GetAwaiter().GetResult(); } /// @@ -134,7 +133,7 @@ public static IntegrationAccountCertificate Get(this ICertificatesOperations ope /// public static IntegrationAccountCertificate CreateOrUpdate(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, IntegrationAccountCertificate certificate) { - return Task.Factory.StartNew(s => ((ICertificatesOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, certificateName, certificate), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, certificateName, certificate).GetAwaiter().GetResult(); } /// @@ -183,7 +182,7 @@ public static IntegrationAccountCertificate CreateOrUpdate(this ICertificatesOpe /// public static void Delete(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName) { - Task.Factory.StartNew(s => ((ICertificatesOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, certificateName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, integrationAccountName, certificateName).GetAwaiter().GetResult(); } /// @@ -220,7 +219,7 @@ public static void Delete(this ICertificatesOperations operations, string resour /// public static IPage ListByIntegrationAccountsNext(this ICertificatesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ICertificatesOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -245,3 +244,4 @@ public static IPage ListByIntegrationAccountsNext } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IAgreementsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IAgreementsOperations.cs index 7aec05e21e3b..7ed3c61e6947 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IAgreementsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IAgreementsOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// AgreementsOperations operations. @@ -41,13 +42,13 @@ public partial interface IAgreementsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -69,13 +70,13 @@ public partial interface IAgreementsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -100,13 +101,13 @@ public partial interface IAgreementsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, IntegrationAccountAgreement agreement, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -128,10 +129,10 @@ public partial interface IAgreementsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -147,15 +148,16 @@ public partial interface IAgreementsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ICertificatesOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ICertificatesOperations.cs index 3ff858d2f5a3..69a9e8031da9 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ICertificatesOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ICertificatesOperations.cs @@ -1,21 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; /// /// CertificatesOperations operations. @@ -40,13 +41,13 @@ public partial interface ICertificatesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -68,13 +69,13 @@ public partial interface ICertificatesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -99,13 +100,13 @@ public partial interface ICertificatesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string certificateName, IntegrationAccountCertificate certificate, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -127,10 +128,10 @@ public partial interface ICertificatesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -146,15 +147,16 @@ public partial interface ICertificatesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountsOperations.cs index 7b4c6c558ef1..2a0f0a2e94b8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountsOperations.cs @@ -1,21 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; /// /// IntegrationAccountsOperations operations. @@ -34,13 +35,13 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListBySubscriptionWithHttpMessagesAsync(int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -59,13 +60,13 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -84,13 +85,13 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -112,13 +113,13 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -140,13 +141,13 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -165,10 +166,10 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -190,13 +191,13 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, GetCallbackUrlParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -212,13 +213,13 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -234,15 +235,16 @@ public partial interface IIntegrationAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs index e11b14b01334..0545cfcd7f44 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs @@ -1,32 +1,33 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; /// /// REST API for Azure Logic Apps. /// - public partial interface ILogicManagementClient : IDisposable + public partial interface ILogicManagementClient : System.IDisposable { /// /// The base URI of the service. /// - Uri BaseUri { get; set; } + System.Uri BaseUri { get; set; } /// /// Gets or sets json serialization settings. @@ -39,7 +40,7 @@ public partial interface ILogicManagementClient : IDisposable JsonSerializerSettings DeserializationSettings { get; } /// - /// Gets Azure subscription credentials. + /// Credentials needed for the client to connect to Azure. /// ServiceClientCredentials Credentials { get; } @@ -65,8 +66,8 @@ public partial interface ILogicManagementClient : IDisposable int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } @@ -136,7 +137,7 @@ public partial interface ILogicManagementClient : IDisposable /// ISessionsOperations Sessions { get; } - /// + /// /// Lists all of the available Logic REST API operations. /// /// @@ -163,3 +164,4 @@ public partial interface ILogicManagementClient : IDisposable } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IMapsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IMapsOperations.cs index 7dc91cc5db9b..36ba175159ca 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IMapsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IMapsOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// MapsOperations operations. @@ -41,13 +42,13 @@ public partial interface IMapsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -69,13 +70,13 @@ public partial interface IMapsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string mapName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -100,13 +101,13 @@ public partial interface IMapsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -128,10 +129,10 @@ public partial interface IMapsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string mapName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -147,15 +148,16 @@ public partial interface IMapsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IPartnersOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IPartnersOperations.cs index a1f93faeab0a..3fc3eb99a4ef 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IPartnersOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IPartnersOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// PartnersOperations operations. @@ -41,13 +42,13 @@ public partial interface IPartnersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -69,13 +70,13 @@ public partial interface IPartnersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string partnerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -100,13 +101,13 @@ public partial interface IPartnersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string partnerName, IntegrationAccountPartner partner, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -128,10 +129,10 @@ public partial interface IPartnersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string partnerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -147,15 +148,16 @@ public partial interface IPartnersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISchemasOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISchemasOperations.cs index 7a908e89639e..80c3330e0ab2 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISchemasOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISchemasOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// SchemasOperations operations. @@ -41,13 +42,13 @@ public partial interface ISchemasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -69,13 +70,13 @@ public partial interface ISchemasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string schemaName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -100,13 +101,13 @@ public partial interface ISchemasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -128,10 +129,10 @@ public partial interface ISchemasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string schemaName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -147,15 +148,16 @@ public partial interface ISchemasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs index 8d0b4841a553..ce7c615d3536 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// SessionsOperations operations. @@ -41,13 +42,13 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -69,16 +70,16 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates or updates an integration account session. /// @@ -100,13 +101,13 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -128,10 +129,10 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -147,15 +148,16 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowRunActionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowRunActionsOperations.cs index 45ea66d91830..1afc7392f2a4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowRunActionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowRunActionsOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowRunActionsOperations operations. @@ -44,13 +45,13 @@ public partial interface IWorkflowRunActionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -75,13 +76,13 @@ public partial interface IWorkflowRunActionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, string actionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -97,15 +98,16 @@ public partial interface IWorkflowRunActionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowRunsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowRunsOperations.cs index 815bcfeefd0e..068a8eb686e3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowRunsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowRunsOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowRunsOperations operations. @@ -41,13 +42,13 @@ public partial interface IWorkflowRunsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -69,13 +70,13 @@ public partial interface IWorkflowRunsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -97,10 +98,10 @@ public partial interface IWorkflowRunsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task CancelWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -116,15 +117,16 @@ public partial interface IWorkflowRunsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowTriggerHistoriesOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowTriggerHistoriesOperations.cs index e0ee2df683f8..5adbfdb62933 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowTriggerHistoriesOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowTriggerHistoriesOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowTriggerHistoriesOperations operations. @@ -44,13 +45,13 @@ public partial interface IWorkflowTriggerHistoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -75,13 +76,13 @@ public partial interface IWorkflowTriggerHistoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, string historyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -97,15 +98,16 @@ public partial interface IWorkflowTriggerHistoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowTriggersOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowTriggersOperations.cs index 0b9bb61544ec..2988f9b2e9cb 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowTriggersOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowTriggersOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowTriggersOperations operations. @@ -41,13 +42,13 @@ public partial interface IWorkflowTriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -69,13 +70,13 @@ public partial interface IWorkflowTriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -97,10 +98,10 @@ public partial interface IWorkflowTriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task> RunWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -122,13 +123,13 @@ public partial interface IWorkflowTriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> ListCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -144,15 +145,16 @@ public partial interface IWorkflowTriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowVersionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowVersionsOperations.cs index 7b31486d8873..fcf0e4055569 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowVersionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowVersionsOperations.cs @@ -1,21 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowVersionsOperations operations. @@ -40,13 +41,13 @@ public partial interface IWorkflowVersionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -68,13 +69,13 @@ public partial interface IWorkflowVersionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string versionId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -90,15 +91,16 @@ public partial interface IWorkflowVersionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowsOperations.cs index ea23ae685f09..1fa8bff05c92 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowsOperations.cs @@ -1,22 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using System.Collections; using System.Collections.Generic; - using System.Net.Http; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowsOperations operations. @@ -35,13 +36,13 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListBySubscriptionWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -60,13 +61,13 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -85,13 +86,13 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -113,13 +114,13 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -141,13 +142,13 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -166,10 +167,10 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -188,10 +189,10 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DisableWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -210,10 +211,10 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task EnableWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -235,13 +236,13 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GenerateUpgradedDefinitionWithHttpMessagesAsync(string resourceGroupName, string workflowName, GenerateUpgradedDefinitionParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -266,10 +267,10 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task ValidateWithHttpMessagesAsync(string resourceGroupName, string location, string workflowName, Workflow workflow, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -285,13 +286,13 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -307,15 +308,16 @@ public partial interface IWorkflowsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperations.cs index 4be21aa0da67..5e686ce2bdf6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperations.cs @@ -1,28 +1,26 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; using System.Net; using System.Net.Http; - using System.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; /// /// IntegrationAccountsOperations operations. @@ -35,16 +33,16 @@ internal partial class IntegrationAccountsOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal IntegrationAccountsOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -73,16 +71,19 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListBySubscriptionWithHttpMessagesAsync(int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -98,40 +99,42 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Logic/integrationAccounts").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Logic/integrationAccounts").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (top != null) { - _queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(SafeJsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -147,10 +150,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -158,7 +161,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -172,7 +175,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -214,7 +217,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -257,12 +260,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -270,7 +276,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -287,41 +293,43 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (top != null) { - _queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(SafeJsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -337,10 +345,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -348,7 +356,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -362,7 +370,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -404,7 +412,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -447,12 +455,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -464,7 +475,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -481,38 +492,40 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -528,10 +541,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -539,7 +552,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -553,7 +566,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -595,7 +608,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -641,12 +654,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -658,7 +674,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -684,38 +700,40 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -732,15 +750,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) string _requestContent = null; if(integrationAccount != null) { - _requestContent = SafeJsonConvert.SerializeObject(integrationAccount, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(integrationAccount, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -748,7 +766,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -762,7 +780,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -804,7 +822,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -822,7 +840,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -868,12 +886,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -885,7 +906,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -907,38 +928,40 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -955,15 +978,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) string _requestContent = null; if(integrationAccount != null) { - _requestContent = SafeJsonConvert.SerializeObject(integrationAccount, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(integrationAccount, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -971,7 +994,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -985,7 +1008,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1027,7 +1050,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1067,12 +1090,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -1084,7 +1110,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -1101,38 +1127,40 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1148,10 +1176,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1159,7 +1187,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1235,12 +1263,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, GetCallbackUrlParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -1252,7 +1283,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -1274,38 +1305,40 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "GetCallbackUrl", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/listCallbackUrl").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/listCallbackUrl").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1322,15 +1355,15 @@ internal IntegrationAccountsOperations(LogicManagementClient client) string _requestContent = null; 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"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1338,7 +1371,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1352,7 +1385,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1394,7 +1427,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1434,6 +1467,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -1460,26 +1496,28 @@ internal IntegrationAccountsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1495,10 +1533,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1506,7 +1544,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1520,7 +1558,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1562,7 +1600,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1602,6 +1640,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -1628,26 +1669,28 @@ internal IntegrationAccountsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1663,10 +1706,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1674,7 +1717,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1688,7 +1731,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1730,7 +1773,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1751,3 +1794,4 @@ internal IntegrationAccountsOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperationsExtensions.cs index 3244021eb8f5..5aea3b16a4a8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperationsExtensions.cs @@ -1,21 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for IntegrationAccountsOperations. @@ -33,7 +32,7 @@ public static partial class IntegrationAccountsOperationsExtensions /// public static IPage ListBySubscription(this IIntegrationAccountsOperations operations, int? top = default(int?)) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).ListBySubscriptionAsync(top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListBySubscriptionAsync(top).GetAwaiter().GetResult(); } /// @@ -70,7 +69,7 @@ public static partial class IntegrationAccountsOperationsExtensions /// public static IPage ListByResourceGroup(this IIntegrationAccountsOperations operations, string resourceGroupName, int? top = default(int?)) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).ListByResourceGroupAsync(resourceGroupName, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName, top).GetAwaiter().GetResult(); } /// @@ -110,7 +109,7 @@ public static partial class IntegrationAccountsOperationsExtensions /// public static IntegrationAccount Get(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).GetAsync(resourceGroupName, integrationAccountName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, integrationAccountName).GetAwaiter().GetResult(); } /// @@ -153,7 +152,7 @@ public static IntegrationAccount Get(this IIntegrationAccountsOperations operati /// public static IntegrationAccount CreateOrUpdate(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, integrationAccount), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, integrationAccount).GetAwaiter().GetResult(); } /// @@ -199,7 +198,7 @@ public static IntegrationAccount CreateOrUpdate(this IIntegrationAccountsOperati /// public static IntegrationAccount Update(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).UpdateAsync(resourceGroupName, integrationAccountName, integrationAccount), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, integrationAccountName, integrationAccount).GetAwaiter().GetResult(); } /// @@ -242,7 +241,7 @@ public static IntegrationAccount Update(this IIntegrationAccountsOperations oper /// public static void Delete(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName) { - Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, integrationAccountName).GetAwaiter().GetResult(); } /// @@ -282,7 +281,7 @@ public static void Delete(this IIntegrationAccountsOperations operations, string /// public static CallbackUrl GetCallbackUrl(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName, GetCallbackUrlParameters parameters) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).GetCallbackUrlAsync(resourceGroupName, integrationAccountName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetCallbackUrlAsync(resourceGroupName, integrationAccountName, parameters).GetAwaiter().GetResult(); } /// @@ -322,7 +321,7 @@ public static CallbackUrl GetCallbackUrl(this IIntegrationAccountsOperations ope /// public static IPage ListBySubscriptionNext(this IIntegrationAccountsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).ListBySubscriptionNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -356,7 +355,7 @@ public static IPage ListBySubscriptionNext(this IIntegration /// public static IPage ListByResourceGroupNext(this IIntegrationAccountsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -381,3 +380,4 @@ public static IPage ListByResourceGroupNext(this IIntegratio } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs index 31b6256a8a65..1fa493d66712 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Serialization; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; - using System.Diagnostics; + using System.Linq; 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; /// /// REST API for Azure Logic Apps. @@ -33,7 +31,7 @@ public partial class LogicManagementClient : ServiceClient /// The base URI of the service. /// - public Uri BaseUri { get; set; } + public System.Uri BaseUri { get; set; } /// /// Gets or sets json serialization settings. @@ -43,10 +41,10 @@ public partial class LogicManagementClient : ServiceClient /// Gets or sets json deserialization settings. /// - public JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// - /// Gets Azure subscription credentials. + /// Credentials needed for the client to connect to Azure. /// public ServiceClientCredentials Credentials { get; private set; } @@ -148,9 +146,9 @@ public partial class LogicManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected LogicManagementClient(params DelegatingHandler[] handlers) : base(handlers) + protected LogicManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -162,9 +160,9 @@ protected LogicManagementClient(params DelegatingHandler[] handlers) : base(hand /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected LogicManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected LogicManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -176,16 +174,16 @@ protected LogicManagementClient(HttpClientHandler rootHandler, params Delegating /// /// Optional. The delegating handlers to add to the http client pipeline. /// - /// + /// /// Thrown when a required parameter is null /// - protected LogicManagementClient(Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + protected LogicManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -200,40 +198,40 @@ protected LogicManagementClient(Uri baseUri, params DelegatingHandler[] handlers /// /// Optional. The delegating handlers to add to the http client pipeline. /// - /// + /// /// Thrown when a required parameter is null /// - protected LogicManagementClient(Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected LogicManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// /// Initializes a new instance of the LogicManagementClient class. /// /// - /// Required. Gets Azure subscription credentials. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - /// + /// /// Thrown when a required parameter is null /// - public LogicManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public LogicManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -241,7 +239,7 @@ public LogicManagementClient(ServiceClientCredentials credentials, params Delega /// Initializes a new instance of the LogicManagementClient class. /// /// - /// Required. Gets Azure subscription credentials. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The http client handler used to handle http transport. @@ -249,19 +247,19 @@ public LogicManagementClient(ServiceClientCredentials credentials, params Delega /// /// Optional. The delegating handlers to add to the http client pipeline. /// - /// + /// /// Thrown when a required parameter is null /// - public LogicManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + public LogicManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -272,29 +270,29 @@ public LogicManagementClient(ServiceClientCredentials credentials, HttpClientHan /// Optional. The base URI of the service. /// /// - /// Required. Gets Azure subscription credentials. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - /// + /// /// Thrown when a required parameter is null /// - public LogicManagementClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public LogicManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -305,7 +303,7 @@ public LogicManagementClient(Uri baseUri, ServiceClientCredentials credentials, /// Optional. The base URI of the service. /// /// - /// Required. Gets Azure subscription credentials. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The http client handler used to handle http transport. @@ -313,24 +311,24 @@ public LogicManagementClient(Uri baseUri, ServiceClientCredentials credentials, /// /// Optional. The delegating handlers to add to the http client pipeline. /// - /// + /// /// Thrown when a required parameter is null /// - public LogicManagementClient(Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + public LogicManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -343,24 +341,24 @@ public LogicManagementClient(Uri baseUri, ServiceClientCredentials credentials, /// private void Initialize() { - this.Workflows = new WorkflowsOperations(this); - this.WorkflowVersions = new WorkflowVersionsOperations(this); - this.WorkflowTriggers = new WorkflowTriggersOperations(this); - this.WorkflowTriggerHistories = new WorkflowTriggerHistoriesOperations(this); - this.WorkflowRuns = new WorkflowRunsOperations(this); - this.WorkflowRunActions = new WorkflowRunActionsOperations(this); - this.IntegrationAccounts = new IntegrationAccountsOperations(this); - this.Schemas = new SchemasOperations(this); - this.Maps = new MapsOperations(this); - this.Partners = new PartnersOperations(this); - this.Agreements = new AgreementsOperations(this); - this.Certificates = new CertificatesOperations(this); - this.Sessions = new SessionsOperations(this); - this.BaseUri = new Uri("https://management.azure.com"); - this.ApiVersion = "2016-06-01"; - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; + Workflows = new WorkflowsOperations(this); + WorkflowVersions = new WorkflowVersionsOperations(this); + WorkflowTriggers = new WorkflowTriggersOperations(this); + WorkflowTriggerHistories = new WorkflowTriggerHistoriesOperations(this); + WorkflowRuns = new WorkflowRunsOperations(this); + WorkflowRunActions = new WorkflowRunActionsOperations(this); + IntegrationAccounts = new IntegrationAccountsOperations(this); + Schemas = new SchemasOperations(this); + Maps = new MapsOperations(this); + Partners = new PartnersOperations(this); + Agreements = new AgreementsOperations(this); + Certificates = new CertificatesOperations(this); + Sessions = new SessionsOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2016-06-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; SerializationSettings = new JsonSerializerSettings { Formatting = Formatting.Indented, @@ -389,8 +387,8 @@ private void Initialize() }; CustomInitialize(); DeserializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } /// /// Lists all of the available Logic REST API operations. /// @@ -409,12 +407,15 @@ private void Initialize() /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListOperationsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.ApiVersion == null) + if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } @@ -429,35 +430,37 @@ private void Initialize() ServiceClientTracing.Enter(_invocationId, this, "ListOperations", tracingParameters); } // Construct URL - var _baseUrl = this.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Logic/operations").ToString(); + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Logic/operations").ToString(); List _queryParameters = new List(); - if (this.ApiVersion != null) + if (ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.GenerateClientRequestId != null && this.GenerateClientRequestId.Value) + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.AcceptLanguage != null) + if (AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -473,10 +476,10 @@ private void Initialize() // Serialize Request string _requestContent = null; // Set Credentials - if (this.Credentials != null) + if (Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -484,7 +487,7 @@ private void Initialize() ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -498,7 +501,7 @@ private void Initialize() try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.DeserializationSettings); + ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); if (_errorBody != null) { ex.Body = _errorBody; @@ -535,7 +538,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -575,6 +578,9 @@ private void Initialize() /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -601,26 +607,28 @@ private void Initialize() List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.GenerateClientRequestId != null && this.GenerateClientRequestId.Value) + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.AcceptLanguage != null) + if (AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -636,10 +644,10 @@ private void Initialize() // Serialize Request string _requestContent = null; // Set Credentials - if (this.Credentials != null) + if (Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -647,7 +655,7 @@ private void Initialize() ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -661,7 +669,7 @@ private void Initialize() try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.DeserializationSettings); + ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); if (_errorBody != null) { ex.Body = _errorBody; @@ -698,7 +706,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -719,3 +727,4 @@ private void Initialize() } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClientExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClientExtensions.cs index 63bcc5eb4556..943cef72cac7 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClientExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClientExtensions.cs @@ -1,21 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for LogicManagementClient. @@ -30,7 +29,7 @@ public static partial class LogicManagementClientExtensions /// public static IPage ListOperations(this ILogicManagementClient operations) { - return Task.Factory.StartNew(s => ((ILogicManagementClient)s).ListOperationsAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListOperationsAsync().GetAwaiter().GetResult(); } /// @@ -61,7 +60,7 @@ public static IPage ListOperations(this ILogicManagementClient operat /// public static IPage ListOperationsNext(this ILogicManagementClient operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ILogicManagementClient)s).ListOperationsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListOperationsNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -86,3 +85,4 @@ public static IPage ListOperationsNext(this ILogicManagementClient op } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperations.cs index deabf9037fa3..ca612377999d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// MapsOperations operations. @@ -36,16 +34,16 @@ internal partial class MapsOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal MapsOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -80,12 +78,15 @@ internal MapsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -97,7 +98,7 @@ internal MapsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -115,46 +116,48 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -170,10 +173,10 @@ internal MapsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -181,7 +184,7 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -195,7 +198,7 @@ internal MapsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -237,7 +240,7 @@ internal MapsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -283,12 +286,15 @@ internal MapsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string mapName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -304,7 +310,7 @@ internal MapsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "mapName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -322,39 +328,41 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{mapName}", Uri.EscapeDataString(mapName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{mapName}", System.Uri.EscapeDataString(mapName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -370,10 +378,10 @@ internal MapsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -381,7 +389,7 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -395,7 +403,7 @@ internal MapsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -437,7 +445,7 @@ internal MapsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -486,12 +494,15 @@ internal MapsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -507,7 +518,7 @@ internal MapsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "mapName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -534,39 +545,41 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{mapName}", Uri.EscapeDataString(mapName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{mapName}", System.Uri.EscapeDataString(mapName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -583,15 +596,15 @@ internal MapsOperations(LogicManagementClient client) string _requestContent = null; if(map != null) { - _requestContent = SafeJsonConvert.SerializeObject(map, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(map, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -599,7 +612,7 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -613,7 +626,7 @@ internal MapsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -655,7 +668,7 @@ internal MapsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -673,7 +686,7 @@ internal MapsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -716,12 +729,15 @@ internal MapsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string mapName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -737,7 +753,7 @@ internal MapsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "mapName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -755,39 +771,41 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{mapName}", Uri.EscapeDataString(mapName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{mapName}", System.Uri.EscapeDataString(mapName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -803,10 +821,10 @@ internal MapsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -814,7 +832,7 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -884,6 +902,9 @@ internal MapsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -910,26 +931,28 @@ internal MapsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -945,10 +968,10 @@ internal MapsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -956,7 +979,7 @@ internal MapsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -970,7 +993,7 @@ internal MapsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1012,7 +1035,7 @@ internal MapsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1033,3 +1056,4 @@ internal MapsOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperationsExtensions.cs index a5b0efb022ff..cdadf6d239dd 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for MapsOperations. @@ -40,7 +39,7 @@ public static partial class MapsOperationsExtensions /// public static IPage ListByIntegrationAccounts(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IMapsOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery).GetAwaiter().GetResult(); } /// @@ -86,7 +85,7 @@ public static partial class MapsOperationsExtensions /// public static IntegrationAccountMap Get(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName) { - return Task.Factory.StartNew(s => ((IMapsOperations)s).GetAsync(resourceGroupName, integrationAccountName, mapName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, integrationAccountName, mapName).GetAwaiter().GetResult(); } /// @@ -135,7 +134,7 @@ public static IntegrationAccountMap Get(this IMapsOperations operations, string /// public static IntegrationAccountMap CreateOrUpdate(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map) { - return Task.Factory.StartNew(s => ((IMapsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, mapName, map), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, mapName, map).GetAwaiter().GetResult(); } /// @@ -184,7 +183,7 @@ public static IntegrationAccountMap CreateOrUpdate(this IMapsOperations operatio /// public static void Delete(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName) { - Task.Factory.StartNew(s => ((IMapsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, mapName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, integrationAccountName, mapName).GetAwaiter().GetResult(); } /// @@ -221,7 +220,7 @@ public static void Delete(this IMapsOperations operations, string resourceGroupN /// public static IPage ListByIntegrationAccountsNext(this IMapsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IMapsOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -246,3 +245,4 @@ public static IPage ListByIntegrationAccountsNext(this IM } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AcknowledgementConnectionSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AcknowledgementConnectionSettings.cs index c8812cf4e9ff..c492758beecd 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AcknowledgementConnectionSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AcknowledgementConnectionSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The AS2 agreement acknowledegment connection settings. @@ -31,6 +29,14 @@ public AS2AcknowledgementConnectionSettings() { } /// Initializes a new instance of the /// AS2AcknowledgementConnectionSettings class. /// + /// The value indicating + /// whether to ignore mismatch in certificate name. + /// The value indicating + /// whether to support HTTP status code 'CONTINUE'. + /// The value indicating whether + /// to keep the connection alive. + /// The value indicating whether to + /// unfold the HTTP headers. public AS2AcknowledgementConnectionSettings(bool ignoreCertificateNameMismatch, bool supportHttpStatusCodeContinue, bool keepHttpConnectionAlive, bool unfoldHttpHeaders) { IgnoreCertificateNameMismatch = ignoreCertificateNameMismatch; @@ -70,7 +76,7 @@ public AS2AcknowledgementConnectionSettings(bool ignoreCertificateNameMismatch, /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -79,3 +85,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AgreementContent.cs index 6340d9910ae8..6c47d9589209 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AgreementContent.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account AS2 agreement content. @@ -29,6 +28,9 @@ public AS2AgreementContent() { } /// /// Initializes a new instance of the AS2AgreementContent class. /// + /// The AS2 one-way receive + /// agreement. + /// The AS2 one-way send agreement. public AS2AgreementContent(AS2OneWayAgreement receiveAgreement, AS2OneWayAgreement sendAgreement) { ReceiveAgreement = receiveAgreement; @@ -63,14 +65,15 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "SendAgreement"); } - if (this.ReceiveAgreement != null) + if (ReceiveAgreement != null) { - this.ReceiveAgreement.Validate(); + ReceiveAgreement.Validate(); } - if (this.SendAgreement != null) + if (SendAgreement != null) { - this.SendAgreement.Validate(); + SendAgreement.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2EnvelopeSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2EnvelopeSettings.cs index cc957b486278..10d6fd3ad41c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2EnvelopeSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2EnvelopeSettings.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The AS2 agreement envelope settings. @@ -29,6 +28,15 @@ public AS2EnvelopeSettings() { } /// /// Initializes a new instance of the AS2EnvelopeSettings class. /// + /// The message content type. + /// The value indicating + /// whether to transmit file name in mime header. + /// The template for file name. + /// The value + /// indicating whether to suspend message on file name generation + /// error. + /// The value indicating whether to + /// auto generate file name. public AS2EnvelopeSettings(string messageContentType, bool transmitFileNameInMimeHeader, string fileNameTemplate, bool suspendMessageOnFileNameGenerationError, bool autogenerateFileName) { MessageContentType = messageContentType; @@ -90,3 +98,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ErrorSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ErrorSettings.cs index d20edae35334..91580b0465c0 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ErrorSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ErrorSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The AS2 agreement error settings. @@ -29,6 +27,10 @@ public AS2ErrorSettings() { } /// /// Initializes a new instance of the AS2ErrorSettings class. /// + /// The value indicating whether + /// to suspend duplicate message. + /// The value indicating whether + /// to resend message If MDN is not received. public AS2ErrorSettings(bool suspendDuplicateMessage, bool resendIfMdnNotReceived) { SuspendDuplicateMessage = suspendDuplicateMessage; @@ -52,7 +54,7 @@ public AS2ErrorSettings(bool suspendDuplicateMessage, bool resendIfMdnNotReceive /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -61,3 +63,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MdnSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MdnSettings.cs index d5b6dccfde53..8fe0776a82d6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MdnSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MdnSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The AS2 agreement mdn settings. @@ -29,6 +27,23 @@ public AS2MdnSettings() { } /// /// Initializes a new instance of the AS2MdnSettings class. /// + /// The value indicating whether to send or + /// request a MDN. + /// The value indicating whether the MDN needs to + /// be signed or not. + /// The value indicating whether to + /// send the asynchronous MDN. + /// The value indicating + /// whether to sign the outbound MDN if optional. + /// The value indicating + /// whether to send inbound MDN to message box. + /// The signing or hashing algorithm. + /// Possible values include: 'NotSpecified', 'None', 'MD5', 'SHA1', + /// 'SHA2256', 'SHA2384', 'SHA2512' + /// The receipt delivery URL. + /// The disposition + /// notification to header value. + /// The MDN text. public AS2MdnSettings(bool needMdn, bool signMdn, bool sendMdnAsynchronously, bool signOutboundMdnIfOptional, bool sendInboundMdnToMessageBox, HashingAlgorithm micHashingAlgorithm, string receiptDeliveryUrl = default(string), string dispositionNotificationTo = default(string), string mdnText = default(string)) { NeedMdn = needMdn; @@ -105,7 +120,7 @@ public AS2MdnSettings() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -113,3 +128,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MessageConnectionSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MessageConnectionSettings.cs index ebc4c19daaee..c339345f83f6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MessageConnectionSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MessageConnectionSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The AS2 agreement message connection settings. @@ -31,6 +29,14 @@ public AS2MessageConnectionSettings() { } /// Initializes a new instance of the AS2MessageConnectionSettings /// class. /// + /// The value indicating + /// whether to ignore mismatch in certificate name. + /// The value indicating + /// whether to support HTTP status code 'CONTINUE'. + /// The value indicating whether + /// to keep the connection alive. + /// The value indicating whether to + /// unfold the HTTP headers. public AS2MessageConnectionSettings(bool ignoreCertificateNameMismatch, bool supportHttpStatusCodeContinue, bool keepHttpConnectionAlive, bool unfoldHttpHeaders) { IgnoreCertificateNameMismatch = ignoreCertificateNameMismatch; @@ -70,7 +76,7 @@ public AS2MessageConnectionSettings(bool ignoreCertificateNameMismatch, bool sup /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -79,3 +85,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2OneWayAgreement.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2OneWayAgreement.cs index 52b5cec75692..1d0235e070fd 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2OneWayAgreement.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2OneWayAgreement.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account AS2 oneway agreement. @@ -29,6 +28,11 @@ public AS2OneWayAgreement() { } /// /// Initializes a new instance of the AS2OneWayAgreement class. /// + /// The sender business + /// identity + /// The receiver business + /// identity + /// The AS2 protocol settings. public AS2OneWayAgreement(BusinessIdentity senderBusinessIdentity, BusinessIdentity receiverBusinessIdentity, AS2ProtocolSettings protocolSettings) { SenderBusinessIdentity = senderBusinessIdentity; @@ -74,18 +78,19 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "ProtocolSettings"); } - if (this.SenderBusinessIdentity != null) + if (SenderBusinessIdentity != null) { - this.SenderBusinessIdentity.Validate(); + SenderBusinessIdentity.Validate(); } - if (this.ReceiverBusinessIdentity != null) + if (ReceiverBusinessIdentity != null) { - this.ReceiverBusinessIdentity.Validate(); + ReceiverBusinessIdentity.Validate(); } - if (this.ProtocolSettings != null) + if (ProtocolSettings != null) { - this.ProtocolSettings.Validate(); + ProtocolSettings.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ProtocolSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ProtocolSettings.cs index 9ea14b506304..ff05f2d86bd1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ProtocolSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ProtocolSettings.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The AS2 agreement protocol settings. @@ -29,6 +28,15 @@ public AS2ProtocolSettings() { } /// /// Initializes a new instance of the AS2ProtocolSettings class. /// + /// The message connection + /// settings. + /// The acknowledgement + /// connection settings. + /// The MDN settings. + /// The security settings. + /// The validation settings. + /// The envelope settings. + /// The error settings. public AS2ProtocolSettings(AS2MessageConnectionSettings messageConnectionSettings, AS2AcknowledgementConnectionSettings acknowledgementConnectionSettings, AS2MdnSettings mdnSettings, AS2SecuritySettings securitySettings, AS2ValidationSettings validationSettings, AS2EnvelopeSettings envelopeSettings, AS2ErrorSettings errorSettings) { MessageConnectionSettings = messageConnectionSettings; @@ -118,34 +126,35 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "ErrorSettings"); } - if (this.MessageConnectionSettings != null) + if (MessageConnectionSettings != null) { - this.MessageConnectionSettings.Validate(); + MessageConnectionSettings.Validate(); } - if (this.AcknowledgementConnectionSettings != null) + if (AcknowledgementConnectionSettings != null) { - this.AcknowledgementConnectionSettings.Validate(); + AcknowledgementConnectionSettings.Validate(); } - if (this.MdnSettings != null) + if (MdnSettings != null) { - this.MdnSettings.Validate(); + MdnSettings.Validate(); } - if (this.SecuritySettings != null) + if (SecuritySettings != null) { - this.SecuritySettings.Validate(); + SecuritySettings.Validate(); } - if (this.ValidationSettings != null) + if (ValidationSettings != null) { - this.ValidationSettings.Validate(); + ValidationSettings.Validate(); } - if (this.EnvelopeSettings != null) + if (EnvelopeSettings != null) { - this.EnvelopeSettings.Validate(); + EnvelopeSettings.Validate(); } - if (this.ErrorSettings != null) + if (ErrorSettings != null) { - this.ErrorSettings.Validate(); + ErrorSettings.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2SecuritySettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2SecuritySettings.cs index 5ba22d621d33..4da32f9414cf 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2SecuritySettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2SecuritySettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The AS2 agreement security settings. @@ -29,6 +27,28 @@ public AS2SecuritySettings() { } /// /// Initializes a new instance of the AS2SecuritySettings class. /// + /// The value indicating + /// whether to send or request a MDN. + /// The value + /// indicating whether to enable NRR for inbound encoded + /// messages. + /// The value + /// indicating whether to enable NRR for inbound decoded + /// messages. + /// The value indicating whether + /// to enable NRR for outbound MDN. + /// The value + /// indicating whether to enable NRR for outbound encoded + /// messages. + /// The value + /// indicating whether to enable NRR for outbound decoded + /// messages. + /// The value indicating whether + /// to enable NRR for inbound MDN. + /// The name of the signing + /// certificate. + /// The name of the encryption + /// certificate. public AS2SecuritySettings(bool overrideGroupSigningCertificate, bool enableNrrForInboundEncodedMessages, bool enableNrrForInboundDecodedMessages, bool enableNrrForOutboundMdn, bool enableNrrForOutboundEncodedMessages, bool enableNrrForOutboundDecodedMessages, bool enableNrrForInboundMdn, string signingCertificateName = default(string), string encryptionCertificateName = default(string)) { OverrideGroupSigningCertificate = overrideGroupSigningCertificate; @@ -61,15 +81,15 @@ public AS2SecuritySettings() { } public string EncryptionCertificateName { get; set; } /// - /// Gets or sets the value indicating whether to enable NRR for - /// inbound encoded messages. + /// Gets or sets the value indicating whether to enable NRR for inbound + /// encoded messages. /// [JsonProperty(PropertyName = "enableNrrForInboundEncodedMessages")] public bool EnableNrrForInboundEncodedMessages { get; set; } /// - /// Gets or sets the value indicating whether to enable NRR for - /// inbound decoded messages. + /// Gets or sets the value indicating whether to enable NRR for inbound + /// decoded messages. /// [JsonProperty(PropertyName = "enableNrrForInboundDecodedMessages")] public bool EnableNrrForInboundDecodedMessages { get; set; } @@ -96,8 +116,8 @@ public AS2SecuritySettings() { } public bool EnableNrrForOutboundDecodedMessages { get; set; } /// - /// Gets or sets the value indicating whether to enable NRR for - /// inbound MDN. + /// Gets or sets the value indicating whether to enable NRR for inbound + /// MDN. /// [JsonProperty(PropertyName = "enableNrrForInboundMdn")] public bool EnableNrrForInboundMdn { get; set; } @@ -105,7 +125,7 @@ public AS2SecuritySettings() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -114,3 +134,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ValidationSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ValidationSettings.cs index 4634d6307931..568d2b0f4cc5 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ValidationSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ValidationSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The AS2 agreement validation settings. @@ -29,6 +27,28 @@ public AS2ValidationSettings() { } /// /// Initializes a new instance of the AS2ValidationSettings class. /// + /// The value indicating + /// whether to override incoming message properties with those in + /// agreement. + /// The value indicating whether the + /// message has to be encrypted. + /// The value indicating whether the message + /// has to be signed. + /// The value indicating whether the + /// message has to be compressed. + /// The value indicating whether to + /// check for duplicate message. + /// The number of days + /// to look back for duplicate interchange. + /// The value + /// indicating whether to check for certificate revocation list on + /// send. + /// The value + /// indicating whether to check for certificate revocation list on + /// receive. + /// The encryption algorithm. + /// Possible values include: 'NotSpecified', 'None', 'DES3', 'RC2', + /// 'AES128', 'AES192', 'AES256' public AS2ValidationSettings(bool overrideMessageProperties, bool encryptMessage, bool signMessage, bool compressMessage, bool checkDuplicateMessage, int interchangeDuplicatesValidityDays, bool checkCertificateRevocationListOnSend, bool checkCertificateRevocationListOnReceive, EncryptionAlgorithm encryptionAlgorithm) { OverrideMessageProperties = overrideMessageProperties; @@ -100,8 +120,7 @@ public AS2ValidationSettings(bool overrideMessageProperties, bool encryptMessage /// /// Gets or sets the encryption algorithm. Possible values include: - /// 'NotSpecified', 'None', 'DES3', 'RC2', 'AES128', 'AES192', - /// 'AES256' + /// 'NotSpecified', 'None', 'DES3', 'RC2', 'AES128', 'AES192', 'AES256' /// [JsonProperty(PropertyName = "encryptionAlgorithm")] public EncryptionAlgorithm EncryptionAlgorithm { get; set; } @@ -109,7 +128,7 @@ public AS2ValidationSettings(bool overrideMessageProperties, bool encryptMessage /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -117,3 +136,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs index 20df922816c4..3c5851fac054 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account agreement content. @@ -29,6 +27,9 @@ public AgreementContent() { } /// /// Initializes a new instance of the AgreementContent class. /// + /// The AS2 agreement content. + /// The X12 agreement content. + /// The EDIFACT agreement content. public AgreementContent(AS2AgreementContent aS2 = default(AS2AgreementContent), X12AgreementContent x12 = default(X12AgreementContent), EdifactAgreementContent edifact = default(EdifactAgreementContent)) { AS2 = aS2; @@ -57,23 +58,24 @@ public AgreementContent() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.AS2 != null) + if (AS2 != null) { - this.AS2.Validate(); + AS2.Validate(); } - if (this.X12 != null) + if (X12 != null) { - this.X12.Validate(); + X12.Validate(); } - if (this.Edifact != null) + if (Edifact != null) { - this.Edifact.Validate(); + Edifact.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementType.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementType.cs index 2a42dacc38c8..64dc65cdf9df 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementType.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementType.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -28,3 +32,4 @@ public enum AgreementType Edifact } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/B2BPartnerContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/B2BPartnerContent.cs index d8a03ca36892..2e4691bf4cbd 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/B2BPartnerContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/B2BPartnerContent.cs @@ -1,20 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The B2B partner content. @@ -29,6 +29,8 @@ public B2BPartnerContent() { } /// /// Initializes a new instance of the B2BPartnerContent class. /// + /// The list of partner business + /// identities. public B2BPartnerContent(IList businessIdentities = default(IList)) { BusinessIdentities = businessIdentities; @@ -42,3 +44,4 @@ public B2BPartnerContent() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/BusinessIdentity.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/BusinessIdentity.cs index 9b2f22820fb6..0f5a877a3db8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/BusinessIdentity.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/BusinessIdentity.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account partner's business identity. @@ -29,6 +28,10 @@ public BusinessIdentity() { } /// /// Initializes a new instance of the BusinessIdentity class. /// + /// The business identity qualifier e.g. + /// as2identity, ZZ, ZZZ, 31, 32 + /// The user defined business identity + /// value. public BusinessIdentity(string qualifier, string value) { Qualifier = qualifier; @@ -67,3 +70,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/CallbackUrl.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/CallbackUrl.cs index 65ed1f30e3f9..e7a92fb7c7ce 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/CallbackUrl.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/CallbackUrl.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The callback url. @@ -29,6 +27,7 @@ public CallbackUrl() { } /// /// Initializes a new instance of the CallbackUrl class. /// + /// The URL value. public CallbackUrl(string value = default(string)) { Value = value; @@ -42,3 +41,4 @@ public CallbackUrl() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentHash.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentHash.cs index 8ac45ef7039b..1dc7ecab37c8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentHash.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentHash.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The content hash. @@ -29,6 +27,8 @@ public ContentHash() { } /// /// Initializes a new instance of the ContentHash class. /// + /// The algorithm of the content hash. + /// The value of the content hash. public ContentHash(string algorithm = default(string), string value = default(string)) { Algorithm = algorithm; @@ -49,3 +49,4 @@ public ContentHash() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentLink.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentLink.cs index 7fc77551a851..ad6f7a6f708c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentLink.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentLink.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The content link. @@ -29,6 +27,11 @@ public ContentLink() { } /// /// Initializes a new instance of the ContentLink class. /// + /// The content link URI. + /// The content version. + /// The content size. + /// The content hash. + /// The metadata. public ContentLink(string uri = default(string), string contentVersion = default(string), long? contentSize = default(long?), ContentHash contentHash = default(ContentHash), object metadata = default(object)) { Uri = uri; @@ -70,3 +73,4 @@ public ContentLink() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Correlation.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Correlation.cs index 41fb12929eed..629a0634febc 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Correlation.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Correlation.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The correlation property. @@ -29,6 +27,7 @@ public Correlation() { } /// /// Initializes a new instance of the Correlation class. /// + /// The client tracking id. public Correlation(string clientTrackingId = default(string)) { ClientTrackingId = clientTrackingId; @@ -42,3 +41,4 @@ public Correlation() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/DayOfWeek.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/DayOfWeek.cs index b7b25c39cbe5..050ac58f8a7a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/DayOfWeek.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/DayOfWeek.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -34,3 +38,4 @@ public enum DayOfWeek Saturday } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/DaysOfWeek.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/DaysOfWeek.cs index 3e5a40dde4e6..5b96d482b9a7 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/DaysOfWeek.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/DaysOfWeek.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -34,3 +38,4 @@ public enum DaysOfWeek Saturday } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAcknowledgementSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAcknowledgementSettings.cs index 8a64985eef4d..0bdeb191cfbe 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAcknowledgementSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAcknowledgementSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact agreement acknowledgement settings. @@ -31,6 +29,29 @@ public EdifactAcknowledgementSettings() { } /// Initializes a new instance of the EdifactAcknowledgementSettings /// class. /// + /// The value indicating + /// whether technical acknowledgement is needed. + /// The value indicating + /// whether to batch the technical acknowledgements. + /// The value indicating + /// whether functional acknowledgement is needed. + /// The value indicating + /// whether to batch functional acknowledgements. + /// The value indicating whether + /// a loop is needed for valid messages. + /// The value indicating + /// whether to send synchronous acknowledgement. + /// The + /// acknowledgement control number lower bound. + /// The + /// acknowledgement control number upper bound. + /// The value + /// indicating whether to rollover acknowledgement control + /// number. + /// The + /// acknowledgement control number prefix. + /// The + /// acknowledgement control number suffix. public EdifactAcknowledgementSettings(bool needTechnicalAcknowledgement, bool batchTechnicalAcknowledgements, bool needFunctionalAcknowledgement, bool batchFunctionalAcknowledgements, bool needLoopForValidMessages, bool sendSynchronousAcknowledgement, int acknowledgementControlNumberLowerBound, int acknowledgementControlNumberUpperBound, bool rolloverAcknowledgementControlNumber, string acknowledgementControlNumberPrefix = default(string), string acknowledgementControlNumberSuffix = default(string)) { NeedTechnicalAcknowledgement = needTechnicalAcknowledgement; @@ -47,8 +68,8 @@ public EdifactAcknowledgementSettings() { } } /// - /// Gets or sets the value indicating whether technical - /// acknowledgement is needed. + /// Gets or sets the value indicating whether technical acknowledgement + /// is needed. /// [JsonProperty(PropertyName = "needTechnicalAcknowledgement")] public bool NeedTechnicalAcknowledgement { get; set; } @@ -122,7 +143,7 @@ public EdifactAcknowledgementSettings() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -131,3 +152,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAgreementContent.cs index 9a1b8f95df65..dfef5cf1a474 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAgreementContent.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact agreement content. @@ -29,6 +28,10 @@ public EdifactAgreementContent() { } /// /// Initializes a new instance of the EdifactAgreementContent class. /// + /// The EDIFACT one-way receive + /// agreement. + /// The EDIFACT one-way send + /// agreement. public EdifactAgreementContent(EdifactOneWayAgreement receiveAgreement, EdifactOneWayAgreement sendAgreement) { ReceiveAgreement = receiveAgreement; @@ -63,14 +66,15 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "SendAgreement"); } - if (this.ReceiveAgreement != null) + if (ReceiveAgreement != null) { - this.ReceiveAgreement.Validate(); + ReceiveAgreement.Validate(); } - if (this.SendAgreement != null) + if (SendAgreement != null) { - this.SendAgreement.Validate(); + SendAgreement.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactCharacterSet.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactCharacterSet.cs index ff1b7b465d4a..858590e1a77d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactCharacterSet.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactCharacterSet.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -50,3 +54,4 @@ public enum EdifactCharacterSet KECA } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDecimalIndicator.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDecimalIndicator.cs index 3e83823d6554..091c84aa642c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDecimalIndicator.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDecimalIndicator.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -26,3 +30,4 @@ public enum EdifactDecimalIndicator Decimal } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDelimiterOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDelimiterOverride.cs index de9c0fc4c16c..6a89b970f3e3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDelimiterOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDelimiterOverride.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact delimiter override settings. @@ -29,6 +27,24 @@ public EdifactDelimiterOverride() { } /// /// Initializes a new instance of the EdifactDelimiterOverride class. /// + /// The data element + /// separator. + /// The component separator. + /// The segment terminator. + /// The repetition separator. + /// The segment terminator + /// suffix. Possible values include: 'NotSpecified', 'None', 'CR', + /// 'LF', 'CRLF' + /// The decimal point indicator. + /// Possible values include: 'NotSpecified', 'Comma', 'Decimal' + /// The release indicator. + /// The message id. + /// The message version. + /// The message releaseversion. + /// The message + /// association assigned code. + /// The target namespace on which this + /// delimiter settings has to be applied. public EdifactDelimiterOverride(int dataElementSeparator, int componentSeparator, int segmentTerminator, int repetitionSeparator, SegmentTerminatorSuffix segmentTerminatorSuffix, EdifactDecimalIndicator decimalPointIndicator, int releaseIndicator, string messageId = default(string), string messageVersion = default(string), string messageRelease = default(string), string messageAssociationAssignedCode = default(string), string targetNamespace = default(string)) { MessageId = messageId; @@ -123,7 +139,7 @@ public EdifactDelimiterOverride() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -131,3 +147,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeOverride.cs index 6aa220c5e9de..e29cf2daac0b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeOverride.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact enevlope override settings. @@ -29,6 +27,34 @@ public EdifactEnvelopeOverride() { } /// /// Initializes a new instance of the EdifactEnvelopeOverride class. /// + /// The message id on which this envelope + /// settings has to be applied. + /// The message version on which this + /// envelope settings has to be applied. + /// The message release version on which + /// this envelope settings has to be applied. + /// The message + /// association assigned code. + /// The target namespace on which this + /// envelope settings has to be applied. + /// The functional group id. + /// The sender application + /// qualifier. + /// The sender application + /// id. + /// The receiver application + /// qualifier. + /// The receiver application + /// id. + /// The controlling agency + /// code. + /// The group header message + /// version. + /// The group header message + /// release. + /// The association assigned + /// code. + /// The application password. public EdifactEnvelopeOverride(string messageId = default(string), string messageVersion = default(string), string messageRelease = default(string), string messageAssociationAssignedCode = default(string), string targetNamespace = default(string), string functionalGroupId = default(string), string senderApplicationQualifier = default(string), string senderApplicationId = default(string), string receiverApplicationQualifier = default(string), string receiverApplicationId = default(string), string controllingAgencyCode = default(string), string groupHeaderMessageVersion = default(string), string groupHeaderMessageRelease = default(string), string associationAssignedCode = default(string), string applicationPassword = default(string)) { MessageId = messageId; @@ -144,3 +170,4 @@ public EdifactEnvelopeOverride() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeSettings.cs index 4a4cde796321..7c0a279fed03 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact agreement envelope settings. @@ -29,6 +27,89 @@ public EdifactEnvelopeSettings() { } /// /// Initializes a new instance of the EdifactEnvelopeSettings class. /// + /// The value indicating + /// whether to apply delimiter string advice. + /// The value indicating whether + /// to create grouping segments. + /// The value indicating + /// whether to enable default group headers. + /// The interchange + /// control number lower bound. + /// The interchange + /// control number upper bound. + /// The value indicating + /// whether to rollover interchange control number. + /// The group control number + /// lower bound. + /// The group control number + /// upper bound. + /// The value indicating + /// whether to rollover group control number. + /// The + /// value indicating whether to overwrite existing transaction set + /// control number. + /// The transaction + /// set control number lower bound. + /// The transaction + /// set control number upper bound. + /// The value + /// indicating whether to rollover transaction set control + /// number. + /// The value indicating whether the + /// message is a test interchange. + /// The group association + /// assigned code. + /// The communication agreement + /// id. + /// The recipient + /// reference password value. + /// The recipient + /// reference password qualifier. + /// The application reference + /// id. + /// The processing priority + /// code. + /// The interchange + /// control number prefix. + /// The interchange + /// control number suffix. + /// The sender reverse + /// routing address. + /// The receiver reverse + /// routing address. + /// The functional group id. + /// The group controlling + /// agency code. + /// The group message + /// version. + /// The group message + /// release. + /// The group control number + /// prefix. + /// The group control number + /// suffix. + /// The group + /// application receiver qualifier. + /// The group application + /// receiver id. + /// The group application + /// sender qualifier. + /// The group application sender + /// id. + /// The group application + /// password. + /// The transaction set + /// control number prefix. + /// The transaction set + /// control number suffix. + /// The sender internal + /// identification. + /// The sender internal + /// sub identification. + /// The receiver internal + /// identification. + /// The receiver + /// internal sub identification. public EdifactEnvelopeSettings(bool applyDelimiterStringAdvice, bool createGroupingSegments, bool enableDefaultGroupHeaders, long interchangeControlNumberLowerBound, long interchangeControlNumberUpperBound, bool rolloverInterchangeControlNumber, long groupControlNumberLowerBound, long groupControlNumberUpperBound, bool rolloverGroupControlNumber, bool overwriteExistingTransactionSetControlNumber, long transactionSetControlNumberLowerBound, long transactionSetControlNumberUpperBound, bool rolloverTransactionSetControlNumber, bool isTestInterchange, string groupAssociationAssignedCode = default(string), string communicationAgreementId = default(string), string recipientReferencePasswordValue = default(string), string recipientReferencePasswordQualifier = default(string), string applicationReferenceId = default(string), string processingPriorityCode = default(string), string interchangeControlNumberPrefix = default(string), string interchangeControlNumberSuffix = default(string), string senderReverseRoutingAddress = default(string), string receiverReverseRoutingAddress = default(string), string functionalGroupId = default(string), string groupControllingAgencyCode = default(string), string groupMessageVersion = default(string), string groupMessageRelease = default(string), string groupControlNumberPrefix = default(string), string groupControlNumberSuffix = default(string), string groupApplicationReceiverQualifier = default(string), string groupApplicationReceiverId = default(string), string groupApplicationSenderQualifier = default(string), string groupApplicationSenderId = default(string), string groupApplicationPassword = default(string), string transactionSetControlNumberPrefix = default(string), string transactionSetControlNumberSuffix = default(string), string senderInternalIdentification = default(string), string senderInternalSubIdentification = default(string), string receiverInternalIdentification = default(string), string receiverInternalSubIdentification = default(string)) { GroupAssociationAssignedCode = groupAssociationAssignedCode; @@ -87,8 +168,8 @@ public EdifactEnvelopeSettings() { } public string CommunicationAgreementId { get; set; } /// - /// Gets or sets the value indicating whether to apply delimiter - /// string advice. + /// Gets or sets the value indicating whether to apply delimiter string + /// advice. /// [JsonProperty(PropertyName = "applyDelimiterStringAdvice")] public bool ApplyDelimiterStringAdvice { get; set; } @@ -211,8 +292,8 @@ public EdifactEnvelopeSettings() { } public long GroupControlNumberUpperBound { get; set; } /// - /// Gets or sets the value indicating whether to rollover group - /// control number. + /// Gets or sets the value indicating whether to rollover group control + /// number. /// [JsonProperty(PropertyName = "rolloverGroupControlNumber")] public bool RolloverGroupControlNumber { get; set; } @@ -331,7 +412,7 @@ public EdifactEnvelopeSettings() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -340,3 +421,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactFramingSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactFramingSettings.cs index 8f2d9278bb9e..7f9fadea3dce 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactFramingSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactFramingSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact agreement framing settings. @@ -29,6 +27,26 @@ public EdifactFramingSettings() { } /// /// Initializes a new instance of the EdifactFramingSettings class. /// + /// The protocol version. + /// The data element + /// separator. + /// The component separator. + /// The segment terminator. + /// The release indicator. + /// The repetition separator. + /// The EDIFACT frame setting characterSet. + /// Possible values include: 'NotSpecified', 'UNOB', 'UNOA', 'UNOC', + /// 'UNOD', 'UNOE', 'UNOF', 'UNOG', 'UNOH', 'UNOI', 'UNOJ', 'UNOK', + /// 'UNOX', 'UNOY', 'KECA' + /// The EDIFACT frame setting + /// decimal indicator. Possible values include: 'NotSpecified', + /// 'Comma', 'Decimal' + /// The EDIFACT frame setting + /// segment terminator suffix. Possible values include: 'NotSpecified', + /// 'None', 'CR', 'LF', 'CRLF' + /// The service code list + /// directory version. + /// The character encoding. public EdifactFramingSettings(int protocolVersion, int dataElementSeparator, int componentSeparator, int segmentTerminator, int releaseIndicator, int repetitionSeparator, EdifactCharacterSet characterSet, EdifactDecimalIndicator decimalPointIndicator, SegmentTerminatorSuffix segmentTerminatorSuffix, string serviceCodeListDirectoryVersion = default(string), string characterEncoding = default(string)) { ServiceCodeListDirectoryVersion = serviceCodeListDirectoryVersion; @@ -110,8 +128,7 @@ public EdifactFramingSettings() { } /// /// Gets or sets the EDIFACT frame setting segment terminator suffix. - /// Possible values include: 'NotSpecified', 'None', 'CR', 'LF', - /// 'CRLF' + /// Possible values include: 'NotSpecified', 'None', 'CR', 'LF', 'CRLF' /// [JsonProperty(PropertyName = "segmentTerminatorSuffix")] public SegmentTerminatorSuffix SegmentTerminatorSuffix { get; set; } @@ -119,7 +136,7 @@ public EdifactFramingSettings() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -127,3 +144,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageFilter.cs index eaa9796b8b1a..de2fec13cff9 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact message filter for odata query. @@ -29,6 +27,8 @@ public EdifactMessageFilter() { } /// /// Initializes a new instance of the EdifactMessageFilter class. /// + /// The message filter type. Possible + /// values include: 'NotSpecified', 'Include', 'Exclude' public EdifactMessageFilter(MessageFilterType messageFilterType) { MessageFilterType = messageFilterType; @@ -44,7 +44,7 @@ public EdifactMessageFilter(MessageFilterType messageFilterType) /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -52,3 +52,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageIdentifier.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageIdentifier.cs index 4b33b76c2404..c344ac8b4462 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageIdentifier.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageIdentifier.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact message identifier. @@ -29,6 +28,8 @@ public EdifactMessageIdentifier() { } /// /// Initializes a new instance of the EdifactMessageIdentifier class. /// + /// The message id on which this envelope + /// settings has to be applied. public EdifactMessageIdentifier(string messageId) { MessageId = messageId; @@ -56,3 +57,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactOneWayAgreement.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactOneWayAgreement.cs index 4e386fb17288..c60a17ab8a4a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactOneWayAgreement.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactOneWayAgreement.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact one way agreement. @@ -29,6 +28,12 @@ public EdifactOneWayAgreement() { } /// /// Initializes a new instance of the EdifactOneWayAgreement class. /// + /// The sender business + /// identity + /// The receiver business + /// identity + /// The EDIFACT protocol + /// settings. public EdifactOneWayAgreement(BusinessIdentity senderBusinessIdentity, BusinessIdentity receiverBusinessIdentity, EdifactProtocolSettings protocolSettings) { SenderBusinessIdentity = senderBusinessIdentity; @@ -74,18 +79,19 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "ProtocolSettings"); } - if (this.SenderBusinessIdentity != null) + if (SenderBusinessIdentity != null) { - this.SenderBusinessIdentity.Validate(); + SenderBusinessIdentity.Validate(); } - if (this.ReceiverBusinessIdentity != null) + if (ReceiverBusinessIdentity != null) { - this.ReceiverBusinessIdentity.Validate(); + ReceiverBusinessIdentity.Validate(); } - if (this.ProtocolSettings != null) + if (ProtocolSettings != null) { - this.ProtocolSettings.Validate(); + ProtocolSettings.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProcessingSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProcessingSettings.cs index 923f3203edb4..a874a5295f91 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProcessingSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProcessingSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact agreement protocol settings. @@ -29,6 +27,17 @@ public EdifactProcessingSettings() { } /// /// Initializes a new instance of the EdifactProcessingSettings class. /// + /// The value indicating whether to mask + /// security information. + /// The value indicating whether to + /// preserve interchange. + /// The value indicating + /// whether to suspend interchange on error. + /// The value + /// indicating whether to create empty xml tags for trailing + /// separators. + /// The value indicating whether + /// to use dot as decimal separator. public EdifactProcessingSettings(bool maskSecurityInfo, bool preserveInterchange, bool suspendInterchangeOnError, bool createEmptyXmlTagsForTrailingSeparators, bool useDotAsDecimalSeparator) { MaskSecurityInfo = maskSecurityInfo; @@ -52,8 +61,8 @@ public EdifactProcessingSettings(bool maskSecurityInfo, bool preserveInterchange public bool PreserveInterchange { get; set; } /// - /// Gets or sets the value indicating whether to suspend interchange - /// on error. + /// Gets or sets the value indicating whether to suspend interchange on + /// error. /// [JsonProperty(PropertyName = "suspendInterchangeOnError")] public bool SuspendInterchangeOnError { get; set; } @@ -75,7 +84,7 @@ public EdifactProcessingSettings(bool maskSecurityInfo, bool preserveInterchange /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -84,3 +93,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProtocolSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProtocolSettings.cs index d743c20236a4..40e795d27247 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProtocolSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProtocolSettings.cs @@ -1,20 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The Edifact agreement protocol settings. @@ -29,6 +30,26 @@ public EdifactProtocolSettings() { } /// /// Initializes a new instance of the EdifactProtocolSettings class. /// + /// The EDIFACT validation + /// settings. + /// The EDIFACT framing settings. + /// The EDIFACT envelope + /// settings. + /// The EDIFACT acknowledgement + /// settings. + /// The EDIFACT message filter. + /// The EDIFACT processing + /// Settings. + /// The EDIFACT schema + /// references. + /// The EDIFACT envelope override + /// settings. + /// The EDIFACT message filter + /// list. + /// The EDIFACT validation override + /// settings. + /// The EDIFACT delimiter + /// override settings. public EdifactProtocolSettings(EdifactValidationSettings validationSettings, EdifactFramingSettings framingSettings, EdifactEnvelopeSettings envelopeSettings, EdifactAcknowledgementSettings acknowledgementSettings, EdifactMessageFilter messageFilter, EdifactProcessingSettings processingSettings, IList schemaReferences, IList envelopeOverrides = default(IList), IList messageFilterList = default(IList), IList validationOverrides = default(IList), IList edifactDelimiterOverrides = default(IList)) { ValidationSettings = validationSettings; @@ -146,33 +167,33 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "SchemaReferences"); } - if (this.ValidationSettings != null) + if (ValidationSettings != null) { - this.ValidationSettings.Validate(); + ValidationSettings.Validate(); } - if (this.FramingSettings != null) + if (FramingSettings != null) { - this.FramingSettings.Validate(); + FramingSettings.Validate(); } - if (this.EnvelopeSettings != null) + if (EnvelopeSettings != null) { - this.EnvelopeSettings.Validate(); + EnvelopeSettings.Validate(); } - if (this.AcknowledgementSettings != null) + if (AcknowledgementSettings != null) { - this.AcknowledgementSettings.Validate(); + AcknowledgementSettings.Validate(); } - if (this.MessageFilter != null) + if (MessageFilter != null) { - this.MessageFilter.Validate(); + MessageFilter.Validate(); } - if (this.ProcessingSettings != null) + if (ProcessingSettings != null) { - this.ProcessingSettings.Validate(); + ProcessingSettings.Validate(); } - if (this.MessageFilterList != null) + if (MessageFilterList != null) { - foreach (var element in this.MessageFilterList) + foreach (var element in MessageFilterList) { if (element != null) { @@ -180,9 +201,9 @@ public virtual void Validate() } } } - if (this.SchemaReferences != null) + if (SchemaReferences != null) { - foreach (var element1 in this.SchemaReferences) + foreach (var element1 in SchemaReferences) { if (element1 != null) { @@ -190,9 +211,9 @@ public virtual void Validate() } } } - if (this.ValidationOverrides != null) + if (ValidationOverrides != null) { - foreach (var element2 in this.ValidationOverrides) + foreach (var element2 in ValidationOverrides) { if (element2 != null) { @@ -200,9 +221,9 @@ public virtual void Validate() } } } - if (this.EdifactDelimiterOverrides != null) + if (EdifactDelimiterOverrides != null) { - foreach (var element3 in this.EdifactDelimiterOverrides) + foreach (var element3 in EdifactDelimiterOverrides) { if (element3 != null) { @@ -213,3 +234,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactSchemaReference.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactSchemaReference.cs index e4274390ed3f..539bcddc3179 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactSchemaReference.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactSchemaReference.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact schema reference. @@ -29,6 +28,16 @@ public EdifactSchemaReference() { } /// /// Initializes a new instance of the EdifactSchemaReference class. /// + /// The message id. + /// The message version. + /// The message release version. + /// The schema name. + /// The sender application + /// id. + /// The sender application + /// qualifier. + /// The association assigned + /// code. public EdifactSchemaReference(string messageId, string messageVersion, string messageRelease, string schemaName, string senderApplicationId = default(string), string senderApplicationQualifier = default(string), string associationAssignedCode = default(string)) { MessageId = messageId; @@ -109,3 +118,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs index 2b287ddfc633..6797a6b022a2 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact validation override settings. @@ -29,6 +28,23 @@ public EdifactValidationOverride() { } /// /// Initializes a new instance of the EdifactValidationOverride class. /// + /// The message id on which the validation + /// settings has to be applied. + /// The value indicating whether to + /// validate character Set. + /// The value indicating whether to + /// validate EDI types. + /// The value indicating whether to + /// validate XSD types. + /// The value + /// indicating whether to allow leading and trailing spaces and + /// zeroes. + /// The trailing separator + /// policy. Possible values include: 'NotSpecified', 'NotAllowed', + /// 'Optional', 'Mandatory' + /// The value + /// indicating whether to trim leading and trailing spaces and + /// zeroes. public EdifactValidationOverride(string messageId, bool enforceCharacterSet, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy, bool trimLeadingAndTrailingSpacesAndZeroes) { MessageId = messageId; @@ -41,8 +57,8 @@ public EdifactValidationOverride(string messageId, bool enforceCharacterSet, boo } /// - /// Gets or sets the message id on which the validation settings has - /// to be applied. + /// Gets or sets the message id on which the validation settings has to + /// be applied. /// [JsonProperty(PropertyName = "messageId")] public string MessageId { get; set; } @@ -102,3 +118,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs index 479da76ccc90..f0c7cae9e56b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The Edifact agreement validation settings. @@ -29,6 +27,31 @@ public EdifactValidationSettings() { } /// /// Initializes a new instance of the EdifactValidationSettings class. /// + /// The value indicating whether to + /// validate character set in the message. + /// The value + /// indicating whether to check for duplicate interchange control + /// number. + /// The validity + /// period of interchange control number. + /// The value indicating + /// whether to check for duplicate group control number. + /// The value + /// indicating whether to check for duplicate transaction set control + /// number. + /// The value indicating whether to + /// Whether to validate EDI types. + /// The value indicating whether to + /// Whether to validate XSD types. + /// The value + /// indicating whether to allow leading and trailing spaces and + /// zeroes. + /// The value + /// indicating whether to trim leading and trailing spaces and + /// zeroes. + /// The trailing separator + /// policy. Possible values include: 'NotSpecified', 'NotAllowed', + /// 'Optional', 'Mandatory' public EdifactValidationSettings(bool validateCharacterSet, bool checkDuplicateInterchangeControlNumber, int interchangeControlNumberValidityDays, bool checkDuplicateGroupControlNumber, bool checkDuplicateTransactionSetControlNumber, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { ValidateCharacterSet = validateCharacterSet; @@ -44,8 +67,8 @@ public EdifactValidationSettings(bool validateCharacterSet, bool checkDuplicateI } /// - /// Gets or sets the value indicating whether to validate character - /// set in the message. + /// Gets or sets the value indicating whether to validate character set + /// in the message. /// [JsonProperty(PropertyName = "validateCharacterSet")] public bool ValidateCharacterSet { get; set; } @@ -115,7 +138,7 @@ public EdifactValidationSettings(bool validateCharacterSet, bool checkDuplicateI /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -123,3 +146,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EncryptionAlgorithm.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EncryptionAlgorithm.cs index 2203cf7ef7c4..7f38a5831d4a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EncryptionAlgorithm.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EncryptionAlgorithm.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -34,3 +38,4 @@ public enum EncryptionAlgorithm AES256 } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorProperties.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorProperties.cs new file mode 100644 index 000000000000..194c8bbae35f --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorProperties.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Azure; + using Management; + using Logic; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Error properties indicate why the Logic service was not able to process + /// the incoming request. The reason is provided in the error message. + /// + public partial class ErrorProperties + { + /// + /// Initializes a new instance of the ErrorProperties class. + /// + public ErrorProperties() { } + + /// + /// Initializes a new instance of the ErrorProperties class. + /// + /// Error code. + /// Error message indicating why the operation + /// failed. + public ErrorProperties(string code = default(string), string message = default(string)) + { + Code = code; + Message = message; + } + + /// + /// Gets or sets error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// Gets or sets error message indicating why the operation failed. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + } +} + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponse.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponse.cs index 5184e51b3fb1..3d086f30a44f 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponse.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponse.cs @@ -1,24 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// Error reponse indicates Logic service is not able to process the - /// incoming request. The reason is provided in the error message. + /// incoming request. The error property contains the error details. /// public partial class ErrorResponse { @@ -30,23 +28,18 @@ public ErrorResponse() { } /// /// Initializes a new instance of the ErrorResponse class. /// - public ErrorResponse(string code = default(string), string message = default(string)) + /// The error properties. + public ErrorResponse(ErrorProperties error = default(ErrorProperties)) { - Code = code; - Message = message; + Error = error; } /// - /// Gets or sets error code. - /// - [JsonProperty(PropertyName = "code")] - public string Code { get; set; } - - /// - /// Gets or sets error message indicating why the operation failed. + /// Gets or sets the error properties. /// - [JsonProperty(PropertyName = "message")] - public string Message { get; set; } + [JsonProperty(PropertyName = "error")] + public ErrorProperties Error { get; set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponseException.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponseException.cs index bbf3c952980e..cb4ee03dac48 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponseException.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponseException.cs @@ -1,27 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using Microsoft.Rest; - using System; - using System.Net.Http; + using Azure; + using Management; + using Logic; + using Rest; + using System.Runtime; using System.Runtime.Serialization; -#if !PORTABLE - using System.Security.Permissions; -#endif + using System.Security; /// /// Exception thrown for an invalid response with ErrorResponse /// information. /// -#if !PORTABLE - [Serializable] +#if !PORTABLE + [System.Serializable] #endif public class ErrorResponseException : RestException { @@ -61,12 +61,12 @@ public ErrorResponseException(string message) /// /// The exception message. /// Inner exception. - public ErrorResponseException(string message, Exception innerException) + public ErrorResponseException(string message, System.Exception innerException) : base(message, innerException) { } -#if !PORTABLE +#if !PORTABLE /// /// Initializes a new instance of the ErrorResponseException class. /// @@ -82,16 +82,16 @@ protected ErrorResponseException(SerializationInfo info, StreamingContext contex /// /// Serialization info. /// Streaming context. - /// + /// /// Thrown when a required parameter is null /// - [SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)] + [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter = true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); if (info == null) { - throw new ArgumentNullException("info"); + throw new System.ArgumentNullException("info"); } info.AddValue("Request", Request); @@ -101,3 +101,4 @@ public override void GetObjectData(SerializationInfo info, StreamingContext cont #endif } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GenerateUpgradedDefinitionParameters.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GenerateUpgradedDefinitionParameters.cs index 6ec06261d25f..996c58bc6a61 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GenerateUpgradedDefinitionParameters.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GenerateUpgradedDefinitionParameters.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The parameters to generate upgraded definition. @@ -31,6 +29,8 @@ public GenerateUpgradedDefinitionParameters() { } /// Initializes a new instance of the /// GenerateUpgradedDefinitionParameters class. /// + /// The target schema + /// version. public GenerateUpgradedDefinitionParameters(string targetSchemaVersion = default(string)) { TargetSchemaVersion = targetSchemaVersion; @@ -44,3 +44,4 @@ public GenerateUpgradedDefinitionParameters() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GetCallbackUrlParameters.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GetCallbackUrlParameters.cs index 767756e642da..8fb6ce6e7c92 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GetCallbackUrlParameters.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GetCallbackUrlParameters.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The callback url parameters. @@ -29,7 +27,10 @@ public GetCallbackUrlParameters() { } /// /// Initializes a new instance of the GetCallbackUrlParameters class. /// - public GetCallbackUrlParameters(DateTime? notAfter = default(DateTime?), KeyType? keyType = default(KeyType?)) + /// The expiry time. + /// The key type. Possible values include: + /// 'NotSpecified', 'Primary', 'Secondary' + public GetCallbackUrlParameters(System.DateTime? notAfter = default(System.DateTime?), KeyType? keyType = default(KeyType?)) { NotAfter = notAfter; KeyType = keyType; @@ -39,14 +40,15 @@ public GetCallbackUrlParameters() { } /// Gets or sets the expiry time. /// [JsonProperty(PropertyName = "notAfter")] - public DateTime? NotAfter { get; set; } + public System.DateTime? NotAfter { get; set; } /// - /// Gets or sets the key type. Possible values include: - /// 'NotSpecified', 'Primary', 'Secondary' + /// Gets or sets the key type. Possible values include: 'NotSpecified', + /// 'Primary', 'Secondary' /// [JsonProperty(PropertyName = "keyType")] public KeyType? KeyType { get; set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/HashingAlgorithm.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/HashingAlgorithm.cs index 20429aff1f56..9b1a8f209903 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/HashingAlgorithm.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/HashingAlgorithm.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -34,3 +38,4 @@ public enum HashingAlgorithm SHA2512 } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccount.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccount.cs index e8293419d255..a67af528f132 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccount.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccount.cs @@ -1,20 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The integration account. @@ -29,6 +29,14 @@ public IntegrationAccount() { } /// /// Initializes a new instance of the IntegrationAccount class. /// + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// The integration account + /// properties. + /// The sku. public IntegrationAccount(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), object properties = default(object), IntegrationAccountSku sku = default(IntegrationAccountSku)) : base(id, name, type, location, tags) { @@ -51,15 +59,16 @@ public IntegrationAccount() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.Sku != null) + if (Sku != null) { - this.Sku.Validate(); + Sku.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreement.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreement.cs index 1e2f5a7e3ab3..dc733d7e837d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreement.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreement.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The integration account agreement. @@ -32,7 +34,26 @@ public IntegrationAccountAgreement() { } /// Initializes a new instance of the IntegrationAccountAgreement /// class. /// - public IntegrationAccountAgreement(AgreementType agreementType, string hostPartner, string guestPartner, BusinessIdentity hostIdentity, BusinessIdentity guestIdentity, AgreementContent content, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object)) + /// The agreement type. Possible values + /// include: 'NotSpecified', 'AS2', 'X12', 'Edifact' + /// The integration account partner that is + /// set as host partner for this agreement. + /// The integration account partner that is + /// set as guest partner for this agreement. + /// The business identity of the host + /// partner. + /// The business identity of the guest + /// partner. + /// The agreement content. + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// The created time. + /// The changed time. + /// The metadata. + public IntegrationAccountAgreement(AgreementType agreementType, string hostPartner, string guestPartner, BusinessIdentity hostIdentity, BusinessIdentity guestIdentity, AgreementContent content, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), object metadata = default(object)) : base(id, name, type, location, tags) { CreatedTime = createdTime; @@ -50,13 +71,13 @@ public IntegrationAccountAgreement() { } /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// /// Gets or sets the metadata. @@ -131,18 +152,19 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Content"); } - if (this.HostIdentity != null) + if (HostIdentity != null) { - this.HostIdentity.Validate(); + HostIdentity.Validate(); } - if (this.GuestIdentity != null) + if (GuestIdentity != null) { - this.GuestIdentity.Validate(); + GuestIdentity.Validate(); } - if (this.Content != null) + if (Content != null) { - this.Content.Validate(); + Content.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreementFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreementFilter.cs index b6f8b8a1c3c3..0708818c3fc5 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreementFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreementFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account agreement filter for odata query. @@ -22,15 +20,18 @@ namespace Microsoft.Azure.Management.Logic.Models public partial class IntegrationAccountAgreementFilter { /// - /// Initializes a new instance of the - /// IntegrationAccountAgreementFilter class. + /// Initializes a new instance of the IntegrationAccountAgreementFilter + /// class. /// public IntegrationAccountAgreementFilter() { } /// - /// Initializes a new instance of the - /// IntegrationAccountAgreementFilter class. + /// Initializes a new instance of the IntegrationAccountAgreementFilter + /// class. /// + /// The agreement type of integration + /// account agreement. Possible values include: 'NotSpecified', 'AS2', + /// 'X12', 'Edifact' public IntegrationAccountAgreementFilter(AgreementType agreementType) { AgreementType = agreementType; @@ -46,7 +47,7 @@ public IntegrationAccountAgreementFilter(AgreementType agreementType) /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -54,3 +55,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountCertificate.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountCertificate.cs index c71807c9f7db..7ce2e9ca245f 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountCertificate.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountCertificate.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The integration account certificate. @@ -32,7 +34,17 @@ public IntegrationAccountCertificate() { } /// Initializes a new instance of the IntegrationAccountCertificate /// class. /// - public IntegrationAccountCertificate(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object), KeyVaultKeyReference key = default(KeyVaultKeyReference), string publicCertificate = default(string)) + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// The created time. + /// The changed time. + /// The metadata. + /// The key details in the key vault. + /// The public certificate. + public IntegrationAccountCertificate(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), object metadata = default(object), KeyVaultKeyReference key = default(KeyVaultKeyReference), string publicCertificate = default(string)) : base(id, name, type, location, tags) { CreatedTime = createdTime; @@ -46,13 +58,13 @@ public IntegrationAccountCertificate() { } /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// /// Gets or sets the metadata. @@ -80,10 +92,11 @@ public IntegrationAccountCertificate() { } /// public virtual void Validate() { - if (this.Key != null) + if (Key != null) { - this.Key.Validate(); + Key.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMap.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMap.cs index b087c07e8fd3..966a49e2376f 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMap.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMap.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The integration account map. @@ -30,7 +32,22 @@ public IntegrationAccountMap() { } /// /// Initializes a new instance of the IntegrationAccountMap class. /// - public IntegrationAccountMap(MapType mapType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IntegrationAccountMapPropertiesParametersSchema parametersSchema = default(IntegrationAccountMapPropertiesParametersSchema), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object content = default(object), string contentType = default(string), ContentLink contentLink = default(ContentLink), object metadata = default(object)) + /// The map type. Possible values include: + /// 'NotSpecified', 'Xslt' + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// The parameters schema of integration + /// account map. + /// The created time. + /// The changed time. + /// The content. + /// The content type. + /// The content link. + /// The metadata. + public IntegrationAccountMap(MapType mapType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IntegrationAccountMapPropertiesParametersSchema parametersSchema = default(IntegrationAccountMapPropertiesParametersSchema), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), object content = default(object), string contentType = default(string), ContentLink contentLink = default(ContentLink), object metadata = default(object)) : base(id, name, type, location, tags) { MapType = mapType; @@ -44,8 +61,8 @@ public IntegrationAccountMap() { } } /// - /// Gets or sets the map type. Possible values include: - /// 'NotSpecified', 'Xslt' + /// Gets or sets the map type. Possible values include: 'NotSpecified', + /// 'Xslt' /// [JsonProperty(PropertyName = "properties.mapType")] public MapType MapType { get; set; } @@ -60,13 +77,13 @@ public IntegrationAccountMap() { } /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// /// Gets or sets the content. @@ -84,7 +101,7 @@ public IntegrationAccountMap() { } /// Gets the content link. /// [JsonProperty(PropertyName = "properties.contentLink")] - public ContentLink ContentLink { get; private set; } + public ContentLink ContentLink { get; protected set; } /// /// Gets or sets the metadata. @@ -103,3 +120,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapFilter.cs index 1d99d27b7cd8..6a2c2aff2d02 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account map filter for odata query. @@ -31,6 +29,8 @@ public IntegrationAccountMapFilter() { } /// Initializes a new instance of the IntegrationAccountMapFilter /// class. /// + /// The map type of integration account map. + /// Possible values include: 'NotSpecified', 'Xslt' public IntegrationAccountMapFilter(MapType mapType) { MapType = mapType; @@ -46,7 +46,7 @@ public IntegrationAccountMapFilter(MapType mapType) /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -54,3 +54,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapPropertiesParametersSchema.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapPropertiesParametersSchema.cs index 67c9b80af752..b0c93baa953a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapPropertiesParametersSchema.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapPropertiesParametersSchema.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The parameters schema of integration account map. @@ -31,6 +29,7 @@ public IntegrationAccountMapPropertiesParametersSchema() { } /// Initializes a new instance of the /// IntegrationAccountMapPropertiesParametersSchema class. /// + /// The reference name. public IntegrationAccountMapPropertiesParametersSchema(string refProperty = default(string)) { RefProperty = refProperty; @@ -44,3 +43,4 @@ public IntegrationAccountMapPropertiesParametersSchema() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartner.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartner.cs index 23cbb749e424..b473c37230a5 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartner.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartner.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The integration account partner. @@ -30,7 +32,18 @@ public IntegrationAccountPartner() { } /// /// Initializes a new instance of the IntegrationAccountPartner class. /// - public IntegrationAccountPartner(PartnerType partnerType, PartnerContent content, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object)) + /// The partner type. Possible values + /// include: 'NotSpecified', 'B2B' + /// The partner content. + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// The created time. + /// The changed time. + /// The metadata. + public IntegrationAccountPartner(PartnerType partnerType, PartnerContent content, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), object metadata = default(object)) : base(id, name, type, location, tags) { PartnerType = partnerType; @@ -51,13 +64,13 @@ public IntegrationAccountPartner() { } /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// /// Gets or sets the metadata. @@ -86,3 +99,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartnerFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartnerFilter.cs index 454f20d252be..ebe4d8589a42 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartnerFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartnerFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account partner filter for odata query. @@ -31,6 +29,8 @@ public IntegrationAccountPartnerFilter() { } /// Initializes a new instance of the IntegrationAccountPartnerFilter /// class. /// + /// The partner type of integration account + /// partner. Possible values include: 'NotSpecified', 'B2B' public IntegrationAccountPartnerFilter(PartnerType partnerType) { PartnerType = partnerType; @@ -46,7 +46,7 @@ public IntegrationAccountPartnerFilter(PartnerType partnerType) /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -54,3 +54,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchema.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchema.cs index 556bdfd350cb..48677949280f 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchema.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchema.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The integration account schema. @@ -30,7 +32,24 @@ public IntegrationAccountSchema() { } /// /// Initializes a new instance of the IntegrationAccountSchema class. /// - public IntegrationAccountSchema(SchemaType schemaType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string targetNamespace = default(string), string documentName = default(string), string fileName = default(string), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object), object content = default(object), string contentType = default(string), ContentLink contentLink = default(ContentLink)) + /// The schema type. Possible values include: + /// 'NotSpecified', 'Xml' + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// The target namespace of the + /// schema. + /// The document name. + /// The file name. + /// The created time. + /// The changed time. + /// The metadata. + /// The content. + /// The content type. + /// The content link. + public IntegrationAccountSchema(SchemaType schemaType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string targetNamespace = default(string), string documentName = default(string), string fileName = default(string), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), object metadata = default(object), object content = default(object), string contentType = default(string), ContentLink contentLink = default(ContentLink)) : base(id, name, type, location, tags) { SchemaType = schemaType; @@ -74,13 +93,13 @@ public IntegrationAccountSchema() { } /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// /// Gets or sets the metadata. @@ -104,7 +123,7 @@ public IntegrationAccountSchema() { } /// Gets the content link. /// [JsonProperty(PropertyName = "properties.contentLink")] - public ContentLink ContentLink { get; private set; } + public ContentLink ContentLink { get; protected set; } /// /// Validate the object. @@ -117,3 +136,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchemaFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchemaFilter.cs index 97882e9fa9e9..1c64cd95a0a1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchemaFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchemaFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account schema filter for odata query. @@ -31,6 +29,8 @@ public IntegrationAccountSchemaFilter() { } /// Initializes a new instance of the IntegrationAccountSchemaFilter /// class. /// + /// The schema type of integration account + /// schema. Possible values include: 'NotSpecified', 'Xml' public IntegrationAccountSchemaFilter(SchemaType schemaType) { SchemaType = schemaType; @@ -46,7 +46,7 @@ public IntegrationAccountSchemaFilter(SchemaType schemaType) /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -54,3 +54,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs index 2b9029810be2..97b4d3d2fe29 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSession.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The integration account session. @@ -30,7 +32,15 @@ public IntegrationAccountSession() { } /// /// Initializes a new instance of the IntegrationAccountSession class. /// - public IntegrationAccountSession(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object content = default(object)) + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// The created time. + /// The changed time. + /// The session content. + public IntegrationAccountSession(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), object content = default(object)) : base(id, name, type, location, tags) { CreatedTime = createdTime; @@ -42,13 +52,13 @@ public IntegrationAccountSession() { } /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// /// Gets or sets the session content. @@ -58,3 +68,4 @@ public IntegrationAccountSession() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs index 451a29b2c80e..7042cef101e6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSessionFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account session filter. @@ -31,7 +29,9 @@ public IntegrationAccountSessionFilter() { } /// Initializes a new instance of the IntegrationAccountSessionFilter /// class. /// - public IntegrationAccountSessionFilter(DateTime changedTime) + /// The changed time of integration account + /// sessions. + public IntegrationAccountSessionFilter(System.DateTime changedTime) { ChangedTime = changedTime; } @@ -40,12 +40,12 @@ public IntegrationAccountSessionFilter(DateTime changedTime) /// Gets or sets the changed time of integration account sessions. /// [JsonProperty(PropertyName = "changedTime")] - public DateTime ChangedTime { get; set; } + public System.DateTime ChangedTime { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -54,3 +54,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSku.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSku.cs index 47e359ea3f13..e26dab3e15a7 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSku.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSku.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account sku. @@ -29,14 +27,16 @@ public IntegrationAccountSku() { } /// /// Initializes a new instance of the IntegrationAccountSku class. /// + /// The sku name. Possible values include: + /// 'NotSpecified', 'Free', 'Standard' public IntegrationAccountSku(IntegrationAccountSkuName name) { Name = name; } /// - /// Gets or sets the sku name. Possible values include: - /// 'NotSpecified', 'Free', 'Standard' + /// Gets or sets the sku name. Possible values include: 'NotSpecified', + /// 'Free', 'Standard' /// [JsonProperty(PropertyName = "name")] public IntegrationAccountSkuName Name { get; set; } @@ -44,7 +44,7 @@ public IntegrationAccountSku(IntegrationAccountSkuName name) /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -52,3 +52,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSkuName.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSkuName.cs index 205e2a57d7c6..b7dba290f77d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSkuName.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSkuName.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -26,3 +30,4 @@ public enum IntegrationAccountSkuName Standard } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyType.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyType.cs index 5dc16c9cc328..491b73fb5312 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyType.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyType.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -26,3 +30,4 @@ public enum KeyType Secondary } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReference.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReference.cs index 339442482700..c9526cd8c30b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReference.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReference.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The reference to the key vault key. @@ -29,6 +28,10 @@ public KeyVaultKeyReference() { } /// /// Initializes a new instance of the KeyVaultKeyReference class. /// + /// The key vault reference. + /// The private key name in key vault. + /// The private key version in key + /// vault. public KeyVaultKeyReference(KeyVaultKeyReferenceKeyVault keyVault, string keyName, string keyVersion = default(string)) { KeyVault = keyVault; @@ -73,3 +76,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReferenceKeyVault.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReferenceKeyVault.cs index 41b1c4179ad9..329afe0e4452 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReferenceKeyVault.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReferenceKeyVault.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The key vault reference. @@ -31,6 +29,9 @@ public KeyVaultKeyReferenceKeyVault() { } /// Initializes a new instance of the KeyVaultKeyReferenceKeyVault /// class. /// + /// The resource id. + /// The resource name. + /// The resource type. public KeyVaultKeyReferenceKeyVault(string id = default(string), string name = default(string), string type = default(string)) { Id = id; @@ -48,13 +49,14 @@ public KeyVaultKeyReferenceKeyVault() { } /// Gets the resource name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + public string Name { get; protected set; } /// /// Gets the resource type. /// [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + public string Type { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/MapType.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/MapType.cs index 66a351b9c36f..63a5b64cc452 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/MapType.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/MapType.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -24,3 +28,4 @@ public enum MapType Xslt } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/MessageFilterType.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/MessageFilterType.cs index 5a06637f1036..f8216f86d512 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/MessageFilterType.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/MessageFilterType.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -26,3 +30,4 @@ public enum MessageFilterType Exclude } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Operation.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Operation.cs index 87d9cb6c6a7e..3ccce9a84f2e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Operation.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Operation.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// Logic REST API operation @@ -29,6 +27,10 @@ public Operation() { } /// /// Initializes a new instance of the Operation class. /// + /// Operation name: + /// {provider}/{resource}/{operation} + /// The object that represents the + /// operation. public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) { Name = name; @@ -49,3 +51,4 @@ public Operation() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/OperationDisplay.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/OperationDisplay.cs index d3a0018e1d98..ee55e751ca01 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/OperationDisplay.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/OperationDisplay.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The object that represents the operation. @@ -29,6 +27,11 @@ public OperationDisplay() { } /// /// Initializes a new instance of the OperationDisplay class. /// + /// Service provider: Microsoft.Logic + /// Resource on which the operation is + /// performed: Profile, endpoint, etc. + /// Operation type: Read, write, delete, + /// etc. public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string)) { Provider = provider; @@ -43,8 +46,8 @@ public OperationDisplay() { } public string Provider { get; set; } /// - /// Gets or sets resource on which the operation is performed: - /// Profile, endpoint, etc. + /// Gets or sets resource on which the operation is performed: Profile, + /// endpoint, etc. /// [JsonProperty(PropertyName = "resource")] public string Resource { get; set; } @@ -57,3 +60,4 @@ public OperationDisplay() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Page.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Page.cs index 0cca1890ca9c..f40be2a36460 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Page.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Page.cs @@ -1,17 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System.Collections.Generic; - using System.Linq; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Azure; using Newtonsoft.Json; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. @@ -35,16 +39,17 @@ public class Page : IPage /// A an enumerator that can be used to iterate through the collection. public IEnumerator GetEnumerator() { - return (Items == null) ? Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ParameterType.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ParameterType.cs index 68ff309eb7d0..6f3d415267bb 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ParameterType.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ParameterType.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -38,3 +42,4 @@ public enum ParameterType SecureObject } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerContent.cs index 63c5ba6ffa78..82cabe7ba1c6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerContent.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The integration account partner content. @@ -29,6 +27,7 @@ public PartnerContent() { } /// /// Initializes a new instance of the PartnerContent class. /// + /// The B2B partner content. public PartnerContent(B2BPartnerContent b2b = default(B2BPartnerContent)) { B2b = b2b; @@ -42,3 +41,4 @@ public PartnerContent() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerType.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerType.cs index 18db5435da62..731f505821b3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerType.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerType.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -24,3 +28,4 @@ public enum PartnerType B2B } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceFrequency.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceFrequency.cs index bcdb8e228d12..ec834f6a46a6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceFrequency.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceFrequency.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -36,3 +40,4 @@ public enum RecurrenceFrequency Year } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceSchedule.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceSchedule.cs index 1dd504c48136..7e63f856f4c1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceSchedule.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceSchedule.cs @@ -1,20 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The recurrence schedule. @@ -29,6 +29,11 @@ public RecurrenceSchedule() { } /// /// Initializes a new instance of the RecurrenceSchedule class. /// + /// The minutes. + /// The hours. + /// The days of the week. + /// The month days. + /// The monthly occurrences. public RecurrenceSchedule(IList minutes = default(IList), IList hours = default(IList), IList weekDays = default(IList), IList monthDays = default(IList), IList monthlyOccurrences = default(IList)) { Minutes = minutes; @@ -70,3 +75,4 @@ public RecurrenceSchedule() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceScheduleOccurrence.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceScheduleOccurrence.cs index 1464ae3ea678..3dd1d3369e6b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceScheduleOccurrence.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceScheduleOccurrence.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The recurrence schedule occurence. @@ -31,6 +29,10 @@ public RecurrenceScheduleOccurrence() { } /// Initializes a new instance of the RecurrenceScheduleOccurrence /// class. /// + /// The day of the week. Possible values include: + /// 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', + /// 'Saturday' + /// The occurrence. public RecurrenceScheduleOccurrence(DayOfWeek? day = default(DayOfWeek?), int? occurrence = default(int?)) { Day = day; @@ -53,3 +55,4 @@ public RecurrenceScheduleOccurrence() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Resource.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Resource.cs index 30f9fcb5a284..ea23771933cf 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Resource.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Resource.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Azure; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The base resource type. @@ -29,6 +31,11 @@ public Resource() { } /// /// Initializes a new instance of the Resource class. /// + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) { Id = id; @@ -42,19 +49,19 @@ public Resource() { } /// Gets the resource id. /// [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } + public string Id { get; protected set; } /// - /// Gets gets the resource name. + /// Gets the resource name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + public string Name { get; protected set; } /// - /// Gets gets the resource type. + /// Gets the resource type. /// [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + public string Type { get; protected set; } /// /// Gets or sets the resource location. @@ -70,3 +77,4 @@ public Resource() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ResourceReference.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ResourceReference.cs index 152f371bb436..e5562de2e903 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ResourceReference.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ResourceReference.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The resource reference. @@ -29,6 +27,9 @@ public ResourceReference() { } /// /// Initializes a new instance of the ResourceReference class. /// + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. public ResourceReference(string id = default(string), string name = default(string), string type = default(string)) { Id = id; @@ -40,19 +41,20 @@ public ResourceReference() { } /// Gets the resource id. /// [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } + public string Id { get; protected set; } /// - /// Gets gets the resource name. + /// Gets the resource name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + public string Name { get; protected set; } /// - /// Gets gets the resource type. + /// Gets the resource type. /// [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + public string Type { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SchemaType.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SchemaType.cs index 530766532db6..4d324118c590 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SchemaType.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SchemaType.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -24,3 +28,4 @@ public enum SchemaType Xml } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SegmentTerminatorSuffix.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SegmentTerminatorSuffix.cs index 23a3616d9482..1e4ac3a6591f 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SegmentTerminatorSuffix.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SegmentTerminatorSuffix.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -30,3 +34,4 @@ public enum SegmentTerminatorSuffix CRLF } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Sku.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Sku.cs index 492c0b262210..2ee1d57b1d3e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Sku.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Sku.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The sku type. @@ -29,6 +27,10 @@ public Sku() { } /// /// Initializes a new instance of the Sku class. /// + /// The name. Possible values include: + /// 'NotSpecified', 'Free', 'Shared', 'Basic', 'Standard', + /// 'Premium' + /// The reference to plan. public Sku(SkuName name, ResourceReference plan = default(ResourceReference)) { Name = name; @@ -51,7 +53,7 @@ public Sku() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -59,3 +61,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SkuName.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SkuName.cs index 355b488b3fcd..17ffbe9e6b80 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SkuName.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SkuName.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -32,3 +36,4 @@ public enum SkuName Premium } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SubResource.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SubResource.cs index 8e07a8e99974..d735e261ade0 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SubResource.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SubResource.cs @@ -1,20 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Azure; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The sub resource type. @@ -29,6 +29,7 @@ public SubResource() { } /// /// Initializes a new instance of the SubResource class. /// + /// The resource id. public SubResource(string id = default(string)) { Id = id; @@ -38,7 +39,8 @@ public SubResource() { } /// Gets the resource id. /// [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } + public string Id { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/TrailingSeparatorPolicy.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/TrailingSeparatorPolicy.cs index 488c98e71849..32d330de3892 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/TrailingSeparatorPolicy.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/TrailingSeparatorPolicy.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -28,3 +32,4 @@ public enum TrailingSeparatorPolicy Mandatory } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/UsageIndicator.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/UsageIndicator.cs index 0bb28f0e299b..93c486ef0a37 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/UsageIndicator.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/UsageIndicator.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -28,3 +32,4 @@ public enum UsageIndicator Production } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Workflow.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Workflow.cs index 79f5108eaa0d..479dcec1689e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Workflow.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Workflow.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The workflow type. @@ -30,7 +32,28 @@ public Workflow() { } /// /// Initializes a new instance of the Workflow class. /// - public Workflow(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), WorkflowProvisioningState? provisioningState = default(WorkflowProvisioningState?), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), WorkflowState? state = default(WorkflowState?), string version = default(string), string accessEndpoint = default(string), Sku sku = default(Sku), ResourceReference integrationAccount = default(ResourceReference), object definition = default(object), IDictionary parameters = default(IDictionary)) + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// Gets the provisioning state. + /// Possible values include: 'NotSpecified', 'Accepted', 'Running', + /// 'Ready', 'Creating', 'Created', 'Deleting', 'Deleted', 'Canceled', + /// 'Failed', 'Succeeded', 'Moving', 'Updating', 'Registering', + /// 'Registered', 'Unregistering', 'Unregistered', 'Completed' + /// Gets the created time. + /// Gets the changed time. + /// The state. Possible values include: + /// 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', + /// 'Suspended' + /// Gets the version. + /// Gets the access endpoint. + /// The sku. + /// The integration account. + /// The definition. + /// The parameters. + public Workflow(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), WorkflowProvisioningState? provisioningState = default(WorkflowProvisioningState?), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), WorkflowState? state = default(WorkflowState?), string version = default(string), string accessEndpoint = default(string), Sku sku = default(Sku), ResourceReference integrationAccount = default(ResourceReference), object definition = default(object), IDictionary parameters = default(IDictionary)) : base(id, name, type, location, tags) { ProvisioningState = provisioningState; @@ -46,26 +69,26 @@ public Workflow() { } } /// - /// Gets gets the provisioning state. Possible values include: + /// Gets the provisioning state. Possible values include: /// 'NotSpecified', 'Accepted', 'Running', 'Ready', 'Creating', /// 'Created', 'Deleting', 'Deleted', 'Canceled', 'Failed', /// 'Succeeded', 'Moving', 'Updating', 'Registering', 'Registered', /// 'Unregistering', 'Unregistered', 'Completed' /// [JsonProperty(PropertyName = "properties.provisioningState")] - public WorkflowProvisioningState? ProvisioningState { get; private set; } + public WorkflowProvisioningState? ProvisioningState { get; protected set; } /// - /// Gets gets the created time. + /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// - /// Gets gets the changed time. + /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// /// Gets or sets the state. Possible values include: 'NotSpecified', @@ -75,16 +98,16 @@ public Workflow() { } public WorkflowState? State { get; set; } /// - /// Gets gets the version. + /// Gets the version. /// [JsonProperty(PropertyName = "properties.version")] - public string Version { get; private set; } + public string Version { get; protected set; } /// - /// Gets gets the access endpoint. + /// Gets the access endpoint. /// [JsonProperty(PropertyName = "properties.accessEndpoint")] - public string AccessEndpoint { get; private set; } + public string AccessEndpoint { get; protected set; } /// /// Gets or sets the sku. @@ -118,10 +141,11 @@ public Workflow() { } /// public virtual void Validate() { - if (this.Sku != null) + if (Sku != null) { - this.Sku.Validate(); + Sku.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowFilter.cs index 4e17c8e61b3b..121bd43e0300 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow filter. @@ -29,6 +27,9 @@ public WorkflowFilter() { } /// /// Initializes a new instance of the WorkflowFilter class. /// + /// The state of workflows. Possible values + /// include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', + /// 'Deleted', 'Suspended' public WorkflowFilter(WorkflowState? state = default(WorkflowState?)) { State = state; @@ -44,3 +45,4 @@ public WorkflowFilter() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowOutputParameter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowOutputParameter.cs index 2a6e7b7bb005..8fb67077ba91 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowOutputParameter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowOutputParameter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow output parameter. @@ -29,6 +27,13 @@ public WorkflowOutputParameter() { } /// /// Initializes a new instance of the WorkflowOutputParameter class. /// + /// The type. Possible values include: + /// 'NotSpecified', 'String', 'SecureString', 'Int', 'Float', 'Bool', + /// 'Array', 'Object', 'SecureObject' + /// The value. + /// The metadata. + /// The description. + /// Gets the error. public WorkflowOutputParameter(ParameterType? type = default(ParameterType?), object value = default(object), object metadata = default(object), string description = default(string), object error = default(object)) : base(type, value, metadata, description) { @@ -36,10 +41,11 @@ public WorkflowOutputParameter() { } } /// - /// Gets gets the error. + /// Gets the error. /// [JsonProperty(PropertyName = "error")] - public object Error { get; private set; } + public object Error { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowParameter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowParameter.cs index 4c5c32650d1c..5bbdad30a6c0 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowParameter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowParameter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow parameters. @@ -29,6 +27,12 @@ public WorkflowParameter() { } /// /// Initializes a new instance of the WorkflowParameter class. /// + /// The type. Possible values include: + /// 'NotSpecified', 'String', 'SecureString', 'Int', 'Float', 'Bool', + /// 'Array', 'Object', 'SecureObject' + /// The value. + /// The metadata. + /// The description. public WorkflowParameter(ParameterType? type = default(ParameterType?), object value = default(object), object metadata = default(object), string description = default(string)) { Type = type; @@ -65,3 +69,4 @@ public WorkflowParameter() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowProvisioningState.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowProvisioningState.cs index 256fcb64e3b4..5181625e54b7 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowProvisioningState.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowProvisioningState.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -56,3 +60,4 @@ public enum WorkflowProvisioningState Completed } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRun.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRun.cs index 318815891fc1..476aaeac9cc3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRun.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRun.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The workflow run. @@ -30,7 +32,25 @@ public WorkflowRun() { } /// /// Initializes a new instance of the WorkflowRun class. /// - public WorkflowRun(string id = default(string), DateTime? startTime = default(DateTime?), DateTime? endTime = default(DateTime?), WorkflowStatus? status = default(WorkflowStatus?), string code = default(string), object error = default(object), string correlationId = default(string), Correlation correlation = default(Correlation), ResourceReference workflow = default(ResourceReference), WorkflowRunTrigger trigger = default(WorkflowRunTrigger), IDictionary outputs = default(IDictionary), WorkflowRunTrigger response = default(WorkflowRunTrigger), string name = default(string), string type = default(string)) + /// The resource id. + /// Gets the start time. + /// Gets the end time. + /// Gets the status. Possible values include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', + /// 'TimedOut', 'Aborted', 'Ignored' + /// Gets the code. + /// Gets the error. + /// Gets the correlation id. + /// The run correlation. + /// Gets the reference to workflow + /// version. + /// Gets the fired trigger. + /// Gets the outputs. + /// Gets the response of the flow run. + /// Gets the workflow run name. + /// Gets the workflow run type. + public WorkflowRun(string id = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), WorkflowStatus? status = default(WorkflowStatus?), string code = default(string), object error = default(object), string correlationId = default(string), Correlation correlation = default(Correlation), ResourceReference workflow = default(ResourceReference), WorkflowRunTrigger trigger = default(WorkflowRunTrigger), IDictionary outputs = default(IDictionary), WorkflowRunTrigger response = default(WorkflowRunTrigger), string name = default(string), string type = default(string)) : base(id) { StartTime = startTime; @@ -49,43 +69,42 @@ public WorkflowRun() { } } /// - /// Gets gets the start time. + /// Gets the start time. /// [JsonProperty(PropertyName = "properties.startTime")] - public DateTime? StartTime { get; private set; } + public System.DateTime? StartTime { get; protected set; } /// - /// Gets gets the end time. + /// Gets the end time. /// [JsonProperty(PropertyName = "properties.endTime")] - public DateTime? EndTime { get; private set; } + public System.DateTime? EndTime { get; protected set; } /// - /// Gets gets the status. Possible values include: 'NotSpecified', - /// 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', - /// 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', - /// 'Aborted', 'Ignored' + /// Gets the status. Possible values include: 'NotSpecified', 'Paused', + /// 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', + /// 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' /// [JsonProperty(PropertyName = "properties.status")] - public WorkflowStatus? Status { get; private set; } + public WorkflowStatus? Status { get; protected set; } /// - /// Gets gets the code. + /// Gets the code. /// [JsonProperty(PropertyName = "properties.code")] - public string Code { get; private set; } + public string Code { get; protected set; } /// - /// Gets gets the error. + /// Gets the error. /// [JsonProperty(PropertyName = "properties.error")] - public object Error { get; private set; } + public object Error { get; protected set; } /// - /// Gets gets the correlation id. + /// Gets the correlation id. /// [JsonProperty(PropertyName = "properties.correlationId")] - public string CorrelationId { get; private set; } + public string CorrelationId { get; protected set; } /// /// Gets or sets the run correlation. @@ -94,40 +113,41 @@ public WorkflowRun() { } public Correlation Correlation { get; set; } /// - /// Gets gets the reference to workflow version. + /// Gets the reference to workflow version. /// [JsonProperty(PropertyName = "properties.workflow")] - public ResourceReference Workflow { get; private set; } + public ResourceReference Workflow { get; protected set; } /// - /// Gets gets the fired trigger. + /// Gets the fired trigger. /// [JsonProperty(PropertyName = "properties.trigger")] - public WorkflowRunTrigger Trigger { get; private set; } + public WorkflowRunTrigger Trigger { get; protected set; } /// - /// Gets gets the outputs. + /// Gets the outputs. /// [JsonProperty(PropertyName = "properties.outputs")] - public IDictionary Outputs { get; private set; } + public IDictionary Outputs { get; protected set; } /// - /// Gets gets the response of the flow run. + /// Gets the response of the flow run. /// [JsonProperty(PropertyName = "properties.response")] - public WorkflowRunTrigger Response { get; private set; } + public WorkflowRunTrigger Response { get; protected set; } /// - /// Gets gets the workflow run name. + /// Gets the workflow run name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + public string Name { get; protected set; } /// - /// Gets gets the workflow run type. + /// Gets the workflow run type. /// [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + public string Type { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunAction.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunAction.cs index 2e0b6347a7c4..5b633a40e3da 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunAction.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunAction.cs @@ -1,20 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow run action. @@ -30,7 +30,24 @@ public WorkflowRunAction() { } /// /// Initializes a new instance of the WorkflowRunAction class. /// - public WorkflowRunAction(string id = default(string), DateTime? startTime = default(DateTime?), DateTime? endTime = default(DateTime?), WorkflowStatus? status = default(WorkflowStatus?), string code = default(string), object error = default(object), string trackingId = default(string), Correlation correlation = default(Correlation), ContentLink inputsLink = default(ContentLink), ContentLink outputsLink = default(ContentLink), object trackedProperties = default(object), string name = default(string), string type = default(string)) + /// The resource id. + /// Gets the start time. + /// Gets the end time. + /// Gets the status. Possible values include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', + /// 'TimedOut', 'Aborted', 'Ignored' + /// Gets the code. + /// Gets the error. + /// Gets the tracking id. + /// The correlation properties. + /// Gets the link to inputs. + /// Gets the link to outputs. + /// Gets the tracked + /// properties. + /// Gets the workflow run action name. + /// Gets the workflow run action type. + public WorkflowRunAction(string id = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), WorkflowStatus? status = default(WorkflowStatus?), string code = default(string), object error = default(object), string trackingId = default(string), Correlation correlation = default(Correlation), ContentLink inputsLink = default(ContentLink), ContentLink outputsLink = default(ContentLink), object trackedProperties = default(object), string name = default(string), string type = default(string)) : base(id) { StartTime = startTime; @@ -48,43 +65,42 @@ public WorkflowRunAction() { } } /// - /// Gets gets the start time. + /// Gets the start time. /// [JsonProperty(PropertyName = "properties.startTime")] - public DateTime? StartTime { get; private set; } + public System.DateTime? StartTime { get; protected set; } /// - /// Gets gets the end time. + /// Gets the end time. /// [JsonProperty(PropertyName = "properties.endTime")] - public DateTime? EndTime { get; private set; } + public System.DateTime? EndTime { get; protected set; } /// - /// Gets gets the status. Possible values include: 'NotSpecified', - /// 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', - /// 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', - /// 'Aborted', 'Ignored' + /// Gets the status. Possible values include: 'NotSpecified', 'Paused', + /// 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', + /// 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' /// [JsonProperty(PropertyName = "properties.status")] - public WorkflowStatus? Status { get; private set; } + public WorkflowStatus? Status { get; protected set; } /// - /// Gets gets the code. + /// Gets the code. /// [JsonProperty(PropertyName = "properties.code")] - public string Code { get; private set; } + public string Code { get; protected set; } /// - /// Gets gets the error. + /// Gets the error. /// [JsonProperty(PropertyName = "properties.error")] - public object Error { get; private set; } + public object Error { get; protected set; } /// - /// Gets gets the tracking id. + /// Gets the tracking id. /// [JsonProperty(PropertyName = "properties.trackingId")] - public string TrackingId { get; private set; } + public string TrackingId { get; protected set; } /// /// Gets or sets the correlation properties. @@ -93,34 +109,35 @@ public WorkflowRunAction() { } public Correlation Correlation { get; set; } /// - /// Gets gets the link to inputs. + /// Gets the link to inputs. /// [JsonProperty(PropertyName = "properties.inputsLink")] - public ContentLink InputsLink { get; private set; } + public ContentLink InputsLink { get; protected set; } /// - /// Gets gets the link to outputs. + /// Gets the link to outputs. /// [JsonProperty(PropertyName = "properties.outputsLink")] - public ContentLink OutputsLink { get; private set; } + public ContentLink OutputsLink { get; protected set; } /// - /// Gets gets the tracked properties. + /// Gets the tracked properties. /// [JsonProperty(PropertyName = "properties.trackedProperties")] - public object TrackedProperties { get; private set; } + public object TrackedProperties { get; protected set; } /// - /// Gets gets the workflow run action name. + /// Gets the workflow run action name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + public string Name { get; protected set; } /// - /// Gets gets the workflow run action type. + /// Gets the workflow run action type. /// [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + public string Type { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunActionFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunActionFilter.cs index 46b30bec9d95..2cae0bd4130e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunActionFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunActionFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow run action filter. @@ -29,6 +27,10 @@ public WorkflowRunActionFilter() { } /// /// Initializes a new instance of the WorkflowRunActionFilter class. /// + /// The status of workflow run action. Possible + /// values include: 'NotSpecified', 'Paused', 'Running', 'Waiting', + /// 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', + /// 'Faulted', 'TimedOut', 'Aborted', 'Ignored' public WorkflowRunActionFilter(WorkflowStatus? status = default(WorkflowStatus?)) { Status = status; @@ -45,3 +47,4 @@ public WorkflowRunActionFilter() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunFilter.cs index f0de481ede95..bb0a8fa898ae 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow run filter. @@ -29,6 +27,10 @@ public WorkflowRunFilter() { } /// /// Initializes a new instance of the WorkflowRunFilter class. /// + /// The status of workflow run. Possible values + /// include: 'NotSpecified', 'Paused', 'Running', 'Waiting', + /// 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', + /// 'Faulted', 'TimedOut', 'Aborted', 'Ignored' public WorkflowRunFilter(WorkflowStatus? status = default(WorkflowStatus?)) { Status = status; @@ -45,3 +47,4 @@ public WorkflowRunFilter() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunTrigger.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunTrigger.cs index ba61b3c106f1..fd5d9db7a9f7 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunTrigger.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunTrigger.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow run trigger. @@ -29,7 +27,24 @@ public WorkflowRunTrigger() { } /// /// Initializes a new instance of the WorkflowRunTrigger class. /// - public WorkflowRunTrigger(string name = default(string), object inputs = default(object), ContentLink inputsLink = default(ContentLink), object outputs = default(object), ContentLink outputsLink = default(ContentLink), DateTime? startTime = default(DateTime?), DateTime? endTime = default(DateTime?), string trackingId = default(string), Correlation correlation = default(Correlation), string code = default(string), WorkflowStatus? status = default(WorkflowStatus?), object error = default(object), object trackedProperties = default(object)) + /// Gets the name. + /// Gets the inputs. + /// Gets the link to inputs. + /// Gets the outputs. + /// Gets the link to outputs. + /// Gets the start time. + /// Gets the end time. + /// Gets the tracking id. + /// The run correlation. + /// Gets the code. + /// Gets the status. Possible values include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', + /// 'TimedOut', 'Aborted', 'Ignored' + /// Gets the error. + /// Gets the tracked + /// properties. + public WorkflowRunTrigger(string name = default(string), object inputs = default(object), ContentLink inputsLink = default(ContentLink), object outputs = default(object), ContentLink outputsLink = default(ContentLink), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), string trackingId = default(string), Correlation correlation = default(Correlation), string code = default(string), WorkflowStatus? status = default(WorkflowStatus?), object error = default(object), object trackedProperties = default(object)) { Name = name; Inputs = inputs; @@ -47,52 +62,52 @@ public WorkflowRunTrigger() { } } /// - /// Gets gets the name. + /// Gets the name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + public string Name { get; protected set; } /// - /// Gets gets the inputs. + /// Gets the inputs. /// [JsonProperty(PropertyName = "inputs")] - public object Inputs { get; private set; } + public object Inputs { get; protected set; } /// - /// Gets gets the link to inputs. + /// Gets the link to inputs. /// [JsonProperty(PropertyName = "inputsLink")] - public ContentLink InputsLink { get; private set; } + public ContentLink InputsLink { get; protected set; } /// - /// Gets gets the outputs. + /// Gets the outputs. /// [JsonProperty(PropertyName = "outputs")] - public object Outputs { get; private set; } + public object Outputs { get; protected set; } /// - /// Gets gets the link to outputs. + /// Gets the link to outputs. /// [JsonProperty(PropertyName = "outputsLink")] - public ContentLink OutputsLink { get; private set; } + public ContentLink OutputsLink { get; protected set; } /// - /// Gets gets the start time. + /// Gets the start time. /// [JsonProperty(PropertyName = "startTime")] - public DateTime? StartTime { get; private set; } + public System.DateTime? StartTime { get; protected set; } /// - /// Gets gets the end time. + /// Gets the end time. /// [JsonProperty(PropertyName = "endTime")] - public DateTime? EndTime { get; private set; } + public System.DateTime? EndTime { get; protected set; } /// - /// Gets gets the tracking id. + /// Gets the tracking id. /// [JsonProperty(PropertyName = "trackingId")] - public string TrackingId { get; private set; } + public string TrackingId { get; protected set; } /// /// Gets or sets the run correlation. @@ -101,31 +116,31 @@ public WorkflowRunTrigger() { } public Correlation Correlation { get; set; } /// - /// Gets gets the code. + /// Gets the code. /// [JsonProperty(PropertyName = "code")] - public string Code { get; private set; } + public string Code { get; protected set; } /// - /// Gets gets the status. Possible values include: 'NotSpecified', - /// 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', - /// 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', - /// 'Aborted', 'Ignored' + /// Gets the status. Possible values include: 'NotSpecified', 'Paused', + /// 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', + /// 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' /// [JsonProperty(PropertyName = "status")] - public WorkflowStatus? Status { get; private set; } + public WorkflowStatus? Status { get; protected set; } /// - /// Gets gets the error. + /// Gets the error. /// [JsonProperty(PropertyName = "error")] - public object Error { get; private set; } + public object Error { get; protected set; } /// - /// Gets gets the tracked properties. + /// Gets the tracked properties. /// [JsonProperty(PropertyName = "trackedProperties")] - public object TrackedProperties { get; private set; } + public object TrackedProperties { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowState.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowState.cs index 738eb8f5c203..672ba70b9c68 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowState.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowState.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -32,3 +36,4 @@ public enum WorkflowState Suspended } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowStatus.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowStatus.cs index 661c653be054..984fde58c6bb 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowStatus.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowStatus.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -46,3 +50,4 @@ public enum WorkflowStatus Ignored } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTrigger.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTrigger.cs index c5ba2374d439..5b01c5add756 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTrigger.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTrigger.cs @@ -1,20 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow trigger. @@ -30,7 +30,31 @@ public WorkflowTrigger() { } /// /// Initializes a new instance of the WorkflowTrigger class. /// - public WorkflowTrigger(string id = default(string), WorkflowTriggerProvisioningState? provisioningState = default(WorkflowTriggerProvisioningState?), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), WorkflowState? state = default(WorkflowState?), WorkflowStatus? status = default(WorkflowStatus?), DateTime? lastExecutionTime = default(DateTime?), DateTime? nextExecutionTime = default(DateTime?), WorkflowTriggerRecurrence recurrence = default(WorkflowTriggerRecurrence), ResourceReference workflow = default(ResourceReference), string name = default(string), string type = default(string)) + /// The resource id. + /// Gets the provisioning state. + /// Possible values include: 'NotSpecified', 'Accepted', 'Running', + /// 'Ready', 'Creating', 'Created', 'Deleting', 'Deleted', 'Canceled', + /// 'Failed', 'Succeeded', 'Moving', 'Updating', 'Registering', + /// 'Registered', 'Unregistering', 'Unregistered', 'Completed' + /// Gets the created time. + /// Gets the changed time. + /// Gets the state. Possible values include: + /// 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', + /// 'Suspended' + /// Gets the status. Possible values include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', + /// 'TimedOut', 'Aborted', 'Ignored' + /// Gets the last execution + /// time. + /// Gets the next execution + /// time. + /// Gets the workflow trigger + /// recurrence. + /// Gets the reference to workflow. + /// Gets the workflow trigger name. + /// Gets the workflow trigger type. + public WorkflowTrigger(string id = default(string), WorkflowTriggerProvisioningState? provisioningState = default(WorkflowTriggerProvisioningState?), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), WorkflowState? state = default(WorkflowState?), WorkflowStatus? status = default(WorkflowStatus?), System.DateTime? lastExecutionTime = default(System.DateTime?), System.DateTime? nextExecutionTime = default(System.DateTime?), WorkflowTriggerRecurrence recurrence = default(WorkflowTriggerRecurrence), ResourceReference workflow = default(ResourceReference), string name = default(string), string type = default(string)) : base(id) { ProvisioningState = provisioningState; @@ -47,78 +71,78 @@ public WorkflowTrigger() { } } /// - /// Gets gets the provisioning state. Possible values include: + /// Gets the provisioning state. Possible values include: /// 'NotSpecified', 'Accepted', 'Running', 'Ready', 'Creating', /// 'Created', 'Deleting', 'Deleted', 'Canceled', 'Failed', /// 'Succeeded', 'Moving', 'Updating', 'Registering', 'Registered', /// 'Unregistering', 'Unregistered', 'Completed' /// [JsonProperty(PropertyName = "properties.provisioningState")] - public WorkflowTriggerProvisioningState? ProvisioningState { get; private set; } + public WorkflowTriggerProvisioningState? ProvisioningState { get; protected set; } /// - /// Gets gets the created time. + /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// - /// Gets gets the changed time. + /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// - /// Gets gets the state. Possible values include: 'NotSpecified', + /// Gets the state. Possible values include: 'NotSpecified', /// 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended' /// [JsonProperty(PropertyName = "properties.state")] - public WorkflowState? State { get; private set; } + public WorkflowState? State { get; protected set; } /// - /// Gets gets the status. Possible values include: 'NotSpecified', - /// 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', - /// 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', - /// 'Aborted', 'Ignored' + /// Gets the status. Possible values include: 'NotSpecified', 'Paused', + /// 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', + /// 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' /// [JsonProperty(PropertyName = "properties.status")] - public WorkflowStatus? Status { get; private set; } + public WorkflowStatus? Status { get; protected set; } /// - /// Gets gets the last execution time. + /// Gets the last execution time. /// [JsonProperty(PropertyName = "properties.lastExecutionTime")] - public DateTime? LastExecutionTime { get; private set; } + public System.DateTime? LastExecutionTime { get; protected set; } /// - /// Gets gets the next execution time. + /// Gets the next execution time. /// [JsonProperty(PropertyName = "properties.nextExecutionTime")] - public DateTime? NextExecutionTime { get; private set; } + public System.DateTime? NextExecutionTime { get; protected set; } /// - /// Gets gets the workflow trigger recurrence. + /// Gets the workflow trigger recurrence. /// [JsonProperty(PropertyName = "properties.recurrence")] - public WorkflowTriggerRecurrence Recurrence { get; private set; } + public WorkflowTriggerRecurrence Recurrence { get; protected set; } /// - /// Gets gets the reference to workflow. + /// Gets the reference to workflow. /// [JsonProperty(PropertyName = "properties.workflow")] - public ResourceReference Workflow { get; private set; } + public ResourceReference Workflow { get; protected set; } /// - /// Gets gets the workflow trigger name. + /// Gets the workflow trigger name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + public string Name { get; protected set; } /// - /// Gets gets the workflow trigger type. + /// Gets the workflow trigger type. /// [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + public string Type { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerCallbackUrl.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerCallbackUrl.cs index 23210b7bf4ee..ab6665185fd8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerCallbackUrl.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerCallbackUrl.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow trigger callback URL. @@ -29,16 +27,18 @@ public WorkflowTriggerCallbackUrl() { } /// /// Initializes a new instance of the WorkflowTriggerCallbackUrl class. /// + /// Gets the workflow trigger callback URL. public WorkflowTriggerCallbackUrl(string value = default(string)) { Value = value; } /// - /// Gets gets the workflow trigger callback URL. + /// Gets the workflow trigger callback URL. /// [JsonProperty(PropertyName = "value")] - public string Value { get; private set; } + public string Value { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerFilter.cs index 61e8add353e4..73eb4c4b95a7 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow trigger filter. @@ -29,6 +27,9 @@ public WorkflowTriggerFilter() { } /// /// Initializes a new instance of the WorkflowTriggerFilter class. /// + /// The state of workflow trigger. Possible values + /// include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', + /// 'Deleted', 'Suspended' public WorkflowTriggerFilter(WorkflowState? state = default(WorkflowState?)) { State = state; @@ -44,3 +45,4 @@ public WorkflowTriggerFilter() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistory.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistory.cs index 14311f2f1400..33f5111b189b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistory.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistory.cs @@ -1,20 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow trigger history. @@ -30,7 +30,26 @@ public WorkflowTriggerHistory() { } /// /// Initializes a new instance of the WorkflowTriggerHistory class. /// - public WorkflowTriggerHistory(string id = default(string), DateTime? startTime = default(DateTime?), DateTime? endTime = default(DateTime?), WorkflowStatus? status = default(WorkflowStatus?), string code = default(string), object error = default(object), string trackingId = default(string), Correlation correlation = default(Correlation), ContentLink inputsLink = default(ContentLink), ContentLink outputsLink = default(ContentLink), bool? fired = default(bool?), ResourceReference run = default(ResourceReference), string name = default(string), string type = default(string)) + /// The resource id. + /// Gets the start time. + /// Gets the end time. + /// Gets the status. Possible values include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', + /// 'TimedOut', 'Aborted', 'Ignored' + /// Gets the code. + /// Gets the error. + /// Gets the tracking id. + /// The run correlation. + /// Gets the link to input parameters. + /// Gets the link to output + /// parameters. + /// Gets a value indicating whether trigger was + /// fired. + /// Gets the reference to workflow run. + /// Gets the workflow trigger history name. + /// Gets the workflow trigger history type. + public WorkflowTriggerHistory(string id = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), WorkflowStatus? status = default(WorkflowStatus?), string code = default(string), object error = default(object), string trackingId = default(string), Correlation correlation = default(Correlation), ContentLink inputsLink = default(ContentLink), ContentLink outputsLink = default(ContentLink), bool? fired = default(bool?), ResourceReference run = default(ResourceReference), string name = default(string), string type = default(string)) : base(id) { StartTime = startTime; @@ -49,43 +68,42 @@ public WorkflowTriggerHistory() { } } /// - /// Gets gets the start time. + /// Gets the start time. /// [JsonProperty(PropertyName = "properties.startTime")] - public DateTime? StartTime { get; private set; } + public System.DateTime? StartTime { get; protected set; } /// - /// Gets gets the end time. + /// Gets the end time. /// [JsonProperty(PropertyName = "properties.endTime")] - public DateTime? EndTime { get; private set; } + public System.DateTime? EndTime { get; protected set; } /// - /// Gets gets the status. Possible values include: 'NotSpecified', - /// 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', - /// 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', - /// 'Aborted', 'Ignored' + /// Gets the status. Possible values include: 'NotSpecified', 'Paused', + /// 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', + /// 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' /// [JsonProperty(PropertyName = "properties.status")] - public WorkflowStatus? Status { get; private set; } + public WorkflowStatus? Status { get; protected set; } /// - /// Gets gets the code. + /// Gets the code. /// [JsonProperty(PropertyName = "properties.code")] - public string Code { get; private set; } + public string Code { get; protected set; } /// - /// Gets gets the error. + /// Gets the error. /// [JsonProperty(PropertyName = "properties.error")] - public object Error { get; private set; } + public object Error { get; protected set; } /// - /// Gets gets the tracking id. + /// Gets the tracking id. /// [JsonProperty(PropertyName = "properties.trackingId")] - public string TrackingId { get; private set; } + public string TrackingId { get; protected set; } /// /// Gets or sets the run correlation. @@ -94,40 +112,41 @@ public WorkflowTriggerHistory() { } public Correlation Correlation { get; set; } /// - /// Gets gets the link to input parameters. + /// Gets the link to input parameters. /// [JsonProperty(PropertyName = "properties.inputsLink")] - public ContentLink InputsLink { get; private set; } + public ContentLink InputsLink { get; protected set; } /// - /// Gets gets the link to output parameters. + /// Gets the link to output parameters. /// [JsonProperty(PropertyName = "properties.outputsLink")] - public ContentLink OutputsLink { get; private set; } + public ContentLink OutputsLink { get; protected set; } /// - /// Gets gets a value indicating whether trigger was fired. + /// Gets a value indicating whether trigger was fired. /// [JsonProperty(PropertyName = "properties.fired")] - public bool? Fired { get; private set; } + public bool? Fired { get; protected set; } /// - /// Gets gets the reference to workflow run. + /// Gets the reference to workflow run. /// [JsonProperty(PropertyName = "properties.run")] - public ResourceReference Run { get; private set; } + public ResourceReference Run { get; protected set; } /// - /// Gets gets the workflow trigger history name. + /// Gets the workflow trigger history name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + public string Name { get; protected set; } /// - /// Gets gets the workflow trigger history type. + /// Gets the workflow trigger history type. /// [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + public string Type { get; protected set; } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistoryFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistoryFilter.cs index d00a052cccf0..7ea8e5c40e32 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistoryFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistoryFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow trigger history filter. @@ -31,6 +29,10 @@ public WorkflowTriggerHistoryFilter() { } /// Initializes a new instance of the WorkflowTriggerHistoryFilter /// class. /// + /// The status of workflow trigger history. + /// Possible values include: 'NotSpecified', 'Paused', 'Running', + /// 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', + /// 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' public WorkflowTriggerHistoryFilter(WorkflowStatus? status = default(WorkflowStatus?)) { Status = status; @@ -47,3 +49,4 @@ public WorkflowTriggerHistoryFilter() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerProvisioningState.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerProvisioningState.cs index 71b2b9fe5808..a468be9f0b5c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerProvisioningState.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerProvisioningState.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -56,3 +60,4 @@ public enum WorkflowTriggerProvisioningState Completed } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerRecurrence.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerRecurrence.cs index 8e471b13b278..75edee7af62e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerRecurrence.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerRecurrence.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The workflow trigger recurrence. @@ -29,7 +27,15 @@ public WorkflowTriggerRecurrence() { } /// /// Initializes a new instance of the WorkflowTriggerRecurrence class. /// - public WorkflowTriggerRecurrence(RecurrenceFrequency? frequency = default(RecurrenceFrequency?), int? interval = default(int?), DateTime? startTime = default(DateTime?), DateTime? endTime = default(DateTime?), string timeZone = default(string), RecurrenceSchedule schedule = default(RecurrenceSchedule)) + /// The frequency. Possible values include: + /// 'NotSpecified', 'Second', 'Minute', 'Hour', 'Day', 'Week', 'Month', + /// 'Year' + /// The interval. + /// The start time. + /// The end time. + /// The time zone. + /// The recurrence schedule. + public WorkflowTriggerRecurrence(RecurrenceFrequency? frequency = default(RecurrenceFrequency?), int? interval = default(int?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), string timeZone = default(string), RecurrenceSchedule schedule = default(RecurrenceSchedule)) { Frequency = frequency; Interval = interval; @@ -41,8 +47,8 @@ public WorkflowTriggerRecurrence() { } /// /// Gets or sets the frequency. Possible values include: - /// 'NotSpecified', 'Second', 'Minute', 'Hour', 'Day', 'Week', - /// 'Month', 'Year' + /// 'NotSpecified', 'Second', 'Minute', 'Hour', 'Day', 'Week', 'Month', + /// 'Year' /// [JsonProperty(PropertyName = "frequency")] public RecurrenceFrequency? Frequency { get; set; } @@ -57,13 +63,13 @@ public WorkflowTriggerRecurrence() { } /// Gets or sets the start time. /// [JsonProperty(PropertyName = "startTime")] - public DateTime? StartTime { get; set; } + public System.DateTime? StartTime { get; set; } /// /// Gets or sets the end time. /// [JsonProperty(PropertyName = "endTime")] - public DateTime? EndTime { get; set; } + public System.DateTime? EndTime { get; set; } /// /// Gets or sets the time zone. @@ -79,3 +85,4 @@ public WorkflowTriggerRecurrence() { } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowVersion.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowVersion.cs index 837cf0130164..6c1064bcb374 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowVersion.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowVersion.cs @@ -1,20 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; + using Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The workflow version. @@ -30,7 +32,23 @@ public WorkflowVersion() { } /// /// Initializes a new instance of the WorkflowVersion class. /// - public WorkflowVersion(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), WorkflowState? state = default(WorkflowState?), string version = default(string), string accessEndpoint = default(string), Sku sku = default(Sku), ResourceReference integrationAccount = default(ResourceReference), object definition = default(object), IDictionary parameters = default(IDictionary)) + /// The resource id. + /// Gets the resource name. + /// Gets the resource type. + /// The resource location. + /// The resource tags. + /// Gets the created time. + /// Gets the changed time. + /// The state. Possible values include: + /// 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', + /// 'Suspended' + /// Gets the version. + /// Gets the access endpoint. + /// The sku. + /// The integration account. + /// The definition. + /// The parameters. + public WorkflowVersion(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), System.DateTime? createdTime = default(System.DateTime?), System.DateTime? changedTime = default(System.DateTime?), WorkflowState? state = default(WorkflowState?), string version = default(string), string accessEndpoint = default(string), Sku sku = default(Sku), ResourceReference integrationAccount = default(ResourceReference), object definition = default(object), IDictionary parameters = default(IDictionary)) : base(id, name, type, location, tags) { CreatedTime = createdTime; @@ -45,16 +63,16 @@ public WorkflowVersion() { } } /// - /// Gets gets the created time. + /// Gets the created time. /// [JsonProperty(PropertyName = "properties.createdTime")] - public DateTime? CreatedTime { get; private set; } + public System.DateTime? CreatedTime { get; protected set; } /// - /// Gets gets the changed time. + /// Gets the changed time. /// [JsonProperty(PropertyName = "properties.changedTime")] - public DateTime? ChangedTime { get; private set; } + public System.DateTime? ChangedTime { get; protected set; } /// /// Gets or sets the state. Possible values include: 'NotSpecified', @@ -64,16 +82,16 @@ public WorkflowVersion() { } public WorkflowState? State { get; set; } /// - /// Gets gets the version. + /// Gets the version. /// [JsonProperty(PropertyName = "properties.version")] - public string Version { get; private set; } + public string Version { get; protected set; } /// - /// Gets gets the access endpoint. + /// Gets the access endpoint. /// [JsonProperty(PropertyName = "properties.accessEndpoint")] - public string AccessEndpoint { get; private set; } + public string AccessEndpoint { get; protected set; } /// /// Gets or sets the sku. @@ -107,10 +125,11 @@ public WorkflowVersion() { } /// public virtual void Validate() { - if (this.Sku != null) + if (Sku != null) { - this.Sku.Validate(); + Sku.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AcknowledgementSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AcknowledgementSettings.cs index 518c9275ef01..f5a2a1c521e5 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AcknowledgementSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AcknowledgementSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 agreement acknowledgement settings. @@ -29,6 +27,39 @@ public X12AcknowledgementSettings() { } /// /// Initializes a new instance of the X12AcknowledgementSettings class. /// + /// The value indicating + /// whether technical acknowledgement is needed. + /// The value indicating + /// whether to batch the technical acknowledgements. + /// The value indicating + /// whether functional acknowledgement is needed. + /// The value indicating + /// whether to batch functional acknowledgements. + /// The value + /// indicating whether implementation acknowledgement is + /// needed. + /// The value + /// indicating whether to batch implementation + /// acknowledgements. + /// The value indicating whether + /// a loop is needed for valid messages. + /// The value indicating + /// whether to send synchronous acknowledgement. + /// The + /// acknowledgement control number lower bound. + /// The + /// acknowledgement control number upper bound. + /// The value + /// indicating whether to rollover acknowledgement control + /// number. + /// The functional + /// acknowledgement version. + /// The + /// implementation acknowledgement version. + /// The + /// acknowledgement control number prefix. + /// The + /// acknowledgement control number suffix. public X12AcknowledgementSettings(bool needTechnicalAcknowledgement, bool batchTechnicalAcknowledgements, bool needFunctionalAcknowledgement, bool batchFunctionalAcknowledgements, bool needImplementationAcknowledgement, bool batchImplementationAcknowledgements, bool needLoopForValidMessages, bool sendSynchronousAcknowledgement, int acknowledgementControlNumberLowerBound, int acknowledgementControlNumberUpperBound, bool rolloverAcknowledgementControlNumber, string functionalAcknowledgementVersion = default(string), string implementationAcknowledgementVersion = default(string), string acknowledgementControlNumberPrefix = default(string), string acknowledgementControlNumberSuffix = default(string)) { NeedTechnicalAcknowledgement = needTechnicalAcknowledgement; @@ -49,8 +80,8 @@ public X12AcknowledgementSettings() { } } /// - /// Gets or sets the value indicating whether technical - /// acknowledgement is needed. + /// Gets or sets the value indicating whether technical acknowledgement + /// is needed. /// [JsonProperty(PropertyName = "needTechnicalAcknowledgement")] public bool NeedTechnicalAcknowledgement { get; set; } @@ -150,7 +181,7 @@ public X12AcknowledgementSettings() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -159,3 +190,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AgreementContent.cs index 37f3383fd0dc..10a4263902dd 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AgreementContent.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 agreement content. @@ -29,6 +28,9 @@ public X12AgreementContent() { } /// /// Initializes a new instance of the X12AgreementContent class. /// + /// The X12 one-way receive + /// agreement. + /// The X12 one-way send agreement. public X12AgreementContent(X12OneWayAgreement receiveAgreement, X12OneWayAgreement sendAgreement) { ReceiveAgreement = receiveAgreement; @@ -63,14 +65,15 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "SendAgreement"); } - if (this.ReceiveAgreement != null) + if (ReceiveAgreement != null) { - this.ReceiveAgreement.Validate(); + ReceiveAgreement.Validate(); } - if (this.SendAgreement != null) + if (SendAgreement != null) { - this.SendAgreement.Validate(); + SendAgreement.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12CharacterSet.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12CharacterSet.cs index c0011f6c845d..972dc19b3894 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12CharacterSet.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12CharacterSet.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -28,3 +32,4 @@ public enum X12CharacterSet UTF8 } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DateFormat.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DateFormat.cs index 541120bdc7d5..d61384e83cab 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DateFormat.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DateFormat.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -26,3 +30,4 @@ public enum X12DateFormat YYMMDD } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DelimiterOverrides.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DelimiterOverrides.cs index 559884a4b13b..250c045531c7 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DelimiterOverrides.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DelimiterOverrides.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 delimiter override settings. @@ -29,6 +27,20 @@ public X12DelimiterOverrides() { } /// /// Initializes a new instance of the X12DelimiterOverrides class. /// + /// The data element + /// separator. + /// The component separator. + /// The segment terminator. + /// The segment terminator + /// suffix. Possible values include: 'NotSpecified', 'None', 'CR', + /// 'LF', 'CRLF' + /// The replacement character. + /// The value indicating + /// whether to replace separators in payload. + /// The protocol version. + /// The message id. + /// The target namespace on which this + /// delimiter settings has to be applied. public X12DelimiterOverrides(int dataElementSeparator, int componentSeparator, int segmentTerminator, SegmentTerminatorSuffix segmentTerminatorSuffix, int replaceCharacter, bool replaceSeparatorsInPayload, string protocolVersion = default(string), string messageId = default(string), string targetNamespace = default(string)) { ProtocolVersion = protocolVersion; @@ -102,7 +114,7 @@ public X12DelimiterOverrides() { } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -110,3 +122,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeOverride.cs index 8087b5739b36..6f8cc7bb59fc 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeOverride.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 envelope override settings. @@ -29,6 +28,25 @@ public X12EnvelopeOverride() { } /// /// Initializes a new instance of the X12EnvelopeOverride class. /// + /// The target namespace on which this + /// envelope settings has to be applied. + /// The protocol version on which this + /// envelope settings has to be applied. + /// The message id on which this envelope + /// settings has to be applied. + /// The responsible agency + /// code. + /// The header version. + /// The sender application + /// id. + /// The receiver application + /// id. + /// The date format. Possible values include: + /// 'NotSpecified', 'CCYYMMDD', 'YYMMDD' + /// The time format. Possible values include: + /// 'NotSpecified', 'HHMM', 'HHMMSS', 'HHMMSSdd', 'HHMMSSd' + /// The functional identifier + /// code. public X12EnvelopeOverride(string targetNamespace, string protocolVersion, string messageId, string responsibleAgencyCode, string headerVersion, string senderApplicationId, string receiverApplicationId, X12DateFormat dateFormat, X12TimeFormat timeFormat, string functionalIdentifierCode = default(string)) { TargetNamespace = targetNamespace; @@ -147,3 +165,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeSettings.cs index f0ee3a1822f4..485b02bf5c03 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeSettings.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 agreement envelope settings. @@ -29,6 +28,57 @@ public X12EnvelopeSettings() { } /// /// Initializes a new instance of the X12EnvelopeSettings class. /// + /// The controls standards id. + /// The value + /// indicating whether to use control standards id as repetition + /// character. + /// The sender application + /// id. + /// The receiver application + /// id. + /// The control version + /// number. + /// The interchange + /// control number lower bound. + /// The interchange + /// control number upper bound. + /// The value indicating + /// whether to rollover interchange control number. + /// The value indicating + /// whether to enable default group headers. + /// The group control number + /// lower bound. + /// The group control number + /// upper bound. + /// The value indicating + /// whether to rollover group control number. + /// The group header agency + /// code. + /// The group header version. + /// The transaction + /// set control number lower bound. + /// The transaction + /// set control number upper bound. + /// The value + /// indicating whether to rollover transaction set control + /// number. + /// The + /// value indicating whether to overwrite existing transaction set + /// control number. + /// The group header date format. + /// Possible values include: 'NotSpecified', 'CCYYMMDD', + /// 'YYMMDD' + /// The group header time format. + /// Possible values include: 'NotSpecified', 'HHMM', 'HHMMSS', + /// 'HHMMSSdd', 'HHMMSSd' + /// The usage indicator. Possible values + /// include: 'NotSpecified', 'Test', 'Information', + /// 'Production' + /// The functional group id. + /// The transaction set + /// control number prefix. + /// The transaction set + /// control number suffix. public X12EnvelopeSettings(int controlStandardsId, bool useControlStandardsIdAsRepetitionCharacter, string senderApplicationId, string receiverApplicationId, string controlVersionNumber, int interchangeControlNumberLowerBound, int interchangeControlNumberUpperBound, bool rolloverInterchangeControlNumber, bool enableDefaultGroupHeaders, int groupControlNumberLowerBound, int groupControlNumberUpperBound, bool rolloverGroupControlNumber, string groupHeaderAgencyCode, string groupHeaderVersion, int transactionSetControlNumberLowerBound, int transactionSetControlNumberUpperBound, bool rolloverTransactionSetControlNumber, bool overwriteExistingTransactionSetControlNumber, X12DateFormat groupHeaderDateFormat, X12TimeFormat groupHeaderTimeFormat, UsageIndicator usageIndicator, string functionalGroupId = default(string), string transactionSetControlNumberPrefix = default(string), string transactionSetControlNumberSuffix = default(string)) { ControlStandardsId = controlStandardsId; @@ -133,8 +183,8 @@ public X12EnvelopeSettings() { } public int GroupControlNumberUpperBound { get; set; } /// - /// Gets or sets the value indicating whether to rollover group - /// control number. + /// Gets or sets the value indicating whether to rollover group control + /// number. /// [JsonProperty(PropertyName = "rolloverGroupControlNumber")] public bool RolloverGroupControlNumber { get; set; } @@ -190,15 +240,15 @@ public X12EnvelopeSettings() { } public bool OverwriteExistingTransactionSetControlNumber { get; set; } /// - /// Gets or sets the group header date format. Possible values - /// include: 'NotSpecified', 'CCYYMMDD', 'YYMMDD' + /// Gets or sets the group header date format. Possible values include: + /// 'NotSpecified', 'CCYYMMDD', 'YYMMDD' /// [JsonProperty(PropertyName = "groupHeaderDateFormat")] public X12DateFormat GroupHeaderDateFormat { get; set; } /// - /// Gets or sets the group header time format. Possible values - /// include: 'NotSpecified', 'HHMM', 'HHMMSS', 'HHMMSSdd', 'HHMMSSd' + /// Gets or sets the group header time format. Possible values include: + /// 'NotSpecified', 'HHMM', 'HHMMSS', 'HHMMSSdd', 'HHMMSSd' /// [JsonProperty(PropertyName = "groupHeaderTimeFormat")] public X12TimeFormat GroupHeaderTimeFormat { get; set; } @@ -241,3 +291,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12FramingSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12FramingSettings.cs index 0dc04474fc75..a3ce6e8ef581 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12FramingSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12FramingSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 agreement framing settings. @@ -29,6 +27,18 @@ public X12FramingSettings() { } /// /// Initializes a new instance of the X12FramingSettings class. /// + /// The data element + /// separator. + /// The component separator. + /// The value indicating + /// whether to replace separators in payload. + /// The replacement character. + /// The segment terminator. + /// The X12 character set. Possible values + /// include: 'NotSpecified', 'Basic', 'Extended', 'UTF8' + /// The segment terminator + /// suffix. Possible values include: 'NotSpecified', 'None', 'CR', + /// 'LF', 'CRLF' public X12FramingSettings(int dataElementSeparator, int componentSeparator, bool replaceSeparatorsInPayload, int replaceCharacter, int segmentTerminator, X12CharacterSet characterSet, SegmentTerminatorSuffix segmentTerminatorSuffix) { DataElementSeparator = dataElementSeparator; @@ -88,7 +98,7 @@ public X12FramingSettings(int dataElementSeparator, int componentSeparator, bool /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -96,3 +106,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageFilter.cs index 797f26e331d4..f333ccc8d3df 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageFilter.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 message filter for odata query. @@ -29,6 +27,8 @@ public X12MessageFilter() { } /// /// Initializes a new instance of the X12MessageFilter class. /// + /// The message filter type. Possible + /// values include: 'NotSpecified', 'Include', 'Exclude' public X12MessageFilter(MessageFilterType messageFilterType) { MessageFilterType = messageFilterType; @@ -44,7 +44,7 @@ public X12MessageFilter(MessageFilterType messageFilterType) /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -52,3 +52,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageIdentifier.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageIdentifier.cs index 4a193263c627..00d70fe57ec8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageIdentifier.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageIdentifier.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 message identifier. @@ -29,6 +28,7 @@ public X12MessageIdentifier() { } /// /// Initializes a new instance of the X12MessageIdentifier class. /// + /// The message id. public X12MessageIdentifier(string messageId) { MessageId = messageId; @@ -55,3 +55,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12OneWayAgreement.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12OneWayAgreement.cs index 2dbc1c98be80..2e3379685f91 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12OneWayAgreement.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12OneWayAgreement.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 oneway agreement. @@ -29,6 +28,11 @@ public X12OneWayAgreement() { } /// /// Initializes a new instance of the X12OneWayAgreement class. /// + /// The sender business + /// identity + /// The receiver business + /// identity + /// The X12 protocol settings. public X12OneWayAgreement(BusinessIdentity senderBusinessIdentity, BusinessIdentity receiverBusinessIdentity, X12ProtocolSettings protocolSettings) { SenderBusinessIdentity = senderBusinessIdentity; @@ -74,18 +78,19 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "ProtocolSettings"); } - if (this.SenderBusinessIdentity != null) + if (SenderBusinessIdentity != null) { - this.SenderBusinessIdentity.Validate(); + SenderBusinessIdentity.Validate(); } - if (this.ReceiverBusinessIdentity != null) + if (ReceiverBusinessIdentity != null) { - this.ReceiverBusinessIdentity.Validate(); + ReceiverBusinessIdentity.Validate(); } - if (this.ProtocolSettings != null) + if (ProtocolSettings != null) { - this.ProtocolSettings.Validate(); + ProtocolSettings.Validate(); } } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProcessingSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProcessingSettings.cs index 4f99a355d7e5..67bb232947bb 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProcessingSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProcessingSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 processing settings. @@ -29,6 +27,19 @@ public X12ProcessingSettings() { } /// /// Initializes a new instance of the X12ProcessingSettings class. /// + /// The value indicating whether to mask + /// security information. + /// The value indicating whether to + /// convert numerical type to implied decimal. + /// The value indicating whether to + /// preserve interchange. + /// The value indicating + /// whether to suspend interchange on error. + /// The value + /// indicating whether to create empty xml tags for trailing + /// separators. + /// The value indicating whether + /// to use dot as decimal separator. public X12ProcessingSettings(bool maskSecurityInfo, bool convertImpliedDecimal, bool preserveInterchange, bool suspendInterchangeOnError, bool createEmptyXmlTagsForTrailingSeparators, bool useDotAsDecimalSeparator) { MaskSecurityInfo = maskSecurityInfo; @@ -47,8 +58,8 @@ public X12ProcessingSettings(bool maskSecurityInfo, bool convertImpliedDecimal, public bool MaskSecurityInfo { get; set; } /// - /// Gets or sets the value indicating whether to convert numerical - /// type to implied decimal. + /// Gets or sets the value indicating whether to convert numerical type + /// to implied decimal. /// [JsonProperty(PropertyName = "convertImpliedDecimal")] public bool ConvertImpliedDecimal { get; set; } @@ -60,8 +71,8 @@ public X12ProcessingSettings(bool maskSecurityInfo, bool convertImpliedDecimal, public bool PreserveInterchange { get; set; } /// - /// Gets or sets the value indicating whether to suspend interchange - /// on error. + /// Gets or sets the value indicating whether to suspend interchange on + /// error. /// [JsonProperty(PropertyName = "suspendInterchangeOnError")] public bool SuspendInterchangeOnError { get; set; } @@ -83,7 +94,7 @@ public X12ProcessingSettings(bool maskSecurityInfo, bool convertImpliedDecimal, /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -92,3 +103,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProtocolSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProtocolSettings.cs index 66434c09a494..8a83d988246c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProtocolSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProtocolSettings.cs @@ -1,20 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The X12 agreement protocol settings. @@ -29,6 +30,25 @@ public X12ProtocolSettings() { } /// /// Initializes a new instance of the X12ProtocolSettings class. /// + /// The X12 validation + /// settings. + /// The X12 framing settings. + /// The X12 envelope settings. + /// The X12 acknowledgment + /// settings. + /// The X12 message filter. + /// The X12 security settings. + /// The X12 processing + /// settings. + /// The X12 schema references. + /// The X12 envelope override + /// settings. + /// The X12 validation override + /// settings. + /// The X12 message filter + /// list. + /// The X12 delimiter override + /// settings. public X12ProtocolSettings(X12ValidationSettings validationSettings, X12FramingSettings framingSettings, X12EnvelopeSettings envelopeSettings, X12AcknowledgementSettings acknowledgementSettings, X12MessageFilter messageFilter, X12SecuritySettings securitySettings, X12ProcessingSettings processingSettings, IList schemaReferences, IList envelopeOverrides = default(IList), IList validationOverrides = default(IList), IList messageFilterList = default(IList), IList x12DelimiterOverrides = default(IList)) { ValidationSettings = validationSettings; @@ -157,37 +177,37 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "SchemaReferences"); } - if (this.ValidationSettings != null) + if (ValidationSettings != null) { - this.ValidationSettings.Validate(); + ValidationSettings.Validate(); } - if (this.FramingSettings != null) + if (FramingSettings != null) { - this.FramingSettings.Validate(); + FramingSettings.Validate(); } - if (this.EnvelopeSettings != null) + if (EnvelopeSettings != null) { - this.EnvelopeSettings.Validate(); + EnvelopeSettings.Validate(); } - if (this.AcknowledgementSettings != null) + if (AcknowledgementSettings != null) { - this.AcknowledgementSettings.Validate(); + AcknowledgementSettings.Validate(); } - if (this.MessageFilter != null) + if (MessageFilter != null) { - this.MessageFilter.Validate(); + MessageFilter.Validate(); } - if (this.SecuritySettings != null) + if (SecuritySettings != null) { - this.SecuritySettings.Validate(); + SecuritySettings.Validate(); } - if (this.ProcessingSettings != null) + if (ProcessingSettings != null) { - this.ProcessingSettings.Validate(); + ProcessingSettings.Validate(); } - if (this.EnvelopeOverrides != null) + if (EnvelopeOverrides != null) { - foreach (var element in this.EnvelopeOverrides) + foreach (var element in EnvelopeOverrides) { if (element != null) { @@ -195,9 +215,9 @@ public virtual void Validate() } } } - if (this.ValidationOverrides != null) + if (ValidationOverrides != null) { - foreach (var element1 in this.ValidationOverrides) + foreach (var element1 in ValidationOverrides) { if (element1 != null) { @@ -205,9 +225,9 @@ public virtual void Validate() } } } - if (this.MessageFilterList != null) + if (MessageFilterList != null) { - foreach (var element2 in this.MessageFilterList) + foreach (var element2 in MessageFilterList) { if (element2 != null) { @@ -215,9 +235,9 @@ public virtual void Validate() } } } - if (this.SchemaReferences != null) + if (SchemaReferences != null) { - foreach (var element3 in this.SchemaReferences) + foreach (var element3 in SchemaReferences) { if (element3 != null) { @@ -225,9 +245,9 @@ public virtual void Validate() } } } - if (this.X12DelimiterOverrides != null) + if (X12DelimiterOverrides != null) { - foreach (var element4 in this.X12DelimiterOverrides) + foreach (var element4 in X12DelimiterOverrides) { if (element4 != null) { @@ -238,3 +258,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SchemaReference.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SchemaReference.cs index 8d4182cf0330..ad948c7443a7 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SchemaReference.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SchemaReference.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 schema reference. @@ -29,6 +28,11 @@ public X12SchemaReference() { } /// /// Initializes a new instance of the X12SchemaReference class. /// + /// The message id. + /// The schema version. + /// The schema name. + /// The sender application + /// id. public X12SchemaReference(string messageId, string schemaVersion, string schemaName, string senderApplicationId = default(string)) { MessageId = messageId; @@ -84,3 +88,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SecuritySettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SecuritySettings.cs index 4bae360b1ced..83e138560417 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SecuritySettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SecuritySettings.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 agreement security settings. @@ -29,6 +28,11 @@ public X12SecuritySettings() { } /// /// Initializes a new instance of the X12SecuritySettings class. /// + /// The authorization + /// qualifier. + /// The security qualifier. + /// The authorization value. + /// The password value. public X12SecuritySettings(string authorizationQualifier, string securityQualifier, string authorizationValue = default(string), string passwordValue = default(string)) { AuthorizationQualifier = authorizationQualifier; @@ -80,3 +84,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12TimeFormat.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12TimeFormat.cs index d52deef12c69..7db8b83fb31e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12TimeFormat.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12TimeFormat.cs @@ -1,15 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { + using Azure; + using Management; + using Logic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; + using System.Runtime; using System.Runtime.Serialization; /// @@ -30,3 +34,4 @@ public enum X12TimeFormat HHMMSSd } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs index c45de2cc0a50..2922835dbee2 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; + using Rest; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 validation override settings. @@ -29,6 +28,23 @@ public X12ValidationOverride() { } /// /// Initializes a new instance of the X12ValidationOverride class. /// + /// The message id on which the validation + /// settings has to be applied. + /// The value indicating whether to + /// validate EDI types. + /// The value indicating whether to + /// validate XSD types. + /// The value + /// indicating whether to allow leading and trailing spaces and + /// zeroes. + /// The value indicating whether to + /// validate character Set. + /// The value + /// indicating whether to trim leading and trailing spaces and + /// zeroes. + /// The trailing separator + /// policy. Possible values include: 'NotSpecified', 'NotAllowed', + /// 'Optional', 'Mandatory' public X12ValidationOverride(string messageId, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool validateCharacterSet, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { MessageId = messageId; @@ -41,8 +57,8 @@ public X12ValidationOverride(string messageId, bool validateEDITypes, bool valid } /// - /// Gets or sets the message id on which the validation settings has - /// to be applied. + /// Gets or sets the message id on which the validation settings has to + /// be applied. /// [JsonProperty(PropertyName = "messageId")] public string MessageId { get; set; } @@ -102,3 +118,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs index 5f249ce8933a..cdcc6f39a0a6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs @@ -1,20 +1,18 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Azure; + using Management; + using Logic; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; + using System.Linq; /// /// The X12 agreement validation settings. @@ -29,6 +27,31 @@ public X12ValidationSettings() { } /// /// Initializes a new instance of the X12ValidationSettings class. /// + /// The value indicating whether to + /// validate character set in the message. + /// The value + /// indicating whether to check for duplicate interchange control + /// number. + /// The validity + /// period of interchange control number. + /// The value indicating + /// whether to check for duplicate group control number. + /// The value + /// indicating whether to check for duplicate transaction set control + /// number. + /// The value indicating whether to + /// Whether to validate EDI types. + /// The value indicating whether to + /// Whether to validate XSD types. + /// The value + /// indicating whether to allow leading and trailing spaces and + /// zeroes. + /// The value + /// indicating whether to trim leading and trailing spaces and + /// zeroes. + /// The trailing separator + /// policy. Possible values include: 'NotSpecified', 'NotAllowed', + /// 'Optional', 'Mandatory' public X12ValidationSettings(bool validateCharacterSet, bool checkDuplicateInterchangeControlNumber, int interchangeControlNumberValidityDays, bool checkDuplicateGroupControlNumber, bool checkDuplicateTransactionSetControlNumber, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { ValidateCharacterSet = validateCharacterSet; @@ -44,8 +67,8 @@ public X12ValidationSettings(bool validateCharacterSet, bool checkDuplicateInter } /// - /// Gets or sets the value indicating whether to validate character - /// set in the message. + /// Gets or sets the value indicating whether to validate character set + /// in the message. /// [JsonProperty(PropertyName = "validateCharacterSet")] public bool ValidateCharacterSet { get; set; } @@ -115,7 +138,7 @@ public X12ValidationSettings(bool validateCharacterSet, bool checkDuplicateInter /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() @@ -123,3 +146,4 @@ public virtual void Validate() } } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperations.cs index 85705d6bc3f1..c8012b7f9d7d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// PartnersOperations operations. @@ -36,16 +34,16 @@ internal partial class PartnersOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal PartnersOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -80,12 +78,15 @@ internal PartnersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -97,7 +98,7 @@ internal PartnersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -115,46 +116,48 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -170,10 +173,10 @@ internal PartnersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -181,7 +184,7 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -195,7 +198,7 @@ internal PartnersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -237,7 +240,7 @@ internal PartnersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -283,12 +286,15 @@ internal PartnersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string partnerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -304,7 +310,7 @@ internal PartnersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "partnerName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -322,39 +328,41 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners/{partnerName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{partnerName}", Uri.EscapeDataString(partnerName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners/{partnerName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{partnerName}", System.Uri.EscapeDataString(partnerName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -370,10 +378,10 @@ internal PartnersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -381,7 +389,7 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -395,7 +403,7 @@ internal PartnersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -437,7 +445,7 @@ internal PartnersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -486,12 +494,15 @@ internal PartnersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string partnerName, IntegrationAccountPartner partner, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -507,7 +518,7 @@ internal PartnersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "partnerName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -534,39 +545,41 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners/{partnerName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{partnerName}", Uri.EscapeDataString(partnerName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners/{partnerName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{partnerName}", System.Uri.EscapeDataString(partnerName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -583,15 +596,15 @@ internal PartnersOperations(LogicManagementClient client) string _requestContent = null; if(partner != null) { - _requestContent = SafeJsonConvert.SerializeObject(partner, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(partner, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -599,7 +612,7 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -613,7 +626,7 @@ internal PartnersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -655,7 +668,7 @@ internal PartnersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -673,7 +686,7 @@ internal PartnersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -716,12 +729,15 @@ internal PartnersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string partnerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -737,7 +753,7 @@ internal PartnersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "partnerName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -755,39 +771,41 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners/{partnerName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{partnerName}", Uri.EscapeDataString(partnerName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/partners/{partnerName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{partnerName}", System.Uri.EscapeDataString(partnerName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -803,10 +821,10 @@ internal PartnersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -814,7 +832,7 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -884,6 +902,9 @@ internal PartnersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -910,26 +931,28 @@ internal PartnersOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -945,10 +968,10 @@ internal PartnersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -956,7 +979,7 @@ internal PartnersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -970,7 +993,7 @@ internal PartnersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1012,7 +1035,7 @@ internal PartnersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1033,3 +1056,4 @@ internal PartnersOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperationsExtensions.cs index 64c2d5b96289..82dd920738a1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for PartnersOperations. @@ -40,7 +39,7 @@ public static partial class PartnersOperationsExtensions /// public static IPage ListByIntegrationAccounts(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IPartnersOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery).GetAwaiter().GetResult(); } /// @@ -86,7 +85,7 @@ public static partial class PartnersOperationsExtensions /// public static IntegrationAccountPartner Get(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName) { - return Task.Factory.StartNew(s => ((IPartnersOperations)s).GetAsync(resourceGroupName, integrationAccountName, partnerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, integrationAccountName, partnerName).GetAwaiter().GetResult(); } /// @@ -135,7 +134,7 @@ public static IntegrationAccountPartner Get(this IPartnersOperations operations, /// public static IntegrationAccountPartner CreateOrUpdate(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, IntegrationAccountPartner partner) { - return Task.Factory.StartNew(s => ((IPartnersOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, partnerName, partner), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, partnerName, partner).GetAwaiter().GetResult(); } /// @@ -184,7 +183,7 @@ public static IntegrationAccountPartner CreateOrUpdate(this IPartnersOperations /// public static void Delete(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName) { - Task.Factory.StartNew(s => ((IPartnersOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, partnerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, integrationAccountName, partnerName).GetAwaiter().GetResult(); } /// @@ -221,7 +220,7 @@ public static void Delete(this IPartnersOperations operations, string resourceGr /// public static IPage ListByIntegrationAccountsNext(this IPartnersOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IPartnersOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -246,3 +245,4 @@ public static IPage ListByIntegrationAccountsNext(thi } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperations.cs index c631634ceaa8..62c8b00e7e39 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// SchemasOperations operations. @@ -36,16 +34,16 @@ internal partial class SchemasOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal SchemasOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -80,12 +78,15 @@ internal SchemasOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -97,7 +98,7 @@ internal SchemasOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -115,46 +116,48 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -170,10 +173,10 @@ internal SchemasOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -181,7 +184,7 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -195,7 +198,7 @@ internal SchemasOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -237,7 +240,7 @@ internal SchemasOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -283,12 +286,15 @@ internal SchemasOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string schemaName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -304,7 +310,7 @@ internal SchemasOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "schemaName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -322,39 +328,41 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas/{schemaName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{schemaName}", Uri.EscapeDataString(schemaName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas/{schemaName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{schemaName}", System.Uri.EscapeDataString(schemaName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -370,10 +378,10 @@ internal SchemasOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -381,7 +389,7 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -395,7 +403,7 @@ internal SchemasOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -437,7 +445,7 @@ internal SchemasOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -486,12 +494,15 @@ internal SchemasOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -507,7 +518,7 @@ internal SchemasOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "schemaName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -534,39 +545,41 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas/{schemaName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{schemaName}", Uri.EscapeDataString(schemaName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas/{schemaName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{schemaName}", System.Uri.EscapeDataString(schemaName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -583,15 +596,15 @@ internal SchemasOperations(LogicManagementClient client) string _requestContent = null; if(schema != null) { - _requestContent = SafeJsonConvert.SerializeObject(schema, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(schema, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -599,7 +612,7 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -613,7 +626,7 @@ internal SchemasOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -655,7 +668,7 @@ internal SchemasOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -673,7 +686,7 @@ internal SchemasOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -716,12 +729,15 @@ internal SchemasOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string schemaName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -737,7 +753,7 @@ internal SchemasOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "schemaName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -755,39 +771,41 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas/{schemaName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{schemaName}", Uri.EscapeDataString(schemaName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/schemas/{schemaName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{schemaName}", System.Uri.EscapeDataString(schemaName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -803,10 +821,10 @@ internal SchemasOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -814,7 +832,7 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -884,6 +902,9 @@ internal SchemasOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -910,26 +931,28 @@ internal SchemasOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -945,10 +968,10 @@ internal SchemasOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -956,7 +979,7 @@ internal SchemasOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -970,7 +993,7 @@ internal SchemasOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1012,7 +1035,7 @@ internal SchemasOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1033,3 +1056,4 @@ internal SchemasOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperationsExtensions.cs index 94a46e1e2d3f..e357a8e69d1e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for SchemasOperations. @@ -40,7 +39,7 @@ public static partial class SchemasOperationsExtensions /// public static IPage ListByIntegrationAccounts(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((ISchemasOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery).GetAwaiter().GetResult(); } /// @@ -86,7 +85,7 @@ public static partial class SchemasOperationsExtensions /// public static IntegrationAccountSchema Get(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName) { - return Task.Factory.StartNew(s => ((ISchemasOperations)s).GetAsync(resourceGroupName, integrationAccountName, schemaName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, integrationAccountName, schemaName).GetAwaiter().GetResult(); } /// @@ -135,7 +134,7 @@ public static IntegrationAccountSchema Get(this ISchemasOperations operations, s /// public static IntegrationAccountSchema CreateOrUpdate(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema) { - return Task.Factory.StartNew(s => ((ISchemasOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, schemaName, schema), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, schemaName, schema).GetAwaiter().GetResult(); } /// @@ -184,7 +183,7 @@ public static IntegrationAccountSchema CreateOrUpdate(this ISchemasOperations op /// public static void Delete(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName) { - Task.Factory.StartNew(s => ((ISchemasOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, schemaName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, integrationAccountName, schemaName).GetAwaiter().GetResult(); } /// @@ -221,7 +220,7 @@ public static void Delete(this ISchemasOperations operations, string resourceGro /// public static IPage ListByIntegrationAccountsNext(this ISchemasOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ISchemasOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -246,3 +245,4 @@ public static IPage ListByIntegrationAccountsNext(this } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs index b4a60e237f20..cdd94dbec340 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// SessionsOperations operations. @@ -36,16 +34,16 @@ internal partial class SessionsOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal SessionsOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -80,12 +78,15 @@ internal SessionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -97,7 +98,7 @@ internal SessionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -115,46 +116,48 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -170,10 +173,10 @@ internal SessionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -181,7 +184,7 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -195,7 +198,7 @@ internal SessionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -237,7 +240,7 @@ internal SessionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -283,12 +286,15 @@ internal SessionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -304,7 +310,7 @@ internal SessionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -322,39 +328,41 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", System.Uri.EscapeDataString(sessionName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -370,10 +378,10 @@ internal SessionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -381,7 +389,7 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -389,13 +397,13 @@ internal SessionsOperations(LogicManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 404) { 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); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -424,7 +432,7 @@ internal SessionsOperations(LogicManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -437,7 +445,25 @@ internal SessionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 404) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -486,12 +512,15 @@ internal SessionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -507,7 +536,7 @@ internal SessionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -530,39 +559,41 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", System.Uri.EscapeDataString(sessionName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -579,15 +610,15 @@ internal SessionsOperations(LogicManagementClient client) string _requestContent = null; if(session != null) { - _requestContent = SafeJsonConvert.SerializeObject(session, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(session, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -595,7 +626,7 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -609,7 +640,7 @@ internal SessionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -651,7 +682,7 @@ internal SessionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -669,7 +700,7 @@ internal SessionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -712,12 +743,15 @@ internal SessionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -733,7 +767,7 @@ internal SessionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "sessionName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -751,39 +785,41 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); - _url = _url.Replace("{sessionName}", Uri.EscapeDataString(sessionName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/sessions/{sessionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{integrationAccountName}", System.Uri.EscapeDataString(integrationAccountName)); + _url = _url.Replace("{sessionName}", System.Uri.EscapeDataString(sessionName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -799,10 +835,10 @@ internal SessionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -810,7 +846,7 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -880,6 +916,9 @@ internal SessionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -906,26 +945,28 @@ internal SessionsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -941,10 +982,10 @@ internal SessionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -952,7 +993,7 @@ internal SessionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -966,7 +1007,7 @@ internal SessionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1008,7 +1049,7 @@ internal SessionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1029,3 +1070,4 @@ internal SessionsOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs index 417b0561bff9..fc40e1f7991a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for SessionsOperations. @@ -40,7 +39,7 @@ public static partial class SessionsOperationsExtensions /// public static IPage ListByIntegrationAccounts(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((ISessionsOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery).GetAwaiter().GetResult(); } /// @@ -84,9 +83,9 @@ public static partial class SessionsOperationsExtensions /// /// The integration account session name. /// - public static IntegrationAccountSession Get(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) + public static object Get(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) { - return Task.Factory.StartNew(s => ((ISessionsOperations)s).GetAsync(resourceGroupName, integrationAccountName, sessionName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, integrationAccountName, sessionName).GetAwaiter().GetResult(); } /// @@ -107,7 +106,7 @@ public static IntegrationAccountSession Get(this ISessionsOperations operations, /// /// The cancellation token. /// - public static async Task GetAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, sessionName, null, cancellationToken).ConfigureAwait(false)) { @@ -135,7 +134,7 @@ public static IntegrationAccountSession Get(this ISessionsOperations operations, /// public static IntegrationAccountSession CreateOrUpdate(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, IntegrationAccountSession session) { - return Task.Factory.StartNew(s => ((ISessionsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, sessionName, session), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, integrationAccountName, sessionName, session).GetAwaiter().GetResult(); } /// @@ -184,7 +183,7 @@ public static IntegrationAccountSession CreateOrUpdate(this ISessionsOperations /// public static void Delete(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) { - Task.Factory.StartNew(s => ((ISessionsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, sessionName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, integrationAccountName, sessionName).GetAwaiter().GetResult(); } /// @@ -221,7 +220,7 @@ public static void Delete(this ISessionsOperations operations, string resourceGr /// public static IPage ListByIntegrationAccountsNext(this ISessionsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ISessionsOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByIntegrationAccountsNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -246,3 +245,4 @@ public static IPage ListByIntegrationAccountsNext(thi } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperations.cs index a52b58a4a6ea..0830a055577d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowRunActionsOperations operations. @@ -36,16 +34,16 @@ internal partial class WorkflowRunActionsOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal WorkflowRunActionsOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -83,12 +81,15 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -104,7 +105,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -123,47 +124,49 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/actions").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{runName}", Uri.EscapeDataString(runName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/actions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{runName}", System.Uri.EscapeDataString(runName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -179,10 +182,10 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -190,7 +193,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -204,7 +207,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -246,7 +249,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -295,12 +298,15 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, string actionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -320,7 +326,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "actionName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -339,40 +345,42 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/actions/{actionName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{runName}", Uri.EscapeDataString(runName)); - _url = _url.Replace("{actionName}", Uri.EscapeDataString(actionName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/actions/{actionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{runName}", System.Uri.EscapeDataString(runName)); + _url = _url.Replace("{actionName}", System.Uri.EscapeDataString(actionName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -388,10 +396,10 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -399,7 +407,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -413,7 +421,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -455,7 +463,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -495,6 +503,9 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -521,26 +532,28 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -556,10 +569,10 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -567,7 +580,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -581,7 +594,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -623,7 +636,7 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -644,3 +657,4 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperationsExtensions.cs index 600fd40b6c89..a04959a3b691 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for WorkflowRunActionsOperations. @@ -43,7 +42,7 @@ public static partial class WorkflowRunActionsOperationsExtensions /// public static IPage List(this IWorkflowRunActionsOperations operations, string resourceGroupName, string workflowName, string runName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IWorkflowRunActionsOperations)s).ListAsync(resourceGroupName, workflowName, runName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, workflowName, runName, odataQuery).GetAwaiter().GetResult(); } /// @@ -95,7 +94,7 @@ public static partial class WorkflowRunActionsOperationsExtensions /// public static WorkflowRunAction Get(this IWorkflowRunActionsOperations operations, string resourceGroupName, string workflowName, string runName, string actionName) { - return Task.Factory.StartNew(s => ((IWorkflowRunActionsOperations)s).GetAsync(resourceGroupName, workflowName, runName, actionName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, workflowName, runName, actionName).GetAwaiter().GetResult(); } /// @@ -138,7 +137,7 @@ public static WorkflowRunAction Get(this IWorkflowRunActionsOperations operation /// public static IPage ListNext(this IWorkflowRunActionsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IWorkflowRunActionsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -163,3 +162,4 @@ public static IPage ListNext(this IWorkflowRunActionsOperatio } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperations.cs index 191839829e29..14219be91af1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowRunsOperations operations. @@ -36,16 +34,16 @@ internal partial class WorkflowRunsOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal WorkflowRunsOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -80,12 +78,15 @@ internal WorkflowRunsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -97,7 +98,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -115,46 +116,48 @@ internal WorkflowRunsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -170,10 +173,10 @@ internal WorkflowRunsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -181,7 +184,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -195,7 +198,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -237,7 +240,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -283,12 +286,15 @@ internal WorkflowRunsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -304,7 +310,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -322,39 +328,41 @@ internal WorkflowRunsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{runName}", Uri.EscapeDataString(runName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{runName}", System.Uri.EscapeDataString(runName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -370,10 +378,10 @@ internal WorkflowRunsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -381,7 +389,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -395,7 +403,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -437,7 +445,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -480,12 +488,15 @@ internal WorkflowRunsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task CancelWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -501,7 +512,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -519,39 +530,41 @@ internal WorkflowRunsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Cancel", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/cancel").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{runName}", Uri.EscapeDataString(runName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/cancel").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{runName}", System.Uri.EscapeDataString(runName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -567,10 +580,10 @@ internal WorkflowRunsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -578,7 +591,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -648,6 +661,9 @@ internal WorkflowRunsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -674,26 +690,28 @@ internal WorkflowRunsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -709,10 +727,10 @@ internal WorkflowRunsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -720,7 +738,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -734,7 +752,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -776,7 +794,7 @@ internal WorkflowRunsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -797,3 +815,4 @@ internal WorkflowRunsOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperationsExtensions.cs index c745819b4c9d..6984700ba322 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for WorkflowRunsOperations. @@ -40,7 +39,7 @@ public static partial class WorkflowRunsOperationsExtensions /// public static IPage List(this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IWorkflowRunsOperations)s).ListAsync(resourceGroupName, workflowName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, workflowName, odataQuery).GetAwaiter().GetResult(); } /// @@ -86,7 +85,7 @@ public static partial class WorkflowRunsOperationsExtensions /// public static WorkflowRun Get(this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, string runName) { - return Task.Factory.StartNew(s => ((IWorkflowRunsOperations)s).GetAsync(resourceGroupName, workflowName, runName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, workflowName, runName).GetAwaiter().GetResult(); } /// @@ -132,7 +131,7 @@ public static WorkflowRun Get(this IWorkflowRunsOperations operations, string re /// public static void Cancel(this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, string runName) { - Task.Factory.StartNew(s => ((IWorkflowRunsOperations)s).CancelAsync(resourceGroupName, workflowName, runName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.CancelAsync(resourceGroupName, workflowName, runName).GetAwaiter().GetResult(); } /// @@ -169,7 +168,7 @@ public static void Cancel(this IWorkflowRunsOperations operations, string resour /// public static IPage ListNext(this IWorkflowRunsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IWorkflowRunsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -194,3 +193,4 @@ public static IPage ListNext(this IWorkflowRunsOperations operation } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperations.cs index 8e7f5afccb27..6b4493ccf0b8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowTriggerHistoriesOperations operations. @@ -36,16 +34,16 @@ internal partial class WorkflowTriggerHistoriesOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -83,12 +81,15 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -104,7 +105,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -123,47 +124,49 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/histories").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/histories").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{triggerName}", System.Uri.EscapeDataString(triggerName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -179,10 +182,10 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -190,7 +193,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -204,7 +207,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -246,7 +249,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -295,12 +298,15 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, string historyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -320,7 +326,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "historyName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -339,40 +345,42 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/histories/{historyName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); - _url = _url.Replace("{historyName}", Uri.EscapeDataString(historyName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/histories/{historyName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{triggerName}", System.Uri.EscapeDataString(triggerName)); + _url = _url.Replace("{historyName}", System.Uri.EscapeDataString(historyName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -388,10 +396,10 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -399,7 +407,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -413,7 +421,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -455,7 +463,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -495,6 +503,9 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -521,26 +532,28 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -556,10 +569,10 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -567,7 +580,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -581,7 +594,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -623,7 +636,7 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -644,3 +657,4 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperationsExtensions.cs index 390ff35aead3..acf77f5f3554 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for WorkflowTriggerHistoriesOperations. @@ -43,7 +42,7 @@ public static partial class WorkflowTriggerHistoriesOperationsExtensions /// public static IPage List(this IWorkflowTriggerHistoriesOperations operations, string resourceGroupName, string workflowName, string triggerName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IWorkflowTriggerHistoriesOperations)s).ListAsync(resourceGroupName, workflowName, triggerName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, workflowName, triggerName, odataQuery).GetAwaiter().GetResult(); } /// @@ -95,7 +94,7 @@ public static partial class WorkflowTriggerHistoriesOperationsExtensions /// public static WorkflowTriggerHistory Get(this IWorkflowTriggerHistoriesOperations operations, string resourceGroupName, string workflowName, string triggerName, string historyName) { - return Task.Factory.StartNew(s => ((IWorkflowTriggerHistoriesOperations)s).GetAsync(resourceGroupName, workflowName, triggerName, historyName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, workflowName, triggerName, historyName).GetAwaiter().GetResult(); } /// @@ -138,7 +137,7 @@ public static WorkflowTriggerHistory Get(this IWorkflowTriggerHistoriesOperation /// public static IPage ListNext(this IWorkflowTriggerHistoriesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IWorkflowTriggerHistoriesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -163,3 +162,4 @@ public static IPage ListNext(this IWorkflowTriggerHistor } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperations.cs index 5160c0bc1ded..d2b78dc4fa51 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowTriggersOperations operations. @@ -36,16 +34,16 @@ internal partial class WorkflowTriggersOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal WorkflowTriggersOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -80,12 +78,15 @@ internal WorkflowTriggersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -97,7 +98,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -115,46 +116,48 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -170,10 +173,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -181,7 +184,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -195,7 +198,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -237,7 +240,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -283,12 +286,15 @@ internal WorkflowTriggersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -304,7 +310,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -322,39 +328,41 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{triggerName}", System.Uri.EscapeDataString(triggerName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -370,10 +378,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -381,7 +389,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -395,7 +403,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -437,7 +445,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -480,12 +488,15 @@ internal WorkflowTriggersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> RunWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -501,7 +512,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -519,39 +530,41 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Run", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/run").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/run").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{triggerName}", System.Uri.EscapeDataString(triggerName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -567,10 +580,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -578,7 +591,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -592,7 +605,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - object _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + object _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex.Body = _errorBody; @@ -626,7 +639,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) string _defaultResponseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_defaultResponseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_defaultResponseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -671,12 +684,15 @@ internal WorkflowTriggersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> ListCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -692,7 +708,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -710,39 +726,41 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListCallbackUrl", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/listCallbackUrl").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/listCallbackUrl").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{triggerName}", System.Uri.EscapeDataString(triggerName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -758,10 +776,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -769,7 +787,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -783,7 +801,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -825,7 +843,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -865,6 +883,9 @@ internal WorkflowTriggersOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -891,26 +912,28 @@ internal WorkflowTriggersOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -926,10 +949,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -937,7 +960,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -951,7 +974,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -993,7 +1016,7 @@ internal WorkflowTriggersOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1014,3 +1037,4 @@ internal WorkflowTriggersOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperationsExtensions.cs index 4e6f8a2c3ed2..c96f234cb481 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for WorkflowTriggersOperations. @@ -40,7 +39,7 @@ public static partial class WorkflowTriggersOperationsExtensions /// public static IPage List(this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).ListAsync(resourceGroupName, workflowName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, workflowName, odataQuery).GetAwaiter().GetResult(); } /// @@ -86,7 +85,7 @@ public static partial class WorkflowTriggersOperationsExtensions /// public static WorkflowTrigger Get(this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, string triggerName) { - return Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).GetAsync(resourceGroupName, workflowName, triggerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, workflowName, triggerName).GetAwaiter().GetResult(); } /// @@ -132,7 +131,7 @@ public static WorkflowTrigger Get(this IWorkflowTriggersOperations operations, s /// public static object Run(this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, string triggerName) { - return Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).RunAsync(resourceGroupName, workflowName, triggerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.RunAsync(resourceGroupName, workflowName, triggerName).GetAwaiter().GetResult(); } /// @@ -178,7 +177,7 @@ public static object Run(this IWorkflowTriggersOperations operations, string res /// public static WorkflowTriggerCallbackUrl ListCallbackUrl(this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, string triggerName) { - return Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).ListCallbackUrlAsync(resourceGroupName, workflowName, triggerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListCallbackUrlAsync(resourceGroupName, workflowName, triggerName).GetAwaiter().GetResult(); } /// @@ -218,7 +217,7 @@ public static WorkflowTriggerCallbackUrl ListCallbackUrl(this IWorkflowTriggersO /// public static IPage ListNext(this IWorkflowTriggersOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -243,3 +242,4 @@ public static IPage ListNext(this IWorkflowTriggersOperations o } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperations.cs index 2f96ef5bb4f4..cf2fc7556b8d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperations.cs @@ -1,28 +1,26 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; using System.Net; using System.Net.Http; - using System.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; /// /// WorkflowVersionsOperations operations. @@ -35,16 +33,16 @@ internal partial class WorkflowVersionsOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal WorkflowVersionsOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -79,12 +77,15 @@ internal WorkflowVersionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -96,7 +97,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -114,42 +115,44 @@ internal WorkflowVersionsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (top != null) { - _queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(SafeJsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -165,10 +168,10 @@ internal WorkflowVersionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -176,7 +179,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -190,7 +193,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -232,7 +235,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -278,12 +281,15 @@ internal WorkflowVersionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string versionId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -299,7 +305,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -317,39 +323,41 @@ internal WorkflowVersionsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); - _url = _url.Replace("{versionId}", Uri.EscapeDataString(versionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); + _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -365,10 +373,10 @@ internal WorkflowVersionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -376,7 +384,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -390,7 +398,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -432,7 +440,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -472,6 +480,9 @@ internal WorkflowVersionsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -498,26 +509,28 @@ internal WorkflowVersionsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -533,10 +546,10 @@ internal WorkflowVersionsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -544,7 +557,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -558,7 +571,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -600,7 +613,7 @@ internal WorkflowVersionsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -621,3 +634,4 @@ internal WorkflowVersionsOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperationsExtensions.cs index c59fe4a8c349..a334a0e568ca 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperationsExtensions.cs @@ -1,21 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for WorkflowVersionsOperations. @@ -39,7 +38,7 @@ public static partial class WorkflowVersionsOperationsExtensions /// public static IPage List(this IWorkflowVersionsOperations operations, string resourceGroupName, string workflowName, int? top = default(int?)) { - return Task.Factory.StartNew(s => ((IWorkflowVersionsOperations)s).ListAsync(resourceGroupName, workflowName, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, workflowName, top).GetAwaiter().GetResult(); } /// @@ -85,7 +84,7 @@ public static partial class WorkflowVersionsOperationsExtensions /// public static WorkflowVersion Get(this IWorkflowVersionsOperations operations, string resourceGroupName, string workflowName, string versionId) { - return Task.Factory.StartNew(s => ((IWorkflowVersionsOperations)s).GetAsync(resourceGroupName, workflowName, versionId), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, workflowName, versionId).GetAwaiter().GetResult(); } /// @@ -125,7 +124,7 @@ public static WorkflowVersion Get(this IWorkflowVersionsOperations operations, s /// public static IPage ListNext(this IWorkflowVersionsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IWorkflowVersionsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -150,3 +149,4 @@ public static IPage ListNext(this IWorkflowVersionsOperations o } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperations.cs index 02a39c91ab19..d66ff967e88b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperations.cs @@ -1,29 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Linq; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; using System.Collections.Generic; + using System.Linq; 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.OData; - using Microsoft.Rest.Azure; - using Models; /// /// WorkflowsOperations operations. @@ -36,16 +34,16 @@ internal partial class WorkflowsOperations : IServiceOperations /// Reference to the service client. /// - /// + /// /// Thrown when a required parameter is null /// internal WorkflowsOperations(LogicManagementClient client) { - if (client == null) + if (client == null) { - throw new ArgumentNullException("client"); + throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -74,16 +72,19 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListBySubscriptionWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -99,44 +100,46 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Logic/workflows").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Logic/workflows").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -152,10 +155,10 @@ internal WorkflowsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -163,7 +166,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -177,7 +180,7 @@ internal WorkflowsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -219,7 +222,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -262,12 +265,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -275,7 +281,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -292,45 +298,47 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); if (odataQuery != null) { var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) + if (!string.IsNullOrEmpty(_odataFilter)) { _queryParameters.Add(_odataFilter); } } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -346,10 +354,10 @@ internal WorkflowsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -357,7 +365,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -371,7 +379,7 @@ internal WorkflowsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -413,7 +421,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -456,12 +464,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -473,7 +484,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -490,38 +501,40 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -537,10 +550,10 @@ internal WorkflowsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -548,7 +561,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -562,7 +575,7 @@ internal WorkflowsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -604,7 +617,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -650,12 +663,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -667,7 +683,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -693,38 +709,40 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -741,15 +759,15 @@ internal WorkflowsOperations(LogicManagementClient client) string _requestContent = null; if(workflow != null) { - _requestContent = SafeJsonConvert.SerializeObject(workflow, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(workflow, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -757,7 +775,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -771,7 +789,7 @@ internal WorkflowsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -813,7 +831,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -831,7 +849,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -877,12 +895,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -894,7 +915,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -916,38 +937,40 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -964,15 +987,15 @@ internal WorkflowsOperations(LogicManagementClient client) string _requestContent = null; if(workflow != null) { - _requestContent = SafeJsonConvert.SerializeObject(workflow, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(workflow, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -980,7 +1003,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -994,7 +1017,7 @@ internal WorkflowsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1036,7 +1059,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1076,12 +1099,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -1093,7 +1119,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -1110,38 +1136,40 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1157,10 +1185,10 @@ internal WorkflowsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1168,7 +1196,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1238,12 +1266,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task DisableWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -1255,7 +1286,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -1272,38 +1303,40 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Disable", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/disable").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/disable").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1319,10 +1352,10 @@ internal WorkflowsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1330,7 +1363,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1400,12 +1433,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task EnableWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -1417,7 +1453,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -1434,38 +1470,40 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Enable", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/enable").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/enable").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1481,10 +1519,10 @@ internal WorkflowsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1492,7 +1530,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1568,12 +1606,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task> GenerateUpgradedDefinitionWithHttpMessagesAsync(string resourceGroupName, string workflowName, GenerateUpgradedDefinitionParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -1585,7 +1626,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -1607,38 +1648,40 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "GenerateUpgradedDefinition", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/generateUpgradedDefinition").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/generateUpgradedDefinition").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1655,15 +1698,15 @@ internal WorkflowsOperations(LogicManagementClient client) string _requestContent = null; 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"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1671,7 +1714,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1685,7 +1728,7 @@ internal WorkflowsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -1727,7 +1770,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1773,12 +1816,15 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// public async Task ValidateWithHttpMessagesAsync(string resourceGroupName, string location, string workflowName, Workflow workflow, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } @@ -1794,7 +1840,7 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } @@ -1821,39 +1867,41 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.Enter(_invocationId, this, "Validate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/locations/{location}/workflows/{workflowName}/validate").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{location}", Uri.EscapeDataString(location)); - _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/locations/{location}/workflows/{workflowName}/validate").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{workflowName}", System.Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1870,15 +1918,15 @@ internal WorkflowsOperations(LogicManagementClient client) string _requestContent = null; if(workflow != null) { - _requestContent = SafeJsonConvert.SerializeObject(workflow, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(workflow, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -1886,7 +1934,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1956,6 +2004,9 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -1982,26 +2033,28 @@ internal WorkflowsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2017,10 +2070,10 @@ internal WorkflowsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -2028,7 +2081,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -2042,7 +2095,7 @@ internal WorkflowsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -2084,7 +2137,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2124,6 +2177,9 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// Thrown when a required parameter is null /// + /// + /// Thrown when a required parameter is null + /// /// /// A response object containing the response body and response headers. /// @@ -2150,26 +2206,28 @@ internal WorkflowsOperations(LogicManagementClient client) List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2185,10 +2243,10 @@ internal WorkflowsOperations(LogicManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) @@ -2196,7 +2254,7 @@ internal WorkflowsOperations(LogicManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -2210,7 +2268,7 @@ internal WorkflowsOperations(LogicManagementClient client) try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { ex = new CloudException(_errorBody.Message); @@ -2252,7 +2310,7 @@ internal WorkflowsOperations(LogicManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2273,3 +2331,4 @@ internal WorkflowsOperations(LogicManagementClient client) } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperationsExtensions.cs index 0ba7d35d8b4d..b408df1a83ac 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperationsExtensions.cs @@ -1,22 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Logic { - using System; - using System.Collections; - using System.Collections.Generic; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Azure.OData; + using Models; using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Azure.OData; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for WorkflowsOperations. @@ -34,7 +33,7 @@ public static partial class WorkflowsOperationsExtensions /// public static IPage ListBySubscription(this IWorkflowsOperations operations, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ListBySubscriptionAsync(odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListBySubscriptionAsync(odataQuery).GetAwaiter().GetResult(); } /// @@ -71,7 +70,7 @@ public static partial class WorkflowsOperationsExtensions /// public static IPage ListByResourceGroup(this IWorkflowsOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ListByResourceGroupAsync(resourceGroupName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName, odataQuery).GetAwaiter().GetResult(); } /// @@ -111,7 +110,7 @@ public static partial class WorkflowsOperationsExtensions /// public static Workflow Get(this IWorkflowsOperations operations, string resourceGroupName, string workflowName) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).GetAsync(resourceGroupName, workflowName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, workflowName).GetAwaiter().GetResult(); } /// @@ -154,7 +153,7 @@ public static Workflow Get(this IWorkflowsOperations operations, string resource /// public static Workflow CreateOrUpdate(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, Workflow workflow) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).CreateOrUpdateAsync(resourceGroupName, workflowName, workflow), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, workflowName, workflow).GetAwaiter().GetResult(); } /// @@ -200,7 +199,7 @@ public static Workflow CreateOrUpdate(this IWorkflowsOperations operations, stri /// public static Workflow Update(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, Workflow workflow) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).UpdateAsync(resourceGroupName, workflowName, workflow), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, workflowName, workflow).GetAwaiter().GetResult(); } /// @@ -243,7 +242,7 @@ public static Workflow Update(this IWorkflowsOperations operations, string resou /// public static void Delete(this IWorkflowsOperations operations, string resourceGroupName, string workflowName) { - Task.Factory.StartNew(s => ((IWorkflowsOperations)s).DeleteAsync(resourceGroupName, workflowName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, workflowName).GetAwaiter().GetResult(); } /// @@ -280,7 +279,7 @@ public static void Delete(this IWorkflowsOperations operations, string resourceG /// public static void Disable(this IWorkflowsOperations operations, string resourceGroupName, string workflowName) { - Task.Factory.StartNew(s => ((IWorkflowsOperations)s).DisableAsync(resourceGroupName, workflowName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DisableAsync(resourceGroupName, workflowName).GetAwaiter().GetResult(); } /// @@ -317,7 +316,7 @@ public static void Disable(this IWorkflowsOperations operations, string resource /// public static void Enable(this IWorkflowsOperations operations, string resourceGroupName, string workflowName) { - Task.Factory.StartNew(s => ((IWorkflowsOperations)s).EnableAsync(resourceGroupName, workflowName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.EnableAsync(resourceGroupName, workflowName).GetAwaiter().GetResult(); } /// @@ -357,7 +356,7 @@ public static void Enable(this IWorkflowsOperations operations, string resourceG /// public static object GenerateUpgradedDefinition(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, GenerateUpgradedDefinitionParameters parameters) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).GenerateUpgradedDefinitionAsync(resourceGroupName, workflowName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GenerateUpgradedDefinitionAsync(resourceGroupName, workflowName, parameters).GetAwaiter().GetResult(); } /// @@ -406,7 +405,7 @@ public static object GenerateUpgradedDefinition(this IWorkflowsOperations operat /// public static void Validate(this IWorkflowsOperations operations, string resourceGroupName, string location, string workflowName, Workflow workflow) { - Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ValidateAsync(resourceGroupName, location, workflowName, workflow), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.ValidateAsync(resourceGroupName, location, workflowName, workflow).GetAwaiter().GetResult(); } /// @@ -446,7 +445,7 @@ public static void Validate(this IWorkflowsOperations operations, string resourc /// public static IPage ListBySubscriptionNext(this IWorkflowsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ListBySubscriptionNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -480,7 +479,7 @@ public static IPage ListBySubscriptionNext(this IWorkflowsOperations o /// public static IPage ListByResourceGroupNext(this IWorkflowsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -505,3 +504,4 @@ public static IPage ListByResourceGroupNext(this IWorkflowsOperations } } + diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd index 5be909b45821..1cb30ff6f511 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd @@ -4,9 +4,9 @@ :: @echo off -set autoRestVersion=0.17.0-Nightly20160621 +set autoRestVersion=1.0.0-Nightly20170212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/ecc34b75fe5aecebd148b74392b67e85070e0fc5/arm-logic/2016-06-01/swagger/logic.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/84cf0b641e5fdc7dc88c209d79f60056a1dc863a/arm-logic/2016-06-01/swagger/logic.json" ) else ( set specFile="%1" ) From b9aaa1b74becd13ecef537214da02828c7bc2e27 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Fri, 24 Feb 2017 18:11:53 -0800 Subject: [PATCH 036/137] Updates for DataLake Analytics, Store, DevTest Labs, Dns --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 22 ++++----- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 27 +++++------ .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 45 ++++--------------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 42 ++++++++--------- 8 files changed, 61 insertions(+), 83 deletions(-) diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs index 3326726b43c0..3f0ac6c2def7 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Data Lake Analytics management operations including account, catalog and job management.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.1.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json index 960d635660c1..97572587aaf5 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json @@ -1,12 +1,12 @@ { - "version": "2.0.1-preview", + "version": "2.1.0-preview", "description": "Provides Data Lake Analytics account, job and catalog management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides Data Lake Analytics account, job and catalog management capabilities for Microsoft Azure.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Data Lake Analytics management", "DataLakeAnalytics", "Data Lake Analytics management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Data Lake Analytics management", "DataLakeAnalytics", "Data Lake Analytics management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true, @@ -20,30 +20,32 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs index bedac3e33068..089e10c11e8e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Data Lake Store management operations including account and filesystem management.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.1.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json index 3507c03d2972..8105ae800f3d 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json @@ -1,12 +1,12 @@ { - "version": "2.0.1-preview", + "version": "2.1.0-preview", "description": "Provides Data Lake Store account and filesystem management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides Data Lake Store account and filesystem management capabilities for Microsoft Azure.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Data Lake Store management", "DataLakeStore", "Data Lake Store management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Data Lake Store management", "DataLakeStore", "Data Lake Store management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true, @@ -20,30 +20,31 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)" } }, "netstandard1.5": { "imports": [ "dnxcore50" ], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)", - "System.Collections.Concurrent": "4.0.12", + "System.Threading.Tasks": "4.3.0", + "System.Collections.Concurrent": "4.3.0", "System.Threading.Thread": "4.0.0", - "System.IO.FileSystem": "4.0.1", - "System.IO": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Runtime.Extensions": "4.1.0" + "System.IO.FileSystem": "4.3.0", + "System.IO": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Runtime.Extensions": "4.3.0" } } } diff --git a/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/Properties/AssemblyInfo.cs b/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/Properties/AssemblyInfo.cs index 3d93170921bc..47378bed15a1 100644 --- a/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("Microsoft Azure DevTest Labs Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure DevTest Labs Resources.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.1.2.0")] +[assembly: AssemblyFileVersion("1.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json b/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json index 12b709fd7ddb..bc22af392bef 100644 --- a/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json +++ b/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json @@ -1,15 +1,15 @@ { - "version": "1.1.2", + "version": "1.2.0", "description": "Microsoft.Azure.Management.DevTestLabs", "authors": [ "Microsoft" ], "packOptions": { "summary": "Microsoft.Azure.Management.DevTestLabs.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft AutoRest Management REST" ], + "tags": [ "Microsoft AutoRest Management REST", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,6 +19,8 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -33,51 +35,22 @@ "System.Xml": "" }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.1": { "buildOptions": { "define": [ "PORTABLE" ] }, "imports": ["dnxcore50", "portable-net45+win8"], "dependencies": { - "NETStandard.Library": "1.6.0", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1" } }, "netstandard1.5": { "buildOptions": { "define": [ "PORTABLE" ] }, "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Numerics": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1" } } } diff --git a/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/Properties/AssemblyInfo.cs b/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/Properties/AssemblyInfo.cs index fe865307d373..5e6d36b6fbae 100644 --- a/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("Microsoft Azure DNS Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure DNS Resources.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.7.2.0")] +[assembly: AssemblyFileVersion("1.8.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json b/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json index 1e8b053cbf2d..15a4506ddfb3 100644 --- a/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json +++ b/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json @@ -1,15 +1,15 @@ { - "version": "1.7.2-preview", + "version": "1.8.0-preview", "description": "Provides management capabilities for Azure Dns.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides management capabilities for Azure Dns.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Dns", "Dns", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Dns", "Dns", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,38 +19,40 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "Microsoft.CSharp": "4.3.0", + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.1.1" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } From cc061d695e0839f7923394ec4f7a5dd656427c41 Mon Sep 17 00:00:00 2001 From: David Burg Date: Fri, 24 Feb 2017 18:36:15 -0800 Subject: [PATCH 037/137] Restoring manual suppression of fault-positive CS002 warnings. --- .../CreateAndDeleteIntegrationAccountCertificate.json | 2 ++ .../CreateAndGetIntegrationAccountCertificate.json | 3 +++ .../CreateAndUpdateIntegrationAccountCertificate.json | 5 +++++ .../CreateIntegrationAccountCertificateWithPrivateKey.json | 2 ++ .../CreateIntegrationAccountCertificateWithPublicKey.json | 2 ++ ...DeleteIntegrationAccountCertificateOnAccountDeletion.json | 2 ++ .../ListIntegrationAccountCertificates.json | 3 +++ 7 files changed, 19 insertions(+) diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json index 7d838f3f7b98..23633f2fdaad 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json @@ -65,6 +65,7 @@ "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652/certificates/IntegrationAccountCertificate6176?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MTc2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -84,6 +85,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:21:01.8960296Z\",\r\n \"changedTime\": \"2017-02-25T00:21:01.8968772Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652/certificates/IntegrationAccountCertificate6176\",\r\n \"name\": \"IntegrationAccountCertificate6176\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json index fbf8b4dd4fce..c7961e796741 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json @@ -65,6 +65,7 @@ "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTQ4MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -84,6 +85,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:49.3996839Z\",\r\n \"changedTime\": \"2017-02-25T00:20:49.4004187Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809\",\r\n \"name\": \"IntegrationAccountCertificate4809\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ @@ -139,6 +141,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:49.3996839Z\",\r\n \"changedTime\": \"2017-02-25T00:20:49.4004187Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809\",\r\n \"name\": \"IntegrationAccountCertificate4809\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json index c1410eab067c..a5fc1092d030 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json @@ -65,6 +65,7 @@ "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MjA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -84,6 +85,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.3434443Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ @@ -126,6 +128,7 @@ "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MjA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -145,6 +148,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.8645787Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ @@ -204,6 +208,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.8645787Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json index 14ebe31b4cf9..837162a14959 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json @@ -65,6 +65,7 @@ "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994/certificates/IntegrationAccountCertificate753?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5NC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3NTM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n }\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -84,6 +85,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:04.9581585Z\",\r\n \"changedTime\": \"2017-02-25T00:21:04.9583985Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994/certificates/IntegrationAccountCertificate753\",\r\n \"name\": \"IntegrationAccountCertificate753\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json index f43817d7c465..7795a05ba31c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json @@ -65,6 +65,7 @@ "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772/certificates/IntegrationAccountCertificate6964?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2OTY0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -84,6 +85,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:45.7540057Z\",\r\n \"changedTime\": \"2017-02-25T00:20:45.7546271Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772/certificates/IntegrationAccountCertificate6964\",\r\n \"name\": \"IntegrationAccountCertificate6964\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json index 82ba8460fe22..4b65deb0f116 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json @@ -65,6 +65,7 @@ "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887/certificates/IntegrationAccountCertificate2920?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTI5MjA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -84,6 +85,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:51.9320654Z\",\r\n \"changedTime\": \"2017-02-25T00:20:51.9360857Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887/certificates/IntegrationAccountCertificate2920\",\r\n \"name\": \"IntegrationAccountCertificate2920\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json index 190f4b52097c..d07ad1fc94e9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json @@ -65,6 +65,7 @@ "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTE1OTI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ @@ -84,6 +85,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:59.0101599Z\",\r\n \"changedTime\": \"2017-02-25T00:20:59.0103597Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592\",\r\n \"name\": \"IntegrationAccountCertificate1592\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ @@ -139,6 +141,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:59.0101599Z\",\r\n \"changedTime\": \"2017-02-25T00:20:59.0103597Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592\",\r\n \"name\": \"IntegrationAccountCertificate1592\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ From 97a194502d2794c5935f4db329eaff43907f2410 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Fri, 24 Feb 2017 19:22:59 -0800 Subject: [PATCH 038/137] Updates for EventHub, RBAC, Insights --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 30 +++++++++++-------- .../Properties/AssemblyInfo.cs | 2 +- .../Microsoft.Azure.Graph.RBAC/project.json | 27 ++++++++--------- .../Properties/AssemblyInfo.cs | 4 +-- .../Microsoft.Azure.Insights/project.json | 21 +++++++------ 6 files changed, 46 insertions(+), 40 deletions(-) diff --git a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/Properties/AssemblyInfo.cs b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/Properties/AssemblyInfo.cs index 386de737a7ec..f731dcd9d015 100644 --- a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides developers with a library to create and manage all Azure Event Hubs resources.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.2.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json index 07306a8e5988..5f30ecef5e6d 100644 --- a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json +++ b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json @@ -1,12 +1,12 @@ { - "version": "1.0.0", + "version": "1.1.0", "description": "Provides developers with a library to create and manage all Azure Event Hubs resources. Note: This client library is for EventHub under Azure Resource Manager.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides developers with a library to create and manage all Azure Event Hubs resources. Note: This client library is for EventHub under Azure Resource Manager.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure EventHubs Management", "Event Hubs", "Event Hubs management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure EventHubs Management", "Event Hubs", "Event Hubs management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -17,7 +17,8 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2, 4.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -28,24 +29,27 @@ "netstandard1.5": { "imports": [ "dnxcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", "Microsoft.CSharp": "4.0.1", "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1" } } diff --git a/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/Properties/AssemblyInfo.cs b/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/Properties/AssemblyInfo.cs index a1ec7f059dd5..db7c0975449b 100644 --- a/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Graph RBAC access.")] [assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.2.0.0")] +[assembly: AssemblyFileVersion("3.3.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json b/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json index 6947834a840b..7d6b93e32e29 100644 --- a/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json +++ b/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json @@ -1,15 +1,15 @@ { - "version": "3.2.0-preview", + "version": "3.3.0-preview", "description": "Microsoft.Azure.Graph.RBAC", "authors": [ "Microsoft" ], "packOptions": { "summary": "Microsoft.Azure.Graph.RBAC management library", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft AutoRest Management REST" ], + "tags": [ "Microsoft AutoRest Management REST", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,35 +19,34 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.1.0,3.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Properties/AssemblyInfo.cs b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Properties/AssemblyInfo.cs index fc4987cb0251..1c4534bc03d1 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Insights Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Insights operations.")] -[assembly: AssemblyVersion("0.14.0.0")] -[assembly: AssemblyFileVersion("0.14.0.0")] +[assembly: AssemblyVersion("0.15.0.0")] +[assembly: AssemblyFileVersion("0.15.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json index 1ad2eee3ed7f..2ae4868f7c7a 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json @@ -1,5 +1,5 @@ { - "version": "0.14.1-preview", + "version": "0.15.0-preview", "description": "Microsoft Azure Insights Library", "authors": [ "Microsoft" ], @@ -8,7 +8,7 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft", "Microsoft Azure", "Azure", "Insights", "monitoring", "monitoring services", "metrics", "alerts", "autoscale", "events", "operations", "logs", "REST", "HTTP", "client", "azureofficial", "windowsazureofficial", "management services", "diagnostics", "telemetry", "analytics" ], + "tags": [ "Microsoft", "Microsoft Azure", "Azure", "Insights", "monitoring", "monitoring services", "metrics", "alerts", "autoscale", "events", "operations", "logs", "REST", "HTTP", "client", "azureofficial", "windowsazureofficial", "management services", "diagnostics", "telemetry", "analytics", "netcore451511" ], "requireLicenseAcceptance": false }, @@ -18,8 +18,8 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.3,3.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -32,18 +32,21 @@ "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Net.Http": "4.1.0" + "System.Net.Http": "4.3.0" } } } From d22e893673acfe65e34a7e0b2031b164255333b2 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Sat, 25 Feb 2017 14:59:43 -0800 Subject: [PATCH 039/137] Updates for KeyVault, Logic, ML, Media --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 22 +++++++----- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 27 +++++++-------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 34 ++++++++++--------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 25 +++++++------- 8 files changed, 60 insertions(+), 56 deletions(-) diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Properties/AssemblyInfo.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Properties/AssemblyInfo.cs index a706baf06b34..52f2f94c3507 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyDescription("Provides key vault management capabilities for Microsoft Azure.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.1.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json index 74685ab189dd..10d14eaa0a06 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json @@ -1,5 +1,5 @@ { - "version": "2.0.1-preview", + "version": "2.1.0-preview", "title": "Microsoft Azure Key Vault Management", "description": "Provides key vault management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], @@ -8,7 +8,7 @@ "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure key vault management", "Key Vault", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure key vault management", "Key Vault", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "requireLicenseAcceptance": true, "releaseNotes": "This is a preview release of the Azure Key Vault .NET SDK, based on version 2015-06-01 of the Azure Key Vault REST API." }, @@ -20,7 +20,8 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1, 4.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -30,19 +31,22 @@ "buildOptions": { "define": [ "PORTABLE" ] }, "imports": [ "dnxcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Collections": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Collections": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0" + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1" } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs index c9773a104525..e89117f6b7f1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs @@ -12,7 +12,7 @@ [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json index addd2cd03cb1..31daa518885e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json @@ -1,5 +1,5 @@ { - "version": "2.0.0", + "version": "2.1.0", "description": "Microsoft Azure LogicApps Management Library", "authors": [ "Microsoft" ], @@ -8,8 +8,8 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft Azure LogicApps management", "LogicApps", "LogicApps management", "REST HTTP client", "windowsazureofficial" ], - "requireLicenseAcceptance": true, + "tags": [ "Microsoft Azure LogicApps management", "LogicApps", "LogicApps management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,35 +19,34 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.1.0,3.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs index 43ffd1560226..20430ab25e11 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Machine Learning.")] [assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.9.6.0")] +[assembly: AssemblyFileVersion("0.10.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json index 26d37823daf7..5144484051e2 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json @@ -1,12 +1,12 @@ { - "version": "0.9.6-preview", + "version": "0.10.0-preview", "description": "Provides Machine Learning WebServices management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides Machine Learning WebServices management capabilities for Microsoft Azure.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Machine Learning WebServices management", "WebServices management", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Machine Learning WebServices management", "WebServices management", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -19,36 +19,38 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1" } } } diff --git a/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/Properties/AssemblyInfo.cs b/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/Properties/AssemblyInfo.cs index 910931d93a5b..43dfd3cd4d09 100644 --- a/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Media.")] [assembly: AssemblyVersion("0.1.0")] -[assembly: AssemblyFileVersion("0.1.0")] +[assembly: AssemblyFileVersion("0.2.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json b/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json index af68ba76f47d..e1a6da154d42 100644 --- a/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json +++ b/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json @@ -1,5 +1,5 @@ { - "version": "0.1.0", + "version": "0.2.0", "description": "Provides developers with libraries for managing the MediaServices under Azure Resource Manager. New, set, get and delete MediaServices, regenerate account keys, sync the storage key and more.", "authors": [ "Microsoft" ], @@ -8,7 +8,7 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft Azure Media management", "Media", "Media management", "REST HTTP client" ], + "tags": [ "Microsoft Azure Media management", "Media", "Media management", "REST HTTP client", "netcore451511" ], "requireLicenseAcceptance": true }, @@ -19,35 +19,34 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.1.0,3.0.0)" } }, "netstandard1.5": { "imports": [ "dnxcore50" ], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } From 74ad44a396bd3d67104236f1848eb9c377bc76e0 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Sat, 25 Feb 2017 15:44:53 -0800 Subject: [PATCH 040/137] Updates for Network, NotificationHub, PowerBI --- .../Properties/AssemblyInfo.cs | 4 +- .../project.json | 26 ++++++------ .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 40 +++++++++--------- .../NotificationHubs/NotificationHubs.sln | 36 ---------------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 41 ++++++++++--------- 7 files changed, 61 insertions(+), 90 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 460547dbb504..05d3cdb99148 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("8.3.0.0")] -[assembly: AssemblyFileVersion("8.3.0.0")] +[assembly: AssemblyVersion("8.4.0.0")] +[assembly: AssemblyFileVersion("8.4.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index ef9812e2cb3f..6ce3877c545d 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,15 +1,15 @@ { - "version": "8.3.0-preview", + "version": "8.4.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides management capabilities for Network services", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Network management", "Network", "Network management","REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Network management", "Network", "Network management","REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,30 +19,32 @@ }, "dependencies": { - }, + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" + }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/Properties/AssemblyInfo.cs b/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/Properties/AssemblyInfo.cs index 17a61ce5a6ac..1ae377da8197 100644 --- a/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure NotificationHubs management functions for managing the Microsoft Azure NotificationHubs service.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.0.0")] +[assembly: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json b/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json index 1271dd2c89fa..fa587b025dec 100644 --- a/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json +++ b/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json @@ -1,15 +1,15 @@ { - "version": "2.1.0-preview", + "version": "2.2.0-preview", "description": "Provides developers with libraries to create and manager Namespaces of type NotificationHub and NotificationHubs. Manage Authorization Rules at both the resource levels. Note: This client library is for NotificationHubs under Azure Resource Manager.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides developers with libraries to create and manager Namespaces of type NotificationHub and NotificationHubs. Manage Authorization Rules at both the resource levels. Note: This client library is for NotificationHubs under Azure Resource Manager.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure NotificationHubs Management", "NotificationHubs", "NotificationHubs management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure NotificationHubs Management", "NotificationHubs", "NotificationHubs management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,38 +19,40 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.1.1" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/NotificationHubs/NotificationHubs.sln b/src/ResourceManagement/NotificationHubs/NotificationHubs.sln index 544a4d0a63c6..a232d035f264 100644 --- a/src/ResourceManagement/NotificationHubs/NotificationHubs.sln +++ b/src/ResourceManagement/NotificationHubs/NotificationHubs.sln @@ -11,10 +11,6 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\..\Test EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NotificationHubs.Tests", "NotificationHubs.Tests\NotificationHubs.Tests.xproj", "{90FE65CB-D848-4ED8-97F5-7C967102CEAF}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Authorization.Tests", "..\Authorization\Authorization.Tests\Authorization.Tests.xproj", "{CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}" -EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.Authorization", "..\Authorization\Microsoft.Azure.Management.Authorization\Microsoft.Azure.Management.Authorization.xproj", "{53BC286B-ECEF-4152-B15E-60B139DB9F48}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -91,38 +87,6 @@ Global {90FE65CB-D848-4ED8-97F5-7C967102CEAF}.Portable-Release|Any CPU.Build.0 = Release|Any CPU {90FE65CB-D848-4ED8-97F5-7C967102CEAF}.Release|Any CPU.ActiveCfg = Release|Any CPU {90FE65CB-D848-4ED8-97F5-7C967102CEAF}.Release|Any CPU.Build.0 = Release|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Net40-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Net40-Debug|Any CPU.Build.0 = Debug|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Net40-Release|Any CPU.ActiveCfg = Release|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Net40-Release|Any CPU.Build.0 = Release|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Net45-Release|Any CPU.Build.0 = Release|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Portable-Release|Any CPU.Build.0 = Release|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CBDF6C03-1DF5-4D86-A23F-F5F3EA1BBEEC}.Release|Any CPU.Build.0 = Release|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Debug|Any CPU.Build.0 = Debug|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Net40-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Net40-Debug|Any CPU.Build.0 = Debug|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Net40-Release|Any CPU.ActiveCfg = Release|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Net40-Release|Any CPU.Build.0 = Release|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Net45-Release|Any CPU.Build.0 = Release|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Portable-Release|Any CPU.Build.0 = Release|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Release|Any CPU.ActiveCfg = Release|Any CPU - {53BC286B-ECEF-4152-B15E-60B139DB9F48}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/Properties/AssemblyInfo.cs b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/Properties/AssemblyInfo.cs index 2cef43632398..7fa628542399 100644 --- a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Power BI Embedded management functions for managing the Microsoft Azure Power BI Embedded.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.7.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json index c479b60e10f5..0574cc086571 100644 --- a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json +++ b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.7-preview", + "version": "1.1.0-preview", "description": "Microsoft Azure Management Power BI Embedded Library", "authors": [ "Microsoft" @@ -10,7 +10,8 @@ "Power BI Embedded", "Power BI Embedded management", "REST HTTP client", - "windowsazureofficial" + "windowsazureofficial", + "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", @@ -22,36 +23,38 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, - "dependencies": { - }, + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" + }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": [ "dnxcore50" ], "buildOptions": { "define": [ "PORTABLE" ] }, - "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" - } + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "buildOptions": { "define": [ "PORTABLE" ] }, - "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" - } + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" + } } } } \ No newline at end of file From 1fbff434ae3efc985fc6eab18ffc5389c2b86849 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Sat, 25 Feb 2017 16:58:41 -0800 Subject: [PATCH 041/137] Updates for Scheduler, ServerManagement, ServiceBus, Sql, Storage --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 18 +++++++---- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 26 ++++++++------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 32 +++++++++++-------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 28 ++++++++-------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 24 +++++++------- 10 files changed, 77 insertions(+), 61 deletions(-) diff --git a/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/Properties/AssemblyInfo.cs b/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/Properties/AssemblyInfo.cs index da7b5f3892d2..6e23a08e8be7 100644 --- a/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure scheduler management operations.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.2.0")] +[assembly: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json b/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json index 7467e3647590..1d8b38e99b69 100644 --- a/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json +++ b/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json @@ -1,12 +1,12 @@ { - "version": "2.1.2", + "version": "2.2.0", "description": "Provides job collection and job management capabilities for Microsoft Azure Scheduler.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides job collection and job management capabilities for Microsoft Azure Scheduler.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Scheduler", "Scheduler", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Scheduler", "Scheduler", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -18,7 +18,8 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -27,16 +28,19 @@ "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1" } } diff --git a/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/Properties/AssemblyInfo.cs b/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/Properties/AssemblyInfo.cs index 8927d72ec4a0..80f9b456548a 100644 --- a/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Server Management functions for servers via Azure.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.9.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json b/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json index 22f3995b4ca7..6a654cba9ac3 100644 --- a/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json +++ b/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json @@ -1,15 +1,15 @@ { - "version": "1.0.9", + "version": "1.1.0", "description": "Allows programatic access to create SMT Gateways, Nodes, Sessions and remotely access PowerShell on a SMT Node.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides Azure Server Management tools capabilities.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Server Management", "Server Management", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Server Management", "Server Management", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -18,7 +18,8 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -31,20 +32,23 @@ "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "System.Security.Cryptography.Algorithms": "4.2.0" + "System.Threading.Tasks": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Security.Cryptography.Algorithms": "4.2.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Security.Cryptography.Algorithms": "4.2.0" } } } diff --git a/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/Properties/AssemblyInfo.cs b/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/Properties/AssemblyInfo.cs index 99feebe8999e..a222eb3e79e2 100644 --- a/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure ServiceBus management functions for managing the Microsoft Azure ServiceBus service.")] [assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.0.2.0")] +[assembly: AssemblyFileVersion("0.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json b/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json index c46ed474237e..e89632c977f2 100644 --- a/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json +++ b/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json @@ -1,12 +1,12 @@ { - "version": "0.0.2-preview", + "version": "0.1.0-preview", "description": "Provides developers with libraries to create and manage Namespaces and manage Authorization Rules. Note: This client library is for ServiceBus under Azure Resource Manager.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides developers with libraries to create and manage Namespaces ans manage Authorization Rules at both the resource levels. Note: This client library is for ServiceBus under Azure Resource Manager.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure ServiceBus Management", "ServiceBus", "ServiceBus management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure ServiceBus Management", "ServiceBus", "ServiceBus management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -19,7 +19,8 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2, 4.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -30,24 +31,27 @@ "netstandard1.5": { "imports": [ "dnxcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "Microsoft.CSharp": "4.3.0", "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1" } } diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs index 105d3a9db941..cda3cab82e86 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs @@ -22,7 +22,7 @@ [assembly: AssemblyTitle("Microsoft Azure SQL Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure SQL.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json index bf5e3957aa1c..70bed11d0825 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json @@ -1,8 +1,10 @@ { - "version": "1.0.0-preview", + "version": "1.1.0-preview", "authors": [ "Microsoft" ], "packOptions": { + "summary": "Provides Microsoft Azure SQL management operations for Microsoft Azure", + "tags": [ "Microsoft Azure SQL Management", "SQL", "SQL management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", @@ -15,35 +17,35 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, - "dependencies": {}, + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" + }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.1.0,3.0.0)" } }, "netstandard1.5": { "imports": [ "dnxcore50" ], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/Properties/AssemblyInfo.cs b/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/Properties/AssemblyInfo.cs index 8b499cb93bec..c8d02d0b4413 100644 --- a/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Storage management functions for managing the Microsoft Azure Storage service.")] [assembly: AssemblyVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.1.0.0")] +[assembly: AssemblyFileVersion("6.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/project.json b/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/project.json index 27a436ba42a7..05446a194ef6 100644 --- a/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/project.json +++ b/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/project.json @@ -1,15 +1,15 @@ { - "version": "6.1.0-preview", + "version": "6.2.0-preview", "description": "Microsoft Azure Management Storage Library", "authors": [ "Microsoft" ], "packOptions": { "summary": "Microsoft Azure Management Storage Library", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Storage management", "Storage", "Storage management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Storage management", "Storage", "Storage management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -23,30 +23,32 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } From 73d808fc0fd80f0127f787d45f728685f72e9d46 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Sat, 25 Feb 2017 17:05:01 -0800 Subject: [PATCH 042/137] Updates for TrafficeManager, Websites --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 24 ++++++++++--------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 24 ++++++++++--------- 4 files changed, 28 insertions(+), 24 deletions(-) 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 2722ca5bc3e8..46cff83775f0 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.0.2.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json index c8f7568e1ee5..c7183cfbc6c4 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json @@ -1,15 +1,15 @@ { - "version": "2.0.2-preview", + "version": "2.1.0-preview", "description": "Microsoft Azure Management TrafficManager Library", "authors": [ "Microsoft" ], "packOptions": { "summary": "Microsoft Azure Management TrafficManager Library", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure TrafficManager management", "TrafficManager", "TrafficManager management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure TrafficManager management", "TrafficManager", "TrafficManager management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,30 +19,32 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/Properties/AssemblyInfo.cs b/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/Properties/AssemblyInfo.cs index 5e43a6cf20cf..7f0234d1d97f 100644 --- a/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Web Sites.")] [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyFileVersion("1.5.0")] +[assembly: AssemblyFileVersion("1.6.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json b/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json index 7f37d150d4cd..c0ecac7b06fd 100644 --- a/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json +++ b/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json @@ -1,15 +1,15 @@ { - "version": "1.5.0-preview", + "version": "1.6.0-preview", "description": "Provides website management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides website management capabilities for Microsoft Azure", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure website management", "website management", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure website management", "website management", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,30 +19,32 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.2.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } From 861e29305e4d64f34b44de2cf03a175e147876b2 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Sat, 25 Feb 2017 18:51:03 -0800 Subject: [PATCH 043/137] Updates for Analysis, Authorization, Batch, Billing --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 31 ++++++++-------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 36 ++++++++++--------- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 20 ++++++----- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 25 +++++++------ 8 files changed, 63 insertions(+), 57 deletions(-) diff --git a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/Properties/AssemblyInfo.cs b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/Properties/AssemblyInfo.cs index e7b872e59bf1..8200f4cdaa20 100644 --- a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides management functionality for Azure Analysis Services Resources.")] [assembly: AssemblyVersion("1.0.3.0")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json index 97184b34f1c6..e15819b241bc 100644 --- a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json +++ b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.3-preview", + "version": "1.1.0-preview", "title": "Microsoft Azure Analysis Services Management Library", "description": "Provides management capabilities for Azure Analysis Services accounts.", "authors": [ "Microsoft" ], @@ -7,7 +7,7 @@ "packOptions": { "summary": "Provides management capabilities for Azure Analysis Services accounts.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure resource management", "asazure", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure resource management", "asazure", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -19,36 +19,37 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { - "Microsoft.Rest.ClientRuntime": "2.3.2" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "System.Threading.Tasks": "4.3.0", "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Collections": "4.0.11", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", + "System.Threading.Thread": "4.0.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/Properties/AssemblyInfo.cs b/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/Properties/AssemblyInfo.cs index 899a5bdef24e..2c06915f0d6d 100644 --- a/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides Microsoft Management Authorization access.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.4.2.0")] +[assembly: AssemblyFileVersion("2.5.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json b/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json index 2a737c8ee076..0aa112cc6cf4 100644 --- a/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json +++ b/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json @@ -1,5 +1,5 @@ { - "version": "2.4.2-preview", + "version": "2.5.0-preview", "title": "Authorization Library for Microsoft Azure Management Authorization", "description": "Provides capabilities to query Microsoft Azure Management Authorization.", "authors": [ "Microsoft" ], @@ -9,8 +9,8 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "http://aka.ms/windowsazureapache2", - "tags": [ "Microsoft Azure Management", "Authorization", "REST HTTP client", "windowsazureofficial" ], - "requireLicenseAcceptance": true, + "tags": [ "Microsoft Azure Management", "Authorization", "REST HTTP client", "windowsazureofficial", "netcore451511" ], + "requireLicenseAcceptance": true }, "buildOptions": { @@ -20,36 +20,38 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1" } } } diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Properties/AssemblyInfo.cs b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Properties/AssemblyInfo.cs index d5ec8acfb5b4..0c5b74e63aaa 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides management functions for Microsoft Azure Batch services.")] [assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.0.0.0")] +[assembly: AssemblyFileVersion("4.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json index f6d44f93b74f..20a4466f638e 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json @@ -1,5 +1,5 @@ { - "version": "4.0.0", + "version": "4.1.0", "title": "Microsoft Azure Batch Management Library", "description": "Provides management capabilities for Azure Batch service accounts.", "authors": [ "Microsoft" ], @@ -7,7 +7,7 @@ "packOptions": { "summary": "Provides management capabilities for Azure Batch service accounts.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure batch management", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure batch management", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true, @@ -21,7 +21,8 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1, 4.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -32,19 +33,22 @@ "netstandard1.5": { "imports": [ "dnxcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "Microsoft.CSharp": "4.0.1", "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Collections": "4.0.11", + "System.Threading.Tasks": "4.3.0", + "System.Collections": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0" + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1" } } diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Properties/AssemblyInfo.cs b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Properties/AssemblyInfo.cs index 4ddab9d8681f..94d6cad2e392 100644 --- a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Billing.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json index 4ccba3ff47ab..fa7b1742f2be 100644 --- a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-preview", + "version": "1.1.0-preview", "description": "Microsoft Azure Billing Management Library", "authors": [ "Microsoft" ], @@ -8,7 +8,7 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft Azure Billing management", "Billing", "Billing management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Billing management", "Billing", "Billing management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "requireLicenseAcceptance": true }, @@ -19,35 +19,34 @@ }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.1.0,3.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } From 1e28ef0b3d170849a73d2a6627d2ec7bd396d405 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Sun, 26 Feb 2017 18:40:52 -0800 Subject: [PATCH 044/137] Ability to publish netCore packages when package names are provided without scope. Helps in publishing packages from multiple scopes. Added tests for publishing packages. --- build.proj | 23 ++++- .../PublishNugetPackageTests.proj | 98 +++++++++++++++---- .../DebugTask.cs | 2 +- .../FilterOutAutoRestLibraries.cs | 23 ++++- tools/nuget.targets | 2 +- 5 files changed, 120 insertions(+), 28 deletions(-) diff --git a/build.proj b/build.proj index e8dbdb2ea67f..7e2780702367 100644 --- a/build.proj +++ b/build.proj @@ -121,19 +121,31 @@ - + + + + - + + + - + + + + + + + - + @@ -395,4 +407,7 @@ + + + diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/Build.Tasks.Tests/PublishNugetPackageTests.proj b/tools/Microsoft.WindowsAzure.Build.Tasks/Build.Tasks.Tests/PublishNugetPackageTests.proj index 0863cb32e779..c662f2e6d223 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/Build.Tasks.Tests/PublishNugetPackageTests.proj +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/Build.Tasks.Tests/PublishNugetPackageTests.proj @@ -24,7 +24,26 @@ - + + + + + + + + + + + + + + + + + + + MultiProjectMultiSln @@ -56,26 +75,36 @@ - - - - - - - - - - - - - - - - - - - + + + + + + RP1_MgmtPlane + + + + + + + + + + RP1_MgmtPlane NetCoreTestPublish + + + + + + + + MultiProjectSingleSln + RP1_MgmtPlane NetCoreTestPublish + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/DebugTask.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/DebugTask.cs index 36729e3cd657..a3494ed3c2e8 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/DebugTask.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/DebugTask.cs @@ -17,7 +17,7 @@ public class DebugTask : Microsoft.Build.Utilities.Task /// /// Default timeout /// - const int DEFAULT_TASK_TIMEOUT = 20000; + const int DEFAULT_TASK_TIMEOUT = 30000; /// /// Task Timeout diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs index f9cde92f1180..1dda774483df 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs @@ -12,6 +12,9 @@ namespace Microsoft.WindowsAzure.Build.Tasks { public class FilterOutAutoRestLibraries : Task { + [Required] + public ITaskItem[] SdkNugetPackageInput { get; set; } + [Required] public ITaskItem[] AllLibraries { get; set; } @@ -37,6 +40,9 @@ public class FilterOutAutoRestLibraries : Task [Output] public ITaskItem[] NetCore_AutoRestLibraries { get; private set; } + [Output] + public ITaskItem[] SdkNuGetPackageOutput { get; private set; } + public override bool Execute() { System.Text.StringBuilder sb = new System.Text.StringBuilder(); @@ -50,15 +56,28 @@ public override bool Execute() var nonNetCoreAutoRestLibraries = new List(); var netCoreAutoRestLibraries = new List(); var netCoreLibraryTestOnes = new List(); + var SdkNuGetPackage = new List(); var others = new List(); List nPkgsList = null; + List sdkItemSpec = (from item in SdkNugetPackageInput select item.ItemSpec).ToList(); if (!string.IsNullOrWhiteSpace(NugetPackagesToPublish)) { nPkgsList = NugetPackagesToPublish.Split(new char[] { ' ', '\t' }, StringSplitOptions.RemoveEmptyEntries).ToList(); } + if(nPkgsList != null) + { + List common = nPkgsList.Intersect(sdkItemSpec).ToList(); + foreach(string projName in common) + { + ITaskItem nProj = SdkNugetPackageInput.Where((item) => item.ItemSpec.Equals(projName, StringComparison.OrdinalIgnoreCase)).First(); + if (nProj != null) + SdkNuGetPackage.Add(nProj); + } + } + foreach (ITaskItem solution in AllLibraries) { bool isAutoRestLibrary = false; @@ -169,10 +188,12 @@ public override bool Execute() Log.LogMessage(MessageImportance.High, "We have found {0} non netcore autorest libraries.", nonNetCoreAutoRestLibraries.Count); Log.LogMessage(MessageImportance.High, "We have found {0} netcore autorest libraries.", netCoreAutoRestLibraries.Count); - Log.LogMessage(MessageImportance.High, "we have found {0} Non autorest libraries.", others.Count); + Log.LogMessage(MessageImportance.High, "We have found {0} Non autorest libraries.", others.Count); + Log.LogMessage(MessageImportance.High, "We have found {0} SdkNuget Packages.", SdkNuGetPackage.Count); Non_NetCore_AutoRestLibraries = nonNetCoreAutoRestLibraries.ToArray(); NetCore_AutoRestLibraries = netCoreAutoRestLibraries.ToArray(); NonAutoRestLibraries = others.ToArray(); + SdkNuGetPackageOutput = SdkNuGetPackage.ToArray(); return true; } } diff --git a/tools/nuget.targets b/tools/nuget.targets index b593d1ebe026..cdfbddf3318c 100644 --- a/tools/nuget.targets +++ b/tools/nuget.targets @@ -97,7 +97,7 @@ - + From cfa854193c106fb12dba282a82b40391e8bb10c4 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Sun, 26 Feb 2017 19:48:14 -0800 Subject: [PATCH 045/137] Disabling publishing nuget packages for the entire repo if scope or package name is not specifiied --- build.proj | 3 --- tools/nuget.targets | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/build.proj b/build.proj index 7e2780702367..6eacb58915f8 100644 --- a/build.proj +++ b/build.proj @@ -407,7 +407,4 @@ - - - diff --git a/tools/nuget.targets b/tools/nuget.targets index cdfbddf3318c..fc87e9845895 100644 --- a/tools/nuget.targets +++ b/tools/nuget.targets @@ -97,7 +97,7 @@ - + From 8fe07dd54c6d6676c2f628327698f451231d7efa Mon Sep 17 00:00:00 2001 From: matthchr Date: Mon, 27 Feb 2017 09:52:17 -0800 Subject: [PATCH 046/137] Clean up various test and tooling issues --- .../StaticAnalysisUnitTests.cs | 15 ++++++++------- .../ObjectModelCodeGenerator/Program.cs | 2 +- .../StaticAnalysisUnitTests.cs | 15 ++++++++------- 3 files changed, 17 insertions(+), 15 deletions(-) diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs index b70438a35805..04e690ae60a8 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs @@ -72,13 +72,14 @@ public void ExceptionsThrownDirectlyByRestProxyDontChange() this.testOutputHelper.WriteLine("{0}", exceptionType); } - IReadOnlyCollection expectedExceptions = new List() - { - "ArgumentNullException", - "ValidationException", - "SerializationException" - }; - Assert.Equal((IEnumerable)expectedExceptions, exceptionSet); + IEnumerable expectedExceptions = new List() + { + "ArgumentNullException", + "ValidationException", + "SerializationException" + }; + + Assert.Equal(expectedExceptions, exceptionSet); } [Fact] diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs index f9913f222dd7..45b72a19f1e1 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs @@ -26,7 +26,7 @@ public static void Main(string[] args) { GenerateModelFiles(); - //GenerateSomeRoslynFiles(); + GenerateSomeRoslynFiles(); } private static void GenerateModelFiles() diff --git a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs index f8818a411fbe..351085200b25 100644 --- a/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs +++ b/src/Batch/ClientIntegrationTesting/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs @@ -72,13 +72,14 @@ public void ExceptionsThrownDirectlyByRestProxyDontChange() this.testOutputHelper.WriteLine("{0}", exceptionType); } - IReadOnlyCollection expectedExceptions = new List() - { - "ArgumentNullException", - "ValidationException", - "SerializationException" - }; - Assert.Equal((IEnumerable)expectedExceptions, exceptionSet); + IEnumerable expectedExceptions = new List() + { + "ArgumentNullException", + "ValidationException", + "SerializationException" + }; + + Assert.Equal(expectedExceptions, exceptionSet); } [Fact] From 3abf69615cab18c8cf322958ca18f587780fe081 Mon Sep 17 00:00:00 2001 From: David Burg Date: Mon, 27 Feb 2017 10:37:03 -0800 Subject: [PATCH 047/137] Logic App test code clean-up. --- ...se.InMemoryTests.cs => InMemoryTestsBase.cs} | 4 ++-- .../IntegrationAccountAgreementInMemoryTests.cs | 12 +++++------- ...ntegrationAccountCertificateInMemoryTests.cs | 4 ++-- .../IntegrationAccountInMemoryTests.cs | 11 ++++------- .../IntegrationAccountMapInMemoryTests.cs | 5 ++--- .../IntegrationAccountPartnerInMemoryTests.cs | 11 +++++------ .../IntegrationAccountSchemaInMemoryTests.cs | 5 ++--- .../IntegrationAccountSessionInMemoryTests.cs | 2 +- .../WorkflowRunActions.InMemoryTests.cs | 2 +- .../InMemoryTests/WorkflowRuns.InMemoryTests.cs | 2 +- .../WorkflowTriggerHistories.InMemoryTests.cs | 2 +- .../WorkflowTriggers.InMemoryTests.cs | 2 +- .../WorkflowVersions.InMemoryTests.cs | 2 +- .../InMemoryTests/Workflows.InMemoryTests.cs | 2 +- .../IntegrationAccount.ScenarioTests.cs | 12 +++++------- ...ntegrationAccountAgreements.ScenarioTests.cs | 2 +- ...egrationAccountCertificates.ScenarioTests.cs | 17 +++++++---------- .../IntegrationAccountMaps.ScenarioTests.cs | 2 +- .../IntegrationAccountPartners.ScenarioTests.cs | 2 +- .../IntegrationAccountSchemas.ScenarioTests.cs | 2 +- .../IntegrationAccountSessions.ScenarioTests.cs | 2 +- .../ScenarioTests/ProviderOperationsTests.cs | 8 +------- ...se.ScenarioTests.cs => ScenarioTestsBase.cs} | 10 ++++++---- .../WorkflowTriggerHistories.ScenarioTests.cs | 2 +- .../WorkflowTriggers.ScenarioTests.cs | 2 +- .../WorkflowVersions.ScenarioTests.cs | 2 +- .../ScenarioTests/Workflows.ScenarioTests.cs | 2 +- 27 files changed, 57 insertions(+), 74 deletions(-) rename src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/{Base.InMemoryTests.cs => InMemoryTestsBase.cs} (93%) rename src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/{Base.ScenarioTests.cs => ScenarioTestsBase.cs} (95%) diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Base.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/InMemoryTestsBase.cs similarity index 93% rename from src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Base.InMemoryTests.cs rename to src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/InMemoryTestsBase.cs index a81294720645..de9ad916788d 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Base.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/InMemoryTestsBase.cs @@ -9,9 +9,9 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest; /// - /// Base class for InMemory tests provides common methods and attributes. + /// Base class for in memory tests provides common methods and attributes. /// - public class BaseInMemoryTests + abstract public class InMemoryTestsBase { /// /// Test resourcegroup name for integration account diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs index 4634d066e6d3..09cf8398be44 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs @@ -2,21 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. -using System.Linq; - namespace Test.Azure.Management.Logic { - using System; + using System.IO; + using System.Linq; using System.Net; using System.Net.Http; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; using Microsoft.Rest; using Microsoft.Rest.Azure; using Xunit; - using Microsoft.Azure.Management.Logic.Models; - using Microsoft.Azure.Management.Logic; - using System.IO; - public class IntegrationAccountAgreementInMemoryTests : BaseInMemoryTests + public class IntegrationAccountAgreementInMemoryTests : InMemoryTestsBase { public IntegrationAccountAgreementInMemoryTests() { diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs index 69f090f9c17e..fd4515c6a17e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs @@ -12,10 +12,10 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; using Microsoft.Azure.Management.Logic.Models; - using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic; using System.IO; - public class IntegrationAccountCertificateInMemoryTests : BaseInMemoryTests + public class IntegrationAccountCertificateInMemoryTests : InMemoryTestsBase { public IntegrationAccountCertificateInMemoryTests() { diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs index 126748a470ba..ccc76c21289e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. -using System.IO; - namespace Test.Azure.Management.Logic { - using System; using System.Collections.Generic; + using System.IO; using System.Linq; using System.Net; using System.Net.Http; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; using Microsoft.Rest; using Microsoft.Rest.Azure; using Xunit; - using Microsoft.Azure.Management.Logic.Models; - using Microsoft.Azure.Management.Logic; - using Test.Azure.Management.Logic; - public class IntegrationAccountInMemoryTests : BaseInMemoryTests + public class IntegrationAccountInMemoryTests : InMemoryTestsBase { public IntegrationAccountInMemoryTests() { diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs index 50c9535edf50..0838e63d1ce4 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs @@ -5,7 +5,6 @@ namespace Test.Azure.Management.Logic { using System; - using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; @@ -13,10 +12,10 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; using Microsoft.Azure.Management.Logic.Models; - using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic; using System.IO; - public class IntegrationAccountMapInMemoryTests : BaseInMemoryTests + public class IntegrationAccountMapInMemoryTests : InMemoryTestsBase { public IntegrationAccountMapInMemoryTests() { diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs index 7f6eb82326df..7d07befee26e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs @@ -2,21 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. -using System.Linq; - namespace Test.Azure.Management.Logic { using System; + using System.IO; + using System.Linq; using System.Net; using System.Net.Http; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; using Microsoft.Rest; using Microsoft.Rest.Azure; using Xunit; - using Microsoft.Azure.Management.Logic.Models; - using Microsoft.Azure.Management.Logic; - using System.IO; - public class IntegrationAccountPartnerInMemoryTests : BaseInMemoryTests + public class IntegrationAccountPartnerInMemoryTests : InMemoryTestsBase { public IntegrationAccountPartnerInMemoryTests() { diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs index d5b6838a732e..5960f54707b9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs @@ -6,7 +6,6 @@ namespace Test.Azure.Management.Logic { using System; using System.IO; - using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; @@ -14,9 +13,9 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; using Microsoft.Azure.Management.Logic.Models; - using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic; - public class IntegrationAccountSchemaInMemoryTests : BaseInMemoryTests + public class IntegrationAccountSchemaInMemoryTests : InMemoryTestsBase { public IntegrationAccountSchemaInMemoryTests() { diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs index ea735ae68a17..271a0032cece 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs @@ -14,7 +14,7 @@ namespace Test.Azure.Management.Logic using Microsoft.Azure.Management.Logic; using Xunit; - public class IntegrationAccountSessionInMemoryTests : BaseInMemoryTests + public class IntegrationAccountSessionInMemoryTests : InMemoryTestsBase { public IntegrationAccountSessionInMemoryTests() { diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs index 41b8c555ef8e..11152814b801 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs @@ -14,7 +14,7 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; - public class WorkflowRunActionsInMemoryTests : BaseInMemoryTests + public class WorkflowRunActionsInMemoryTests : InMemoryTestsBase { #region Constructor diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs index 3d47d5b390da..f1259a353432 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs @@ -14,7 +14,7 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; - public class WorkflowRunsInMemoryTests : BaseInMemoryTests + public class WorkflowRunsInMemoryTests : InMemoryTestsBase { #region Constructor diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs index a7b2914be2d6..7e48107a8b20 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs @@ -14,7 +14,7 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; - public class WorkflowTriggerHistoriesInMemoryTests : BaseInMemoryTests + public class WorkflowTriggerHistoriesInMemoryTests : InMemoryTestsBase { #region Constructor diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs index 946511c1550e..7f6fa91173d5 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs @@ -14,7 +14,7 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; - public class WorkflowTriggersInMemoryTests : BaseInMemoryTests + public class WorkflowTriggersInMemoryTests : InMemoryTestsBase { #region Constructor diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs index 632d0ac6953b..b2580892ee02 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs @@ -13,7 +13,7 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; - public class WorkflowVersionsInMemoryTests : BaseInMemoryTests + public class WorkflowVersionsInMemoryTests : InMemoryTestsBase { #region Constructor diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs index 5b405b44c36a..6094dbfcbda2 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs @@ -15,7 +15,7 @@ namespace Test.Azure.Management.Logic using Microsoft.Rest.Azure; using Xunit; - public class WorkflowsInMemoryTests : BaseInMemoryTests + public class WorkflowsInMemoryTests : InMemoryTestsBase { #region Constructor diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs index 14b801ef4277..4e199f9387cc 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs @@ -2,24 +2,22 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. -using Newtonsoft.Json.Converters; -using Newtonsoft.Json.Linq; - namespace Test.Azure.Management.Logic { + using System; using System.Collections.Generic; using System.Linq; - using Microsoft.Rest.ClientRuntime.Azure.TestFramework; - using Xunit; using Microsoft.Azure.Management.Logic; using Microsoft.Azure.Management.Logic.Models; - using System; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; + using Xunit; /// /// Scenario tests for the integration accounts. /// [Collection("IntegrationAccountScenarioTests")] - public class IntegrationAccountScenarioTests : BaseScenarioTests + public class IntegrationAccountScenarioTests : ScenarioTestsBase { /// /// Name of the test class. diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs index f3fdda27d286..41e5b70f22e0 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs @@ -18,7 +18,7 @@ namespace Test.Azure.Management.Logic /// Scenario tests for the integration accounts agreement. /// [Collection("IntegrationAccountPartnerScenarioTests")] - public class IntegrationAccountAgreementScenarioTests : BaseScenarioTests + public class IntegrationAccountAgreementScenarioTests : ScenarioTestsBase { /// /// Name of the test class diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs index 434c7ef78478..aeca771289ec 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs @@ -2,27 +2,24 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. -using System; -using System.Security; -using System.Globalization; -using System.Security.Cryptography.X509Certificates; - namespace Test.Azure.Management.Logic { - using System.IO; - using System.Collections.Generic; + using System; + using System.Globalization; using System.Linq; - using Microsoft.Rest.ClientRuntime.Azure.TestFramework; - using Xunit; + using System.Security.Cryptography.X509Certificates; + using Microsoft.Azure.Management.Logic; using Microsoft.Azure.Management.Logic.Models; using Microsoft.Rest.Azure; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; /// /// Scenario tests for the integration accounts certificates. /// [Collection("IntegrationAccountCertificateScenarioTests")] - public class IntegrationAccountCertificateScenarioTests : BaseScenarioTests + public class IntegrationAccountCertificateScenarioTests : ScenarioTestsBase { /// diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs index 256065137119..0e9d32c6de8c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs @@ -17,7 +17,7 @@ namespace Test.Azure.Management.Logic /// Scenario tests for the integration accounts map. /// [Collection("IntegrationAccountMapScenarioTests")] - public class IntegrationAccountMapScenarioTests : BaseScenarioTests + public class IntegrationAccountMapScenarioTests : ScenarioTestsBase { /// diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs index 3dff217ad0d8..90d217ea5aa9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs @@ -16,7 +16,7 @@ namespace Test.Azure.Management.Logic /// Scenario tests for the integration accounts partner. /// [Collection("IntegrationAccountPartnerScenarioTests")] - public class IntegrationAccountPartnerScenarioTests : BaseScenarioTests + public class IntegrationAccountPartnerScenarioTests : ScenarioTestsBase { /// /// Name of the test class diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs index 7e944faec7f6..a722137c93e0 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs @@ -17,7 +17,7 @@ namespace Test.Azure.Management.Logic /// Scenario tests for the integration accounts schema. /// [Collection("IntegrationAccountSchemaScenarioTests")] - public class IntegrationAccountSchemaScenarioTests : BaseScenarioTests + public class IntegrationAccountSchemaScenarioTests : ScenarioTestsBase { /// /// Name of the test class diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs index efb626d6b8e5..3062b947b6c6 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs @@ -16,7 +16,7 @@ namespace Test.Azure.Management.Logic /// Scenario tests for the integration accounts session. /// [Collection("IntegrationAccountPartnerScenarioTests")] - public class IntegrationAccountSessionScenarioTests : BaseScenarioTests + public class IntegrationAccountSessionScenarioTests : ScenarioTestsBase { /// /// Name of the test class diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs index 3808a87afae2..402fe2e270f9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs @@ -2,24 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. -using Newtonsoft.Json.Converters; -using Newtonsoft.Json.Linq; - namespace Test.Azure.Management.Logic { - using System.Collections.Generic; using System.Linq; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; using Microsoft.Azure.Management.Logic; - using Microsoft.Azure.Management.Logic.Models; - using System; /// /// Scenario tests for the provider operations. /// [Collection("ProviderOperationsTests")] - public class ProviderOperationsTests : BaseScenarioTests + public class ProviderOperationsTests : ScenarioTestsBase { /// /// Name of the test class. diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ScenarioTestsBase.cs similarity index 95% rename from src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs rename to src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ScenarioTestsBase.cs index 3b175dc6f2a6..17853d01f595 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ScenarioTestsBase.cs @@ -2,16 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. -using System.Globalization; -using Newtonsoft.Json.Linq; - namespace Test.Azure.Management.Logic { + using System.Globalization; using Microsoft.Azure.Management.Logic; using Microsoft.Azure.Management.Logic.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; - public class BaseScenarioTests : TestBase + /// + /// Base class for scenario tests provides common methods and attributes. + /// + abstract public class ScenarioTestsBase : TestBase { /// /// Default serviceplan Resource id diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs index 3f4286e86857..13cdbc07739f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs @@ -12,7 +12,7 @@ namespace Test.Azure.Management.Logic using Xunit; [Collection("WorkflowTriggerHistoriesScenarioTests")] - public class WorkflowTriggerHistoriesScenarioTests : BaseScenarioTests + public class WorkflowTriggerHistoriesScenarioTests : ScenarioTestsBase { [Fact] public void ListHistory() diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs index 0dc65bf4015a..810625f0b5dd 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs @@ -12,7 +12,7 @@ namespace Test.Azure.Management.Logic using Xunit; [Collection("WorkflowTriggersScenarioTests")] - public class WorkflowTriggersScenarioTests : BaseScenarioTests + public class WorkflowTriggersScenarioTests : ScenarioTestsBase { [Fact] public void ListNoTrigger() diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs index c5a8f6f26952..fffb48113311 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs @@ -11,7 +11,7 @@ namespace Test.Azure.Management.Logic using Xunit; [Collection("WorkflowVersionsScenarioTests")] - public class WorkflowVersionsScenarioTests : BaseScenarioTests + public class WorkflowVersionsScenarioTests : ScenarioTestsBase { [Fact] public void CreateAndGetWorkflowVersion() diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs index 55293a107488..e38f861266d9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs @@ -15,7 +15,7 @@ namespace Test.Azure.Management.Logic using Xunit; [Collection("WorkflowsScenarioTests")] - public class WorkflowsScenarioTests : BaseScenarioTests + public class WorkflowsScenarioTests : ScenarioTestsBase { [Fact] public void CreateAndDeleteWorkflow() From 9fcc0e4943463e62cc9fd94b86dcc4ff471faef9 Mon Sep 17 00:00:00 2001 From: matthchr Date: Mon, 27 Feb 2017 11:20:46 -0800 Subject: [PATCH 048/137] Fix capitalization of global.json --- src/Batch/Client/global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Batch/Client/global.json b/src/Batch/Client/global.json index 2f7633de6544..dfc380f4d4ce 100644 --- a/src/Batch/Client/global.json +++ b/src/Batch/Client/global.json @@ -1,5 +1,5 @@ { "projects": [ - "src","tests/objectmodel" + "Src","Tests/ObjectModel" ] } \ No newline at end of file From 55c8ea656c523f0537f13092de6377ffa6f62df6 Mon Sep 17 00:00:00 2001 From: Nathan Date: Mon, 27 Feb 2017 20:21:02 -0800 Subject: [PATCH 049/137] Update SDK based on examples changes to swagger spec (#2847) * Initial commit of client testing around Server crud, database crud, elastic pool crud, operation status, usages, and firewall rules * Updated tests to match updated specs * Update tests to reflect name changes in swagger spec * Responded to comments, added GeoDR functionality * Responded to comments, added GeoDR functionality * Updated test records * Additional test and recording fixes * Update TestFramework version, re-do Test Recordings * Responded to comments: updated comments, referenced constant classes instead of using hardcoded values in tests, other minor non-functional changes * Re-generate code after Swagger examples update and fixes, re-do recordings * Regen from Swagger. DB now has RestorePointInTime * Added point in time restore test * Regen from swagger * Added SampleName param to DB create max test case * Added Copy and move db between pools scenarios * Update client to remove unused parameters/definitions, add Operations API, update test recordings * Add test case for removing database from elastic pool * Regen with doc updates * Added test for list database filter * Update AutoRest to 1.0.0-Nightly20161212 and regen --- .../Generated/DatabasesOperations.cs | 2314 +++++++++-------- .../DatabasesOperationsExtensions.cs | 783 +++--- .../Generated/ElasticPoolsOperations.cs | 930 +++---- .../ElasticPoolsOperationsExtensions.cs | 307 +-- .../Generated/IDatabasesOperations.cs | 411 +-- .../Generated/IElasticPoolsOperations.cs | 158 +- .../IRecommendedElasticPoolsOperations.cs | 76 +- .../Generated/IServersOperations.cs | 233 +- .../Generated/ISqlManagementClient.cs | 40 +- .../Generated/Models/Column.cs | 32 +- .../Generated/Models/CreateMode.cs | 8 +- .../Generated/Models/Database.cs | 368 ++- .../Generated/Models/DatabaseEditions.cs | 9 +- .../Generated/Models/DatabaseMetric.cs | 42 +- .../Generated/Models/ElasticPool.cs | 99 +- .../Generated/Models/ElasticPoolActivity.cs | 141 +- .../Models/ElasticPoolDatabaseActivity.cs | 99 +- .../Generated/Models/ElasticPoolEditions.cs | 8 +- .../Generated/Models/ElasticPoolState.cs | 8 +- .../Generated/Models/Operation.cs | 54 + .../Generated/Models/OperationDisplay.cs | 64 + .../Generated/Models/OperationImpact.cs | 25 +- .../Generated/Models/OperationListResult.cs | 59 + .../Generated/Models/Page.cs | 31 +- .../Generated/Models/ReadScale.cs | 31 + .../Models/RecommendedDatabaseProperties.cs | 65 - .../Models/RecommendedElasticPool.cs | 98 +- .../Models/RecommendedElasticPoolMetric.cs | 25 +- .../Generated/Models/RecommendedIndex.cs | 109 +- .../Models/RecommendedIndexActions.cs | 20 +- .../Models/RecommendedIndexStates.cs | 36 +- .../Generated/Models/RecommendedIndexTypes.cs | 22 +- .../Generated/Models/ReplicationLink.cs | 133 +- .../Generated/Models/ReplicationRole.cs | 24 +- .../Generated/Models/ReplicationState.cs | 8 +- .../Generated/Models/Resource.cs | 43 +- .../Generated/Models/RestorePoint.cs | 43 +- .../Generated/Models/RestorePointTypes.cs | 18 +- .../Generated/Models/SampleName.cs | 23 + .../Generated/Models/Schema.cs | 31 +- .../Generated/Models/Server.cs | 86 +- .../Generated/Models/ServerFirewallRule.cs | 77 +- .../Generated/Models/ServerMetric.cs | 45 +- .../Generated/Models/ServerState.cs | 31 + .../Models/ServerUpgradeGetResult.cs | 51 - .../Models/ServerUpgradeStartParameters.cs | 77 - .../Generated/Models/ServerVersion.cs | 8 +- .../Generated/Models/ServiceObjective.cs | 41 +- .../Generated/Models/ServiceObjectiveName.cs | 10 +- .../Generated/Models/ServiceTierAdvisor.cs | 147 +- .../Generated/Models/SloUsageMetric.cs | 40 +- .../Generated/Models/SqlSubResource.cs | 21 +- .../Generated/Models/Table.cs | 51 +- .../Generated/Models/TableType.cs | 18 +- .../Models/TargetElasticPoolEditions.cs | 33 + .../Models/TransparentDataEncryption.cs | 28 +- .../TransparentDataEncryptionActivity.cs | 45 +- ...TransparentDataEncryptionActivityStates.cs | 8 +- .../Models/TransparentDataEncryptionStates.cs | 18 +- .../Generated/Models/UpgradeHint.cs | 37 +- ...UpgradeRecommendedElasticPoolProperties.cs | 106 +- .../RecommendedElasticPoolsOperations.cs | 448 ++-- ...mmendedElasticPoolsOperationsExtensions.cs | 135 +- .../Generated/ServersOperations.cs | 1540 ++++------- .../Generated/ServersOperationsExtensions.cs | 410 +-- .../Generated/SqlManagementClient.cs | 271 +- .../SqlManagementClientExtensions.cs | 54 + .../Models => }/ServiceObjectiveId.cs | 0 .../generate.cmd | 2 +- .../Sql.Tests/DatabaseCopyScenarioTests.cs | 82 + .../Sql.Tests/DatabaseCrudScenarioTests.cs | 85 +- .../DatabaseReplicationLinkScenarioTests.cs | 2 +- .../Sql.Tests/DatabaseRestoreScenarioTests.cs | 61 + .../ElasticPoolActivityScenarioTests.cs | 75 +- .../Sql.Tests/Enums/ServiceObjectiveId.cs | 28 + .../TestCopyDatabase.json | 1025 ++++++++ .../TestCreateDropDatabase.json | 598 ++--- .../TestGetAndListDatabase.json | 849 +++--- .../TestRemoveDatabaseFromPool.json | 968 +++++++ .../TestUpdateDatabase.json | 840 +++--- .../TestCreateDeleteReplicationLinks.json | 386 +-- ...> TestGetListFailoverReplicationLink.json} | 488 ++-- .../TestDatabasePointInTimeRestore.json | 1713 ++++++++++++ .../TestListElasticPoolActivity.json | 186 +- .../TestListElasticPoolDatabaseActivity.json | 360 +-- .../TestMoveBetweenPoolsAndGetActivity.json | 1158 +++++++++ .../TestCreateDropDatabase.json | 1217 --------- .../TestCreateDropElasticPool.json | 260 +- .../TestGetAndListDatabase.json | 1027 -------- .../TestGetAndListElasticPool.json | 330 +-- .../TestUpdateElasticPoolAndListActivity.json | 408 ++- .../TestCreateDropDatabase.json | 1087 -------- .../TestListElasticPoolDatabaseActivity.json | 1087 -------- .../TestCreateUpdateDropFirewallRule.json | 543 ---- .../TestGetAndListFirewallRule.json | 982 ------- .../TestCreateAndUpdateFirewallRule.json | 174 +- .../TestCreateUpdateDropFirewallRule.json | 228 +- .../TestGetAndListFirewallRule.json | 324 +-- .../TestCreateUpdateGetDropServer.json | 244 +- ...{TestCreate.json => TestGetUsageData.json} | 246 +- .../Sql.Tests/UsageScenarioTests.cs | 2 +- 101 files changed, 13877 insertions(+), 14052 deletions(-) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedDatabaseProperties.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerUpgradeGetResult.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerUpgradeStartParameters.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/{Generated/Models => }/ServiceObjectiveId.cs (100%) create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCopyScenarioTests.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/Enums/ServiceObjectiveId.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCopyScenarioTests/TestCopyDatabase.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestRemoveDatabaseFromPool.json rename src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/{TestCreateReplicationLinks.json => TestGetListFailoverReplicationLink.json} (57%) create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseRestoreScenarioTests/TestDatabasePointInTimeRestore.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestMoveBetweenPoolsAndGetActivity.json delete mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestCreateDropDatabase.json delete mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestGetAndListDatabase.json delete mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolDatabaseActivityScenarioTests/TestCreateDropDatabase.json delete mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolDatabaseActivityScenarioTests/TestListElasticPoolDatabaseActivity.json delete mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCreateUpdateDrop/TestCreateUpdateDropFirewallRule.json delete mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCreateUpdateDrop/TestGetAndListFirewallRule.json rename src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.UsageScenarioTests/{TestCreate.json => TestGetUsageData.json} (66%) diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs index 5ac31a7a3d64..5c49da7dcad5 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// DatabasesOperations operations. /// - internal partial class DatabasesOperations : Microsoft.Rest.IServiceOperations, IDatabasesOperations + internal partial class DatabasesOperations : IServiceOperations, IDatabasesOperations { /// /// Initializes a new instance of the DatabasesOperations class. @@ -29,11 +38,11 @@ internal partial class DatabasesOperations : Microsoft.Rest.IServiceOperations internal DatabasesOperations(SqlManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -42,20 +51,20 @@ internal DatabasesOperations(SqlManagementClient client) public SqlManagementClient Client { get; private set; } /// - /// Deletes the Azure SQL Database Replication Link with the given id. + /// Deletes a database replication link. Cannot be done during failover. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// dropped. + /// The name of the database that has the replication link to be dropped. /// /// - /// The id of the replication link to be deleted. + /// The ID of the replication link to be deleted. /// /// /// Headers that will be added to request. @@ -63,62 +72,65 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } if (linkId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "linkId"); + throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("linkId", linkId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "DeleteReplicationLink", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteReplicationLink", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -128,22 +140,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -160,43 +172,43 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); } else { _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -206,7 +218,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -215,25 +227,26 @@ internal DatabasesOperations(SqlManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Database Replication Link. + /// Gets a database replication link. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to get the link for. + /// The name of the database to get the link for. /// /// - /// The replication link id to be retrieved. + /// The replication link ID to be retrieved. /// /// /// Headers that will be added to request. @@ -241,65 +254,68 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } if (linkId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "linkId"); + throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("linkId", linkId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetReplicationLink", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetReplicationLink", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -309,22 +325,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -341,35 +357,35 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -377,15 +393,15 @@ internal DatabasesOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -395,7 +411,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -408,7 +424,7 @@ internal DatabasesOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -417,31 +433,31 @@ internal DatabasesOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Failover the Azure SQL Database Replication Link with the given id. + /// Failover the database replication link. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. + /// The name of the database that has the replication link to be failed over. /// /// - /// The id of the replication link to be failed over. + /// The ID of the replication link to be failed over. /// /// /// The headers that will be added to request. @@ -449,29 +465,55 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async System.Threading.Tasks.Task FailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task FailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginFailoverReplicationLinkWithHttpMessagesAsync( - resourceGroupName, serverName, databaseName, linkId, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); + AzureOperationResponse _response = await BeginFailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Failover the Azure SQL Database Replication Link with the given id. + /// Force failover the database replication link, which may result in data + /// loss. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. + /// The name of the database that has the replication link to be failed over. /// /// - /// The id of the replication link to be failed over. + /// The ID of the replication link to be failed over. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Lists a database's replication links. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to retrieve links for. /// /// /// Headers that will be added to request. @@ -479,62 +521,62 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task BeginFailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListReplicationLinksWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); - } - if (linkId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "linkId"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("linkId", linkId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLink", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListReplicationLinks", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/failover").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -544,22 +586,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -576,43 +618,51 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -622,36 +672,50 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Force failover the Azure SQL Database Replication Link with the given id - /// which may result in data loss. + /// Pauses a data warehouse. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. - /// - /// - /// The id of the replication link to be failed over. + /// The name of the data warehouse to pause. /// /// /// The headers that will be added to request. @@ -659,30 +723,51 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async System.Threading.Tasks.Task FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task PauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync( - resourceGroupName, serverName, databaseName, linkId, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); + AzureOperationResponse _response = await BeginPauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Force failover the Azure SQL Database Replication Link with the given id - /// which may result in data loss. + /// Resumes a data warehouse. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. + /// The name of the data warehouse to resume. /// - /// - /// The id of the replication link to be failed over. + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Returns a list of database restore points. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database from which to retrieve available restore points. /// /// /// Headers that will be added to request. @@ -690,62 +775,62 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListRestorePointsWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); - } - if (linkId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "linkId"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("linkId", linkId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLinkAllowDataLoss", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListRestorePoints", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/forceFailoverAllowDataLoss").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -755,22 +840,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -787,43 +872,51 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -833,31 +926,81 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about Azure SQL Database Replication Links. + /// Creates a new database or updates an existing database. Location is a + /// required property in the request body, and it must be the same as the + /// location of the SQL server. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be operated on (updated or created). + /// + /// + /// The required parameters for creating or updating a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a database. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to retrieve links for. + /// The name of the database to be deleted. /// /// /// Headers that will be added to request. @@ -865,59 +1008,59 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListReplicationLinksWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListReplicationLinks", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -927,22 +1070,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -959,51 +1102,43 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception + else { + _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1013,75 +1148,36 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Pause an Azure SQL Data Warehouse database. + /// Gets a database. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to pause. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. + /// The name of the database to be retrieved. /// - public async System.Threading.Tasks.Task PauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginPauseDataWarehouseWithHttpMessagesAsync( - resourceGroupName, serverName, databaseName, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); - } - - /// - /// Pause an Azure SQL Data Warehouse database. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The name of the Azure SQL Data Warehouse database to pause. + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. /// /// /// Headers that will be added to request. @@ -1089,81 +1185,92 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task BeginPauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginPauseDataWarehouse", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/pause").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1180,43 +1287,51 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1226,57 +1341,50 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Resume an Azure SQL Data Warehouse database. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The name of the Azure SQL Data Warehouse database to resume. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async System.Threading.Tasks.Task ResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginResumeDataWarehouseWithHttpMessagesAsync( - resourceGroupName, serverName, databaseName, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); - } - - /// - /// Resume an Azure SQL Data Warehouse database. + /// Returns a list of databases by server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// - /// - /// The name of the Azure SQL Data Warehouse database to resume. + /// + /// An OData filter expression that describes a subset of databases to return. /// /// /// Headers that will be added to request. @@ -1284,81 +1392,86 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task BeginResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); - } - if (databaseName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); - tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("filter", filter); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginResumeDataWarehouse", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/resume").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1375,43 +1488,51 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 200) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1421,32 +1542,50 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns a list of Azure SQL database restore points. + /// Returns database usages. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database from which to retrieve available - /// restore points. + /// The name of the database. /// /// /// Headers that will be added to request. @@ -1454,59 +1593,62 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListRestorePointsWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListRestorePoints", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListUsages", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/usages").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1516,22 +1658,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1548,35 +1690,35 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1584,15 +1726,15 @@ internal DatabasesOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1602,7 +1744,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1615,7 +1757,7 @@ internal DatabasesOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1624,65 +1766,31 @@ internal DatabasesOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Creates a new Azure SQL database or updates an existing Azure SQL - /// database. Location is a required property in the request body and it - /// must be the same as the location of the Sql Server. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The name of the Azure SQL Database to be operated on (Updated or created). - /// - /// - /// The required parameters for creating or updating a database. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send Request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync( - resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); - } - - /// - /// Creates a new Azure SQL database or updates an existing Azure SQL - /// database. Location is a required property in the request body and it - /// must be the same as the location of the Sql Server. + /// Gets a service tier advisor. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be operated on (Updated or created). + /// The name of database. /// - /// - /// The required parameters for creating or updating a database. + /// + /// The name of service tier advisor. /// /// /// Headers that will be added to request. @@ -1690,68 +1798,68 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetServiceTierAdvisorWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string serviceTierAdvisorName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (parameters == null) + if (serviceTierAdvisorName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "serviceTierAdvisorName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("serviceTierAdvisorName", serviceTierAdvisorName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetServiceTierAdvisor", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/serviceTierAdvisors/{serviceTierAdvisorName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{serviceTierAdvisorName}", System.Uri.EscapeDataString(serviceTierAdvisorName)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1761,22 +1869,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1792,42 +1900,36 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1835,15 +1937,15 @@ internal DatabasesOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1853,7 +1955,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1866,43 +1968,7 @@ internal DatabasesOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1911,27 +1977,28 @@ internal DatabasesOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes an Azure SQL database. + /// Returns service tier advisors for specified database. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be deleted. + /// The name of database. /// /// /// Headers that will be added to request. @@ -1939,56 +2006,62 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListServiceTierAdvisorsWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListServiceTierAdvisors", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/serviceTierAdvisors").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1998,22 +2071,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -2030,43 +2103,51 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2076,36 +2157,55 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL database. + /// Creates or updates a database's transparent data encryption configuration. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the database for which setting the transparent data encryption + /// applies. /// - /// - /// The comma separated list of child objects to expand in the response. - /// Possible properties: serviceTierAdvisors, upgradeHint, - /// transparentDataEncryption. + /// + /// The status of the database transparent data encryption. Possible values + /// include: 'Enabled', 'Disabled' /// /// /// Headers that will be added to request. @@ -2113,89 +2213,93 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string expand = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; + TransparentDataEncryption parameters = new TransparentDataEncryption(); + if (status != null) + { + parameters.Status = status; + } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("expand", expand); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateTransparentDataEncryptionConfiguration", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption/current").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -2211,36 +2315,42 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2248,15 +2358,15 @@ internal DatabasesOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2266,7 +2376,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2274,12 +2384,30 @@ internal DatabasesOperations(SqlManagementClient client) _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -2288,24 +2416,28 @@ internal DatabasesOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Database. + /// Gets a database's transparent data encryption configuration. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the database for which the transparent data encryption applies. /// /// /// Headers that will be added to request. @@ -2313,53 +2445,62 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetTransparentDataEncryptionConfiguration", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption/current").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2369,22 +2510,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -2401,35 +2542,35 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2437,15 +2578,15 @@ internal DatabasesOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2455,7 +2596,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2468,7 +2609,7 @@ internal DatabasesOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -2477,27 +2618,28 @@ internal DatabasesOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about Azure SQL Database usages. + /// Returns a database's transparent data encryption operation result. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database. + /// The name of the database for which the transparent data encryption applies. /// /// /// Headers that will be added to request. @@ -2505,59 +2647,62 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListTransparentDataEncryptionActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListUsages", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListTransparentDataEncryptionActivity", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/usages").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption/current/operationResults").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2567,22 +2712,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -2599,35 +2744,35 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2635,15 +2780,15 @@ internal DatabasesOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2653,7 +2798,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2666,7 +2811,7 @@ internal DatabasesOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -2675,30 +2820,31 @@ internal DatabasesOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about a service tier advisor. + /// Failover the database replication link. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of database. + /// The name of the database that has the replication link to be failed over. /// - /// - /// The name of service tier advisor. + /// + /// The ID of the replication link to be failed over. /// /// /// Headers that will be added to request. @@ -2706,65 +2852,65 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetServiceTierAdvisorWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string serviceTierAdvisorName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginFailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (serviceTierAdvisorName == null) + if (linkId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serviceTierAdvisorName"); + throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("serviceTierAdvisorName", serviceTierAdvisorName); + tracingParameters.Add("linkId", linkId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetServiceTierAdvisor", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLink", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/serviceTierAdvisors/{serviceTierAdvisorName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/failover").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{serviceTierAdvisorName}", System.Uri.EscapeDataString(serviceTierAdvisorName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2774,22 +2920,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -2806,51 +2952,43 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 204 && (int)_statusCode != 202) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception + else { + _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2860,49 +2998,36 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about service tier advisors for specified database. + /// Force failover the database replication link, which may result in data + /// loss. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of database. + /// The name of the database that has the replication link to be failed over. + /// + /// + /// The ID of the replication link to be failed over. /// /// /// Headers that will be added to request. @@ -2910,59 +3035,65 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListServiceTierAdvisorsWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (linkId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("linkId", linkId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListServiceTierAdvisors", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLinkAllowDataLoss", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/serviceTierAdvisors").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/forceFailoverAllowDataLoss").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2972,22 +3103,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -3004,51 +3135,43 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 204 && (int)_statusCode != 202) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception + else { + _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -3058,55 +3181,32 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Creates or updates an Azure SQL Database Transparent Data Encryption - /// Operation. + /// Pauses a data warehouse. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which setting the Transparent Data - /// Encryption applies. - /// - /// - /// The required parameters for creating or updating transparent data - /// encryption. + /// The name of the data warehouse to pause. /// /// /// Headers that will be added to request. @@ -3114,64 +3214,59 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginPauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); - } - if (parameters == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateTransparentDataEncryptionConfiguration", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPauseDataWarehouse", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption/current").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/pause").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3181,22 +3276,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -3212,58 +3307,44 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception + else { + _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -3273,68 +3354,32 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns an Azure SQL Database Transparent Data Encryption Response. + /// Resumes a data warehouse. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which the Transparent Data - /// Encryption applies. + /// The name of the data warehouse to resume. /// /// /// Headers that will be added to request. @@ -3342,59 +3387,59 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetTransparentDataEncryptionConfiguration", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginResumeDataWarehouse", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption/current").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/resume").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3404,22 +3449,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -3436,51 +3481,43 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 202 && (int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception + else { + _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -3490,51 +3527,37 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns an Azure SQL Database Transparent Data Encryption Activity - /// Response. + /// Creates a new database or updates an existing database. Location is a + /// required property in the request body, and it must be the same as the + /// location of the SQL server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which the Transparent Data - /// Encryption applies. + /// The name of the database to be operated on (updated or created). + /// + /// + /// The required parameters for creating or updating a database. /// /// /// Headers that will be added to request. @@ -3542,59 +3565,71 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListTransparentDataEncryptionActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListTransparentDataEncryptionActivity", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption/current/operationResults").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3604,22 +3639,22 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -3635,36 +3670,42 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -3672,15 +3713,15 @@ internal DatabasesOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -3690,7 +3731,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -3703,7 +3744,25 @@ internal DatabasesOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -3712,15 +3771,16 @@ internal DatabasesOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs index 3d6db981e5e8..184c3c20eb7c 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for DatabasesOperations. @@ -18,101 +24,103 @@ namespace Microsoft.Azure.Management.Sql public static partial class DatabasesOperationsExtensions { /// - /// Deletes the Azure SQL Database Replication Link with the given id. + /// Deletes a database replication link. Cannot be done during failover. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// dropped. + /// The name of the database that has the replication link to be dropped. /// /// - /// The id of the replication link to be deleted. + /// The ID of the replication link to be deleted. /// public static void DeleteReplicationLink(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).DeleteReplicationLinkAsync(resourceGroupName, serverName, databaseName, linkId), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteReplicationLinkAsync(resourceGroupName, serverName, databaseName, linkId).GetAwaiter().GetResult(); } /// - /// Deletes the Azure SQL Database Replication Link with the given id. + /// Deletes a database replication link. Cannot be done during failover. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// dropped. + /// The name of the database that has the replication link to be dropped. /// /// - /// The id of the replication link to be deleted. + /// The ID of the replication link to be deleted. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); } /// - /// Returns information about an Azure SQL Database Replication Link. + /// Gets a database replication link. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to get the link for. + /// The name of the database to get the link for. /// /// - /// The replication link id to be retrieved. + /// The replication link ID to be retrieved. /// public static ReplicationLink GetReplicationLink(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).GetReplicationLinkAsync(resourceGroupName, serverName, databaseName, linkId), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetReplicationLinkAsync(resourceGroupName, serverName, databaseName, linkId).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Database Replication Link. + /// Gets a database replication link. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to get the link for. + /// The name of the database to get the link for. /// /// - /// The replication link id to be retrieved. + /// The replication link ID to be retrieved. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)) { @@ -121,1025 +129,1053 @@ public static ReplicationLink GetReplicationLink(this IDatabasesOperations opera } /// - /// Failover the Azure SQL Database Replication Link with the given id. + /// Failover the database replication link. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. + /// The name of the database that has the replication link to be failed over. /// /// - /// The id of the replication link to be failed over. + /// The ID of the replication link to be failed over. /// public static void FailoverReplicationLink(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).FailoverReplicationLinkAsync(resourceGroupName, serverName, databaseName, linkId), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.FailoverReplicationLinkAsync(resourceGroupName, serverName, databaseName, linkId).GetAwaiter().GetResult(); } /// - /// Failover the Azure SQL Database Replication Link with the given id. + /// Failover the database replication link. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. + /// The name of the database that has the replication link to be failed over. /// /// - /// The id of the replication link to be failed over. + /// The ID of the replication link to be failed over. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task FailoverReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task FailoverReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { await operations.FailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); } /// - /// Failover the Azure SQL Database Replication Link with the given id. + /// Force failover the database replication link, which may result in data + /// loss. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. + /// The name of the database that has the replication link to be failed over. /// /// - /// The id of the replication link to be failed over. + /// The ID of the replication link to be failed over. /// - public static void BeginFailoverReplicationLink(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) + public static void FailoverReplicationLinkAllowDataLoss(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).BeginFailoverReplicationLinkAsync(resourceGroupName, serverName, databaseName, linkId), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.FailoverReplicationLinkAllowDataLossAsync(resourceGroupName, serverName, databaseName, linkId).GetAwaiter().GetResult(); } /// - /// Failover the Azure SQL Database Replication Link with the given id. + /// Force failover the database replication link, which may result in data + /// loss. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. + /// The name of the database that has the replication link to be failed over. /// /// - /// The id of the replication link to be failed over. + /// The ID of the replication link to be failed over. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginFailoverReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task FailoverReplicationLinkAllowDataLossAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginFailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + await operations.FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); } /// - /// Force failover the Azure SQL Database Replication Link with the given id - /// which may result in data loss. + /// Lists a database's replication links. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. - /// - /// - /// The id of the replication link to be failed over. + /// The name of the database to retrieve links for. /// - public static void FailoverReplicationLinkAllowDataLoss(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) + public static IEnumerable ListReplicationLinks(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).FailoverReplicationLinkAllowDataLossAsync(resourceGroupName, serverName, databaseName, linkId), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListReplicationLinksAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Force failover the Azure SQL Database Replication Link with the given id - /// which may result in data loss. + /// Lists a database's replication links. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. - /// - /// - /// The id of the replication link to be failed over. + /// The name of the database to retrieve links for. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task FailoverReplicationLinkAllowDataLossAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListReplicationLinksAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.ListReplicationLinksWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Force failover the Azure SQL Database Replication Link with the given id - /// which may result in data loss. + /// Pauses a data warehouse. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. - /// - /// - /// The id of the replication link to be failed over. + /// The name of the data warehouse to pause. /// - public static void BeginFailoverReplicationLinkAllowDataLoss(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) + public static void PauseDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).BeginFailoverReplicationLinkAllowDataLossAsync(resourceGroupName, serverName, databaseName, linkId), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.PauseDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Force failover the Azure SQL Database Replication Link with the given id - /// which may result in data loss. + /// Pauses a data warehouse. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link to be - /// failed over. - /// - /// - /// The id of the replication link to be failed over. + /// The name of the data warehouse to pause. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginFailoverReplicationLinkAllowDataLossAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task PauseDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + await operations.PauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); } /// - /// Returns information about Azure SQL Database Replication Links. + /// Resumes a data warehouse. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to retrieve links for. + /// The name of the data warehouse to resume. /// - public static System.Collections.Generic.IEnumerable ListReplicationLinks(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void ResumeDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).ListReplicationLinksAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.ResumeDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Returns information about Azure SQL Database Replication Links. + /// Resumes a data warehouse. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to retrieve links for. + /// The name of the data warehouse to resume. /// /// /// The cancellation token. /// - public static async Task> ListReplicationLinksAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task ResumeDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListReplicationLinksWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + await operations.ResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); } /// - /// Pause an Azure SQL Data Warehouse database. + /// Returns a list of database restore points. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to pause. + /// The name of the database from which to retrieve available restore points. /// - public static void PauseDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static IEnumerable ListRestorePoints(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).PauseDataWarehouseAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListRestorePointsAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Pause an Azure SQL Data Warehouse database. + /// Returns a list of database restore points. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to pause. + /// The name of the database from which to retrieve available restore points. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task PauseDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListRestorePointsAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.PauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.ListRestorePointsWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Pause an Azure SQL Data Warehouse database. + /// Creates a new database or updates an existing database. Location is a + /// required property in the request body, and it must be the same as the + /// location of the SQL server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to pause. + /// The name of the database to be operated on (updated or created). /// - public static void BeginPauseDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + /// + /// The required parameters for creating or updating a database. + /// + public static Database CreateOrUpdate(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, Database parameters) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).BeginPauseDataWarehouseAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } /// - /// Pause an Azure SQL Data Warehouse database. + /// Creates a new database or updates an existing database. Location is a + /// required property in the request body, and it must be the same as the + /// location of the SQL server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to pause. + /// The name of the database to be operated on (updated or created). + /// + /// + /// The required parameters for creating or updating a database. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginPauseDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, Database parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginPauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Resume an Azure SQL Data Warehouse database. + /// Deletes a database. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to resume. + /// The name of the database to be deleted. /// - public static void ResumeDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void Delete(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).ResumeDataWarehouseAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Resume an Azure SQL Data Warehouse database. + /// Deletes a database. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to resume. + /// The name of the database to be deleted. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ResumeDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); } /// - /// Resume an Azure SQL Data Warehouse database. + /// Gets a database. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to resume. + /// The name of the database to be retrieved. /// - public static void BeginResumeDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. + /// + public static Database Get(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string expand = default(string)) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).BeginResumeDataWarehouseAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serverName, databaseName, expand).GetAwaiter().GetResult(); } /// - /// Resume an Azure SQL Data Warehouse database. + /// Gets a database. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to resume. + /// The name of the database to be retrieved. + /// + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginResumeDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Returns a list of Azure SQL database restore points. + /// Returns a list of databases by server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// - /// - /// The name of the Azure SQL Database from which to retrieve available - /// restore points. + /// + /// An OData filter expression that describes a subset of databases to return. /// - public static System.Collections.Generic.IEnumerable ListRestorePoints(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static IEnumerable ListByServer(this IDatabasesOperations operations, string resourceGroupName, string serverName, string filter = default(string)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).ListRestorePointsAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByServerAsync(resourceGroupName, serverName, filter).GetAwaiter().GetResult(); } /// - /// Returns a list of Azure SQL database restore points. + /// Returns a list of databases by server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// - /// - /// The name of the Azure SQL Database from which to retrieve available - /// restore points. + /// + /// An OData filter expression that describes a subset of databases to return. /// /// /// The cancellation token. /// - public static async Task> ListRestorePointsAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByServerAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListRestorePointsWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, filter, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates a new Azure SQL database or updates an existing Azure SQL - /// database. Location is a required property in the request body and it - /// must be the same as the location of the Sql Server. + /// Returns database usages. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be operated on (Updated or created). - /// - /// - /// The required parameters for creating or updating a database. + /// The name of the database. /// - public static Database CreateOrUpdate(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, Database parameters) + public static IEnumerable ListUsages(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).CreateOrUpdateAsync(resourceGroupName, serverName, databaseName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListUsagesAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Creates a new Azure SQL database or updates an existing Azure SQL - /// database. Location is a required property in the request body and it - /// must be the same as the location of the Sql Server. + /// Returns database usages. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be operated on (Updated or created). - /// - /// - /// The required parameters for creating or updating a database. + /// The name of the database. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, Database parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListUsagesAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListUsagesWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates a new Azure SQL database or updates an existing Azure SQL - /// database. Location is a required property in the request body and it - /// must be the same as the location of the Sql Server. + /// Gets a service tier advisor. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be operated on (Updated or created). + /// The name of database. /// - /// - /// The required parameters for creating or updating a database. + /// + /// The name of service tier advisor. /// - public static Database BeginCreateOrUpdate(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, Database parameters) + public static ServiceTierAdvisor GetServiceTierAdvisor(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string serviceTierAdvisorName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, serverName, databaseName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetServiceTierAdvisorAsync(resourceGroupName, serverName, databaseName, serviceTierAdvisorName).GetAwaiter().GetResult(); } /// - /// Creates a new Azure SQL database or updates an existing Azure SQL - /// database. Location is a required property in the request body and it - /// must be the same as the location of the Sql Server. + /// Gets a service tier advisor. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be operated on (Updated or created). + /// The name of database. /// - /// - /// The required parameters for creating or updating a database. + /// + /// The name of service tier advisor. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginCreateOrUpdateAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, Database parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetServiceTierAdvisorAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string serviceTierAdvisorName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetServiceTierAdvisorWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, serviceTierAdvisorName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes an Azure SQL database. + /// Returns service tier advisors for specified database. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be deleted. + /// The name of database. /// - public static void Delete(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static IEnumerable ListServiceTierAdvisors(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).DeleteAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListServiceTierAdvisorsAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Deletes an Azure SQL database. + /// Returns service tier advisors for specified database. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be deleted. + /// The name of database. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListServiceTierAdvisorsAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.ListServiceTierAdvisorsWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Returns information about an Azure SQL database. + /// Creates or updates a database's transparent data encryption configuration. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the database for which setting the transparent data encryption + /// applies. /// - /// - /// The comma separated list of child objects to expand in the response. - /// Possible properties: serviceTierAdvisors, upgradeHint, - /// transparentDataEncryption. + /// + /// The status of the database transparent data encryption. Possible values + /// include: 'Enabled', 'Disabled' /// - public static Database Get(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string expand = default(string)) + public static TransparentDataEncryption CreateOrUpdateTransparentDataEncryptionConfiguration(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).GetAsync(resourceGroupName, serverName, databaseName, expand), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateTransparentDataEncryptionConfigurationAsync(resourceGroupName, serverName, databaseName, status).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL database. + /// Creates or updates a database's transparent data encryption configuration. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the database for which setting the transparent data encryption + /// applies. /// - /// - /// The comma separated list of child objects to expand in the response. - /// Possible properties: serviceTierAdvisors, upgradeHint, - /// transparentDataEncryption. + /// + /// The status of the database transparent data encryption. Possible values + /// include: 'Enabled', 'Disabled' /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string expand = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateTransparentDataEncryptionConfigurationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, expand, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, status, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Returns information about an Azure SQL Database. + /// Gets a database's transparent data encryption configuration. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the database for which the transparent data encryption applies. /// - public static System.Collections.Generic.IEnumerable ListByServer(this IDatabasesOperations operations, string resourceGroupName, string serverName) + public static TransparentDataEncryption GetTransparentDataEncryptionConfiguration(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).ListByServerAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetTransparentDataEncryptionConfigurationAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Database. + /// Gets a database's transparent data encryption configuration. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the database for which the transparent data encryption applies. /// /// /// The cancellation token. /// - public static async Task> ListByServerAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetTransparentDataEncryptionConfigurationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetTransparentDataEncryptionConfigurationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Returns information about Azure SQL Database usages. + /// Returns a database's transparent data encryption operation result. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database. + /// The name of the database for which the transparent data encryption applies. /// - public static System.Collections.Generic.IEnumerable ListUsages(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static IEnumerable ListTransparentDataEncryptionActivity(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).ListUsagesAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListTransparentDataEncryptionActivityAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Returns information about Azure SQL Database usages. + /// Returns a database's transparent data encryption operation result. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database. + /// The name of the database for which the transparent data encryption applies. /// /// /// The cancellation token. /// - public static async Task> ListUsagesAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListTransparentDataEncryptionActivityAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListUsagesWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListTransparentDataEncryptionActivityWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Returns information about a service tier advisor. + /// Failover the database replication link. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of database. + /// The name of the database that has the replication link to be failed over. /// - /// - /// The name of service tier advisor. + /// + /// The ID of the replication link to be failed over. /// - public static ServiceTierAdvisor GetServiceTierAdvisor(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string serviceTierAdvisorName) + public static void BeginFailoverReplicationLink(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).GetServiceTierAdvisorAsync(resourceGroupName, serverName, databaseName, serviceTierAdvisorName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginFailoverReplicationLinkAsync(resourceGroupName, serverName, databaseName, linkId).GetAwaiter().GetResult(); } /// - /// Returns information about a service tier advisor. + /// Failover the database replication link. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of database. + /// The name of the database that has the replication link to be failed over. /// - /// - /// The name of service tier advisor. + /// + /// The ID of the replication link to be failed over. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetServiceTierAdvisorAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string serviceTierAdvisorName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginFailoverReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetServiceTierAdvisorWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, serviceTierAdvisorName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + await operations.BeginFailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); } /// - /// Returns information about service tier advisors for specified database. + /// Force failover the database replication link, which may result in data + /// loss. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of database. + /// The name of the database that has the replication link to be failed over. + /// + /// + /// The ID of the replication link to be failed over. /// - public static System.Collections.Generic.IEnumerable ListServiceTierAdvisors(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void BeginFailoverReplicationLinkAllowDataLoss(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).ListServiceTierAdvisorsAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginFailoverReplicationLinkAllowDataLossAsync(resourceGroupName, serverName, databaseName, linkId).GetAwaiter().GetResult(); } /// - /// Returns information about service tier advisors for specified database. + /// Force failover the database replication link, which may result in data + /// loss. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of database. + /// The name of the database that has the replication link to be failed over. + /// + /// + /// The ID of the replication link to be failed over. /// /// /// The cancellation token. /// - public static async Task> ListServiceTierAdvisorsAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginFailoverReplicationLinkAllowDataLossAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListServiceTierAdvisorsWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + await operations.BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); } /// - /// Creates or updates an Azure SQL Database Transparent Data Encryption - /// Operation. + /// Pauses a data warehouse. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which setting the Transparent Data - /// Encryption applies. - /// - /// - /// The required parameters for creating or updating transparent data - /// encryption. + /// The name of the data warehouse to pause. /// - public static TransparentDataEncryption CreateOrUpdateTransparentDataEncryptionConfiguration(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters) + public static void BeginPauseDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).CreateOrUpdateTransparentDataEncryptionConfigurationAsync(resourceGroupName, serverName, databaseName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginPauseDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Creates or updates an Azure SQL Database Transparent Data Encryption - /// Operation. + /// Pauses a data warehouse. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which setting the Transparent Data - /// Encryption applies. - /// - /// - /// The required parameters for creating or updating transparent data - /// encryption. + /// The name of the data warehouse to pause. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateTransparentDataEncryptionConfigurationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginPauseDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + await operations.BeginPauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); } /// - /// Returns an Azure SQL Database Transparent Data Encryption Response. + /// Resumes a data warehouse. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which the Transparent Data - /// Encryption applies. + /// The name of the data warehouse to resume. /// - public static TransparentDataEncryption GetTransparentDataEncryptionConfiguration(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void BeginResumeDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).GetTransparentDataEncryptionConfigurationAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginResumeDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// - /// Returns an Azure SQL Database Transparent Data Encryption Response. + /// Resumes a data warehouse. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which the Transparent Data - /// Encryption applies. + /// The name of the data warehouse to resume. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetTransparentDataEncryptionConfigurationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginResumeDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetTransparentDataEncryptionConfigurationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + await operations.BeginResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); } /// - /// Returns an Azure SQL Database Transparent Data Encryption Activity - /// Response. + /// Creates a new database or updates an existing database. Location is a + /// required property in the request body, and it must be the same as the + /// location of the SQL server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which the Transparent Data - /// Encryption applies. + /// The name of the database to be operated on (updated or created). /// - public static System.Collections.Generic.IEnumerable ListTransparentDataEncryptionActivity(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + /// + /// The required parameters for creating or updating a database. + /// + public static Database BeginCreateOrUpdate(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, Database parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IDatabasesOperations)s).ListTransparentDataEncryptionActivityAsync(resourceGroupName, serverName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateOrUpdateAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } /// - /// Returns an Azure SQL Database Transparent Data Encryption Activity - /// Response. + /// Creates a new database or updates an existing database. Location is a + /// required property in the request body, and it must be the same as the + /// location of the SQL server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which the Transparent Data - /// Encryption applies. + /// The name of the database to be operated on (updated or created). + /// + /// + /// The required parameters for creating or updating a database. /// /// /// The cancellation token. /// - public static async Task> ListTransparentDataEncryptionActivityAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateOrUpdateAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, Database parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListTransparentDataEncryptionActivityWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1147,3 +1183,4 @@ public static System.Collections.Generic.IEnumerable /// ElasticPoolsOperations operations. /// - internal partial class ElasticPoolsOperations : Microsoft.Rest.IServiceOperations, IElasticPoolsOperations + internal partial class ElasticPoolsOperations : IServiceOperations, IElasticPoolsOperations { /// /// Initializes a new instance of the ElasticPoolsOperations class. @@ -29,11 +38,11 @@ internal partial class ElasticPoolsOperations : Microsoft.Rest.IServiceOperation /// internal ElasticPoolsOperations(SqlManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -42,21 +51,20 @@ internal ElasticPoolsOperations(SqlManagementClient client) public SqlManagementClient Client { get; private set; } /// - /// Creates a new Azure SQL elastic pool or updates an existing Azure SQL - /// elastic pool. + /// Creates a new elastic pool or updates an existing elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be operated on (Updated or - /// created). + /// The name of the elastic pool to be operated on (updated or created). /// /// - /// The required parameters for createing or updating an Elastic Pool. + /// The required parameters for creating or updating an elastic pool. /// /// /// The headers that will be added to request. @@ -64,32 +72,25 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync( - resourceGroupName, serverName, elasticPoolName, parameters, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Creates a new Azure SQL elastic pool or updates an existing Azure SQL - /// elastic pool. + /// Deletes the elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be operated on (Updated or - /// created). - /// - /// - /// The required parameters for createing or updating an Elastic Pool. + /// The name of the elastic pool to be deleted. /// /// /// Headers that will be added to request. @@ -97,68 +98,59 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (elasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "elasticPoolName"); - } - if (parameters == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "elasticPoolName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("elasticPoolName", elasticPoolName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -168,22 +160,22 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -199,58 +191,44 @@ internal ElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception + else { + _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -260,85 +238,32 @@ internal ElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes the Azure SQL elastic pool. + /// Gets an elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be deleted. + /// The name of the elastic pool to be retrieved. /// /// /// Headers that will be added to request. @@ -346,56 +271,62 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (elasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "elasticPoolName"); + throw new ValidationException(ValidationRules.CannotBeNull, "elasticPoolName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("elasticPoolName", elasticPoolName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -405,22 +336,22 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -437,43 +368,51 @@ internal ElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -483,31 +422,47 @@ internal ElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL elastic pool. + /// Returns elastic pools. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server - /// - /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the server. /// /// /// Headers that will be added to request. @@ -515,59 +470,56 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); - } - if (elasticPoolName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "elasticPoolName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); - tracingParameters.Add("elasticPoolName", elasticPoolName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -577,22 +529,22 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -609,35 +561,35 @@ internal ElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -645,15 +597,15 @@ internal ElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -663,7 +615,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -676,7 +628,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -685,24 +637,28 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about Azure SQL elastic pools. + /// Returns elastic pool activities. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the elastic pool for which to get the current activity. /// /// /// Headers that will be added to request. @@ -710,53 +666,62 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (elasticPoolName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "elasticPoolName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); + tracingParameters.Add("elasticPoolName", elasticPoolName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListActivity", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/elasticPoolActivity").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -766,22 +731,22 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -798,35 +763,35 @@ internal ElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -834,15 +799,15 @@ internal ElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -852,7 +817,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -865,7 +830,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -874,28 +839,28 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about Azure SQL elastic pool activities. + /// Returns activity on databases inside of an elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool for which to get the current - /// activity. + /// The name of the elastic pool. /// /// /// Headers that will be added to request. @@ -903,59 +868,62 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListDatabaseActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (elasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "elasticPoolName"); + throw new ValidationException(ValidationRules.CannotBeNull, "elasticPoolName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("elasticPoolName", elasticPoolName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListActivity", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListDatabaseActivity", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/elasticPoolActivity").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/elasticPoolDatabaseActivity").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -965,22 +933,22 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -997,35 +965,35 @@ internal ElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1033,15 +1001,15 @@ internal ElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1051,7 +1019,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1064,7 +1032,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1073,28 +1041,31 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about activity on Azure SQL databases inside of an - /// Azure SQL elastic pool. + /// Gets a database inside of an elastic pool. /// - /// - /// The name of the Azure SQL Elastic Pool. - /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the elastic pool to be retrieved. + /// + /// + /// The name of the database to be retrieved. /// /// /// Headers that will be added to request. @@ -1102,59 +1073,68 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListDatabaseActivityWithHttpMessagesAsync(string elasticPoolName, string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (elasticPoolName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "elasticPoolName"); - } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (elasticPoolName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "elasticPoolName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("elasticPoolName", elasticPoolName); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); + tracingParameters.Add("elasticPoolName", elasticPoolName); + tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListDatabaseActivity", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetDatabase", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/elasticPoolDatabaseActivity").ToString(); - _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1164,22 +1144,22 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1196,35 +1176,35 @@ internal ElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1232,15 +1212,15 @@ internal ElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1250,7 +1230,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1263,7 +1243,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1272,31 +1252,28 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL database inside of an Azure SQL - /// elastic pool. + /// Returns a database inside of an elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. - /// - /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the elastic pool to be retrieved. /// /// /// Headers that will be added to request. @@ -1304,65 +1281,62 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (elasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "elasticPoolName"); - } - if (databaseName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "elasticPoolName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("elasticPoolName", elasticPoolName); - tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetDatabase", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListDatabases", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases/{databaseName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); - _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1372,22 +1346,22 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1404,35 +1378,35 @@ internal ElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1440,15 +1414,15 @@ internal ElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1458,7 +1432,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1471,7 +1445,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1480,28 +1454,31 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL database inside of an Azure SQL - /// elastic pool. + /// Creates a new elastic pool or updates an existing elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be operated on (updated or created). + /// + /// + /// The required parameters for creating or updating an elastic pool. /// /// /// Headers that will be added to request. @@ -1509,59 +1486,71 @@ internal ElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (elasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "elasticPoolName"); + throw new ValidationException(ValidationRules.CannotBeNull, "elasticPoolName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("elasticPoolName", elasticPoolName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListDatabases", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}/databases").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools/{elasticPoolName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{elasticPoolName}", System.Uri.EscapeDataString(elasticPoolName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1571,22 +1560,22 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1602,36 +1591,42 @@ internal ElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1639,15 +1634,15 @@ internal ElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1657,7 +1652,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1670,7 +1665,25 @@ internal ElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1679,15 +1692,16 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs index d13dd0c0aece..7456de6e6220 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for ElasticPoolsOperations. @@ -18,54 +24,52 @@ namespace Microsoft.Azure.Management.Sql public static partial class ElasticPoolsOperationsExtensions { /// - /// Creates a new Azure SQL elastic pool or updates an existing Azure SQL - /// elastic pool. + /// Creates a new elastic pool or updates an existing elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be operated on (Updated or - /// created). + /// The name of the elastic pool to be operated on (updated or created). /// /// - /// The required parameters for createing or updating an Elastic Pool. + /// The required parameters for creating or updating an elastic pool. /// public static ElasticPool CreateOrUpdate(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).CreateOrUpdateAsync(resourceGroupName, serverName, elasticPoolName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serverName, elasticPoolName, parameters).GetAwaiter().GetResult(); } /// - /// Creates a new Azure SQL elastic pool or updates an existing Azure SQL - /// elastic pool. + /// Creates a new elastic pool or updates an existing elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be operated on (Updated or - /// created). + /// The name of the elastic pool to be operated on (updated or created). /// /// - /// The required parameters for createing or updating an Elastic Pool. + /// The required parameters for creating or updating an elastic pool. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -74,383 +78,387 @@ public static ElasticPool CreateOrUpdate(this IElasticPoolsOperations operations } /// - /// Creates a new Azure SQL elastic pool or updates an existing Azure SQL - /// elastic pool. + /// Deletes the elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be operated on (Updated or - /// created). + /// The name of the elastic pool to be deleted. /// - /// - /// The required parameters for createing or updating an Elastic Pool. - /// - public static ElasticPool BeginCreateOrUpdate(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters) + public static void Delete(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, serverName, elasticPoolName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serverName, elasticPoolName).GetAwaiter().GetResult(); } /// - /// Creates a new Azure SQL elastic pool or updates an existing Azure SQL - /// elastic pool. + /// Deletes the elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be operated on (Updated or - /// created). - /// - /// - /// The required parameters for createing or updating an Elastic Pool. + /// The name of the elastic pool to be deleted. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginCreateOrUpdateAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false); } /// - /// Deletes the Azure SQL elastic pool. + /// Gets an elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be deleted. + /// The name of the elastic pool to be retrieved. /// - public static void Delete(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) + public static ElasticPool Get(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).DeleteAsync(resourceGroupName, serverName, elasticPoolName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serverName, elasticPoolName).GetAwaiter().GetResult(); } /// - /// Deletes the Azure SQL elastic pool. + /// Gets an elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be deleted. + /// The name of the elastic pool to be retrieved. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Returns information about an Azure SQL elastic pool. + /// Returns elastic pools. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server - /// - /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the server. /// - public static ElasticPool Get(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) + public static IEnumerable ListByServer(this IElasticPoolsOperations operations, string resourceGroupName, string serverName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).GetAsync(resourceGroupName, serverName, elasticPoolName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByServerAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL elastic pool. + /// Returns elastic pools. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server - /// - /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the server. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByServerAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Returns information about Azure SQL elastic pools. + /// Returns elastic pool activities. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the elastic pool for which to get the current activity. /// - public static System.Collections.Generic.IEnumerable ListByServer(this IElasticPoolsOperations operations, string resourceGroupName, string serverName) + public static IEnumerable ListActivity(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).ListByServerAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListActivityAsync(resourceGroupName, serverName, elasticPoolName).GetAwaiter().GetResult(); } /// - /// Returns information about Azure SQL elastic pools. + /// Returns elastic pool activities. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the elastic pool for which to get the current activity. /// /// /// The cancellation token. /// - public static async Task> ListByServerAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListActivityAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListActivityWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Returns information about Azure SQL elastic pool activities. + /// Returns activity on databases inside of an elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool for which to get the current - /// activity. + /// The name of the elastic pool. /// - public static System.Collections.Generic.IEnumerable ListActivity(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) + public static IEnumerable ListDatabaseActivity(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).ListActivityAsync(resourceGroupName, serverName, elasticPoolName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListDatabaseActivityAsync(resourceGroupName, serverName, elasticPoolName).GetAwaiter().GetResult(); } /// - /// Returns information about Azure SQL elastic pool activities. + /// Returns activity on databases inside of an elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool for which to get the current - /// activity. + /// The name of the elastic pool. /// /// /// The cancellation token. /// - public static async Task> ListActivityAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListDatabaseActivityAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListActivityWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListDatabaseActivityWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Returns information about activity on Azure SQL databases inside of an - /// Azure SQL elastic pool. + /// Gets a database inside of an elastic pool. /// /// /// The operations group for this extension method. /// - /// - /// The name of the Azure SQL Elastic Pool. - /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the elastic pool to be retrieved. + /// + /// + /// The name of the database to be retrieved. /// - public static System.Collections.Generic.IEnumerable ListDatabaseActivity(this IElasticPoolsOperations operations, string elasticPoolName, string resourceGroupName, string serverName) + public static Database GetDatabase(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, string databaseName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).ListDatabaseActivityAsync(elasticPoolName, resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetDatabaseAsync(resourceGroupName, serverName, elasticPoolName, databaseName).GetAwaiter().GetResult(); } /// - /// Returns information about activity on Azure SQL databases inside of an - /// Azure SQL elastic pool. + /// Gets a database inside of an elastic pool. /// /// /// The operations group for this extension method. /// - /// - /// The name of the Azure SQL Elastic Pool. - /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the elastic pool to be retrieved. + /// + /// + /// The name of the database to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListDatabaseActivityAsync(this IElasticPoolsOperations operations, string elasticPoolName, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetDatabaseAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListDatabaseActivityWithHttpMessagesAsync(elasticPoolName, resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, databaseName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Returns information about an Azure SQL database inside of an Azure SQL - /// elastic pool. + /// Returns a database inside of an elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be retrieved. /// - /// - /// The name of the Azure SQL Database to be retrieved. - /// - public static Database GetDatabase(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, string databaseName) + public static IEnumerable ListDatabases(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).GetDatabaseAsync(resourceGroupName, serverName, elasticPoolName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListDatabasesAsync(resourceGroupName, serverName, elasticPoolName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL database inside of an Azure SQL - /// elastic pool. + /// Returns a database inside of an elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. - /// - /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the elastic pool to be retrieved. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetDatabaseAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListDatabasesAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, databaseName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListDatabasesWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Returns information about an Azure SQL database inside of an Azure SQL - /// elastic pool. + /// Creates a new elastic pool or updates an existing elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be operated on (updated or created). /// - public static System.Collections.Generic.IEnumerable ListDatabases(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName) + /// + /// The required parameters for creating or updating an elastic pool. + /// + public static ElasticPool BeginCreateOrUpdate(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IElasticPoolsOperations)s).ListDatabasesAsync(resourceGroupName, serverName, elasticPoolName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateOrUpdateAsync(resourceGroupName, serverName, elasticPoolName, parameters).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL database inside of an Azure SQL - /// elastic pool. + /// Creates a new elastic pool or updates an existing elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be operated on (updated or created). + /// + /// + /// The required parameters for creating or updating an elastic pool. /// /// /// The cancellation token. /// - public static async Task> ListDatabasesAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateOrUpdateAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListDatabasesWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -458,3 +466,4 @@ public static System.Collections.Generic.IEnumerable ListDatabases(thi } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs index d7cda4f268d2..d53dddb15acf 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// DatabasesOperations operations. @@ -17,20 +24,23 @@ namespace Microsoft.Azure.Management.Sql public partial interface IDatabasesOperations { /// - /// Deletes the Azure SQL Database Replication Link with the given id. + /// Deletes a database replication link. Cannot be done during + /// failover. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link - /// to be dropped. + /// The name of the database that has the replication link to be + /// dropped. /// /// - /// The id of the replication link to be deleted. + /// The ID of the replication link to be deleted. /// /// /// The headers that will be added to request. @@ -44,21 +54,23 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Database Replication Link. + /// Gets a database replication link. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to get the link for. + /// The name of the database to get the link for. /// /// - /// The replication link id to be retrieved. + /// The replication link ID to be retrieved. /// /// /// The headers that will be added to request. @@ -75,22 +87,24 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Failover the Azure SQL Database Replication Link with the given id. + /// Failover the database replication link. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link - /// to be failed over. + /// The name of the database that has the replication link to be failed + /// over. /// /// - /// The id of the replication link to be failed over. + /// The ID of the replication link to be failed over. /// /// /// The headers that will be added to request. @@ -104,22 +118,25 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task FailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task FailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Failover the Azure SQL Database Replication Link with the given id. + /// Force failover the database replication link, which may result in + /// data loss. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link - /// to be failed over. + /// The name of the database that has the replication link to be failed + /// over. /// /// - /// The id of the replication link to be failed over. + /// The ID of the replication link to be failed over. /// /// /// The headers that will be added to request. @@ -133,23 +150,20 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginFailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Force failover the Azure SQL Database Replication Link with the - /// given id which may result in data loss. + /// Lists a database's replication links. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link - /// to be failed over. - /// - /// - /// The id of the replication link to be failed over. + /// The name of the database to retrieve links for. /// /// /// The headers that will be added to request. @@ -160,26 +174,26 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListReplicationLinksWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Force failover the Azure SQL Database Replication Link with the - /// given id which may result in data loss. + /// Pauses a data warehouse. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database that has the replication link - /// to be failed over. - /// - /// - /// The id of the replication link to be failed over. + /// The name of the data warehouse to pause. /// /// /// The headers that will be added to request. @@ -193,18 +207,20 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task PauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about Azure SQL Database Replication Links. + /// Resumes a data warehouse. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to retrieve links for. + /// The name of the data warehouse to resume. /// /// /// The headers that will be added to request. @@ -215,24 +231,24 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListReplicationLinksWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task ResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Pause an Azure SQL Data Warehouse database. + /// Returns a list of database restore points. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to pause. + /// The name of the database from which to retrieve available restore + /// points. /// /// /// The headers that will be added to request. @@ -243,21 +259,31 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task PauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListRestorePointsWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Pause an Azure SQL Data Warehouse database. + /// Creates a new database or updates an existing database. Location is + /// a required property in the request body, and it must be the same as + /// the location of the SQL server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to pause. + /// The name of the database to be operated on (updated or created). + /// + /// + /// The required parameters for creating or updating a database. /// /// /// The headers that will be added to request. @@ -268,21 +294,26 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginPauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Resume an Azure SQL Data Warehouse database. + /// Deletes a database. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to resume. + /// The name of the database to be deleted. /// /// /// The headers that will be added to request. @@ -296,18 +327,25 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task ResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Resume an Azure SQL Data Warehouse database. + /// Gets a database. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Data Warehouse database to resume. + /// The name of the database to be retrieved. + /// + /// + /// A comma separated list of child objects to expand in the response. + /// Possible properties: serviceTierAdvisors, upgradeHint, + /// transparentDataEncryption. /// /// /// The headers that will be added to request. @@ -318,22 +356,27 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns a list of Azure SQL database restore points. + /// Returns a list of databases by server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// - /// - /// The name of the Azure SQL Database from which to retrieve - /// available restore points. + /// + /// An OData filter expression that describes a subset of databases to + /// return. /// /// /// The headers that will be added to request. @@ -350,24 +393,20 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListRestorePointsWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates a new Azure SQL database or updates an existing Azure SQL - /// database. Location is a required property in the request body - /// and it must be the same as the location of the Sql Server. + /// Returns database usages. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be operated on (Updated or - /// created). - /// - /// - /// The required parameters for creating or updating a database. + /// The name of the database. /// /// /// The headers that will be added to request. @@ -384,24 +423,23 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates a new Azure SQL database or updates an existing Azure SQL - /// database. Location is a required property in the request body - /// and it must be the same as the location of the Sql Server. + /// Gets a service tier advisor. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be operated on (Updated or - /// created). + /// The name of database. /// - /// - /// The required parameters for creating or updating a database. + /// + /// The name of service tier advisor. /// /// /// The headers that will be added to request. @@ -418,18 +456,20 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetServiceTierAdvisorWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string serviceTierAdvisorName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes an Azure SQL database. + /// Returns service tier advisors for specified database. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be deleted. + /// The name of database. /// /// /// The headers that will be added to request. @@ -440,26 +480,32 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListServiceTierAdvisorsWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL database. + /// Creates or updates a database's transparent data encryption + /// configuration. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the database for which setting the transparent data + /// encryption applies. /// - /// - /// The comma separated list of child objects to expand in the - /// response. Possible properties: serviceTierAdvisors, upgradeHint, - /// transparentDataEncryption. + /// + /// The status of the database transparent data encryption. Possible + /// values include: 'Enabled', 'Disabled' /// /// /// The headers that will be added to request. @@ -476,15 +522,21 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string expand = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Database. + /// Gets a database's transparent data encryption configuration. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the database for which the transparent data encryption + /// applies. /// /// /// The headers that will be added to request. @@ -501,18 +553,21 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about Azure SQL Database usages. + /// Returns a database's transparent data encryption operation result. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database. + /// The name of the database for which the transparent data encryption + /// applies. /// /// /// The headers that will be added to request. @@ -529,21 +584,24 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListTransparentDataEncryptionActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about a service tier advisor. + /// Failover the database replication link. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of database. + /// The name of the database that has the replication link to be failed + /// over. /// - /// - /// The name of service tier advisor. + /// + /// The ID of the replication link to be failed over. /// /// /// The headers that will be added to request. @@ -554,25 +612,28 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetServiceTierAdvisorWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string serviceTierAdvisorName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task BeginFailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about service tier advisors for specified - /// database. + /// Force failover the database replication link, which may result in + /// data loss. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of database. + /// The name of the database that has the replication link to be failed + /// over. + /// + /// + /// The ID of the replication link to be failed over. /// /// /// The headers that will be added to request. @@ -583,30 +644,23 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListServiceTierAdvisorsWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates or updates an Azure SQL Database Transparent Data - /// Encryption Operation. + /// Pauses a data warehouse. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which setting the - /// Transparent Data Encryption applies. - /// - /// - /// The required parameters for creating or updating transparent data - /// encryption. + /// The name of the data warehouse to pause. /// /// /// The headers that will be added to request. @@ -617,25 +671,23 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task BeginPauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns an Azure SQL Database Transparent Data Encryption Response. + /// Resumes a data warehouse. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which the Transparent Data - /// Encryption applies. + /// The name of the data warehouse to resume. /// /// /// The headers that will be added to request. @@ -646,26 +698,28 @@ public partial interface IDatabasesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task BeginResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns an Azure SQL Database Transparent Data Encryption Activity - /// Response. + /// Creates a new database or updates an existing database. Location is + /// a required property in the request body, and it must be the same as + /// the location of the SQL server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Database for which the Transparent Data - /// Encryption applies. + /// The name of the database to be operated on (updated or created). + /// + /// + /// The required parameters for creating or updating a database. /// /// /// The headers that will be added to request. @@ -682,6 +736,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListTransparentDataEncryptionActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs index ce4bf29a393d..2e4f382c73d7 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// ElasticPoolsOperations operations. @@ -17,21 +24,22 @@ namespace Microsoft.Azure.Management.Sql public partial interface IElasticPoolsOperations { /// - /// Creates a new Azure SQL elastic pool or updates an existing Azure - /// SQL elastic pool. + /// Creates a new elastic pool or updates an existing elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be operated on (Updated - /// or created). + /// The name of the elastic pool to be operated on (updated or + /// created). /// /// - /// The required parameters for createing or updating an Elastic Pool. + /// The required parameters for creating or updating an elastic pool. /// /// /// The headers that will be added to request. @@ -48,23 +56,20 @@ public partial interface IElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates a new Azure SQL elastic pool or updates an existing Azure - /// SQL elastic pool. + /// Deletes the elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be operated on (Updated - /// or created). - /// - /// - /// The required parameters for createing or updating an Elastic Pool. + /// The name of the elastic pool to be deleted. /// /// /// The headers that will be added to request. @@ -75,24 +80,23 @@ public partial interface IElasticPoolsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes the Azure SQL elastic pool. + /// Gets an elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be deleted. + /// The name of the elastic pool to be retrieved. /// /// /// The headers that will be added to request. @@ -103,21 +107,23 @@ public partial interface IElasticPoolsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL elastic pool. + /// Returns elastic pools. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server - /// - /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the server. /// /// /// The headers that will be added to request. @@ -134,15 +140,20 @@ public partial interface IElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about Azure SQL elastic pools. + /// Returns elastic pool activities. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the elastic pool for which to get the current activity. /// /// /// The headers that will be added to request. @@ -159,19 +170,20 @@ public partial interface IElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about Azure SQL elastic pool activities. + /// Returns activity on databases inside of an elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool for which to get the - /// current activity. + /// The name of the elastic pool. /// /// /// The headers that will be added to request. @@ -188,19 +200,23 @@ public partial interface IElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListDatabaseActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about activity on Azure SQL databases inside - /// of an Azure SQL elastic pool. + /// Gets a database inside of an elastic pool. /// - /// - /// The name of the Azure SQL Elastic Pool. - /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. + /// + /// + /// The name of the elastic pool to be retrieved. + /// + /// + /// The name of the database to be retrieved. /// /// /// The headers that will be added to request. @@ -217,22 +233,20 @@ public partial interface IElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListDatabaseActivityWithHttpMessagesAsync(string elasticPoolName, string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL database inside of an Azure - /// SQL elastic pool. + /// Returns a database inside of an elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. - /// - /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the elastic pool to be retrieved. /// /// /// The headers that will be added to request. @@ -249,19 +263,24 @@ public partial interface IElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL database inside of an Azure - /// SQL elastic pool. + /// Creates a new elastic pool or updates an existing elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be operated on (updated or + /// created). + /// + /// + /// The required parameters for creating or updating an elastic pool. /// /// /// The headers that will be added to request. @@ -278,6 +297,7 @@ public partial interface IElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs index b45fdff3af0f..fdd4850634a0 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// RecommendedElasticPoolsOperations operations. @@ -17,16 +24,18 @@ namespace Microsoft.Azure.Management.Sql public partial interface IRecommendedElasticPoolsOperations { /// - /// Returns information about an Azure SQL Recommended Elastic Pool. + /// Gets a recommented elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// The headers that will be added to request. @@ -43,22 +52,23 @@ public partial interface IRecommendedElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Database inside of an Azure - /// SQL Recommended Elastic Pool. + /// Gets a database inside of a recommented elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be retrieved. /// /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the database to be retrieved. /// /// /// The headers that will be added to request. @@ -75,15 +85,17 @@ public partial interface IRecommendedElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about Azure SQL Recommended Elastic Pools. + /// Returns recommended elastic pools. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The headers that will be added to request. @@ -100,19 +112,20 @@ public partial interface IRecommendedElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Database inside of an Azure - /// SQL Recommended Elastic Pool. + /// Returns a database inside of a recommented elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// The headers that will be added to request. @@ -129,18 +142,20 @@ public partial interface IRecommendedElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an recommended elastic pool metrics. + /// Returns a recommented elastic pool metrics. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// The headers that will be added to request. @@ -157,6 +172,7 @@ public partial interface IRecommendedElasticPoolsOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs index f760cbc8227d..05b9ef58a465 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// ServersOperations operations. @@ -17,19 +24,21 @@ namespace Microsoft.Azure.Management.Sql public partial interface IServersOperations { /// - /// Creates or updates an Azure SQL server firewall rule. + /// Creates or updates a firewall rule. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// - /// The required parameters for createing or updating a firewall rule. + /// The required parameters for creating or updating a firewall rule. /// /// /// The headers that will be added to request. @@ -46,18 +55,20 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes an Azure SQL server firewall rule. + /// Deletes a firewall rule. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// /// The headers that will be added to request. @@ -71,18 +82,20 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns an Azure SQL server firewall rule. + /// Gets a firewall rule. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// /// The headers that will be added to request. @@ -99,15 +112,17 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns a list of Azure SQL server firewall rules. + /// Returns a list of firewall rules. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The headers that will be added to request. @@ -124,9 +139,9 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Server. + /// Returns a list of servers. /// /// /// The headers that will be added to request. @@ -143,18 +158,20 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates a new Azure SQL Server. + /// Creates or updates a new server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The required parameters for createing or updating a server. + /// The required parameters for creating or updating a server. /// /// /// The headers that will be added to request. @@ -171,15 +188,17 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, Server parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, Server parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Server. + /// Deletes a SQL server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The headers that will be added to request. @@ -193,15 +212,17 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Server. + /// Gets a server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The headers that will be added to request. @@ -218,12 +239,14 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Server. + /// Returns a server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The headers that will be added to request. @@ -240,112 +263,17 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Cancel a pending upgrade for the Azure SQL Server. + /// Returns server usages. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - System.Threading.Tasks.Task CancelUpgradeWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); - /// - /// Returns information about Upgrade status of an Azure SQL Server. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - System.Threading.Tasks.Task> GetUpgradeWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); - /// - /// Start an Azure SQL Server Upgrade. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The required parameters for the Azure SQL Server Upgrade. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - System.Threading.Tasks.Task StartUpgradeWithHttpMessagesAsync(string resourceGroupName, string serverName, ServerUpgradeStartParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); - /// - /// Start an Azure SQL Server Upgrade. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The required parameters for the Azure SQL Server Upgrade. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - System.Threading.Tasks.Task BeginStartUpgradeWithHttpMessagesAsync(string resourceGroupName, string serverName, ServerUpgradeStartParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); - /// - /// Returns information about Azure SQL Server usage. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The headers that will be added to request. @@ -362,15 +290,17 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about an Azure SQL Database Service Objective. + /// Gets a database service objective. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The name of the service objective to retrieve. @@ -390,15 +320,17 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetServiceObjectiveWithHttpMessagesAsync(string resourceGroupName, string serverName, string serviceObjectiveName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetServiceObjectiveWithHttpMessagesAsync(string resourceGroupName, string serverName, string serviceObjectiveName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns information about Azure SQL Database Service Objectives. + /// Returns database service objectives. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The headers that will be added to request. @@ -415,6 +347,7 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListServiceObjectivesWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListServiceObjectivesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs index 09a6155c042a..4263d5c0d75a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs @@ -1,19 +1,29 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// - /// Composite Swagger for Azure Sql Database Client + /// The Azure SQL Database management API provides a RESTful set of web + /// services that interact with Azure SQL Database services to manage your + /// databases. The API enables you to create, retrieve, update, and delete + /// databases. /// public partial interface ISqlManagementClient : System.IDisposable { @@ -35,10 +45,10 @@ public partial interface ISqlManagementClient : System.IDisposable /// /// Credentials needed for the client to connect to Azure. /// - Microsoft.Rest.ServiceClientCredentials Credentials { get; } + ServiceClientCredentials Credentials { get; } /// - /// The subscription id that identifies an Azure subscription. + /// The subscription ID that identifies an Azure subscription. /// string SubscriptionId { get; set; } @@ -54,8 +64,8 @@ public partial interface ISqlManagementClient : System.IDisposable int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } @@ -80,5 +90,17 @@ public partial interface ISqlManagementClient : System.IDisposable /// IRecommendedElasticPoolsOperations RecommendedElasticPools { get; } + /// + /// Lists all of the available SQL Rest API operations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ListOperationsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs index 4e544834e7a4..77bd14ad14bd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Database table column. + /// Represents a database table column. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class Column : Resource { /// @@ -26,27 +34,26 @@ public Column() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags - /// The type of Azure SQL Database table - /// column. - public Column(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string columnType = default(string)) + /// The type of database table column. + public Column(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string columnType = default(string)) : base(location, name, id, type, tags) { ColumnType = columnType; } /// - /// Gets the type of Azure SQL Database table column. + /// Gets the type of database table column. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.columnType")] - public string ColumnType { get; private set; } + [JsonProperty(PropertyName = "properties.columnType")] + public string ColumnType { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -55,3 +62,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs index 9fbe06ab8c73..fba03890bbb5 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; /// /// Defines values for CreateMode. @@ -23,3 +26,4 @@ public static class CreateMode public const string Restore = "Restore"; } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs index 659626a1f0dc..6676a199ee94 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Database. + /// Represents a database. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class Database : Resource { /// @@ -26,71 +34,100 @@ public Database() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags - /// The collation of the Azure SQL - /// Database. - /// The creation date of the Azure SQL - /// Database (ISO8601 format). - /// The containment state of the Azure - /// SQL Database. - /// The current Service Level - /// Objective Id of the Azure SQL Database. This is the Id of the - /// Service Level Objective that is currently active. - /// The Id of the Azure SQL Database. - /// The recovery period start date - /// of the Azure SQL Database. This records the start date and time - /// when recovery is available for this Azure SQL Database (ISO8601 + /// Kind of database. This is metadata used for the + /// Azure portal experience. + /// The collation of the database. If + /// createMode is not Default, this value is ignored. + /// The creation date of the database + /// (ISO8601 format). + /// The containment state of the + /// database. + /// The current service level + /// objective ID of the database. This is the ID of the service level + /// objective that is currently active. + /// The ID of the database. + /// This records the earliest start + /// date and time that restore is available for this database (ISO8601 /// format). /// Specifies the type of database to create. - /// Possible values include: 'Copy', 'Default', - /// 'NonReadableSecondary', 'OnlineSecondary', 'PointInTimeRestore', - /// 'Recovery', 'Restore' - /// Conditional. Specifies the - /// resource Id of the source database. If createMode is not set to - /// Default, then this value must be specified. - /// The edition of the Azure SQL Database. The - /// DatabaseEditions enumeration contains all the valid editions. - /// Possible values include: 'Web', 'Business', 'Basic', 'Standard', - /// 'Premium', 'Free', 'Stretch', 'DataWarehouse' - /// The max size of the Azure SQL Database - /// expressed in bytes. Note: Only the following sizes are supported - /// (in addition to limitations being placed on each edition): { 100 - /// MB | 500 MB |1 GB | 5 GB | 10 GB | 20 GB | 30 GB … 150 GB | 200 - /// GB … 500 GB } - /// The configured Service - /// Level Objective Id of the Azure SQL Database. This is the Service - /// Level Objective that is in the process of being applied to the - /// Azure SQL Database. Once successfully updated, it will match the - /// value of currentServiceObjectiveId property. + /// If createMode is not set to Default, sourceDatabaseId must be + /// specified. If createMode is set to PointInTimeRestore, then + /// restorePointInTime must be specified. If createMode is set to + /// Restore, then sourceDatabaseDeletionDate must be specified. + /// Possible values include: 'Copy', 'Default', 'NonReadableSecondary', + /// 'OnlineSecondary', 'PointInTimeRestore', 'Recovery', + /// 'Restore' + /// Conditional. If createMode is not + /// set to Default, then this value must be specified. Specifies the + /// resource ID of the source database. If createMode is + /// NonReadableSecondary or OnlineSecondary, the name of the source + /// database must be the same as this new database. + /// Conditional. If createMode is set + /// to PointInTimeRestore, then this value must be specified. Specifies + /// the point in time (ISO8601 format) of the source database that will + /// be restored to create the new database. Must be greater than or + /// equal to the source database's earliestRestoreDate value. + /// The edition of the database. The + /// DatabaseEditions enumeration contains all the valid editions. If + /// createMode is NonReadableSecondary or OnlineSecondary, this value + /// is ignored. Possible values include: 'Web', 'Business', 'Basic', + /// 'Standard', 'Premium', 'Free', 'Stretch', 'DataWarehouse', + /// 'System' + /// The max size of the database expressed + /// in bytes. If createMode is not Default, this value is ignored. + /// Note: Only the following sizes are supported (in addition to + /// limitations being placed on each edition): { 100 MB | 500 MB |1 GB + /// | 5 GB | 10 GB | 20 GB | 30 GB … 150 GB | 200 GB … 500 GB } + /// The configured service + /// level objective ID of the database. This is the service level + /// objective that is in the process of being applied to the database. + /// Once successfully updated, it will match the value of + /// currentServiceObjectiveId property. If requestedServiceObjectiveId + /// and requestedServiceObjectiveName are both updated, the value of + /// requestedServiceObjectiveId overrides the value of + /// requestedServiceObjectiveName. /// The name of the - /// configured Service Level Objective of the Azure SQL Database. - /// This is the Service Level Objective that is in the process of - /// being applied to the Azure SQL Database. Once successfully - /// updated, it will match the value of serviceLevelObjective - /// property. Possible values include: 'Basic', 'S0', 'S1', 'S2', - /// 'S3', 'P1', 'P2', 'P3' - /// The current Service Level - /// Objective of the Azure SQL Database. Possible values include: - /// 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3' - /// The status of the Azure SQL Database. - /// The name of the Azure SQL Elastic - /// Pool the database is in. - /// The default secondary - /// region for this database. - /// The list of service tier - /// advisors for this database. Expanded property - /// The upgrade hint for this - /// database. + /// configured service level objective of the database. This is the + /// service level objective that is in the process of being applied to + /// the database. Once successfully updated, it will match the value of + /// serviceLevelObjective property. Possible values include: 'Basic', + /// 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', + /// 'System', 'ElasticPool' + /// The current service level + /// objective of the database. Possible values include: 'Basic', 'S0', + /// 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', + /// 'System', 'ElasticPool' + /// The status of the database. + /// The name of the elastic pool the + /// database is in. If elasticPoolName and + /// requestedServiceObjectiveName are both updated, the value of + /// requestedServiceObjectiveName is ignored. + /// The default secondary region + /// for this database. + /// The list of service tier advisors + /// for this database. Expanded property /// The schemas from this database. /// The transparent data /// encryption info for this database. /// The recommended indices for this /// database. - public Database(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string collation = default(string), System.DateTime? creationDate = default(System.DateTime?), long? containmentState = default(long?), System.Guid? currentServiceObjectiveId = default(System.Guid?), string databaseId = default(string), System.DateTime? earliestRestoreDate = default(System.DateTime?), string createMode = default(string), string sourceDatabaseId = default(string), string edition = default(string), string maxSizeBytes = default(string), System.Guid? requestedServiceObjectiveId = default(System.Guid?), string requestedServiceObjectiveName = default(string), string serviceLevelObjective = default(string), string status = default(string), string elasticPoolName = default(string), string defaultSecondaryLocation = default(string), System.Collections.Generic.IList serviceTierAdvisors = default(System.Collections.Generic.IList), UpgradeHint upgradeHint = default(UpgradeHint), System.Collections.Generic.IList schemas = default(System.Collections.Generic.IList), System.Collections.Generic.IList transparentDataEncryption = default(System.Collections.Generic.IList), System.Collections.Generic.IList recommendedIndex = default(System.Collections.Generic.IList)) + /// The id indicating the failover group + /// containing this database. + /// Conditional. If the database is a + /// geo-secondary, readScale indicates whether read-only connections + /// are allowed to this database or not. Possible values include: + /// 'Enabled', 'Disabled' + /// Indicates the name of the sample schema to + /// apply when creating this database. If createMode is not Default, + /// this value is ignored. Possible values include: + /// 'AdventureWorksLT' + public Database(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string collation = default(string), System.DateTime? creationDate = default(System.DateTime?), long? containmentState = default(long?), System.Guid? currentServiceObjectiveId = default(System.Guid?), string databaseId = default(string), System.DateTime? earliestRestoreDate = default(System.DateTime?), string createMode = default(string), string sourceDatabaseId = default(string), System.DateTime? restorePointInTime = default(System.DateTime?), string edition = default(string), string maxSizeBytes = default(string), System.Guid? requestedServiceObjectiveId = default(System.Guid?), string requestedServiceObjectiveName = default(string), string serviceLevelObjective = default(string), string status = default(string), string elasticPoolName = default(string), string defaultSecondaryLocation = default(string), IList serviceTierAdvisors = default(IList), IList schemas = default(IList), IList transparentDataEncryption = default(IList), IList recommendedIndex = default(IList), System.Guid? failoverGroupId = default(System.Guid?), ReadScale? readScale = default(ReadScale?), string sampleName = default(string)) : base(location, name, id, type, tags) { + Kind = kind; Collation = collation; CreationDate = creationDate; ContainmentState = containmentState; @@ -99,6 +136,7 @@ public Database() { } EarliestRestoreDate = earliestRestoreDate; CreateMode = createMode; SourceDatabaseId = sourceDatabaseId; + RestorePointInTime = restorePointInTime; Edition = edition; MaxSizeBytes = maxSizeBytes; RequestedServiceObjectiveId = requestedServiceObjectiveId; @@ -108,177 +146,224 @@ public Database() { } ElasticPoolName = elasticPoolName; DefaultSecondaryLocation = defaultSecondaryLocation; ServiceTierAdvisors = serviceTierAdvisors; - UpgradeHint = upgradeHint; Schemas = schemas; TransparentDataEncryption = transparentDataEncryption; RecommendedIndex = recommendedIndex; + FailoverGroupId = failoverGroupId; + ReadScale = readScale; + SampleName = sampleName; } /// - /// Gets or sets the collation of the Azure SQL Database. + /// Gets kind of database. This is metadata used for the Azure portal + /// experience. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; protected set; } + + /// + /// Gets or sets the collation of the database. If createMode is not + /// Default, this value is ignored. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.collation")] + [JsonProperty(PropertyName = "properties.collation")] public string Collation { get; set; } /// - /// Gets the creation date of the Azure SQL Database (ISO8601 format). + /// Gets the creation date of the database (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.creationDate")] - public System.DateTime? CreationDate { get; private set; } + [JsonProperty(PropertyName = "properties.creationDate")] + public System.DateTime? CreationDate { get; protected set; } /// - /// Gets the containment state of the Azure SQL Database. + /// Gets the containment state of the database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.containmentState")] - public long? ContainmentState { get; private set; } + [JsonProperty(PropertyName = "properties.containmentState")] + public long? ContainmentState { get; protected set; } /// - /// Gets the current Service Level Objective Id of the Azure SQL - /// Database. This is the Id of the Service Level Objective that is - /// currently active. + /// Gets the current service level objective ID of the database. This + /// is the ID of the service level objective that is currently active. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.currentServiceObjectiveId")] - public System.Guid? CurrentServiceObjectiveId { get; private set; } + [JsonProperty(PropertyName = "properties.currentServiceObjectiveId")] + public System.Guid? CurrentServiceObjectiveId { get; protected set; } /// - /// Gets the Id of the Azure SQL Database. + /// Gets the ID of the database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseId")] - public string DatabaseId { get; private set; } + [JsonProperty(PropertyName = "properties.databaseId")] + public string DatabaseId { get; protected set; } /// - /// Gets the recovery period start date of the Azure SQL Database. - /// This records the start date and time when recovery is available - /// for this Azure SQL Database (ISO8601 format). + /// Gets this records the earliest start date and time that restore is + /// available for this database (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.earliestRestoreDate")] - public System.DateTime? EarliestRestoreDate { get; private set; } + [JsonProperty(PropertyName = "properties.earliestRestoreDate")] + public System.DateTime? EarliestRestoreDate { get; protected set; } /// - /// Gets or sets specifies the type of database to create. Possible - /// values include: 'Copy', 'Default', 'NonReadableSecondary', + /// Gets or sets specifies the type of database to create. If + /// createMode is not set to Default, sourceDatabaseId must be + /// specified. If createMode is set to PointInTimeRestore, then + /// restorePointInTime must be specified. If createMode is set to + /// Restore, then sourceDatabaseDeletionDate must be specified. + /// Possible values include: 'Copy', 'Default', 'NonReadableSecondary', /// 'OnlineSecondary', 'PointInTimeRestore', 'Recovery', 'Restore' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.createMode")] + [JsonProperty(PropertyName = "properties.createMode")] public string CreateMode { get; set; } /// - /// Gets or sets conditional. Specifies the resource Id of the source - /// database. If createMode is not set to Default, then this value - /// must be specified. + /// Gets or sets conditional. If createMode is not set to Default, then + /// this value must be specified. Specifies the resource ID of the + /// source database. If createMode is NonReadableSecondary or + /// OnlineSecondary, the name of the source database must be the same + /// as this new database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.sourceDatabaseId")] + [JsonProperty(PropertyName = "properties.sourceDatabaseId")] public string SourceDatabaseId { get; set; } /// - /// Gets or sets the edition of the Azure SQL Database. The - /// DatabaseEditions enumeration contains all the valid editions. - /// Possible values include: Refer to the capabilities API + /// Gets or sets conditional. If createMode is set to + /// PointInTimeRestore, then this value must be specified. Specifies + /// the point in time (ISO8601 format) of the source database that will + /// be restored to create the new database. Must be greater than or + /// equal to the source database's earliestRestoreDate value. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.edition")] + [JsonProperty(PropertyName = "properties.restorePointInTime")] + public System.DateTime? RestorePointInTime { get; set; } + + /// + /// Gets or sets the edition of the database. The DatabaseEditions + /// enumeration contains all the valid editions. If createMode is + /// NonReadableSecondary or OnlineSecondary, this value is ignored. + /// Possible values include: 'Web', 'Business', 'Basic', 'Standard', + /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System' + /// + [JsonProperty(PropertyName = "properties.edition")] public string Edition { get; set; } /// - /// Gets or sets the max size of the Azure SQL Database expressed in - /// bytes. Note: Only the following sizes are supported (in addition - /// to limitations being placed on each edition): Refer to the capabilities API + /// Gets or sets the max size of the database expressed in bytes. If + /// createMode is not Default, this value is ignored. Note: Only the + /// following sizes are supported (in addition to limitations being + /// placed on each edition): { 100 MB | 500 MB |1 GB | 5 GB | 10 GB | + /// 20 GB | 30 GB … 150 GB | 200 GB … 500 GB } /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.maxSizeBytes")] + [JsonProperty(PropertyName = "properties.maxSizeBytes")] public string MaxSizeBytes { get; set; } /// - /// Gets or sets the configured Service Level Objective Id of the - /// Azure SQL Database. This is the Service Level Objective that is - /// in the process of being applied to the Azure SQL Database. Once - /// successfully updated, it will match the value of - /// currentServiceObjectiveId property. + /// Gets or sets the configured service level objective ID of the + /// database. This is the service level objective that is in the + /// process of being applied to the database. Once successfully + /// updated, it will match the value of currentServiceObjectiveId + /// property. If requestedServiceObjectiveId and + /// requestedServiceObjectiveName are both updated, the value of + /// requestedServiceObjectiveId overrides the value of + /// requestedServiceObjectiveName. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedServiceObjectiveId")] + [JsonProperty(PropertyName = "properties.requestedServiceObjectiveId")] public System.Guid? RequestedServiceObjectiveId { get; set; } /// - /// Gets or sets the name of the configured Service Level Objective of - /// the Azure SQL Database. This is the Service Level Objective that - /// is in the process of being applied to the Azure SQL Database. - /// Once successfully updated, it will match the value of - /// serviceLevelObjective property. Refer to the capabilities API + /// Gets or sets the name of the configured service level objective of + /// the database. This is the service level objective that is in the + /// process of being applied to the database. Once successfully + /// updated, it will match the value of serviceLevelObjective property. + /// Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', + /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedServiceObjectiveName")] + [JsonProperty(PropertyName = "properties.requestedServiceObjectiveName")] public string RequestedServiceObjectiveName { get; set; } /// - /// Gets the current Service Level Objective of the Azure SQL - /// Database. Refer to the capabilities API + /// Gets the current service level objective of the database. Possible + /// values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', + /// 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceLevelObjective")] - public string ServiceLevelObjective { get; private set; } + [JsonProperty(PropertyName = "properties.serviceLevelObjective")] + public string ServiceLevelObjective { get; protected set; } /// - /// Gets the status of the Azure SQL Database. + /// Gets the status of the database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.status")] - public string Status { get; private set; } + [JsonProperty(PropertyName = "properties.status")] + public string Status { get; protected set; } /// - /// Gets or sets the name of the Azure SQL Elastic Pool the database - /// is in. + /// Gets or sets the name of the elastic pool the database is in. If + /// elasticPoolName and requestedServiceObjectiveName are both updated, + /// the value of requestedServiceObjectiveName is ignored. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.elasticPoolName")] + [JsonProperty(PropertyName = "properties.elasticPoolName")] public string ElasticPoolName { get; set; } /// /// Gets the default secondary region for this database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.defaultSecondaryLocation")] - public string DefaultSecondaryLocation { get; private set; } + [JsonProperty(PropertyName = "properties.defaultSecondaryLocation")] + public string DefaultSecondaryLocation { get; protected set; } /// /// Gets the list of service tier advisors for this database. Expanded /// property /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceTierAdvisors")] - public System.Collections.Generic.IList ServiceTierAdvisors { get; private set; } - - /// - /// Gets the upgrade hint for this database. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.upgradeHint")] - public UpgradeHint UpgradeHint { get; private set; } + [JsonProperty(PropertyName = "properties.serviceTierAdvisors")] + public IList ServiceTierAdvisors { get; protected set; } /// /// Gets the schemas from this database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.schemas")] - public System.Collections.Generic.IList Schemas { get; private set; } + [JsonProperty(PropertyName = "properties.schemas")] + public IList Schemas { get; protected set; } /// /// Gets the transparent data encryption info for this database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.transparentDataEncryption")] - public System.Collections.Generic.IList TransparentDataEncryption { get; private set; } + [JsonProperty(PropertyName = "properties.transparentDataEncryption")] + public IList TransparentDataEncryption { get; protected set; } /// /// Gets the recommended indices for this database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.recommendedIndex")] - public System.Collections.Generic.IList RecommendedIndex { get; private set; } + [JsonProperty(PropertyName = "properties.recommendedIndex")] + public IList RecommendedIndex { get; protected set; } + + /// + /// Gets the id indicating the failover group containing this database. + /// + [JsonProperty(PropertyName = "properties.failoverGroupId")] + public System.Guid? FailoverGroupId { get; protected set; } + + /// + /// Gets or sets conditional. If the database is a geo-secondary, + /// readScale indicates whether read-only connections are allowed to + /// this database or not. Possible values include: 'Enabled', + /// 'Disabled' + /// + [JsonProperty(PropertyName = "properties.readScale")] + public ReadScale? ReadScale { get; set; } + + /// + /// Gets or sets indicates the name of the sample schema to apply when + /// creating this database. If createMode is not Default, this value is + /// ignored. Possible values include: 'AdventureWorksLT' + /// + [JsonProperty(PropertyName = "properties.sampleName")] + public string SampleName { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() { base.Validate(); - if (this.UpgradeHint != null) + if (Schemas != null) { - this.UpgradeHint.Validate(); - } - if (this.Schemas != null) - { - foreach (var element in this.Schemas) + foreach (var element in Schemas) { if (element != null) { @@ -286,9 +371,9 @@ public override void Validate() } } } - if (this.RecommendedIndex != null) + if (RecommendedIndex != null) { - foreach (var element1 in this.RecommendedIndex) + foreach (var element1 in RecommendedIndex) { if (element1 != null) { @@ -299,3 +384,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs index 4d6a10d5c9c4..36d268b7b4dd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; /// /// Defines values for DatabaseEditions. @@ -22,5 +25,7 @@ public static class DatabaseEditions public const string Free = "Free"; public const string Stretch = "Stretch"; public const string DataWarehouse = "DataWarehouse"; + public const string System = "System"; } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs index e02a81d66057..ab228a99cbf6 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs @@ -1,19 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; using System.Linq; /// - /// Represents Azure SQL Database metrics. + /// Represents database metrics. /// - public partial class DatabaseMetric + public partial class DatabaseMetric : SqlSubResource { /// /// Initializes a new instance of the DatabaseMetric class. @@ -23,6 +27,8 @@ public DatabaseMetric() { } /// /// Initializes a new instance of the DatabaseMetric class. /// + /// Resource name + /// The resource ID. /// The name of the resource. /// The metric display name. /// The current value of the metric. @@ -30,7 +36,8 @@ public DatabaseMetric() { } /// The units of the metric. /// The next reset time for the metric /// (ISO8601 format). - public DatabaseMetric(string resourceName = default(string), string displayName = default(string), double? currentValue = default(double?), double? limit = default(double?), string unit = default(string), System.DateTime? nextResetTime = default(System.DateTime?)) + public DatabaseMetric(string name = default(string), string id = default(string), string resourceName = default(string), string displayName = default(string), double? currentValue = default(double?), double? limit = default(double?), string unit = default(string), System.DateTime? nextResetTime = default(System.DateTime?)) + : base(name, id) { ResourceName = resourceName; DisplayName = displayName; @@ -43,38 +50,39 @@ public DatabaseMetric() { } /// /// Gets the name of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceName")] - public string ResourceName { get; private set; } + [JsonProperty(PropertyName = "resourceName")] + public string ResourceName { get; protected set; } /// /// Gets the metric display name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "displayName")] - public string DisplayName { get; private set; } + [JsonProperty(PropertyName = "displayName")] + public string DisplayName { get; protected set; } /// /// Gets the current value of the metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "currentValue")] - public double? CurrentValue { get; private set; } + [JsonProperty(PropertyName = "currentValue")] + public double? CurrentValue { get; protected set; } /// /// Gets the current limit of the metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "limit")] - public double? Limit { get; private set; } + [JsonProperty(PropertyName = "limit")] + public double? Limit { get; protected set; } /// /// Gets the units of the metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] - public string Unit { get; private set; } + [JsonProperty(PropertyName = "unit")] + public string Unit { get; protected set; } /// /// Gets the next reset time for the metric (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nextResetTime")] - public System.DateTime? NextResetTime { get; private set; } + [JsonProperty(PropertyName = "nextResetTime")] + public System.DateTime? NextResetTime { get; protected set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs index eb7e1246e8ae..3f947de63680 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Database elastic pool. + /// Represents a database elastic pool. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class ElasticPool : Resource { /// @@ -26,24 +34,26 @@ public ElasticPool() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags - /// The creation date of the Azure SQL - /// Elastic Pool (ISO8601 format). - /// The state of the Azure SQL Elastic Pool. - /// Possible values include: 'Creating', 'Ready', 'Disabled' - /// The edition of the Azure SQL Elastic Pool. - /// Possible values include: 'Basic', 'Standard', 'Premium' - /// The total shared DTU for the Azure SQL Database - /// Elastic Pool. - /// The maximum DTU any one Azure SQL - /// Database can consume. - /// The minimum DTU all Azure SQL - /// Databases are guaranteed. - /// Gets storage limit for the Azure SQL - /// Database Elastic Pool in MB. - public ElasticPool(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.DateTime? creationDate = default(System.DateTime?), string state = default(string), string edition = default(string), int? dtu = default(int?), int? databaseDtuMax = default(int?), int? databaseDtuMin = default(int?), int? storageMB = default(int?)) + /// The creation date of the elastic pool + /// (ISO8601 format). + /// The state of the elastic pool. Possible values + /// include: 'Creating', 'Ready', 'Disabled' + /// The edition of the elastic pool. Possible + /// values include: 'Basic', 'Standard', 'Premium' + /// The total shared DTU for the database elastic + /// pool. + /// The maximum DTU any one database can + /// consume. + /// The minimum DTU all databases are + /// guaranteed. + /// Gets storage limit for the database elastic + /// pool in MB. + /// Kind of elastic pool. This is metadata used for + /// the Azure portal experience. + public ElasticPool(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? creationDate = default(System.DateTime?), string state = default(string), string edition = default(string), int? dtu = default(int?), int? databaseDtuMax = default(int?), int? databaseDtuMin = default(int?), int? storageMB = default(int?), string kind = default(string)) : base(location, name, id, type, tags) { CreationDate = creationDate; @@ -53,58 +63,64 @@ public ElasticPool() { } DatabaseDtuMax = databaseDtuMax; DatabaseDtuMin = databaseDtuMin; StorageMB = storageMB; + Kind = kind; } /// - /// Gets the creation date of the Azure SQL Elastic Pool (ISO8601 - /// format). + /// Gets the creation date of the elastic pool (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.creationDate")] - public System.DateTime? CreationDate { get; private set; } + [JsonProperty(PropertyName = "properties.creationDate")] + public System.DateTime? CreationDate { get; protected set; } /// - /// Gets the state of the Azure SQL Elastic Pool. Refer to the capabilities API + /// Gets the state of the elastic pool. Possible values include: + /// 'Creating', 'Ready', 'Disabled' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.state")] - public string State { get; private set; } + [JsonProperty(PropertyName = "properties.state")] + public string State { get; protected set; } /// - /// Gets or sets the edition of the Azure SQL Elastic Pool. Refer to the capabilities API + /// Gets or sets the edition of the elastic pool. Possible values + /// include: 'Basic', 'Standard', 'Premium' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.edition")] + [JsonProperty(PropertyName = "properties.edition")] public string Edition { get; set; } /// - /// Gets or sets the total shared DTU for the Azure SQL Database - /// Elastic Pool. + /// Gets or sets the total shared DTU for the database elastic pool. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.dtu")] + [JsonProperty(PropertyName = "properties.dtu")] public int? Dtu { get; set; } /// - /// Gets or sets the maximum DTU any one Azure SQL Database can - /// consume. + /// Gets or sets the maximum DTU any one database can consume. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseDtuMax")] + [JsonProperty(PropertyName = "properties.databaseDtuMax")] public int? DatabaseDtuMax { get; set; } /// - /// Gets or sets the minimum DTU all Azure SQL Databases are - /// guaranteed. + /// Gets or sets the minimum DTU all databases are guaranteed. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseDtuMin")] + [JsonProperty(PropertyName = "properties.databaseDtuMin")] public int? DatabaseDtuMin { get; set; } /// - /// Gets storage limit for the Azure SQL Database Elastic Pool in MB. + /// Gets storage limit for the database elastic pool in MB. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageMB")] + [JsonProperty(PropertyName = "properties.storageMB")] public int? StorageMB { get; set; } + /// + /// Gets kind of elastic pool. This is metadata used for the Azure + /// portal experience. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; protected set; } + /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -113,3 +129,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs index a7e3fabc53db..5b4802a0d06c 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents the activity on an Azure SQL Elastic Pool. + /// Represents the activity on an elastic pool. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class ElasticPoolActivity : Resource { /// @@ -26,7 +34,7 @@ public ElasticPoolActivity() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags /// The time the operation finished (ISO8601 @@ -46,16 +54,24 @@ public ElasticPoolActivity() { } /// The requested DTU for the pool if /// available. /// The requested name for the - /// Elastic Pool if available. - /// The requested storage - /// limit for the pool in GB if available. - /// The name of the Elastic Pool. - /// The name of the Azure SQL Server the - /// Elastic Pool is in. + /// elastic pool if available. + /// The requested storage limit + /// for the pool in GB if available. + /// The name of the elastic pool. + /// The name of the server the elastic pool is + /// in. /// The time the operation started (ISO8601 /// format). /// The current state of the operation. - public ElasticPoolActivity(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), int? requestedDatabaseDtuMax = default(int?), int? requestedDatabaseDtuMin = default(int?), int? requestedDtu = default(int?), string requestedElasticPoolName = default(string), long? requestedStorageLimitInGB = default(long?), string elasticPoolName = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string)) + /// The requested storage limit + /// in MB. + /// The requested per + /// database DTU guarantee. + /// The requested per database + /// DTU cap. + /// The requested DTU + /// guarantee. + public ElasticPoolActivity(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), int? requestedDatabaseDtuMax = default(int?), int? requestedDatabaseDtuMin = default(int?), int? requestedDtu = default(int?), string requestedElasticPoolName = default(string), long? requestedStorageLimitInGB = default(long?), string elasticPoolName = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string), int? requestedStorageLimitInMB = default(int?), int? requestedDatabaseDtuGuarantee = default(int?), int? requestedDatabaseDtuCap = default(int?), int? requestedDtuGuarantee = default(int?)) : base(location, name, id, type, tags) { EndTime = endTime; @@ -74,108 +90,136 @@ public ElasticPoolActivity() { } ServerName = serverName; StartTime = startTime; State = state; + RequestedStorageLimitInMB = requestedStorageLimitInMB; + RequestedDatabaseDtuGuarantee = requestedDatabaseDtuGuarantee; + RequestedDatabaseDtuCap = requestedDatabaseDtuCap; + RequestedDtuGuarantee = requestedDtuGuarantee; } /// /// Gets the time the operation finished (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.endTime")] - public System.DateTime? EndTime { get; private set; } + [JsonProperty(PropertyName = "properties.endTime")] + public System.DateTime? EndTime { get; protected set; } /// /// Gets the error code if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.errorCode")] - public int? ErrorCode { get; private set; } + [JsonProperty(PropertyName = "properties.errorCode")] + public int? ErrorCode { get; protected set; } /// /// Gets the error message if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.errorMessage")] - public string ErrorMessage { get; private set; } + [JsonProperty(PropertyName = "properties.errorMessage")] + public string ErrorMessage { get; protected set; } /// /// Gets the error severity if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.errorSeverity")] - public int? ErrorSeverity { get; private set; } + [JsonProperty(PropertyName = "properties.errorSeverity")] + public int? ErrorSeverity { get; protected set; } /// /// Gets the operation name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.operation")] - public string Operation { get; private set; } + [JsonProperty(PropertyName = "properties.operation")] + public string Operation { get; protected set; } /// /// Gets the unique operation ID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.operationId")] - public string OperationId { get; private set; } + [JsonProperty(PropertyName = "properties.operationId")] + public string OperationId { get; protected set; } /// /// Gets the percentage complete if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.percentComplete")] - public int? PercentComplete { get; private set; } + [JsonProperty(PropertyName = "properties.percentComplete")] + public int? PercentComplete { get; protected set; } /// /// Gets the requested max DTU per database if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedDatabaseDtuMax")] - public int? RequestedDatabaseDtuMax { get; private set; } + [JsonProperty(PropertyName = "properties.requestedDatabaseDtuMax")] + public int? RequestedDatabaseDtuMax { get; protected set; } /// /// Gets the requested min DTU per database if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedDatabaseDtuMin")] - public int? RequestedDatabaseDtuMin { get; private set; } + [JsonProperty(PropertyName = "properties.requestedDatabaseDtuMin")] + public int? RequestedDatabaseDtuMin { get; protected set; } /// /// Gets the requested DTU for the pool if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedDtu")] - public int? RequestedDtu { get; private set; } + [JsonProperty(PropertyName = "properties.requestedDtu")] + public int? RequestedDtu { get; protected set; } /// - /// Gets the requested name for the Elastic Pool if available. + /// Gets the requested name for the elastic pool if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedElasticPoolName")] - public string RequestedElasticPoolName { get; private set; } + [JsonProperty(PropertyName = "properties.requestedElasticPoolName")] + public string RequestedElasticPoolName { get; protected set; } /// /// Gets the requested storage limit for the pool in GB if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedStorageLimitInGB")] - public long? RequestedStorageLimitInGB { get; private set; } + [JsonProperty(PropertyName = "properties.requestedStorageLimitInGB")] + public long? RequestedStorageLimitInGB { get; protected set; } /// - /// Gets the name of the Elastic Pool. + /// Gets the name of the elastic pool. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.elasticPoolName")] - public string ElasticPoolName { get; private set; } + [JsonProperty(PropertyName = "properties.elasticPoolName")] + public string ElasticPoolName { get; protected set; } /// - /// Gets the name of the Azure SQL Server the Elastic Pool is in. + /// Gets the name of the server the elastic pool is in. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serverName")] - public string ServerName { get; private set; } + [JsonProperty(PropertyName = "properties.serverName")] + public string ServerName { get; protected set; } /// /// Gets the time the operation started (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; private set; } + [JsonProperty(PropertyName = "properties.startTime")] + public System.DateTime? StartTime { get; protected set; } /// /// Gets the current state of the operation. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.state")] - public string State { get; private set; } + [JsonProperty(PropertyName = "properties.state")] + public string State { get; protected set; } + + /// + /// Gets the requested storage limit in MB. + /// + [JsonProperty(PropertyName = "properties.requestedStorageLimitInMB")] + public int? RequestedStorageLimitInMB { get; protected set; } + + /// + /// Gets the requested per database DTU guarantee. + /// + [JsonProperty(PropertyName = "properties.requestedDatabaseDtuGuarantee")] + public int? RequestedDatabaseDtuGuarantee { get; protected set; } + + /// + /// Gets the requested per database DTU cap. + /// + [JsonProperty(PropertyName = "properties.requestedDatabaseDtuCap")] + public int? RequestedDatabaseDtuCap { get; protected set; } + + /// + /// Gets the requested DTU guarantee. + /// + [JsonProperty(PropertyName = "properties.requestedDtuGuarantee")] + public int? RequestedDtuGuarantee { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -184,3 +228,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs index b61d87b1e316..7131e241be23 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents the activity on an Azure SQL Elastic Pool. + /// Represents the activity on an elastic pool. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class ElasticPoolDatabaseActivity : Resource { /// @@ -28,7 +36,7 @@ public ElasticPoolDatabaseActivity() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags /// The database name. @@ -42,20 +50,20 @@ public ElasticPoolDatabaseActivity() { } /// The unique operation ID. /// The percentage complete if /// available. - /// The name for the Elastic - /// Pool the database is moving into if available. + /// The name for the elastic + /// pool the database is moving into if available. /// The name of the current - /// Elastic Pool the database is in if available. + /// elastic pool the database is in if available. /// The name of the current /// service objective if available. /// The name of the requested /// service objective if available. - /// The name of the Azure SQL Server the - /// Elastic Pool is in. + /// The name of the server the elastic pool is + /// in. /// The time the operation started (ISO8601 /// format). /// The current state of the operation. - public ElasticPoolDatabaseActivity(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string databaseName = default(string), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), string requestedElasticPoolName = default(string), string currentElasticPoolName = default(string), string currentServiceObjective = default(string), string requestedServiceObjective = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string)) + public ElasticPoolDatabaseActivity(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string databaseName = default(string), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), string requestedElasticPoolName = default(string), string currentElasticPoolName = default(string), string currentServiceObjective = default(string), string requestedServiceObjective = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string)) : base(location, name, id, type, tags) { DatabaseName = databaseName; @@ -78,99 +86,99 @@ public ElasticPoolDatabaseActivity() { } /// /// Gets the database name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseName")] - public string DatabaseName { get; private set; } + [JsonProperty(PropertyName = "properties.databaseName")] + public string DatabaseName { get; protected set; } /// /// Gets the time the operation finished (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.endTime")] - public System.DateTime? EndTime { get; private set; } + [JsonProperty(PropertyName = "properties.endTime")] + public System.DateTime? EndTime { get; protected set; } /// /// Gets the error code if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.errorCode")] - public int? ErrorCode { get; private set; } + [JsonProperty(PropertyName = "properties.errorCode")] + public int? ErrorCode { get; protected set; } /// /// Gets the error message if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.errorMessage")] - public string ErrorMessage { get; private set; } + [JsonProperty(PropertyName = "properties.errorMessage")] + public string ErrorMessage { get; protected set; } /// /// Gets the error severity if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.errorSeverity")] - public int? ErrorSeverity { get; private set; } + [JsonProperty(PropertyName = "properties.errorSeverity")] + public int? ErrorSeverity { get; protected set; } /// /// Gets the operation name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.operation")] - public string Operation { get; private set; } + [JsonProperty(PropertyName = "properties.operation")] + public string Operation { get; protected set; } /// /// Gets the unique operation ID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.operationId")] - public string OperationId { get; private set; } + [JsonProperty(PropertyName = "properties.operationId")] + public string OperationId { get; protected set; } /// /// Gets the percentage complete if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.percentComplete")] - public int? PercentComplete { get; private set; } + [JsonProperty(PropertyName = "properties.percentComplete")] + public int? PercentComplete { get; protected set; } /// - /// Gets the name for the Elastic Pool the database is moving into if + /// Gets the name for the elastic pool the database is moving into if /// available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedElasticPoolName")] - public string RequestedElasticPoolName { get; private set; } + [JsonProperty(PropertyName = "properties.requestedElasticPoolName")] + public string RequestedElasticPoolName { get; protected set; } /// - /// Gets the name of the current Elastic Pool the database is in if + /// Gets the name of the current elastic pool the database is in if /// available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.currentElasticPoolName")] - public string CurrentElasticPoolName { get; private set; } + [JsonProperty(PropertyName = "properties.currentElasticPoolName")] + public string CurrentElasticPoolName { get; protected set; } /// /// Gets the name of the current service objective if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.currentServiceObjective")] - public string CurrentServiceObjective { get; private set; } + [JsonProperty(PropertyName = "properties.currentServiceObjective")] + public string CurrentServiceObjective { get; protected set; } /// /// Gets the name of the requested service objective if available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requestedServiceObjective")] - public string RequestedServiceObjective { get; private set; } + [JsonProperty(PropertyName = "properties.requestedServiceObjective")] + public string RequestedServiceObjective { get; protected set; } /// - /// Gets the name of the Azure SQL Server the Elastic Pool is in. + /// Gets the name of the server the elastic pool is in. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serverName")] - public string ServerName { get; private set; } + [JsonProperty(PropertyName = "properties.serverName")] + public string ServerName { get; protected set; } /// /// Gets the time the operation started (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; private set; } + [JsonProperty(PropertyName = "properties.startTime")] + public System.DateTime? StartTime { get; protected set; } /// /// Gets the current state of the operation. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.state")] - public string State { get; private set; } + [JsonProperty(PropertyName = "properties.state")] + public string State { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -179,3 +187,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs index 04411e094a75..a9b2bb8cb68c 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; /// /// Defines values for ElasticPoolEditions. @@ -19,3 +22,4 @@ public static class ElasticPoolEditions public const string Premium = "Premium"; } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs index da62dac609d4..b7c4a66f4e72 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; /// /// Defines values for ElasticPoolState. @@ -19,3 +22,4 @@ public static class ElasticPoolState public const string Disabled = "Disabled"; } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs new file mode 100644 index 000000000000..8eedbe7180e3 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using System.Linq; + + /// + /// SQL REST API operation definition. + /// + public partial class Operation + { + /// + /// Initializes a new instance of the Operation class. + /// + public Operation() { } + + /// + /// Initializes a new instance of the Operation class. + /// + /// Operation name: + /// {provider}/{resource}/{operation} + /// Display metadata associated with the + /// operation. + public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) + { + Name = name; + Display = display; + } + + /// + /// Gets or sets operation name: {provider}/{resource}/{operation} + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets display metadata associated with the operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } + + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..c99d3ec23c7b --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs @@ -0,0 +1,64 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Display metadata associated with the operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() { } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + /// Service provider: Microsoft SQL + /// Database. + /// Resource on which the operation is + /// performed: Server, Database, etc. + /// Type of operation: get, read, delete, + /// etc. + public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + } + + /// + /// Gets or sets service provider: Microsoft SQL Database. + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets resource on which the operation is performed: Server, + /// Database, etc. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets type of operation: get, read, delete, etc. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs index 07f9f88b419b..2b0560d98607 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; using System.Linq; /// @@ -41,26 +45,27 @@ public OperationImpact() { } /// /// Gets the name of the impact dimension. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } /// /// Gets the unit in which estimated impact to dimension is measured. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] - public string Unit { get; private set; } + [JsonProperty(PropertyName = "unit")] + public string Unit { get; protected set; } /// /// Gets the absolute impact to dimension. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "changeValueAbsolute")] - public double? ChangeValueAbsolute { get; private set; } + [JsonProperty(PropertyName = "changeValueAbsolute")] + public double? ChangeValueAbsolute { get; protected set; } /// /// Gets the relative impact to dimension (null if not applicable) /// - [Newtonsoft.Json.JsonProperty(PropertyName = "changeValueRelative")] - public double? ChangeValueRelative { get; private set; } + [JsonProperty(PropertyName = "changeValueRelative")] + public double? ChangeValueRelative { get; protected set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs new file mode 100644 index 000000000000..52311fe57078 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Result of the request to list SQL operations. It contains a list of + /// operations and a URL link to get the next set of results. + /// + public partial class OperationListResult + { + /// + /// Initializes a new instance of the OperationListResult class. + /// + public OperationListResult() { } + + /// + /// Initializes a new instance of the OperationListResult class. + /// + /// List of SQL operations supported by the SQL + /// resource provider. + /// URL to get the next set of operation list + /// results if there are any. + public OperationListResult(IList value = default(IList), string nextLink = default(string)) + { + Value = value; + NextLink = nextLink; + } + + /// + /// Gets or sets list of SQL operations supported by the SQL resource + /// provider. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + /// + /// Gets or sets URL to get the next set of operation list results if + /// there are any. + /// + [JsonProperty(PropertyName = "nextLink")] + public string NextLink { get; set; } + + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs index e235f5dd0bac..6874c44162dd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs @@ -1,46 +1,55 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("")] - public System.String NextPageLink { get; private set; } + [JsonProperty("")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs new file mode 100644 index 000000000000..1adb6c3dc4c4 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ReadScale. + /// + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum ReadScale + { + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedDatabaseProperties.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedDatabaseProperties.cs deleted file mode 100644 index aec1a5c62e7a..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedDatabaseProperties.cs +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using System.Linq; - - /// - /// Represents the properties of a recommended Azure SQL Database being - /// upgraded. - /// - public partial class RecommendedDatabaseProperties - { - /// - /// Initializes a new instance of the RecommendedDatabaseProperties - /// class. - /// - public RecommendedDatabaseProperties() { } - - /// - /// Initializes a new instance of the RecommendedDatabaseProperties - /// class. - /// - /// The name of the Azure SQL Database being - /// upgraded. - /// The target edition for the Azure SQL - /// Database being upgraded. Possible values include: 'Basic', - /// 'Standard', 'Premium', 'Free', 'Stretch', 'DataWarehouse' - /// The target Service Level - /// Objective for the Azure SQL Database being upgraded. - public RecommendedDatabaseProperties(string name = default(string), string targetEdition = default(string), string targetServiceLevelObjective = default(string)) - { - Name = name; - TargetEdition = targetEdition; - TargetServiceLevelObjective = targetServiceLevelObjective; - } - - /// - /// Gets or sets the name of the Azure SQL Database being upgraded. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "Name")] - public string Name { get; set; } - - /// - /// Gets or sets the target edition for the Azure SQL Database being - /// upgraded. Possible values include: 'Basic', 'Standard', - /// 'Premium', 'Free', 'Stretch', 'DataWarehouse' - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "TargetEdition")] - public string TargetEdition { get; set; } - - /// - /// Gets or sets the target Service Level Objective for the Azure SQL - /// Database being upgraded. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "TargetServiceLevelObjective")] - public string TargetServiceLevelObjective { get; set; } - - } -} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs index 52d467c9f733..2b08d7481216 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Recommended Elastic Pool. + /// Represents a recommented elastic pool. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class RecommendedElasticPool : Resource { /// @@ -26,15 +34,14 @@ public RecommendedElasticPool() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags - /// The edition of the Azure SQL - /// Recommended Elastic Pool. The ElasticPoolEditions enumeration - /// contains all the valid editions. Possible values include: - /// 'Basic', 'Standard', 'Premium' - /// The DTU for the Azure SQL Recommended Elastic - /// Pool. + /// The edition of the recommended + /// elastic pool. The ElasticPoolEditions enumeration contains all the + /// valid editions. Possible values include: 'Basic', 'Standard', + /// 'Premium' + /// The DTU for the recommended elastic pool. /// The minimum DTU for the /// database. /// The maximum DTU for the @@ -45,13 +52,13 @@ public RecommendedElasticPool() { } /// The observation period start /// (ISO8601 format). /// Gets maximum observed DTU. - /// Gets maximum observed storage - /// in megabytes. - /// The list of Azure SQL Databases in this - /// pool. Expanded property - /// The list of Azure SQL Databases housed in - /// the server. Expanded property - public RecommendedElasticPool(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string databaseEdition = default(string), double? dtu = default(double?), double? databaseDtuMin = default(double?), double? databaseDtuMax = default(double?), double? storageMB = default(double?), System.DateTime? observationPeriodStart = default(System.DateTime?), System.DateTime? observationPeriodEnd = default(System.DateTime?), double? maxObservedDtu = default(double?), double? maxObservedStorageMB = default(double?), System.Collections.Generic.IList databases = default(System.Collections.Generic.IList), System.Collections.Generic.IList metrics = default(System.Collections.Generic.IList)) + /// Gets maximum observed storage in + /// megabytes. + /// The list of databases in this pool. + /// Expanded property + /// The list of databases housed in the server. + /// Expanded property + public RecommendedElasticPool(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string databaseEdition = default(string), double? dtu = default(double?), double? databaseDtuMin = default(double?), double? databaseDtuMax = default(double?), double? storageMB = default(double?), System.DateTime? observationPeriodStart = default(System.DateTime?), System.DateTime? observationPeriodEnd = default(System.DateTime?), double? maxObservedDtu = default(double?), double? maxObservedStorageMB = default(double?), IList databasesProperty = default(IList), IList metrics = default(IList)) : base(location, name, id, type, tags) { DatabaseEdition = databaseEdition; @@ -63,92 +70,90 @@ public RecommendedElasticPool() { } ObservationPeriodEnd = observationPeriodEnd; MaxObservedDtu = maxObservedDtu; MaxObservedStorageMB = maxObservedStorageMB; - Databases = databases; + DatabasesProperty = databasesProperty; Metrics = metrics; } /// - /// Gets the edition of the Azure SQL Recommended Elastic Pool. The + /// Gets the edition of the recommended elastic pool. The /// ElasticPoolEditions enumeration contains all the valid editions. /// Possible values include: 'Basic', 'Standard', 'Premium' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseEdition")] - public string DatabaseEdition { get; private set; } + [JsonProperty(PropertyName = "properties.databaseEdition")] + public string DatabaseEdition { get; protected set; } /// - /// Gets or sets the DTU for the Azure SQL Recommended Elastic Pool. + /// Gets or sets the DTU for the recommended elastic pool. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.dtu")] + [JsonProperty(PropertyName = "properties.dtu")] public double? Dtu { get; set; } /// /// Gets or sets the minimum DTU for the database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseDtuMin")] + [JsonProperty(PropertyName = "properties.databaseDtuMin")] public double? DatabaseDtuMin { get; set; } /// /// Gets or sets the maximum DTU for the database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseDtuMax")] + [JsonProperty(PropertyName = "properties.databaseDtuMax")] public double? DatabaseDtuMax { get; set; } /// /// Gets storage size in megabytes. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageMB")] + [JsonProperty(PropertyName = "properties.storageMB")] public double? StorageMB { get; set; } /// /// Gets the observation period start (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.observationPeriodStart")] - public System.DateTime? ObservationPeriodStart { get; private set; } + [JsonProperty(PropertyName = "properties.observationPeriodStart")] + public System.DateTime? ObservationPeriodStart { get; protected set; } /// /// Gets the observation period start (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.observationPeriodEnd")] - public System.DateTime? ObservationPeriodEnd { get; private set; } + [JsonProperty(PropertyName = "properties.observationPeriodEnd")] + public System.DateTime? ObservationPeriodEnd { get; protected set; } /// /// Gets maximum observed DTU. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.maxObservedDtu")] - public double? MaxObservedDtu { get; private set; } + [JsonProperty(PropertyName = "properties.maxObservedDtu")] + public double? MaxObservedDtu { get; protected set; } /// /// Gets maximum observed storage in megabytes. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.maxObservedStorageMB")] - public double? MaxObservedStorageMB { get; private set; } + [JsonProperty(PropertyName = "properties.maxObservedStorageMB")] + public double? MaxObservedStorageMB { get; protected set; } /// - /// Gets the list of Azure SQL Databases in this pool. Expanded - /// property + /// Gets the list of databases in this pool. Expanded property /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databases")] - public System.Collections.Generic.IList Databases { get; private set; } + [JsonProperty(PropertyName = "properties.databases")] + public IList DatabasesProperty { get; protected set; } /// - /// Gets the list of Azure SQL Databases housed in the server. - /// Expanded property + /// Gets the list of databases housed in the server. Expanded property /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.metrics")] - public System.Collections.Generic.IList Metrics { get; private set; } + [JsonProperty(PropertyName = "properties.metrics")] + public IList Metrics { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() { base.Validate(); - if (this.Databases != null) + if (DatabasesProperty != null) { - foreach (var element in this.Databases) + foreach (var element in DatabasesProperty) { if (element != null) { @@ -159,3 +164,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs index 76c6e8e5ded4..9160cebc65bf 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs @@ -1,17 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; using System.Linq; /// - /// Represents Azure SQL recommended elastic pool metric. + /// Represents recommended elastic pool metric. /// public partial class RecommendedElasticPoolMetric { @@ -27,8 +31,8 @@ public RecommendedElasticPoolMetric() { } /// /// The time of metric (ISO8601 format). /// Gets or sets the DTUs (Database Transaction - /// Units). See - /// https://azure.microsoft.com/en-us/documentation/articles/sql-database-what-is-a-dtu/ + /// Units). See + /// https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/ /// Gets or sets size in gigabytes. public RecommendedElasticPoolMetric(System.DateTime? dateTime = default(System.DateTime?), double? dtu = default(double?), double? sizeGB = default(double?)) { @@ -40,21 +44,22 @@ public RecommendedElasticPoolMetric() { } /// /// Gets or sets the time of metric (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "dateTime")] + [JsonProperty(PropertyName = "dateTime")] public System.DateTime? DateTime { get; set; } /// - /// Gets or sets the DTUs (Database Transaction Units). See - /// https://azure.microsoft.com/en-us/documentation/articles/sql-database-what-is-a-dtu/ + /// Gets or sets the DTUs (Database Transaction Units). See + /// https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/ /// - [Newtonsoft.Json.JsonProperty(PropertyName = "dtu")] + [JsonProperty(PropertyName = "dtu")] public double? Dtu { get; set; } /// /// Gets or sets size in gigabytes. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sizeGB")] + [JsonProperty(PropertyName = "sizeGB")] public double? SizeGB { get; set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs index 5ad13f799a2d..ecc8d77ce70c 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Database recommended index. + /// Represents a database recommended index. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class RecommendedIndex : Resource { /// @@ -26,29 +34,25 @@ public RecommendedIndex() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags - /// The proposed index action. We suggest user to - /// create missing index, drop unused index or to rebuild already - /// existing index to improve its performance. Possible values are - /// 'Create', 'Drop', 'Rebuild'. Possible values include: 'Create', + /// The proposed index action. You can create a + /// missing index, drop an unused index, or rebuild an existing index + /// to improve its performance. Possible values include: 'Create', /// 'Drop', 'Rebuild' - /// The state recommendation is in. Current - /// options are: 'Active', 'Pending', 'Executing', 'Verifying', + /// The current recommendation state. Possible + /// values include: 'Active', 'Pending', 'Executing', 'Verifying', /// 'Pending Revert', 'Reverting', 'Reverted', 'Ignored', 'Expired', - /// 'Blocked', 'Success'. Possible values include: 'Active', - /// 'Pending', 'Executing', 'Verifying', 'Pending Revert', - /// 'Reverting', 'Reverted', 'Ignored', 'Expired', 'Blocked', - /// 'Success' + /// 'Blocked', 'Success' /// The UTC datetime showing when this resource /// was created (ISO8601 format). /// The UTC datetime of when was this /// resource last changed (ISO8601 format). - /// The type of index (CLUSTERED, - /// NONCLUSTERED, COLUMNSTORE, CLUSTERED COLUMNSTORE). Possible - /// values include: 'CLUSTERED', 'NONCLUSTERED', 'COLUMNSTORE', - /// 'CLUSTERED COLUMNSTORE' + /// The type of index (CLUSTERED, NONCLUSTERED, + /// COLUMNSTORE, CLUSTERED COLUMNSTORE). Possible values include: + /// 'CLUSTERED', 'NONCLUSTERED', 'COLUMNSTORE', 'CLUSTERED + /// COLUMNSTORE' /// The schema where table to build index over /// resides /// The table on which to build index. @@ -58,9 +62,9 @@ public RecommendedIndex() { } /// The full build index script /// The estimated impact of doing /// recommended index action. - /// The values reported after index - /// action is complete. - public RecommendedIndex(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), RecommendedIndexActions? action = default(RecommendedIndexActions?), RecommendedIndexStates? state = default(RecommendedIndexStates?), System.DateTime? created = default(System.DateTime?), System.DateTime? lastModified = default(System.DateTime?), RecommendedIndexTypes? indexType = default(RecommendedIndexTypes?), string schema = default(string), string table = default(string), System.Collections.Generic.IList columns = default(System.Collections.Generic.IList), System.Collections.Generic.IList includedColumns = default(System.Collections.Generic.IList), string indexScript = default(string), System.Collections.Generic.IList estimatedImpact = default(System.Collections.Generic.IList), System.Collections.Generic.IList reportedImpact = default(System.Collections.Generic.IList)) + /// The values reported after index action + /// is complete. + public RecommendedIndex(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), RecommendedIndexActions? action = default(RecommendedIndexActions?), RecommendedIndexStates? state = default(RecommendedIndexStates?), System.DateTime? created = default(System.DateTime?), System.DateTime? lastModified = default(System.DateTime?), RecommendedIndexTypes? indexType = default(RecommendedIndexTypes?), string schema = default(string), string table = default(string), IList columns = default(IList), IList includedColumns = default(IList), string indexScript = default(string), IList estimatedImpact = default(IList), IList reportedImpact = default(IList)) : base(location, name, id, type, tags) { Action = action; @@ -78,87 +82,89 @@ public RecommendedIndex() { } } /// - /// Gets the proposed index action. We suggest user to create missing - /// index, drop unused index or to rebuild already existing index to - /// improve its performance. + /// Gets the proposed index action. You can create a missing index, + /// drop an unused index, or rebuild an existing index to improve its + /// performance. Possible values include: 'Create', 'Drop', 'Rebuild' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.action")] - public RecommendedIndexActions? Action { get; private set; } + [JsonProperty(PropertyName = "properties.action")] + public RecommendedIndexActions? Action { get; protected set; } /// - /// Gets the state recommendation is in. + /// Gets the current recommendation state. Possible values include: + /// 'Active', 'Pending', 'Executing', 'Verifying', 'Pending Revert', + /// 'Reverting', 'Reverted', 'Ignored', 'Expired', 'Blocked', 'Success' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.state")] - public RecommendedIndexStates? State { get; private set; } + [JsonProperty(PropertyName = "properties.state")] + public RecommendedIndexStates? State { get; protected set; } /// /// Gets the UTC datetime showing when this resource was created /// (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.created")] - public System.DateTime? Created { get; private set; } + [JsonProperty(PropertyName = "properties.created")] + public System.DateTime? Created { get; protected set; } /// /// Gets the UTC datetime of when was this resource last changed /// (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.lastModified")] - public System.DateTime? LastModified { get; private set; } + [JsonProperty(PropertyName = "properties.lastModified")] + public System.DateTime? LastModified { get; protected set; } /// /// Gets the type of index (CLUSTERED, NONCLUSTERED, COLUMNSTORE, /// CLUSTERED COLUMNSTORE). Possible values include: 'CLUSTERED', /// 'NONCLUSTERED', 'COLUMNSTORE', 'CLUSTERED COLUMNSTORE' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.indexType")] - public RecommendedIndexTypes? IndexType { get; private set; } + [JsonProperty(PropertyName = "properties.indexType")] + public RecommendedIndexTypes? IndexType { get; protected set; } /// /// Gets the schema where table to build index over resides /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.schema")] - public string Schema { get; private set; } + [JsonProperty(PropertyName = "properties.schema")] + public string Schema { get; protected set; } /// /// Gets the table on which to build index. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.table")] - public string Table { get; private set; } + [JsonProperty(PropertyName = "properties.table")] + public string Table { get; protected set; } /// /// Gets columns over which to build index /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.columns")] - public System.Collections.Generic.IList Columns { get; private set; } + [JsonProperty(PropertyName = "properties.columns")] + public IList Columns { get; protected set; } /// /// Gets the list of column names to be included in the index /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.includedColumns")] - public System.Collections.Generic.IList IncludedColumns { get; private set; } + [JsonProperty(PropertyName = "properties.includedColumns")] + public IList IncludedColumns { get; protected set; } /// /// Gets the full build index script /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.indexScript")] - public string IndexScript { get; private set; } + [JsonProperty(PropertyName = "properties.indexScript")] + public string IndexScript { get; protected set; } /// /// Gets the estimated impact of doing recommended index action. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.estimatedImpact")] - public System.Collections.Generic.IList EstimatedImpact { get; private set; } + [JsonProperty(PropertyName = "properties.estimatedImpact")] + public IList EstimatedImpact { get; protected set; } /// /// Gets the values reported after index action is complete. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.reportedImpact")] - public System.Collections.Generic.IList ReportedImpact { get; private set; } + [JsonProperty(PropertyName = "properties.reportedImpact")] + public IList ReportedImpact { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -167,3 +173,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs index ce84c71a1339..a548b1a7038b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs @@ -1,25 +1,33 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for RecommendedIndexActions. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public enum RecommendedIndexActions { - [System.Runtime.Serialization.EnumMember(Value = "Create")] + [EnumMember(Value = "Create")] Create, - [System.Runtime.Serialization.EnumMember(Value = "Drop")] + [EnumMember(Value = "Drop")] Drop, - [System.Runtime.Serialization.EnumMember(Value = "Rebuild")] + [EnumMember(Value = "Rebuild")] Rebuild } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs index 7d0fd9b5649d..238086f39ccd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs @@ -1,41 +1,49 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for RecommendedIndexStates. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public enum RecommendedIndexStates { - [System.Runtime.Serialization.EnumMember(Value = "Active")] + [EnumMember(Value = "Active")] Active, - [System.Runtime.Serialization.EnumMember(Value = "Pending")] + [EnumMember(Value = "Pending")] Pending, - [System.Runtime.Serialization.EnumMember(Value = "Executing")] + [EnumMember(Value = "Executing")] Executing, - [System.Runtime.Serialization.EnumMember(Value = "Verifying")] + [EnumMember(Value = "Verifying")] Verifying, - [System.Runtime.Serialization.EnumMember(Value = "Pending Revert")] + [EnumMember(Value = "Pending Revert")] PendingRevert, - [System.Runtime.Serialization.EnumMember(Value = "Reverting")] + [EnumMember(Value = "Reverting")] Reverting, - [System.Runtime.Serialization.EnumMember(Value = "Reverted")] + [EnumMember(Value = "Reverted")] Reverted, - [System.Runtime.Serialization.EnumMember(Value = "Ignored")] + [EnumMember(Value = "Ignored")] Ignored, - [System.Runtime.Serialization.EnumMember(Value = "Expired")] + [EnumMember(Value = "Expired")] Expired, - [System.Runtime.Serialization.EnumMember(Value = "Blocked")] + [EnumMember(Value = "Blocked")] Blocked, - [System.Runtime.Serialization.EnumMember(Value = "Success")] + [EnumMember(Value = "Success")] Success } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs index 32ba5e41f4e5..737d4e5a1d90 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs @@ -1,27 +1,35 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for RecommendedIndexTypes. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public enum RecommendedIndexTypes { - [System.Runtime.Serialization.EnumMember(Value = "CLUSTERED")] + [EnumMember(Value = "CLUSTERED")] CLUSTERED, - [System.Runtime.Serialization.EnumMember(Value = "NONCLUSTERED")] + [EnumMember(Value = "NONCLUSTERED")] NONCLUSTERED, - [System.Runtime.Serialization.EnumMember(Value = "COLUMNSTORE")] + [EnumMember(Value = "COLUMNSTORE")] COLUMNSTORE, - [System.Runtime.Serialization.EnumMember(Value = "CLUSTERED COLUMNSTORE")] + [EnumMember(Value = "CLUSTERED COLUMNSTORE")] CLUSTEREDCOLUMNSTORE } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs index 7f90a34d7a60..29c9f64b193a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs @@ -1,19 +1,25 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; using System.Linq; /// - /// Represents an Azure SQL Database Replication Link. + /// Represents a database replication link. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class ReplicationLink : SqlSubResource { /// @@ -25,30 +31,40 @@ public ReplicationLink() { } /// Initializes a new instance of the ReplicationLink class. /// /// Resource name - /// Resource Id - /// The name of the Azure SQL Server - /// hosting the partner Azure SQL Database. - /// The name of the partner Azure SQL - /// Database. + /// The resource ID. + /// Location of the server that contains this + /// firewall rule. + /// Type of resource this is. + /// Legacy value indicating whether + /// termination is allowed. Currently always returns true. + /// Replication mode of this replication + /// link. + /// The name of the server hosting the + /// partner database. + /// The name of the partner + /// database. /// The Azure Region of the partner - /// Azure SQL Database. - /// The role of the Azure SQL Database in the - /// replication link. Possible values include: 'Primary', - /// 'Secondary', 'NonReadableSecondary', 'Source', 'Copy' - /// The role of the partner Azure SQL - /// Database in the replication link. Possible values include: - /// 'Primary', 'Secondary', 'NonReadableSecondary', 'Source', - /// 'Copy' - /// The start time for the replication link - /// (ISO8601 format). + /// database. + /// The role of the database in the replication + /// link. Possible values include: 'Primary', 'Secondary', + /// 'NonReadableSecondary', 'Source', 'Copy' + /// The role of the partner database in the + /// replication link. Possible values include: 'Primary', 'Secondary', + /// 'NonReadableSecondary', 'Source', 'Copy' + /// The start time for the replication + /// link. /// The percentage of seeding complete /// for the replication link. /// The replication state for the /// replication link. Possible values include: 'PENDING', 'SEEDING', /// 'CATCH_UP', 'SUSPENDED' - public ReplicationLink(string name = default(string), string id = default(string), string partnerServer = default(string), string partnerDatabase = default(string), string partnerLocation = default(string), ReplicationRole? role = default(ReplicationRole?), ReplicationRole? partnerRole = default(ReplicationRole?), System.DateTime? startTime = default(System.DateTime?), string percentComplete = default(string), string replicationState = default(string)) + public ReplicationLink(string name = default(string), string id = default(string), string location = default(string), string type = default(string), bool? isTerminationAllowed = default(bool?), string replicationMode = default(string), string partnerServer = default(string), string partnerDatabase = default(string), string partnerLocation = default(string), ReplicationRole? role = default(ReplicationRole?), ReplicationRole? partnerRole = default(ReplicationRole?), System.DateTime? startTime = default(System.DateTime?), int? percentComplete = default(int?), string replicationState = default(string)) : base(name, id) { + Location = location; + Type = type; + IsTerminationAllowed = isTerminationAllowed; + ReplicationMode = replicationMode; PartnerServer = partnerServer; PartnerDatabase = partnerDatabase; PartnerLocation = partnerLocation; @@ -60,58 +76,83 @@ public ReplicationLink() { } } /// - /// Gets the name of the Azure SQL Server hosting the partner Azure - /// SQL Database. + /// Gets location of the server that contains this firewall rule. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.partnerServer")] - public string PartnerServer { get; private set; } + [JsonProperty(PropertyName = "location")] + public string Location { get; protected set; } /// - /// Gets the name of the partner Azure SQL Database. + /// Gets type of resource this is. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.partnerDatabase")] - public string PartnerDatabase { get; private set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } /// - /// Gets the Azure Region of the partner Azure SQL Database. + /// Gets legacy value indicating whether termination is allowed. + /// Currently always returns true. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.partnerLocation")] - public string PartnerLocation { get; private set; } + [JsonProperty(PropertyName = "properties.isTerminationAllowed")] + public bool? IsTerminationAllowed { get; protected set; } /// - /// Gets the role of the Azure SQL Database in the replication link. - /// Possible values include: 'Primary', 'Secondary', - /// 'NonReadableSecondary', 'Source', 'Copy' + /// Gets replication mode of this replication link. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.role")] - public ReplicationRole? Role { get; private set; } + [JsonProperty(PropertyName = "properties.replicationMode")] + public string ReplicationMode { get; protected set; } /// - /// Gets the role of the partner Azure SQL Database in the replication - /// link. Possible values include: 'Primary', 'Secondary', + /// Gets the name of the server hosting the partner database. + /// + [JsonProperty(PropertyName = "properties.partnerServer")] + public string PartnerServer { get; protected set; } + + /// + /// Gets the name of the partner database. + /// + [JsonProperty(PropertyName = "properties.partnerDatabase")] + public string PartnerDatabase { get; protected set; } + + /// + /// Gets the Azure Region of the partner database. + /// + [JsonProperty(PropertyName = "properties.partnerLocation")] + public string PartnerLocation { get; protected set; } + + /// + /// Gets the role of the database in the replication link. Possible + /// values include: 'Primary', 'Secondary', 'NonReadableSecondary', + /// 'Source', 'Copy' + /// + [JsonProperty(PropertyName = "properties.role")] + public ReplicationRole? Role { get; protected set; } + + /// + /// Gets the role of the partner database in the replication link. + /// Possible values include: 'Primary', 'Secondary', /// 'NonReadableSecondary', 'Source', 'Copy' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.partnerRole")] - public ReplicationRole? PartnerRole { get; private set; } + [JsonProperty(PropertyName = "properties.partnerRole")] + public ReplicationRole? PartnerRole { get; protected set; } /// - /// Gets the start time for the replication link (ISO8601 format). + /// Gets the start time for the replication link. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; private set; } + [JsonProperty(PropertyName = "properties.startTime")] + public System.DateTime? StartTime { get; protected set; } /// /// Gets the percentage of seeding complete for the replication link. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.percentComplete")] - public string PercentComplete { get; private set; } + [JsonProperty(PropertyName = "properties.percentComplete")] + public int? PercentComplete { get; protected set; } /// /// Gets the replication state for the replication link. Possible /// values include: 'PENDING', 'SEEDING', 'CATCH_UP', 'SUSPENDED' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.replicationState")] - public string ReplicationState { get; private set; } + [JsonProperty(PropertyName = "properties.replicationState")] + public string ReplicationState { get; protected set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs index 6ac35f7a57ce..fd99c0cfc0ca 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs @@ -1,29 +1,37 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for ReplicationRole. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public enum ReplicationRole { - [System.Runtime.Serialization.EnumMember(Value = "Primary")] + [EnumMember(Value = "Primary")] Primary, - [System.Runtime.Serialization.EnumMember(Value = "Secondary")] + [EnumMember(Value = "Secondary")] Secondary, - [System.Runtime.Serialization.EnumMember(Value = "NonReadableSecondary")] + [EnumMember(Value = "NonReadableSecondary")] NonReadableSecondary, - [System.Runtime.Serialization.EnumMember(Value = "Source")] + [EnumMember(Value = "Source")] Source, - [System.Runtime.Serialization.EnumMember(Value = "Copy")] + [EnumMember(Value = "Copy")] Copy } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs index e0b26bc96b7c..9fa5d1db98f6 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; /// /// Defines values for ReplicationState. @@ -20,3 +23,4 @@ public static class ReplicationState public const string SUSPENDED = "SUSPENDED"; } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs index 998834ab4e8d..7e42b810d834 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Resource properties /// - public partial class Resource : Microsoft.Rest.Azure.IResource + public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. @@ -25,10 +33,10 @@ public Resource() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags - public Resource(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public Resource(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Name = name; Id = id; @@ -40,45 +48,46 @@ public Resource() { } /// /// Gets resource name /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } /// - /// Gets resource Id + /// Gets resource ID /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; private set; } + [JsonProperty(PropertyName = "id")] + public string Id { get; protected set; } /// /// Gets resource type /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } /// /// Gets or sets resource location /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// /// Gets or sets resource tags /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Location == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); } } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs index 48ff1ad145f1..653693a2cccf 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Database restore point. + /// Represents a database restore point. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class RestorePoint : Resource { /// @@ -26,11 +34,11 @@ public RestorePoint() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags - /// The restore point type of the Azure - /// SQL Database restore point. Possible values include: 'DISCRETE', + /// The restore point type of the + /// database restore point. Possible values include: 'DISCRETE', /// 'CONTINUOUS' /// Restore point creation time /// (ISO8601 format). Populated when restorePointType = CONTINUOUS. @@ -38,7 +46,7 @@ public RestorePoint() { } /// Earliest restore time (ISO8601 /// format). Populated when restorePointType = DISCRETE. Null /// otherwise. - public RestorePoint(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), RestorePointTypes? restorePointType = default(RestorePointTypes?), System.DateTime? restorePointCreationDate = default(System.DateTime?), System.DateTime? earliestRestoreDate = default(System.DateTime?)) + public RestorePoint(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), RestorePointTypes? restorePointType = default(RestorePointTypes?), System.DateTime? restorePointCreationDate = default(System.DateTime?), System.DateTime? earliestRestoreDate = default(System.DateTime?)) : base(location, name, id, type, tags) { RestorePointType = restorePointType; @@ -47,30 +55,30 @@ public RestorePoint() { } } /// - /// Gets the restore point type of the Azure SQL Database restore - /// point. Possible values include: 'DISCRETE', 'CONTINUOUS' + /// Gets the restore point type of the database restore point. Possible + /// values include: 'DISCRETE', 'CONTINUOUS' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.restorePointType")] - public RestorePointTypes? RestorePointType { get; private set; } + [JsonProperty(PropertyName = "properties.restorePointType")] + public RestorePointTypes? RestorePointType { get; protected set; } /// /// Gets restore point creation time (ISO8601 format). Populated when /// restorePointType = CONTINUOUS. Null otherwise. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.restorePointCreationDate")] - public System.DateTime? RestorePointCreationDate { get; private set; } + [JsonProperty(PropertyName = "properties.restorePointCreationDate")] + public System.DateTime? RestorePointCreationDate { get; protected set; } /// /// Gets earliest restore time (ISO8601 format). Populated when /// restorePointType = DISCRETE. Null otherwise. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.earliestRestoreDate")] - public System.DateTime? EarliestRestoreDate { get; private set; } + [JsonProperty(PropertyName = "properties.earliestRestoreDate")] + public System.DateTime? EarliestRestoreDate { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -79,3 +87,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs index d3857e41037e..e417275b1001 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs @@ -1,23 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for RestorePointTypes. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public enum RestorePointTypes { - [System.Runtime.Serialization.EnumMember(Value = "DISCRETE")] + [EnumMember(Value = "DISCRETE")] DISCRETE, - [System.Runtime.Serialization.EnumMember(Value = "CONTINUOUS")] + [EnumMember(Value = "CONTINUOUS")] CONTINUOUS } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs new file mode 100644 index 000000000000..ad5ad7b2ace7 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + + /// + /// Defines values for SampleName. + /// + public static class SampleName + { + public const string AdventureWorksLT = "AdventureWorksLT"; + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs index 2b2213223e45..51ba2a2dcded 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Database schema. + /// Represents a database schema. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class Schema : Resource { /// @@ -26,11 +34,11 @@ public Schema() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags /// The tables from this database. - public Schema(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList tables = default(System.Collections.Generic.IList
)) + public Schema(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList
tables = default(IList
)) : base(location, name, id, type, tags) { Tables = tables; @@ -39,21 +47,21 @@ public Schema() { } /// /// Gets the tables from this database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.tables")] - public System.Collections.Generic.IList
Tables { get; private set; } + [JsonProperty(PropertyName = "properties.tables")] + public IList
Tables { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() { base.Validate(); - if (this.Tables != null) + if (Tables != null) { - foreach (var element in this.Tables) + foreach (var element in Tables) { if (element != null) { @@ -64,3 +72,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs index 9c4e25505b7a..94ce0b3719de 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Server. + /// Represents a server. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class Server : Resource { /// @@ -26,38 +34,62 @@ public Server() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags + /// Kind of sql server. This is metadata used for + /// the Azure portal experience. /// The fully qualified domain /// name of the server. /// The version of the server. Possible values /// include: '2.0', '12.0' /// Administrator username for the - /// server. Can only be specified when the server is being created - /// (and is required for creation). + /// server. Can only be specified when the server is being created (and + /// is required for creation). /// The administrator login /// password (required for server creation). - public Server(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string fullyQualifiedDomainName = default(string), string version = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string)) + /// The ID of the Active Azure + /// Directory object with admin permissions on this server. Legacy + /// parameter, always null. To check for Active Directory admin, query + /// .../servers/{serverName}/administrators. + /// The display name of the + /// Azure Active Directory object with admin permissions on this + /// server. Legacy parameter, always null. To check for Active + /// Directory admin, query + /// .../servers/{serverName}/administrators + /// The state of the server. Possible values + /// include: 'Ready', 'Disabled' + public Server(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string fullyQualifiedDomainName = default(string), string version = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), System.Guid? externalAdministratorSid = default(System.Guid?), string externalAdministratorLogin = default(string), ServerState? state = default(ServerState?)) : base(location, name, id, type, tags) { + Kind = kind; FullyQualifiedDomainName = fullyQualifiedDomainName; Version = version; AdministratorLogin = administratorLogin; AdministratorLoginPassword = administratorLoginPassword; + ExternalAdministratorSid = externalAdministratorSid; + ExternalAdministratorLogin = externalAdministratorLogin; + State = state; } + /// + /// Gets kind of sql server. This is metadata used for the Azure + /// portal experience. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; protected set; } + /// /// Gets the fully qualified domain name of the server. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.fullyQualifiedDomainName")] - public string FullyQualifiedDomainName { get; private set; } + [JsonProperty(PropertyName = "properties.fullyQualifiedDomainName")] + public string FullyQualifiedDomainName { get; protected set; } /// /// Gets or sets the version of the server. Possible values include: /// '2.0', '12.0' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.version")] + [JsonProperty(PropertyName = "properties.version")] public string Version { get; set; } /// @@ -65,20 +97,45 @@ public Server() { } /// specified when the server is being created (and is required for /// creation). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.administratorLogin")] + [JsonProperty(PropertyName = "properties.administratorLogin")] public string AdministratorLogin { get; set; } /// /// Gets or sets the administrator login password (required for server /// creation). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.administratorLoginPassword")] + [JsonProperty(PropertyName = "properties.administratorLoginPassword")] public string AdministratorLoginPassword { get; set; } + /// + /// Gets the ID of the Active Azure Directory object with admin + /// permissions on this server. Legacy parameter, always null. To check + /// for Active Directory admin, query + /// .../servers/{serverName}/administrators. + /// + [JsonProperty(PropertyName = "properties.externalAdministratorSid")] + public System.Guid? ExternalAdministratorSid { get; protected set; } + + /// + /// Gets the display name of the Azure Active Directory object with + /// admin permissions on this server. Legacy parameter, always null. To + /// check for Active Directory admin, query + /// .../servers/{serverName}/administrators + /// + [JsonProperty(PropertyName = "properties.externalAdministratorLogin")] + public string ExternalAdministratorLogin { get; protected set; } + + /// + /// Gets the state of the server. Possible values include: 'Ready', + /// 'Disabled' + /// + [JsonProperty(PropertyName = "properties.state")] + public ServerState? State { get; protected set; } + /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -87,3 +144,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs index b3d7603a1205..0d1dafa9a75d 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs @@ -1,19 +1,25 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; using System.Linq; /// - /// Represents an Azure SQL Server Firewall Rule. + /// Represents a server firewall rule. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class ServerFirewallRule : SqlSubResource { /// @@ -24,21 +30,26 @@ public ServerFirewallRule() { } /// /// Initializes a new instance of the ServerFirewallRule class. /// + /// The start IP address of the firewall + /// rule. Must be IPv4 format. Use value '0.0.0.0' to represent all + /// Azure-internal IP addresses. + /// The end IP address of the firewall rule. + /// Must be IPv4 format. Must be greater than or equal to + /// startIpAddress. Use value '0.0.0.0' to represent all Azure-internal + /// IP addresses. /// Resource name - /// Resource Id + /// The resource ID. /// Kind of server that contains this firewall /// rule. /// Location of the server that contains this /// firewall rule. - /// The start IP address of the Azure SQL - /// Database Server Firewall Rule. Must be IPv4 format. - /// The end IP address of the Azure SQL - /// Database Server Firewall Rule. Must be IPv4 format. - public ServerFirewallRule(string name = default(string), string id = default(string), string kind = default(string), string location = default(string), string startIpAddress = default(string), string endIpAddress = default(string)) + /// Type of resource this is. + public ServerFirewallRule(string startIpAddress, string endIpAddress, string name = default(string), string id = default(string), string kind = default(string), string location = default(string), string type = default(string)) : base(name, id) { Kind = kind; Location = location; + Type = type; StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; } @@ -46,28 +57,54 @@ public ServerFirewallRule() { } /// /// Gets kind of server that contains this firewall rule. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "kind")] - public string Kind { get; private set; } + [JsonProperty(PropertyName = "kind")] + public string Kind { get; protected set; } /// /// Gets location of the server that contains this firewall rule. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] - public string Location { get; private set; } + [JsonProperty(PropertyName = "location")] + public string Location { get; protected set; } /// - /// Gets or sets the start IP address of the Azure SQL Database Server - /// Firewall Rule. Must be IPv4 format. + /// Gets type of resource this is. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.startIpAddress")] + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } + + /// + /// Gets or sets the start IP address of the firewall rule. Must be + /// IPv4 format. Use value '0.0.0.0' to represent all Azure-internal IP + /// addresses. + /// + [JsonProperty(PropertyName = "properties.startIpAddress")] public string StartIpAddress { get; set; } /// - /// Gets or sets the end IP address of the Azure SQL Database Server - /// Firewall Rule. Must be IPv4 format. + /// Gets or sets the end IP address of the firewall rule. Must be IPv4 + /// format. Must be greater than or equal to startIpAddress. Use value + /// '0.0.0.0' to represent all Azure-internal IP addresses. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.endIpAddress")] + [JsonProperty(PropertyName = "properties.endIpAddress")] public string EndIpAddress { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StartIpAddress == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StartIpAddress"); + } + if (EndIpAddress == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "EndIpAddress"); + } + } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs index 1a19ba37ede5..514b443b2e14 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs @@ -1,17 +1,21 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; using System.Linq; /// - /// Represents Azure SQL Server metrics. + /// Represents server metrics. /// public partial class ServerMetric { @@ -23,6 +27,7 @@ public ServerMetric() { } /// /// Initializes a new instance of the ServerMetric class. /// + /// Name of the server usage metric. /// The name of the resource. /// The metric display name. /// The current value of the metric. @@ -30,8 +35,9 @@ public ServerMetric() { } /// The units of the metric. /// The next reset time for the metric /// (ISO8601 format). - public ServerMetric(string resourceName = default(string), string displayName = default(string), double? currentValue = default(double?), double? limit = default(double?), string unit = default(string), System.DateTime? nextResetTime = default(System.DateTime?)) + public ServerMetric(string name = default(string), string resourceName = default(string), string displayName = default(string), double? currentValue = default(double?), double? limit = default(double?), string unit = default(string), System.DateTime? nextResetTime = default(System.DateTime?)) { + Name = name; ResourceName = resourceName; DisplayName = displayName; CurrentValue = currentValue; @@ -40,41 +46,48 @@ public ServerMetric() { } NextResetTime = nextResetTime; } + /// + /// Gets name of the server usage metric. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } + /// /// Gets the name of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "resourceName")] - public string ResourceName { get; private set; } + [JsonProperty(PropertyName = "resourceName")] + public string ResourceName { get; protected set; } /// /// Gets the metric display name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "displayName")] - public string DisplayName { get; private set; } + [JsonProperty(PropertyName = "displayName")] + public string DisplayName { get; protected set; } /// /// Gets the current value of the metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "currentValue")] - public double? CurrentValue { get; private set; } + [JsonProperty(PropertyName = "currentValue")] + public double? CurrentValue { get; protected set; } /// /// Gets the current limit of the metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "limit")] - public double? Limit { get; private set; } + [JsonProperty(PropertyName = "limit")] + public double? Limit { get; protected set; } /// /// Gets the units of the metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] - public string Unit { get; private set; } + [JsonProperty(PropertyName = "unit")] + public string Unit { get; protected set; } /// /// Gets the next reset time for the metric (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nextResetTime")] - public System.DateTime? NextResetTime { get; private set; } + [JsonProperty(PropertyName = "nextResetTime")] + public System.DateTime? NextResetTime { get; protected set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs new file mode 100644 index 000000000000..c2669c27745e --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ServerState. + /// + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum ServerState + { + [EnumMember(Value = "Ready")] + Ready, + [EnumMember(Value = "Disabled")] + Disabled + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerUpgradeGetResult.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerUpgradeGetResult.cs deleted file mode 100644 index 9a53b91fd507..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerUpgradeGetResult.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using System.Linq; - - /// - /// Represents the response to a Get request for Upgrade status of an - /// Azure SQL Server. - /// - public partial class ServerUpgradeGetResult - { - /// - /// Initializes a new instance of the ServerUpgradeGetResult class. - /// - public ServerUpgradeGetResult() { } - - /// - /// Initializes a new instance of the ServerUpgradeGetResult class. - /// - /// The status of the Azure SQL Server - /// Upgrade. - /// The schedule time of the - /// Azure SQL Server Upgrade (ISO8601 format). - public ServerUpgradeGetResult(string status = default(string), System.DateTime? scheduleUpgradeAfterTime = default(System.DateTime?)) - { - Status = status; - ScheduleUpgradeAfterTime = scheduleUpgradeAfterTime; - } - - /// - /// Gets the status of the Azure SQL Server Upgrade. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "status")] - public string Status { get; private set; } - - /// - /// Gets the schedule time of the Azure SQL Server Upgrade (ISO8601 - /// format). - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "scheduleUpgradeAfterTime")] - public System.DateTime? ScheduleUpgradeAfterTime { get; private set; } - - } -} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerUpgradeStartParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerUpgradeStartParameters.cs deleted file mode 100644 index 4929bf2d3050..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerUpgradeStartParameters.cs +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using System.Linq; - - /// - /// Start Azure SQL Server Upgrade parameters. - /// - [Microsoft.Rest.Serialization.JsonTransformation] - public partial class ServerUpgradeStartParameters - { - /// - /// Initializes a new instance of the ServerUpgradeStartParameters - /// class. - /// - public ServerUpgradeStartParameters() { } - - /// - /// Initializes a new instance of the ServerUpgradeStartParameters - /// class. - /// - /// The earliest time to - /// upgrade the Azure SQL Server (ISO8601 format). - /// The collection of recommended - /// database properties to upgrade the Azure SQL Server. - /// The collection of recommended - /// elastic pool properties to upgrade the Azure SQL Server. - public ServerUpgradeStartParameters(System.DateTime? scheduleUpgradeAfterUtcDateTime = default(System.DateTime?), System.Collections.Generic.IList databaseCollection = default(System.Collections.Generic.IList), System.Collections.Generic.IList elasticPoolCollection = default(System.Collections.Generic.IList)) - { - ScheduleUpgradeAfterUtcDateTime = scheduleUpgradeAfterUtcDateTime; - DatabaseCollection = databaseCollection; - ElasticPoolCollection = elasticPoolCollection; - } - /// - /// Static constructor for ServerUpgradeStartParameters class. - /// - static ServerUpgradeStartParameters() - { - Version = "12.0"; - } - - /// - /// Gets or sets the earliest time to upgrade the Azure SQL Server - /// (ISO8601 format). - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serverUpgradeProperties.ScheduleUpgradeAfterUtcDateTime")] - public System.DateTime? ScheduleUpgradeAfterUtcDateTime { get; set; } - - /// - /// Gets or sets the collection of recommended database properties to - /// upgrade the Azure SQL Server. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serverUpgradeProperties.DatabaseCollection")] - public System.Collections.Generic.IList DatabaseCollection { get; set; } - - /// - /// Gets or sets the collection of recommended elastic pool properties - /// to upgrade the Azure SQL Server. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serverUpgradeProperties.ElasticPoolCollection")] - public System.Collections.Generic.IList ElasticPoolCollection { get; set; } - - /// - /// The version for the Azure SQL Server being upgraded. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serverUpgradeProperties.Version")] - public static string Version { get; private set; } - - } -} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs index 7d739e6d3c94..820962c3339e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; /// /// Defines values for ServerVersion. @@ -18,3 +21,4 @@ public static class ServerVersion public const string OneTwoFullStopZero = "12.0"; } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs index 14b6349b80b5..b2a9f4ab297f 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs @@ -1,19 +1,25 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; using System.Linq; /// - /// Represents an Azure SQL Database Service Objective. + /// Represents a database service objective. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class ServiceObjective : SqlSubResource { /// @@ -25,11 +31,11 @@ public ServiceObjective() { } /// Initializes a new instance of the ServiceObjective class. /// /// Resource name - /// Resource Id + /// The resource ID. /// The name for the service /// objective. - /// Gets whether the service level objective - /// is the default service objective. + /// Gets whether the service level objective is + /// the default service objective. /// Gets whether the service level objective is /// a system service objective. /// The description for the service level @@ -49,34 +55,35 @@ public ServiceObjective() { } /// /// Gets the name for the service objective. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceObjectiveName")] - public string ServiceObjectiveName { get; private set; } + [JsonProperty(PropertyName = "properties.serviceObjectiveName")] + public string ServiceObjectiveName { get; protected set; } /// /// Gets whether the service level objective is the default service /// objective. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.isDefault")] - public bool? IsDefault { get; private set; } + [JsonProperty(PropertyName = "properties.isDefault")] + public bool? IsDefault { get; protected set; } /// /// Gets whether the service level objective is a system service /// objective. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.isSystem")] - public bool? IsSystem { get; private set; } + [JsonProperty(PropertyName = "properties.isSystem")] + public bool? IsSystem { get; protected set; } /// /// Gets the description for the service level objective. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.description")] - public string Description { get; private set; } + [JsonProperty(PropertyName = "properties.description")] + public string Description { get; protected set; } /// /// Gets whether the service level objective is enabled. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.enabled")] - public bool? Enabled { get; private set; } + [JsonProperty(PropertyName = "properties.enabled")] + public bool? Enabled { get; protected set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs index bd61e65060bd..2d48cb3b9fb5 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; /// /// Defines values for ServiceObjectiveName. @@ -26,5 +29,8 @@ public static class ServiceObjectiveName public const string P6 = "P6"; public const string P11 = "P11"; public const string P15 = "P15"; + public const string System = "System"; + public const string ElasticPool = "ElasticPool"; } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs index 35c7443c3090..959cf5b3ee56 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Represents a Service Tier Advisor. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class ServiceTierAdvisor : SqlSubResource { /// @@ -25,7 +33,7 @@ public ServiceTierAdvisor() { } /// Initializes a new instance of the ServiceTierAdvisor class. /// /// Resource name - /// Resource Id + /// The resource ID. /// The observation period start /// (ISO8601 format). /// The observation period start @@ -38,8 +46,8 @@ public ServiceTierAdvisor() { } /// advisor. /// Gets or sets maxDtu for service tier /// advisor. - /// Gets or sets maxSizeInGB for service - /// tier advisor. + /// Gets or sets maxSizeInGB for service tier + /// advisor. /// Gets or sets /// serviceLevelObjectiveUsageMetrics for the service tier /// advisor. @@ -47,37 +55,37 @@ public ServiceTierAdvisor() { } /// currentServiceLevelObjective for service tier advisor. /// Gets or sets /// currentServiceLevelObjectiveId for service tier advisor. - /// Gets - /// or sets usageBasedRecommendationServiceLevelObjective for service - /// tier advisor. + /// Gets or + /// sets usageBasedRecommendationServiceLevelObjective for service tier + /// advisor. /// Gets - /// or sets usageBasedRecommendationServiceLevelObjectiveId for - /// service tier advisor. + /// or sets usageBasedRecommendationServiceLevelObjectiveId for service + /// tier advisor. /// Gets - /// or sets databaseSizeBasedRecommendationServiceLevelObjective for + /// name="databaseSizeBasedRecommendationServiceLevelObjective">Gets or + /// sets databaseSizeBasedRecommendationServiceLevelObjective for /// service tier advisor. /// Gets - /// or sets databaseSizeBasedRecommendationServiceLevelObjectiveId - /// for service tier advisor. + /// or sets databaseSizeBasedRecommendationServiceLevelObjectiveId for + /// service tier advisor. /// Gets - /// or sets disasterPlanBasedRecommendationServiceLevelObjective for + /// name="disasterPlanBasedRecommendationServiceLevelObjective">Gets or + /// sets disasterPlanBasedRecommendationServiceLevelObjective for /// service tier advisor. /// Gets - /// or sets disasterPlanBasedRecommendationServiceLevelObjectiveId - /// for service tier advisor. + /// or sets disasterPlanBasedRecommendationServiceLevelObjectiveId for + /// service tier advisor. /// Gets or /// sets overallRecommendationServiceLevelObjective for service tier /// advisor. /// Gets or - /// sets overallRecommendationServiceLevelObjectiveId for service - /// tier advisor. + /// sets overallRecommendationServiceLevelObjectiveId for service tier + /// advisor. /// Gets or sets confidence for service tier /// advisor. - public ServiceTierAdvisor(string name = default(string), string id = default(string), System.DateTime? observationPeriodStart = default(System.DateTime?), System.DateTime? observationPeriodEnd = default(System.DateTime?), double? activeTimeRatio = default(double?), double? minDtu = default(double?), double? avgDtu = default(double?), double? maxDtu = default(double?), double? maxSizeInGB = default(double?), System.Collections.Generic.IList serviceLevelObjectiveUsageMetrics = default(System.Collections.Generic.IList), System.Guid? currentServiceLevelObjective = default(System.Guid?), System.Guid? currentServiceLevelObjectiveId = default(System.Guid?), string usageBasedRecommendationServiceLevelObjective = default(string), System.Guid? usageBasedRecommendationServiceLevelObjectiveId = default(System.Guid?), string databaseSizeBasedRecommendationServiceLevelObjective = default(string), System.Guid? databaseSizeBasedRecommendationServiceLevelObjectiveId = default(System.Guid?), string disasterPlanBasedRecommendationServiceLevelObjective = default(string), System.Guid? disasterPlanBasedRecommendationServiceLevelObjectiveId = default(System.Guid?), string overallRecommendationServiceLevelObjective = default(string), System.Guid? overallRecommendationServiceLevelObjectiveId = default(System.Guid?), double? confidence = default(double?)) + public ServiceTierAdvisor(string name = default(string), string id = default(string), System.DateTime? observationPeriodStart = default(System.DateTime?), System.DateTime? observationPeriodEnd = default(System.DateTime?), double? activeTimeRatio = default(double?), double? minDtu = default(double?), double? avgDtu = default(double?), double? maxDtu = default(double?), double? maxSizeInGB = default(double?), IList serviceLevelObjectiveUsageMetrics = default(IList), string currentServiceLevelObjective = default(string), System.Guid? currentServiceLevelObjectiveId = default(System.Guid?), string usageBasedRecommendationServiceLevelObjective = default(string), System.Guid? usageBasedRecommendationServiceLevelObjectiveId = default(System.Guid?), string databaseSizeBasedRecommendationServiceLevelObjective = default(string), System.Guid? databaseSizeBasedRecommendationServiceLevelObjectiveId = default(System.Guid?), string disasterPlanBasedRecommendationServiceLevelObjective = default(string), System.Guid? disasterPlanBasedRecommendationServiceLevelObjectiveId = default(System.Guid?), string overallRecommendationServiceLevelObjective = default(string), System.Guid? overallRecommendationServiceLevelObjectiveId = default(System.Guid?), double? confidence = default(double?)) : base(name, id) { ObservationPeriodStart = observationPeriodStart; @@ -104,128 +112,127 @@ public ServiceTierAdvisor() { } /// /// Gets the observation period start (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.observationPeriodStart")] - public System.DateTime? ObservationPeriodStart { get; private set; } + [JsonProperty(PropertyName = "properties.observationPeriodStart")] + public System.DateTime? ObservationPeriodStart { get; protected set; } /// /// Gets the observation period start (ISO8601 format). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.observationPeriodEnd")] - public System.DateTime? ObservationPeriodEnd { get; private set; } + [JsonProperty(PropertyName = "properties.observationPeriodEnd")] + public System.DateTime? ObservationPeriodEnd { get; protected set; } /// /// Gets the activeTimeRatio for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.activeTimeRatio")] - public double? ActiveTimeRatio { get; private set; } + [JsonProperty(PropertyName = "properties.activeTimeRatio")] + public double? ActiveTimeRatio { get; protected set; } /// /// Gets or sets minDtu for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.minDtu")] - public double? MinDtu { get; private set; } + [JsonProperty(PropertyName = "properties.minDtu")] + public double? MinDtu { get; protected set; } /// /// Gets or sets avgDtu for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.avgDtu")] - public double? AvgDtu { get; private set; } + [JsonProperty(PropertyName = "properties.avgDtu")] + public double? AvgDtu { get; protected set; } /// /// Gets or sets maxDtu for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.maxDtu")] - public double? MaxDtu { get; private set; } + [JsonProperty(PropertyName = "properties.maxDtu")] + public double? MaxDtu { get; protected set; } /// /// Gets or sets maxSizeInGB for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.maxSizeInGB")] - public double? MaxSizeInGB { get; private set; } + [JsonProperty(PropertyName = "properties.maxSizeInGB")] + public double? MaxSizeInGB { get; protected set; } /// - /// Gets or sets serviceLevelObjectiveUsageMetrics for the service - /// tier advisor. + /// Gets or sets serviceLevelObjectiveUsageMetrics for the service tier + /// advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.serviceLevelObjectiveUsageMetrics")] - public System.Collections.Generic.IList ServiceLevelObjectiveUsageMetrics { get; private set; } + [JsonProperty(PropertyName = "properties.serviceLevelObjectiveUsageMetrics")] + public IList ServiceLevelObjectiveUsageMetrics { get; protected set; } /// /// Gets or sets currentServiceLevelObjective for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.currentServiceLevelObjective")] - public System.Guid? CurrentServiceLevelObjective { get; private set; } + [JsonProperty(PropertyName = "properties.currentServiceLevelObjective")] + public string CurrentServiceLevelObjective { get; protected set; } /// /// Gets or sets currentServiceLevelObjectiveId for service tier /// advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.currentServiceLevelObjectiveId")] - public System.Guid? CurrentServiceLevelObjectiveId { get; private set; } + [JsonProperty(PropertyName = "properties.currentServiceLevelObjectiveId")] + public System.Guid? CurrentServiceLevelObjectiveId { get; protected set; } /// /// Gets or sets usageBasedRecommendationServiceLevelObjective for /// service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.usageBasedRecommendationServiceLevelObjective")] - public string UsageBasedRecommendationServiceLevelObjective { get; private set; } + [JsonProperty(PropertyName = "properties.usageBasedRecommendationServiceLevelObjective")] + public string UsageBasedRecommendationServiceLevelObjective { get; protected set; } /// /// Gets or sets usageBasedRecommendationServiceLevelObjectiveId for /// service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.usageBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? UsageBasedRecommendationServiceLevelObjectiveId { get; private set; } + [JsonProperty(PropertyName = "properties.usageBasedRecommendationServiceLevelObjectiveId")] + public System.Guid? UsageBasedRecommendationServiceLevelObjectiveId { get; protected set; } /// /// Gets or sets databaseSizeBasedRecommendationServiceLevelObjective /// for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseSizeBasedRecommendationServiceLevelObjective")] - public string DatabaseSizeBasedRecommendationServiceLevelObjective { get; private set; } + [JsonProperty(PropertyName = "properties.databaseSizeBasedRecommendationServiceLevelObjective")] + public string DatabaseSizeBasedRecommendationServiceLevelObjective { get; protected set; } /// - /// Gets or sets - /// databaseSizeBasedRecommendationServiceLevelObjectiveId for - /// service tier advisor. + /// Gets or sets databaseSizeBasedRecommendationServiceLevelObjectiveId + /// for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.databaseSizeBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? DatabaseSizeBasedRecommendationServiceLevelObjectiveId { get; private set; } + [JsonProperty(PropertyName = "properties.databaseSizeBasedRecommendationServiceLevelObjectiveId")] + public System.Guid? DatabaseSizeBasedRecommendationServiceLevelObjectiveId { get; protected set; } /// /// Gets or sets disasterPlanBasedRecommendationServiceLevelObjective /// for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.disasterPlanBasedRecommendationServiceLevelObjective")] - public string DisasterPlanBasedRecommendationServiceLevelObjective { get; private set; } + [JsonProperty(PropertyName = "properties.disasterPlanBasedRecommendationServiceLevelObjective")] + public string DisasterPlanBasedRecommendationServiceLevelObjective { get; protected set; } /// - /// Gets or sets - /// disasterPlanBasedRecommendationServiceLevelObjectiveId for - /// service tier advisor. + /// Gets or sets disasterPlanBasedRecommendationServiceLevelObjectiveId + /// for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.disasterPlanBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? DisasterPlanBasedRecommendationServiceLevelObjectiveId { get; private set; } + [JsonProperty(PropertyName = "properties.disasterPlanBasedRecommendationServiceLevelObjectiveId")] + public System.Guid? DisasterPlanBasedRecommendationServiceLevelObjectiveId { get; protected set; } /// - /// Gets or sets overallRecommendationServiceLevelObjective for - /// service tier advisor. + /// Gets or sets overallRecommendationServiceLevelObjective for service + /// tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.overallRecommendationServiceLevelObjective")] - public string OverallRecommendationServiceLevelObjective { get; private set; } + [JsonProperty(PropertyName = "properties.overallRecommendationServiceLevelObjective")] + public string OverallRecommendationServiceLevelObjective { get; protected set; } /// /// Gets or sets overallRecommendationServiceLevelObjectiveId for /// service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.overallRecommendationServiceLevelObjectiveId")] - public System.Guid? OverallRecommendationServiceLevelObjectiveId { get; private set; } + [JsonProperty(PropertyName = "properties.overallRecommendationServiceLevelObjectiveId")] + public System.Guid? OverallRecommendationServiceLevelObjectiveId { get; protected set; } /// /// Gets or sets confidence for service tier advisor. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.confidence")] - public double? Confidence { get; private set; } + [JsonProperty(PropertyName = "properties.confidence")] + public double? Confidence { get; protected set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs index 9e8599ec0f01..c66774c45fdd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs @@ -1,19 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; using System.Linq; /// /// Represents a Slo Usage Metric. /// - public partial class SloUsageMetric : Resource + public partial class SloUsageMetric { /// /// Initializes a new instance of the SloUsageMetric class. @@ -23,20 +27,15 @@ public SloUsageMetric() { } /// /// Initializes a new instance of the SloUsageMetric class. /// - /// Resource location - /// Resource name - /// Resource Id - /// Resource type - /// Resource tags /// The serviceLevelObjective for /// SLO usage metric. Possible values include: 'Basic', 'S0', 'S1', - /// 'S2', 'S3', 'P1', 'P2', 'P3' + /// 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', + /// 'ElasticPool' /// The serviceLevelObjectiveId /// for SLO usage metric. /// Gets or sets inRangeTimeRatio for /// SLO usage metric. - public SloUsageMetric(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string serviceLevelObjective = default(string), System.Guid? serviceLevelObjectiveId = default(System.Guid?), double? inRangeTimeRatio = default(double?)) - : base(location, name, id, type, tags) + public SloUsageMetric(string serviceLevelObjective = default(string), System.Guid? serviceLevelObjectiveId = default(System.Guid?), double? inRangeTimeRatio = default(double?)) { ServiceLevelObjective = serviceLevelObjective; ServiceLevelObjectiveId = serviceLevelObjectiveId; @@ -46,32 +45,23 @@ public SloUsageMetric() { } /// /// Gets or sets the serviceLevelObjective for SLO usage metric. /// Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', - /// 'P2', 'P3' + /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serviceLevelObjective")] + [JsonProperty(PropertyName = "serviceLevelObjective")] public string ServiceLevelObjective { get; set; } /// /// Gets or sets the serviceLevelObjectiveId for SLO usage metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "serviceLevelObjectiveId")] + [JsonProperty(PropertyName = "serviceLevelObjectiveId")] public System.Guid? ServiceLevelObjectiveId { get; set; } /// /// Gets or sets inRangeTimeRatio for SLO usage metric. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "inRangeTimeRatio")] + [JsonProperty(PropertyName = "inRangeTimeRatio")] public double? InRangeTimeRatio { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs index 86568164fd96..c5346bf44a6e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; using System.Linq; /// @@ -24,7 +28,7 @@ public SqlSubResource() { } /// Initializes a new instance of the SqlSubResource class. /// /// Resource name - /// Resource Id + /// The resource ID. public SqlSubResource(string name = default(string), string id = default(string)) { Name = name; @@ -34,14 +38,15 @@ public SqlSubResource() { } /// /// Gets resource name /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } /// - /// Gets resource Id + /// Gets the resource ID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; private set; } + [JsonProperty(PropertyName = "id")] + public string Id { get; protected set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs index f6d043f402ba..8f1417dbab80 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents an Azure SQL Database table. + /// Represents a database table. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class Table : Resource { /// @@ -26,15 +34,15 @@ public Table() { } /// /// Resource location /// Resource name - /// Resource Id + /// Resource ID /// Resource type /// Resource tags - /// The type of Azure SQL Database table. - /// Possible values include: 'BaseTable', 'View' + /// The type of database table. Possible values + /// include: 'BaseTable', 'View' /// The columns from this table. /// The recommended indices for this /// table. - public Table(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), TableType? tableType = default(TableType?), System.Collections.Generic.IList columns = default(System.Collections.Generic.IList), System.Collections.Generic.IList recommendedIndexes = default(System.Collections.Generic.IList)) + public Table(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), TableType? tableType = default(TableType?), IList columns = default(IList), IList recommendedIndexes = default(IList)) : base(location, name, id, type, tags) { TableType = tableType; @@ -43,36 +51,36 @@ public Table() { } } /// - /// Gets the type of Azure SQL Database table. Possible values - /// include: 'BaseTable', 'View' + /// Gets the type of database table. Possible values include: + /// 'BaseTable', 'View' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.tableType")] - public TableType? TableType { get; private set; } + [JsonProperty(PropertyName = "properties.tableType")] + public TableType? TableType { get; protected set; } /// /// Gets the columns from this table. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.columns")] - public System.Collections.Generic.IList Columns { get; private set; } + [JsonProperty(PropertyName = "properties.columns")] + public IList Columns { get; protected set; } /// /// Gets the recommended indices for this table. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.recommendedIndexes")] - public System.Collections.Generic.IList RecommendedIndexes { get; private set; } + [JsonProperty(PropertyName = "properties.recommendedIndexes")] + public IList RecommendedIndexes { get; protected set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() { base.Validate(); - if (this.Columns != null) + if (Columns != null) { - foreach (var element in this.Columns) + foreach (var element in Columns) { if (element != null) { @@ -80,9 +88,9 @@ public override void Validate() } } } - if (this.RecommendedIndexes != null) + if (RecommendedIndexes != null) { - foreach (var element1 in this.RecommendedIndexes) + foreach (var element1 in RecommendedIndexes) { if (element1 != null) { @@ -93,3 +101,4 @@ public override void Validate() } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs index 9785c595c753..c6805a2c3320 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs @@ -1,23 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for TableType. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public enum TableType { - [System.Runtime.Serialization.EnumMember(Value = "BaseTable")] + [EnumMember(Value = "BaseTable")] BaseTable, - [System.Runtime.Serialization.EnumMember(Value = "View")] + [EnumMember(Value = "View")] View } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs new file mode 100644 index 000000000000..86ea1f0a86bc --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for TargetElasticPoolEditions. + /// + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum TargetElasticPoolEditions + { + [EnumMember(Value = "Basic")] + Basic, + [EnumMember(Value = "Standard")] + Standard, + [EnumMember(Value = "Premium")] + Premium + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs index 57233cbf0066..df2de344333c 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs @@ -1,19 +1,25 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; using System.Linq; /// - /// Represents an Azure SQL Database Transparent Data Encryption . + /// Represents a database transparent data encryption . /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class TransparentDataEncryption : SqlSubResource { /// @@ -25,10 +31,9 @@ public TransparentDataEncryption() { } /// Initializes a new instance of the TransparentDataEncryption class. /// /// Resource name - /// Resource Id - /// The status of the Azure SQL Database - /// Transparent Data Encryption. Possible values include: 'Enabled', - /// 'Disabled' + /// The resource ID. + /// The status of the database transparent data + /// encryption. Possible values include: 'Enabled', 'Disabled' public TransparentDataEncryption(string name = default(string), string id = default(string), TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?)) : base(name, id) { @@ -36,11 +41,12 @@ public TransparentDataEncryption() { } } /// - /// Gets or sets the status of the Azure SQL Database Transparent Data - /// Encryption. Possible values include: 'Enabled', 'Disabled' + /// Gets or sets the status of the database transparent data + /// encryption. Possible values include: 'Enabled', 'Disabled' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.status")] + [JsonProperty(PropertyName = "properties.status")] public TransparentDataEncryptionStates? Status { get; set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs index d4ea2a376f37..110d85cf1a25 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs @@ -1,37 +1,43 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; using System.Linq; /// - /// Represents an Azure SQL Database Transparent Data Encryption Scan. + /// Represents a database transparent data encryption Scan. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class TransparentDataEncryptionActivity : SqlSubResource { /// - /// Initializes a new instance of the - /// TransparentDataEncryptionActivity class. + /// Initializes a new instance of the TransparentDataEncryptionActivity + /// class. /// public TransparentDataEncryptionActivity() { } /// - /// Initializes a new instance of the - /// TransparentDataEncryptionActivity class. + /// Initializes a new instance of the TransparentDataEncryptionActivity + /// class. /// /// Resource name - /// Resource Id - /// The status of the Azure SQL Database. - /// Possible values include: 'Encrypting', 'Decrypting' + /// The resource ID. + /// The status of the database. Possible values + /// include: 'Encrypting', 'Decrypting' /// The percent complete of the - /// transparent data encryption scan for a Azure SQL Database. + /// transparent data encryption scan for a database. public TransparentDataEncryptionActivity(string name = default(string), string id = default(string), string status = default(string), double? percentComplete = default(double?)) : base(name, id) { @@ -40,18 +46,19 @@ public TransparentDataEncryptionActivity() { } } /// - /// Gets the status of the Azure SQL Database. Possible values - /// include: 'Encrypting', 'Decrypting' + /// Gets the status of the database. Possible values include: + /// 'Encrypting', 'Decrypting' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.status")] - public string Status { get; private set; } + [JsonProperty(PropertyName = "properties.status")] + public string Status { get; protected set; } /// /// Gets the percent complete of the transparent data encryption scan - /// for a Azure SQL Database. + /// for a database. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.percentComplete")] - public double? PercentComplete { get; private set; } + [JsonProperty(PropertyName = "properties.percentComplete")] + public double? PercentComplete { get; protected set; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs index a3a042eb8f63..ac521bd13c90 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs @@ -1,13 +1,16 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; /// /// Defines values for TransparentDataEncryptionActivityStates. @@ -18,3 +21,4 @@ public static class TransparentDataEncryptionActivityStates public const string Decrypting = "Decrypting"; } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs index 2029a5891f82..c52653ac7e3b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs @@ -1,23 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for TransparentDataEncryptionStates. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public enum TransparentDataEncryptionStates { - [System.Runtime.Serialization.EnumMember(Value = "Enabled")] + [EnumMember(Value = "Enabled")] Enabled, - [System.Runtime.Serialization.EnumMember(Value = "Disabled")] + [EnumMember(Value = "Disabled")] Disabled } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs index dd6a2bee595e..db46a3df2ecd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs @@ -1,19 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; using System.Linq; /// /// Represents a Upgrade Hint. /// - public partial class UpgradeHint : Resource + public partial class UpgradeHint { /// /// Initializes a new instance of the UpgradeHint class. @@ -23,19 +27,13 @@ public UpgradeHint() { } /// /// Initializes a new instance of the UpgradeHint class. /// - /// Resource location - /// Resource name - /// Resource Id - /// Resource type - /// Resource tags /// TargetServiceLevelObjective - /// for upgrade hint. + /// name="targetServiceLevelObjective">TargetServiceLevelObjective for + /// upgrade hint. /// TargetServiceLevelObjectiveId /// for upgrade hint. - public UpgradeHint(string location, string name = default(string), string id = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string targetServiceLevelObjective = default(string), System.Guid? targetServiceLevelObjectiveId = default(System.Guid?)) - : base(location, name, id, type, tags) + public UpgradeHint(string targetServiceLevelObjective = default(string), System.Guid? targetServiceLevelObjectiveId = default(System.Guid?)) { TargetServiceLevelObjective = targetServiceLevelObjective; TargetServiceLevelObjectiveId = targetServiceLevelObjectiveId; @@ -44,24 +42,15 @@ public UpgradeHint() { } /// /// Gets or sets targetServiceLevelObjective for upgrade hint. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "targetServiceLevelObjective")] + [JsonProperty(PropertyName = "targetServiceLevelObjective")] public string TargetServiceLevelObjective { get; set; } /// /// Gets or sets targetServiceLevelObjectiveId for upgrade hint. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "targetServiceLevelObjectiveId")] + [JsonProperty(PropertyName = "targetServiceLevelObjectiveId")] public System.Guid? TargetServiceLevelObjectiveId { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs index 631a9b646d2a..f417c610e550 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs @@ -1,18 +1,24 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { + using Azure; + using Management; + using Sql; + using Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Represents the properties of a Azure SQL Recommended Elastic Pool - /// being upgraded. + /// Represents the properties of a recommended elastic pool being upgraded. /// public partial class UpgradeRecommendedElasticPoolProperties { @@ -26,26 +32,25 @@ public UpgradeRecommendedElasticPoolProperties() { } /// Initializes a new instance of the /// UpgradeRecommendedElasticPoolProperties class. /// - /// The name of the Azure SQL Recommended Elastic - /// Pool being upgraded. - /// The target edition for the Azure SQL - /// Recommended Elastic Pool being upgraded. Possible values include: - /// 'Basic', 'Standard', 'Premium' - /// The DTU guarantee for the Azure SQL Recommended - /// Elastic Pool being upgraded. - /// The storage limit in MB for the Azure SQL - /// Recommended Elastic Pool being upgraded. - /// The DTU guarantee for database for - /// the Azure SQL Recommended Elastic Pool being upgraded. + /// The name of the recommended elastic pool being + /// upgraded. + /// The target edition for the recommended + /// elastic pool being upgraded. Possible values include: 'Basic', + /// 'Standard', 'Premium' + /// The DTU guarantee for the recommended elastic + /// pool being upgraded. + /// The storage limit in MB for the recommended + /// elastic pool being upgraded. + /// The DTU guarantee for database for the + /// recommended elastic pool being upgraded. /// The DTU cap for database for the - /// Azure SQL Recommended Elastic Pool being upgraded. + /// recommended elastic pool being upgraded. /// The list of database names to be - /// put in the Azure SQL Recommended Elastic Pool being - /// upgraded. + /// put in the recommended elastic pool being upgraded. /// Gets or sets whether all - /// databases to be put in the Azure SQL Recommended Elastic Pool - /// being upgraded. - public UpgradeRecommendedElasticPoolProperties(string name, string edition, int? dtu = default(int?), int? storageMb = default(int?), int? databaseDtuMin = default(int?), int? databaseDtuMax = default(int?), System.Collections.Generic.IList databaseCollection = default(System.Collections.Generic.IList), bool? includeAllDatabases = default(bool?)) + /// databases to be put in the recommended elastic pool being + /// upgraded. + public UpgradeRecommendedElasticPoolProperties(string name, TargetElasticPoolEditions edition, int? dtu = default(int?), int? storageMb = default(int?), int? databaseDtuMin = default(int?), int? databaseDtuMax = default(int?), IList databaseCollection = default(IList), bool? includeAllDatabases = default(bool?)) { Name = name; Edition = edition; @@ -58,74 +63,75 @@ public UpgradeRecommendedElasticPoolProperties() { } } /// - /// Gets or sets the name of the Azure SQL Recommended Elastic Pool - /// being upgraded. + /// Gets or sets the name of the recommended elastic pool being + /// upgraded. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "Name")] + [JsonProperty(PropertyName = "Name")] public string Name { get; set; } /// - /// Gets or sets the target edition for the Azure SQL Recommended - /// Elastic Pool being upgraded. Possible values are enumerated in - /// ElasticPoolEditions + /// Gets or sets the target edition for the recommended elastic pool + /// being upgraded. Possible values include: 'Basic', 'Standard', + /// 'Premium' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "Edition")] - public string Edition { get; set; } + [JsonProperty(PropertyName = "Edition")] + public TargetElasticPoolEditions Edition { get; set; } /// - /// Gets or sets the DTU guarantee for the Azure SQL Recommended - /// Elastic Pool being upgraded. + /// Gets or sets the DTU guarantee for the recommended elastic pool + /// being upgraded. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "Dtu")] + [JsonProperty(PropertyName = "Dtu")] public int? Dtu { get; set; } /// - /// Gets or sets the storage limit in MB for the Azure SQL Recommended - /// Elastic Pool being upgraded. + /// Gets or sets the storage limit in MB for the recommended elastic + /// pool being upgraded. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "StorageMb")] + [JsonProperty(PropertyName = "StorageMb")] public int? StorageMb { get; set; } /// - /// Gets or sets the DTU guarantee for database for the Azure SQL - /// Recommended Elastic Pool being upgraded. + /// Gets or sets the DTU guarantee for database for the recommended + /// elastic pool being upgraded. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "DatabaseDtuMin")] + [JsonProperty(PropertyName = "DatabaseDtuMin")] public int? DatabaseDtuMin { get; set; } /// - /// Gets or sets the DTU cap for database for the Azure SQL - /// Recommended Elastic Pool being upgraded. + /// Gets or sets the DTU cap for database for the recommended elastic + /// pool being upgraded. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "DatabaseDtuMax")] + [JsonProperty(PropertyName = "DatabaseDtuMax")] public int? DatabaseDtuMax { get; set; } /// - /// Gets or sets the list of database names to be put in the Azure SQL - /// Recommended Elastic Pool being upgraded. + /// Gets or sets the list of database names to be put in the + /// recommended elastic pool being upgraded. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "DatabaseCollection")] - public System.Collections.Generic.IList DatabaseCollection { get; set; } + [JsonProperty(PropertyName = "DatabaseCollection")] + public IList DatabaseCollection { get; set; } /// - /// Gets or sets whether all databases to be put in the Azure SQL - /// Recommended Elastic Pool being upgraded. + /// Gets or sets whether all databases to be put in the recommended + /// elastic pool being upgraded. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "IncludeAllDatabases")] + [JsonProperty(PropertyName = "IncludeAllDatabases")] public bool? IncludeAllDatabases { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs index 593ffa313f13..d533e5e9cd1a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// RecommendedElasticPoolsOperations operations. /// - internal partial class RecommendedElasticPoolsOperations : Microsoft.Rest.IServiceOperations, IRecommendedElasticPoolsOperations + internal partial class RecommendedElasticPoolsOperations : IServiceOperations, IRecommendedElasticPoolsOperations { /// /// Initializes a new instance of the RecommendedElasticPoolsOperations class. @@ -29,11 +38,11 @@ internal partial class RecommendedElasticPoolsOperations : Microsoft.Rest.IServi /// internal RecommendedElasticPoolsOperations(SqlManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -42,16 +51,17 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) public SqlManagementClient Client { get; private set; } /// - /// Returns information about an Azure SQL Recommended Elastic Pool. + /// Gets a recommented elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// Headers that will be added to request. @@ -59,59 +69,62 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (recommendedElasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "recommendedElasticPoolName"); + throw new ValidationException(ValidationRules.CannotBeNull, "recommendedElasticPoolName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("recommendedElasticPoolName", recommendedElasticPoolName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{recommendedElasticPoolName}", System.Uri.EscapeDataString(recommendedElasticPoolName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -121,22 +134,22 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -153,35 +166,35 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -189,15 +202,15 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -207,7 +220,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -220,7 +233,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -229,31 +242,31 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Database inside of an Azure SQL - /// Recommended Elastic Pool. + /// Gets a database inside of a recommented elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be retrieved. /// /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the database to be retrieved. /// /// /// Headers that will be added to request. @@ -261,65 +274,68 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, string databaseName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (recommendedElasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "recommendedElasticPoolName"); + throw new ValidationException(ValidationRules.CannotBeNull, "recommendedElasticPoolName"); } if (databaseName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "databaseName"); + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("recommendedElasticPoolName", recommendedElasticPoolName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetDatabases", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetDatabases", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/databases/{databaseName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{recommendedElasticPoolName}", System.Uri.EscapeDataString(recommendedElasticPoolName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -329,22 +345,22 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -361,35 +377,35 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -397,15 +413,15 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -415,7 +431,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -428,7 +444,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -437,24 +453,25 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about Azure SQL Recommended Elastic Pools. + /// Returns recommended elastic pools. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// Headers that will be added to request. @@ -462,53 +479,56 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -518,22 +538,22 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -550,35 +570,35 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -586,15 +606,15 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -604,7 +624,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -617,7 +637,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -626,28 +646,28 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Database inside of an Azure SQL - /// Recommended Elastic Pool. + /// Returns a database inside of a recommented elastic pool. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// Headers that will be added to request. @@ -655,59 +675,62 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListDatabasesWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (recommendedElasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "recommendedElasticPoolName"); + throw new ValidationException(ValidationRules.CannotBeNull, "recommendedElasticPoolName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("recommendedElasticPoolName", recommendedElasticPoolName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListDatabases", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListDatabases", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/databases").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{recommendedElasticPoolName}", System.Uri.EscapeDataString(recommendedElasticPoolName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -717,22 +740,22 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -749,35 +772,35 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -785,15 +808,15 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -803,7 +826,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -816,7 +839,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -825,27 +848,28 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an recommended elastic pool metrics. + /// Returns a recommented elastic pool metrics. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// Headers that will be added to request. @@ -853,59 +877,62 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (recommendedElasticPoolName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "recommendedElasticPoolName"); + throw new ValidationException(ValidationRules.CannotBeNull, "recommendedElasticPoolName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("recommendedElasticPoolName", recommendedElasticPoolName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListMetrics", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListMetrics", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/recommendedElasticPools/{recommendedElasticPoolName}/metrics").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{recommendedElasticPoolName}", System.Uri.EscapeDataString(recommendedElasticPoolName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -915,22 +942,22 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -947,35 +974,35 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -983,15 +1010,15 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1001,7 +1028,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1014,7 +1041,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1023,15 +1050,16 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs index 05334d76ca4d..6e67b54ebf77 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for RecommendedElasticPoolsOperations. @@ -18,44 +24,46 @@ namespace Microsoft.Azure.Management.Sql public static partial class RecommendedElasticPoolsOperationsExtensions { /// - /// Returns information about an Azure SQL Recommended Elastic Pool. + /// Gets a recommented elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// public static RecommendedElasticPool Get(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRecommendedElasticPoolsOperations)s).GetAsync(resourceGroupName, serverName, recommendedElasticPoolName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serverName, recommendedElasticPoolName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Recommended Elastic Pool. + /// Gets a recommented elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, recommendedElasticPoolName, null, cancellationToken).ConfigureAwait(false)) { @@ -64,52 +72,52 @@ public static RecommendedElasticPool Get(this IRecommendedElasticPoolsOperations } /// - /// Returns information about an Azure SQL Database inside of an Azure SQL - /// Recommended Elastic Pool. + /// Gets a database inside of a recommented elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be retrieved. /// /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the database to be retrieved. /// public static Database GetDatabases(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, string databaseName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRecommendedElasticPoolsOperations)s).GetDatabasesAsync(resourceGroupName, serverName, recommendedElasticPoolName, databaseName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetDatabasesAsync(resourceGroupName, serverName, recommendedElasticPoolName, databaseName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Database inside of an Azure SQL - /// Recommended Elastic Pool. + /// Gets a database inside of a recommented elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Elastic Pool to be retrieved. + /// The name of the elastic pool to be retrieved. /// /// - /// The name of the Azure SQL Database to be retrieved. + /// The name of the database to be retrieved. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetDatabasesAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, string databaseName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetDatabasesAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetDatabasesWithHttpMessagesAsync(resourceGroupName, serverName, recommendedElasticPoolName, databaseName, null, cancellationToken).ConfigureAwait(false)) { @@ -118,38 +126,40 @@ public static Database GetDatabases(this IRecommendedElasticPoolsOperations oper } /// - /// Returns information about Azure SQL Recommended Elastic Pools. + /// Returns recommended elastic pools. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// - public static System.Collections.Generic.IEnumerable List(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName) + public static IEnumerable List(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRecommendedElasticPoolsOperations)s).ListAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// - /// Returns information about Azure SQL Recommended Elastic Pools. + /// Returns recommended elastic pools. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { @@ -158,46 +168,46 @@ public static System.Collections.Generic.IEnumerable Lis } /// - /// Returns information about an Azure SQL Database inside of an Azure SQL - /// Recommended Elastic Pool. + /// Returns a database inside of a recommented elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// - public static System.Collections.Generic.IEnumerable ListDatabases(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName) + public static IEnumerable ListDatabases(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRecommendedElasticPoolsOperations)s).ListDatabasesAsync(resourceGroupName, serverName, recommendedElasticPoolName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListDatabasesAsync(resourceGroupName, serverName, recommendedElasticPoolName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Database inside of an Azure SQL - /// Recommended Elastic Pool. + /// Returns a database inside of a recommented elastic pool. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListDatabasesAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListDatabasesAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListDatabasesWithHttpMessagesAsync(resourceGroupName, serverName, recommendedElasticPoolName, null, cancellationToken).ConfigureAwait(false)) { @@ -206,44 +216,46 @@ public static System.Collections.Generic.IEnumerable ListDatabases(thi } /// - /// Returns information about an recommended elastic pool metrics. + /// Returns a recommented elastic pool metrics. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// - public static System.Collections.Generic.IEnumerable ListMetrics(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName) + public static IEnumerable ListMetrics(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRecommendedElasticPoolsOperations)s).ListMetricsAsync(resourceGroupName, serverName, recommendedElasticPoolName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListMetricsAsync(resourceGroupName, serverName, recommendedElasticPoolName).GetAwaiter().GetResult(); } /// - /// Returns information about an recommended elastic pool metrics. + /// Returns a recommented elastic pool metrics. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Recommended Elastic Pool to be retrieved. + /// The name of the recommended elastic pool to be retrieved. /// /// /// The cancellation token. /// - public static async Task> ListMetricsAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListMetricsAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, string recommendedElasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListMetricsWithHttpMessagesAsync(resourceGroupName, serverName, recommendedElasticPoolName, null, cancellationToken).ConfigureAwait(false)) { @@ -253,3 +265,4 @@ public static System.Collections.Generic.IEnumerable /// ServersOperations operations. /// - internal partial class ServersOperations : Microsoft.Rest.IServiceOperations, IServersOperations + internal partial class ServersOperations : IServiceOperations, IServersOperations { /// /// Initializes a new instance of the ServersOperations class. @@ -29,11 +38,11 @@ internal partial class ServersOperations : Microsoft.Rest.IServiceOperations internal ServersOperations(SqlManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -42,19 +51,20 @@ internal ServersOperations(SqlManagementClient client) public SqlManagementClient Client { get; private set; } /// - /// Creates or updates an Azure SQL server firewall rule. + /// Creates or updates a firewall rule. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// - /// The required parameters for createing or updating a firewall rule. + /// The required parameters for creating or updating a firewall rule. /// /// /// Headers that will be added to request. @@ -62,64 +72,71 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (firewallRuleName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "firewallRuleName"); + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("firewallRuleName", firewallRuleName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateFirewallRule", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateFirewallRule", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -129,22 +146,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -162,40 +179,40 @@ internal ServersOperations(SqlManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -203,15 +220,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -221,7 +238,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -234,7 +251,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -243,7 +260,7 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } // Deserialize Response @@ -252,7 +269,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -261,27 +278,28 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes an Azure SQL server firewall rule. + /// Deletes a firewall rule. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// /// Headers that will be added to request. @@ -289,56 +307,59 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (firewallRuleName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "firewallRuleName"); + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("firewallRuleName", firewallRuleName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "DeleteFirewallRule", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteFirewallRule", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -348,22 +369,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -380,43 +401,43 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); } else { _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -426,7 +447,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -435,22 +456,23 @@ internal ServersOperations(SqlManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns an Azure SQL server firewall rule. + /// Gets a firewall rule. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// /// Headers that will be added to request. @@ -458,59 +480,62 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (firewallRuleName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "firewallRuleName"); + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("firewallRuleName", firewallRuleName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetFirewallRule", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetFirewallRule", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -520,22 +545,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -552,35 +577,35 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -588,15 +613,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -606,7 +631,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -619,7 +644,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -628,24 +653,25 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns a list of Azure SQL server firewall rules. + /// Returns a list of firewall rules. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// Headers that will be added to request. @@ -653,53 +679,56 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListFirewallRules", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListFirewallRules", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -709,22 +738,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -741,35 +770,35 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -777,15 +806,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -795,7 +824,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -808,7 +837,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -817,18 +846,18 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Server. + /// Returns a list of servers. /// /// /// Headers that will be added to request. @@ -836,41 +865,44 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Sql/servers").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -880,22 +912,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -912,35 +944,35 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -948,15 +980,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -966,7 +998,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -979,7 +1011,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -988,27 +1020,28 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Creates a new Azure SQL Server. + /// Creates or updates a new server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The required parameters for createing or updating a server. + /// The required parameters for creating or updating a server. /// /// /// Headers that will be added to request. @@ -1016,35 +1049,38 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, Server parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, Server parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { @@ -1052,26 +1088,26 @@ internal ServersOperations(SqlManagementClient client) } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1081,22 +1117,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1114,40 +1150,40 @@ internal ServersOperations(SqlManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1155,15 +1191,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1173,7 +1209,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1186,7 +1222,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1195,7 +1231,7 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } // Deserialize Response @@ -1204,7 +1240,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1213,24 +1249,25 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Server. + /// Deletes a SQL server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// Headers that will be added to request. @@ -1238,50 +1275,53 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1291,22 +1331,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1323,43 +1363,43 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); } else { _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1369,7 +1409,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1378,19 +1418,20 @@ internal ServersOperations(SqlManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Server. + /// Gets a server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// Headers that will be added to request. @@ -1398,53 +1439,56 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1454,22 +1498,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1486,35 +1530,35 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1522,15 +1566,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1540,7 +1584,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1553,7 +1597,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1562,21 +1606,22 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Server. + /// Returns a server. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// /// Headers that will be added to request. @@ -1584,47 +1629,50 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -1634,22 +1682,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -1666,35 +1714,35 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1702,15 +1750,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1720,7 +1768,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1733,7 +1781,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -1742,24 +1790,25 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Cancel a pending upgrade for the Azure SQL Server. + /// Returns server usages. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// Headers that will be added to request. @@ -1767,606 +1816,56 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async System.Threading.Tasks.Task CancelUpgradeWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CancelUpgrade", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/operationResults/versionUpgrade").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) - { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) - { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - } - else { - _responseContent = string.Empty; - } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Returns information about Upgrade status of an Azure SQL Server. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// - /// - /// A response object containing the response body and response headers. - /// - public async System.Threading.Tasks.Task> GetUpgradeWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetUpgrade", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/operationResults/versionUpgrade").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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) - { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception - } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Start an Azure SQL Server Upgrade. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The required parameters for the Azure SQL Server Upgrade. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async System.Threading.Tasks.Task StartUpgradeWithHttpMessagesAsync(string resourceGroupName, string serverName, ServerUpgradeStartParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginStartUpgradeWithHttpMessagesAsync( - resourceGroupName, serverName, parameters, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); - } - - /// - /// Start an Azure SQL Server Upgrade. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The required parameters for the Azure SQL Server Upgrade. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async System.Threading.Tasks.Task BeginStartUpgradeWithHttpMessagesAsync(string resourceGroupName, string serverName, ServerUpgradeStartParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); - } - if (parameters == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); - } - string apiVersion = "2014-04-01"; - if (parameters == null) - { - parameters = new ServerUpgradeStartParameters(); - } - // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginStartUpgrade", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/upgrade").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.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; - if(parameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 202) - { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - } - else { - _responseContent = string.Empty; - } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Returns information about Azure SQL Server usage. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListUsagesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListUsages", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListUsages", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/usages").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2376,22 +1875,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -2408,35 +1907,35 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2444,15 +1943,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2462,7 +1961,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2475,7 +1974,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -2484,24 +1983,25 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about an Azure SQL Database Service Objective. + /// Gets a database service objective. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The name of the service objective to retrieve. @@ -2512,59 +2012,62 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetServiceObjectiveWithHttpMessagesAsync(string resourceGroupName, string serverName, string serviceObjectiveName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetServiceObjectiveWithHttpMessagesAsync(string resourceGroupName, string serverName, string serviceObjectiveName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } if (serviceObjectiveName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serviceObjectiveName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serviceObjectiveName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("serviceObjectiveName", serviceObjectiveName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetServiceObjective", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetServiceObjective", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives/{serviceObjectiveName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{serviceObjectiveName}", System.Uri.EscapeDataString(serviceObjectiveName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2574,22 +2077,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -2606,35 +2109,35 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2642,15 +2145,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2660,7 +2163,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2673,7 +2176,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -2682,24 +2185,25 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Returns information about Azure SQL Database Service Objectives. + /// Returns database service objectives. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// Headers that will be added to request. @@ -2707,53 +2211,56 @@ internal ServersOperations(SqlManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListServiceObjectivesWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListServiceObjectivesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (serverName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "serverName"); + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } string apiVersion = "2014-04-01"; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListServiceObjectives", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListServiceObjectives", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/serviceObjectives").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2763,22 +2270,22 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } if (customHeaders != null) { @@ -2795,35 +2302,35 @@ internal ServersOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2831,15 +2338,15 @@ internal ServersOperations(SqlManagementClient client) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2849,7 +2356,7 @@ internal ServersOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2862,7 +2369,7 @@ internal ServersOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (Newtonsoft.Json.JsonException ex) { @@ -2871,15 +2378,16 @@ internal ServersOperations(SqlManagementClient client) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs index bcdf0b4674cd..9e3cfead0e78 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs @@ -1,16 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for ServersOperations. @@ -18,50 +24,52 @@ namespace Microsoft.Azure.Management.Sql public static partial class ServersOperationsExtensions { /// - /// Creates or updates an Azure SQL server firewall rule. + /// Creates or updates a firewall rule. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// - /// The required parameters for createing or updating a firewall rule. + /// The required parameters for creating or updating a firewall rule. /// public static ServerFirewallRule CreateOrUpdateFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).CreateOrUpdateFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName, parameters).GetAwaiter().GetResult(); } /// - /// Creates or updates an Azure SQL server firewall rule. + /// Creates or updates a firewall rule. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// - /// The required parameters for createing or updating a firewall rule. + /// The required parameters for creating or updating a firewall rule. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -70,87 +78,91 @@ public static ServerFirewallRule CreateOrUpdateFirewallRule(this IServersOperati } /// - /// Deletes an Azure SQL server firewall rule. + /// Deletes a firewall rule. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// public static void DeleteFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).DeleteFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); } /// - /// Deletes an Azure SQL server firewall rule. + /// Deletes a firewall rule. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false); } /// - /// Returns an Azure SQL server firewall rule. + /// Gets a firewall rule. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// public static ServerFirewallRule GetFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).GetFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); } /// - /// Returns an Azure SQL server firewall rule. + /// Gets a firewall rule. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The name of the Azure SQL Server Firewall Rule. + /// The name of the firewall rule. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)) { @@ -159,38 +171,40 @@ public static ServerFirewallRule GetFirewallRule(this IServersOperations operati } /// - /// Returns a list of Azure SQL server firewall rules. + /// Returns a list of firewall rules. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// - public static System.Collections.Generic.IEnumerable ListFirewallRules(this IServersOperations operations, string resourceGroupName, string serverName) + public static IEnumerable ListFirewallRules(this IServersOperations operations, string resourceGroupName, string serverName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).ListFirewallRulesAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListFirewallRulesAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// - /// Returns a list of Azure SQL server firewall rules. + /// Returns a list of firewall rules. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The cancellation token. /// - public static async Task> ListFirewallRulesAsync(this IServersOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListFirewallRulesAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListFirewallRulesWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { @@ -199,18 +213,18 @@ public static System.Collections.Generic.IEnumerable ListFir } /// - /// Returns information about an Azure SQL Server. + /// Returns a list of servers. /// /// /// The operations group for this extension method. /// - public static System.Collections.Generic.IEnumerable List(this IServersOperations operations) + public static IEnumerable List(this IServersOperations operations) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Server. + /// Returns a list of servers. /// /// /// The operations group for this extension method. @@ -218,7 +232,7 @@ public static System.Collections.Generic.IEnumerable List(this IServersO /// /// The cancellation token. /// - public static async Task> ListAsync(this IServersOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IServersOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -227,44 +241,46 @@ public static System.Collections.Generic.IEnumerable List(this IServersO } /// - /// Creates a new Azure SQL Server. + /// Creates or updates a new server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The required parameters for createing or updating a server. + /// The required parameters for creating or updating a server. /// public static Server CreateOrUpdate(this IServersOperations operations, string resourceGroupName, string serverName, Server parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).CreateOrUpdateAsync(resourceGroupName, serverName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); } /// - /// Creates a new Azure SQL Server. + /// Creates or updates a new server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// - /// The required parameters for createing or updating a server. + /// The required parameters for creating or updating a server. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IServersOperations operations, string resourceGroupName, string serverName, Server parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IServersOperations operations, string resourceGroupName, string serverName, Server parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -273,75 +289,79 @@ public static Server CreateOrUpdate(this IServersOperations operations, string r } /// - /// Returns information about an Azure SQL Server. + /// Deletes a SQL server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// public static void Delete(this IServersOperations operations, string resourceGroupName, string serverName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).DeleteAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Server. + /// Deletes a SQL server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IServersOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false); } /// - /// Returns information about an Azure SQL Server. + /// Gets a server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// public static Server GetByResourceGroup(this IServersOperations operations, string resourceGroupName, string serverName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).GetByResourceGroupAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetByResourceGroupAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Server. + /// Gets a server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetByResourceGroupAsync(this IServersOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetByResourceGroupAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetByResourceGroupWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { @@ -350,32 +370,34 @@ public static Server GetByResourceGroup(this IServersOperations operations, stri } /// - /// Returns information about an Azure SQL Server. + /// Returns a server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// - public static System.Collections.Generic.IEnumerable ListByResourceGroup(this IServersOperations operations, string resourceGroupName) + public static IEnumerable ListByResourceGroup(this IServersOperations operations, string resourceGroupName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).ListByResourceGroupAsync(resourceGroupName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Server. + /// Returns a server. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IServersOperations operations, string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IServersOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { @@ -384,201 +406,40 @@ public static System.Collections.Generic.IEnumerable ListByResourceGroup } /// - /// Cancel a pending upgrade for the Azure SQL Server. + /// Returns server usages. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// - public static void CancelUpgrade(this IServersOperations operations, string resourceGroupName, string serverName) + public static IEnumerable ListUsages(this IServersOperations operations, string resourceGroupName, string serverName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).CancelUpgradeAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListUsagesAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// - /// Cancel a pending upgrade for the Azure SQL Server. + /// Returns server usages. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CancelUpgradeAsync(this IServersOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - await operations.CancelUpgradeWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false); - } - - /// - /// Returns information about Upgrade status of an Azure SQL Server. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - public static ServerUpgradeGetResult GetUpgrade(this IServersOperations operations, string resourceGroupName, string serverName) - { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).GetUpgradeAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Returns information about Upgrade status of an Azure SQL Server. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The cancellation token. - /// - public static async System.Threading.Tasks.Task GetUpgradeAsync(this IServersOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - using (var _result = await operations.GetUpgradeWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Start an Azure SQL Server Upgrade. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The required parameters for the Azure SQL Server Upgrade. - /// - public static void StartUpgrade(this IServersOperations operations, string resourceGroupName, string serverName, ServerUpgradeStartParameters parameters) - { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).StartUpgradeAsync(resourceGroupName, serverName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Start an Azure SQL Server Upgrade. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The required parameters for the Azure SQL Server Upgrade. - /// - /// - /// The cancellation token. - /// - public static async System.Threading.Tasks.Task StartUpgradeAsync(this IServersOperations operations, string resourceGroupName, string serverName, ServerUpgradeStartParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - await operations.StartUpgradeWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false); - } - - /// - /// Start an Azure SQL Server Upgrade. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The required parameters for the Azure SQL Server Upgrade. - /// - public static void BeginStartUpgrade(this IServersOperations operations, string resourceGroupName, string serverName, ServerUpgradeStartParameters parameters) - { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).BeginStartUpgradeAsync(resourceGroupName, serverName, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Start an Azure SQL Server Upgrade. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The required parameters for the Azure SQL Server Upgrade. - /// - /// - /// The cancellation token. - /// - public static async System.Threading.Tasks.Task BeginStartUpgradeAsync(this IServersOperations operations, string resourceGroupName, string serverName, ServerUpgradeStartParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - await operations.BeginStartUpgradeWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false); - } - - /// - /// Returns information about Azure SQL Server usage. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - public static System.Collections.Generic.IEnumerable ListUsages(this IServersOperations operations, string resourceGroupName, string serverName) - { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).ListUsagesAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Returns information about Azure SQL Server usage. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the resource belongs. - /// - /// - /// The name of the Azure SQL Server - /// - /// - /// The cancellation token. - /// - public static async Task> ListUsagesAsync(this IServersOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListUsagesAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListUsagesWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { @@ -587,36 +448,38 @@ public static System.Collections.Generic.IEnumerable ListUsages(th } /// - /// Returns information about an Azure SQL Database Service Objective. + /// Gets a database service objective. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The name of the service objective to retrieve. /// public static ServiceObjective GetServiceObjective(this IServersOperations operations, string resourceGroupName, string serverName, string serviceObjectiveName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).GetServiceObjectiveAsync(resourceGroupName, serverName, serviceObjectiveName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetServiceObjectiveAsync(resourceGroupName, serverName, serviceObjectiveName).GetAwaiter().GetResult(); } /// - /// Returns information about an Azure SQL Database Service Objective. + /// Gets a database service objective. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The name of the service objective to retrieve. @@ -624,7 +487,7 @@ public static ServiceObjective GetServiceObjective(this IServersOperations opera /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetServiceObjectiveAsync(this IServersOperations operations, string resourceGroupName, string serverName, string serviceObjectiveName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetServiceObjectiveAsync(this IServersOperations operations, string resourceGroupName, string serverName, string serviceObjectiveName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetServiceObjectiveWithHttpMessagesAsync(resourceGroupName, serverName, serviceObjectiveName, null, cancellationToken).ConfigureAwait(false)) { @@ -633,38 +496,40 @@ public static ServiceObjective GetServiceObjective(this IServersOperations opera } /// - /// Returns information about Azure SQL Database Service Objectives. + /// Returns database service objectives. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// - public static System.Collections.Generic.IEnumerable ListServiceObjectives(this IServersOperations operations, string resourceGroupName, string serverName) + public static IEnumerable ListServiceObjectives(this IServersOperations operations, string resourceGroupName, string serverName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServersOperations)s).ListServiceObjectivesAsync(resourceGroupName, serverName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListServiceObjectivesAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// - /// Returns information about Azure SQL Database Service Objectives. + /// Returns database service objectives. /// /// /// The operations group for this extension method. /// /// - /// The name of the Resource Group to which the resource belongs. + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure SQL Server + /// The name of the server. /// /// /// The cancellation token. /// - public static async Task> ListServiceObjectivesAsync(this IServersOperations operations, string resourceGroupName, string serverName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListServiceObjectivesAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListServiceObjectivesWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { @@ -674,3 +539,4 @@ public static System.Collections.Generic.IEnumerable ListServi } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs index 9687ead29fa4..70097e6d1096 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs @@ -1,22 +1,35 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Serialization; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// - /// Composite Swagger for Azure Sql Database Client + /// The Azure SQL Database management API provides a RESTful set of web + /// services that interact with Azure SQL Database services to manage your + /// databases. The API enables you to create, retrieve, update, and delete + /// databases. /// - public partial class SqlManagementClient : Microsoft.Rest.ServiceClient, ISqlManagementClient, IAzureClient + public partial class SqlManagementClient : ServiceClient, ISqlManagementClient, IAzureClient { /// /// The base URI of the service. @@ -36,10 +49,10 @@ public partial class SqlManagementClient : Microsoft.Rest.ServiceClient /// Credentials needed for the client to connect to Azure. /// - public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// - /// The subscription id that identifies an Azure subscription. + /// The subscription ID that identifies an Azure subscription. /// public string SubscriptionId { get; set; } @@ -88,7 +101,7 @@ public partial class SqlManagementClient : Microsoft.Rest.ServiceClient protected SqlManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -102,7 +115,7 @@ protected SqlManagementClient(params System.Net.Http.DelegatingHandler[] handler /// protected SqlManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -123,7 +136,7 @@ protected SqlManagementClient(System.Uri baseUri, params System.Net.Http.Delegat { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -147,7 +160,7 @@ protected SqlManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHand { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -162,16 +175,16 @@ protected SqlManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHand /// /// Thrown when a required parameter is null /// - public SqlManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public SqlManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -190,16 +203,16 @@ public SqlManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, /// /// Thrown when a required parameter is null /// - public SqlManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public SqlManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -218,7 +231,7 @@ public SqlManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, /// /// Thrown when a required parameter is null /// - public SqlManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -228,11 +241,11 @@ public SqlManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCrede { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -254,7 +267,7 @@ public SqlManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCrede /// /// Thrown when a required parameter is null /// - public SqlManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -264,11 +277,11 @@ public SqlManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCrede { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -281,14 +294,14 @@ public SqlManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCrede /// private void Initialize() { - this.Servers = new ServersOperations(this); - this.Databases = new DatabasesOperations(this); - this.ElasticPools = new ElasticPoolsOperations(this); - this.RecommendedElasticPools = new RecommendedElasticPoolsOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; + Servers = new ServersOperations(this); + Databases = new DatabasesOperations(this); + ElasticPools = new ElasticPoolsOperations(this); + RecommendedElasticPools = new RecommendedElasticPoolsOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, @@ -296,28 +309,192 @@ private void Initialize() DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + ContractResolver = new ReadOnlyJsonContractResolver(), Converters = new System.Collections.Generic.List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); + SerializationSettings.Converters.Add(new TransformationJsonConverter()); DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + ContractResolver = new ReadOnlyJsonContractResolver(), Converters = new System.Collections.Generic.List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; CustomInitialize(); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } + /// + /// Lists all of the available SQL Rest API operations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListOperationsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListOperations", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Sql/operations").ToString(); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs new file mode 100644 index 000000000000..21f13bae02ae --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SqlManagementClient. + /// + public static partial class SqlManagementClientExtensions + { + /// + /// Lists all of the available SQL Rest API operations. + /// + /// + /// The operations group for this extension method. + /// + public static OperationListResult ListOperations(this ISqlManagementClient operations) + { + return operations.ListOperationsAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available SQL Rest API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task ListOperationsAsync(this ISqlManagementClient operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOperationsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveId.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/ServiceObjectiveId.cs similarity index 100% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveId.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/ServiceObjectiveId.cs diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd index 842b634caf69..355fe2d814a0 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd @@ -4,7 +4,7 @@ :: @echo off -set autoRestVersion=0.17.0-Nightly20160914 +set autoRestVersion=1.0.0-Nightly20161212 if "%1" == "" ( set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-sql/compositeSql.json" ) else ( diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCopyScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCopyScenarioTests.cs new file mode 100644 index 000000000000..cf2ca34337f4 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCopyScenarioTests.cs @@ -0,0 +1,82 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using System.Collections.Generic; +using Xunit; + +namespace Sql.Tests +{ + public class DatabaseCopyScenarioTests + { + [Fact] + public void TestCopyDatabase() + { + string login = "dummylogin"; + string password = "Un53cuRE!"; + string version12 = "12.0"; + string databaseName = "testdb"; + string testPrefix = "sqlcrudtest-"; + Dictionary tags = new Dictionary(); + string testName = this.GetType().FullName; + + SqlManagementTestUtilities.RunTestInNewResourceGroup(testName, "TestCopyDatabase", testPrefix, (resClient, sqlClient, resourceGroup) => + { + //Create two servers + string serverName = SqlManagementTestUtilities.GenerateName(testPrefix); + var server = sqlClient.Servers.CreateOrUpdate(resourceGroup.Name, serverName, new Microsoft.Azure.Management.Sql.Models.Server() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + Version = version12, + Location = SqlManagementTestUtilities.DefaultLocation, + Tags = tags, + }); + SqlManagementTestUtilities.ValidateServer(server, serverName, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); + + string serverName2 = SqlManagementTestUtilities.GenerateName(testPrefix); + var server2 = sqlClient.Servers.CreateOrUpdate(resourceGroup.Name, serverName2, new Microsoft.Azure.Management.Sql.Models.Server() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + Version = version12, + Location = SqlManagementTestUtilities.DefaultLocation, + Tags = tags, + }); + SqlManagementTestUtilities.ValidateServer(server2, serverName2, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); + + // Create a database with all parameters specified + // + string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + var dbInput = new Microsoft.Azure.Management.Sql.Models.Database() + { + Location = server.Location, + Collation = SqlTestConstants.DefaultCollation, + Edition = SqlTestConstants.DefaultDatabaseEdition, + + // Make max size bytes less than default, to ensure that copy follows this parameter + MaxSizeBytes = (500 * 1024L * 1024L).ToString(), + RequestedServiceObjectiveName = SqlTestConstants.DefaultDatabaseEdition, + RequestedServiceObjectiveId = ServiceObjectiveId.Basic, + CreateMode = "Default" + }; + var db = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); + Assert.NotNull(db); + + // Create a database as copy of the first database + // + dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + var dbInputCopy = new Microsoft.Azure.Management.Sql.Models.Database() + { + Location = server2.Location, + CreateMode = CreateMode.Copy, + SourceDatabaseId = db.Id + }; + var dbCopy = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server2.Name, dbName, dbInputCopy); + SqlManagementTestUtilities.ValidateDatabase(db, dbCopy, dbCopy.Name); + }); + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs index 87822d261fde..a92cf8a6849c 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs @@ -7,6 +7,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Threading.Tasks; using Xunit; namespace Sql.Tests @@ -46,7 +47,8 @@ public void TestCreateDropDatabase() RequestedServiceObjectiveName = SqlTestConstants.DefaultDatabaseEdition, RequestedServiceObjectiveId = ServiceObjectiveId.Basic, Tags = tags, - CreateMode = "Default" + CreateMode = "Default", + SampleName = SampleName.AdventureWorksLT }; var db2 = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, db2Input); Assert.NotNull(db2); @@ -191,20 +193,27 @@ public void TestGetAndListDatabase() string testName = this.GetType().FullName; SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestGetAndListDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => { - Dictionary inputs = new Dictionary(); - - // Create some small databases to run the get/List tests on. + // Begin creating some small databases to run the get/List tests on. + // + List> createDbTasks = new List>(); for (int i = 0; i < 4; i++) { string name = SqlManagementTestUtilities.GenerateName(testPrefix); - inputs.Add( - name, - sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, name, - new Database() { + createDbTasks.Add(sqlClient.Databases.CreateOrUpdateAsync(resourceGroup.Name, server.Name, name, + new Database() + { Location = server.Location })); } + // Wait for all databases to be created. + IDictionary inputs = + Task.WhenAll(createDbTasks.ToArray()) + .Result + .ToDictionary( + keySelector: d => d.Name, + elementSelector: d => d); + // Get each database and compare to the results of create database // foreach (var db in inputs) @@ -213,16 +222,74 @@ public void TestGetAndListDatabase() SqlManagementTestUtilities.ValidateDatabaseEx(db.Value, response); } + // List all databases + // var listResponse = sqlClient.Databases.ListByServer(resourceGroup.Name, server.Name); // Remove master database from the list listResponse = listResponse.Where(db => db.Name != "master"); Assert.Equal(inputs.Count(), listResponse.Count()); - foreach(var db in listResponse) { SqlManagementTestUtilities.ValidateDatabase(inputs[db.Name], db, db.Name); } + + // List databases with filter + // + listResponse = sqlClient.Databases.ListByServer(resourceGroup.Name, server.Name, filter: "properties/edition ne 'System'"); + Assert.Equal(inputs.Count(), listResponse.Count()); + foreach (var db in listResponse) + { + SqlManagementTestUtilities.ValidateDatabase(inputs[db.Name], db, db.Name); + } + }); + } + + [Fact] + public void TestRemoveDatabaseFromPool() + { + string testPrefix = "sqlcrudtest-"; + string testName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestRemoveDatabaseFromPool", testPrefix, (resClient, sqlClient, resourceGroup, server) => + { + Dictionary tags = new Dictionary() + { + { "tagKey1", "TagValue1" } + }; + + // Create an elastic pool + // + string epName = SqlManagementTestUtilities.GenerateName(); + var epInput = new ElasticPool() + { + Location = server.Location, + Edition = SqlTestConstants.DefaultElasticPoolEdition, + Tags = tags, + Dtu = 100, + DatabaseDtuMax = 5, + DatabaseDtuMin = 0 + }; + var returnedEp = sqlClient.ElasticPools.CreateOrUpdate(resourceGroup.Name, server.Name, epName, epInput); + SqlManagementTestUtilities.ValidateElasticPool(epInput, returnedEp, epName); + + // Create a database in first elastic pool + string dbName = SqlManagementTestUtilities.GenerateName(); + var dbInput = new Database() + { + Location = server.Location, + ElasticPoolName = epName + }; + sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); + + // Remove the database from the pool + dbInput = new Database() + { + Location = server.Location, + RequestedServiceObjectiveName = ServiceObjectiveName.Basic + }; + var dbResult = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); + + Assert.Equal(null, dbResult.ElasticPoolName); }); } } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseReplicationLinkScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseReplicationLinkScenarioTests.cs index 35d9b802c685..4663197013cd 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseReplicationLinkScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseReplicationLinkScenarioTests.cs @@ -81,7 +81,7 @@ public void TestGetListFailoverReplicationLink() { string testPrefix = "sqlcrudtest-"; string suiteName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewResourceGroup(suiteName, "TestCreateReplicationLinks", testPrefix, (resClient, sqlClient, resourceGroup) => + SqlManagementTestUtilities.RunTestInNewResourceGroup(suiteName, "TestGetListFailoverReplicationLink", testPrefix, (resClient, sqlClient, resourceGroup) => { string login = "dummylogin"; string password = "Un53cuRE!"; diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs new file mode 100644 index 000000000000..e84ce404676e --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs @@ -0,0 +1,61 @@ +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using Xunit; + +namespace Sql.Tests +{ + public class DatabaseRestoreScenarioTests + { + [Fact] + public void TestDatabasePointInTimeRestore() + { + // Warning: This test takes around 20 minutes to run in record mode. + + string testPrefix = "sqlrestoretest-"; + string testName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestDatabasePointInTimeRestore", testPrefix, (resClient, sqlClient, resourceGroup, server) => + { + // Create database only required parameters + // + string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + var db1 = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, new Database() + { + Location = server.Location, + }); + Assert.NotNull(db1); + + // If earliest restore time is in the future, we need to wait until then. Add some padding in case of clock skew + // between Azure and this machine. Beware this wait is at least 10 minutes long. + // + DateTime waitUntil = db1.EarliestRestoreDate.Value.AddMinutes(1); + TimeSpan waitDelay = waitUntil.Subtract(DateTime.UtcNow); + if (waitDelay > TimeSpan.Zero) + { + Thread.Sleep(waitDelay); + } + + // Create a new database that is the first database restored to an earlier point in time + // + dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + var db2Input = new Microsoft.Azure.Management.Sql.Models.Database() + { + Location = server.Location, + CreateMode = "PointInTimeRestore", + RestorePointInTime = db1.EarliestRestoreDate.Value, + SourceDatabaseId = db1.Id + }; + var db2 = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, db2Input); + Assert.NotNull(db2); + SqlManagementTestUtilities.ValidateDatabase(db2Input, db2, dbName); + + sqlClient.Databases.Delete(resourceGroup.Name, server.Name, db1.Name); + sqlClient.Databases.Delete(resourceGroup.Name, server.Name, db2.Name); + }); + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolActivityScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolActivityScenarioTests.cs index f38ca27c503d..252f5751dd82 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolActivityScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolActivityScenarioTests.cs @@ -48,7 +48,8 @@ public void TestListElasticPoolDatabaseActivity() }; sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); - // Add database to elastic pool + // Add database to elastic pool - should have CREATE and UPDATE records + // This is because we moved existing DB to elastic pool instead of creating in Elastic Pool dbInput = new Database() { Location = server.Location, @@ -57,7 +58,7 @@ public void TestListElasticPoolDatabaseActivity() sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); // Get the Elastic Pool Database Activity List - var activity = sqlClient.ElasticPools.ListDatabaseActivity(epName, resourceGroup.Name, server.Name); + var activity = sqlClient.ElasticPools.ListDatabaseActivity(resourceGroup.Name, server.Name, epName); Assert.Equal(2, activity.Where(a => a.DatabaseName == dbName).Count()); Assert.Equal(1, activity.Where(a => a.DatabaseName == dbName && a.Operation == "CREATE").Count()); @@ -99,5 +100,75 @@ public void TestListElasticPoolActivity() Assert.Equal(1, activity.Where(a => a.Operation == "CREATE").Count()); }); } + + [Fact] + public void TestMoveBetweenPoolsAndGetActivity() + { + string testPrefix = "sqlcrudtest-"; + string testName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestMoveBetweenPoolsAndGetActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => + { + Dictionary tags = new Dictionary() + { + { "tagKey1", "TagValue1" } + }; + + // Create two elastic pools + // + string epName = SqlManagementTestUtilities.GenerateName(); + var epInput = new ElasticPool() + { + Location = server.Location, + Edition = SqlTestConstants.DefaultElasticPoolEdition, + Tags = tags, + Dtu = 100, + DatabaseDtuMax = 5, + DatabaseDtuMin = 0 + }; + var returnedEp = sqlClient.ElasticPools.CreateOrUpdate(resourceGroup.Name, server.Name, epName, epInput); + SqlManagementTestUtilities.ValidateElasticPool(epInput, returnedEp, epName); + + string epName2 = SqlManagementTestUtilities.GenerateName(); + epInput = new ElasticPool() + { + Location = server.Location, + Edition = SqlTestConstants.DefaultElasticPoolEdition, + Tags = tags, + Dtu = 100, + DatabaseDtuMax = 5, + DatabaseDtuMin = 0 + }; + returnedEp = sqlClient.ElasticPools.CreateOrUpdate(resourceGroup.Name, server.Name, epName2, epInput); + SqlManagementTestUtilities.ValidateElasticPool(epInput, returnedEp, epName2); + + // Create a database in first elastic pool + string dbName = SqlManagementTestUtilities.GenerateName(); + var dbInput = new Database() + { + Location = server.Location, + ElasticPoolName = epName + }; + sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); + + // Get the Elastic Pool Database Activity List for first pool + var activity = sqlClient.ElasticPools.ListDatabaseActivity(resourceGroup.Name, server.Name, epName); + Assert.Equal(1, activity.Where(a => a.DatabaseName == dbName).Count()); + Assert.Equal(1, activity.Where(a => a.DatabaseName == dbName && a.Operation == "CREATE").Count()); + + // Move database to second elastic pool + dbInput = new Database() + { + Location = server.Location, + ElasticPoolName = epName2 + }; + sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, dbInput); + + // Get the Elastic Pool Database Activity List for second pool + activity = sqlClient.ElasticPools.ListDatabaseActivity(resourceGroup.Name, server.Name, epName2); + Assert.Equal(2, activity.Where(a => a.DatabaseName == dbName).Count()); + Assert.Equal(1, activity.Where(a => a.DatabaseName == dbName && a.Operation == "CREATE").Count()); + Assert.Equal(1, activity.Where(a => a.DatabaseName == dbName && a.Operation == "UPDATE").Count()); + }); + } } } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/Enums/ServiceObjectiveId.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/Enums/ServiceObjectiveId.cs new file mode 100644 index 000000000000..7396c9ffad8e --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/Enums/ServiceObjectiveId.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +using System; + +namespace Microsoft.Azure.Management.Sql.Models +{ + + /// + /// Defines values for ServiceObjectiveId. + /// + public static class ServiceObjectiveId + { + public static readonly Guid Basic = Guid.Parse("DD6D99BB-F193-4EC1-86F2-43D3BCCBC49C"); + public static readonly Guid S0 = Guid.Parse("F1173C43-91BD-4AAA-973C-54E79E15235B"); + public static readonly Guid S1 = Guid.Parse("1B1EBD4D-D903-4BAA-97F9-4EA675F5E928"); + public static readonly Guid S2 = Guid.Parse("455330E1-00CD-488B-B5FA-177C226F28B7"); + public static readonly Guid S3 = Guid.Parse("789681B8-CA10-4EB0-BDF2-E0B050601B40"); + public static readonly Guid P1 = Guid.Parse("7203483A-C4FB-4304-9E9F-17C71C904F5D"); + public static readonly Guid P2 = Guid.Parse("A7D1B92D-C987-4375-B54D-2B1D0E0F5BB0"); + public static readonly Guid P3 = Guid.Parse("A7C4C615-CFB1-464B-B252-925BE0A19446"); + public static readonly Guid P4 = Guid.Parse("AFE1EEE1-1F12-4E5F-9AD6-2DE9C12CB4DC"); + public static readonly Guid P6 = Guid.Parse("43940481-9191-475A-9DBA-6B505615B9AA"); + public static readonly Guid P11 = Guid.Parse("DD00D544-BBC0-4F61-BA60-CDCE0C410288"); + public static readonly Guid P15 = Guid.Parse("5BC86CCA-9A96-4A94-90EF-BBDFCFBF2D71"); + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCopyScenarioTests/TestCopyDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCopyScenarioTests/TestCopyDatabase.json new file mode 100644 index 000000000000..7652059b4051 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCopyScenarioTests/TestCopyDatabase.json @@ -0,0 +1,1025 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-4267?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQyNjc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-4267\": \"2017-02-24 18:58:01Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "c3429984-48dc-458a-b2dd-3943c79cf88c" + ], + "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/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267\",\r\n \"name\": \"sqlcrudtest-4267\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-4267\": \"2017-02-24 18:58:01Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 18:58:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "66957dc0-11a8-4e84-8e25-31a4a0c4c4b3" + ], + "x-ms-correlation-request-id": [ + "66957dc0-11a8-4e84-8e25-31a4a0c4c4b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T185803Z:66957dc0-11a8-4e84-8e25-31a4a0c4c4b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMDM5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "184" + ], + "x-ms-client-request-id": [ + "272976e0-1972-4e89-89d8-1454b032294e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039\",\r\n \"name\": \"sqlcrudtest-3039\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3039.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "503" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 18:58:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "17efcdab-da20-481c-bcc1-cccfab1a147c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "ffcbe395-5938-49d1-a2af-9ac5845c1ee9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T185837Z:ffcbe395-5938-49d1-a2af-9ac5845c1ee9" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "184" + ], + "x-ms-client-request-id": [ + "16ae3095-79bc-4ced-8b9a-77b3d65f87c8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049\",\r\n \"name\": \"sqlcrudtest-8049\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-8049.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "503" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 18:59:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a86fcd32-9480-43d8-8d9e-843c3e1a1e60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "b45ebf92-dba5-454c-b0db-2cda9197d74f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T185905Z:b45ebf92-dba5-454c-b0db-2cda9197d74f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMDM5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zODAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"createMode\": \"Default\",\r\n \"edition\": \"Basic\",\r\n \"maxSizeBytes\": \"524288000\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "318" + ], + "x-ms-client-request-id": [ + "d371a7df-566f-4e56-b4c9-6ec163561cce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T10:59:08.332-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 18:59:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800/operationResults/2c250b42-9896-4253-9d80-a0a6e56eae0f?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2c250b42-9896-4253-9d80-a0a6e56eae0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800/azureAsyncOperation/2c250b42-9896-4253-9d80-a0a6e56eae0f?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "c347861a-ded3-46d6-96d3-c4eaf39c00df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T185907Z:c347861a-ded3-46d6-96d3-c4eaf39c00df" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800/azureAsyncOperation/2c250b42-9896-4253-9d80-a0a6e56eae0f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMDM5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zODAwL2F6dXJlQXN5bmNPcGVyYXRpb24vMmMyNTBiNDItOTg5Ni00MjUzLTlkODAtYTBhNmU1NmVhZTBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"2c250b42-9896-4253-9d80-a0a6e56eae0f\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 18:59:37 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "44a28c5e-277f-42a1-8ee4-660dc04b9054" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800/azureAsyncOperation/2c250b42-9896-4253-9d80-a0a6e56eae0f?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "06992015-2223-40e2-9481-a58d345bda41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T185938Z:06992015-2223-40e2-9481-a58d345bda41" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800/azureAsyncOperation/2c250b42-9896-4253-9d80-a0a6e56eae0f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMDM5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zODAwL2F6dXJlQXN5bmNPcGVyYXRpb24vMmMyNTBiNDItOTg5Ni00MjUzLTlkODAtYTBhNmU1NmVhZTBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"2c250b42-9896-4253-9d80-a0a6e56eae0f\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:00:08 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "707dcf87-b9d0-4001-80b9-321b20d15a2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800/azureAsyncOperation/2c250b42-9896-4253-9d80-a0a6e56eae0f?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "20211b54-7cbe-441b-a580-d1199e0904ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190008Z:20211b54-7cbe-441b-a580-d1199e0904ba" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMDM5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zODAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800\",\r\n \"name\": \"sqlcrudtest-3800\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9ff896dd-93be-4058-bc26-c520f72b92aa\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"524288000\",\r\n \"creationDate\": \"2017-02-24T18:59:08.583Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:09:55.183Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:00:08 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a848f132-58ce-4e5a-b5e7-e95fe3e8c76b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "086ec64b-5d3a-49c8-93fc-5a46868fc266" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190009Z:086ec64b-5d3a-49c8-93fc-5a46868fc266" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDQ5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MDgzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"Copy\",\r\n \"sourceDatabaseId\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-3039/databases/sqlcrudtest-3800\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "271" + ], + "x-ms-client-request-id": [ + "2062cc3d-ab48-416e-9e78-1ec525dc6fef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2017-02-24T11:00:13.994-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:00:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083/operationResults/bd8c5817-174a-4a8e-bf3a-1696289c478a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bd8c5817-174a-4a8e-bf3a-1696289c478a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083/azureAsyncOperation/bd8c5817-174a-4a8e-bf3a-1696289c478a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "7c674f7e-1a20-44a3-aec7-0f6d8dd42618" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190012Z:7c674f7e-1a20-44a3-aec7-0f6d8dd42618" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083/azureAsyncOperation/bd8c5817-174a-4a8e-bf3a-1696289c478a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDQ5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MDgzL2F6dXJlQXN5bmNPcGVyYXRpb24vYmQ4YzU4MTctMTc0YS00YThlLWJmM2EtMTY5NjI4OWM0NzhhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd8c5817-174a-4a8e-bf3a-1696289c478a\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:00:42 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "16edc749-7adf-4b98-af7b-9860414bd746" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083/azureAsyncOperation/bd8c5817-174a-4a8e-bf3a-1696289c478a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "e3c6ee2b-0991-4e94-810c-a1020a577390" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190042Z:e3c6ee2b-0991-4e94-810c-a1020a577390" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083/azureAsyncOperation/bd8c5817-174a-4a8e-bf3a-1696289c478a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDQ5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MDgzL2F6dXJlQXN5bmNPcGVyYXRpb24vYmQ4YzU4MTctMTc0YS00YThlLWJmM2EtMTY5NjI4OWM0NzhhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd8c5817-174a-4a8e-bf3a-1696289c478a\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:01:13 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0713b4d2-ff7c-473a-8a3e-ed74b1f8d670" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083/azureAsyncOperation/bd8c5817-174a-4a8e-bf3a-1696289c478a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "bbbf1355-9bcf-4aa1-a65c-f15754c36550" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190113Z:bbbf1355-9bcf-4aa1-a65c-f15754c36550" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083/azureAsyncOperation/bd8c5817-174a-4a8e-bf3a-1696289c478a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDQ5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MDgzL2F6dXJlQXN5bmNPcGVyYXRpb24vYmQ4YzU4MTctMTc0YS00YThlLWJmM2EtMTY5NjI4OWM0NzhhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd8c5817-174a-4a8e-bf3a-1696289c478a\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:01:43 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "29c74dc5-a685-4a14-9151-3c5c6c2cf948" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083/azureAsyncOperation/bd8c5817-174a-4a8e-bf3a-1696289c478a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "353af962-67ca-4fba-9d92-591202417b58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190144Z:353af962-67ca-4fba-9d92-591202417b58" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDQ5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MDgzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4267/providers/Microsoft.Sql/servers/sqlcrudtest-8049/databases/sqlcrudtest-6083\",\r\n \"name\": \"sqlcrudtest-6083\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"12ffd747-ed40-4bdf-be67-6151dc8111b0\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"524288000\",\r\n \"creationDate\": \"2017-02-24T19:00:14.873Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:11:34.21Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:01:44 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f6a996d3-de41-409c-984e-d329390438be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "7151a09d-402c-40b2-a856-38031d49caac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190144Z:7151a09d-402c-40b2-a856-38031d49caac" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-4267?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQyNjc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "108f973b-088b-4caf-8e4d-0d4e626933b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:01:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyNjctSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "3d32ccd4-1c60-4459-a257-90c16e2f0318" + ], + "x-ms-correlation-request-id": [ + "3d32ccd4-1c60-4459-a257-90c16e2f0318" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190147Z:3d32ccd4-1c60-4459-a257-90c16e2f0318" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyNjctSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUXlOamN0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:02:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyNjctSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "9c576b8c-2688-4fda-96d1-1377105423ae" + ], + "x-ms-correlation-request-id": [ + "9c576b8c-2688-4fda-96d1-1377105423ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190217Z:9c576b8c-2688-4fda-96d1-1377105423ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyNjctSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUXlOamN0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:02:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyNjctSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "343f567b-124f-45af-b866-49c803bfc81c" + ], + "x-ms-correlation-request-id": [ + "343f567b-124f-45af-b866-49c803bfc81c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190247Z:343f567b-124f-45af-b866-49c803bfc81c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyNjctSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUXlOamN0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:03:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyNjctSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "8991ca84-bf36-426b-84e7-b9d21880da72" + ], + "x-ms-correlation-request-id": [ + "8991ca84-bf36-426b-84e7-b9d21880da72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190317Z:8991ca84-bf36-426b-84e7-b9d21880da72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyNjctSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUXlOamN0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:03:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "9ccacb15-1cdf-4b58-877a-9e264f8030ea" + ], + "x-ms-correlation-request-id": [ + "9ccacb15-1cdf-4b58-877a-9e264f8030ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T190347Z:9ccacb15-1cdf-4b58-877a-9e264f8030ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "sqlcrudtest-4267" + ], + "TestCopyDatabase": [ + "sqlcrudtest-3039", + "sqlcrudtest-8049", + "sqlcrudtest-3800", + "sqlcrudtest-6083" + ] + }, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestCreateDropDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestCreateDropDatabase.json index fd8c84e1f1f5..9513ffc23b94 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestCreateDropDatabase.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestCreateDropDatabase.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6852?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY4NTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-5281?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTUyODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-6852\": \"2017-02-10 00:51:57Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-5281\": \"2017-02-24 18:29:31Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,7 +13,7 @@ "99" ], "x-ms-client-request-id": [ - "72f97091-fd67-4053-867d-6eb689ac9c9f" + "035e5386-1c2d-40b3-858c-653909905f90" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852\",\r\n \"name\": \"sqlcrudtest-6852\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-6852\": \"2017-02-10 00:51:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281\",\r\n \"name\": \"sqlcrudtest-5281\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-5281\": \"2017-02-24 18:29:31Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "239" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:51:58 GMT" + "Fri, 24 Feb 2017 18:29:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "5be9bdfc-69c6-4c4f-814d-07a295d9a7d4" + "626d06fb-5712-48bb-a42c-acc66c972b5c" ], "x-ms-correlation-request-id": [ - "5be9bdfc-69c6-4c4f-814d-07a295d9a7d4" + "626d06fb-5712-48bb-a42c-acc66c972b5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005159Z:5be9bdfc-69c6-4c4f-814d-07a295d9a7d4" + "WESTUS2:20170224T182933Z:626d06fb-5712-48bb-a42c-acc66c972b5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "216" ], "x-ms-client-request-id": [ - "6ecf6985-6cfe-4876-b33c-9c0b69759e5b" + "beab3f66-19e9-4dfa-bb00-5d133a989048" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080\",\r\n \"name\": \"sqlcrudtest-2080\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-2080.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986\",\r\n \"name\": \"sqlcrudtest-7986\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-7986.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:52:29 GMT" + "Fri, 24 Feb 2017 18:30:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "11eca349-ab46-43e3-8c62-05bfa959d02f" + "b54e2955-9184-4b5b-9d93-739e6e4857a1" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "200ef474-ab53-48c9-8d58-dc10b2b0caff" + "5e93e62f-3481-4d2d-9a64-e4ff9b831250" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005230Z:200ef474-ab53-48c9-8d58-dc10b2b0caff" + "WESTUS2:20170224T183002Z:5e93e62f-3481-4d2d-9a64-e4ff9b831250" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03OTkzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02Nzc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "32" ], "x-ms-client-request-id": [ - "b9605b87-b1bf-4b79-8f3a-f087bf2d311c" + "bd2d7fa5-990d-44f8-8773-f865ed6799bd" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T16:52:33.706-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T10:30:05.995-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:52:31 GMT" + "Fri, 24 Feb 2017 18:30:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993/operationResults/f5e459e0-a0f4-4124-8efe-ba183bf6840f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775/operationResults/40134249-8066-4870-a060-3395ba65f6b3?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f5e459e0-a0f4-4124-8efe-ba183bf6840f" + "40134249-8066-4870-a060-3395ba65f6b3" ], "X-Content-Type-Options": [ "nosniff" @@ -190,32 +190,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993/azureAsyncOperation/f5e459e0-a0f4-4124-8efe-ba183bf6840f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775/azureAsyncOperation/40134249-8066-4870-a060-3395ba65f6b3?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "9620aa96-dfc1-44d1-9328-80d0d92b4978" + "f8ac18d2-7492-4e6c-a889-26dab92b3805" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005231Z:9620aa96-dfc1-44d1-9328-80d0d92b4978" + "WESTUS2:20170224T183004Z:f8ac18d2-7492-4e6c-a889-26dab92b3805" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993/azureAsyncOperation/f5e459e0-a0f4-4124-8efe-ba183bf6840f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03OTkzL2F6dXJlQXN5bmNPcGVyYXRpb24vZjVlNDU5ZTAtYTBmNC00MTI0LThlZmUtYmExODNiZjY4NDBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775/azureAsyncOperation/40134249-8066-4870-a060-3395ba65f6b3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02Nzc1L2F6dXJlQXN5bmNPcGVyYXRpb24vNDAxMzQyNDktODA2Ni00ODcwLWEwNjAtMzM5NWJhNjVmNmIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f5e459e0-a0f4-4124-8efe-ba183bf6840f\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"40134249-8066-4870-a060-3395ba65f6b3\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -224,7 +224,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:53:02 GMT" + "Fri, 24 Feb 2017 18:30:34 GMT" ], "Transfer-Encoding": [ "chunked" @@ -236,7 +236,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "99e41c0e-0aa0-4374-8ce9-3f623db1c464" + "afd6039a-2f06-4056-b5aa-8284be094717" ], "X-Content-Type-Options": [ "nosniff" @@ -248,32 +248,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993/azureAsyncOperation/f5e459e0-a0f4-4124-8efe-ba183bf6840f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775/azureAsyncOperation/40134249-8066-4870-a060-3395ba65f6b3?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14993" ], "x-ms-correlation-request-id": [ - "41287235-3d4a-48d6-b109-6cf45221ea46" + "978313cc-43fd-4374-8296-3c5a5e68e2b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005302Z:41287235-3d4a-48d6-b109-6cf45221ea46" + "WESTUS2:20170224T183035Z:978313cc-43fd-4374-8296-3c5a5e68e2b9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993/azureAsyncOperation/f5e459e0-a0f4-4124-8efe-ba183bf6840f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03OTkzL2F6dXJlQXN5bmNPcGVyYXRpb24vZjVlNDU5ZTAtYTBmNC00MTI0LThlZmUtYmExODNiZjY4NDBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775/azureAsyncOperation/40134249-8066-4870-a060-3395ba65f6b3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02Nzc1L2F6dXJlQXN5bmNPcGVyYXRpb24vNDAxMzQyNDktODA2Ni00ODcwLWEwNjAtMzM5NWJhNjVmNmIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f5e459e0-a0f4-4124-8efe-ba183bf6840f\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"40134249-8066-4870-a060-3395ba65f6b3\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -282,7 +282,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:53:33 GMT" + "Fri, 24 Feb 2017 18:31:05 GMT" ], "Transfer-Encoding": [ "chunked" @@ -294,7 +294,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9c2e9d27-1cc7-48a7-afd6-c70b4e137ed6" + "82aac1d9-706e-4357-8950-8cf5ed6b0f78" ], "X-Content-Type-Options": [ "nosniff" @@ -306,32 +306,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993/azureAsyncOperation/f5e459e0-a0f4-4124-8efe-ba183bf6840f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775/azureAsyncOperation/40134249-8066-4870-a060-3395ba65f6b3?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14996" ], "x-ms-correlation-request-id": [ - "e9f617e5-7666-4eae-960e-275b65120083" + "da3dbc72-c324-4505-b0da-a68ad7da1ed7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005333Z:e9f617e5-7666-4eae-960e-275b65120083" + "WESTUS2:20170224T183106Z:da3dbc72-c324-4505-b0da-a68ad7da1ed7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03OTkzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02Nzc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993\",\r\n \"name\": \"sqlcrudtest-7993\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"96eee37c-9edb-4708-a40a-810e47dda8c1\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T00:52:34.05Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:03:14.653Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775\",\r\n \"name\": \"sqlcrudtest-6775\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2a016290-0197-4439-b1ad-44e035d52277\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T18:30:06.34Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:40:45.277Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -340,7 +340,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:53:33 GMT" + "Fri, 24 Feb 2017 18:31:06 GMT" ], "Transfer-Encoding": [ "chunked" @@ -352,7 +352,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "11eb70a3-942d-4da7-ace6-dfecf1d12ecd" + "f2f1cf42-f138-4e1a-a605-386074c8a861" ], "X-Content-Type-Options": [ "nosniff" @@ -364,41 +364,41 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14995" ], "x-ms-correlation-request-id": [ - "97134e8d-9b6b-402f-a669-2ebf205a19f9" + "a970ebe5-5db2-40fe-94b8-42d72a2669df" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005334Z:97134e8d-9b6b-402f-a669-2ebf205a19f9" + "WESTUS2:20170224T183107Z:a970ebe5-5db2-40fe-94b8-42d72a2669df" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yMjE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"createMode\": \"Default\",\r\n \"edition\": \"Basic\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"createMode\": \"Default\",\r\n \"edition\": \"Basic\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": \"AdventureWorksLT\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "366" + "405" ], "x-ms-client-request-id": [ - "04e57005-5a7c-4b35-9fab-789d1399000f" + "c741fd5f-bc47-432c-af46-46cf1b496dce" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T16:53:37.221-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T10:31:10.91-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -410,10 +410,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:53:35 GMT" + "Fri, 24 Feb 2017 18:31:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311/operationResults/2635b833-549b-4e7d-8061-75e08bab20ee?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215/operationResults/7d39a907-0032-41c3-8d09-42a708903bc9?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -422,7 +422,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2635b833-549b-4e7d-8061-75e08bab20ee" + "7d39a907-0032-41c3-8d09-42a708903bc9" ], "X-Content-Type-Options": [ "nosniff" @@ -437,32 +437,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311/azureAsyncOperation/2635b833-549b-4e7d-8061-75e08bab20ee?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215/azureAsyncOperation/7d39a907-0032-41c3-8d09-42a708903bc9?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "679ef138-21a1-41ab-ba85-5ef8b72cc04d" + "a1d13a55-5f97-45e2-802b-e23e836de924" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005336Z:679ef138-21a1-41ab-ba85-5ef8b72cc04d" + "WESTUS2:20170224T183109Z:a1d13a55-5f97-45e2-802b-e23e836de924" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311/azureAsyncOperation/2635b833-549b-4e7d-8061-75e08bab20ee?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMTEvYXp1cmVBc3luY09wZXJhdGlvbi8yNjM1YjgzMy01NDliLTRlN2QtODA2MS03NWUwOGJhYjIwZWU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215/azureAsyncOperation/7d39a907-0032-41c3-8d09-42a708903bc9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yMjE1L2F6dXJlQXN5bmNPcGVyYXRpb24vN2QzOWE5MDctMDAzMi00MWMzLThkMDktNDJhNzA4OTAzYmM5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2635b833-549b-4e7d-8061-75e08bab20ee\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d39a907-0032-41c3-8d09-42a708903bc9\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -471,7 +471,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:54:06 GMT" + "Fri, 24 Feb 2017 18:31:39 GMT" ], "Transfer-Encoding": [ "chunked" @@ -483,7 +483,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d1c58363-a29d-4197-a5f5-4437a67392cf" + "99dc10ab-515c-487e-9e28-567013e865d9" ], "X-Content-Type-Options": [ "nosniff" @@ -495,32 +495,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311/azureAsyncOperation/2635b833-549b-4e7d-8061-75e08bab20ee?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215/azureAsyncOperation/7d39a907-0032-41c3-8d09-42a708903bc9?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14994" ], "x-ms-correlation-request-id": [ - "2b158433-924e-4240-a205-0d5d1d5e33ac" + "2cb975c6-2009-43c2-bfd1-d0b7e01dff28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005406Z:2b158433-924e-4240-a205-0d5d1d5e33ac" + "WESTUS2:20170224T183140Z:2cb975c6-2009-43c2-bfd1-d0b7e01dff28" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311/azureAsyncOperation/2635b833-549b-4e7d-8061-75e08bab20ee?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMTEvYXp1cmVBc3luY09wZXJhdGlvbi8yNjM1YjgzMy01NDliLTRlN2QtODA2MS03NWUwOGJhYjIwZWU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215/azureAsyncOperation/7d39a907-0032-41c3-8d09-42a708903bc9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yMjE1L2F6dXJlQXN5bmNPcGVyYXRpb24vN2QzOWE5MDctMDAzMi00MWMzLThkMDktNDJhNzA4OTAzYmM5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2635b833-549b-4e7d-8061-75e08bab20ee\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d39a907-0032-41c3-8d09-42a708903bc9\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -529,7 +529,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:54:36 GMT" + "Fri, 24 Feb 2017 18:32:10 GMT" ], "Transfer-Encoding": [ "chunked" @@ -541,7 +541,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2f2d3698-168e-4a50-a2d9-c9b3691e67dd" + "cfcb2c7c-5e1a-4a87-a931-269badb1370c" ], "X-Content-Type-Options": [ "nosniff" @@ -553,32 +553,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311/azureAsyncOperation/2635b833-549b-4e7d-8061-75e08bab20ee?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215/azureAsyncOperation/7d39a907-0032-41c3-8d09-42a708903bc9?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14993" ], "x-ms-correlation-request-id": [ - "81a43621-54df-473e-8191-2e03918317d5" + "646e275f-8966-48fe-a256-0a22d9f69458" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005437Z:81a43621-54df-473e-8191-2e03918317d5" + "WESTUS2:20170224T183210Z:646e275f-8966-48fe-a256-0a22d9f69458" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yMjE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311\",\r\n \"name\": \"sqlcrudtest-311\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a2abbe34-2972-4371-812f-b17e535a1278\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T00:53:37.503Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:04:20.083Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215\",\r\n \"name\": \"sqlcrudtest-2215\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a408b5e3-5722-4db6-a812-743efa13d34c\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:31:11.207Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:42:06.13Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -587,7 +587,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:54:37 GMT" + "Fri, 24 Feb 2017 18:32:11 GMT" ], "Transfer-Encoding": [ "chunked" @@ -599,7 +599,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4847c621-aa46-4ff2-94dd-95c0dc0ad82f" + "174f125c-511d-4f04-88ec-7fa9498ab05c" ], "X-Content-Type-Options": [ "nosniff" @@ -611,20 +611,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14992" ], "x-ms-correlation-request-id": [ - "7c40ba05-d884-423d-b053-86cbe54b73a3" + "7e8a0477-d1a8-41c7-8a53-175b1bb46976" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005438Z:7c40ba05-d884-423d-b053-86cbe54b73a3" + "WESTUS2:20170224T183211Z:7e8a0477-d1a8-41c7-8a53-175b1bb46976" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-3553?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNTUzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -635,17 +635,17 @@ "179" ], "x-ms-client-request-id": [ - "2ade40ff-adc5-4b5e-b297-62a8aab9af19" + "2f41e7ab-453e-48f0-bb0b-de946348be27" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T16:54:41.473-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T10:32:13.672-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -657,10 +657,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:54:39 GMT" + "Fri, 24 Feb 2017 18:32:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/operationResults/84b630f1-5eca-4054-a585-0cb54c7f08f2?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-3553/operationResults/a521029b-e5ef-4ae3-8d0a-fea201d6ed3c?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -669,7 +669,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "84b630f1-5eca-4054-a585-0cb54c7f08f2" + "a521029b-e5ef-4ae3-8d0a-fea201d6ed3c" ], "X-Content-Type-Options": [ "nosniff" @@ -684,32 +684,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/azureAsyncOperation/84b630f1-5eca-4054-a585-0cb54c7f08f2?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-3553/azureAsyncOperation/a521029b-e5ef-4ae3-8d0a-fea201d6ed3c?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "02f762b4-2374-4773-b4ee-2569dcf4123a" + "2708467a-c9d9-4640-8d8e-08e029ad3e5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005440Z:02f762b4-2374-4773-b4ee-2569dcf4123a" + "WESTUS2:20170224T183213Z:2708467a-c9d9-4640-8d8e-08e029ad3e5f" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/azureAsyncOperation/84b630f1-5eca-4054-a585-0cb54c7f08f2?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMzEvYXp1cmVBc3luY09wZXJhdGlvbi84NGI2MzBmMS01ZWNhLTQwNTQtYTU4NS0wY2I1NGM3ZjA4ZjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-3553/azureAsyncOperation/a521029b-e5ef-4ae3-8d0a-fea201d6ed3c?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNTUzL2F6dXJlQXN5bmNPcGVyYXRpb24vYTUyMTAyOWItZTVlZi00YWUzLThkMGEtZmVhMjAxZDZlZDNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"84b630f1-5eca-4054-a585-0cb54c7f08f2\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a521029b-e5ef-4ae3-8d0a-fea201d6ed3c\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -718,7 +718,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:55:10 GMT" + "Fri, 24 Feb 2017 18:32:43 GMT" ], "Transfer-Encoding": [ "chunked" @@ -730,7 +730,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f865718e-85cc-40fe-a7ad-07daf10a4757" + "a8fdee94-0734-4756-b150-018f6f3939a1" ], "X-Content-Type-Options": [ "nosniff" @@ -742,32 +742,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331/azureAsyncOperation/84b630f1-5eca-4054-a585-0cb54c7f08f2?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-3553/azureAsyncOperation/a521029b-e5ef-4ae3-8d0a-fea201d6ed3c?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14991" ], "x-ms-correlation-request-id": [ - "cf099986-643d-4553-a8d3-56efbe61f572" + "57682b14-1520-4fe3-8a8c-1d4a7a0e56ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005511Z:cf099986-643d-4553-a8d3-56efbe61f572" + "WESTUS2:20170224T183244Z:57682b14-1520-4fe3-8a8c-1d4a7a0e56ca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-3553?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNTUzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331\",\r\n \"name\": \"sqlcrudtest-331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"da4a3908-f48c-4115-9450-e5c2fd377255\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T00:54:41.707Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:04:49.97Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-3553\",\r\n \"name\": \"sqlcrudtest-3553\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"159fff62-4ab7-48f7-8aea-df5ac6d1d34e\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:32:13.937Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:42:26.447Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -776,7 +776,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:55:11 GMT" + "Fri, 24 Feb 2017 18:32:44 GMT" ], "Transfer-Encoding": [ "chunked" @@ -788,7 +788,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b84c6a69-e6e2-4e46-bfbe-b3f71cfa992b" + "41e7d467-6f8e-4ecd-b8f4-f1a8c4a75126" ], "X-Content-Type-Options": [ "nosniff" @@ -800,20 +800,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14990" ], "x-ms-correlation-request-id": [ - "36e8b31c-27bd-4d49-ba4c-0bc9bb642427" + "13b87c21-f28b-4ee2-bd64-3728e2f3f1ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005511Z:36e8b31c-27bd-4d49-ba4c-0bc9bb642427" + "WESTUS2:20170224T183245Z:13b87c21-f28b-4ee2-bd64-3728e2f3f1ed" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04NTA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xODk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -824,17 +824,17 @@ "150" ], "x-ms-client-request-id": [ - "801d80dd-e808-458f-9a18-71c5bf43c81b" + "f357cc82-d75e-4a5f-9c62-b116147e8ff3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T16:55:15.087-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T10:32:48.021-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -846,10 +846,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:55:12 GMT" + "Fri, 24 Feb 2017 18:32:45 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505/operationResults/f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897/operationResults/1805a6fe-3076-4d1c-a5c7-535e9e743e58?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -858,7 +858,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab" + "1805a6fe-3076-4d1c-a5c7-535e9e743e58" ], "X-Content-Type-Options": [ "nosniff" @@ -873,32 +873,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505/azureAsyncOperation/f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897/azureAsyncOperation/1805a6fe-3076-4d1c-a5c7-535e9e743e58?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1194" ], "x-ms-correlation-request-id": [ - "9d52d2d8-6fd8-44d9-be4f-135ed917d980" + "93b08e70-cbe1-4433-9c7b-9c96bd63b20d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005513Z:9d52d2d8-6fd8-44d9-be4f-135ed917d980" + "WESTUS2:20170224T183246Z:93b08e70-cbe1-4433-9c7b-9c96bd63b20d" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505/azureAsyncOperation/f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04NTA1L2F6dXJlQXN5bmNPcGVyYXRpb24vZjNkZDhhNDMtYjBjMS00ZWY1LWFmOGItNGQ5MWRjMDVkMmFiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897/azureAsyncOperation/1805a6fe-3076-4d1c-a5c7-535e9e743e58?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xODk3L2F6dXJlQXN5bmNPcGVyYXRpb24vMTgwNWE2ZmUtMzA3Ni00ZDFjLWE1YzctNTM1ZTllNzQzZTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"1805a6fe-3076-4d1c-a5c7-535e9e743e58\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -907,7 +907,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:55:43 GMT" + "Fri, 24 Feb 2017 18:33:18 GMT" ], "Transfer-Encoding": [ "chunked" @@ -919,7 +919,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "134e601a-468c-418c-96cc-66201751ffd7" + "12caffed-8b16-4c82-8c97-8782a661ab7e" ], "X-Content-Type-Options": [ "nosniff" @@ -931,32 +931,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505/azureAsyncOperation/f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897/azureAsyncOperation/1805a6fe-3076-4d1c-a5c7-535e9e743e58?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14989" ], "x-ms-correlation-request-id": [ - "0c182155-64b6-4097-9ac9-e42743479670" + "957c8d31-4a60-4c2f-806d-07006f814f11" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005543Z:0c182155-64b6-4097-9ac9-e42743479670" + "WESTUS2:20170224T183318Z:957c8d31-4a60-4c2f-806d-07006f814f11" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505/azureAsyncOperation/f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04NTA1L2F6dXJlQXN5bmNPcGVyYXRpb24vZjNkZDhhNDMtYjBjMS00ZWY1LWFmOGItNGQ5MWRjMDVkMmFiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897/azureAsyncOperation/1805a6fe-3076-4d1c-a5c7-535e9e743e58?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xODk3L2F6dXJlQXN5bmNPcGVyYXRpb24vMTgwNWE2ZmUtMzA3Ni00ZDFjLWE1YzctNTM1ZTllNzQzZTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"1805a6fe-3076-4d1c-a5c7-535e9e743e58\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -965,7 +965,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:56:13 GMT" + "Fri, 24 Feb 2017 18:33:48 GMT" ], "Transfer-Encoding": [ "chunked" @@ -977,7 +977,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "00a4b547-3983-4e12-bb81-81d511589c56" + "3e7c3e48-cbc3-4cdd-a17e-3b5cbad4ffba" ], "X-Content-Type-Options": [ "nosniff" @@ -989,32 +989,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505/azureAsyncOperation/f3dd8a43-b0c1-4ef5-af8b-4d91dc05d2ab?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897/azureAsyncOperation/1805a6fe-3076-4d1c-a5c7-535e9e743e58?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14988" ], "x-ms-correlation-request-id": [ - "26274a3e-1e6e-460f-8af6-2b1c9ebfc98c" + "2545e6b6-1b1a-4b38-9972-e98ee6ce4ede" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005614Z:26274a3e-1e6e-460f-8af6-2b1c9ebfc98c" + "WESTUS2:20170224T183349Z:2545e6b6-1b1a-4b38-9972-e98ee6ce4ede" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04NTA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xODk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505\",\r\n \"name\": \"sqlcrudtest-8505\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dd0e60b2-ec5a-4365-8635-23628380a92b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T00:55:15.353Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:05:53.563Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897\",\r\n \"name\": \"sqlcrudtest-1897\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b2a456d7-8782-4cb4-9d08-e98b26954661\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:32:48.24Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:43:34.817Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1023,7 +1023,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:56:14 GMT" + "Fri, 24 Feb 2017 18:33:49 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1035,7 +1035,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c261631e-c7f0-42f4-a48d-ac026e22fbc7" + "85c5dc1c-fbcb-4070-a2c9-fdd3bc1390bd" ], "X-Content-Type-Options": [ "nosniff" @@ -1047,20 +1047,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14987" ], "x-ms-correlation-request-id": [ - "054a8770-425a-4efb-845f-c5f4289a1556" + "e2844d16-eafb-42f7-9914-aa7620a28bb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005615Z:054a8770-425a-4efb-845f-c5f4289a1556" + "WESTUS2:20170224T183349Z:e2844d16-eafb-42f7-9914-aa7620a28bb4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05MTg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2401?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -1071,17 +1071,17 @@ "128" ], "x-ms-client-request-id": [ - "f0e99347-ab42-4b9d-95dc-2dd8f2e5f223" + "d8116445-ddfa-48a5-8cfe-f515d3891f93" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T16:56:18.933-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T10:33:53.6-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -1093,10 +1093,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:56:16 GMT" + "Fri, 24 Feb 2017 18:33:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/operationResults/1712bbbe-304f-499b-ad73-2aafe3399368?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2401/operationResults/3e80deb0-f4ff-409e-a253-312600c1bfd6?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -1105,7 +1105,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1712bbbe-304f-499b-ad73-2aafe3399368" + "3e80deb0-f4ff-409e-a253-312600c1bfd6" ], "X-Content-Type-Options": [ "nosniff" @@ -1120,32 +1120,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/azureAsyncOperation/1712bbbe-304f-499b-ad73-2aafe3399368?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2401/azureAsyncOperation/3e80deb0-f4ff-409e-a253-312600c1bfd6?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1193" ], "x-ms-correlation-request-id": [ - "68097e31-d023-405c-ba0c-230a09651e39" + "198822cc-7953-4332-b657-8d1a2733f5e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005617Z:68097e31-d023-405c-ba0c-230a09651e39" + "WESTUS2:20170224T183351Z:198822cc-7953-4332-b657-8d1a2733f5e3" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/azureAsyncOperation/1712bbbe-304f-499b-ad73-2aafe3399368?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05MTg3L2F6dXJlQXN5bmNPcGVyYXRpb24vMTcxMmJiYmUtMzA0Zi00OTliLWFkNzMtMmFhZmUzMzk5MzY4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2401/azureAsyncOperation/3e80deb0-f4ff-409e-a253-312600c1bfd6?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNDAxL2F6dXJlQXN5bmNPcGVyYXRpb24vM2U4MGRlYjAtZjRmZi00MDllLWEyNTMtMzEyNjAwYzFiZmQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1712bbbe-304f-499b-ad73-2aafe3399368\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3e80deb0-f4ff-409e-a253-312600c1bfd6\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1154,7 +1154,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:56:47 GMT" + "Fri, 24 Feb 2017 18:34:22 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1166,7 +1166,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "587a526b-985e-47a0-b2e0-80973c7e8f0c" + "fde3eda6-15e6-4674-a5d7-39fef15ec986" ], "X-Content-Type-Options": [ "nosniff" @@ -1178,32 +1178,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187/azureAsyncOperation/1712bbbe-304f-499b-ad73-2aafe3399368?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2401/azureAsyncOperation/3e80deb0-f4ff-409e-a253-312600c1bfd6?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14995" ], "x-ms-correlation-request-id": [ - "153271d4-72b3-4761-8ee5-3aa4ba725a28" + "2fd2760d-5dcd-480c-a9e7-9f79600423fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005647Z:153271d4-72b3-4761-8ee5-3aa4ba725a28" + "WESTUS2:20170224T183422Z:2fd2760d-5dcd-480c-a9e7-9f79600423fc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05MTg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2401?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187\",\r\n \"name\": \"sqlcrudtest-9187\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"200216b2-dc19-4866-85aa-f73fe4a1ebac\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T00:56:19.2Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:06:29.78Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2401\",\r\n \"name\": \"sqlcrudtest-2401\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"bc2a7e3a-0f97-4c62-8715-45bc6f1df584\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:33:53.883Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:44:06.19Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1212,7 +1212,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:56:48 GMT" + "Fri, 24 Feb 2017 18:34:23 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1224,7 +1224,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3193552e-cb06-410f-a12f-f8006ce64c82" + "ba0291fe-3375-421b-abca-a8beb6dd64e4" ], "X-Content-Type-Options": [ "nosniff" @@ -1236,32 +1236,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14994" ], "x-ms-correlation-request-id": [ - "84d23213-4db7-42a2-aa1d-e5ce962cff4e" + "0b04f529-d20d-4aa5-b8e8-da901a49ea19" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005648Z:84d23213-4db7-42a2-aa1d-e5ce962cff4e" + "WESTUS2:20170224T183423Z:0b04f529-d20d-4aa5-b8e8-da901a49ea19" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-7993?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03OTkzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-6775?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02Nzc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c24c45-78e0-4679-bd0e-a533a465ca2e" + "ea0b659e-ac25-4988-bb9e-97a6448ee976" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1276,13 +1276,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:56:51 GMT" + "Fri, 24 Feb 2017 18:34:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b4e699b2-a26f-4e88-b816-35285fcb3d4e" + "97437cb8-66f6-418d-800d-b886c16ba019" ], "X-Content-Type-Options": [ "nosniff" @@ -1294,32 +1294,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1199" ], "x-ms-correlation-request-id": [ - "75deb54a-e2cb-4b64-abb5-449fb179b76e" + "38132fc3-2f93-457c-b1ee-a8d2e9bf79ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005651Z:75deb54a-e2cb-4b64-abb5-449fb179b76e" + "WESTUS2:20170224T183427Z:38132fc3-2f93-457c-b1ee-a8d2e9bf79ac" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-311?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2215?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yMjE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68259711-f31d-4a8b-bc5c-6c76eb14654a" + "02d80b4b-a40d-4f5b-b749-4139d5f2f217" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1334,13 +1334,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:56:54 GMT" + "Fri, 24 Feb 2017 18:34:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f4c9afef-e0e1-4c5d-8b72-9bd4f195511c" + "f38ab996-e7e7-4e76-af81-bb2c6b967e08" ], "X-Content-Type-Options": [ "nosniff" @@ -1352,32 +1352,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1198" ], "x-ms-correlation-request-id": [ - "9a8ade83-a598-43b9-bfd3-25ec5b1a94d6" + "2d0d6fef-3512-42b8-96a5-55dc69c2475d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005654Z:9a8ade83-a598-43b9-bfd3-25ec5b1a94d6" + "WESTUS2:20170224T183434Z:2d0d6fef-3512-42b8-96a5-55dc69c2475d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-331?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-3553?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNTUzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1826fa25-0192-4aa4-8967-85ac961cbbe8" + "9f5cde19-f7ab-4745-8b44-bfc123192996" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1392,13 +1392,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:57:01 GMT" + "Fri, 24 Feb 2017 18:34:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "52d265cd-16ec-4b29-a8a6-3e6977ca89eb" + "1af348f4-4179-47a3-b51b-8c0a22d24cdf" ], "X-Content-Type-Options": [ "nosniff" @@ -1410,32 +1410,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1197" ], "x-ms-correlation-request-id": [ - "acd6f51b-268d-4de4-a24f-deb2fd90f0bf" + "2d4ab257-60d7-4365-81e4-821abba54500" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005701Z:acd6f51b-268d-4de4-a24f-deb2fd90f0bf" + "WESTUS2:20170224T183442Z:2d4ab257-60d7-4365-81e4-821abba54500" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-8505?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04NTA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-1897?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xODk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb9b6756-6f7a-4c0c-98a8-dfc0534a0e30" + "7ca4c398-e78e-4f32-9850-21ff1da5408d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1450,13 +1450,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:57:08 GMT" + "Fri, 24 Feb 2017 18:34:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1cdf4fab-d992-4e2b-b21e-a0779b37bfdf" + "f558b410-1c22-4b96-ba24-94e99725c5fa" ], "X-Content-Type-Options": [ "nosniff" @@ -1468,32 +1468,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1196" ], "x-ms-correlation-request-id": [ - "18990ef1-90e7-4e66-9e03-dbb3887ca662" + "95593a6b-f7b8-423b-8f06-b0877d27dcaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005708Z:18990ef1-90e7-4e66-9e03-dbb3887ca662" + "WESTUS2:20170224T183449Z:95593a6b-f7b8-423b-8f06-b0877d27dcaf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6852/providers/Microsoft.Sql/servers/sqlcrudtest-2080/databases/sqlcrudtest-9187?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMDgwL2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05MTg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5281/providers/Microsoft.Sql/servers/sqlcrudtest-7986/databases/sqlcrudtest-2401?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03OTg2L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "617e5b9f-b787-4b46-82b8-1a0adaaedc43" + "1dfa711e-7176-41d5-bcfb-0a019a5e73ec" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1508,13 +1508,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:57:16 GMT" + "Fri, 24 Feb 2017 18:34:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3acd5a55-3426-46f9-862f-420b4bf0f090" + "b34e150f-aeed-4328-b449-a3529108fbe7" ], "X-Content-Type-Options": [ "nosniff" @@ -1526,25 +1526,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1195" ], "x-ms-correlation-request-id": [ - "0749a6af-8bb6-4b36-b137-212720f7240c" + "acca7906-00ca-4281-a7a1-c88861e0a5ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005717Z:0749a6af-8bb6-4b36-b137-212720f7240c" + "WESTUS2:20170224T183457Z:acca7906-00ca-4281-a7a1-c88861e0a5ff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6852?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY4NTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-5281?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTUyODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0141bdfb-43b4-4843-be93-325e0cea3120" + "87cc9cde-94ed-4121-9980-65fe545dc42a" ], "accept-language": [ "en-US" @@ -1566,28 +1566,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:57:18 GMT" + "Fri, 24 Feb 2017 18:34:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NTItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUyODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1194" ], "x-ms-request-id": [ - "6651640d-cc37-4c2f-bfb9-95b606db3fef" + "3cf01e2b-9a5c-4449-b13e-544e41f0666b" ], "x-ms-correlation-request-id": [ - "6651640d-cc37-4c2f-bfb9-95b606db3fef" + "3cf01e2b-9a5c-4449-b13e-544e41f0666b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005718Z:6651640d-cc37-4c2f-bfb9-95b606db3fef" + "WESTUS2:20170224T183459Z:3cf01e2b-9a5c-4449-b13e-544e41f0666b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,8 +1596,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NTItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTROVEl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUyODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVXlPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1618,28 +1618,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:57:48 GMT" + "Fri, 24 Feb 2017 18:35:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NTItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUyODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14986" ], "x-ms-request-id": [ - "856c7c16-cdd2-4c61-a2a2-fa96300a24fb" + "44257a74-83de-40a7-af4e-4b000df1b754" ], "x-ms-correlation-request-id": [ - "856c7c16-cdd2-4c61-a2a2-fa96300a24fb" + "44257a74-83de-40a7-af4e-4b000df1b754" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005748Z:856c7c16-cdd2-4c61-a2a2-fa96300a24fb" + "WESTUS2:20170224T183530Z:44257a74-83de-40a7-af4e-4b000df1b754" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1648,8 +1648,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NTItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTROVEl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUyODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVXlPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1670,28 +1670,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:58:18 GMT" + "Fri, 24 Feb 2017 18:35:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NTItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUyODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14985" ], "x-ms-request-id": [ - "0a409fbb-e18f-430c-ac2a-d4c2ae380d49" + "585fb0a7-f8e7-49b0-882b-8f0757a87be9" ], "x-ms-correlation-request-id": [ - "0a409fbb-e18f-430c-ac2a-d4c2ae380d49" + "585fb0a7-f8e7-49b0-882b-8f0757a87be9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005819Z:0a409fbb-e18f-430c-ac2a-d4c2ae380d49" + "WESTUS2:20170224T183600Z:585fb0a7-f8e7-49b0-882b-8f0757a87be9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1700,8 +1700,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NTItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTROVEl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUyODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVXlPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1722,28 +1722,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:58:48 GMT" + "Fri, 24 Feb 2017 18:36:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NTItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUyODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14992" ], "x-ms-request-id": [ - "84b7050d-d711-48b5-b236-acc74927ef10" + "3837be46-fd71-42ef-96c3-b848cdea46fb" ], "x-ms-correlation-request-id": [ - "84b7050d-d711-48b5-b236-acc74927ef10" + "3837be46-fd71-42ef-96c3-b848cdea46fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005849Z:84b7050d-d711-48b5-b236-acc74927ef10" + "WESTUS2:20170224T183630Z:3837be46-fd71-42ef-96c3-b848cdea46fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1752,8 +1752,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NTItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTROVEl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUyODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVXlPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1774,22 +1774,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:59:19 GMT" + "Fri, 24 Feb 2017 18:37:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14991" ], "x-ms-request-id": [ - "b0a0f7b7-e584-4375-8b7b-d985d6480c96" + "4eb731ac-2f0d-48c9-8878-f55e4da6a761" ], "x-ms-correlation-request-id": [ - "b0a0f7b7-e584-4375-8b7b-d985d6480c96" + "4eb731ac-2f0d-48c9-8878-f55e4da6a761" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005919Z:b0a0f7b7-e584-4375-8b7b-d985d6480c96" + "WESTUS2:20170224T183701Z:4eb731ac-2f0d-48c9-8878-f55e4da6a761" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,17 +1800,17 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-6852" + "sqlcrudtest-5281" ], "RunTestInNewV12Server": [ - "sqlcrudtest-2080" + "sqlcrudtest-7986" ], "TestCreateDropDatabase": [ - "sqlcrudtest-7993", - "sqlcrudtest-311", - "sqlcrudtest-331", - "sqlcrudtest-8505", - "sqlcrudtest-9187" + "sqlcrudtest-6775", + "sqlcrudtest-2215", + "sqlcrudtest-3553", + "sqlcrudtest-1897", + "sqlcrudtest-2401" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json index 4acfccfe6a25..f685b85a2202 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6845?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY4NDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/sqlcrudtest-5681?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU2ODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-6845\": \"2017-02-10 00:59:24Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-5681\": \"2017-02-27 23:18:46Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,7 +13,7 @@ "99" ], "x-ms-client-request-id": [ - "63eae558-908e-4d55-9abb-d5a1858e83c5" + "3d3c3e75-cce9-4cba-880e-a84e43baa15e" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845\",\r\n \"name\": \"sqlcrudtest-6845\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-6845\": \"2017-02-10 00:59:24Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681\",\r\n \"name\": \"sqlcrudtest-5681\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-5681\": \"2017-02-27 23:18:46Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "239" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:59:25 GMT" + "Mon, 27 Feb 2017 23:18:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "b87c101d-b126-4bfe-98d1-af275dfeb557" + "09501a15-131f-48dd-b4c0-5133ad9b584b" ], "x-ms-correlation-request-id": [ - "b87c101d-b126-4bfe-98d1-af275dfeb557" + "09501a15-131f-48dd-b4c0-5133ad9b584b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005926Z:b87c101d-b126-4bfe-98d1-af275dfeb557" + "WESTUS2:20170227T231847Z:09501a15-131f-48dd-b4c0-5133ad9b584b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "216" ], "x-ms-client-request-id": [ - "e8f4b697-671e-4e56-9429-e1f126d52f6b" + "d8e3698e-f40a-4242-a490-99bc8f9c4cbc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177\",\r\n \"name\": \"sqlcrudtest-7177\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-7177.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318\",\r\n \"name\": \"sqlcrudtest-318\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-318.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "524" + "521" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:00:16 GMT" + "Mon, 27 Feb 2017 23:19:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7856e46b-cf8b-4a4f-9d70-190a08b42db5" + "f182b7d6-bf93-4b2d-b065-fafdbcfd21f0" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "643c6ea2-4e40-405b-bc9e-5b8460062fa4" + "81187e8c-9e93-4c9d-b3fc-0d6b4267dfe6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010017Z:643c6ea2-4e40-405b-bc9e-5b8460062fa4" + "WESTUS2:20170227T231923Z:81187e8c-9e93-4c9d-b3fc-0d6b4267dfe6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNzg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTE4NTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "32" ], "x-ms-client-request-id": [ - "dc5ed419-cceb-4b56-9900-648206548dc4" + "9a5f80b9-67b1-4255-a08e-f5348a97d998" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T17:00:20.785-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-27T15:19:26.08-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:00:18 GMT" + "Mon, 27 Feb 2017 23:19:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788/operationResults/f8782e97-edbb-4ad5-8a42-c295fb6087e1?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856/operationResults/331b41a7-918c-44c6-80c3-58688e07ee25?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f8782e97-edbb-4ad5-8a42-c295fb6087e1" + "331b41a7-918c-44c6-80c3-58688e07ee25" ], "X-Content-Type-Options": [ "nosniff" @@ -190,33 +190,48 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788/azureAsyncOperation/f8782e97-edbb-4ad5-8a42-c295fb6087e1?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856/azureAsyncOperation/331b41a7-918c-44c6-80c3-58688e07ee25?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "28962d15-3e78-4892-bd9b-2772075ebfe6" + "2e808ea6-62df-40cd-aa05-583d05ac8f6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010018Z:28962d15-3e78-4892-bd9b-2772075ebfe6" + "WESTUS2:20170227T231924Z:2e808ea6-62df-40cd-aa05-583d05ac8f6e" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788/azureAsyncOperation/f8782e97-edbb-4ad5-8a42-c295fb6087e1?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNzg4L2F6dXJlQXN5bmNPcGVyYXRpb24vZjg3ODJlOTctZWRiYi00YWQ1LThhNDItYzI5NWZiNjA4N2UxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTI3ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "2f2dce54-10cd-4379-96fb-5b5ca38480dd" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f8782e97-edbb-4ad5-8a42-c295fb6087e1\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-27T15:19:25.368-08:00\"\r\n}", "ResponseHeaders": { + "Content-Length": [ + "80" + ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], @@ -224,23 +239,26 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:00:49 GMT" + "Mon, 27 Feb 2017 23:19:24 GMT" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783/operationResults/73c27e8c-85ee-4521-ba90-94572e6045d7?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "93789bcb-08c0-4336-a067-4ed2d8731e85" + "73c27e8c-85ee-4521-ba90-94572e6045d7" ], "X-Content-Type-Options": [ "nosniff" ], + "Preference-Applied": [ + "return-content" + ], "DataServiceVersion": [ "3.0;" ], @@ -248,33 +266,48 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788/azureAsyncOperation/f8782e97-edbb-4ad5-8a42-c295fb6087e1?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783/azureAsyncOperation/73c27e8c-85ee-4521-ba90-94572e6045d7?api-version=2014-04-01-Preview" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "511c7b3c-d310-4f5f-be74-b6ae304c91c6" + "ed43908f-cf69-4c96-9480-8204a3bfb44b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010049Z:511c7b3c-d310-4f5f-be74-b6ae304c91c6" + "WESTUS2:20170227T231925Z:ed43908f-cf69-4c96-9480-8204a3bfb44b" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788/azureAsyncOperation/f8782e97-edbb-4ad5-8a42-c295fb6087e1?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNzg4L2F6dXJlQXN5bmNPcGVyYXRpb24vZjg3ODJlOTctZWRiYi00YWQ1LThhNDItYzI5NWZiNjA4N2UxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTc4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "32d8ed69-bc77-4bcb-863e-625b994c56c9" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f8782e97-edbb-4ad5-8a42-c295fb6087e1\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-27T15:19:26.066-08:00\"\r\n}", "ResponseHeaders": { + "Content-Length": [ + "80" + ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], @@ -282,23 +315,102 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:01:19 GMT" + "Mon, 27 Feb 2017 23:19:24 GMT" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851/operationResults/4d033664-7633-4a26-aea4-8ee22cfc063d?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" + "x-ms-request-id": [ + "4d033664-7633-4a26-aea4-8ee22cfc063d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851/azureAsyncOperation/4d033664-7633-4a26-aea4-8ee22cfc063d?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e0eae4db-9387-4f29-a743-4f27aeae8205" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170227T231925Z:e0eae4db-9387-4f29-a743-4f27aeae8205" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTcyNjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "84c458fe-59c0-4d21-ae9b-b462b4205dfc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-27T15:19:26.055-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Mon, 27 Feb 2017 23:19:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268/operationResults/f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3992e76b-7a36-4059-b5ea-3710bcf7a03e" + "f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f" ], "X-Content-Type-Options": [ "nosniff" ], + "Preference-Applied": [ + "return-content" + ], "DataServiceVersion": [ "3.0;" ], @@ -306,32 +418,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788/azureAsyncOperation/f8782e97-edbb-4ad5-8a42-c295fb6087e1?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268/azureAsyncOperation/f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f?api-version=2014-04-01-Preview" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "55306c3a-7aea-4454-8de0-a6106510c3ec" + "ac5d8780-fe25-4110-b4e6-8c7550c17770" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010120Z:55306c3a-7aea-4454-8de0-a6106510c3ec" + "WESTUS2:20170227T231925Z:ac5d8780-fe25-4110-b4e6-8c7550c17770" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNzg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856/azureAsyncOperation/331b41a7-918c-44c6-80c3-58688e07ee25?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTE4NTYvYXp1cmVBc3luY09wZXJhdGlvbi8zMzFiNDFhNy05MThjLTQ0YzYtODBjMy01ODY4OGUwN2VlMjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788\",\r\n \"name\": \"sqlcrudtest-2788\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d63e118b-41cf-49b9-8dac-aa6ef6f91731\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:00:21.067Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:10:52.25Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"331b41a7-918c-44c6-80c3-58688e07ee25\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -340,7 +452,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:01:20 GMT" + "Mon, 27 Feb 2017 23:19:55 GMT" ], "Transfer-Encoding": [ "chunked" @@ -352,7 +464,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0e8472e7-923c-4523-bf7c-878375db04e3" + "3431c4af-eaea-4775-8c77-39f14d9b1d4b" ], "X-Content-Type-Options": [ "nosniff" @@ -363,36 +475,33 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856/azureAsyncOperation/331b41a7-918c-44c6-80c3-58688e07ee25?api-version=2014-04-01-Preview" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14996" ], "x-ms-correlation-request-id": [ - "a6b50f46-8fea-4b68-82c3-70d61b9b60b2" + "a1c60630-1ed5-4904-858d-9ceb58385bd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010121Z:a6b50f46-8fea-4b68-82c3-70d61b9b60b2" + "WESTUS2:20170227T231955Z:a1c60630-1ed5-4904-858d-9ceb58385bd8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yNzg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856/azureAsyncOperation/331b41a7-918c-44c6-80c3-58688e07ee25?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTE4NTYvYXp1cmVBc3luY09wZXJhdGlvbi8zMzFiNDFhNy05MThjLTQ0YzYtODBjMy01ODY4OGUwN2VlMjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4c76be4e-ebaf-43e7-95aa-626c13974302" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788\",\r\n \"name\": \"sqlcrudtest-2788\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d63e118b-41cf-49b9-8dac-aa6ef6f91731\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:00:21.067Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:10:52.25Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"331b41a7-918c-44c6-80c3-58688e07ee25\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -401,7 +510,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:33 GMT" + "Mon, 27 Feb 2017 23:20:26 GMT" ], "Transfer-Encoding": [ "chunked" @@ -413,7 +522,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c13f5711-1083-4886-8587-9aa39508719b" + "8175c4e5-3045-4d78-8e2d-eec3032c7e0a" ], "X-Content-Type-Options": [ "nosniff" @@ -424,46 +533,34 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856/azureAsyncOperation/331b41a7-918c-44c6-80c3-58688e07ee25?api-version=2014-04-01-Preview" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14996" ], "x-ms-correlation-request-id": [ - "ba28869c-cb85-4975-8b91-36d0b5b17776" + "c6c544dc-7a4b-4c4d-8f48-b0fb82ee5756" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010434Z:ba28869c-cb85-4975-8b91-36d0b5b17776" + "WESTUS2:20170227T232026Z:c6c544dc-7a4b-4c4d-8f48-b0fb82ee5756" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05ODg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783/azureAsyncOperation/73c27e8c-85ee-4521-ba90-94572e6045d7?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTI3ODMvYXp1cmVBc3luY09wZXJhdGlvbi83M2MyN2U4Yy04NWVlLTQ1MjEtYmE5MC05NDU3MmU2MDQ1ZDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "32" - ], - "x-ms-client-request-id": [ - "8e4c5c2b-2e9f-4f58-a881-23cdc114a228" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T17:01:25.109-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"73c27e8c-85ee-4521-ba90-94572e6045d7\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { - "Content-Length": [ - "80" - ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], @@ -471,26 +568,23 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:01:22 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888/operationResults/1877b46d-56aa-4825-b047-0c9bbb72429a?api-version=2014-04-01-Preview" + "Mon, 27 Feb 2017 23:19:55 GMT" ], - "Retry-After": [ - "30" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "1877b46d-56aa-4825-b047-0c9bbb72429a" + "d3a70d8d-6a33-487e-a29c-9186ebfb1416" ], "X-Content-Type-Options": [ "nosniff" ], - "Preference-Applied": [ - "return-content" - ], "DataServiceVersion": [ "3.0;" ], @@ -498,32 +592,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888/azureAsyncOperation/1877b46d-56aa-4825-b047-0c9bbb72429a?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783/azureAsyncOperation/73c27e8c-85ee-4521-ba90-94572e6045d7?api-version=2014-04-01-Preview" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], "x-ms-correlation-request-id": [ - "04a037f9-e54d-44b4-a73f-a0f62614ee63" + "89bfcc43-a9a9-4957-b1a3-9382cd088834" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010123Z:04a037f9-e54d-44b4-a73f-a0f62614ee63" + "WESTUS2:20170227T231956Z:89bfcc43-a9a9-4957-b1a3-9382cd088834" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888/azureAsyncOperation/1877b46d-56aa-4825-b047-0c9bbb72429a?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05ODg4L2F6dXJlQXN5bmNPcGVyYXRpb24vMTg3N2I0NmQtNTZhYS00ODI1LWIwNDctMGM5YmJiNzI0MjlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783/azureAsyncOperation/73c27e8c-85ee-4521-ba90-94572e6045d7?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTI3ODMvYXp1cmVBc3luY09wZXJhdGlvbi83M2MyN2U4Yy04NWVlLTQ1MjEtYmE5MC05NDU3MmU2MDQ1ZDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1877b46d-56aa-4825-b047-0c9bbb72429a\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"73c27e8c-85ee-4521-ba90-94572e6045d7\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -532,7 +626,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:01:53 GMT" + "Mon, 27 Feb 2017 23:20:26 GMT" ], "Transfer-Encoding": [ "chunked" @@ -544,7 +638,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "78063943-bc3f-4d4b-a7a0-86a3b78e4a80" + "6e0aab8e-b13a-41ff-a261-ea4664cceb82" ], "X-Content-Type-Options": [ "nosniff" @@ -556,32 +650,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888/azureAsyncOperation/1877b46d-56aa-4825-b047-0c9bbb72429a?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783/azureAsyncOperation/73c27e8c-85ee-4521-ba90-94572e6045d7?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14995" ], "x-ms-correlation-request-id": [ - "baf155b7-c6e4-4245-8178-5e620b0586ce" + "e64f8403-2d2d-4569-9438-144866943326" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010153Z:baf155b7-c6e4-4245-8178-5e620b0586ce" + "WESTUS2:20170227T232027Z:e64f8403-2d2d-4569-9438-144866943326" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888/azureAsyncOperation/1877b46d-56aa-4825-b047-0c9bbb72429a?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05ODg4L2F6dXJlQXN5bmNPcGVyYXRpb24vMTg3N2I0NmQtNTZhYS00ODI1LWIwNDctMGM5YmJiNzI0MjlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851/azureAsyncOperation/4d033664-7633-4a26-aea4-8ee22cfc063d?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTc4NTEvYXp1cmVBc3luY09wZXJhdGlvbi80ZDAzMzY2NC03NjMzLTRhMjYtYWVhNC04ZWUyMmNmYzA2M2Q/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1877b46d-56aa-4825-b047-0c9bbb72429a\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4d033664-7633-4a26-aea4-8ee22cfc063d\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -590,7 +684,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:02:24 GMT" + "Mon, 27 Feb 2017 23:19:56 GMT" ], "Transfer-Encoding": [ "chunked" @@ -602,7 +696,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2ba72a49-3b0f-4c40-984c-2bdfcb5f7c1f" + "21863ed1-1f30-44f0-9d43-d96d2d96625a" ], "X-Content-Type-Options": [ "nosniff" @@ -614,32 +708,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888/azureAsyncOperation/1877b46d-56aa-4825-b047-0c9bbb72429a?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851/azureAsyncOperation/4d033664-7633-4a26-aea4-8ee22cfc063d?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14992" ], "x-ms-correlation-request-id": [ - "d931c1e4-3c3a-49b7-b154-94ad7156985e" + "f77d6c33-e1e5-4c4e-933b-6242ea0348ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010224Z:d931c1e4-3c3a-49b7-b154-94ad7156985e" + "WESTUS2:20170227T231956Z:f77d6c33-e1e5-4c4e-933b-6242ea0348ca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05ODg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851/azureAsyncOperation/4d033664-7633-4a26-aea4-8ee22cfc063d?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTc4NTEvYXp1cmVBc3luY09wZXJhdGlvbi80ZDAzMzY2NC03NjMzLTRhMjYtYWVhNC04ZWUyMmNmYzA2M2Q/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888\",\r\n \"name\": \"sqlcrudtest-9888\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"59daf4ad-082f-4ac5-b38a-ed656b937980\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:01:25.347Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:12:05.303Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4d033664-7633-4a26-aea4-8ee22cfc063d\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -648,7 +742,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:02:24 GMT" + "Mon, 27 Feb 2017 23:20:26 GMT" ], "Transfer-Encoding": [ "chunked" @@ -660,7 +754,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f324472-0413-41f9-9578-cb2b3707fbc6" + "70bff5e2-d5e5-42c6-a184-3d2e899051bf" ], "X-Content-Type-Options": [ "nosniff" @@ -671,36 +765,33 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851/azureAsyncOperation/4d033664-7633-4a26-aea4-8ee22cfc063d?api-version=2014-04-01-Preview" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14992" ], "x-ms-correlation-request-id": [ - "9f88156b-eb36-46ed-8a9a-7f59e36a4fdd" + "d362178e-236b-465d-85d7-ddf9a65fd6ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010225Z:9f88156b-eb36-46ed-8a9a-7f59e36a4fdd" + "WESTUS2:20170227T232027Z:d362178e-236b-465d-85d7-ddf9a65fd6ea" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05ODg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268/azureAsyncOperation/f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTcyNjgvYXp1cmVBc3luY09wZXJhdGlvbi9mNWRkODdiOC0wYzRhLTRiYmEtOWZjNC01YThiNjFiMzA2NGY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "87623329-6281-4a27-84a8-2d4435d0db1c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888\",\r\n \"name\": \"sqlcrudtest-9888\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"59daf4ad-082f-4ac5-b38a-ed656b937980\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:01:25.347Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:12:05.303Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -709,7 +800,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:34 GMT" + "Mon, 27 Feb 2017 23:19:56 GMT" ], "Transfer-Encoding": [ "chunked" @@ -721,7 +812,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "df51c308-0b5f-4a3b-8f26-f44c87a3236c" + "c7f267d4-eede-4a68-b312-8db4295df276" ], "X-Content-Type-Options": [ "nosniff" @@ -732,46 +823,34 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268/azureAsyncOperation/f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f?api-version=2014-04-01-Preview" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14995" ], "x-ms-correlation-request-id": [ - "2655fc31-8e38-4630-993e-8bd1ded4477d" + "0698c195-604d-4a65-89e3-9e90a8f90f64" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010435Z:2655fc31-8e38-4630-993e-8bd1ded4477d" + "WESTUS2:20170227T231956Z:0698c195-604d-4a65-89e3-9e90a8f90f64" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02ODc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268/azureAsyncOperation/f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTcyNjgvYXp1cmVBc3luY09wZXJhdGlvbi9mNWRkODdiOC0wYzRhLTRiYmEtOWZjNC01YThiNjFiMzA2NGY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "32" - ], - "x-ms-client-request-id": [ - "1ae2b7c8-6a99-486d-9573-e0431d1da074" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T17:02:28.571-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { - "Content-Length": [ - "80" - ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], @@ -779,26 +858,23 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:02:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877/operationResults/3b53bcc7-94f7-443d-a831-7309c8614143?api-version=2014-04-01-Preview" + "Mon, 27 Feb 2017 23:20:26 GMT" ], - "Retry-After": [ - "30" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "3b53bcc7-94f7-443d-a831-7309c8614143" + "cf4a4fe1-471c-4dd2-a19e-dae4ef553f1e" ], "X-Content-Type-Options": [ "nosniff" ], - "Preference-Applied": [ - "return-content" - ], "DataServiceVersion": [ "3.0;" ], @@ -806,32 +882,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877/azureAsyncOperation/3b53bcc7-94f7-443d-a831-7309c8614143?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268/azureAsyncOperation/f5dd87b8-0c4a-4bba-9fc4-5a8b61b3064f?api-version=2014-04-01-Preview" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" ], "x-ms-correlation-request-id": [ - "6f2b5a42-a924-4166-b66e-7c73152aba3b" + "5baeddad-fb50-4b5a-afc1-aa9760ca7d6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010227Z:6f2b5a42-a924-4166-b66e-7c73152aba3b" + "WESTUS2:20170227T232027Z:5baeddad-fb50-4b5a-afc1-aa9760ca7d6a" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877/azureAsyncOperation/3b53bcc7-94f7-443d-a831-7309c8614143?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02ODc3L2F6dXJlQXN5bmNPcGVyYXRpb24vM2I1M2JjYzctOTRmNy00NDNkLWE4MzEtNzMwOWM4NjE0MTQzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTE4NTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3b53bcc7-94f7-443d-a831-7309c8614143\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856\",\r\n \"name\": \"sqlcrudtest-1856\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"218a7297-01cc-4ca4-8e91-37d59432e463\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.457Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:05.2Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -840,7 +916,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:02:57 GMT" + "Mon, 27 Feb 2017 23:20:27 GMT" ], "Transfer-Encoding": [ "chunked" @@ -852,7 +928,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6b354cfe-a670-47c7-b6bd-fe9276fdaffe" + "434d4022-aa63-43e7-a465-f33e97df5975" ], "X-Content-Type-Options": [ "nosniff" @@ -863,33 +939,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877/azureAsyncOperation/3b53bcc7-94f7-443d-a831-7309c8614143?api-version=2014-04-01-Preview" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14995" ], "x-ms-correlation-request-id": [ - "4179f59d-bc6e-497a-9771-a58ddecef1a1" + "487fafee-1310-4e8c-a984-2442c4565c67" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010258Z:4179f59d-bc6e-497a-9771-a58ddecef1a1" + "WESTUS2:20170227T232027Z:487fafee-1310-4e8c-a984-2442c4565c67" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877/azureAsyncOperation/3b53bcc7-94f7-443d-a831-7309c8614143?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02ODc3L2F6dXJlQXN5bmNPcGVyYXRpb24vM2I1M2JjYzctOTRmNy00NDNkLWE4MzEtNzMwOWM4NjE0MTQzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTE4NTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8007894c-c978-4a71-a2fb-32b0268e20f2" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3b53bcc7-94f7-443d-a831-7309c8614143\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856\",\r\n \"name\": \"sqlcrudtest-1856\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"218a7297-01cc-4ca4-8e91-37d59432e463\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.457Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:05.2Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -898,7 +977,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:03:28 GMT" + "Mon, 27 Feb 2017 23:20:28 GMT" ], "Transfer-Encoding": [ "chunked" @@ -910,7 +989,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aab18127-7c12-4c9d-8025-9e5edf755632" + "fdbe66e6-d3b7-4e08-80a1-f7b64fbeb75c" ], "X-Content-Type-Options": [ "nosniff" @@ -921,33 +1000,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877/azureAsyncOperation/3b53bcc7-94f7-443d-a831-7309c8614143?api-version=2014-04-01-Preview" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14994" ], "x-ms-correlation-request-id": [ - "d2a7fbd6-9f72-4a73-8d12-31f5f8e4b222" + "3751cffd-6609-4c43-a328-d038e13c959f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010328Z:d2a7fbd6-9f72-4a73-8d12-31f5f8e4b222" + "WESTUS2:20170227T232028Z:3751cffd-6609-4c43-a328-d038e13c959f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02ODc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTI3ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877\",\r\n \"name\": \"sqlcrudtest-6877\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"40ac16e8-855c-439c-b495-c97e918a771c\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:02:28.853Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:13:21.66Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783\",\r\n \"name\": \"sqlcrudtest-2783\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0580ec24-e3bb-4be0-97e7-15074c954535\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:25.633Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:06.767Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -956,7 +1032,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:03:29 GMT" + "Mon, 27 Feb 2017 23:20:27 GMT" ], "Transfer-Encoding": [ "chunked" @@ -968,7 +1044,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "338a7720-c656-48c8-9780-51cd9c88abe8" + "cc0a8579-2678-43c2-a54d-19d38b418fc3" ], "X-Content-Type-Options": [ "nosniff" @@ -980,35 +1056,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14994" ], "x-ms-correlation-request-id": [ - "69e5713e-64f7-4749-8346-966a6307b3ca" + "08983613-4e01-4fa6-82d9-4d032f4f2e19" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010329Z:69e5713e-64f7-4749-8346-966a6307b3ca" + "WESTUS2:20170227T232027Z:08983613-4e01-4fa6-82d9-4d032f4f2e19" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02ODc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTI3ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1bf44a9-2c83-4fdf-9a10-2ad729207fbd" + "87bd6614-6d4d-47fc-934d-6a3742f75322" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877\",\r\n \"name\": \"sqlcrudtest-6877\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"40ac16e8-855c-439c-b495-c97e918a771c\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:02:28.853Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:13:21.66Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783\",\r\n \"name\": \"sqlcrudtest-2783\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0580ec24-e3bb-4be0-97e7-15074c954535\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:25.633Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:06.767Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1017,7 +1093,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:35 GMT" + "Mon, 27 Feb 2017 23:20:29 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1029,7 +1105,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6a96f25e-6d81-4f8d-bb49-92813f685338" + "3bcba468-14c3-4334-a161-959eab1c7fb8" ], "X-Content-Type-Options": [ "nosniff" @@ -1041,45 +1117,30 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14993" ], "x-ms-correlation-request-id": [ - "3db88e3c-6377-481a-9ef1-c2e8fa2812a4" + "ffe1f67e-87f7-4704-b03b-e4ae4d7d6444" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010436Z:3db88e3c-6377-481a-9ef1-c2e8fa2812a4" + "WESTUS2:20170227T232029Z:ffe1f67e-87f7-4704-b03b-e4ae4d7d6444" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xMTQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTc4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "32" - ], - "x-ms-client-request-id": [ - "df981977-2f9c-4791-8c89-798db16aaf60" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T17:03:33.743-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851\",\r\n \"name\": \"sqlcrudtest-7851\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f1859ba5-6a2c-4bdb-9544-5176943e3366\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.44Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:04.213Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "80" - ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], @@ -1087,59 +1148,59 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:03:31 GMT" + "Mon, 27 Feb 2017 23:20:27 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142/operationResults/df6fd7d6-cda1-4809-9579-e856531e6cbb?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "df6fd7d6-cda1-4809-9579-e856531e6cbb" + "6c9f1944-ff98-4386-aa65-4df368ceb92d" ], "X-Content-Type-Options": [ "nosniff" ], - "Preference-Applied": [ - "return-content" - ], "DataServiceVersion": [ "3.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142/azureAsyncOperation/df6fd7d6-cda1-4809-9579-e856531e6cbb?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], "x-ms-correlation-request-id": [ - "3cfa3394-1ca4-4053-8099-65928100b78c" + "ae355eca-df30-4744-b13e-d05b44fd04f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010331Z:3cfa3394-1ca4-4053-8099-65928100b78c" + "WESTUS2:20170227T232027Z:ae355eca-df30-4744-b13e-d05b44fd04f8" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142/azureAsyncOperation/df6fd7d6-cda1-4809-9579-e856531e6cbb?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xMTQyL2F6dXJlQXN5bmNPcGVyYXRpb24vZGY2ZmQ3ZDYtY2RhMS00ODA5LTk1NzktZTg1NjUzMWU2Y2JiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTc4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dcdd9e00-00cd-4f84-b508-456cd563900f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"df6fd7d6-cda1-4809-9579-e856531e6cbb\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851\",\r\n \"name\": \"sqlcrudtest-7851\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f1859ba5-6a2c-4bdb-9544-5176943e3366\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.44Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:04.213Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1148,7 +1209,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:01 GMT" + "Mon, 27 Feb 2017 23:20:30 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1160,7 +1221,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "68a3ff38-f884-4780-8a0f-9301e39b823c" + "2a38ad3f-c293-4412-9961-554af0506d9b" ], "X-Content-Type-Options": [ "nosniff" @@ -1171,33 +1232,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142/azureAsyncOperation/df6fd7d6-cda1-4809-9579-e856531e6cbb?api-version=2014-04-01-Preview" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14990" ], "x-ms-correlation-request-id": [ - "7dc5bc3e-fc4d-4575-9a2c-f6b5b5f5543b" + "99200e59-2e3e-46fd-b3c0-464626ec9a0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010402Z:7dc5bc3e-fc4d-4575-9a2c-f6b5b5f5543b" + "WESTUS2:20170227T232030Z:99200e59-2e3e-46fd-b3c0-464626ec9a0c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142/azureAsyncOperation/df6fd7d6-cda1-4809-9579-e856531e6cbb?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xMTQyL2F6dXJlQXN5bmNPcGVyYXRpb24vZGY2ZmQ3ZDYtY2RhMS00ODA5LTk1NzktZTg1NjUzMWU2Y2JiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTcyNjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"df6fd7d6-cda1-4809-9579-e856531e6cbb\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268\",\r\n \"name\": \"sqlcrudtest-7268\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ee27767f-a1e4-4c69-904f-82480243d21e\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.353Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:04.037Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1206,7 +1264,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:32 GMT" + "Mon, 27 Feb 2017 23:20:27 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1218,7 +1276,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "43bfbc9a-86d5-404c-bd40-5ca8945ce3f6" + "7a8d6aee-b7d3-427f-ae10-3697b06e4ae2" ], "X-Content-Type-Options": [ "nosniff" @@ -1229,33 +1287,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142/azureAsyncOperation/df6fd7d6-cda1-4809-9579-e856531e6cbb?api-version=2014-04-01-Preview" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14994" ], "x-ms-correlation-request-id": [ - "92645a72-1ffa-4906-ba37-e93299075bc6" + "d417302e-d00d-4df6-9000-b584c87a1683" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010433Z:92645a72-1ffa-4906-ba37-e93299075bc6" + "WESTUS2:20170227T232028Z:d417302e-d00d-4df6-9000-b584c87a1683" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xMTQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTcyNjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "369cea0f-efcd-4301-a583-a900414bef14" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142\",\r\n \"name\": \"sqlcrudtest-1142\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"11c1813c-52db-4d17-95d7-119eda1850b1\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:03:34.04Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:14:10.233Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268\",\r\n \"name\": \"sqlcrudtest-7268\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ee27767f-a1e4-4c69-904f-82480243d21e\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.353Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:04.037Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1264,7 +1325,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:33 GMT" + "Mon, 27 Feb 2017 23:20:30 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1276,7 +1337,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0452cc1a-5f2b-4fd3-b7ef-70a08ec6b14a" + "00ff6ff3-ede2-4048-8b3c-31241ef3e679" ], "X-Content-Type-Options": [ "nosniff" @@ -1288,35 +1349,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14993" ], "x-ms-correlation-request-id": [ - "4c2a2e77-eea4-481f-a157-5057918ef678" + "317ba1d1-c50c-41b4-a270-815b1154f909" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010433Z:4c2a2e77-eea4-481f-a157-5057918ef678" + "WESTUS2:20170227T232031Z:317ba1d1-c50c-41b4-a270-815b1154f909" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0xMTQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dde8aa2-6699-4dae-bf3b-0046f7ea729a" + "37fcc135-8afd-45d0-b601-8309a21c6dcb" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142\",\r\n \"name\": \"sqlcrudtest-1142\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"11c1813c-52db-4d17-95d7-119eda1850b1\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:03:34.04Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:14:10.233Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"8277aa9c-c909-41df-b5a2-17094768b516\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"32212254720\",\r\n \"creationDate\": \"2017-02-27T23:18:51.463Z\",\r\n \"currentServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveName\": \"System2\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": null,\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856\",\r\n \"name\": \"sqlcrudtest-1856\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"218a7297-01cc-4ca4-8e91-37d59432e463\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.457Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:05.2Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783\",\r\n \"name\": \"sqlcrudtest-2783\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0580ec24-e3bb-4be0-97e7-15074c954535\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:25.633Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:06.767Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268\",\r\n \"name\": \"sqlcrudtest-7268\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ee27767f-a1e4-4c69-904f-82480243d21e\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.353Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:04.037Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851\",\r\n \"name\": \"sqlcrudtest-7851\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f1859ba5-6a2c-4bdb-9544-5176943e3366\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.44Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:04.213Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1325,7 +1386,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:36 GMT" + "Mon, 27 Feb 2017 23:20:31 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1337,7 +1398,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b596e5a3-cf2e-47ed-be19-fb140f4c1142" + "f484a553-0f59-4f63-8404-9a19d1385262" ], "X-Content-Type-Options": [ "nosniff" @@ -1349,35 +1410,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14993" ], "x-ms-correlation-request-id": [ - "99cb5e4d-891d-4e79-ac48-452c2450436e" + "5a85c27a-7174-48bb-bdaa-91027795f236" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010436Z:99cb5e4d-891d-4e79-ac48-452c2450436e" + "WESTUS2:20170227T232031Z:5a85c27a-7174-48bb-bdaa-91027795f236" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03MTc3L2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases?api-version=2014-04-01&$filter=properties%2Fedition%20ne%20'System'", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTgvZGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEmJGZpbHRlcj1wcm9wZXJ0aWVzJTJGZWRpdGlvbiUyMG5lJTIwJTI3U3lzdGVtJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dbceee8-45dd-48ac-aa3a-2e506b67387a" + "d3affea5-3e10-47de-ac0d-b1759822d2ac" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"e760a51c-3dce-4d8c-976b-a2b929a73e08\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"32212254720\",\r\n \"creationDate\": \"2017-02-10T00:59:33.483Z\",\r\n \"currentServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveName\": \"System2\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": null,\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-1142\",\r\n \"name\": \"sqlcrudtest-1142\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"11c1813c-52db-4d17-95d7-119eda1850b1\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:03:34.04Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:14:10.233Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-2788\",\r\n \"name\": \"sqlcrudtest-2788\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d63e118b-41cf-49b9-8dac-aa6ef6f91731\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:00:21.067Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:10:52.25Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-6877\",\r\n \"name\": \"sqlcrudtest-6877\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"40ac16e8-855c-439c-b495-c97e918a771c\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:02:28.853Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:13:21.66Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6845/providers/Microsoft.Sql/servers/sqlcrudtest-7177/databases/sqlcrudtest-9888\",\r\n \"name\": \"sqlcrudtest-9888\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"59daf4ad-082f-4ac5-b38a-ed656b937980\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:01:25.347Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:12:05.303Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-1856\",\r\n \"name\": \"sqlcrudtest-1856\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"218a7297-01cc-4ca4-8e91-37d59432e463\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.457Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:05.2Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-2783\",\r\n \"name\": \"sqlcrudtest-2783\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0580ec24-e3bb-4be0-97e7-15074c954535\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:25.633Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:06.767Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7268\",\r\n \"name\": \"sqlcrudtest-7268\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ee27767f-a1e4-4c69-904f-82480243d21e\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.353Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:04.037Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-5681/providers/Microsoft.Sql/servers/sqlcrudtest-318/databases/sqlcrudtest-7851\",\r\n \"name\": \"sqlcrudtest-7851\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f1859ba5-6a2c-4bdb-9544-5176943e3366\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-27T23:19:26.44Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-27T23:30:04.213Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1386,7 +1447,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:36 GMT" + "Mon, 27 Feb 2017 23:20:32 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1398,7 +1459,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "340d52f3-97b7-44a9-9431-9386e4799012" + "4f111c50-3d1b-4b86-9868-dcd4bc5d6f0a" ], "X-Content-Type-Options": [ "nosniff" @@ -1410,25 +1471,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14992" ], "x-ms-correlation-request-id": [ - "9ade5b65-d1f5-4c1a-9d4b-a378dbea2560" + "7412bd4c-e95f-446d-8180-4736b3f0ed7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010437Z:9ade5b65-d1f5-4c1a-9d4b-a378dbea2560" + "WESTUS2:20170227T232032Z:7412bd4c-e95f-446d-8180-4736b3f0ed7a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6845?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY4NDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/sqlcrudtest-5681?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU2ODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dbb5820-4d23-449b-ae80-0058dae34862" + "ea701756-5f79-461a-81a2-cb634c592c2e" ], "accept-language": [ "en-US" @@ -1450,28 +1511,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:04:39 GMT" + "Mon, 27 Feb 2017 23:20:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "2c67db7d-9671-4d4f-8cc1-f4cdae546e74" + "7cbf49e9-326a-4e0b-9c6c-55b553a514a7" ], "x-ms-correlation-request-id": [ - "2c67db7d-9671-4d4f-8cc1-f4cdae546e74" + "7cbf49e9-326a-4e0b-9c6c-55b553a514a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010439Z:2c67db7d-9671-4d4f-8cc1-f4cdae546e74" + "WESTUS2:20170227T232034Z:7cbf49e9-326a-4e0b-9c6c-55b553a514a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1480,8 +1541,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTRORFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1502,28 +1563,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:05:09 GMT" + "Mon, 27 Feb 2017 23:21:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14992" ], "x-ms-request-id": [ - "34fe31ad-4038-4276-93ab-0e03526c7e6d" + "2ae887f7-a7f1-4828-94d3-91870cbaaa62" ], "x-ms-correlation-request-id": [ - "34fe31ad-4038-4276-93ab-0e03526c7e6d" + "2ae887f7-a7f1-4828-94d3-91870cbaaa62" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010510Z:34fe31ad-4038-4276-93ab-0e03526c7e6d" + "WESTUS2:20170227T232105Z:2ae887f7-a7f1-4828-94d3-91870cbaaa62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1532,8 +1593,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTRORFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1554,28 +1615,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:05:39 GMT" + "Mon, 27 Feb 2017 23:21:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14991" ], "x-ms-request-id": [ - "fd241c9d-a595-47e2-9e39-226513cc6dfb" + "be6d9028-7eaf-45ca-86fa-c3172f1d1afb" ], "x-ms-correlation-request-id": [ - "fd241c9d-a595-47e2-9e39-226513cc6dfb" + "be6d9028-7eaf-45ca-86fa-c3172f1d1afb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010540Z:fd241c9d-a595-47e2-9e39-226513cc6dfb" + "WESTUS2:20170227T232135Z:be6d9028-7eaf-45ca-86fa-c3172f1d1afb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,8 +1645,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTRORFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1606,28 +1667,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:06:09 GMT" + "Mon, 27 Feb 2017 23:22:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14990" ], "x-ms-request-id": [ - "effddb2d-d49b-4748-a1e6-a20bb08db165" + "350e9ebf-b732-403d-ab7a-aac089848975" ], "x-ms-correlation-request-id": [ - "effddb2d-d49b-4748-a1e6-a20bb08db165" + "350e9ebf-b732-403d-ab7a-aac089848975" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010610Z:effddb2d-d49b-4748-a1e6-a20bb08db165" + "WESTUS2:20170227T232205Z:350e9ebf-b732-403d-ab7a-aac089848975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1636,8 +1697,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTRORFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1658,22 +1719,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:06:40 GMT" + "Mon, 27 Feb 2017 23:22:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14989" ], "x-ms-request-id": [ - "6e35df5c-1998-44ee-bde9-d05945df72d1" + "7c94dbf1-82ff-4282-a51c-5a66d673a5f5" ], "x-ms-correlation-request-id": [ - "6e35df5c-1998-44ee-bde9-d05945df72d1" + "7c94dbf1-82ff-4282-a51c-5a66d673a5f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010640Z:6e35df5c-1998-44ee-bde9-d05945df72d1" + "WESTUS2:20170227T232235Z:7c94dbf1-82ff-4282-a51c-5a66d673a5f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1684,19 +1745,19 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-6845" + "sqlcrudtest-5681" ], "RunTestInNewV12Server": [ - "sqlcrudtest-7177" + "sqlcrudtest-318" ], "TestGetAndListDatabase": [ - "sqlcrudtest-2788", - "sqlcrudtest-9888", - "sqlcrudtest-6877", - "sqlcrudtest-1142" + "sqlcrudtest-1856", + "sqlcrudtest-2783", + "sqlcrudtest-7851", + "sqlcrudtest-7268" ] }, "Variables": { - "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" } } \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestRemoveDatabaseFromPool.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestRemoveDatabaseFromPool.json new file mode 100644 index 000000000000..80331694bc81 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestRemoveDatabaseFromPool.json @@ -0,0 +1,968 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6140?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTYxNDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-6140\": \"2017-02-25 00:14:55Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "c005c419-e9a4-4378-b3a2-71354c8cf11f" + ], + "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/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140\",\r\n \"name\": \"sqlcrudtest-6140\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-6140\": \"2017-02-25 00:14:55Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:14:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "bc99e04f-7202-4856-9ea1-3f34276ef4eb" + ], + "x-ms-correlation-request-id": [ + "bc99e04f-7202-4856-9ea1-3f34276ef4eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001457Z:bc99e04f-7202-4856-9ea1-3f34276ef4eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "5192b1ca-8c15-42a1-ac84-8ab3865ec4a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109\",\r\n \"name\": \"sqlcrudtest-3109\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3109.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:15:26 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1466c55d-b5f5-4bda-bec6-11f6f277a914" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "f201afae-171c-4787-b947-b268d33b2a3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001526Z:f201afae-171c-4787-b947-b268d33b2a3b" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/elasticPools/8435?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2VsYXN0aWNQb29scy84NDM1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 5,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "a8fcb765-c117-4852-8fa5-44769b9851f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T16:15:48.627-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "65" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:15:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/elasticPools/8435/operationResults/d42db98f-4a3e-4bc6-8260-3d034318088c?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d42db98f-4a3e-4bc6-8260-3d034318088c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3a7d9232-e82e-4dc0-9ac9-c43b86ad5468" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001548Z:3a7d9232-e82e-4dc0-9ac9-c43b86ad5468" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/elasticPools/8435/operationResults/d42db98f-4a3e-4bc6-8260-3d034318088c?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2VsYXN0aWNQb29scy84NDM1L29wZXJhdGlvblJlc3VsdHMvZDQyZGI5OGYtNGEzZS00YmM2LTgyNjAtM2QwMzQzMTgwODhjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/elasticPools/8435\",\r\n \"name\": \"8435\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-25T00:15:29.207Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "441" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:16:18 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ee1107dc-6f34-47f4-ae3e-a9101d7357e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "308426ed-9894-4217-b3f5-78572d907d06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001619Z:308426ed-9894-4217-b3f5-78572d907d06" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2RhdGFiYXNlcy8zMzE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolName\": \"8435\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "12cb90c4-93c8-4ad3-90d3-9d014bfbe8b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T16:16:23.054-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:16:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/operationResults/c1dd9da9-c002-4b82-9594-a51eee3f5650?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c1dd9da9-c002-4b82-9594-a51eee3f5650" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/azureAsyncOperation/c1dd9da9-c002-4b82-9594-a51eee3f5650?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "6112fda0-de9e-4a14-848c-9e9cccb72776" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001621Z:6112fda0-de9e-4a14-848c-9e9cccb72776" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2RhdGFiYXNlcy8zMzE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "103" + ], + "x-ms-client-request-id": [ + "7fc19e5c-57a3-425f-ad06-ac9a7c9629dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-24T16:16:57.309-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "81" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:16:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/operationResults/60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/azureAsyncOperation/60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2fe7c5fa-8ce4-4995-9c9d-a6e1d730f729" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001655Z:2fe7c5fa-8ce4-4995-9c9d-a6e1d730f729" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/azureAsyncOperation/c1dd9da9-c002-4b82-9594-a51eee3f5650?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2RhdGFiYXNlcy8zMzE4L2F6dXJlQXN5bmNPcGVyYXRpb24vYzFkZDlkYTktYzAwMi00YjgyLTk1OTQtYTUxZWVlM2Y1NjUwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c1dd9da9-c002-4b82-9594-a51eee3f5650\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:16:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7def6beb-8ece-4020-8d5f-77dff7356f4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/azureAsyncOperation/c1dd9da9-c002-4b82-9594-a51eee3f5650?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "9f82b3f6-527e-4770-909f-12d202ff5e81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001652Z:9f82b3f6-527e-4770-909f-12d202ff5e81" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2RhdGFiYXNlcy8zMzE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318\",\r\n \"name\": \"3318\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fec0d1c9-8140-4898-9778-c508f6f9ed53\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-25T00:16:23.337Z\",\r\n \"currentServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-25T00:26:35.673Z\",\r\n \"elasticPoolName\": \"8435\",\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:16:53 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "812bfe1a-252d-459a-9bd0-1b9ced3b40bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "38349ce3-154f-4a8a-9d66-b16a933d5f94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001653Z:38349ce3-154f-4a8a-9d66-b16a933d5f94" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2RhdGFiYXNlcy8zMzE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318\",\r\n \"name\": \"3318\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fec0d1c9-8140-4898-9778-c508f6f9ed53\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-25T00:16:23.337Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-25T00:26:35.673Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:17:57 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "93446674-94e8-49a2-b737-da12a12fc8c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "0ce25d0a-912c-4546-bc65-7d5cd66d74c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001757Z:0ce25d0a-912c-4546-bc65-7d5cd66d74c6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/azureAsyncOperation/60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2RhdGFiYXNlcy8zMzE4L2F6dXJlQXN5bmNPcGVyYXRpb24vNjBkOWFlYjgtMzQ2Yy00ZWUyLWI3MjktYTJmN2QyZDBkZmE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:17:25 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5107a8fe-760d-45f0-bce2-0e423582c84a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/azureAsyncOperation/60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "f2a49ab7-5086-40ef-94e3-b7d0e43ac8bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001726Z:f2a49ab7-5086-40ef-94e3-b7d0e43ac8bd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/azureAsyncOperation/60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYxNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTA5L2RhdGFiYXNlcy8zMzE4L2F6dXJlQXN5bmNPcGVyYXRpb24vNjBkOWFlYjgtMzQ2Yy00ZWUyLWI3MjktYTJmN2QyZDBkZmE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:17:56 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "72356732-f008-4271-a255-db7ab4944c76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6140/providers/Microsoft.Sql/servers/sqlcrudtest-3109/databases/3318/azureAsyncOperation/60d9aeb8-346c-4ee2-b729-a2f7d2d0dfa6?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "70401f35-b965-41a0-b3b7-89d9ae8291af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001757Z:70401f35-b965-41a0-b3b7-89d9ae8291af" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6140?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTYxNDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0746deb5-18f2-4a26-b5f6-1aca93b0317d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:17:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYxNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "bf7dd2e1-97cf-433f-82f9-bb09b19392e0" + ], + "x-ms-correlation-request-id": [ + "bf7dd2e1-97cf-433f-82f9-bb09b19392e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001800Z:bf7dd2e1-97cf-433f-82f9-bb09b19392e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYxNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWXhOREF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:18:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYxNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "7409021a-a39d-4112-8221-99a8013ea7e0" + ], + "x-ms-correlation-request-id": [ + "7409021a-a39d-4112-8221-99a8013ea7e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001830Z:7409021a-a39d-4112-8221-99a8013ea7e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYxNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWXhOREF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:19:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYxNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "35570dcc-327c-4b8f-8ab4-37627b535bd4" + ], + "x-ms-correlation-request-id": [ + "35570dcc-327c-4b8f-8ab4-37627b535bd4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170225T001900Z:35570dcc-327c-4b8f-8ab4-37627b535bd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYxNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWXhOREF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:19:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYxNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "da671019-eb08-4967-8a89-e9b9981d57dc" + ], + "x-ms-correlation-request-id": [ + "da671019-eb08-4967-8a89-e9b9981d57dc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170225T001931Z:da671019-eb08-4967-8a89-e9b9981d57dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYxNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWXhOREF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Feb 2017 00:20:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "7a5d7bf8-a379-4791-aadc-3a0105686ac7" + ], + "x-ms-correlation-request-id": [ + "7a5d7bf8-a379-4791-aadc-3a0105686ac7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170225T002002Z:7a5d7bf8-a379-4791-aadc-3a0105686ac7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "sqlcrudtest-6140" + ], + "RunTestInNewV12Server": [ + "sqlcrudtest-3109" + ], + "TestRemoveDatabaseFromPool": [ + "8435", + "3318" + ] + }, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestUpdateDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestUpdateDatabase.json index b681b35c2530..a5985e6ffbed 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestUpdateDatabase.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestUpdateDatabase.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-748?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTc0OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-5736?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU3MzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-748\": \"2017-02-10 01:06:42Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-5736\": \"2017-02-24 18:45:04Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "99" ], "x-ms-client-request-id": [ - "ea357c93-ed9b-478c-b7d2-83b6395c4856" + "34060473-de20-4332-a449-871af052025a" ], "accept-language": [ "en-US" @@ -23,10 +23,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748\",\r\n \"name\": \"sqlcrudtest-748\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-748\": \"2017-02-10 01:06:42Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736\",\r\n \"name\": \"sqlcrudtest-5736\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-5736\": \"2017-02-24 18:45:04Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "236" + "239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:06:43 GMT" + "Fri, 24 Feb 2017 18:45:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "b735ce27-e456-4137-9ae4-8d1c8759cf2b" + "3e8b9472-cc7e-48f0-a061-eab417d99150" ], "x-ms-correlation-request-id": [ - "b735ce27-e456-4137-9ae4-8d1c8759cf2b" + "3e8b9472-cc7e-48f0-a061-eab417d99150" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010644Z:b735ce27-e456-4137-9ae4-8d1c8759cf2b" + "CENTRALUS:20170224T184507Z:3e8b9472-cc7e-48f0-a061-eab417d99150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "216" ], "x-ms-client-request-id": [ - "87b05a74-d0ce-4971-8b7d-b6936bc9718b" + "369ac9f7-076f-44e8-bbf5-850ffb6b3c1d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275\",\r\n \"name\": \"sqlcrudtest-7275\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-7275.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689\",\r\n \"name\": \"sqlcrudtest-2689\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-2689.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "523" + "524" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:07:22 GMT" + "Fri, 24 Feb 2017 18:45:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "adef0f23-6a12-4365-b6d5-63ad8b4a1cbe" + "8ca6463f-9f3b-4113-ab89-45983001f90d" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "5f0c5f5d-3d87-407d-af1d-3d749a493e70" + "ede4baee-76dd-4e23-b041-3f798b388a15" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010722Z:5f0c5f5d-3d87-407d-af1d-3d749a493e70" + "CENTRALUS:20170224T184539Z:ede4baee-76dd-4e23-b041-3f798b388a15" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"edition\": \"Basic\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "336" ], "x-ms-client-request-id": [ - "d23bc7f1-478b-4a3c-835e-1ee0b938d3bf" + "d0d1473e-cd19-4ce7-ad1f-8bc1ac93b4c9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T17:07:25.385-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T10:45:43.07-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:07:23 GMT" + "Fri, 24 Feb 2017 18:45:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/operationResults/cb6003c7-14cb-482e-8a77-d791cd277e06?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/operationResults/91d2b6eb-0c42-4efb-96b2-78494fcde3e9?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "cb6003c7-14cb-482e-8a77-d791cd277e06" + "91d2b6eb-0c42-4efb-96b2-78494fcde3e9" ], "X-Content-Type-Options": [ "nosniff" @@ -190,23 +190,23 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/cb6003c7-14cb-482e-8a77-d791cd277e06?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/91d2b6eb-0c42-4efb-96b2-78494fcde3e9?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "a7dacee9-ffb7-4f82-afea-5cd15a3e1e1f" + "1dd5478e-77bd-40c7-8588-54c2bc406490" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010724Z:a7dacee9-ffb7-4f82-afea-5cd15a3e1e1f" + "CENTRALUS:20170224T184541Z:1dd5478e-77bd-40c7-8588-54c2bc406490" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"requestedServiceObjectiveName\": \"S0\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -217,17 +217,17 @@ "128" ], "x-ms-client-request-id": [ - "d5b6a522-0b36-4bea-b959-2809a7c16bf6" + "2b85410f-2f09-4c89-8735-f851e649ee71" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-09T17:08:30.193-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-24T10:46:49.39-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "81" @@ -239,10 +239,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:08:28 GMT" + "Fri, 24 Feb 2017 18:46:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/operationResults/26ef296c-ca4b-4897-ac2a-676ea7d7aac6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/operationResults/abb1a204-5bfb-4e31-bd86-62919fce63a0?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -251,7 +251,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "26ef296c-ca4b-4897-ac2a-676ea7d7aac6" + "abb1a204-5bfb-4e31-bd86-62919fce63a0" ], "X-Content-Type-Options": [ "nosniff" @@ -266,23 +266,23 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/26ef296c-ca4b-4897-ac2a-676ea7d7aac6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/abb1a204-5bfb-4e31-bd86-62919fce63a0?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "5527f49a-b236-419a-a2aa-5ba9f5baafe1" + "5f5c79d4-6fe5-4175-b697-7cf82a2a832d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010828Z:5527f49a-b236-419a-a2aa-5ba9f5baafe1" + "CENTRALUS:20170224T184647Z:5f5c79d4-6fe5-4175-b697-7cf82a2a832d" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -293,17 +293,17 @@ "157" ], "x-ms-client-request-id": [ - "c11ce4aa-5a6d-47a5-9431-b1bd36e1225c" + "34cb27f5-889d-4ffd-b7de-59cde9112087" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-09T17:10:05.345-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-24T10:48:24.637-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "81" @@ -315,10 +315,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:10:04 GMT" + "Fri, 24 Feb 2017 18:48:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/operationResults/e232006b-b0eb-45f8-8ab8-aa627a7664af?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/operationResults/bd3f9170-4f33-4ba1-934b-4c40bf9136d7?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -327,7 +327,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e232006b-b0eb-45f8-8ab8-aa627a7664af" + "bd3f9170-4f33-4ba1-934b-4c40bf9136d7" ], "X-Content-Type-Options": [ "nosniff" @@ -342,23 +342,23 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/e232006b-b0eb-45f8-8ab8-aa627a7664af?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/bd3f9170-4f33-4ba1-934b-4c40bf9136d7?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "080ebbef-4cb4-4549-a5e5-26970365edf2" + "97c36f32-dea3-453f-95e4-23160f7422b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011004Z:080ebbef-4cb4-4549-a5e5-26970365edf2" + "CENTRALUS:20170224T184824Z:97c36f32-dea3-453f-95e4-23160f7422b7" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -369,17 +369,17 @@ "83" ], "x-ms-client-request-id": [ - "f669cafb-1341-457e-b44c-9148c9c73d77" + "9eec112e-00dd-416a-a566-837662dfd185" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-09T17:11:41.178-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-24T10:50:01.181-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "81" @@ -391,10 +391,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:11:39 GMT" + "Fri, 24 Feb 2017 18:50:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/operationResults/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/operationResults/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -403,7 +403,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8e29c259-b41e-442a-aa8c-cc2bd9d9910b" + "a1a55dea-fb0b-422f-93a9-729ddbf60416" ], "X-Content-Type-Options": [ "nosniff" @@ -418,23 +418,23 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1194" ], "x-ms-correlation-request-id": [ - "623e9e60-8869-4d52-8a18-f466232dcdfa" + "7aef2db5-59cf-4dac-86c8-dc4ed2dd6083" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011139Z:623e9e60-8869-4d52-8a18-f466232dcdfa" + "CENTRALUS:20170224T185001Z:7aef2db5-59cf-4dac-86c8-dc4ed2dd6083" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"requestedServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveName\": \"P2\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -445,17 +445,17 @@ "176" ], "x-ms-client-request-id": [ - "6b23523c-26db-4594-834f-f92971ad2fdc" + "9f4ec22f-5ba6-4ec1-bc98-fbcb2026caf2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-09T17:13:46.889-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-24T10:52:41.137-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "81" @@ -467,10 +467,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:13:45 GMT" + "Fri, 24 Feb 2017 18:52:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/operationResults/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/operationResults/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -479,7 +479,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "191c70f4-eb7a-4559-8245-aac3e3637f58" + "e7c2b2ad-3073-4a92-bfc3-3938a9271638" ], "X-Content-Type-Options": [ "nosniff" @@ -494,23 +494,23 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1199" ], "x-ms-correlation-request-id": [ - "1aa233ee-33cc-45fd-9e27-97463cf42f0a" + "bc1dd491-d45e-48ad-be07-0b28e875f086" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011345Z:1aa233ee-33cc-45fd-9e27-97463cf42f0a" + "CENTRALUS:20170224T185241Z:bc1dd491-d45e-48ad-be07-0b28e875f086" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"268435456000\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -521,17 +521,17 @@ "93" ], "x-ms-client-request-id": [ - "40bb4660-b6d3-4689-8468-2aeaf86750f0" + "e20a64af-b4d2-41cc-af51-c85be761683a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-09T17:15:52.846-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-24T10:55:22.21-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "81" @@ -543,10 +543,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:15:50 GMT" + "Fri, 24 Feb 2017 18:55:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/operationResults/350f96c8-221a-4a36-81b4-f7d3857b52fa?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/operationResults/82a3067c-9f5a-474d-9e7c-1a3ea3596315?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -555,7 +555,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "350f96c8-221a-4a36-81b4-f7d3857b52fa" + "82a3067c-9f5a-474d-9e7c-1a3ea3596315" ], "X-Content-Type-Options": [ "nosniff" @@ -570,32 +570,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/350f96c8-221a-4a36-81b4-f7d3857b52fa?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/82a3067c-9f5a-474d-9e7c-1a3ea3596315?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1198" ], "x-ms-correlation-request-id": [ - "16d7e395-5e84-4021-8bcd-a64650c5c874" + "f9bd45b0-b52c-407b-8ef8-f1acfe01085e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011551Z:16d7e395-5e84-4021-8bcd-a64650c5c874" + "CENTRALUS:20170224T185520Z:f9bd45b0-b52c-407b-8ef8-f1acfe01085e" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/cb6003c7-14cb-482e-8a77-d791cd277e06?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi9jYjYwMDNjNy0xNGNiLTQ4MmUtOGE3Ny1kNzkxY2QyNzdlMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/91d2b6eb-0c42-4efb-96b2-78494fcde3e9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vOTFkMmI2ZWItMGM0Mi00ZWZiLTk2YjItNzg0OTRmY2RlM2U5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"cb6003c7-14cb-482e-8a77-d791cd277e06\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"91d2b6eb-0c42-4efb-96b2-78494fcde3e9\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -604,7 +604,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:07:54 GMT" + "Fri, 24 Feb 2017 18:46:12 GMT" ], "Transfer-Encoding": [ "chunked" @@ -616,7 +616,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "71e9c310-6275-4d9e-a869-98ff646097c7" + "17894519-e8ab-4465-9c6b-351d9631ae3d" ], "X-Content-Type-Options": [ "nosniff" @@ -628,32 +628,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/cb6003c7-14cb-482e-8a77-d791cd277e06?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/91d2b6eb-0c42-4efb-96b2-78494fcde3e9?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14501" + "14990" ], "x-ms-correlation-request-id": [ - "f0e0e115-81af-4dac-ac6f-f57d30b428aa" + "d22e7af9-ccd3-42a5-9679-9da76f61f07b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010754Z:f0e0e115-81af-4dac-ac6f-f57d30b428aa" + "CENTRALUS:20170224T184612Z:d22e7af9-ccd3-42a5-9679-9da76f61f07b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/cb6003c7-14cb-482e-8a77-d791cd277e06?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi9jYjYwMDNjNy0xNGNiLTQ4MmUtOGE3Ny1kNzkxY2QyNzdlMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/91d2b6eb-0c42-4efb-96b2-78494fcde3e9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vOTFkMmI2ZWItMGM0Mi00ZWZiLTk2YjItNzg0OTRmY2RlM2U5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"cb6003c7-14cb-482e-8a77-d791cd277e06\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"91d2b6eb-0c42-4efb-96b2-78494fcde3e9\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -662,7 +662,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:08:24 GMT" + "Fri, 24 Feb 2017 18:46:43 GMT" ], "Transfer-Encoding": [ "chunked" @@ -674,7 +674,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a8efc249-aa8a-4908-877b-284826a102a4" + "19395efc-eedb-41c2-b735-8fc2d158fc19" ], "X-Content-Type-Options": [ "nosniff" @@ -686,32 +686,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/cb6003c7-14cb-482e-8a77-d791cd277e06?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/91d2b6eb-0c42-4efb-96b2-78494fcde3e9?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14497" + "14988" ], "x-ms-correlation-request-id": [ - "0260753a-f11f-4454-b446-2860784ddd23" + "ea4ace99-d50a-4dd3-814e-d83a0dde840c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010825Z:0260753a-f11f-4454-b446-2860784ddd23" + "CENTRALUS:20170224T184643Z:ea4ace99-d50a-4dd3-814e-d83a0dde840c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474\",\r\n \"name\": \"sqlcrudtest-6474\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b6dfffab-fb65-4187-8c13-336e84d564b4\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T01:07:25.76Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:18:08.86Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813\",\r\n \"name\": \"sqlcrudtest-8813\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e55583a6-1051-4e04-9f78-e120a2f5701d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:45:43.35Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:56:25.263Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -720,7 +720,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:08:25 GMT" + "Fri, 24 Feb 2017 18:46:44 GMT" ], "Transfer-Encoding": [ "chunked" @@ -732,7 +732,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1e1f52a-acba-4148-858f-53519ba55aa6" + "bc0cb812-f8ad-4a97-b7ca-b59acfa653cf" ], "X-Content-Type-Options": [ "nosniff" @@ -744,29 +744,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14496" + "14987" ], "x-ms-correlation-request-id": [ - "6702f823-09b1-4d0f-9e31-6a61f9966b01" + "243a5989-b3b4-4df7-8cf1-4906750112bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010826Z:6702f823-09b1-4d0f-9e31-6a61f9966b01" + "CENTRALUS:20170224T184644Z:243a5989-b3b4-4df7-8cf1-4906750112bc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474\",\r\n \"name\": \"sqlcrudtest-6474\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b6dfffab-fb65-4187-8c13-336e84d564b4\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T01:07:25.76Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:18:08.86Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813\",\r\n \"name\": \"sqlcrudtest-8813\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e55583a6-1051-4e04-9f78-e120a2f5701d\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:45:43.35Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:56:25.263Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -775,7 +775,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:10:01 GMT" + "Fri, 24 Feb 2017 18:48:21 GMT" ], "Transfer-Encoding": [ "chunked" @@ -787,7 +787,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5b9d3f65-24e6-4fe9-8afe-ca62d61948ad" + "594fa33d-a84b-4996-84b5-3f7142ed3954" ], "X-Content-Type-Options": [ "nosniff" @@ -799,29 +799,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14516" + "14983" ], "x-ms-correlation-request-id": [ - "7b049222-2b94-4122-834b-e76ee93e4985" + "33de40a9-d515-493d-80c7-b05d4ab35e07" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011001Z:7b049222-2b94-4122-834b-e76ee93e4985" + "CENTRALUS:20170224T184821Z:33de40a9-d515-493d-80c7-b05d4ab35e07" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474\",\r\n \"name\": \"sqlcrudtest-6474\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b6dfffab-fb65-4187-8c13-336e84d564b4\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T01:07:25.76Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:18:08.86Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813\",\r\n \"name\": \"sqlcrudtest-8813\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e55583a6-1051-4e04-9f78-e120a2f5701d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:45:43.35Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": \"Basic\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:56:25.263Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -830,7 +830,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:11:36 GMT" + "Fri, 24 Feb 2017 18:49:57 GMT" ], "Transfer-Encoding": [ "chunked" @@ -842,7 +842,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ba8d5a59-f231-4327-81e2-7f52e9772001" + "19832048-a33c-4fe7-89d9-1d814398fe11" ], "X-Content-Type-Options": [ "nosniff" @@ -854,29 +854,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14501" + "14978" ], "x-ms-correlation-request-id": [ - "42dd6ee8-9dfa-43b8-8807-d20a421fdd64" + "af244d07-6c07-43c4-b79a-d9f8ff8f3e1f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011137Z:42dd6ee8-9dfa-43b8-8807-d20a421fdd64" + "CENTRALUS:20170224T184958Z:af244d07-6c07-43c4-b79a-d9f8ff8f3e1f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474\",\r\n \"name\": \"sqlcrudtest-6474\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b6dfffab-fb65-4187-8c13-336e84d564b4\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T01:07:25.76Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:18:08.86Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813\",\r\n \"name\": \"sqlcrudtest-8813\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e55583a6-1051-4e04-9f78-e120a2f5701d\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:45:43.35Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": \"P1\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:56:25.263Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -885,7 +885,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:13:43 GMT" + "Fri, 24 Feb 2017 18:52:37 GMT" ], "Transfer-Encoding": [ "chunked" @@ -897,7 +897,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c0fcdba7-8f2a-4a3a-b49f-44b5e1f8f56e" + "c6b0f4a5-3eeb-445e-9dc8-fefdfaa4f79c" ], "X-Content-Type-Options": [ "nosniff" @@ -909,29 +909,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14478" + "14986" ], "x-ms-correlation-request-id": [ - "a12b14ee-1769-413e-8dad-7f8d9c9e9ffb" + "0ca1f932-4a74-4da9-a823-13da0d2990e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011343Z:a12b14ee-1769-413e-8dad-7f8d9c9e9ffb" + "CENTRALUS:20170224T185238Z:0ca1f932-4a74-4da9-a823-13da0d2990e9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474\",\r\n \"name\": \"sqlcrudtest-6474\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b6dfffab-fb65-4187-8c13-336e84d564b4\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T01:07:25.76Z\",\r\n \"currentServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveName\": \"P2\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:18:08.86Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813\",\r\n \"name\": \"sqlcrudtest-8813\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e55583a6-1051-4e04-9f78-e120a2f5701d\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T18:45:43.35Z\",\r\n \"currentServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveName\": \"P2\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:56:25.263Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -940,7 +940,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:15:48 GMT" + "Fri, 24 Feb 2017 18:55:17 GMT" ], "Transfer-Encoding": [ "chunked" @@ -952,7 +952,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7e06bef6-73da-4ff0-9bd9-f559ba42d5c3" + "14c6765b-4307-480d-bdd9-bbdb4f753d6f" ], "X-Content-Type-Options": [ "nosniff" @@ -964,29 +964,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14499" + "14981" ], "x-ms-correlation-request-id": [ - "3c4d645c-0fc4-44f6-93d9-a4e456d5ffa3" + "cdbc9d51-8f45-4375-b4b6-5292797e94b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011549Z:3c4d645c-0fc4-44f6-93d9-a4e456d5ffa3" + "CENTRALUS:20170224T185517Z:cdbc9d51-8f45-4375-b4b6-5292797e94b8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474\",\r\n \"name\": \"sqlcrudtest-6474\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b6dfffab-fb65-4187-8c13-336e84d564b4\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:07:25.76Z\",\r\n \"currentServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveName\": \"P2\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:18:08.86Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813\",\r\n \"name\": \"sqlcrudtest-8813\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e55583a6-1051-4e04-9f78-e120a2f5701d\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T18:45:43.35Z\",\r\n \"currentServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveId\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"requestedServiceObjectiveName\": \"P2\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T18:56:25.263Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -995,7 +995,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:16:22 GMT" + "Fri, 24 Feb 2017 18:55:52 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1007,7 +1007,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8634bc7f-6aec-4751-9661-40cf7d9ca1fc" + "38223a48-bdc9-46d7-9940-fae01449d91b" ], "X-Content-Type-Options": [ "nosniff" @@ -1019,29 +1019,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14492" + "14979" ], "x-ms-correlation-request-id": [ - "e477abec-5689-4658-9a76-daf8b8c9c1ca" + "51f23c56-8ad7-4bdc-a421-87d48b1e7c75" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011622Z:e477abec-5689-4658-9a76-daf8b8c9c1ca" + "CENTRALUS:20170224T185552Z:51f23c56-8ad7-4bdc-a421-87d48b1e7c75" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/26ef296c-ca4b-4897-ac2a-676ea7d7aac6?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi8yNmVmMjk2Yy1jYTRiLTQ4OTctYWMyYS02NzZlYTdkN2FhYzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/abb1a204-5bfb-4e31-bd86-62919fce63a0?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYWJiMWEyMDQtNWJmYi00ZTMxLWJkODYtNjI5MTlmY2U2M2EwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"26ef296c-ca4b-4897-ac2a-676ea7d7aac6\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"abb1a204-5bfb-4e31-bd86-62919fce63a0\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1050,7 +1050,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:08:59 GMT" + "Fri, 24 Feb 2017 18:47:17 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1062,7 +1062,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "722f841c-1036-4704-a91d-d4577ef446cb" + "dfc74f03-cab8-49c1-8568-be2b6d17362d" ], "X-Content-Type-Options": [ "nosniff" @@ -1074,32 +1074,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/26ef296c-ca4b-4897-ac2a-676ea7d7aac6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/abb1a204-5bfb-4e31-bd86-62919fce63a0?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14489" + "14986" ], "x-ms-correlation-request-id": [ - "b00118e1-341a-4dbf-a846-ba83bebe22e2" + "a910e500-c1bb-40da-b34b-5029ec080429" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010859Z:b00118e1-341a-4dbf-a846-ba83bebe22e2" + "CENTRALUS:20170224T184718Z:a910e500-c1bb-40da-b34b-5029ec080429" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/26ef296c-ca4b-4897-ac2a-676ea7d7aac6?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi8yNmVmMjk2Yy1jYTRiLTQ4OTctYWMyYS02NzZlYTdkN2FhYzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/abb1a204-5bfb-4e31-bd86-62919fce63a0?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYWJiMWEyMDQtNWJmYi00ZTMxLWJkODYtNjI5MTlmY2U2M2EwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"26ef296c-ca4b-4897-ac2a-676ea7d7aac6\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"abb1a204-5bfb-4e31-bd86-62919fce63a0\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1108,7 +1108,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:09:29 GMT" + "Fri, 24 Feb 2017 18:47:49 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1120,7 +1120,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "158c131d-3c51-4a7d-bc67-8de7a85264f9" + "34d2cafc-76f2-49d2-8f09-6c43d3945d21" ], "X-Content-Type-Options": [ "nosniff" @@ -1132,32 +1132,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/26ef296c-ca4b-4897-ac2a-676ea7d7aac6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/abb1a204-5bfb-4e31-bd86-62919fce63a0?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14485" + "14985" ], "x-ms-correlation-request-id": [ - "dc207669-16e1-481e-9e26-3d56ad153b43" + "67287830-605b-48f7-8c19-74912c85db5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T010930Z:dc207669-16e1-481e-9e26-3d56ad153b43" + "CENTRALUS:20170224T184749Z:67287830-605b-48f7-8c19-74912c85db5d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/26ef296c-ca4b-4897-ac2a-676ea7d7aac6?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi8yNmVmMjk2Yy1jYTRiLTQ4OTctYWMyYS02NzZlYTdkN2FhYzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/abb1a204-5bfb-4e31-bd86-62919fce63a0?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYWJiMWEyMDQtNWJmYi00ZTMxLWJkODYtNjI5MTlmY2U2M2EwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"26ef296c-ca4b-4897-ac2a-676ea7d7aac6\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"abb1a204-5bfb-4e31-bd86-62919fce63a0\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1166,7 +1166,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:10:01 GMT" + "Fri, 24 Feb 2017 18:48:20 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1178,7 +1178,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "64aa2488-be3a-4940-8b23-a2bfcb49a5fb" + "1933d095-b5f6-45db-833f-d4a2e9742456" ], "X-Content-Type-Options": [ "nosniff" @@ -1190,32 +1190,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/26ef296c-ca4b-4897-ac2a-676ea7d7aac6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/abb1a204-5bfb-4e31-bd86-62919fce63a0?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14517" + "14984" ], "x-ms-correlation-request-id": [ - "63a4a946-9415-4981-8975-8bb7398a8f8d" + "961b7e85-ce56-4d2d-b68b-21302ccb6ea0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011001Z:63a4a946-9415-4981-8975-8bb7398a8f8d" + "CENTRALUS:20170224T184820Z:961b7e85-ce56-4d2d-b68b-21302ccb6ea0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/e232006b-b0eb-45f8-8ab8-aa627a7664af?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi9lMjMyMDA2Yi1iMGViLTQ1ZjgtOGFiOC1hYTYyN2E3NjY0YWY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/bd3f9170-4f33-4ba1-934b-4c40bf9136d7?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYmQzZjkxNzAtNGYzMy00YmExLTkzNGItNGM0MGJmOTEzNmQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e232006b-b0eb-45f8-8ab8-aa627a7664af\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"bd3f9170-4f33-4ba1-934b-4c40bf9136d7\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1224,7 +1224,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:10:34 GMT" + "Fri, 24 Feb 2017 18:48:55 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1236,7 +1236,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d2639daa-58e0-4522-a490-3389b1627df2" + "40127a59-ce5a-41db-b4b3-21e79716e9bc" ], "X-Content-Type-Options": [ "nosniff" @@ -1248,32 +1248,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/e232006b-b0eb-45f8-8ab8-aa627a7664af?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/bd3f9170-4f33-4ba1-934b-4c40bf9136d7?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14512" + "14981" ], "x-ms-correlation-request-id": [ - "cd85af89-76f5-4315-97f5-a82ea8ef1524" + "3278c7bc-4350-4b11-bbe5-dda848af565b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011035Z:cd85af89-76f5-4315-97f5-a82ea8ef1524" + "CENTRALUS:20170224T184855Z:3278c7bc-4350-4b11-bbe5-dda848af565b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/e232006b-b0eb-45f8-8ab8-aa627a7664af?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi9lMjMyMDA2Yi1iMGViLTQ1ZjgtOGFiOC1hYTYyN2E3NjY0YWY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/bd3f9170-4f33-4ba1-934b-4c40bf9136d7?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYmQzZjkxNzAtNGYzMy00YmExLTkzNGItNGM0MGJmOTEzNmQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e232006b-b0eb-45f8-8ab8-aa627a7664af\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"bd3f9170-4f33-4ba1-934b-4c40bf9136d7\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1282,7 +1282,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:11:05 GMT" + "Fri, 24 Feb 2017 18:49:26 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1294,7 +1294,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6b9ea5d7-26ec-4fc6-abfa-d16f68e40a68" + "79e9f58d-f034-451e-ac2d-94a2e2772a36" ], "X-Content-Type-Options": [ "nosniff" @@ -1306,32 +1306,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/e232006b-b0eb-45f8-8ab8-aa627a7664af?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/bd3f9170-4f33-4ba1-934b-4c40bf9136d7?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14506" + "14980" ], "x-ms-correlation-request-id": [ - "52f9afba-f730-4a24-93c2-64435809ebe1" + "25f43799-0735-4dbe-973c-2fd2ce1c0c44" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011105Z:52f9afba-f730-4a24-93c2-64435809ebe1" + "CENTRALUS:20170224T184926Z:25f43799-0735-4dbe-973c-2fd2ce1c0c44" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/e232006b-b0eb-45f8-8ab8-aa627a7664af?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi9lMjMyMDA2Yi1iMGViLTQ1ZjgtOGFiOC1hYTYyN2E3NjY0YWY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/bd3f9170-4f33-4ba1-934b-4c40bf9136d7?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYmQzZjkxNzAtNGYzMy00YmExLTkzNGItNGM0MGJmOTEzNmQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e232006b-b0eb-45f8-8ab8-aa627a7664af\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"bd3f9170-4f33-4ba1-934b-4c40bf9136d7\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1340,7 +1340,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:11:35 GMT" + "Fri, 24 Feb 2017 18:49:56 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1352,7 +1352,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8afad6ad-e442-46a5-9436-98e33ed68182" + "6830f021-604c-422b-8b0c-51f3cf14ab61" ], "X-Content-Type-Options": [ "nosniff" @@ -1364,32 +1364,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/e232006b-b0eb-45f8-8ab8-aa627a7664af?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/bd3f9170-4f33-4ba1-934b-4c40bf9136d7?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14502" + "14979" ], "x-ms-correlation-request-id": [ - "be36c6a7-40ad-4db6-9d3e-89ab3c70690d" + "43134a65-8ffa-4d6c-82c4-0e7bb28c8587" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011136Z:be36c6a7-40ad-4db6-9d3e-89ab3c70690d" + "CENTRALUS:20170224T184957Z:43134a65-8ffa-4d6c-82c4-0e7bb28c8587" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi84ZTI5YzI1OS1iNDFlLTQ0MmEtYWE4Yy1jYzJiZDlkOTkxMGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYTFhNTVkZWEtZmIwYi00MjJmLTkzYTktNzI5ZGRiZjYwNDE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8e29c259-b41e-442a-aa8c-cc2bd9d9910b\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a1a55dea-fb0b-422f-93a9-729ddbf60416\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1398,7 +1398,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:12:09 GMT" + "Fri, 24 Feb 2017 18:50:31 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1410,7 +1410,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bf241410-02d3-4aae-be6b-7f34b1bbc6a2" + "5c2934db-db43-4a40-bd46-8b8986930f2e" ], "X-Content-Type-Options": [ "nosniff" @@ -1422,32 +1422,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14494" + "14978" ], "x-ms-correlation-request-id": [ - "958f9e64-090d-4fb2-ac63-5e01d12c7e85" + "25ae50d6-cd53-4e37-9342-e264c3eba96c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011210Z:958f9e64-090d-4fb2-ac63-5e01d12c7e85" + "CENTRALUS:20170224T185032Z:25ae50d6-cd53-4e37-9342-e264c3eba96c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi84ZTI5YzI1OS1iNDFlLTQ0MmEtYWE4Yy1jYzJiZDlkOTkxMGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYTFhNTVkZWEtZmIwYi00MjJmLTkzYTktNzI5ZGRiZjYwNDE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8e29c259-b41e-442a-aa8c-cc2bd9d9910b\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a1a55dea-fb0b-422f-93a9-729ddbf60416\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1456,7 +1456,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:12:40 GMT" + "Fri, 24 Feb 2017 18:51:03 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1468,7 +1468,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7af081ce-cfa8-47af-b3d5-b3b6fadb613e" + "ecab6416-1dcd-436f-85ff-542e60a0ef8d" ], "X-Content-Type-Options": [ "nosniff" @@ -1480,32 +1480,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14490" + "14989" ], "x-ms-correlation-request-id": [ - "bebe16e2-a165-4871-8177-c9aacb22c80b" + "a33abf17-f46e-488e-972c-7008095ff95c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011240Z:bebe16e2-a165-4871-8177-c9aacb22c80b" + "CENTRALUS:20170224T185103Z:a33abf17-f46e-488e-972c-7008095ff95c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi84ZTI5YzI1OS1iNDFlLTQ0MmEtYWE4Yy1jYzJiZDlkOTkxMGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYTFhNTVkZWEtZmIwYi00MjJmLTkzYTktNzI5ZGRiZjYwNDE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8e29c259-b41e-442a-aa8c-cc2bd9d9910b\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a1a55dea-fb0b-422f-93a9-729ddbf60416\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1514,7 +1514,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:13:10 GMT" + "Fri, 24 Feb 2017 18:51:34 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1526,7 +1526,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ddaa10ac-2c83-4ce7-a1fc-6fd9bad8c0d3" + "c84f07ce-4172-47e5-a295-dc0d09bbbc5a" ], "X-Content-Type-Options": [ "nosniff" @@ -1538,32 +1538,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14483" + "14975" ], "x-ms-correlation-request-id": [ - "227307a5-ec29-48f8-be6d-781b1770a5d2" + "64da9dd8-d4c7-480d-b916-c00338bcc658" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011311Z:227307a5-ec29-48f8-be6d-781b1770a5d2" + "CENTRALUS:20170224T185134Z:64da9dd8-d4c7-480d-b916-c00338bcc658" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi84ZTI5YzI1OS1iNDFlLTQ0MmEtYWE4Yy1jYzJiZDlkOTkxMGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYTFhNTVkZWEtZmIwYi00MjJmLTkzYTktNzI5ZGRiZjYwNDE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8e29c259-b41e-442a-aa8c-cc2bd9d9910b\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a1a55dea-fb0b-422f-93a9-729ddbf60416\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1572,7 +1572,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:13:41 GMT" + "Fri, 24 Feb 2017 18:52:05 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1584,7 +1584,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "09d0838b-066d-415e-a878-ff1df903429e" + "baa120dc-582f-412b-8251-f76bbb495aab" ], "X-Content-Type-Options": [ "nosniff" @@ -1596,32 +1596,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/8e29c259-b41e-442a-aa8c-cc2bd9d9910b?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14479" + "14974" ], "x-ms-correlation-request-id": [ - "70fe9ed5-d576-41e9-ab80-eeead9b6e2cb" + "10626895-314d-43ff-ba2e-1d3ac4ce7da0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011342Z:70fe9ed5-d576-41e9-ab80-eeead9b6e2cb" + "CENTRALUS:20170224T185206Z:10626895-314d-43ff-ba2e-1d3ac4ce7da0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi8xOTFjNzBmNC1lYjdhLTQ1NTktODI0NS1hYWMzZTM2MzdmNTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vYTFhNTVkZWEtZmIwYi00MjJmLTkzYTktNzI5ZGRiZjYwNDE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"191c70f4-eb7a-4559-8245-aac3e3637f58\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a1a55dea-fb0b-422f-93a9-729ddbf60416\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1630,7 +1630,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:14:15 GMT" + "Fri, 24 Feb 2017 18:52:36 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1642,7 +1642,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "08582efa-de8b-4a51-adc7-d0170e573584" + "eb8d0971-3140-4823-a2fb-a63c3957b335" ], "X-Content-Type-Options": [ "nosniff" @@ -1654,32 +1654,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/a1a55dea-fb0b-422f-93a9-729ddbf60416?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14471" + "14988" ], "x-ms-correlation-request-id": [ - "0bb63170-7b5b-45f3-8fbf-e089991b6184" + "6926793b-91bc-43a1-927c-9bfdfefacbe1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011416Z:0bb63170-7b5b-45f3-8fbf-e089991b6184" + "CENTRALUS:20170224T185237Z:6926793b-91bc-43a1-927c-9bfdfefacbe1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi8xOTFjNzBmNC1lYjdhLTQ1NTktODI0NS1hYWMzZTM2MzdmNTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vZTdjMmIyYWQtMzA3My00YTkyLWJmYzMtMzkzOGE5MjcxNjM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"191c70f4-eb7a-4559-8245-aac3e3637f58\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7c2b2ad-3073-4a92-bfc3-3938a9271638\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1688,7 +1688,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:14:46 GMT" + "Fri, 24 Feb 2017 18:53:11 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1700,7 +1700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f96b8ad5-6fd7-4b14-8a9d-caa6aba40fad" + "cc8d3a8d-aa36-4c5b-a145-a2287f98bd49" ], "X-Content-Type-Options": [ "nosniff" @@ -1712,32 +1712,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14466" + "14985" ], "x-ms-correlation-request-id": [ - "fafc6ad8-3274-43a1-b781-813b14c7a62b" + "285e16a4-ca74-46cb-830b-6f9b034267d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011447Z:fafc6ad8-3274-43a1-b781-813b14c7a62b" + "CENTRALUS:20170224T185312Z:285e16a4-ca74-46cb-830b-6f9b034267d3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi8xOTFjNzBmNC1lYjdhLTQ1NTktODI0NS1hYWMzZTM2MzdmNTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vZTdjMmIyYWQtMzA3My00YTkyLWJmYzMtMzkzOGE5MjcxNjM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"191c70f4-eb7a-4559-8245-aac3e3637f58\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7c2b2ad-3073-4a92-bfc3-3938a9271638\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1746,7 +1746,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:15:17 GMT" + "Fri, 24 Feb 2017 18:53:43 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1758,7 +1758,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "32b378de-1c64-434c-85c4-b2b01f997f88" + "8f2392d8-0257-4272-8ac1-23218e45abcf" ], "X-Content-Type-Options": [ "nosniff" @@ -1770,32 +1770,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14505" + "14984" ], "x-ms-correlation-request-id": [ - "cc3d324a-3d59-4a41-bb9d-98eda0174c0a" + "79484ccd-8a40-4eff-89f3-e33fe3457536" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011517Z:cc3d324a-3d59-4a41-bb9d-98eda0174c0a" + "CENTRALUS:20170224T185343Z:79484ccd-8a40-4eff-89f3-e33fe3457536" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi8xOTFjNzBmNC1lYjdhLTQ1NTktODI0NS1hYWMzZTM2MzdmNTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vZTdjMmIyYWQtMzA3My00YTkyLWJmYzMtMzkzOGE5MjcxNjM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"191c70f4-eb7a-4559-8245-aac3e3637f58\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7c2b2ad-3073-4a92-bfc3-3938a9271638\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1804,7 +1804,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:15:47 GMT" + "Fri, 24 Feb 2017 18:54:13 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1816,7 +1816,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "43c0849c-8ec9-4f32-b192-6ccd3e4985f9" + "fb1970b0-3d04-401e-8f67-de5258228be8" ], "X-Content-Type-Options": [ "nosniff" @@ -1828,32 +1828,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/191c70f4-eb7a-4559-8245-aac3e3637f58?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14500" + "14983" ], "x-ms-correlation-request-id": [ - "170c5129-5102-4225-b00f-331c3f681409" + "1542d750-f9ca-4f17-92c9-99474c17ef98" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011548Z:170c5129-5102-4225-b00f-331c3f681409" + "CENTRALUS:20170224T185414Z:1542d750-f9ca-4f17-92c9-99474c17ef98" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/350f96c8-221a-4a36-81b4-f7d3857b52fa?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0OC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTcyNzUvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTY0NzQvYXp1cmVBc3luY09wZXJhdGlvbi8zNTBmOTZjOC0yMjFhLTRhMzYtODFiNC1mN2QzODU3YjUyZmE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vZTdjMmIyYWQtMzA3My00YTkyLWJmYzMtMzkzOGE5MjcxNjM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"350f96c8-221a-4a36-81b4-f7d3857b52fa\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7c2b2ad-3073-4a92-bfc3-3938a9271638\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1862,7 +1862,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:16:21 GMT" + "Fri, 24 Feb 2017 18:54:44 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1874,7 +1874,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "64707948-ffd5-453c-8190-72e138b2e5e2" + "ddd8f98f-878e-4b0c-b7bd-3ebdaaa5b66e" ], "X-Content-Type-Options": [ "nosniff" @@ -1886,28 +1886,144 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-748/providers/Microsoft.Sql/servers/sqlcrudtest-7275/databases/sqlcrudtest-6474/azureAsyncOperation/350f96c8-221a-4a36-81b4-f7d3857b52fa?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14494" + "14982" ], "x-ms-correlation-request-id": [ - "d301a763-9cd4-4d98-b186-16ce80aa7dab" + "5fe758c0-a2a9-41b5-8273-6da4a38ba165" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011622Z:d301a763-9cd4-4d98-b186-16ce80aa7dab" + "CENTRALUS:20170224T185445Z:5fe758c0-a2a9-41b5-8273-6da4a38ba165" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-748?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTc0OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vZTdjMmIyYWQtMzA3My00YTkyLWJmYzMtMzkzOGE5MjcxNjM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"e7c2b2ad-3073-4a92-bfc3-3938a9271638\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 18:55:16 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3c80d2ef-ff24-4137-8da0-b172db921652" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/e7c2b2ad-3073-4a92-bfc3-3938a9271638?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "f27d9f22-cf65-4cf9-9d55-630e9457d483" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T185516Z:f27d9f22-cf65-4cf9-9d55-630e9457d483" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/82a3067c-9f5a-474d-9e7c-1a3ea3596315?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU3MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNjg5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODEzL2F6dXJlQXN5bmNPcGVyYXRpb24vODJhMzA2N2MtOWY1YS00NzRkLTllN2MtMWEzZWEzNTk2MzE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"82a3067c-9f5a-474d-9e7c-1a3ea3596315\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 18:55:51 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c4d628df-5810-47de-a067-469ec534770e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5736/providers/Microsoft.Sql/servers/sqlcrudtest-2689/databases/sqlcrudtest-8813/azureAsyncOperation/82a3067c-9f5a-474d-9e7c-1a3ea3596315?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "ab5c470a-ad55-44e5-a4c0-dab3cebe9cf7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T185551Z:ab5c470a-ad55-44e5-a4c0-dab3cebe9cf7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-5736?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU3MzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72a01087-12b0-40e6-8c15-74d526d8ac15" + "d55847e9-13a1-4b18-a0f7-c36ec751102d" ], "accept-language": [ "en-US" @@ -1929,28 +2045,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:16:24 GMT" + "Fri, 24 Feb 2017 18:55:55 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0OC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU3MzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1197" ], "x-ms-request-id": [ - "d033b1c9-6086-4320-8d44-7eaa22a2a09a" + "9d5ecfb7-d778-4dd3-8b68-ed6457956924" ], "x-ms-correlation-request-id": [ - "d033b1c9-6086-4320-8d44-7eaa22a2a09a" + "9d5ecfb7-d778-4dd3-8b68-ed6457956924" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011624Z:d033b1c9-6086-4320-8d44-7eaa22a2a09a" + "CENTRALUS:20170224T185555Z:9d5ecfb7-d778-4dd3-8b68-ed6457956924" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,8 +2075,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0OC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzBPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU3MzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTNNell0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1981,28 +2097,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:16:53 GMT" + "Fri, 24 Feb 2017 18:56:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0OC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU3MzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14485" + "14978" ], "x-ms-request-id": [ - "4a72e148-684e-47be-992f-af0dee574821" + "a56e3688-e772-4749-a7f2-c894d2004654" ], "x-ms-correlation-request-id": [ - "4a72e148-684e-47be-992f-af0dee574821" + "a56e3688-e772-4749-a7f2-c894d2004654" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011654Z:4a72e148-684e-47be-992f-af0dee574821" + "CENTRALUS:20170224T185625Z:a56e3688-e772-4749-a7f2-c894d2004654" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2011,8 +2127,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0OC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzBPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU3MzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTNNell0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2033,28 +2149,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:17:24 GMT" + "Fri, 24 Feb 2017 18:56:55 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0OC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU3MzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14482" + "14977" ], "x-ms-request-id": [ - "6c239d00-e52b-4e9a-913b-4b44a8938b14" + "0b9989cb-6d10-40a4-be72-da279cf3ff39" ], "x-ms-correlation-request-id": [ - "6c239d00-e52b-4e9a-913b-4b44a8938b14" + "0b9989cb-6d10-40a4-be72-da279cf3ff39" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011724Z:6c239d00-e52b-4e9a-913b-4b44a8938b14" + "CENTRALUS:20170224T185656Z:0b9989cb-6d10-40a4-be72-da279cf3ff39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2063,8 +2179,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0OC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzBPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU3MzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTNNell0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2085,28 +2201,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:17:54 GMT" + "Fri, 24 Feb 2017 18:57:26 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0OC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU3MzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14475" + "14976" ], "x-ms-request-id": [ - "3247ffc1-ce94-4a40-a947-43d33f61e2ea" + "2da404d8-f37d-40fc-b284-d3cfa2377797" ], "x-ms-correlation-request-id": [ - "3247ffc1-ce94-4a40-a947-43d33f61e2ea" + "2da404d8-f37d-40fc-b284-d3cfa2377797" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011755Z:3247ffc1-ce94-4a40-a947-43d33f61e2ea" + "CENTRALUS:20170224T185726Z:2da404d8-f37d-40fc-b284-d3cfa2377797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2115,8 +2231,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0OC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzBPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU3MzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTNNell0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2137,22 +2253,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:18:25 GMT" + "Fri, 24 Feb 2017 18:57:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14473" + "14975" ], "x-ms-request-id": [ - "3bddc1dc-0f03-445f-b489-fdfbb5396805" + "891ba1fe-5963-4125-aa78-b022db7cfa36" ], "x-ms-correlation-request-id": [ - "3bddc1dc-0f03-445f-b489-fdfbb5396805" + "891ba1fe-5963-4125-aa78-b022db7cfa36" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T011825Z:3bddc1dc-0f03-445f-b489-fdfbb5396805" + "CENTRALUS:20170224T185756Z:891ba1fe-5963-4125-aa78-b022db7cfa36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2163,13 +2279,13 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-748" + "sqlcrudtest-5736" ], "RunTestInNewV12Server": [ - "sqlcrudtest-7275" + "sqlcrudtest-2689" ], "TestUpdateDatabase": [ - "sqlcrudtest-6474" + "sqlcrudtest-8813" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestCreateDeleteReplicationLinks.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestCreateDeleteReplicationLinks.json index 1d891f3fd77e..bc4a9f929e0f 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestCreateDeleteReplicationLinks.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestCreateDeleteReplicationLinks.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-4799?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-5695?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU2OTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-4799\": \"2017-02-10 01:41:33Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-5695\": \"2017-02-24 19:11:09Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,7 +13,7 @@ "99" ], "x-ms-client-request-id": [ - "c5fc6071-4ce4-484d-ab14-646c6b19464f" + "2c55aa79-ed42-4444-86cd-ef28c49ba859" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799\",\r\n \"name\": \"sqlcrudtest-4799\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-4799\": \"2017-02-10 01:41:33Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695\",\r\n \"name\": \"sqlcrudtest-5695\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-5695\": \"2017-02-24 19:11:09Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "239" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:41:35 GMT" + "Fri, 24 Feb 2017 19:11:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "15987420-d6a1-4280-8e54-22cb6b1fe87a" + "c341d8be-9a7e-4110-bace-9046bf466f31" ], "x-ms-correlation-request-id": [ - "15987420-d6a1-4280-8e54-22cb6b1fe87a" + "c341d8be-9a7e-4110-bace-9046bf466f31" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014135Z:15987420-d6a1-4280-8e54-22cb6b1fe87a" + "CENTRALUS:20170224T191111Z:c341d8be-9a7e-4110-bace-9046bf466f31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC01OTYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00MzQ0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "184" ], "x-ms-client-request-id": [ - "8086a99b-9fff-45da-9256-81f95b3a81b3" + "6232072a-cee5-44ae-8e66-94427060a2ba" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961\",\r\n \"name\": \"sqlcrudtest-5961\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-5961.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344\",\r\n \"name\": \"sqlcrudtest-4344\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4344.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "503" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:42:09 GMT" + "Fri, 24 Feb 2017 19:11:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7a329107-309a-4435-8ad6-9b94efbd16c9" + "a5d1c398-b660-4562-9ab6-83850eaf2bf2" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "74c07584-1e41-4c03-98b1-58440518499d" + "d2cebd4b-6895-498e-ad1a-bdbe8b9c63ad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014209Z:74c07584-1e41-4c03-98b1-58440518499d" + "CENTRALUS:20170224T191159Z:d2cebd4b-6895-498e-ad1a-bdbe8b9c63ad" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC01OTYxL2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00MzQ0L2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "32" ], "x-ms-client-request-id": [ - "61f65584-e969-45d0-b38f-074eb7c93f0e" + "1c5b634b-32b0-4cd2-910d-0996d526ef0d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T17:42:13.087-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T11:12:01.891-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:42:10 GMT" + "Fri, 24 Feb 2017 19:12:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb/operationResults/220d5f33-4034-4a80-bc1d-46c3a1f6a4a7?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb/operationResults/aa612f13-903b-42d1-991a-aec100c4524d?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "220d5f33-4034-4a80-bc1d-46c3a1f6a4a7" + "aa612f13-903b-42d1-991a-aec100c4524d" ], "X-Content-Type-Options": [ "nosniff" @@ -190,32 +190,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb/azureAsyncOperation/220d5f33-4034-4a80-bc1d-46c3a1f6a4a7?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb/azureAsyncOperation/aa612f13-903b-42d1-991a-aec100c4524d?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "37b72e62-30c3-444d-88db-7256329b9131" + "7b257271-accf-4f13-a86d-644c11bc752b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014211Z:37b72e62-30c3-444d-88db-7256329b9131" + "CENTRALUS:20170224T191202Z:7b257271-accf-4f13-a86d-644c11bc752b" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb/azureAsyncOperation/220d5f33-4034-4a80-bc1d-46c3a1f6a4a7?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC01OTYxL2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi8yMjBkNWYzMy00MDM0LTRhODAtYmMxZC00NmMzYTFmNmE0YTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb/azureAsyncOperation/aa612f13-903b-42d1-991a-aec100c4524d?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00MzQ0L2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi9hYTYxMmYxMy05MDNiLTQyZDEtOTkxYS1hZWMxMDBjNDUyNGQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"220d5f33-4034-4a80-bc1d-46c3a1f6a4a7\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"aa612f13-903b-42d1-991a-aec100c4524d\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -224,7 +224,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:42:42 GMT" + "Fri, 24 Feb 2017 19:12:33 GMT" ], "Transfer-Encoding": [ "chunked" @@ -236,7 +236,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f6788e6a-0213-4044-896e-2924e2d8da69" + "fe417994-73ef-4ebb-925f-d4d1c279c99c" ], "X-Content-Type-Options": [ "nosniff" @@ -248,32 +248,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb/azureAsyncOperation/220d5f33-4034-4a80-bc1d-46c3a1f6a4a7?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb/azureAsyncOperation/aa612f13-903b-42d1-991a-aec100c4524d?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-correlation-request-id": [ - "541f14e0-a69a-4f3d-b276-3daf04ca22f9" + "06e2e50d-7c69-4f5a-bcaa-a81acdf45213" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014242Z:541f14e0-a69a-4f3d-b276-3daf04ca22f9" + "CENTRALUS:20170224T191233Z:06e2e50d-7c69-4f5a-bcaa-a81acdf45213" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb/azureAsyncOperation/220d5f33-4034-4a80-bc1d-46c3a1f6a4a7?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC01OTYxL2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi8yMjBkNWYzMy00MDM0LTRhODAtYmMxZC00NmMzYTFmNmE0YTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb/azureAsyncOperation/aa612f13-903b-42d1-991a-aec100c4524d?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00MzQ0L2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi9hYTYxMmYxMy05MDNiLTQyZDEtOTkxYS1hZWMxMDBjNDUyNGQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"220d5f33-4034-4a80-bc1d-46c3a1f6a4a7\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"aa612f13-903b-42d1-991a-aec100c4524d\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -282,7 +282,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:43:13 GMT" + "Fri, 24 Feb 2017 19:13:03 GMT" ], "Transfer-Encoding": [ "chunked" @@ -294,7 +294,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fcde41a0-4917-4017-b977-8326b2897439" + "16ec4b46-a9b3-4534-9cb0-422661203219" ], "X-Content-Type-Options": [ "nosniff" @@ -306,32 +306,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb/azureAsyncOperation/220d5f33-4034-4a80-bc1d-46c3a1f6a4a7?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb/azureAsyncOperation/aa612f13-903b-42d1-991a-aec100c4524d?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14986" ], "x-ms-correlation-request-id": [ - "42633284-f5c3-46ab-8c72-8bf7e4a9a836" + "37616154-17d6-4854-bd4d-0f46215bfe2f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014313Z:42633284-f5c3-46ab-8c72-8bf7e4a9a836" + "CENTRALUS:20170224T191304Z:37616154-17d6-4854-bd4d-0f46215bfe2f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC01OTYxL2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00MzQ0L2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb\",\r\n \"name\": \"testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"199bd29d-b96f-42d7-9c25-ee7d975eac30\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:42:13.353Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:52:52.923Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb\",\r\n \"name\": \"testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0bd2a08a-66c7-429b-8a3c-b7a85e98fed6\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T19:12:02.173Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:22:41.867Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -340,7 +340,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:43:14 GMT" + "Fri, 24 Feb 2017 19:13:04 GMT" ], "Transfer-Encoding": [ "chunked" @@ -352,7 +352,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6d8c1bf4-e392-4401-b376-5572d6d9606c" + "82517737-2075-4ff0-b442-093c604a86ca" ], "X-Content-Type-Options": [ "nosniff" @@ -364,20 +364,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14985" ], "x-ms-correlation-request-id": [ - "80c3194a-982e-465f-85fa-b072a03bf39b" + "db087472-7e37-4eca-ba42-856d6b8f9d30" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014314Z:80c3194a-982e-465f-85fa-b072a03bf39b" + "CENTRALUS:20170224T191305Z:db087472-7e37-4eca-ba42-856d6b8f9d30" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -388,17 +388,17 @@ "184" ], "x-ms-client-request-id": [ - "a6cfff5d-8ac0-4699-8b1b-22743dd47094" + "de84aff3-4af2-472e-88a7-6f24cb20cb6f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440\",\r\n \"name\": \"sqlcrudtest-6440\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6440.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395\",\r\n \"name\": \"sqlcrudtest-3395\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3395.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "503" @@ -410,13 +410,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:43:51 GMT" + "Fri, 24 Feb 2017 19:13:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ddc455b7-61d5-40ab-af9c-22cf0072e807" + "6007310d-3b7d-4e50-b845-e9e294a3bc68" ], "X-Content-Type-Options": [ "nosniff" @@ -431,22 +431,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "61ed2a16-307d-4591-8984-0090936c5150" + "8e4fdb3e-f198-4222-93ff-9aa7b2b3c7c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014352Z:61ed2a16-307d-4591-8984-0090936c5150" + "CENTRALUS:20170224T191340Z:8e4fdb3e-f198-4222-93ff-9aa7b2b3c7c6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwL2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1L2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"OnlineSecondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-5961/databases/testdb\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"OnlineSecondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-4344/databases/testdb\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -455,17 +455,17 @@ "272" ], "x-ms-client-request-id": [ - "624ed693-0d28-46f8-a24d-c13ad34a1393" + "a5c6974e-8d0e-4b8c-ab95-837d9e5345bf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2017-02-09T17:43:56.218-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2017-02-24T11:13:44.683-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "79" @@ -477,10 +477,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:43:53 GMT" + "Fri, 24 Feb 2017 19:13:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/operationResults/6cf523f9-a01e-4dfb-8796-a78d3891bb6f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/operationResults/bccb5104-6966-4c67-b35d-f6c25961a868?api-version=2014-04-01-Preview" ], "Retry-After": [ "10" @@ -489,7 +489,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6cf523f9-a01e-4dfb-8796-a78d3891bb6f" + "bccb5104-6966-4c67-b35d-f6c25961a868" ], "X-Content-Type-Options": [ "nosniff" @@ -504,32 +504,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/azureAsyncOperation/6cf523f9-a01e-4dfb-8796-a78d3891bb6f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/azureAsyncOperation/bccb5104-6966-4c67-b35d-f6c25961a868?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "e87266a0-f7e6-43c9-8467-a4fc72644d92" + "83bedd3c-410b-4f12-a6cc-7ebd66580a24" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014354Z:e87266a0-f7e6-43c9-8467-a4fc72644d92" + "CENTRALUS:20170224T191342Z:83bedd3c-410b-4f12-a6cc-7ebd66580a24" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/azureAsyncOperation/6cf523f9-a01e-4dfb-8796-a78d3891bb6f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwL2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi82Y2Y1MjNmOS1hMDFlLTRkZmItODc5Ni1hNzhkMzg5MWJiNmY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/azureAsyncOperation/bccb5104-6966-4c67-b35d-f6c25961a868?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1L2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi9iY2NiNTEwNC02OTY2LTRjNjctYjM1ZC1mNmMyNTk2MWE4Njg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6cf523f9-a01e-4dfb-8796-a78d3891bb6f\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"bccb5104-6966-4c67-b35d-f6c25961a868\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -538,7 +538,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:44:25 GMT" + "Fri, 24 Feb 2017 19:14:13 GMT" ], "Transfer-Encoding": [ "chunked" @@ -550,7 +550,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b978ee8c-cc5f-4219-8875-c71617326b60" + "6ff8be51-d155-4abc-925f-e8e38e9973d0" ], "X-Content-Type-Options": [ "nosniff" @@ -562,32 +562,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/azureAsyncOperation/6cf523f9-a01e-4dfb-8796-a78d3891bb6f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/azureAsyncOperation/bccb5104-6966-4c67-b35d-f6c25961a868?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14984" ], "x-ms-correlation-request-id": [ - "91e0ff5a-24b1-4b1d-88c1-b819c2fdc90e" + "c8289b72-835a-48c3-8915-e601fe47d1a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014425Z:91e0ff5a-24b1-4b1d-88c1-b819c2fdc90e" + "CENTRALUS:20170224T191413Z:c8289b72-835a-48c3-8915-e601fe47d1a6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/azureAsyncOperation/6cf523f9-a01e-4dfb-8796-a78d3891bb6f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwL2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi82Y2Y1MjNmOS1hMDFlLTRkZmItODc5Ni1hNzhkMzg5MWJiNmY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/azureAsyncOperation/bccb5104-6966-4c67-b35d-f6c25961a868?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1L2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi9iY2NiNTEwNC02OTY2LTRjNjctYjM1ZC1mNmMyNTk2MWE4Njg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6cf523f9-a01e-4dfb-8796-a78d3891bb6f\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"bccb5104-6966-4c67-b35d-f6c25961a868\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -596,7 +596,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:44:56 GMT" + "Fri, 24 Feb 2017 19:14:44 GMT" ], "Transfer-Encoding": [ "chunked" @@ -608,7 +608,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c93cd49d-9fc4-4ecd-a2ac-a9fc77fd1a4a" + "d7d6a58f-8a6f-40bc-8ea1-15093241e285" ], "X-Content-Type-Options": [ "nosniff" @@ -620,32 +620,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/azureAsyncOperation/6cf523f9-a01e-4dfb-8796-a78d3891bb6f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/azureAsyncOperation/bccb5104-6966-4c67-b35d-f6c25961a868?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14983" ], "x-ms-correlation-request-id": [ - "f3910aac-c983-4b27-acc6-6df0c297a14d" + "603e88d5-fbec-4b5b-a7d9-02f1eaa0b395" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014456Z:f3910aac-c983-4b27-acc6-6df0c297a14d" + "CENTRALUS:20170224T191444Z:603e88d5-fbec-4b5b-a7d9-02f1eaa0b395" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwL2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1L2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb\",\r\n \"name\": \"testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0e283888-8475-4e8d-a345-8c1dab74dd93\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:43:56.727Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:54:49.15Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb\",\r\n \"name\": \"testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9057d560-59ec-463e-9a36-e3ea1a3a7345\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T19:13:45.107Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:24:33.23Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -654,7 +654,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:44:57 GMT" + "Fri, 24 Feb 2017 19:14:45 GMT" ], "Transfer-Encoding": [ "chunked" @@ -666,7 +666,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "136943f0-b241-438c-a04b-f2d697644849" + "86da6ee1-5157-4277-b896-04c12623ec24" ], "X-Content-Type-Options": [ "nosniff" @@ -678,35 +678,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14982" ], "x-ms-correlation-request-id": [ - "75cf4504-f077-4774-b4a2-53feefd8de6e" + "acb92b07-d600-4820-a796-f5cd812cdf47" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014457Z:75cf4504-f077-4774-b4a2-53feefd8de6e" + "CENTRALUS:20170224T191445Z:acb92b07-d600-4820-a796-f5cd812cdf47" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwL2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "786281c7-cdc7-4065-9c70-9409990f3c7e" + "5af670ae-07f8-4c65-bbfb-351359500219" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/replicationLinks/5b301b68-03f6-4b26-b0f4-73ebb8634238\",\r\n \"name\": \"5b301b68-03f6-4b26-b0f4-73ebb8634238\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"partnerServer\": \"sqlcrudtest-5961\",\r\n \"partnerDatabase\": \"testdb\",\r\n \"partnerLocation\": \"Japan East\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2017-02-10T01:44:27.117\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/replicationLinks/b4fb1ac5-9078-41a6-b836-8132a0e5039b\",\r\n \"name\": \"b4fb1ac5-9078-41a6-b836-8132a0e5039b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"partnerServer\": \"sqlcrudtest-4344\",\r\n \"partnerDatabase\": \"testdb\",\r\n \"partnerLocation\": \"Japan East\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2017-02-24T19:14:15.447\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -715,7 +715,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:44:58 GMT" + "Fri, 24 Feb 2017 19:14:46 GMT" ], "Transfer-Encoding": [ "chunked" @@ -727,7 +727,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f13ac356-ab7b-4a95-8f99-265ebd0f1005" + "f1e9daca-6bd3-475e-b01a-3e7dd04c98a2" ], "X-Content-Type-Options": [ "nosniff" @@ -739,32 +739,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14981" ], "x-ms-correlation-request-id": [ - "153642dc-a737-4dc0-8997-f3fd02e8983c" + "ed6748cb-a27b-4c91-9152-d545ed4f648b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014458Z:153642dc-a737-4dc0-8997-f3fd02e8983c" + "CENTRALUS:20170224T191446Z:ed6748cb-a27b-4c91-9152-d545ed4f648b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwL2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbde5416-8e82-42ca-bf04-7701f161ee2d" + "ed035290-57aa-49cf-aae0-38a5f07c7f5f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -776,7 +776,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:45:17 GMT" + "Fri, 24 Feb 2017 19:15:05 GMT" ], "Transfer-Encoding": [ "chunked" @@ -788,7 +788,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "83d7fc1a-19dc-47f7-b6de-fd3ac9ce5d03" + "72b7ac46-cafe-47c8-a691-58cedf8ae1f4" ], "X-Content-Type-Options": [ "nosniff" @@ -800,32 +800,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14981" ], "x-ms-correlation-request-id": [ - "d63a3b51-821c-4f70-93c1-f18ebc8dee22" + "0279dcee-9088-4807-b68a-a1cd50c7c216" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014517Z:d63a3b51-821c-4f70-93c1-f18ebc8dee22" + "CENTRALUS:20170224T191506Z:0279dcee-9088-4807-b68a-a1cd50c7c216" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwL2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c8fb186-f669-4c33-9a08-7eb78fc2a243" + "b392aeef-ef7b-4ecd-9741-44fd5dae99b8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -837,7 +837,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:45:18 GMT" + "Fri, 24 Feb 2017 19:15:06 GMT" ], "Transfer-Encoding": [ "chunked" @@ -849,7 +849,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "21632aef-0464-4268-b0f8-8d455bbe223d" + "50c1ce1c-370a-496d-ac19-6889eee1be8a" ], "X-Content-Type-Options": [ "nosniff" @@ -861,32 +861,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14980" ], "x-ms-correlation-request-id": [ - "5df8bc95-0e70-4680-aec5-4f9492ad1379" + "b3a8cf54-5d38-48f4-83ee-d0059a3e1b89" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014518Z:5df8bc95-0e70-4680-aec5-4f9492ad1379" + "CENTRALUS:20170224T191507Z:b3a8cf54-5d38-48f4-83ee-d0059a3e1b89" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/databases/testdb/replicationLinks/5b301b68-03f6-4b26-b0f4-73ebb8634238?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NDQwL2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcy81YjMwMWI2OC0wM2Y2LTRiMjYtYjBmNC03M2ViYjg2MzQyMzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5695/providers/Microsoft.Sql/servers/sqlcrudtest-3395/databases/testdb/replicationLinks/b4fb1ac5-9078-41a6-b836-8132a0e5039b?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzk1L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcy9iNGZiMWFjNS05MDc4LTQxYTYtYjgzNi04MTMyYTBlNTAzOWI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f42ed0e1-66b8-4ca8-9820-3687246a11d7" + "ebaf6a9c-3aeb-4d8b-831a-69c78ebb5f30" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -901,13 +901,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:45:16 GMT" + "Fri, 24 Feb 2017 19:15:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7c0a1aa1-966f-41d7-941d-ad72b09fe2d4" + "f26c67a8-f427-4edd-be49-640503836313" ], "X-Content-Type-Options": [ "nosniff" @@ -919,25 +919,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1194" ], "x-ms-correlation-request-id": [ - "46349f1b-4b6a-4ce7-a794-ba83c6349fd2" + "aa8e7176-590e-484a-8a63-75c1bf08ddd0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014516Z:46349f1b-4b6a-4ce7-a794-ba83c6349fd2" + "CENTRALUS:20170224T191505Z:aa8e7176-590e-484a-8a63-75c1bf08ddd0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-4799?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ3OTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-5695?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU2OTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "885c449e-fd9e-4dff-831a-eedd20525152" + "83951959-d139-4e40-9493-5b81997fde74" ], "accept-language": [ "en-US" @@ -959,28 +959,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:45:20 GMT" + "Fri, 24 Feb 2017 19:15:08 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2OTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1193" ], "x-ms-request-id": [ - "26549047-119b-4709-9ef5-b366b7b02796" + "c6f238c2-4b61-4123-8f95-0eac609bb992" ], "x-ms-correlation-request-id": [ - "26549047-119b-4709-9ef5-b366b7b02796" + "c6f238c2-4b61-4123-8f95-0eac609bb992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014521Z:26549047-119b-4709-9ef5-b366b7b02796" + "CENTRALUS:20170224T191509Z:c6f238c2-4b61-4123-8f95-0eac609bb992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -989,8 +989,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2OTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJPVFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1011,28 +1011,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:45:50 GMT" + "Fri, 24 Feb 2017 19:15:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2OTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14978" ], "x-ms-request-id": [ - "75116703-9b64-4bc3-a0d4-f57353d24566" + "6c726382-d82a-4f7f-9a1b-f4cf7debe30a" ], "x-ms-correlation-request-id": [ - "75116703-9b64-4bc3-a0d4-f57353d24566" + "6c726382-d82a-4f7f-9a1b-f4cf7debe30a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014551Z:75116703-9b64-4bc3-a0d4-f57353d24566" + "CENTRALUS:20170224T191540Z:6c726382-d82a-4f7f-9a1b-f4cf7debe30a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,8 +1041,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2OTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJPVFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1063,28 +1063,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:46:22 GMT" + "Fri, 24 Feb 2017 19:16:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2OTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14997" ], "x-ms-request-id": [ - "d47a9acf-bb68-453c-9d69-dcf2fa85682e" + "10da2e63-f481-4567-a03a-a0c2861faed5" ], "x-ms-correlation-request-id": [ - "d47a9acf-bb68-453c-9d69-dcf2fa85682e" + "10da2e63-f481-4567-a03a-a0c2861faed5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014622Z:d47a9acf-bb68-453c-9d69-dcf2fa85682e" + "WESTUS2:20170224T191611Z:10da2e63-f481-4567-a03a-a0c2861faed5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1093,8 +1093,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2OTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJPVFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1115,28 +1115,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:46:52 GMT" + "Fri, 24 Feb 2017 19:16:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2OTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14996" ], "x-ms-request-id": [ - "a7eff596-fb5d-4dda-9698-08e5aa717e90" + "7d7a4999-555a-4b4f-a43e-2419ad305b01" ], "x-ms-correlation-request-id": [ - "a7eff596-fb5d-4dda-9698-08e5aa717e90" + "7d7a4999-555a-4b4f-a43e-2419ad305b01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014652Z:a7eff596-fb5d-4dda-9698-08e5aa717e90" + "WESTUS2:20170224T191641Z:7d7a4999-555a-4b4f-a43e-2419ad305b01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1145,8 +1145,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2OTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJPVFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1167,22 +1167,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:47:22 GMT" + "Fri, 24 Feb 2017 19:17:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14995" ], "x-ms-request-id": [ - "03f69371-977f-49c2-bcf4-8d5e4a478069" + "84616874-660b-4fe1-8661-31d2ddbfd0d0" ], "x-ms-correlation-request-id": [ - "03f69371-977f-49c2-bcf4-8d5e4a478069" + "84616874-660b-4fe1-8661-31d2ddbfd0d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T014722Z:03f69371-977f-49c2-bcf4-8d5e4a478069" + "WESTUS2:20170224T191711Z:84616874-660b-4fe1-8661-31d2ddbfd0d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1193,11 +1193,11 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-4799" + "sqlcrudtest-5695" ], "TestCreateDeleteReplicationLinks": [ - "sqlcrudtest-5961", - "sqlcrudtest-6440" + "sqlcrudtest-4344", + "sqlcrudtest-3395" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestCreateReplicationLinks.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestGetListFailoverReplicationLink.json similarity index 57% rename from src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestCreateReplicationLinks.json rename to src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestGetListFailoverReplicationLink.json index 08eac4fb9bde..b004b7d1b789 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestCreateReplicationLinks.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseReplicationLinkScenarioTests/TestGetListFailoverReplicationLink.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-8931?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg5MzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-118?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-8931\": \"2017-02-10 01:35:00Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-118\": \"2017-02-24 19:03:52Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "98" ], "x-ms-client-request-id": [ - "fcda9680-3cad-4005-9322-6929cd423999" + "43df3db7-97e2-4af1-a81b-cbbaa11d34d2" ], "accept-language": [ "en-US" @@ -23,10 +23,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931\",\r\n \"name\": \"sqlcrudtest-8931\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-8931\": \"2017-02-10 01:35:00Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118\",\r\n \"name\": \"sqlcrudtest-118\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-118\": \"2017-02-24 19:03:52Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:35:01 GMT" + "Fri, 24 Feb 2017 19:03:54 GMT" ], "Pragma": [ "no-cache" @@ -47,13 +47,13 @@ "1198" ], "x-ms-request-id": [ - "0aa38fc6-c262-47ec-9c7a-b5fbd491d7de" + "367b8551-a360-4e53-bcb9-18d3507d53c3" ], "x-ms-correlation-request-id": [ - "0aa38fc6-c262-47ec-9c7a-b5fbd491d7de" + "367b8551-a360-4e53-bcb9-18d3507d53c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013501Z:0aa38fc6-c262-47ec-9c7a-b5fbd491d7de" + "CENTRALUS:20170224T190355Z:367b8551-a360-4e53-bcb9-18d3507d53c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xOTMyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1Mjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "184" ], "x-ms-client-request-id": [ - "35dc4313-0b0b-4176-a32f-c78df1aa8467" + "b51aedd4-11a4-4fc9-bb5a-7797fae79890" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932\",\r\n \"name\": \"sqlcrudtest-1932\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-1932.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528\",\r\n \"name\": \"sqlcrudtest-1528\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-1528.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "503" + "502" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:35:38 GMT" + "Fri, 24 Feb 2017 19:04:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "957a06b4-5b79-4af7-ba79-01142ec0cf8f" + "5fdeaa74-6711-4bdb-8abf-d324ace8ce74" ], "X-Content-Type-Options": [ "nosniff" @@ -120,17 +120,17 @@ "1197" ], "x-ms-correlation-request-id": [ - "a80269c3-fd82-4d94-b36f-239967b253ab" + "2d5908a0-c00c-440f-b5af-def95f3e7f3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013539Z:a80269c3-fd82-4d94-b36f-239967b253ab" + "CENTRALUS:20170224T190432Z:2d5908a0-c00c-440f-b5af-def95f3e7f3f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xOTMyL2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1MjgvZGF0YWJhc2VzL3Rlc3RkYj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "32" ], "x-ms-client-request-id": [ - "2ccba9dd-49b2-45fa-93b8-a0da944159c5" + "5ee7a8c1-3290-4673-ad61-35566b676704" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T17:35:42.409-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T11:04:36.325-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:35:39 GMT" + "Fri, 24 Feb 2017 19:04:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb/operationResults/b46073ee-18dd-4487-b685-d4885c58a528?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb/operationResults/04fb26e6-93bb-4a66-8745-81f27334d0ec?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b46073ee-18dd-4487-b685-d4885c58a528" + "04fb26e6-93bb-4a66-8745-81f27334d0ec" ], "X-Content-Type-Options": [ "nosniff" @@ -190,32 +190,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb/azureAsyncOperation/b46073ee-18dd-4487-b685-d4885c58a528?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb/azureAsyncOperation/04fb26e6-93bb-4a66-8745-81f27334d0ec?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "afc34d1d-e254-469b-800b-fa2caaca45a3" + "bcf01ff0-0fa3-47ad-b2fe-20dbc6fc455b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013540Z:afc34d1d-e254-469b-800b-fa2caaca45a3" + "CENTRALUS:20170224T190434Z:bcf01ff0-0fa3-47ad-b2fe-20dbc6fc455b" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb/azureAsyncOperation/b46073ee-18dd-4487-b685-d4885c58a528?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xOTMyL2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi9iNDYwNzNlZS0xOGRkLTQ0ODctYjY4NS1kNDg4NWM1OGE1Mjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb/azureAsyncOperation/04fb26e6-93bb-4a66-8745-81f27334d0ec?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1MjgvZGF0YWJhc2VzL3Rlc3RkYi9henVyZUFzeW5jT3BlcmF0aW9uLzA0ZmIyNmU2LTkzYmItNGE2Ni04NzQ1LTgxZjI3MzM0ZDBlYz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b46073ee-18dd-4487-b685-d4885c58a528\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"04fb26e6-93bb-4a66-8745-81f27334d0ec\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -224,7 +224,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:36:11 GMT" + "Fri, 24 Feb 2017 19:05:05 GMT" ], "Transfer-Encoding": [ "chunked" @@ -236,7 +236,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "19bd563c-7831-4af5-849a-edff2ee28c58" + "087d5249-c774-45dc-8e98-1e2318aae2df" ], "X-Content-Type-Options": [ "nosniff" @@ -248,32 +248,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb/azureAsyncOperation/b46073ee-18dd-4487-b685-d4885c58a528?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb/azureAsyncOperation/04fb26e6-93bb-4a66-8745-81f27334d0ec?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14563" + "14989" ], "x-ms-correlation-request-id": [ - "a5f2b7cf-cc59-4fbe-a679-54fcb678dd56" + "2e26d35f-b0fc-433b-87f6-1fbb007c2c94" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013611Z:a5f2b7cf-cc59-4fbe-a679-54fcb678dd56" + "CENTRALUS:20170224T190505Z:2e26d35f-b0fc-433b-87f6-1fbb007c2c94" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb/azureAsyncOperation/b46073ee-18dd-4487-b685-d4885c58a528?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xOTMyL2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi9iNDYwNzNlZS0xOGRkLTQ0ODctYjY4NS1kNDg4NWM1OGE1Mjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb/azureAsyncOperation/04fb26e6-93bb-4a66-8745-81f27334d0ec?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1MjgvZGF0YWJhc2VzL3Rlc3RkYi9henVyZUFzeW5jT3BlcmF0aW9uLzA0ZmIyNmU2LTkzYmItNGE2Ni04NzQ1LTgxZjI3MzM0ZDBlYz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b46073ee-18dd-4487-b685-d4885c58a528\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"04fb26e6-93bb-4a66-8745-81f27334d0ec\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -282,7 +282,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:36:41 GMT" + "Fri, 24 Feb 2017 19:05:35 GMT" ], "Transfer-Encoding": [ "chunked" @@ -294,7 +294,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8d7faa7b-4034-47f1-8420-7da6443aa964" + "86521e83-7c8a-46d0-8061-9228a4fe1b84" ], "X-Content-Type-Options": [ "nosniff" @@ -306,32 +306,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb/azureAsyncOperation/b46073ee-18dd-4487-b685-d4885c58a528?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb/azureAsyncOperation/04fb26e6-93bb-4a66-8745-81f27334d0ec?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14560" + "14988" ], "x-ms-correlation-request-id": [ - "b59a53f2-e933-4b5e-b3d7-3faeed473d30" + "de56f76b-b589-45e1-b076-50a6328160b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013642Z:b59a53f2-e933-4b5e-b3d7-3faeed473d30" + "CENTRALUS:20170224T190536Z:de56f76b-b589-45e1-b076-50a6328160b2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0xOTMyL2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1MjgvZGF0YWJhc2VzL3Rlc3RkYj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb\",\r\n \"name\": \"testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"6b1ce80b-25c9-41d4-b5af-677b2e071f73\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:35:42.737Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:46:21.023Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb\",\r\n \"name\": \"testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0ce9d0ff-d8e6-4aa1-8623-fd25ed60f132\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T19:04:36.763Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:15:19.383Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -340,7 +340,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:36:42 GMT" + "Fri, 24 Feb 2017 19:05:36 GMT" ], "Transfer-Encoding": [ "chunked" @@ -352,7 +352,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "614fa0db-49fb-4df9-a3ad-c12c7611aa87" + "beb7a64d-bd0f-457d-a741-49acd512d7d3" ], "X-Content-Type-Options": [ "nosniff" @@ -364,20 +364,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14559" + "14987" ], "x-ms-correlation-request-id": [ - "60e6b11a-8080-4510-a697-aaa7c1effcf7" + "cf774cf4-15d9-4ee0-879e-40fa8d107a88" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013643Z:60e6b11a-8080-4510-a697-aaa7c1effcf7" + "CENTRALUS:20170224T190537Z:cf774cf4-15d9-4ee0-879e-40fa8d107a88" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -388,20 +388,20 @@ "184" ], "x-ms-client-request-id": [ - "6ae52129-2d29-4f14-a9f3-0312db52dd17" + "94b917eb-5e3a-4d3a-99f8-4e7bd97c7688" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137\",\r\n \"name\": \"sqlcrudtest-2137\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-2137.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326\",\r\n \"name\": \"sqlcrudtest-1326\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-1326.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "503" + "502" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -410,13 +410,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:37:14 GMT" + "Fri, 24 Feb 2017 19:06:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "94295452-56bd-49f3-bb54-111e0363fd04" + "0aec52a1-8572-4ce3-a991-5430ac4a9cbc" ], "X-Content-Type-Options": [ "nosniff" @@ -434,38 +434,38 @@ "1195" ], "x-ms-correlation-request-id": [ - "34a91c35-00cc-4aca-88ef-372f1b4b7fd7" + "e81fdf5e-6d0e-4965-8e56-d77f06c771c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013715Z:34a91c35-00cc-4aca-88ef-372f1b4b7fd7" + "CENTRALUS:20170224T190612Z:e81fdf5e-6d0e-4965-8e56-d77f06c771c8" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"OnlineSecondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-1932/databases/testdb\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"OnlineSecondary\",\r\n \"sourceDatabaseId\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1528/databases/testdb\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "272" + "271" ], "x-ms-client-request-id": [ - "9f996b7c-a7f0-4958-8df9-b7e25c29ccf5" + "d04c03ca-f757-435f-bd08-779825b883fd" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2017-02-09T17:37:17.94-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2017-02-24T11:06:14.699-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "79" @@ -477,10 +477,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:37:16 GMT" + "Fri, 24 Feb 2017 19:06:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/operationResults/d84a04fc-175a-411f-a80b-6be0f98488b6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/operationResults/d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15?api-version=2014-04-01-Preview" ], "Retry-After": [ "10" @@ -489,7 +489,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d84a04fc-175a-411f-a80b-6be0f98488b6" + "d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15" ], "X-Content-Type-Options": [ "nosniff" @@ -504,32 +504,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/azureAsyncOperation/d84a04fc-175a-411f-a80b-6be0f98488b6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/azureAsyncOperation/d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-correlation-request-id": [ - "b324bf21-9c21-414a-9a40-29cd28e5f638" + "1f5e4a9d-ffb8-4fdd-b374-6febaf3df4a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013716Z:b324bf21-9c21-414a-9a40-29cd28e5f638" + "CENTRALUS:20170224T190614Z:1f5e4a9d-ffb8-4fdd-b374-6febaf3df4a2" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/azureAsyncOperation/d84a04fc-175a-411f-a80b-6be0f98488b6?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi9kODRhMDRmYy0xNzVhLTQxMWYtYTgwYi02YmUwZjk4NDg4YjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/azureAsyncOperation/d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9henVyZUFzeW5jT3BlcmF0aW9uL2QxNTUxZDYzLWViMjgtNGMxNC1iYjRjLTdhM2ZkMGYwZGQxNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d84a04fc-175a-411f-a80b-6be0f98488b6\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -538,7 +538,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:37:47 GMT" + "Fri, 24 Feb 2017 19:06:45 GMT" ], "Transfer-Encoding": [ "chunked" @@ -550,7 +550,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fa7f7ffc-459b-40c8-9829-13d187dee0a0" + "bc7128af-6bdd-4db1-b09d-aafbff90076e" ], "X-Content-Type-Options": [ "nosniff" @@ -562,32 +562,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/azureAsyncOperation/d84a04fc-175a-411f-a80b-6be0f98488b6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/azureAsyncOperation/d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14552" + "14984" ], "x-ms-correlation-request-id": [ - "ea701862-f52a-42c0-9f91-c786e3ea0539" + "fe90f3f4-af16-4742-84b0-321670662d6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013747Z:ea701862-f52a-42c0-9f91-c786e3ea0539" + "CENTRALUS:20170224T190646Z:fe90f3f4-af16-4742-84b0-321670662d6d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/azureAsyncOperation/d84a04fc-175a-411f-a80b-6be0f98488b6?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGIvYXp1cmVBc3luY09wZXJhdGlvbi9kODRhMDRmYy0xNzVhLTQxMWYtYTgwYi02YmUwZjk4NDg4YjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/azureAsyncOperation/d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9henVyZUFzeW5jT3BlcmF0aW9uL2QxNTUxZDYzLWViMjgtNGMxNC1iYjRjLTdhM2ZkMGYwZGQxNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d84a04fc-175a-411f-a80b-6be0f98488b6\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -596,7 +596,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:38:17 GMT" + "Fri, 24 Feb 2017 19:07:16 GMT" ], "Transfer-Encoding": [ "chunked" @@ -608,7 +608,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9177b8a0-8d75-49d0-8d4c-7ea7be795c16" + "ff1c8d6c-9488-4c33-86d6-38f8c9e2f376" ], "X-Content-Type-Options": [ "nosniff" @@ -620,32 +620,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/azureAsyncOperation/d84a04fc-175a-411f-a80b-6be0f98488b6?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/azureAsyncOperation/d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14547" + "14983" ], "x-ms-correlation-request-id": [ - "161686cf-2351-40f0-b48b-63058b9cffc9" + "5537b3be-9351-4866-9504-ce3977726b1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013818Z:161686cf-2351-40f0-b48b-63058b9cffc9" + "CENTRALUS:20170224T190717Z:5537b3be-9351-4866-9504-ce3977726b1a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/azureAsyncOperation/d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9henVyZUFzeW5jT3BlcmF0aW9uL2QxNTUxZDYzLWViMjgtNGMxNC1iYjRjLTdhM2ZkMGYwZGQxNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb\",\r\n \"name\": \"testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"816c5f7e-0e36-4eec-9c51-eee7a276c14c\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:37:18.847Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T01:48:08.237Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -654,7 +654,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:38:18 GMT" + "Fri, 24 Feb 2017 19:07:47 GMT" ], "Transfer-Encoding": [ "chunked" @@ -666,7 +666,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f11312aa-e59c-4594-af37-db2fc9b35c77" + "97de7447-b17b-4011-bd4f-62e548b652a3" ], "X-Content-Type-Options": [ "nosniff" @@ -677,36 +677,94 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/azureAsyncOperation/d1551d63-eb28-4c14-bb4c-7a3fd0f0dd15?api-version=2014-04-01-Preview" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14546" + "14982" ], "x-ms-correlation-request-id": [ - "2bb803de-2835-404a-903c-690d30138492" + "32dfb1c4-90a4-45ff-a9e1-59fc0adb7f24" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013818Z:2bb803de-2835-404a-903c-690d30138492" + "CENTRALUS:20170224T190747Z:32dfb1c4-90a4-45ff-a9e1-59fc0adb7f24" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb\",\r\n \"name\": \"testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9a338839-bdb5-428e-857b-f2b0ef52fe2b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T19:06:17.63Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:17:20.783Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:07:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e6d36db6-163a-4943-88b4-e51991843599" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "eda73260-eac6-49b2-b1fc-937652231536" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T190749Z:eda73260-eac6-49b2-b1fc-937652231536" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9yZXBsaWNhdGlvbkxpbmtzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9fe0e1f-661f-4eeb-b8cf-9d3d8d4df5d1" + "3d52b4fc-f0eb-43df-b5e9-e13c8ce00ed4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a\",\r\n \"name\": \"f0550bf5-07ce-4270-8e4b-71737975973a\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"partnerServer\": \"sqlcrudtest-1932\",\r\n \"partnerDatabase\": \"testdb\",\r\n \"partnerLocation\": \"Japan East\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2017-02-10T01:37:49.153\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96\",\r\n \"name\": \"7ac0e781-8311-4bfb-a54a-71d761707b96\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"partnerServer\": \"sqlcrudtest-1528\",\r\n \"partnerDatabase\": \"testdb\",\r\n \"partnerLocation\": \"Japan East\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2017-02-24T19:06:58.253\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -715,7 +773,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:38:19 GMT" + "Fri, 24 Feb 2017 19:07:49 GMT" ], "Transfer-Encoding": [ "chunked" @@ -727,7 +785,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3768dec6-ce95-4139-8a9d-6b153215e278" + "c90e5812-bf18-4b1c-b1b6-ce42a1dbef55" ], "X-Content-Type-Options": [ "nosniff" @@ -739,35 +797,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14545" + "14980" ], "x-ms-correlation-request-id": [ - "e3240827-f4fc-45b7-af6a-a0fe84879a1f" + "a7fa733d-9a8e-494b-9725-f7c8cf089843" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013819Z:e3240827-f4fc-45b7-af6a-a0fe84879a1f" + "CENTRALUS:20170224T190750Z:a7fa733d-9a8e-494b-9725-f7c8cf089843" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcy9mMDU1MGJmNS0wN2NlLTQyNzAtOGU0Yi03MTczNzk3NTk3M2E/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9yZXBsaWNhdGlvbkxpbmtzLzdhYzBlNzgxLTgzMTEtNGJmYi1hNTRhLTcxZDc2MTcwN2I5Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb271a2f-c5c2-4368-9f2c-58b340411f8d" + "e2281d2f-27b0-4a94-8033-888c90fb0d3f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a\",\r\n \"name\": \"f0550bf5-07ce-4270-8e4b-71737975973a\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"partnerServer\": \"sqlcrudtest-1932\",\r\n \"partnerDatabase\": \"testdb\",\r\n \"partnerLocation\": \"Japan East\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2017-02-10T01:37:49.153\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96\",\r\n \"name\": \"7ac0e781-8311-4bfb-a54a-71d761707b96\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"partnerServer\": \"sqlcrudtest-1528\",\r\n \"partnerDatabase\": \"testdb\",\r\n \"partnerLocation\": \"Japan East\",\r\n \"role\": \"Secondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2017-02-24T19:06:58.253\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -776,7 +834,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:38:20 GMT" + "Fri, 24 Feb 2017 19:07:50 GMT" ], "Transfer-Encoding": [ "chunked" @@ -788,7 +846,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "af3d3a91-a9a3-4c5a-bdaf-c3338244d1c1" + "a83b9d72-9ba0-44d3-b872-217c0c046ae0" ], "X-Content-Type-Options": [ "nosniff" @@ -800,35 +858,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14544" + "14979" ], "x-ms-correlation-request-id": [ - "10f740f9-66d1-485d-b715-71fb604cc8f3" + "8a0689d4-3f02-42ed-a95c-fbb127715236" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013820Z:10f740f9-66d1-485d-b715-71fb604cc8f3" + "CENTRALUS:20170224T190751Z:8a0689d4-3f02-42ed-a95c-fbb127715236" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcy9mMDU1MGJmNS0wN2NlLTQyNzAtOGU0Yi03MTczNzk3NTk3M2E/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9yZXBsaWNhdGlvbkxpbmtzLzdhYzBlNzgxLTgzMTEtNGJmYi1hNTRhLTcxZDc2MTcwN2I5Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fa6294d-140f-4281-9417-a6c4c287254e" + "a860da49-e4e0-44cf-8e1d-93b7c3dafa62" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a\",\r\n \"name\": \"f0550bf5-07ce-4270-8e4b-71737975973a\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"partnerServer\": \"sqlcrudtest-1932\",\r\n \"partnerDatabase\": \"testdb\",\r\n \"partnerLocation\": \"Japan East\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2017-02-10T01:37:49.153\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96\",\r\n \"name\": \"7ac0e781-8311-4bfb-a54a-71d761707b96\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"partnerServer\": \"sqlcrudtest-1528\",\r\n \"partnerDatabase\": \"testdb\",\r\n \"partnerLocation\": \"Japan East\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"replicationMode\": \"ASYNC\",\r\n \"startTime\": \"2017-02-24T19:06:58.253\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -837,7 +895,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:39:25 GMT" + "Fri, 24 Feb 2017 19:08:59 GMT" ], "Transfer-Encoding": [ "chunked" @@ -849,7 +907,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3a7048c0-5ea8-47d2-b8d0-ebd0c16aae83" + "21ac0f89-13b1-45a2-b302-0fee13ba2042" ], "X-Content-Type-Options": [ "nosniff" @@ -861,35 +919,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14530" + "14976" ], "x-ms-correlation-request-id": [ - "3368fe2a-dae9-4846-ae41-282f8c96c195" + "e6fceba3-0656-4782-a20a-2b69edda7331" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013925Z:3368fe2a-dae9-4846-ae41-282f8c96c195" + "CENTRALUS:20170224T190859Z:e6fceba3-0656-4782-a20a-2b69edda7331" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a/failover?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcy9mMDU1MGJmNS0wN2NlLTQyNzAtOGU0Yi03MTczNzk3NTk3M2EvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96/failover?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9yZXBsaWNhdGlvbkxpbmtzLzdhYzBlNzgxLTgzMTEtNGJmYi1hNTRhLTcxZDc2MTcwN2I5Ni9mYWlsb3Zlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97e65044-a3d0-484c-a725-aaa51da6fafa" + "a978c7cf-8363-42ac-b170-ea9cc1c63d84" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2017-02-10T01:38:22.42Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2017-02-24T19:07:51.193Z\"\r\n}", "ResponseHeaders": { "Content-Length": [ "76" @@ -901,10 +959,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:38:22 GMT" + "Fri, 24 Feb 2017 19:07:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a/operationResults/6a80f43f-177e-4c17-94b8-02b5a2f68100?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96/operationResults/27807fb6-c208-49f5-8124-6053575d95e7?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" @@ -913,7 +971,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6a80f43f-177e-4c17-94b8-02b5a2f68100" + "27807fb6-c208-49f5-8124-6053575d95e7" ], "X-Content-Type-Options": [ "nosniff" @@ -928,29 +986,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "28b196d3-4dd8-4c74-b11a-b60d7c6f0663" + "2388b5f9-3bf8-4f73-84df-5674332d6058" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013823Z:28b196d3-4dd8-4c74-b11a-b60d7c6f0663" + "CENTRALUS:20170224T190754Z:2388b5f9-3bf8-4f73-84df-5674332d6058" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a/operationResults/6a80f43f-177e-4c17-94b8-02b5a2f68100?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcy9mMDU1MGJmNS0wN2NlLTQyNzAtOGU0Yi03MTczNzk3NTk3M2Evb3BlcmF0aW9uUmVzdWx0cy82YTgwZjQzZi0xNzdlLTRjMTctOTRiOC0wMmI1YTJmNjgxMDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96/operationResults/27807fb6-c208-49f5-8124-6053575d95e7?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9yZXBsaWNhdGlvbkxpbmtzLzdhYzBlNzgxLTgzMTEtNGJmYi1hNTRhLTcxZDc2MTcwN2I5Ni9vcGVyYXRpb25SZXN1bHRzLzI3ODA3ZmI2LWMyMDgtNDlmNS04MTI0LTYwNTM1NzVkOTVlNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2017-02-10T01:38:22.42Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"FailoverContinuousCopy\",\r\n \"startTime\": \"2017-02-24T19:07:51.193Z\"\r\n}", "ResponseHeaders": { "Content-Length": [ "76" @@ -962,10 +1020,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:38:53 GMT" + "Fri, 24 Feb 2017 19:08:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a/operationResults/6a80f43f-177e-4c17-94b8-02b5a2f68100?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96/operationResults/27807fb6-c208-49f5-8124-6053575d95e7?api-version=2014-04-01-Preview" ], "Retry-After": [ "5" @@ -974,7 +1032,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a75d457d-7827-4aa5-9003-c7122ba1d44a" + "40ce673e-f0e2-4ba2-84c9-bdc7c5f557d1" ], "X-Content-Type-Options": [ "nosniff" @@ -986,26 +1044,26 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14536" + "14978" ], "x-ms-correlation-request-id": [ - "d8db9da5-5c9b-434d-a2f2-bd4c634336e8" + "862c5ae6-c9ba-4535-b6ed-eae9120695af" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013854Z:d8db9da5-5c9b-434d-a2f2-bd4c634336e8" + "CENTRALUS:20170224T190825Z:862c5ae6-c9ba-4535-b6ed-eae9120695af" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8931/providers/Microsoft.Sql/servers/sqlcrudtest-2137/databases/testdb/replicationLinks/f0550bf5-07ce-4270-8e4b-71737975973a/operationResults/6a80f43f-177e-4c17-94b8-02b5a2f68100?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTg5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMTM3L2RhdGFiYXNlcy90ZXN0ZGIvcmVwbGljYXRpb25MaW5rcy9mMDU1MGJmNS0wN2NlLTQyNzAtOGU0Yi03MTczNzk3NTk3M2Evb3BlcmF0aW9uUmVzdWx0cy82YTgwZjQzZi0xNzdlLTRjMTctOTRiOC0wMmI1YTJmNjgxMDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-118/providers/Microsoft.Sql/servers/sqlcrudtest-1326/databases/testdb/replicationLinks/7ac0e781-8311-4bfb-a54a-71d761707b96/operationResults/27807fb6-c208-49f5-8124-6053575d95e7?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTExOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTEzMjYvZGF0YWJhc2VzL3Rlc3RkYi9yZXBsaWNhdGlvbkxpbmtzLzdhYzBlNzgxLTgzMTEtNGJmYi1hNTRhLTcxZDc2MTcwN2I5Ni9vcGVyYXRpb25SZXN1bHRzLzI3ODA3ZmI2LWMyMDgtNDlmNS04MTI0LTYwNTM1NzVkOTVlNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1017,13 +1075,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:39:24 GMT" + "Fri, 24 Feb 2017 19:08:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f144d012-33ed-4e54-929c-07c7ac7028c2" + "e7ea79c3-80b2-41e9-9beb-02657f784e48" ], "X-Content-Type-Options": [ "nosniff" @@ -1035,25 +1093,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14531" + "14977" ], "x-ms-correlation-request-id": [ - "548c9f2d-142d-467a-9356-6721ce903398" + "0cb8471b-b09d-4b70-826d-734e984d20c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013924Z:548c9f2d-142d-467a-9356-6721ce903398" + "CENTRALUS:20170224T190858Z:0cb8471b-b09d-4b70-826d-734e984d20c0" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-8931?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTg5MzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-118?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae5f4fc5-7dfe-49f5-b57c-da133f74a4dd" + "84950745-0777-409f-9b11-f928a579e266" ], "accept-language": [ "en-US" @@ -1075,28 +1133,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:39:27 GMT" + "Fri, 24 Feb 2017 19:09:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg5MzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDExOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "f70f86d1-7338-4a59-ace2-9b4478d58724" + "7bb79761-541b-409f-8784-de1d607e5bee" ], "x-ms-correlation-request-id": [ - "f70f86d1-7338-4a59-ace2-9b4478d58724" + "7bb79761-541b-409f-8784-de1d607e5bee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013927Z:f70f86d1-7338-4a59-ace2-9b4478d58724" + "CENTRALUS:20170224T190902Z:7bb79761-541b-409f-8784-de1d607e5bee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1105,8 +1163,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg5MzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZzVNekV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDExOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJERXhPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1127,28 +1185,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:39:57 GMT" + "Fri, 24 Feb 2017 19:09:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg5MzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDExOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14526" + "14975" ], "x-ms-request-id": [ - "d83d0b5d-6630-4185-ac62-9b4e55a050d1" + "501aec6b-edab-496c-824a-ddfc97dad7a6" ], "x-ms-correlation-request-id": [ - "d83d0b5d-6630-4185-ac62-9b4e55a050d1" + "501aec6b-edab-496c-824a-ddfc97dad7a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013957Z:d83d0b5d-6630-4185-ac62-9b4e55a050d1" + "CENTRALUS:20170224T190933Z:501aec6b-edab-496c-824a-ddfc97dad7a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1157,8 +1215,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg5MzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZzVNekV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDExOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJERXhPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1179,28 +1237,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:40:27 GMT" + "Fri, 24 Feb 2017 19:10:03 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg5MzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDExOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14561" + "14974" ], "x-ms-request-id": [ - "77912f7a-27d4-4858-aa1e-c8d5f7774e65" + "38224290-8dfa-4dce-9421-68e09c6658cb" ], "x-ms-correlation-request-id": [ - "77912f7a-27d4-4858-aa1e-c8d5f7774e65" + "38224290-8dfa-4dce-9421-68e09c6658cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014028Z:77912f7a-27d4-4858-aa1e-c8d5f7774e65" + "CENTRALUS:20170224T191003Z:38224290-8dfa-4dce-9421-68e09c6658cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1209,8 +1267,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg5MzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZzVNekV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDExOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJERXhPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,28 +1289,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:40:57 GMT" + "Fri, 24 Feb 2017 19:10:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg5MzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDExOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14557" + "14973" ], "x-ms-request-id": [ - "b146a49c-91e1-4540-8311-84d608c7db3c" + "f41499f5-97f1-41ae-a6cf-f0d30264d619" ], "x-ms-correlation-request-id": [ - "b146a49c-91e1-4540-8311-84d608c7db3c" + "f41499f5-97f1-41ae-a6cf-f0d30264d619" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014058Z:b146a49c-91e1-4540-8311-84d608c7db3c" + "CENTRALUS:20170224T191033Z:f41499f5-97f1-41ae-a6cf-f0d30264d619" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1261,8 +1319,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDg5MzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZzVNekV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDExOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJERXhPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,22 +1341,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:41:28 GMT" + "Fri, 24 Feb 2017 19:11:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14553" + "14972" ], "x-ms-request-id": [ - "c31ef33a-5852-45c6-b756-524e0d7aac87" + "0948d679-9367-4be7-9001-31ac46021200" ], "x-ms-correlation-request-id": [ - "c31ef33a-5852-45c6-b756-524e0d7aac87" + "0948d679-9367-4be7-9001-31ac46021200" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014128Z:c31ef33a-5852-45c6-b756-524e0d7aac87" + "CENTRALUS:20170224T191104Z:0948d679-9367-4be7-9001-31ac46021200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1309,11 +1367,11 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-8931" + "sqlcrudtest-118" ], "TestGetListFailoverReplicationLink": [ - "sqlcrudtest-1932", - "sqlcrudtest-2137" + "sqlcrudtest-1528", + "sqlcrudtest-1326" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseRestoreScenarioTests/TestDatabasePointInTimeRestore.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseRestoreScenarioTests/TestDatabasePointInTimeRestore.json new file mode 100644 index 000000000000..2de2be7d914c --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseRestoreScenarioTests/TestDatabasePointInTimeRestore.json @@ -0,0 +1,1713 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlrestoretest-8524?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlrestoretest-8524\": \"2017-02-24 20:04:14Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "x-ms-client-request-id": [ + "9789184f-c11a-466f-a362-fcd0ca12c234" + ], + "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/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524\",\r\n \"name\": \"sqlrestoretest-8524\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlrestoretest-8524\": \"2017-02-24 20:04:14Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:04:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "0f739d1e-fb19-44f0-87c6-18da351ff535" + ], + "x-ms-correlation-request-id": [ + "0f739d1e-fb19-44f0-87c6-18da351ff535" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T200417Z:0f739d1e-fb19-44f0-87c6-18da351ff535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04Nzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "0bdf42ab-7495-493d-8b20-72fcfcaa6ec8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878\",\r\n \"name\": \"sqlrestoretest-878\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlrestoretest-878.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "533" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:04:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "da834cbb-08c3-497f-b764-6525b7adb283" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "72297ac3-7372-4d5f-be6d-aaadca8b2621" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T200447Z:72297ac3-7372-4d5f-be6d-aaadca8b2621" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTcwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "66bbefdb-40b0-4080-87cc-fcf24daa6d0d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T12:04:51.501-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:04:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70/operationResults/cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70/azureAsyncOperation/cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "d2652173-c37d-448b-94b4-ba42658d6ef6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T200449Z:d2652173-c37d-448b-94b4-ba42658d6ef6" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70/azureAsyncOperation/cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTcwL2F6dXJlQXN5bmNPcGVyYXRpb24vY2I4YjgyZjMtZTM1MS00YWQ2LWI4OGUtZmY1ZjAwNTVlMGNmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:05:19 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f9c01a58-efca-43a2-b310-dab9645a4d66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70/azureAsyncOperation/cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "91f08358-e90e-4c0c-931c-8945cbc5db60" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T200520Z:91f08358-e90e-4c0c-931c-8945cbc5db60" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70/azureAsyncOperation/cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTcwL2F6dXJlQXN5bmNPcGVyYXRpb24vY2I4YjgyZjMtZTM1MS00YWQ2LWI4OGUtZmY1ZjAwNTVlMGNmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:05:50 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5e8903de-4ca6-4911-b1e8-2e9ab64b971e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70/azureAsyncOperation/cb8b82f3-e351-4ad6-b88e-ff5f0055e0cf?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "5b51f8f9-e778-4172-a704-03451e5a126f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T200551Z:5b51f8f9-e778-4172-a704-03451e5a126f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTcwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70\",\r\n \"name\": \"sqlrestoretest-70\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"33c1f1bc-79bc-4fd9-a11c-b4eeba887103\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T20:04:51.783Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T20:15:25.863Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:05:51 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "51d1e913-80a1-40a8-87cf-a5020451eab4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "326c3373-c762-4fcd-8245-1a8463d05e61" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T200552Z:326c3373-c762-4fcd-8245-1a8463d05e61" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"createMode\": \"PointInTimeRestore\",\r\n \"sourceDatabaseId\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70\",\r\n \"restorePointInTime\": \"2017-02-24T20:15:25.863Z\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ], + "x-ms-client-request-id": [ + "8b02058b-162c-495b-8e77-c73bfe94c20b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateRestoreRequest\",\r\n \"startTime\": \"2017-02-24T12:16:30.458-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:16:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/operationResults/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b40e194d-0b11-4486-822f-e58ab6812463" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "7691bdd4-e7ca-4c79-8f0b-baec83525097" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T201628Z:7691bdd4-e7ca-4c79-8f0b-baec83525097" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:16:58 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "73cc9dfe-5a76-4d39-ab43-354297949b8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "f9f13786-b9c6-4326-ac64-84ace34ef5bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T201659Z:f9f13786-b9c6-4326-ac64-84ace34ef5bb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:17:30 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "401ebb11-2654-4af3-a3a7-bcd405e94c60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "a955fd4c-6bc9-42b7-a3f8-a3ec896f117b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T201730Z:a955fd4c-6bc9-42b7-a3f8-a3ec896f117b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:18:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0cfd8231-c5c2-400c-b3a2-63d53ff02b0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "7723b982-0a62-4653-9485-6d347188ec8d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T201801Z:7723b982-0a62-4653-9485-6d347188ec8d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:18:31 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "54828977-d36b-4e2a-92e1-291ef6a581aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "3f7d5baa-e234-493d-ac81-3c1c9a635bdb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T201831Z:3f7d5baa-e234-493d-ac81-3c1c9a635bdb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:19:01 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "58391fea-80a0-4021-9edb-510af6e3ecb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "75e5374e-975d-4898-bc6a-e09394c15fc6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T201902Z:75e5374e-975d-4898-bc6a-e09394c15fc6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:19:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "52610e86-befc-4237-a168-69424a3efe39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "90a2ffc8-13df-4e97-8e3d-2863e45c0727" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T201933Z:90a2ffc8-13df-4e97-8e3d-2863e45c0727" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:20:04 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ab181f40-d577-4694-82ce-fa5f5c2952dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "6e0436b3-3023-4930-81d9-e43307cf96fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202004Z:6e0436b3-3023-4930-81d9-e43307cf96fb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:20:34 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0eb879fa-6237-459f-b14c-f30dc21c9915" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "b9e6e70b-5e46-4724-a94f-527a992175f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202035Z:b9e6e70b-5e46-4724-a94f-527a992175f9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:21:05 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "22197624-0e76-41ad-a742-50caa1598e3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "d57aa4c5-c2d4-43d3-a3d4-7b426636c192" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202105Z:d57aa4c5-c2d4-43d3-a3d4-7b426636c192" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:21:36 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "aa8d5a0e-de81-406c-91df-84959fbef6bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "f1c2bc56-351f-4795-94ba-262b5cafd6fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202136Z:f1c2bc56-351f-4795-94ba-262b5cafd6fb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:22:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f481c20f-7877-4ab6-9e8b-75b4ec5efad7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "636e55c1-1848-45c5-8e2e-31ded998d20c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202207Z:636e55c1-1848-45c5-8e2e-31ded998d20c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:22:37 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5dd1b6a9-3b13-43c9-845a-0fc83fef05ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "740a68c6-2e6f-4667-9bf0-b5c6c89fc378" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202238Z:740a68c6-2e6f-4667-9bf0-b5c6c89fc378" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:23:08 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a886bdb2-bfec-4cdf-8431-8902954c257d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "87e530a1-ae95-4cfe-9546-22680c5ca8cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202309Z:87e530a1-ae95-4cfe-9546-22680c5ca8cb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDMvYXp1cmVBc3luY09wZXJhdGlvbi9iNDBlMTk0ZC0wYjExLTQ0ODYtODIyZi1lNThhYjY4MTI0NjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b40e194d-0b11-4486-822f-e58ab6812463\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:23:39 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7197c499-38dc-4b65-baeb-5c374e1d9fd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003/azureAsyncOperation/b40e194d-0b11-4486-822f-e58ab6812463?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "0d103629-c4fc-42de-9c78-9be30cd3970c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202339Z:0d103629-c4fc-42de-9c78-9be30cd3970c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003\",\r\n \"name\": \"sqlrestoretest-3003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"95223b9a-ecaf-4626-97e7-c14dbee7fee8\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T20:16:30.803Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T20:32:50.393Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:23:40 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9203ac12-d00e-47af-9761-1a8fb0999c50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "77341ad2-9b7d-47fa-be3f-c67c84529ab2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202340Z:77341ad2-9b7d-47fa-be3f-c67c84529ab2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-70?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTcwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f111dd22-7680-435a-8207-17af0df88c31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:23:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f090f988-c7e2-41db-b4cb-4bf66f34af3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "1.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "fa54bfb3-a5df-485d-8762-b4b48391a408" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202348Z:fa54bfb3-a5df-485d-8762-b4b48391a408" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlrestoretest-8524/providers/Microsoft.Sql/servers/sqlrestoretest-878/databases/sqlrestoretest-3003?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxyZXN0b3JldGVzdC04NzgvZGF0YWJhc2VzL3NxbHJlc3RvcmV0ZXN0LTMwMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b911d52-27c1-41b9-a19f-b88a2cca1863" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:23:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d5939e8d-9001-4702-9e40-1dd9c4ffcff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "1.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "349b880e-9bf7-49f0-b591-978e2259831d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202351Z:349b880e-9bf7-49f0-b591-978e2259831d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlrestoretest-8524?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbHJlc3RvcmV0ZXN0LTg1MjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c488426-dfea-4d31-a61d-12f7903c7417" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:23:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxSRVNUT1JFVEVTVDoyRDg1MjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "3fd1a411-ff38-4f2c-86d3-fcbed1b14f1c" + ], + "x-ms-correlation-request-id": [ + "3fd1a411-ff38-4f2c-86d3-fcbed1b14f1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202353Z:3fd1a411-ff38-4f2c-86d3-fcbed1b14f1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxSRVNUT1JFVEVTVDoyRDg1MjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4U1JWTlVUMUpGVkVWVFZEb3lSRGcxTWpRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:24:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxSRVNUT1JFVEVTVDoyRDg1MjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "227efa92-d662-4d68-af04-f0f8cfc5bab3" + ], + "x-ms-correlation-request-id": [ + "227efa92-d662-4d68-af04-f0f8cfc5bab3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202423Z:227efa92-d662-4d68-af04-f0f8cfc5bab3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxSRVNUT1JFVEVTVDoyRDg1MjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4U1JWTlVUMUpGVkVWVFZEb3lSRGcxTWpRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:24:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxSRVNUT1JFVEVTVDoyRDg1MjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "deb378fa-1946-4c47-92d1-681fb6e35577" + ], + "x-ms-correlation-request-id": [ + "deb378fa-1946-4c47-92d1-681fb6e35577" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202453Z:deb378fa-1946-4c47-92d1-681fb6e35577" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxSRVNUT1JFVEVTVDoyRDg1MjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4U1JWTlVUMUpGVkVWVFZEb3lSRGcxTWpRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:25:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxSRVNUT1JFVEVTVDoyRDg1MjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "07bab0cb-d93a-499e-b05e-77a4b663b27d" + ], + "x-ms-correlation-request-id": [ + "07bab0cb-d93a-499e-b05e-77a4b663b27d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202524Z:07bab0cb-d93a-499e-b05e-77a4b663b27d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxSRVNUT1JFVEVTVDoyRDg1MjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4U1JWTlVUMUpGVkVWVFZEb3lSRGcxTWpRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 20:25:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "a80297ce-50c2-4869-af3a-91951d9f8845" + ], + "x-ms-correlation-request-id": [ + "a80297ce-50c2-4869-af3a-91951d9f8845" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170224T202554Z:a80297ce-50c2-4869-af3a-91951d9f8845" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "sqlrestoretest-8524" + ], + "RunTestInNewV12Server": [ + "sqlrestoretest-878" + ], + "TestDatabasePointInTimeRestore": [ + "sqlrestoretest-70", + "sqlrestoretest-3003" + ] + }, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestListElasticPoolActivity.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestListElasticPoolActivity.json index 55bf1c2ae713..0bde5e222c36 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestListElasticPoolActivity.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestListElasticPoolActivity.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-4291?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQyOTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-8164?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgxNjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-4291\": \"2017-02-10 02:02:14Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-8164\": \"2017-02-24 19:28:53Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,7 +13,7 @@ "99" ], "x-ms-client-request-id": [ - "20ac821e-c6ea-450c-b92f-faa04e23e54f" + "bcc55b16-2603-4341-a67e-9e5ae075fd22" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291\",\r\n \"name\": \"sqlcrudtest-4291\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-4291\": \"2017-02-10 02:02:14Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164\",\r\n \"name\": \"sqlcrudtest-8164\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-8164\": \"2017-02-24 19:28:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "239" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:02:15 GMT" + "Fri, 24 Feb 2017 19:28:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1189" ], "x-ms-request-id": [ - "37c513f7-6526-44cf-bb6e-b779c8f0e000" + "80e3ade1-a9e5-4478-ace3-4cb89a84d9fc" ], "x-ms-correlation-request-id": [ - "37c513f7-6526-44cf-bb6e-b779c8f0e000" + "80e3ade1-a9e5-4478-ace3-4cb89a84d9fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020216Z:37c513f7-6526-44cf-bb6e-b779c8f0e000" + "WESTUS2:20170224T192855Z:80e3ade1-a9e5-4478-ace3-4cb89a84d9fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291/providers/Microsoft.Sql/servers/sqlcrudtest-6574?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NTc0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164/providers/Microsoft.Sql/servers/sqlcrudtest-3286?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMjg2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "216" ], "x-ms-client-request-id": [ - "19cc9b9d-9440-462f-b84a-1c254110482b" + "aa11db5a-2809-4ff8-b47d-8b1bd52a2d4b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291/providers/Microsoft.Sql/servers/sqlcrudtest-6574\",\r\n \"name\": \"sqlcrudtest-6574\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6574.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164/providers/Microsoft.Sql/servers/sqlcrudtest-3286\",\r\n \"name\": \"sqlcrudtest-3286\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3286.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:03:02 GMT" + "Fri, 24 Feb 2017 19:29:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "65aac952-e9d5-46de-a653-a63c9b68efb0" + "0fd00ebe-6ad0-4ca0-8417-f37f3fbc8ce4" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1188" ], "x-ms-correlation-request-id": [ - "6666a369-9849-4a1f-abdc-0ebb8e0aad19" + "01c2573c-b8f3-415f-83bb-3dee98cc97b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020302Z:6666a369-9849-4a1f-abdc-0ebb8e0aad19" + "WESTUS2:20170224T192925Z:01c2573c-b8f3-415f-83bb-3dee98cc97b0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291/providers/Microsoft.Sql/servers/sqlcrudtest-6574/elasticPools/8749?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NTc0L2VsYXN0aWNQb29scy84NzQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164/providers/Microsoft.Sql/servers/sqlcrudtest-3286/elasticPools/4513?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMjg2L2VsYXN0aWNQb29scy80NTEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 5,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "197" ], "x-ms-client-request-id": [ - "6f315a7f-0034-4534-a13d-79f12af0e406" + "ae6ce697-5165-4adf-8b10-cb9824f524df" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-09T18:03:23.309-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T11:29:52.207-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:03:21 GMT" + "Fri, 24 Feb 2017 19:29:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291/providers/Microsoft.Sql/servers/sqlcrudtest-6574/elasticPools/8749/operationResults/851f1672-f7f0-46f6-a262-ee9b51e18e97?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164/providers/Microsoft.Sql/servers/sqlcrudtest-3286/elasticPools/4513/operationResults/fb670fcf-2b88-4cca-859c-5f17111db0be?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "851f1672-f7f0-46f6-a262-ee9b51e18e97" + "fb670fcf-2b88-4cca-859c-5f17111db0be" ], "X-Content-Type-Options": [ "nosniff" @@ -190,29 +190,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1187" ], "x-ms-correlation-request-id": [ - "f21dbec1-d011-418d-8f6d-a5e72272c9a9" + "11cb8dd1-38a3-42ed-8d50-55beb45df09d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020321Z:f21dbec1-d011-418d-8f6d-a5e72272c9a9" + "WESTUS2:20170224T192950Z:11cb8dd1-38a3-42ed-8d50-55beb45df09d" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291/providers/Microsoft.Sql/servers/sqlcrudtest-6574/elasticPools/8749/operationResults/851f1672-f7f0-46f6-a262-ee9b51e18e97?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NTc0L2VsYXN0aWNQb29scy84NzQ5L29wZXJhdGlvblJlc3VsdHMvODUxZjE2NzItZjdmMC00NmY2LWEyNjItZWU5YjUxZTE4ZTk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164/providers/Microsoft.Sql/servers/sqlcrudtest-3286/elasticPools/4513/operationResults/fb670fcf-2b88-4cca-859c-5f17111db0be?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMjg2L2VsYXN0aWNQb29scy80NTEzL29wZXJhdGlvblJlc3VsdHMvZmI2NzBmY2YtMmI4OC00Y2NhLTg1OWMtNWYxNzExMWRiMGJlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291/providers/Microsoft.Sql/servers/sqlcrudtest-6574/elasticPools/8749\",\r\n \"name\": \"8749\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T02:03:06.317Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164/providers/Microsoft.Sql/servers/sqlcrudtest-3286/elasticPools/4513\",\r\n \"name\": \"4513\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:29:28.807Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "441" @@ -224,13 +224,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:03:52 GMT" + "Fri, 24 Feb 2017 19:30:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4004a055-d474-44c7-9d99-6d66ad79438d" + "92f6bd48-f6c5-439b-a266-c937082c0748" ], "X-Content-Type-Options": [ "nosniff" @@ -242,35 +242,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14545" + "14997" ], "x-ms-correlation-request-id": [ - "d9467c18-06a2-4ee9-9ed9-66e0979a5d7e" + "a368a7bc-b742-4e73-9e01-a455a06cbbf2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020352Z:d9467c18-06a2-4ee9-9ed9-66e0979a5d7e" + "WESTUS2:20170224T193021Z:a368a7bc-b742-4e73-9e01-a455a06cbbf2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291/providers/Microsoft.Sql/servers/sqlcrudtest-6574/elasticPools/8749/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQyOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NTc0L2VsYXN0aWNQb29scy84NzQ5L2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164/providers/Microsoft.Sql/servers/sqlcrudtest-3286/elasticPools/4513/elasticPoolActivity?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMjg2L2VsYXN0aWNQb29scy80NTEzL2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98d3644f-c472-4d82-a6ee-f4708ef9ba09" + "e52f20df-7f8b-49b0-92b2-2291c8cadafe" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-4291/providers/Microsoft.Sql/servers/sqlcrudtest-6574/elasticPools/8749/elasticPoolActivity/851f1672-f7f0-46f6-a262-ee9b51e18e97\",\r\n \"name\": \"851f1672-f7f0-46f6-a262-ee9b51e18e97\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"851f1672-f7f0-46f6-a262-ee9b51e18e97\",\r\n \"serverName\": \"sqlcrudtest-6574\",\r\n \"elasticPoolName\": \"8749\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T02:03:06.16Z\",\r\n \"endTime\": \"2017-02-10T02:03:23.263Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 5,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 9,\r\n \"requestedStorageLimitInMB\": 10000\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8164/providers/Microsoft.Sql/servers/sqlcrudtest-3286/elasticPools/4513/elasticPoolActivity/fb670fcf-2b88-4cca-859c-5f17111db0be\",\r\n \"name\": \"fb670fcf-2b88-4cca-859c-5f17111db0be\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"fb670fcf-2b88-4cca-859c-5f17111db0be\",\r\n \"serverName\": \"sqlcrudtest-3286\",\r\n \"elasticPoolName\": \"4513\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:29:28.62Z\",\r\n \"endTime\": \"2017-02-24T19:29:52.16Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 5,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 9,\r\n \"requestedStorageLimitInMB\": 10000\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -279,7 +279,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:03:53 GMT" + "Fri, 24 Feb 2017 19:30:21 GMT" ], "Transfer-Encoding": [ "chunked" @@ -291,7 +291,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "736c4339-f392-4823-81a1-cc001ec95d9f" + "b52f05cf-d675-462b-ac7a-8693da53d0ee" ], "X-Content-Type-Options": [ "nosniff" @@ -303,25 +303,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14544" + "14996" ], "x-ms-correlation-request-id": [ - "2bc7be24-35af-4564-98c8-6555b4678060" + "c2dd13be-ec8a-40fd-ba6e-be504f2eaedf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020353Z:2bc7be24-35af-4564-98c8-6555b4678060" + "WESTUS2:20170224T193022Z:c2dd13be-ec8a-40fd-ba6e-be504f2eaedf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-4291?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQyOTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-8164?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgxNjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2896e3a-45f5-41d6-b71a-4ca5603bb5dc" + "1233ab53-8cdf-42f8-ac12-e01219a24a39" ], "accept-language": [ "en-US" @@ -343,28 +343,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:03:54 GMT" + "Fri, 24 Feb 2017 19:30:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyOTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1191" ], "x-ms-request-id": [ - "409ce54a-6aa5-4ad3-89ab-d792c4c2356b" + "350b1667-dd31-41e6-90d6-a66cc72dfddb" ], "x-ms-correlation-request-id": [ - "409ce54a-6aa5-4ad3-89ab-d792c4c2356b" + "350b1667-dd31-41e6-90d6-a66cc72dfddb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020354Z:409ce54a-6aa5-4ad3-89ab-d792c4c2356b" + "WESTUS2:20170224T193024Z:350b1667-dd31-41e6-90d6-a66cc72dfddb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,8 +373,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyOTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUXlPVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3hOalF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -395,28 +395,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:04:24 GMT" + "Fri, 24 Feb 2017 19:30:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyOTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14539" + "14995" ], "x-ms-request-id": [ - "fd5dbda3-c57a-4428-b1a3-8a26d9a29e2b" + "4e496022-e68a-4c6a-884e-e353fe684d0e" ], "x-ms-correlation-request-id": [ - "fd5dbda3-c57a-4428-b1a3-8a26d9a29e2b" + "4e496022-e68a-4c6a-884e-e353fe684d0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020424Z:fd5dbda3-c57a-4428-b1a3-8a26d9a29e2b" + "WESTUS2:20170224T193054Z:4e496022-e68a-4c6a-884e-e353fe684d0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -425,8 +425,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyOTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUXlPVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3hOalF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -447,28 +447,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:04:54 GMT" + "Fri, 24 Feb 2017 19:31:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyOTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14534" + "14993" ], "x-ms-request-id": [ - "36886cdf-3574-432b-a113-e4bdf31dc700" + "97a14cf7-595e-464e-896b-31cd513e132b" ], "x-ms-correlation-request-id": [ - "36886cdf-3574-432b-a113-e4bdf31dc700" + "97a14cf7-595e-464e-896b-31cd513e132b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020455Z:36886cdf-3574-432b-a113-e4bdf31dc700" + "WESTUS2:20170224T193124Z:97a14cf7-595e-464e-896b-31cd513e132b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -477,8 +477,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyOTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUXlPVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3hOalF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,28 +499,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:05:25 GMT" + "Fri, 24 Feb 2017 19:31:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyOTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14573" + "14992" ], "x-ms-request-id": [ - "f598b53c-35da-41dc-8f3c-a3cbe7873338" + "c3ca632a-8495-41f6-aa86-a3f7f8adcd5c" ], "x-ms-correlation-request-id": [ - "f598b53c-35da-41dc-8f3c-a3cbe7873338" + "c3ca632a-8495-41f6-aa86-a3f7f8adcd5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020525Z:f598b53c-35da-41dc-8f3c-a3cbe7873338" + "WESTUS2:20170224T193155Z:c3ca632a-8495-41f6-aa86-a3f7f8adcd5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -529,8 +529,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQyOTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUXlPVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxNjQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3hOalF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,22 +551,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:05:55 GMT" + "Fri, 24 Feb 2017 19:32:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14570" + "14991" ], "x-ms-request-id": [ - "1d0f125d-4dcc-4052-b70e-330dbd736952" + "0634dc91-99a9-4009-a72c-7ce27cada60e" ], "x-ms-correlation-request-id": [ - "1d0f125d-4dcc-4052-b70e-330dbd736952" + "0634dc91-99a9-4009-a72c-7ce27cada60e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T020555Z:1d0f125d-4dcc-4052-b70e-330dbd736952" + "WESTUS2:20170224T193225Z:0634dc91-99a9-4009-a72c-7ce27cada60e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -577,13 +577,13 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-4291" + "sqlcrudtest-8164" ], "RunTestInNewV12Server": [ - "sqlcrudtest-6574" + "sqlcrudtest-3286" ], "TestListElasticPoolActivity": [ - "8749" + "4513" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestListElasticPoolDatabaseActivity.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestListElasticPoolDatabaseActivity.json index 4c67eab3ac07..fed383198261 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestListElasticPoolDatabaseActivity.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestListElasticPoolDatabaseActivity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-256?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTI1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-9295?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTkyOTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-256\": \"2017-02-10 01:56:10Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-9295\": \"2017-02-24 19:17:14Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "99" ], "x-ms-client-request-id": [ - "777d6440-c0bb-4fae-8106-c6170b437f89" + "cfe8e682-cadf-443b-a150-e796f085d6c1" ], "accept-language": [ "en-US" @@ -23,10 +23,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256\",\r\n \"name\": \"sqlcrudtest-256\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-256\": \"2017-02-10 01:56:10Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295\",\r\n \"name\": \"sqlcrudtest-9295\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-9295\": \"2017-02-24 19:17:14Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "236" + "239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:56:11 GMT" + "Fri, 24 Feb 2017 19:17:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "0a3c786c-2a26-45ec-be25-581179441422" + "1caa2bd5-e312-42ff-a1cc-f916cff771a3" ], "x-ms-correlation-request-id": [ - "0a3c786c-2a26-45ec-be25-581179441422" + "1caa2bd5-e312-42ff-a1cc-f916cff771a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015612Z:0a3c786c-2a26-45ec-be25-581179441422" + "WESTUS2:20170224T191716Z:1caa2bd5-e312-42ff-a1cc-f916cff771a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "216" ], "x-ms-client-request-id": [ - "a9edbf01-75d0-485e-8a73-ac107f8aaeb7" + "77c40f40-3d12-41b8-8c73-500b155c0407" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554\",\r\n \"name\": \"sqlcrudtest-1554\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-1554.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624\",\r\n \"name\": \"sqlcrudtest-7624\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-7624.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "523" + "524" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:57:01 GMT" + "Fri, 24 Feb 2017 19:17:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "363f3135-f629-4179-b735-b5f7a13c09bc" + "bf5c8cb7-79de-4647-b4b6-9c9ff0128041" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-correlation-request-id": [ - "3ddb722c-99a3-4c3b-b52b-84d5f88a2c2b" + "5f04965d-a7dd-4c54-a9e8-836b33181a32" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015701Z:3ddb722c-99a3-4c3b-b52b-84d5f88a2c2b" + "WESTUS2:20170224T191752Z:5f04965d-a7dd-4c54-a9e8-836b33181a32" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/elasticPools/4212?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZWxhc3RpY1Bvb2xzLzQyMTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/elasticPools/9777?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2VsYXN0aWNQb29scy85Nzc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 5,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "197" ], "x-ms-client-request-id": [ - "4c949150-3db0-4cf4-af96-c7d7ff3b0a23" + "977f068e-5ae6-4811-81ef-1f65a8214034" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-09T17:57:26.068-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T11:18:20.22-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:57:24 GMT" + "Fri, 24 Feb 2017 19:18:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/elasticPools/4212/operationResults/0d5172fc-c929-4e73-8161-1867683afdfe?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/elasticPools/9777/operationResults/9bb20caf-97ac-4c07-b0de-602f3a8e7c60?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0d5172fc-c929-4e73-8161-1867683afdfe" + "9bb20caf-97ac-4c07-b0de-602f3a8e7c60" ], "X-Content-Type-Options": [ "nosniff" @@ -190,32 +190,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1188" ], "x-ms-correlation-request-id": [ - "4f76bab0-dbf6-445f-a32c-07820334bb4f" + "e43af76a-8fc1-4749-b6a0-bd285a7b4442" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015724Z:4f76bab0-dbf6-445f-a32c-07820334bb4f" + "WESTUS2:20170224T191818Z:e43af76a-8fc1-4749-b6a0-bd285a7b4442" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/elasticPools/4212/operationResults/0d5172fc-c929-4e73-8161-1867683afdfe?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZWxhc3RpY1Bvb2xzLzQyMTIvb3BlcmF0aW9uUmVzdWx0cy8wZDUxNzJmYy1jOTI5LTRlNzMtODE2MS0xODY3NjgzYWZkZmU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/elasticPools/9777/operationResults/9bb20caf-97ac-4c07-b0de-602f3a8e7c60?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2VsYXN0aWNQb29scy85Nzc3L29wZXJhdGlvblJlc3VsdHMvOWJiMjBjYWYtOTdhYy00YzA3LWIwZGUtNjAyZjNhOGU3YzYwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/elasticPools/4212\",\r\n \"name\": \"4212\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:57:04.907Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/elasticPools/9777\",\r\n \"name\": \"9777\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:17:56.653Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "440" + "441" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -224,13 +224,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:57:55 GMT" + "Fri, 24 Feb 2017 19:18:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b982c58e-76f2-4e07-b861-eb2e0a5bff09" + "7213543c-cd33-49b4-ad9c-f92e16fdb578" ], "X-Content-Type-Options": [ "nosniff" @@ -245,17 +245,17 @@ "14993" ], "x-ms-correlation-request-id": [ - "7f1fb9d0-1a89-4194-9923-cd9d7b126b39" + "dfec9f23-1b61-4e8a-b533-add597e4e9cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015755Z:7f1fb9d0-1a89-4194-9923-cd9d7b126b39" + "WESTUS2:20170224T191849Z:dfec9f23-1b61-4e8a-b533-add597e4e9cd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZGF0YWJhc2VzLzQwNzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2RhdGFiYXNlcy81Nzg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -266,17 +266,17 @@ "32" ], "x-ms-client-request-id": [ - "775d0a8b-8c57-4b21-acd3-a6e583004406" + "adc44727-b0b1-45c2-9b14-ed8da4ebfda0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T17:58:01.052-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T11:18:53.241-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -288,10 +288,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:57:58 GMT" + "Fri, 24 Feb 2017 19:18:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/operationResults/f4f1290e-add4-436f-8426-1de036510448?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/operationResults/31e2c68d-bd5d-43d9-a804-190d169596fd?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -300,7 +300,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f4f1290e-add4-436f-8426-1de036510448" + "31e2c68d-bd5d-43d9-a804-190d169596fd" ], "X-Content-Type-Options": [ "nosniff" @@ -315,25 +315,25 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f4f1290e-add4-436f-8426-1de036510448?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/31e2c68d-bd5d-43d9-a804-190d169596fd?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "d0f29364-d6e0-4ef3-a3c4-d65691263409" + "c2eb6c53-ba5a-487c-8a6f-59fde7ce1eec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015759Z:d0f29364-d6e0-4ef3-a3c4-d65691263409" + "WESTUS2:20170224T191851Z:c2eb6c53-ba5a-487c-8a6f-59fde7ce1eec" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZGF0YWJhc2VzLzQwNzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2RhdGFiYXNlcy81Nzg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolName\": \"4212\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolName\": \"9777\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -342,17 +342,17 @@ "88" ], "x-ms-client-request-id": [ - "e30524be-02d8-4023-b284-0bee60dc9877" + "2ebac03d-f001-40b6-b54e-2f0f22070cb7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-09T17:59:05.927-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-24T11:19:55.669-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "81" @@ -364,10 +364,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:59:03 GMT" + "Fri, 24 Feb 2017 19:19:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/operationResults/f07673e2-2e44-4bd3-a4c5-b63fa83f29bd?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/operationResults/4e59497e-01b7-40a9-a551-2488173d62c5?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -376,7 +376,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f07673e2-2e44-4bd3-a4c5-b63fa83f29bd" + "4e59497e-01b7-40a9-a551-2488173d62c5" ], "X-Content-Type-Options": [ "nosniff" @@ -391,32 +391,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f07673e2-2e44-4bd3-a4c5-b63fa83f29bd?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/4e59497e-01b7-40a9-a551-2488173d62c5?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "47e7e699-0c80-49f2-868f-658309c83312" + "a422b3fd-e028-4b71-9db9-4730ea7656a0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015903Z:47e7e699-0c80-49f2-868f-658309c83312" + "WESTUS2:20170224T191955Z:a422b3fd-e028-4b71-9db9-4730ea7656a0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f4f1290e-add4-436f-8426-1de036510448?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZGF0YWJhc2VzLzQwNzcvYXp1cmVBc3luY09wZXJhdGlvbi9mNGYxMjkwZS1hZGQ0LTQzNmYtODQyNi0xZGUwMzY1MTA0NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/31e2c68d-bd5d-43d9-a804-190d169596fd?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2RhdGFiYXNlcy81Nzg3L2F6dXJlQXN5bmNPcGVyYXRpb24vMzFlMmM2OGQtYmQ1ZC00M2Q5LWE4MDQtMTkwZDE2OTU5NmZkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f4f1290e-add4-436f-8426-1de036510448\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"31e2c68d-bd5d-43d9-a804-190d169596fd\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -425,7 +425,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:58:29 GMT" + "Fri, 24 Feb 2017 19:19:21 GMT" ], "Transfer-Encoding": [ "chunked" @@ -437,7 +437,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f8dc356d-7df0-4ae4-840f-87d0427eaac1" + "4384d799-3d53-41bf-9b54-e0a4ed8ef6d6" ], "X-Content-Type-Options": [ "nosniff" @@ -449,32 +449,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f4f1290e-add4-436f-8426-1de036510448?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/31e2c68d-bd5d-43d9-a804-190d169596fd?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14992" ], "x-ms-correlation-request-id": [ - "60b36906-64f7-441a-877d-fa042c993aa0" + "2191cce3-3f10-4637-b36a-06802631891a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015830Z:60b36906-64f7-441a-877d-fa042c993aa0" + "WESTUS2:20170224T191922Z:2191cce3-3f10-4637-b36a-06802631891a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f4f1290e-add4-436f-8426-1de036510448?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZGF0YWJhc2VzLzQwNzcvYXp1cmVBc3luY09wZXJhdGlvbi9mNGYxMjkwZS1hZGQ0LTQzNmYtODQyNi0xZGUwMzY1MTA0NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/31e2c68d-bd5d-43d9-a804-190d169596fd?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2RhdGFiYXNlcy81Nzg3L2F6dXJlQXN5bmNPcGVyYXRpb24vMzFlMmM2OGQtYmQ1ZC00M2Q5LWE4MDQtMTkwZDE2OTU5NmZkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f4f1290e-add4-436f-8426-1de036510448\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"31e2c68d-bd5d-43d9-a804-190d169596fd\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -483,7 +483,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:59:00 GMT" + "Fri, 24 Feb 2017 19:19:53 GMT" ], "Transfer-Encoding": [ "chunked" @@ -495,7 +495,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "03bde273-b9f3-40a0-990f-23a45403987d" + "2672db1b-0331-4a09-8ce9-b9ecbbbe5b7d" ], "X-Content-Type-Options": [ "nosniff" @@ -507,32 +507,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f4f1290e-add4-436f-8426-1de036510448?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/31e2c68d-bd5d-43d9-a804-190d169596fd?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14991" ], "x-ms-correlation-request-id": [ - "81fca097-460f-4e82-8cf9-1d0c2db6b831" + "7ef0e587-91df-4afe-86d1-1b9eec628b54" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015901Z:81fca097-460f-4e82-8cf9-1d0c2db6b831" + "WESTUS2:20170224T191953Z:7ef0e587-91df-4afe-86d1-1b9eec628b54" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZGF0YWJhc2VzLzQwNzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2RhdGFiYXNlcy81Nzg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077\",\r\n \"name\": \"4077\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2a01ec75-0311-4c9b-9ae6-9525226e1412\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T01:58:01.32Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T02:08:39.277Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787\",\r\n \"name\": \"5787\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b6dc0021-eae3-47a6-a051-9a2c67948fa2\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T19:18:53.49Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:29:40.497Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -541,7 +541,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:59:01 GMT" + "Fri, 24 Feb 2017 19:19:53 GMT" ], "Transfer-Encoding": [ "chunked" @@ -553,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cbd57bdb-dabb-4536-adbe-1b90c295069e" + "72fed8cc-197d-43a2-aab0-44d8831418f9" ], "X-Content-Type-Options": [ "nosniff" @@ -565,29 +565,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-correlation-request-id": [ - "514112a4-d65a-48ed-a56a-2f9c58fce21e" + "eaabfd21-a39b-4122-80ff-d28348415bc3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015901Z:514112a4-d65a-48ed-a56a-2f9c58fce21e" + "WESTUS2:20170224T191953Z:eaabfd21-a39b-4122-80ff-d28348415bc3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZGF0YWJhc2VzLzQwNzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2RhdGFiYXNlcy81Nzg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077\",\r\n \"name\": \"4077\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2a01ec75-0311-4c9b-9ae6-9525226e1412\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-10T01:58:01.32Z\",\r\n \"currentServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T02:08:39.277Z\",\r\n \"elasticPoolName\": \"4212\",\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787\",\r\n \"name\": \"5787\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b6dc0021-eae3-47a6-a051-9a2c67948fa2\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T19:18:53.49Z\",\r\n \"currentServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:29:40.497Z\",\r\n \"elasticPoolName\": \"9777\",\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -596,7 +596,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:00:06 GMT" + "Fri, 24 Feb 2017 19:20:57 GMT" ], "Transfer-Encoding": [ "chunked" @@ -608,7 +608,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c4320296-6898-4f01-bcd4-d82f2510bf35" + "0c907142-fcfa-424b-bea7-4f06df970605" ], "X-Content-Type-Options": [ "nosniff" @@ -620,29 +620,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14987" ], "x-ms-correlation-request-id": [ - "9d7035e6-eca4-453f-ade3-278d1d888405" + "32cd1e39-ac7b-45a7-ab6f-6eb868f7d8af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T020007Z:9d7035e6-eca4-453f-ade3-278d1d888405" + "WESTUS2:20170224T192057Z:32cd1e39-ac7b-45a7-ab6f-6eb868f7d8af" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f07673e2-2e44-4bd3-a4c5-b63fa83f29bd?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZGF0YWJhc2VzLzQwNzcvYXp1cmVBc3luY09wZXJhdGlvbi9mMDc2NzNlMi0yZTQ0LTRiZDMtYTRjNS1iNjNmYTgzZjI5YmQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/4e59497e-01b7-40a9-a551-2488173d62c5?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2RhdGFiYXNlcy81Nzg3L2F6dXJlQXN5bmNPcGVyYXRpb24vNGU1OTQ5N2UtMDFiNy00MGE5LWE1NTEtMjQ4ODE3M2Q2MmM1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f07673e2-2e44-4bd3-a4c5-b63fa83f29bd\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4e59497e-01b7-40a9-a551-2488173d62c5\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -651,7 +651,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:59:34 GMT" + "Fri, 24 Feb 2017 19:20:25 GMT" ], "Transfer-Encoding": [ "chunked" @@ -663,7 +663,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7b22fa01-84ea-457e-a970-92f6f5c6fa91" + "a558deb8-6a1d-4e00-bdca-421f646800bc" ], "X-Content-Type-Options": [ "nosniff" @@ -675,32 +675,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f07673e2-2e44-4bd3-a4c5-b63fa83f29bd?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/4e59497e-01b7-40a9-a551-2488173d62c5?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-correlation-request-id": [ - "81e60680-b2f9-4f78-a631-e53354ba7b13" + "b3da2c15-b8f9-44b0-8501-ad251ab834c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T015934Z:81e60680-b2f9-4f78-a631-e53354ba7b13" + "WESTUS2:20170224T192025Z:b3da2c15-b8f9-44b0-8501-ad251ab834c3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f07673e2-2e44-4bd3-a4c5-b63fa83f29bd?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZGF0YWJhc2VzLzQwNzcvYXp1cmVBc3luY09wZXJhdGlvbi9mMDc2NzNlMi0yZTQ0LTRiZDMtYTRjNS1iNjNmYTgzZjI5YmQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/4e59497e-01b7-40a9-a551-2488173d62c5?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2RhdGFiYXNlcy81Nzg3L2F6dXJlQXN5bmNPcGVyYXRpb24vNGU1OTQ5N2UtMDFiNy00MGE5LWE1NTEtMjQ4ODE3M2Q2MmM1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f07673e2-2e44-4bd3-a4c5-b63fa83f29bd\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4e59497e-01b7-40a9-a551-2488173d62c5\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -709,7 +709,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:00:05 GMT" + "Fri, 24 Feb 2017 19:20:55 GMT" ], "Transfer-Encoding": [ "chunked" @@ -721,7 +721,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e5e0e1b4-395e-4f69-a175-7a4453477a8a" + "a7e0e589-f61e-47dd-ab18-5e2e435c0de3" ], "X-Content-Type-Options": [ "nosniff" @@ -733,38 +733,38 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/databases/4077/azureAsyncOperation/f07673e2-2e44-4bd3-a4c5-b63fa83f29bd?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/databases/5787/azureAsyncOperation/4e59497e-01b7-40a9-a551-2488173d62c5?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14988" ], "x-ms-correlation-request-id": [ - "38a57547-2408-43ef-bdd5-38321ab9322a" + "5f00c872-62cf-4b09-abf9-b0c91e067998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T020005Z:38a57547-2408-43ef-bdd5-38321ab9322a" + "WESTUS2:20170224T192056Z:5f00c872-62cf-4b09-abf9-b0c91e067998" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/elasticPools/4212/elasticPoolDatabaseActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTE1NTQvZWxhc3RpY1Bvb2xzLzQyMTIvZWxhc3RpY1Bvb2xEYXRhYmFzZUFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/elasticPools/9777/elasticPoolDatabaseActivity?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyOTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjI0L2VsYXN0aWNQb29scy85Nzc3L2VsYXN0aWNQb29sRGF0YWJhc2VBY3Rpdml0eT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0387d93f-964a-4b3f-97a3-787eb309c120" + "f57723e6-c04c-452f-8669-2c25ea8762f5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/elasticPools/4212/elasticPoolDatabaseActivity/f4f1290e-add4-436f-8426-1de036510448\",\r\n \"name\": \"f4f1290e-add4-436f-8426-1de036510448\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"f4f1290e-add4-436f-8426-1de036510448\",\r\n \"serverName\": \"sqlcrudtest-1554\",\r\n \"databaseName\": \"4077\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:58:01.037\",\r\n \"endTime\": \"2017-02-10T01:58:39.51\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"4212\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-256/providers/Microsoft.Sql/servers/sqlcrudtest-1554/elasticPools/4212/elasticPoolDatabaseActivity/f07673e2-2e44-4bd3-a4c5-b63fa83f29bd\",\r\n \"name\": \"f07673e2-2e44-4bd3-a4c5-b63fa83f29bd\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"f07673e2-2e44-4bd3-a4c5-b63fa83f29bd\",\r\n \"serverName\": \"sqlcrudtest-1554\",\r\n \"databaseName\": \"4077\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:59:05.867\",\r\n \"endTime\": \"2017-02-10T01:59:53.767\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"4212\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/elasticPools/9777/elasticPoolDatabaseActivity/31e2c68d-bd5d-43d9-a804-190d169596fd\",\r\n \"name\": \"31e2c68d-bd5d-43d9-a804-190d169596fd\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"31e2c68d-bd5d-43d9-a804-190d169596fd\",\r\n \"serverName\": \"sqlcrudtest-7624\",\r\n \"databaseName\": \"5787\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:18:53.227\",\r\n \"endTime\": \"2017-02-24T19:19:40.76\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"9777\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9295/providers/Microsoft.Sql/servers/sqlcrudtest-7624/elasticPools/9777/elasticPoolDatabaseActivity/4e59497e-01b7-40a9-a551-2488173d62c5\",\r\n \"name\": \"4e59497e-01b7-40a9-a551-2488173d62c5\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"4e59497e-01b7-40a9-a551-2488173d62c5\",\r\n \"serverName\": \"sqlcrudtest-7624\",\r\n \"databaseName\": \"5787\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:19:55.623\",\r\n \"endTime\": \"2017-02-24T19:20:45.69\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"9777\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -773,7 +773,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:00:07 GMT" + "Fri, 24 Feb 2017 19:20:58 GMT" ], "Transfer-Encoding": [ "chunked" @@ -785,7 +785,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "99dfbf83-42ee-4c6f-861a-ea6e01d1ba53" + "937a7958-3e00-43e0-ab55-0ef7b7dd0b8c" ], "X-Content-Type-Options": [ "nosniff" @@ -797,25 +797,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14986" ], "x-ms-correlation-request-id": [ - "169c20f6-fbd8-4dc2-a418-dd6d28ae5319" + "b2f67efa-f1ed-49e8-b95d-fdf185d8ceea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T020008Z:169c20f6-fbd8-4dc2-a418-dd6d28ae5319" + "WESTUS2:20170224T192058Z:b2f67efa-f1ed-49e8-b95d-fdf185d8ceea" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-256?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTI1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-9295?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTkyOTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b996929-3950-4044-b0f9-aa1db7f2fa0d" + "906baf29-e25c-4788-ae3c-fda0393e00fb" ], "accept-language": [ "en-US" @@ -837,28 +837,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:00:10 GMT" + "Fri, 24 Feb 2017 19:21:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI1Ni1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyOTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "ccd10244-a8b0-40ca-b542-d5136221912e" + "4520b42c-e0b6-425a-aa4b-bdb7ba731688" ], "x-ms-correlation-request-id": [ - "ccd10244-a8b0-40ca-b542-d5136221912e" + "4520b42c-e0b6-425a-aa4b-bdb7ba731688" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T020010Z:ccd10244-a8b0-40ca-b542-d5136221912e" + "WESTUS2:20170224T192100Z:4520b42c-e0b6-425a-aa4b-bdb7ba731688" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,8 +867,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI1Ni1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESTFOaTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyOTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEa3lPVFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -889,28 +889,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:00:40 GMT" + "Fri, 24 Feb 2017 19:21:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI1Ni1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyOTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14985" ], "x-ms-request-id": [ - "3bada6ac-4466-4372-b51f-51c7ea291f63" + "f511a12c-d437-427d-a8b1-bbab945bc6fd" ], "x-ms-correlation-request-id": [ - "3bada6ac-4466-4372-b51f-51c7ea291f63" + "f511a12c-d437-427d-a8b1-bbab945bc6fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T020041Z:3bada6ac-4466-4372-b51f-51c7ea291f63" + "WESTUS2:20170224T192130Z:f511a12c-d437-427d-a8b1-bbab945bc6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -919,8 +919,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI1Ni1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESTFOaTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyOTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEa3lPVFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -941,28 +941,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:01:11 GMT" + "Fri, 24 Feb 2017 19:22:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI1Ni1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyOTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14984" ], "x-ms-request-id": [ - "ec7908b7-4ef2-44d5-9ee9-e37de69da188" + "e85dbbef-058f-48be-acf7-57d542bf0f93" ], "x-ms-correlation-request-id": [ - "ec7908b7-4ef2-44d5-9ee9-e37de69da188" + "e85dbbef-058f-48be-acf7-57d542bf0f93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T020111Z:ec7908b7-4ef2-44d5-9ee9-e37de69da188" + "WESTUS2:20170224T192201Z:e85dbbef-058f-48be-acf7-57d542bf0f93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,8 +971,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI1Ni1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESTFOaTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyOTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEa3lPVFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -993,28 +993,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:01:41 GMT" + "Fri, 24 Feb 2017 19:22:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI1Ni1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyOTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14983" ], "x-ms-request-id": [ - "0ffeaef4-09f2-41d2-abbc-e4a0d78bf330" + "c1251fe4-6e4a-4218-8644-3d03e0caa666" ], "x-ms-correlation-request-id": [ - "0ffeaef4-09f2-41d2-abbc-e4a0d78bf330" + "c1251fe4-6e4a-4218-8644-3d03e0caa666" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T020142Z:0ffeaef4-09f2-41d2-abbc-e4a0d78bf330" + "WESTUS2:20170224T192231Z:c1251fe4-6e4a-4218-8644-3d03e0caa666" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1023,8 +1023,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI1Ni1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESTFOaTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyOTUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEa3lPVFV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,22 +1045,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 02:02:11 GMT" + "Fri, 24 Feb 2017 19:23:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14982" ], "x-ms-request-id": [ - "9124f7dc-e132-4e15-bf67-16482479efdc" + "106cdab7-e679-4830-8e1d-077b86846c62" ], "x-ms-correlation-request-id": [ - "9124f7dc-e132-4e15-bf67-16482479efdc" + "106cdab7-e679-4830-8e1d-077b86846c62" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T020212Z:9124f7dc-e132-4e15-bf67-16482479efdc" + "WESTUS2:20170224T192301Z:106cdab7-e679-4830-8e1d-077b86846c62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,14 +1071,14 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-256" + "sqlcrudtest-9295" ], "RunTestInNewV12Server": [ - "sqlcrudtest-1554" + "sqlcrudtest-7624" ], "TestListElasticPoolDatabaseActivity": [ - "4212", - "4077" + "9777", + "5787" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestMoveBetweenPoolsAndGetActivity.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestMoveBetweenPoolsAndGetActivity.json new file mode 100644 index 000000000000..cd9f94ee86e7 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolActivityScenarioTests/TestMoveBetweenPoolsAndGetActivity.json @@ -0,0 +1,1158 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-5676?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU2NzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-5676\": \"2017-02-24 19:23:06Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "46482a2a-04fa-487b-9cab-01f8159755ba" + ], + "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/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676\",\r\n \"name\": \"sqlcrudtest-5676\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-5676\": \"2017-02-24 19:23:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:23:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "07fa9a8c-dede-4b93-9971-92ee51133315" + ], + "x-ms-correlation-request-id": [ + "07fa9a8c-dede-4b93-9971-92ee51133315" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192309Z:07fa9a8c-dede-4b93-9971-92ee51133315" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "20099836-2f82-47ba-a68b-d37c0e3fbdf6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258\",\r\n \"name\": \"sqlcrudtest-258\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-258.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:23:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "57b362dd-d149-4fd1-b05c-8433b7dd0021" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "bb20897c-aab8-43f6-909e-2df8f11a2f58" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192342Z:bb20897c-aab8-43f6-909e-2df8f11a2f58" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5230?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZWxhc3RpY1Bvb2xzLzUyMzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 5,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "b72028e2-0365-4f17-8eb8-f2ebb4af8423" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T11:24:08.837-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "65" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:24:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5230/operationResults/4ac54389-b5e1-496b-bf50-ce14f84be793?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4ac54389-b5e1-496b-bf50-ce14f84be793" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "72ab22e9-edf8-4d5f-a582-6bf2fe740a89" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192407Z:72ab22e9-edf8-4d5f-a582-6bf2fe740a89" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5230/operationResults/4ac54389-b5e1-496b-bf50-ce14f84be793?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZWxhc3RpY1Bvb2xzLzUyMzAvb3BlcmF0aW9uUmVzdWx0cy80YWM1NDM4OS1iNWUxLTQ5NmItYmY1MC1jZTE0Zjg0YmU3OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5230\",\r\n \"name\": \"5230\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:23:46.873Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "440" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:24:38 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c7d7f1fc-2a63-406e-80bd-68383863627f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "b1bbcc44-7053-4d63-9af5-fc68eb54740e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192438Z:b1bbcc44-7053-4d63-9af5-fc68eb54740e" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5401?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZWxhc3RpY1Bvb2xzLzU0MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 5,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "197" + ], + "x-ms-client-request-id": [ + "cda278b6-f4a1-4a92-b55a-f217339eff1c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T11:25:03.665-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "65" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:25:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5401/operationResults/92aa9cd9-61ff-4a1c-b387-8e3187305da5?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "92aa9cd9-61ff-4a1c-b387-8e3187305da5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "6a6f6acd-7aa3-47c5-812c-e42840578fb7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192502Z:6a6f6acd-7aa3-47c5-812c-e42840578fb7" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5401/operationResults/92aa9cd9-61ff-4a1c-b387-8e3187305da5?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZWxhc3RpY1Bvb2xzLzU0MDEvb3BlcmF0aW9uUmVzdWx0cy85MmFhOWNkOS02MWZmLTRhMWMtYjM4Ny04ZTMxODczMDVkYTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5401\",\r\n \"name\": \"5401\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:24:42.417Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "440" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:25:33 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d607e5d8-a0f9-4fff-b31b-95dfbb3e9c9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "00248d6c-bcd1-4644-a2a0-efb7bfdc2fcb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192534Z:00248d6c-bcd1-4644-a2a0-efb7bfdc2fcb" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZGF0YWJhc2VzLzE4ODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolName\": \"5230\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "b32d3722-5d09-4276-b63b-a8f29eff19a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T11:25:39.455-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:25:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881/operationResults/57dd4620-9ebd-49ed-8d08-7f1ac6e6691e?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "57dd4620-9ebd-49ed-8d08-7f1ac6e6691e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881/azureAsyncOperation/57dd4620-9ebd-49ed-8d08-7f1ac6e6691e?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "108b83df-cc61-40cc-b270-4c09f3dd4be9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192537Z:108b83df-cc61-40cc-b270-4c09f3dd4be9" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZGF0YWJhc2VzLzE4ODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolName\": \"5401\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "0a7cf75c-bd73-41be-b335-77af4f75b544" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2017-02-24T11:26:14.05-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "81" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:26:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881/operationResults/1cda4dfc-5616-415a-81e1-e79db2e562a6?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1cda4dfc-5616-415a-81e1-e79db2e562a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881/azureAsyncOperation/1cda4dfc-5616-415a-81e1-e79db2e562a6?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "a84f0c4a-6961-4789-b47c-5fe84554cead" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192612Z:a84f0c4a-6961-4789-b47c-5fe84554cead" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881/azureAsyncOperation/57dd4620-9ebd-49ed-8d08-7f1ac6e6691e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZGF0YWJhc2VzLzE4ODEvYXp1cmVBc3luY09wZXJhdGlvbi81N2RkNDYyMC05ZWJkLTQ5ZWQtOGQwOC03ZjFhYzZlNjY5MWU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"57dd4620-9ebd-49ed-8d08-7f1ac6e6691e\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:26:08 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7ff2ae96-8b59-4ec7-9ec0-7d0a845bbe2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881/azureAsyncOperation/57dd4620-9ebd-49ed-8d08-7f1ac6e6691e?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "b0b9fb75-2c21-4802-9b89-1368c892c0d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192608Z:b0b9fb75-2c21-4802-9b89-1368c892c0d8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZGF0YWJhc2VzLzE4ODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881\",\r\n \"name\": \"1881\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"36754171-f019-460c-98e8-9909ca8785fd\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T19:25:39.737Z\",\r\n \"currentServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:35:52.327Z\",\r\n \"elasticPoolName\": \"5230\",\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:26:09 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "df16e619-adeb-42cf-abba-bb72fbe2ee09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "d372a634-fb7d-4870-9db8-553f12df6e1b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192609Z:d372a634-fb7d-4870-9db8-553f12df6e1b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZGF0YWJhc2VzLzE4ODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881\",\r\n \"name\": \"1881\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"36754171-f019-460c-98e8-9909ca8785fd\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2017-02-24T19:25:39.737Z\",\r\n \"currentServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:35:52.327Z\",\r\n \"elasticPoolName\": \"5401\",\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:26:43 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "446c959a-42f6-4024-bf8c-eb8cf421f265" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "5f95c469-17fe-4e77-a44a-d3c5b1665ced" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192644Z:5f95c469-17fe-4e77-a44a-d3c5b1665ced" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5230/elasticPoolDatabaseActivity?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZWxhc3RpY1Bvb2xzLzUyMzAvZWxhc3RpY1Bvb2xEYXRhYmFzZUFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d4d1c60-c317-44f8-891e-ea4137af9965" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5230/elasticPoolDatabaseActivity/57dd4620-9ebd-49ed-8d08-7f1ac6e6691e\",\r\n \"name\": \"57dd4620-9ebd-49ed-8d08-7f1ac6e6691e\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"57dd4620-9ebd-49ed-8d08-7f1ac6e6691e\",\r\n \"serverName\": \"sqlcrudtest-258\",\r\n \"databaseName\": \"1881\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:25:39.44\",\r\n \"endTime\": \"2017-02-24T19:25:52.56\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"5230\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:26:10 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a4bf9dd4-1fea-44f4-8435-f3b9b0012a24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "69a0698d-5000-45fb-9862-13dfb4c5cbb8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192610Z:69a0698d-5000-45fb-9862-13dfb4c5cbb8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881/azureAsyncOperation/1cda4dfc-5616-415a-81e1-e79db2e562a6?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZGF0YWJhc2VzLzE4ODEvYXp1cmVBc3luY09wZXJhdGlvbi8xY2RhNGRmYy01NjE2LTQxNWEtODFlMS1lNzlkYjJlNTYyYTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1cda4dfc-5616-415a-81e1-e79db2e562a6\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:26:42 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a0a95a23-c889-468e-a66f-3542a331f9a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/databases/1881/azureAsyncOperation/1cda4dfc-5616-415a-81e1-e79db2e562a6?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "d4fb20ff-ebee-46a2-86d2-a08abc3eca0a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192643Z:d4fb20ff-ebee-46a2-86d2-a08abc3eca0a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5401/elasticPoolDatabaseActivity?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNTgvZWxhc3RpY1Bvb2xzLzU0MDEvZWxhc3RpY1Bvb2xEYXRhYmFzZUFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d571800-997a-4e21-90fa-86e06ca67b6d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5401/elasticPoolDatabaseActivity/57dd4620-9ebd-49ed-8d08-7f1ac6e6691e\",\r\n \"name\": \"57dd4620-9ebd-49ed-8d08-7f1ac6e6691e\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"57dd4620-9ebd-49ed-8d08-7f1ac6e6691e\",\r\n \"serverName\": \"sqlcrudtest-258\",\r\n \"databaseName\": \"1881\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:25:39.44\",\r\n \"endTime\": \"2017-02-24T19:25:52.56\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"5401\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-5676/providers/Microsoft.Sql/servers/sqlcrudtest-258/elasticPools/5401/elasticPoolDatabaseActivity/1cda4dfc-5616-415a-81e1-e79db2e562a6\",\r\n \"name\": \"1cda4dfc-5616-415a-81e1-e79db2e562a6\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"1cda4dfc-5616-415a-81e1-e79db2e562a6\",\r\n \"serverName\": \"sqlcrudtest-258\",\r\n \"databaseName\": \"1881\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:26:14.02\",\r\n \"endTime\": \"2017-02-24T19:26:35.317\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"5401\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:26:44 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "746c34ad-8ece-41fb-8abb-843d744d85a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "fa984bbe-031f-4149-a18d-2c598a38a4ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192645Z:fa984bbe-031f-4149-a18d-2c598a38a4ef" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-5676?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU2NzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6c73872-6b48-4dd3-9f5b-7e2947698ae1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:26:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "2cedc880-a48f-4c1d-9e3f-a5a5cd9c567f" + ], + "x-ms-correlation-request-id": [ + "2cedc880-a48f-4c1d-9e3f-a5a5cd9c567f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192647Z:2cedc880-a48f-4c1d-9e3f-a5a5cd9c567f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJOell0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:27:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "b12b4acd-93a1-49b3-98ee-bac168ae0b36" + ], + "x-ms-correlation-request-id": [ + "b12b4acd-93a1-49b3-98ee-bac168ae0b36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192718Z:b12b4acd-93a1-49b3-98ee-bac168ae0b36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJOell0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:27:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "2ad64695-000d-4fbd-82a5-42d416a1024b" + ], + "x-ms-correlation-request-id": [ + "2ad64695-000d-4fbd-82a5-42d416a1024b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192748Z:2ad64695-000d-4fbd-82a5-42d416a1024b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJOell0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:28:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "2d3e5138-f3b3-4ff1-a35c-19d0d43715e8" + ], + "x-ms-correlation-request-id": [ + "2d3e5138-f3b3-4ff1-a35c-19d0d43715e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192818Z:2d3e5138-f3b3-4ff1-a35c-19d0d43715e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVTJOell0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 24 Feb 2017 19:28:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "d7628648-4bf2-4624-ac4c-1ff16f87733e" + ], + "x-ms-correlation-request-id": [ + "d7628648-4bf2-4624-ac4c-1ff16f87733e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170224T192849Z:d7628648-4bf2-4624-ac4c-1ff16f87733e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "sqlcrudtest-5676" + ], + "RunTestInNewV12Server": [ + "sqlcrudtest-258" + ], + "TestMoveBetweenPoolsAndGetActivity": [ + "5230", + "5401", + "1881" + ] + }, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestCreateDropDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestCreateDropDatabase.json deleted file mode 100644 index 8f92bc9fb40a..000000000000 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestCreateDropDatabase.json +++ /dev/null @@ -1,1217 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/sqlcrudtest-313?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTMxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-313\": \"2016-10-22 23:14:58Z\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "98" - ], - "x-ms-client-request-id": [ - "92037486-5f0e-4f02-8877-21f14677060f" - ], - "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/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313\",\r\n \"name\": \"sqlcrudtest-313\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-313\": \"2016-10-22 23:14:58Z\"\r\n },\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": [ - "Sat, 22 Oct 2016 23:15:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" - ], - "x-ms-request-id": [ - "be1e6fe6-b715-45ca-bd0d-226b1fe10962" - ], - "x-ms-correlation-request-id": [ - "be1e6fe6-b715-45ca-bd0d-226b1fe10962" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231501Z:be1e6fe6-b715-45ca-bd0d-226b1fe10962" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "216" - ], - "x-ms-client-request-id": [ - "44d6ee7d-bd07-4bea-84ac-6c82ffab0f61" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614\",\r\n \"name\": \"sqlcrudtest-3614\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3614.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "523" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:15:30 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "4d4f5ff4-b69c-421c-99af-a87b1406a199" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" - ], - "x-ms-correlation-request-id": [ - "0d91b4ab-4918-4ee4-bf98-8913f9215495" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231531Z:0d91b4ab-4918-4ee4-bf98-8913f9215495" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 20,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "201" - ], - "x-ms-client-request-id": [ - "ed1fd051-e8f3-4e0e-899b-f3ad67ec3d01" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2016-10-22T16:15:45.509-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:15:47 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/6f633d6f-bd9c-4253-87b7-4e4e4c389587?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "6f633d6f-bd9c-4253-87b7-4e4e4c389587" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], - "x-ms-correlation-request-id": [ - "4a58613e-226d-44f1-901e-e63035db6ee2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231547Z:4a58613e-226d-44f1-901e-e63035db6ee2" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"dtu\": 200\r\n },\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "73" - ], - "x-ms-client-request-id": [ - "557f2b5d-a51a-4e56-9fe5-b4ed514f8c46" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2016-10-22T16:16:18.887-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:16:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/d2721643-7b7e-46b0-94f4-a434a858fa05?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "d2721643-7b7e-46b0-94f4-a434a858fa05" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-correlation-request-id": [ - "4e3affa4-eebc-498c-b899-5ccc35fbb2a7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231620Z:4e3affa4-eebc-498c-b899-5ccc35fbb2a7" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"databaseDtuMax\": 100\r\n },\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "84" - ], - "x-ms-client-request-id": [ - "0a0354f7-49f9-4f3f-a91d-cc4c5cb86bd3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2016-10-22T16:17:24.439-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:17:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/800b8662-657a-4f07-ad83-e31a4acba668?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "800b8662-657a-4f07-ad83-e31a4acba668" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-correlation-request-id": [ - "a115fbbc-0c19-49e9-8554-58387b772f40" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231725Z:a115fbbc-0c19-49e9-8554-58387b772f40" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"databaseDtuMin\": 10\r\n },\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "83" - ], - "x-ms-client-request-id": [ - "79b726c5-dc9b-478e-b4a6-d9f0bcdc2a59" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2016-10-22T16:18:00.227-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:17:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/df9d55ac-c19b-427d-aee8-3a0b4e892449?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "df9d55ac-c19b-427d-aee8-3a0b4e892449" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" - ], - "x-ms-correlation-request-id": [ - "a15cf0fe-3747-4b1d-98aa-a7764f17af72" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231758Z:a15cf0fe-3747-4b1d-98aa-a7764f17af72" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/6f633d6f-bd9c-4253-87b7-4e4e4c389587?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9vcGVyYXRpb25SZXN1bHRzLzZmNjMzZDZmLWJkOWMtNDI1My04N2I3LTRlNGU0YzM4OTU4Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216\",\r\n \"name\": \"216\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T23:15:31.923Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 20,\r\n \"storageMB\": 102400\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "443" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:16:18 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "21f1bc95-599d-4cc4-ad9b-c507f1e16749" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "bb200da7-2462-4765-8738-bf747075039e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231618Z:bb200da7-2462-4765-8738-bf747075039e" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9lbGFzdGljUG9vbEFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2b4ecce4-a1e8-4197-928e-5e4e34d891aa" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"name\": \"6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:15:31.75Z\",\r\n \"endTime\": \"2016-10-22T23:15:45.463Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:16:19 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ea88158f-fa66-4b60-93f9-21cd60510622" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "878f5536-9707-403c-aaff-42de93be47fc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231619Z:878f5536-9707-403c-aaff-42de93be47fc" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9lbGFzdGljUG9vbEFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e00e131-23d1-4297-b2a6-232b5bbb89e4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"name\": \"6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:15:31.75Z\",\r\n \"endTime\": \"2016-10-22T23:15:45.463Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"name\": \"d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:16:18.857Z\",\r\n \"endTime\": \"2016-10-22T23:16:50.707Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:17:22 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0b8452be-b683-490e-8b2b-6d627d7f4d68" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "e2729ffb-0757-4fed-abd7-409270ab20c0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231723Z:e2729ffb-0757-4fed-abd7-409270ab20c0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9lbGFzdGljUG9vbEFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6745ce07-2825-41aa-aef3-528251ee67be" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"name\": \"6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:15:31.75Z\",\r\n \"endTime\": \"2016-10-22T23:15:45.463Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"name\": \"d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:16:18.857Z\",\r\n \"endTime\": \"2016-10-22T23:16:50.707Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/800b8662-657a-4f07-ad83-e31a4acba668\",\r\n \"name\": \"800b8662-657a-4f07-ad83-e31a4acba668\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"800b8662-657a-4f07-ad83-e31a4acba668\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:17:24.41Z\",\r\n \"endTime\": \"2016-10-22T23:17:24.787Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:17:57 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "dd2952b6-d407-4871-97bd-087ce651636b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "d6d3f14b-2ed9-4278-be2c-1a4f14f34830" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231757Z:d6d3f14b-2ed9-4278-be2c-1a4f14f34830" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9lbGFzdGljUG9vbEFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7384161d-848d-4dcf-9c3c-3a160b017346" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/df9d55ac-c19b-427d-aee8-3a0b4e892449\",\r\n \"name\": \"df9d55ac-c19b-427d-aee8-3a0b4e892449\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"df9d55ac-c19b-427d-aee8-3a0b4e892449\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:18:00.197Z\",\r\n \"endTime\": \"2016-10-22T23:18:00.587Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"name\": \"6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"6f633d6f-bd9c-4253-87b7-4e4e4c389587\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:15:31.75Z\",\r\n \"endTime\": \"2016-10-22T23:15:45.463Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"name\": \"d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"d2721643-7b7e-46b0-94f4-a434a858fa05\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:16:18.857Z\",\r\n \"endTime\": \"2016-10-22T23:16:50.707Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/elasticPoolActivity/800b8662-657a-4f07-ad83-e31a4acba668\",\r\n \"name\": \"800b8662-657a-4f07-ad83-e31a4acba668\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"800b8662-657a-4f07-ad83-e31a4acba668\",\r\n \"serverName\": \"sqlcrudtest-3614\",\r\n \"elasticPoolName\": \"216\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:17:24.41Z\",\r\n \"endTime\": \"2016-10-22T23:17:24.787Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:18:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "860f136f-600c-4599-b0c2-080cbb889661" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "2cccb8d1-e2f8-4c7b-96e9-428376de5f6e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231830Z:2cccb8d1-e2f8-4c7b-96e9-428376de5f6e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/d2721643-7b7e-46b0-94f4-a434a858fa05?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9vcGVyYXRpb25SZXN1bHRzL2QyNzIxNjQzLTdiN2UtNDZiMC05NGY0LWE0MzRhODU4ZmEwNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2016-10-22T23:16:18.857Z\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "60" - ], - "Content-Type": [ - "application/json" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:16:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/d2721643-7b7e-46b0-94f4-a434a858fa05?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "42a9ac4c-dbba-4b4d-8ea3-a14dcdc372d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "d34aa014-18cc-41f8-a903-416a41dee4b9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231651Z:d34aa014-18cc-41f8-a903-416a41dee4b9" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/d2721643-7b7e-46b0-94f4-a434a858fa05?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9vcGVyYXRpb25SZXN1bHRzL2QyNzIxNjQzLTdiN2UtNDZiMC05NGY0LWE0MzRhODU4ZmEwNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216\",\r\n \"name\": \"216\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T23:15:31.923Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:17:22 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "017a6e16-897f-479f-b96a-fb42713c420c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "52dda06f-524b-4289-bffa-897d653579c1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231722Z:52dda06f-524b-4289-bffa-897d653579c1" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/800b8662-657a-4f07-ad83-e31a4acba668?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9vcGVyYXRpb25SZXN1bHRzLzgwMGI4NjYyLTY1N2EtNGYwNy1hZDgzLWUzMWE0YWNiYTY2OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216\",\r\n \"name\": \"216\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T23:15:31.923Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:17:55 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c71829ce-c787-4d0a-b075-ee18035d938f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "67c60368-8806-48f1-be94-1738410a29f7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231756Z:67c60368-8806-48f1-be94-1738410a29f7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216/operationResults/df9d55ac-c19b-427d-aee8-3a0b4e892449?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMy9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM2MTQvZWxhc3RpY1Bvb2xzLzIxNi9vcGVyYXRpb25SZXN1bHRzL2RmOWQ1NWFjLWMxOWItNDI3ZC1hZWU4LTNhMGI0ZTg5MjQ0OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-313/providers/Microsoft.Sql/servers/sqlcrudtest-3614/elasticPools/216\",\r\n \"name\": \"216\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T23:15:31.923Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 10,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:18:29 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1a729705-7154-4f9a-8e95-e7c4dc0c8e17" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "a297828a-3370-49aa-8b68-42afaf337ba7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231829Z:a297828a-3370-49aa-8b68-42afaf337ba7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/sqlcrudtest-313?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTMxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b8b6cef9-a8e6-4013-92df-d52c651d45af" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:18:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMy1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" - ], - "x-ms-request-id": [ - "36ea2e08-a2f5-42fc-9cd7-fc361849b8ea" - ], - "x-ms-correlation-request-id": [ - "36ea2e08-a2f5-42fc-9cd7-fc361849b8ea" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231832Z:36ea2e08-a2f5-42fc-9cd7-fc361849b8ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMy1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJETXhNeTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:19:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMy1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-request-id": [ - "39954b90-4d52-4afc-b666-d5ab78cd8a82" - ], - "x-ms-correlation-request-id": [ - "39954b90-4d52-4afc-b666-d5ab78cd8a82" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231903Z:39954b90-4d52-4afc-b666-d5ab78cd8a82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMy1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJETXhNeTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:19:33 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMy1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-request-id": [ - "8dd77e68-a4ec-43f2-9d4b-860895820eaa" - ], - "x-ms-correlation-request-id": [ - "8dd77e68-a4ec-43f2-9d4b-860895820eaa" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T231933Z:8dd77e68-a4ec-43f2-9d4b-860895820eaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMy1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJETXhNeTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:20:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMy1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-request-id": [ - "27b24f03-f87e-4c56-bbb4-c066024b92bb" - ], - "x-ms-correlation-request-id": [ - "27b24f03-f87e-4c56-bbb4-c066024b92bb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T232003Z:27b24f03-f87e-4c56-bbb4-c066024b92bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMy1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJETXhNeTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:20:34 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-request-id": [ - "bdf27663-1e8a-40a1-b2c4-c06a7d27c359" - ], - "x-ms-correlation-request-id": [ - "bdf27663-1e8a-40a1-b2c4-c06a7d27c359" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T232034Z:bdf27663-1e8a-40a1-b2c4-c06a7d27c359" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "RunTestInNewResourceGroup": [ - "sqlcrudtest-313" - ], - "RunTestInNewV12Server": [ - "sqlcrudtest-3614" - ], - "TestUpdateElasticPoolAndListActivity": [ - "216" - ] - }, - "Variables": { - "SubscriptionId": "9d4e2ad0-e20b-4464-9219-353bded52513" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestCreateDropElasticPool.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestCreateDropElasticPool.json index 488e668203ed..1ad3399dff56 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestCreateDropElasticPool.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestCreateDropElasticPool.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-3129?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTMxMjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6211?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTYyMTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-3129\": \"2017-02-10 01:30:24Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-6211\": \"2017-02-24 19:59:10Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,7 +13,7 @@ "99" ], "x-ms-client-request-id": [ - "5697ffe8-543b-40fe-9985-315b429b9516" + "19e66b5b-fc77-481e-a895-d824892dd1c6" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129\",\r\n \"name\": \"sqlcrudtest-3129\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-3129\": \"2017-02-10 01:30:24Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211\",\r\n \"name\": \"sqlcrudtest-6211\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-6211\": \"2017-02-24 19:59:10Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "239" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:30:25 GMT" + "Fri, 24 Feb 2017 19:59:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1183" ], "x-ms-request-id": [ - "4796fe1e-1d72-461a-b0cf-82ca13522e37" + "765a78a0-4065-48f8-a4ef-81c519310cf6" ], "x-ms-correlation-request-id": [ - "4796fe1e-1d72-461a-b0cf-82ca13522e37" + "765a78a0-4065-48f8-a4ef-81c519310cf6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013025Z:4796fe1e-1d72-461a-b0cf-82ca13522e37" + "WESTUS2:20170224T195911Z:765a78a0-4065-48f8-a4ef-81c519310cf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "216" ], "x-ms-client-request-id": [ - "4578ae65-66a9-417a-9b95-c22050b43de4" + "39038e43-5c71-457d-a4db-be4da432ce2f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228\",\r\n \"name\": \"sqlcrudtest-228\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-228.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335\",\r\n \"name\": \"sqlcrudtest-335\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-335.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "521" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:30:59 GMT" + "Fri, 24 Feb 2017 20:00:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "42269b27-0c43-44fe-9c3f-6fbbf07acf0c" + "690d5adc-59a1-43ac-8c9e-6e14678032fe" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1182" ], "x-ms-correlation-request-id": [ - "c1a64599-d485-409a-ba47-6e0ff56a20e0" + "6c916162-b7c1-491c-9843-36e822d99171" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013059Z:c1a64599-d485-409a-ba47-6e0ff56a20e0" + "WESTUS2:20170224T200009Z:6c916162-b7c1-491c-9843-36e822d99171" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-4883?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMjgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ4ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-807?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzUvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTgwNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "32" ], "x-ms-client-request-id": [ - "260586c0-9a23-43b4-ac05-ce7314077a1a" + "8d87f277-96f9-421a-a577-5c55534ba1f6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-09T17:31:26.216-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T12:00:30.98-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:31:23 GMT" + "Fri, 24 Feb 2017 20:00:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-4883/operationResults/72cc7f5d-c56a-4f88-b2e9-01d54492d526?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-807/operationResults/deb84275-4258-45b4-aede-3de8c006672e?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "72cc7f5d-c56a-4f88-b2e9-01d54492d526" + "deb84275-4258-45b4-aede-3de8c006672e" ], "X-Content-Type-Options": [ "nosniff" @@ -190,32 +190,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1181" ], "x-ms-correlation-request-id": [ - "5ae8f3e7-cd6c-4d49-bd56-c4355c5cd1df" + "94203b07-769b-4a80-9a45-25e59e151bce" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013124Z:5ae8f3e7-cd6c-4d49-bd56-c4355c5cd1df" + "WESTUS2:20170224T200032Z:94203b07-769b-4a80-9a45-25e59e151bce" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-4883/operationResults/72cc7f5d-c56a-4f88-b2e9-01d54492d526?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMjgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ4ODMvb3BlcmF0aW9uUmVzdWx0cy83MmNjN2Y1ZC1jNTZhLTRmODgtYjJlOS0wMWQ1NDQ5MmQ1MjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-807/operationResults/deb84275-4258-45b4-aede-3de8c006672e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzUvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTgwNy9vcGVyYXRpb25SZXN1bHRzL2RlYjg0Mjc1LTQyNTgtNDViNC1hZWRlLTNkZThjMDA2NjcyZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-4883\",\r\n \"name\": \"sqlcrudtest-4883\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:31:02.743Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 102400\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-807\",\r\n \"name\": \"sqlcrudtest-807\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T20:00:10.057Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 102400\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "439" + "437" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -224,13 +224,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:31:54 GMT" + "Fri, 24 Feb 2017 20:01:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c871de2b-4b1b-4256-84e0-04b163d790bf" + "c790f79b-72a0-4acc-9bbe-b26057846c29" ], "X-Content-Type-Options": [ "nosniff" @@ -245,17 +245,17 @@ "14983" ], "x-ms-correlation-request-id": [ - "bd8c6b78-3211-41d6-88bc-2c69339868eb" + "526c9f3f-d1d1-4d91-9a15-dcfd58b8fe53" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013155Z:bd8c6b78-3211-41d6-88bc-2c69339868eb" + "WESTUS2:20170224T200103Z:526c9f3f-d1d1-4d91-9a15-dcfd58b8fe53" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-3851?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMjgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTM4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-980?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzUvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTk4MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -266,17 +266,17 @@ "131" ], "x-ms-client-request-id": [ - "c57b0d58-91af-4f0b-8370-6e6bbecc775d" + "0bb6d3e1-accd-4a65-ade0-30f6c43ba04f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-09T17:32:20.244-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T12:01:30.072-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -288,10 +288,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:32:17 GMT" + "Fri, 24 Feb 2017 20:01:28 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-3851/operationResults/e0c615d6-8cc2-4f5e-bb1a-4d2bf8bb40fc?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-980/operationResults/8ff92305-4b98-409e-8216-069d24c021bd?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -300,7 +300,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e0c615d6-8cc2-4f5e-bb1a-4d2bf8bb40fc" + "8ff92305-4b98-409e-8216-069d24c021bd" ], "X-Content-Type-Options": [ "nosniff" @@ -315,32 +315,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1180" ], "x-ms-correlation-request-id": [ - "3ffad50e-181f-4d35-9317-a8eff184f4ac" + "465f4bee-b834-4d7b-b6c4-ebd0404c8a20" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013218Z:3ffad50e-181f-4d35-9317-a8eff184f4ac" + "WESTUS2:20170224T200129Z:465f4bee-b834-4d7b-b6c4-ebd0404c8a20" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-3851/operationResults/e0c615d6-8cc2-4f5e-bb1a-4d2bf8bb40fc?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMjgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTM4NTEvb3BlcmF0aW9uUmVzdWx0cy9lMGM2MTVkNi04Y2MyLTRmNWUtYmIxYS00ZDJiZjhiYjQwZmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-980/operationResults/8ff92305-4b98-409e-8216-069d24c021bd?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzUvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTk4MC9vcGVyYXRpb25SZXN1bHRzLzhmZjkyMzA1LTRiOTgtNDA5ZS04MjE2LTA2OWQyNGMwMjFiZD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-3851\",\r\n \"name\": \"sqlcrudtest-3851\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:31:59.37Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 102400\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-980\",\r\n \"name\": \"sqlcrudtest-980\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T20:01:06.427Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 102400\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "469" + "468" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -349,13 +349,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:32:48 GMT" + "Fri, 24 Feb 2017 20:01:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "77fdf846-7192-4e08-8151-753e4d8cf091" + "98ce977c-32b5-45be-83fd-23ee22e80354" ], "X-Content-Type-Options": [ "nosniff" @@ -370,29 +370,29 @@ "14982" ], "x-ms-correlation-request-id": [ - "75338392-779f-4d14-b153-e90cb3ed9375" + "5c21b0cd-9895-4589-8acf-a475ee4c6650" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013249Z:75338392-779f-4d14-b153-e90cb3ed9375" + "WESTUS2:20170224T200159Z:5c21b0cd-9895-4589-8acf-a475ee4c6650" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-4883?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMjgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ4ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-807?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzUvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTgwNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "543a7e03-3c02-4c90-becf-1c28d21a1d1e" + "30cdc07a-2bda-40c7-b397-a0678c3af5f5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -407,13 +407,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:32:51 GMT" + "Fri, 24 Feb 2017 20:02:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "42061d6a-ac0f-4380-abd6-61425195518b" + "7c9cab99-71a2-49c0-940c-7db08486ad00" ], "X-Content-Type-Options": [ "nosniff" @@ -425,32 +425,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1179" ], "x-ms-correlation-request-id": [ - "628b6d7a-2d01-455a-9b41-73c1af812c90" + "7fa197c9-e33e-42ac-a3be-e4e6ac08ebbd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013251Z:628b6d7a-2d01-455a-9b41-73c1af812c90" + "WESTUS2:20170224T200202Z:7fa197c9-e33e-42ac-a3be-e4e6ac08ebbd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-6654?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMjgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTY2NTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-648?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzUvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTY0OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "990816b8-06a4-4638-bd9e-7754deda670a" + "959035c6-67af-4236-9920-039006cda509" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -462,22 +462,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:32:51 GMT" + "Fri, 24 Feb 2017 20:02:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1178" ], "x-ms-request-id": [ - "2d62e13f-158e-4422-899f-18c4f5ae9e3b" + "313e2cbf-0e67-43b1-871e-d561908e660c" ], "x-ms-correlation-request-id": [ - "2d62e13f-158e-4422-899f-18c4f5ae9e3b" + "313e2cbf-0e67-43b1-871e-d561908e660c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013252Z:2d62e13f-158e-4422-899f-18c4f5ae9e3b" + "WESTUS2:20170224T200202Z:313e2cbf-0e67-43b1-871e-d561908e660c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,20 +486,20 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-3129/providers/Microsoft.Sql/servers/sqlcrudtest-228/elasticPools/sqlcrudtest-3851?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTMxMjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yMjgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTM4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6211/providers/Microsoft.Sql/servers/sqlcrudtest-335/elasticPools/sqlcrudtest-980?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTYyMTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMzUvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTk4MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3d60739-1932-4d8a-8470-78fea9d68322" + "7110f635-5fbd-4efc-a961-c39c1795bdda" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -514,13 +514,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:32:54 GMT" + "Fri, 24 Feb 2017 20:02:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d14f54cc-fa13-4b6b-a8d8-5b06cd2ae078" + "02a7d78a-5b17-452b-8436-75b215464707" ], "X-Content-Type-Options": [ "nosniff" @@ -532,25 +532,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1177" ], "x-ms-correlation-request-id": [ - "61902013-0d3d-4444-a69e-b754cd800884" + "60a851bc-8b83-46f6-a13e-07f860fdf47e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013254Z:61902013-0d3d-4444-a69e-b754cd800884" + "WESTUS2:20170224T200204Z:60a851bc-8b83-46f6-a13e-07f860fdf47e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-3129?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTMxMjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6211?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTYyMTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f12fa7a0-b276-44b1-ab1f-08a79b9d51f3" + "06d9a449-ee06-4e68-a4e3-6eb420916bf4" ], "accept-language": [ "en-US" @@ -572,28 +572,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:32:56 GMT" + "Fri, 24 Feb 2017 20:02:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYyMTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1176" ], "x-ms-request-id": [ - "b40fcdf4-e2dc-44d7-8cbf-9176f1d99499" + "2ef683d6-409a-41cf-9b39-ca99cbfa119f" ], "x-ms-correlation-request-id": [ - "b40fcdf4-e2dc-44d7-8cbf-9176f1d99499" + "2ef683d6-409a-41cf-9b39-ca99cbfa119f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013256Z:b40fcdf4-e2dc-44d7-8cbf-9176f1d99499" + "WESTUS2:20170224T200205Z:2ef683d6-409a-41cf-9b39-ca99cbfa119f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -602,8 +602,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJETXhNamt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYyMTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWXlNVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -624,13 +624,13 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:33:26 GMT" + "Fri, 24 Feb 2017 20:02:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYyMTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -639,13 +639,13 @@ "14981" ], "x-ms-request-id": [ - "1ccf265a-7426-4794-a25f-feef642a6956" + "fa7c1e21-7366-41fe-9dd6-a94c20b80c05" ], "x-ms-correlation-request-id": [ - "1ccf265a-7426-4794-a25f-feef642a6956" + "fa7c1e21-7366-41fe-9dd6-a94c20b80c05" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013326Z:1ccf265a-7426-4794-a25f-feef642a6956" + "WESTUS2:20170224T200236Z:fa7c1e21-7366-41fe-9dd6-a94c20b80c05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,8 +654,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJETXhNamt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYyMTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWXlNVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,13 +676,13 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:33:56 GMT" + "Fri, 24 Feb 2017 20:03:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYyMTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -691,13 +691,13 @@ "14980" ], "x-ms-request-id": [ - "1b0a08c6-8201-405b-b2f6-872d7ae63b85" + "bc835ebd-f92e-471b-a765-f199f3c95ecb" ], "x-ms-correlation-request-id": [ - "1b0a08c6-8201-405b-b2f6-872d7ae63b85" + "bc835ebd-f92e-471b-a765-f199f3c95ecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013356Z:1b0a08c6-8201-405b-b2f6-872d7ae63b85" + "WESTUS2:20170224T200306Z:bc835ebd-f92e-471b-a765-f199f3c95ecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -706,8 +706,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJETXhNamt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYyMTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWXlNVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,28 +728,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:34:26 GMT" + "Fri, 24 Feb 2017 20:03:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYyMTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14997" ], "x-ms-request-id": [ - "cc7b50ed-94ba-4ca5-8479-08998c8d9aad" + "7c5ebdd1-ae72-4ee0-9d66-e13822b75440" ], "x-ms-correlation-request-id": [ - "cc7b50ed-94ba-4ca5-8479-08998c8d9aad" + "7c5ebdd1-ae72-4ee0-9d66-e13822b75440" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013427Z:cc7b50ed-94ba-4ca5-8479-08998c8d9aad" + "WESTUS2:20170224T200337Z:7c5ebdd1-ae72-4ee0-9d66-e13822b75440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,8 +758,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDMxMjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJETXhNamt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDYyMTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWXlNVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -780,22 +780,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:34:57 GMT" + "Fri, 24 Feb 2017 20:04:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14996" ], "x-ms-request-id": [ - "b4657b8f-46e5-488e-8d40-05e735333795" + "904e62b2-ae61-4961-a5c2-d8be4c65727f" ], "x-ms-correlation-request-id": [ - "b4657b8f-46e5-488e-8d40-05e735333795" + "904e62b2-ae61-4961-a5c2-d8be4c65727f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T013457Z:b4657b8f-46e5-488e-8d40-05e735333795" + "WESTUS2:20170224T200407Z:904e62b2-ae61-4961-a5c2-d8be4c65727f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -806,15 +806,15 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-3129" + "sqlcrudtest-6211" ], "RunTestInNewV12Server": [ - "sqlcrudtest-228" + "sqlcrudtest-335" ], "TestCreateDropElasticPool": [ - "sqlcrudtest-4883", - "sqlcrudtest-6654", - "sqlcrudtest-3851" + "sqlcrudtest-807", + "sqlcrudtest-648", + "sqlcrudtest-980" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestGetAndListDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestGetAndListDatabase.json deleted file mode 100644 index e46644fe8a39..000000000000 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestGetAndListDatabase.json +++ /dev/null @@ -1,1027 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/sqlcrudtest-6958?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY5NTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-6958\": \"2016-10-22 22:05:38Z\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "99" - ], - "x-ms-client-request-id": [ - "f7ef4e8d-3d0b-4404-b5eb-adaf5c522a59" - ], - "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/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958\",\r\n \"name\": \"sqlcrudtest-6958\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-6958\": \"2016-10-22 22:05:38Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "239" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:05:40 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], - "x-ms-request-id": [ - "d4622026-1a21-4b60-8609-d2a4149a0033" - ], - "x-ms-correlation-request-id": [ - "d4622026-1a21-4b60-8609-d2a4149a0033" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220541Z:d4622026-1a21-4b60-8609-d2a4149a0033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "216" - ], - "x-ms-client-request-id": [ - "4226e47d-37f1-46dd-a888-d0f202e23f97" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163\",\r\n \"name\": \"sqlcrudtest-3163\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3163.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "524" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:06:11 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "1b706278-ab1b-47f7-bbc9-a7712b1219bb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-correlation-request-id": [ - "5b98abba-aed1-49bc-a8ff-febf486b5c0d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220612Z:5b98abba-aed1-49bc-a8ff-febf486b5c0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-5803?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC01ODAzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "81" - ], - "x-ms-client-request-id": [ - "0b953ebc-b57e-466a-8451-d1919885b0c8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2016-10-22T15:06:30.588-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:06:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-5803/operationResults/55fb4aae-f5d7-43a5-a0ba-de9e5736b746?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "55fb4aae-f5d7-43a5-a0ba-de9e5736b746" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-correlation-request-id": [ - "c2a5b51b-1609-4808-878a-c2b7af2b7fa7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220629Z:c2a5b51b-1609-4808-878a-c2b7af2b7fa7" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-5803/operationResults/55fb4aae-f5d7-43a5-a0ba-de9e5736b746?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC01ODAzL29wZXJhdGlvblJlc3VsdHMvNTVmYjRhYWUtZjVkNy00M2E1LWEwYmEtZGU5ZTU3MzZiNzQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-5803\",\r\n \"name\": \"sqlcrudtest-5803\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:06:16.867Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "434" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:06:59 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "27c86490-1899-4dc7-b9a7-121e031b7ccd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" - ], - "x-ms-correlation-request-id": [ - "48c3f9ae-4443-47f6-8121-de19523cd0a3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220700Z:48c3f9ae-4443-47f6-8121-de19523cd0a3" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-6174?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC02MTc0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "81" - ], - "x-ms-client-request-id": [ - "280a6992-3523-4ff1-a93c-928d8f538c82" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2016-10-22T15:07:22.289-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:07:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-6174/operationResults/b1cbc835-c83d-41bf-8f31-cac8da054cff?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "b1cbc835-c83d-41bf-8f31-cac8da054cff" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" - ], - "x-ms-correlation-request-id": [ - "23775eac-1d25-444d-8e9c-2914d4f16216" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220720Z:23775eac-1d25-444d-8e9c-2914d4f16216" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-6174/operationResults/b1cbc835-c83d-41bf-8f31-cac8da054cff?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC02MTc0L29wZXJhdGlvblJlc3VsdHMvYjFjYmM4MzUtYzgzZC00MWJmLThmMzEtY2FjOGRhMDU0Y2ZmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-6174\",\r\n \"name\": \"sqlcrudtest-6174\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:07:03.583Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "434" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:07:51 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "19840da3-4894-4a93-90be-157f35b1e80c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "ff533e5a-fcbb-4b2c-b73b-d1b0579ccd1e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220751Z:ff533e5a-fcbb-4b2c-b73b-d1b0579ccd1e" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-8284?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC04Mjg0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "81" - ], - "x-ms-client-request-id": [ - "163d40d3-f6b7-4017-81ad-4809d0df553f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2016-10-22T15:08:14.508-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:08:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-8284/operationResults/ac614272-8566-4c61-a449-9f234f296869?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "ac614272-8566-4c61-a449-9f234f296869" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" - ], - "x-ms-correlation-request-id": [ - "3ed176d4-da9a-4447-87bd-ad16e6409cd8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220815Z:3ed176d4-da9a-4447-87bd-ad16e6409cd8" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-8284/operationResults/ac614272-8566-4c61-a449-9f234f296869?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC04Mjg0L29wZXJhdGlvblJlc3VsdHMvYWM2MTQyNzItODU2Ni00YzYxLWE0NDktOWYyMzRmMjk2ODY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-8284\",\r\n \"name\": \"sqlcrudtest-8284\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:07:53.727Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "434" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:08:45 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "9bd40622-d9b8-4068-988f-9bb43f5a5a38" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-correlation-request-id": [ - "7cfece99-ced5-4b5e-b7b2-522e42bb8074" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220846Z:7cfece99-ced5-4b5e-b7b2-522e42bb8074" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-5803?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC01ODAzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bfabd86e-004e-4371-853a-cfae35ff7586" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-5803\",\r\n \"name\": \"sqlcrudtest-5803\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:06:16.867Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:08:46 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "10be7c59-9d29-48b9-a59a-d996ac66276c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], - "x-ms-correlation-request-id": [ - "23b61105-93b5-4e9d-8e08-be4ad7caf6d7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220847Z:23b61105-93b5-4e9d-8e08-be4ad7caf6d7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-6174?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC02MTc0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "907eedf9-b694-4d99-b4c7-bef780895f51" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-6174\",\r\n \"name\": \"sqlcrudtest-6174\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:07:03.583Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:08:47 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "26c9caea-e318-4e29-807b-da3f511a13ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "25d1282b-6c57-41e2-9d42-973e06f318e0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220848Z:25d1282b-6c57-41e2-9d42-973e06f318e0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-8284?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC04Mjg0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c6dd0720-6e72-4425-9e9f-e174368ed273" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-8284\",\r\n \"name\": \"sqlcrudtest-8284\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:07:53.727Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:08:48 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ed0c07e2-2224-4830-9cf4-175cbc09429e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-correlation-request-id": [ - "4d93102b-4f34-487d-8587-61ffc18c80cd" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220849Z:4d93102b-4f34-487d-8587-61ffc18c80cd" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY5NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zMTYzL2VsYXN0aWNQb29scz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6079f625-5424-48b3-a4f9-cc8e0946cca1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-5803\",\r\n \"name\": \"sqlcrudtest-5803\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:06:16.867Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-6174\",\r\n \"name\": \"sqlcrudtest-6174\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:07:03.583Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-6958/providers/Microsoft.Sql/servers/sqlcrudtest-3163/elasticPools/sqlcrudtest-8284\",\r\n \"name\": \"sqlcrudtest-8284\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T22:07:53.727Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:08:49 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9555bf1a-2cd3-47d7-9850-196236da21ba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "1c031362-3320-4b23-b121-7c2b7b8a42d4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220850Z:1c031362-3320-4b23-b121-7c2b7b8a42d4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/sqlcrudtest-6958?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY5NTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba977af6-3f35-4688-a053-b4d2bf5e55d2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:08:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY5NTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" - ], - "x-ms-request-id": [ - "56b68f41-15c3-472e-a5ce-2cbab1d73654" - ], - "x-ms-correlation-request-id": [ - "56b68f41-15c3-472e-a5ce-2cbab1d73654" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220853Z:56b68f41-15c3-472e-a5ce-2cbab1d73654" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY5NTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTVOVGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:09:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY5NTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-request-id": [ - "e95366fc-331a-4f87-a4a9-dc9d9ed1775e" - ], - "x-ms-correlation-request-id": [ - "e95366fc-331a-4f87-a4a9-dc9d9ed1775e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220923Z:e95366fc-331a-4f87-a4a9-dc9d9ed1775e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY5NTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTVOVGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:09:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY5NTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-request-id": [ - "69446e0e-58a6-490e-b884-2e05c641767b" - ], - "x-ms-correlation-request-id": [ - "69446e0e-58a6-490e-b884-2e05c641767b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T220953Z:69446e0e-58a6-490e-b884-2e05c641767b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY5NTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTVOVGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:10:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY5NTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-request-id": [ - "3e0ace37-b9c1-4b71-8182-51c29ccdca70" - ], - "x-ms-correlation-request-id": [ - "3e0ace37-b9c1-4b71-8182-51c29ccdca70" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T221024Z:3e0ace37-b9c1-4b71-8182-51c29ccdca70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY5NTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTVOVGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 22:10:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-request-id": [ - "2964566f-b3e5-49c3-9136-38ff5cca97fb" - ], - "x-ms-correlation-request-id": [ - "2964566f-b3e5-49c3-9136-38ff5cca97fb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T221054Z:2964566f-b3e5-49c3-9136-38ff5cca97fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "RunTestInNewResourceGroup": [ - "sqlcrudtest-6958" - ], - "RunTestInNewV12Server": [ - "sqlcrudtest-3163" - ], - "TestGetAndListElasticPool": [ - "sqlcrudtest-5803", - "sqlcrudtest-6174", - "sqlcrudtest-8284" - ] - }, - "Variables": { - "SubscriptionId": "9d4e2ad0-e20b-4464-9219-353bded52513" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestGetAndListElasticPool.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestGetAndListElasticPool.json index 45f82d530582..bd4c599d4c54 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestGetAndListElasticPool.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestGetAndListElasticPool.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-2369?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTIzNjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-818?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgxOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-2369\": \"2017-02-10 01:24:45Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-818\": \"2017-02-24 19:53:28Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "98" ], "x-ms-client-request-id": [ - "39a28a7c-9690-405f-aad6-2cd5385ad5ec" + "0d682a3c-32d3-4b3b-87ac-11aad8f8348f" ], "accept-language": [ "en-US" @@ -23,10 +23,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369\",\r\n \"name\": \"sqlcrudtest-2369\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-2369\": \"2017-02-10 01:24:45Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818\",\r\n \"name\": \"sqlcrudtest-818\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-818\": \"2017-02-24 19:53:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:24:46 GMT" + "Fri, 24 Feb 2017 19:53:30 GMT" ], "Pragma": [ "no-cache" @@ -47,13 +47,13 @@ "1199" ], "x-ms-request-id": [ - "a862f14c-682e-448d-a31f-8a416de7a697" + "590120ce-19b5-46b4-8384-bd4387fde526" ], "x-ms-correlation-request-id": [ - "a862f14c-682e-448d-a31f-8a416de7a697" + "590120ce-19b5-46b4-8384-bd4387fde526" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012447Z:a862f14c-682e-448d-a31f-8a416de7a697" + "CENTRALUS:20170224T195331Z:590120ce-19b5-46b4-8384-bd4387fde526" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "216" ], "x-ms-client-request-id": [ - "4a803bce-5b35-461c-9561-b9cd1fa18cc6" + "77e6a62f-6ba0-4833-b3d5-5266452eee51" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069\",\r\n \"name\": \"sqlcrudtest-8069\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-8069.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458\",\r\n \"name\": \"sqlcrudtest-8458\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-8458.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "524" + "523" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:25:20 GMT" + "Fri, 24 Feb 2017 19:54:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "42c0ec33-8b93-4061-a973-0adbb6756e59" + "d56fd549-f176-45d1-bb4b-0011b21fbc1d" ], "X-Content-Type-Options": [ "nosniff" @@ -120,17 +120,17 @@ "1198" ], "x-ms-correlation-request-id": [ - "f281eb11-a852-405a-b33e-94aca4289435" + "e50d0d24-4a28-423f-8b3b-449da81c2b34" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012521Z:f281eb11-a852-405a-b33e-94aca4289435" + "CENTRALUS:20170224T195423Z:e50d0d24-4a28-423f-8b3b-449da81c2b34" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC04MTAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4936?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "81" ], "x-ms-client-request-id": [ - "ba216675-0a0f-448d-a621-04ad9f0155b0" + "853ff3f0-33e0-4299-a401-3d3674fa7851" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-09T17:25:52.006-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T11:54:46.547-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:25:49 GMT" + "Fri, 24 Feb 2017 19:54:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102/operationResults/d6d9229c-b182-41de-b4df-40fcc90a9dfa?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4936/operationResults/e8d8c2d6-0be1-4f3b-b5c2-a69c77302395?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d6d9229c-b182-41de-b4df-40fcc90a9dfa" + "e8d8c2d6-0be1-4f3b-b5c2-a69c77302395" ], "X-Content-Type-Options": [ "nosniff" @@ -193,29 +193,29 @@ "1197" ], "x-ms-correlation-request-id": [ - "1de07e6b-f654-43eb-a5db-2633773c67dc" + "ec6d47c2-441d-4ada-922e-9bcc09819627" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012550Z:1de07e6b-f654-43eb-a5db-2633773c67dc" + "CENTRALUS:20170224T195444Z:ec6d47c2-441d-4ada-922e-9bcc09819627" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102/operationResults/d6d9229c-b182-41de-b4df-40fcc90a9dfa?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC04MTAyL29wZXJhdGlvblJlc3VsdHMvZDZkOTIyOWMtYjE4Mi00MWRlLWI0ZGYtNDBmY2M5MGE5ZGZhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4936/operationResults/e8d8c2d6-0be1-4f3b-b5c2-a69c77302395?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ5MzYvb3BlcmF0aW9uUmVzdWx0cy9lOGQ4YzJkNi0wYmUxLTRmM2ItYjVjMi1hNjljNzczMDIzOTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102\",\r\n \"name\": \"sqlcrudtest-8102\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:25:25.033Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4936\",\r\n \"name\": \"sqlcrudtest-4936\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:54:27.567Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "432" + "431" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -224,13 +224,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:26:21 GMT" + "Fri, 24 Feb 2017 19:55:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "84e97df9-4230-498f-b552-33c078a4af30" + "d5822976-9064-4bc1-8ff3-0f23050a19ba" ], "X-Content-Type-Options": [ "nosniff" @@ -242,20 +242,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14987" ], "x-ms-correlation-request-id": [ - "aeab27ca-e2a8-4082-99f1-208778113389" + "9da84dab-9db1-435c-ab90-7a564a3f8574" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012621Z:aeab27ca-e2a8-4082-99f1-208778113389" + "CENTRALUS:20170224T195515Z:9da84dab-9db1-435c-ab90-7a564a3f8574" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0zMTkxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4440?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -266,17 +266,17 @@ "81" ], "x-ms-client-request-id": [ - "a0572e50-671b-4264-a681-ad1eb5d4d69a" + "3e7e0950-eb0e-4bad-8930-2a8f0841b3d7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-09T17:26:47.411-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T11:55:37.771-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -288,10 +288,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:26:45 GMT" + "Fri, 24 Feb 2017 19:55:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191/operationResults/aa3bfe79-2d77-4612-842e-e53635e13a29?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4440/operationResults/0df7ab09-cbdf-4603-a078-32e2ab1ada44?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -300,7 +300,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "aa3bfe79-2d77-4612-842e-e53635e13a29" + "0df7ab09-cbdf-4603-a078-32e2ab1ada44" ], "X-Content-Type-Options": [ "nosniff" @@ -318,29 +318,29 @@ "1196" ], "x-ms-correlation-request-id": [ - "6c32e86d-6a96-4d62-855a-0a8423521fbc" + "12922c45-67c2-4193-9fe4-43e1f31e3cb8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012645Z:6c32e86d-6a96-4d62-855a-0a8423521fbc" + "CENTRALUS:20170224T195537Z:12922c45-67c2-4193-9fe4-43e1f31e3cb8" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191/operationResults/aa3bfe79-2d77-4612-842e-e53635e13a29?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0zMTkxL29wZXJhdGlvblJlc3VsdHMvYWEzYmZlNzktMmQ3Ny00NjEyLTg0MmUtZTUzNjM1ZTEzYTI5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4440/operationResults/0df7ab09-cbdf-4603-a078-32e2ab1ada44?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ0NDAvb3BlcmF0aW9uUmVzdWx0cy8wZGY3YWIwOS1jYmRmLTQ2MDMtYTA3OC0zMmUyYWIxYWRhNDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191\",\r\n \"name\": \"sqlcrudtest-3191\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:26:26.45Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4440\",\r\n \"name\": \"sqlcrudtest-4440\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:55:18.84Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "431" + "430" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -349,13 +349,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:27:16 GMT" + "Fri, 24 Feb 2017 19:56:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "39e66f09-4d62-416c-9a41-e4b7712cacd5" + "7fe7be1c-76d4-4ba1-ad2d-71b572f9b0c8" ], "X-Content-Type-Options": [ "nosniff" @@ -367,20 +367,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14986" ], "x-ms-correlation-request-id": [ - "96604ac3-ed17-40e5-848f-53af112154b1" + "c6467aef-4181-4451-b46d-c9658d052f72" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012716Z:96604ac3-ed17-40e5-848f-53af112154b1" + "CENTRALUS:20170224T195608Z:c6467aef-4181-4451-b46d-c9658d052f72" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yNzI5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-5162?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTUxNjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -391,17 +391,17 @@ "81" ], "x-ms-client-request-id": [ - "7d824460-0da9-488f-9f59-36fe1657d204" + "b329471c-723b-49ea-b527-9b530ee35fdc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-09T17:27:43.227-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T11:56:26.459-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -413,10 +413,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:27:41 GMT" + "Fri, 24 Feb 2017 19:56:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729/operationResults/2de6e9ce-5698-40a4-9ca8-7d5db7fc6e1a?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-5162/operationResults/5e31e2f7-a593-4663-9c5d-b776d4da45bd?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -425,7 +425,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2de6e9ce-5698-40a4-9ca8-7d5db7fc6e1a" + "5e31e2f7-a593-4663-9c5d-b776d4da45bd" ], "X-Content-Type-Options": [ "nosniff" @@ -443,29 +443,29 @@ "1195" ], "x-ms-correlation-request-id": [ - "479746ec-48e6-449d-9908-64a94888ded0" + "941e75ac-bac1-47e3-9add-8924a6bc9990" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012741Z:479746ec-48e6-449d-9908-64a94888ded0" + "CENTRALUS:20170224T195627Z:941e75ac-bac1-47e3-9add-8924a6bc9990" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729/operationResults/2de6e9ce-5698-40a4-9ca8-7d5db7fc6e1a?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yNzI5L29wZXJhdGlvblJlc3VsdHMvMmRlNmU5Y2UtNTY5OC00MGE0LTljYTgtN2Q1ZGI3ZmM2ZTFhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-5162/operationResults/5e31e2f7-a593-4663-9c5d-b776d4da45bd?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTUxNjIvb3BlcmF0aW9uUmVzdWx0cy81ZTMxZTJmNy1hNTkzLTQ2NjMtOWM1ZC1iNzc2ZDRkYTQ1YmQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729\",\r\n \"name\": \"sqlcrudtest-2729\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:27:21.32Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-5162\",\r\n \"name\": \"sqlcrudtest-5162\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:56:10.86Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "431" + "430" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -474,13 +474,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:28:11 GMT" + "Fri, 24 Feb 2017 19:56:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b95b1b49-e721-4145-a9cc-605728753fc7" + "2eee8ac3-b709-4d69-8922-bfe96a79f869" ], "X-Content-Type-Options": [ "nosniff" @@ -492,35 +492,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14985" ], "x-ms-correlation-request-id": [ - "5298d0f6-1c08-41ae-9250-c820f0992b70" + "94ea1d2f-463f-475a-a326-1cbd0ed45c7a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012812Z:5298d0f6-1c08-41ae-9250-c820f0992b70" + "CENTRALUS:20170224T195658Z:94ea1d2f-463f-475a-a326-1cbd0ed45c7a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC04MTAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4936?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "506eac39-9432-4734-9b46-581bd5f86d58" + "70a7b859-018d-4b4a-83d3-3582de3b03d8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102\",\r\n \"name\": \"sqlcrudtest-8102\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:25:25.033Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4936\",\r\n \"name\": \"sqlcrudtest-4936\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:54:27.567Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -529,7 +529,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:28:12 GMT" + "Fri, 24 Feb 2017 19:56:59 GMT" ], "Transfer-Encoding": [ "chunked" @@ -541,7 +541,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3ead936a-c3e6-4003-bf06-3cee85e94c8f" + "62b18981-fd77-46f7-8cb3-9f9fb7939d38" ], "X-Content-Type-Options": [ "nosniff" @@ -553,35 +553,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14984" ], "x-ms-correlation-request-id": [ - "d5119dee-4697-4567-9031-70f9dae2995e" + "1394969a-39d0-4166-8152-8d6c1edcf3ce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012813Z:d5119dee-4697-4567-9031-70f9dae2995e" + "CENTRALUS:20170224T195659Z:1394969a-39d0-4166-8152-8d6c1edcf3ce" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0zMTkxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4440?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTQ0NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "991442c8-25d5-4fb1-9ab7-13fe21e8640b" + "e62d0a10-0d53-4022-b007-8ec73addeafb" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191\",\r\n \"name\": \"sqlcrudtest-3191\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:26:26.45Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4440\",\r\n \"name\": \"sqlcrudtest-4440\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:55:18.84Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -590,7 +590,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:28:13 GMT" + "Fri, 24 Feb 2017 19:57:00 GMT" ], "Transfer-Encoding": [ "chunked" @@ -602,7 +602,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e5cce4f5-abc5-4ce4-879a-17cce31e1222" + "6c296eea-d98b-4e32-a67e-f5c5b99261e7" ], "X-Content-Type-Options": [ "nosniff" @@ -614,35 +614,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14983" ], "x-ms-correlation-request-id": [ - "b089340f-752a-470c-a029-e52626498aa7" + "71f43f2d-a2e8-4479-902e-5804a251554a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012814Z:b089340f-752a-470c-a029-e52626498aa7" + "CENTRALUS:20170224T195700Z:71f43f2d-a2e8-4479-902e-5804a251554a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scy9zcWxjcnVkdGVzdC0yNzI5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-5162?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzL3NxbGNydWR0ZXN0LTUxNjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "275dc6fd-a088-4256-90d8-e4b0d90c7075" + "d227c64c-759c-4330-892d-ed8186d29051" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729\",\r\n \"name\": \"sqlcrudtest-2729\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:27:21.32Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-5162\",\r\n \"name\": \"sqlcrudtest-5162\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:56:10.86Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -651,7 +651,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:28:14 GMT" + "Fri, 24 Feb 2017 19:57:01 GMT" ], "Transfer-Encoding": [ "chunked" @@ -663,7 +663,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2a08742e-31f4-45cc-b39b-8804b34456a1" + "08939cab-e223-4144-917e-b5a1a887bf9f" ], "X-Content-Type-Options": [ "nosniff" @@ -675,35 +675,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14982" ], "x-ms-correlation-request-id": [ - "0c71277b-ed77-4ec9-a879-7aa5fdf75336" + "6d70ba8b-f258-403c-be2b-d7b31b1ae0c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012815Z:0c71277b-ed77-4ec9-a879-7aa5fdf75336" + "CENTRALUS:20170224T195701Z:6d70ba8b-f258-403c-be2b-d7b31b1ae0c1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04MDY5L2VsYXN0aWNQb29scz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTg0NTgvZWxhc3RpY1Bvb2xzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08086893-c15c-42c6-95e4-7dd1214ebf09" + "ebe5663b-f7e3-4d4e-af3b-7417b4556586" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729\",\r\n \"name\": \"sqlcrudtest-2729\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:27:21.32Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191\",\r\n \"name\": \"sqlcrudtest-3191\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:26:26.45Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102\",\r\n \"name\": \"sqlcrudtest-8102\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:25:25.033Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4440\",\r\n \"name\": \"sqlcrudtest-4440\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:55:18.84Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-4936\",\r\n \"name\": \"sqlcrudtest-4936\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:54:27.567Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-818/providers/Microsoft.Sql/servers/sqlcrudtest-8458/elasticPools/sqlcrudtest-5162\",\r\n \"name\": \"sqlcrudtest-5162\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:56:10.86Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 50,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 5000\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -712,7 +712,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:28:15 GMT" + "Fri, 24 Feb 2017 19:57:02 GMT" ], "Transfer-Encoding": [ "chunked" @@ -724,7 +724,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "368adc16-f428-4aaa-af8a-ef48b63f41aa" + "4f3617a2-2d90-4a1d-a215-c632ea6fb547" ], "X-Content-Type-Options": [ "nosniff" @@ -736,25 +736,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14981" ], "x-ms-correlation-request-id": [ - "05a77d30-ee32-4b6f-b510-0881c5f5c2d0" + "083f6bb4-5516-436e-9764-1e07eb39929e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012816Z:05a77d30-ee32-4b6f-b510-0881c5f5c2d0" + "CENTRALUS:20170224T195703Z:083f6bb4-5516-436e-9764-1e07eb39929e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-2369?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTIzNjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-818?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgxOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d0947f4-80a6-42d3-832e-4ded7d535a33" + "74764396-10fa-45eb-8cbe-4a8ca11f2204" ], "accept-language": [ "en-US" @@ -776,13 +776,13 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:28:19 GMT" + "Fri, 24 Feb 2017 19:57:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -791,13 +791,13 @@ "1194" ], "x-ms-request-id": [ - "288dc677-c26d-4d72-a6ba-2abbde4dbf83" + "2751d56d-237c-4b2a-86d8-f70cb84d7dc8" ], "x-ms-correlation-request-id": [ - "288dc677-c26d-4d72-a6ba-2abbde4dbf83" + "2751d56d-237c-4b2a-86d8-f70cb84d7dc8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012819Z:288dc677-c26d-4d72-a6ba-2abbde4dbf83" + "CENTRALUS:20170224T195705Z:2751d56d-237c-4b2a-86d8-f70cb84d7dc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -806,8 +806,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXpOamt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3hPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -828,28 +828,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:28:49 GMT" + "Fri, 24 Feb 2017 19:57:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14980" ], "x-ms-request-id": [ - "6695b4fa-e109-46df-9d93-00fa78cb4285" + "ec6df00c-93bf-49c1-91e8-2f462d1f0c28" ], "x-ms-correlation-request-id": [ - "6695b4fa-e109-46df-9d93-00fa78cb4285" + "ec6df00c-93bf-49c1-91e8-2f462d1f0c28" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012850Z:6695b4fa-e109-46df-9d93-00fa78cb4285" + "CENTRALUS:20170224T195736Z:ec6df00c-93bf-49c1-91e8-2f462d1f0c28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,8 +858,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXpOamt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3hPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -880,28 +880,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:29:19 GMT" + "Fri, 24 Feb 2017 19:58:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14979" ], "x-ms-request-id": [ - "c1c3d2e9-adf5-49fe-a0d2-6a3db50e6000" + "94700d63-871d-423b-a4da-e4e53a7b36b0" ], "x-ms-correlation-request-id": [ - "c1c3d2e9-adf5-49fe-a0d2-6a3db50e6000" + "94700d63-871d-423b-a4da-e4e53a7b36b0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012920Z:c1c3d2e9-adf5-49fe-a0d2-6a3db50e6000" + "CENTRALUS:20170224T195806Z:94700d63-871d-423b-a4da-e4e53a7b36b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,8 +910,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXpOamt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3hPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -932,28 +932,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:29:50 GMT" + "Fri, 24 Feb 2017 19:58:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14978" ], "x-ms-request-id": [ - "b645fea5-7c2b-4b3d-8a8c-6d1369a2813f" + "76a00be3-786d-4e7a-8e32-a1d7f0652fd9" ], "x-ms-correlation-request-id": [ - "b645fea5-7c2b-4b3d-8a8c-6d1369a2813f" + "76a00be3-786d-4e7a-8e32-a1d7f0652fd9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012950Z:b645fea5-7c2b-4b3d-8a8c-6d1369a2813f" + "CENTRALUS:20170224T195837Z:76a00be3-786d-4e7a-8e32-a1d7f0652fd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -962,8 +962,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNjktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXpOamt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgxOC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3hPQzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,22 +984,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:30:20 GMT" + "Fri, 24 Feb 2017 19:59:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14976" ], "x-ms-request-id": [ - "079d0cfc-ae76-4b0b-936b-90a49717d75c" + "28cde008-4cf6-418b-b7b2-f0d9ea3b3d5f" ], "x-ms-correlation-request-id": [ - "079d0cfc-ae76-4b0b-936b-90a49717d75c" + "28cde008-4cf6-418b-b7b2-f0d9ea3b3d5f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T013021Z:079d0cfc-ae76-4b0b-936b-90a49717d75c" + "CENTRALUS:20170224T195907Z:28cde008-4cf6-418b-b7b2-f0d9ea3b3d5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1010,15 +1010,15 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-2369" + "sqlcrudtest-818" ], "RunTestInNewV12Server": [ - "sqlcrudtest-8069" + "sqlcrudtest-8458" ], "TestGetAndListElasticPool": [ - "sqlcrudtest-8102", - "sqlcrudtest-3191", - "sqlcrudtest-2729" + "sqlcrudtest-4936", + "sqlcrudtest-4440", + "sqlcrudtest-5162" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestUpdateElasticPoolAndListActivity.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestUpdateElasticPoolAndListActivity.json index ea38ea103bf7..3cb12ba8c9c4 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestUpdateElasticPoolAndListActivity.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolCrudScenarioTests/TestUpdateElasticPoolAndListActivity.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-7453?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTc0NTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-9208?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTkyMDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-7453\": \"2017-02-10 01:18:33Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-9208\": \"2017-02-24 19:47:58Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,7 +13,7 @@ "99" ], "x-ms-client-request-id": [ - "79a3e34d-2381-4d81-afa4-749552579d0f" + "9a401a42-652c-4b3b-bd4f-16e5c9beb04a" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453\",\r\n \"name\": \"sqlcrudtest-7453\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-7453\": \"2017-02-10 01:18:33Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208\",\r\n \"name\": \"sqlcrudtest-9208\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-9208\": \"2017-02-24 19:47:58Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "239" @@ -38,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:18:34 GMT" + "Fri, 24 Feb 2017 19:47:59 GMT" ], "Pragma": [ "no-cache" @@ -47,13 +47,13 @@ "1199" ], "x-ms-request-id": [ - "97b1b909-e107-4b55-8427-571197065b69" + "7c6ad596-7982-437c-9404-7702abdcf24b" ], "x-ms-correlation-request-id": [ - "97b1b909-e107-4b55-8427-571197065b69" + "7c6ad596-7982-437c-9404-7702abdcf24b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T011835Z:97b1b909-e107-4b55-8427-571197065b69" + "WESTUS2:20170224T194800Z:7c6ad596-7982-437c-9404-7702abdcf24b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "216" ], "x-ms-client-request-id": [ - "9c31f3f4-ebe8-4022-8486-743a6a7a78a8" + "63aa569e-0d46-4721-9fef-a1b7475cffe8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267\",\r\n \"name\": \"sqlcrudtest-9267\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-9267.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501\",\r\n \"name\": \"sqlcrudtest-8501\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-8501.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:19:22 GMT" + "Fri, 24 Feb 2017 19:48:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8dd82399-f3df-4d8e-8447-a5ded921d1f9" + "c1bfffea-3e09-4dd5-b0fa-797f8740bb8f" ], "X-Content-Type-Options": [ "nosniff" @@ -120,17 +120,17 @@ "1198" ], "x-ms-correlation-request-id": [ - "44ae4ab5-3db4-4633-923c-2b157ac885bc" + "10015888-872f-4473-a10c-b391a48fe8de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T011923Z:44ae4ab5-3db4-4633-923c-2b157ac885bc" + "WESTUS2:20170224T194840Z:10015888-872f-4473-a10c-b391a48fe8de" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 20,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "201" ], "x-ms-client-request-id": [ - "b549aabf-47f6-4fda-a725-3aaf0024a702" + "655940d3-9f1e-4406-a6d7-6a40ab4e3984" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-09T17:19:53.973-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2017-02-24T11:49:09.524-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -163,10 +163,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:19:52 GMT" + "Fri, 24 Feb 2017 19:49:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/8e9c5103-5649-47ca-a132-ef6ccc4ee921?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/788a8b9e-e1c8-4320-966b-c9f370752751?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -175,7 +175,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8e9c5103-5649-47ca-a132-ef6ccc4ee921" + "788a8b9e-e1c8-4320-966b-c9f370752751" ], "X-Content-Type-Options": [ "nosniff" @@ -193,17 +193,17 @@ "1197" ], "x-ms-correlation-request-id": [ - "1e34c57b-61f1-4c44-8a4b-a1fbf519b7b4" + "a50efd20-76e3-4c0c-909d-e3cbc58a2cb3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T011952Z:1e34c57b-61f1-4c44-8a4b-a1fbf519b7b4" + "WESTUS2:20170224T194907Z:a50efd20-76e3-4c0c-909d-e3cbc58a2cb3" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"dtu\": 200\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -214,17 +214,17 @@ "73" ], "x-ms-client-request-id": [ - "eee0ef0e-2c38-49be-bf1b-1fe1cc115c75" + "b9b88ea5-fa47-42f1-8352-1b289a6aefd5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2017-02-09T17:20:28.123-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2017-02-24T11:49:40.521-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -236,10 +236,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:20:26 GMT" + "Fri, 24 Feb 2017 19:49:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/5ee4c559-4e44-4cd7-8292-d58c8a168e15?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/cd115898-f7cd-4488-8c6f-05ce5576483d?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -248,7 +248,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5ee4c559-4e44-4cd7-8292-d58c8a168e15" + "cd115898-f7cd-4488-8c6f-05ce5576483d" ], "X-Content-Type-Options": [ "nosniff" @@ -266,17 +266,17 @@ "1196" ], "x-ms-correlation-request-id": [ - "4b4cf35e-11a8-43ec-846b-b35f68a0d6f7" + "004b38ce-2d83-4a76-9118-a793ab05a126" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012026Z:4b4cf35e-11a8-43ec-846b-b35f68a0d6f7" + "WESTUS2:20170224T194940Z:004b38ce-2d83-4a76-9118-a793ab05a126" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"databaseDtuMax\": 100\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -287,17 +287,17 @@ "84" ], "x-ms-client-request-id": [ - "6c677783-8fbf-485a-8837-83e7b1b587cc" + "a9103006-1c2d-45fc-92c0-3665cf718217" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2017-02-09T17:21:33.632-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2017-02-24T11:50:46.078-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -309,10 +309,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:21:31 GMT" + "Fri, 24 Feb 2017 19:50:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/c9fd0edc-7407-45e4-b4a0-8961cac1073a?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/aacab843-4ddd-43a5-ab73-86963793ccb2?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -321,7 +321,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c9fd0edc-7407-45e4-b4a0-8961cac1073a" + "aacab843-4ddd-43a5-ab73-86963793ccb2" ], "X-Content-Type-Options": [ "nosniff" @@ -339,17 +339,17 @@ "1195" ], "x-ms-correlation-request-id": [ - "9b878973-55ee-48e5-87e6-c5fef098384e" + "35442743-7366-45df-98d1-71771d2adda3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012131Z:9b878973-55ee-48e5-87e6-c5fef098384e" + "WESTUS2:20170224T195045Z:35442743-7366-45df-98d1-71771d2adda3" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"databaseDtuMin\": 10\r\n },\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -360,17 +360,17 @@ "83" ], "x-ms-client-request-id": [ - "98cd0798-4753-4c7c-99a0-2afd9b64676e" + "29f1499a-edb9-4e69-8872-544d8350ad34" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2017-02-09T17:22:06.847-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2017-02-24T11:51:17.482-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "65" @@ -382,10 +382,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:22:04 GMT" + "Fri, 24 Feb 2017 19:51:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/3cc875e8-6de0-4311-b3df-6acbcc228fe4?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/173ca585-4059-4c81-8f46-7e48a0acc7b1?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -394,7 +394,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3cc875e8-6de0-4311-b3df-6acbcc228fe4" + "173ca585-4059-4c81-8f46-7e48a0acc7b1" ], "X-Content-Type-Options": [ "nosniff" @@ -412,26 +412,26 @@ "1194" ], "x-ms-correlation-request-id": [ - "cd8b97bb-3b2b-44ea-b5da-911c22e03706" + "50dc6e81-c2bd-40bb-8dff-7c6ec317373b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012205Z:cd8b97bb-3b2b-44ea-b5da-911c22e03706" + "WESTUS2:20170224T195117Z:50dc6e81-c2bd-40bb-8dff-7c6ec317373b" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/8e9c5103-5649-47ca-a132-ef6ccc4ee921?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL29wZXJhdGlvblJlc3VsdHMvOGU5YzUxMDMtNTY0OS00N2NhLWExMzItZWY2Y2NjNGVlOTIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/788a8b9e-e1c8-4320-966b-c9f370752751?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L29wZXJhdGlvblJlc3VsdHMvNzg4YThiOWUtZTFjOC00MzIwLTk2NmItYzlmMzcwNzUyNzUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320\",\r\n \"name\": \"3320\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:19:27.55Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 20,\r\n \"storageMB\": 102400\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104\",\r\n \"name\": \"3104\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:48:44.35Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 20,\r\n \"storageMB\": 102400\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "445" @@ -443,13 +443,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:20:23 GMT" + "Fri, 24 Feb 2017 19:49:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "480c3c84-da5d-4b27-ba4d-519dab1a48c7" + "c1d72740-b4fd-490c-a551-d767ca2c0932" ], "X-Content-Type-Options": [ "nosniff" @@ -461,35 +461,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-correlation-request-id": [ - "94fb9ffa-413a-47d5-8941-9d817848d3d6" + "292264fa-c966-49f2-b1e7-41093b8777e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012023Z:94fb9ffa-413a-47d5-8941-9d817848d3d6" + "WESTUS2:20170224T194938Z:292264fa-c966-49f2-b1e7-41093b8777e2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95b3579d-ec11-4e9e-b448-b019f58a2612" + "a62e8fbf-2e4f-46c1-911d-b517a3d518ce" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"name\": \"8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:19:27.363Z\",\r\n \"endTime\": \"2017-02-10T01:19:53.927Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"name\": \"788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:48:44.193Z\",\r\n \"endTime\": \"2017-02-24T19:49:09.477Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -498,7 +498,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:20:24 GMT" + "Fri, 24 Feb 2017 19:49:38 GMT" ], "Transfer-Encoding": [ "chunked" @@ -510,7 +510,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7003e293-c620-4eec-9101-531053b2a903" + "32bc5b11-ca28-4d0f-a322-4012c26166e8" ], "X-Content-Type-Options": [ "nosniff" @@ -522,35 +522,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-correlation-request-id": [ - "b692fe20-03b7-4624-9a45-88fc68992f71" + "56be3346-a0aa-4032-9dfc-c4384c8c67f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012024Z:b692fe20-03b7-4624-9a45-88fc68992f71" + "WESTUS2:20170224T194939Z:56be3346-a0aa-4032-9dfc-c4384c8c67f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19f29f8c-5e87-4a66-ab9b-b7e0fd2935af" + "1bc13851-b563-4ca6-adff-912eddb19c4a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"name\": \"5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:20:28.093Z\",\r\n \"endTime\": \"2017-02-10T01:21:00.167Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"name\": \"8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:19:27.363Z\",\r\n \"endTime\": \"2017-02-10T01:19:53.927Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"name\": \"cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:49:40.49Z\",\r\n \"endTime\": \"2017-02-24T19:50:18.23Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"name\": \"788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:48:44.193Z\",\r\n \"endTime\": \"2017-02-24T19:49:09.477Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -559,7 +559,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:21:29 GMT" + "Fri, 24 Feb 2017 19:50:42 GMT" ], "Transfer-Encoding": [ "chunked" @@ -571,7 +571,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e93732f3-35ae-4deb-9f65-3c0680e8426d" + "e3cc97eb-1681-4497-8216-4089d4c00139" ], "X-Content-Type-Options": [ "nosniff" @@ -583,35 +583,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14988" ], "x-ms-correlation-request-id": [ - "1be64ad5-de02-456e-bc79-9597a69018aa" + "3f1c27a1-0b83-4a69-b0fb-f961e16c1d73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012129Z:1be64ad5-de02-456e-bc79-9597a69018aa" + "WESTUS2:20170224T195043Z:3f1c27a1-0b83-4a69-b0fb-f961e16c1d73" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64c1b430-0488-484c-8d7f-6edf0aa90b36" + "33a632ec-423f-49b2-a233-7eaeea85b98e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/c9fd0edc-7407-45e4-b4a0-8961cac1073a\",\r\n \"name\": \"c9fd0edc-7407-45e4-b4a0-8961cac1073a\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"c9fd0edc-7407-45e4-b4a0-8961cac1073a\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:21:33.57Z\",\r\n \"endTime\": \"2017-02-10T01:21:34.163Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"name\": \"5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:20:28.093Z\",\r\n \"endTime\": \"2017-02-10T01:21:00.167Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"name\": \"8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:19:27.363Z\",\r\n \"endTime\": \"2017-02-10T01:19:53.927Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"name\": \"cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:49:40.49Z\",\r\n \"endTime\": \"2017-02-24T19:50:18.23Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/aacab843-4ddd-43a5-ab73-86963793ccb2\",\r\n \"name\": \"aacab843-4ddd-43a5-ab73-86963793ccb2\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"aacab843-4ddd-43a5-ab73-86963793ccb2\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:50:46.047Z\",\r\n \"endTime\": \"2017-02-24T19:50:46.423Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"name\": \"788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:48:44.193Z\",\r\n \"endTime\": \"2017-02-24T19:49:09.477Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -620,7 +620,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:22:02 GMT" + "Fri, 24 Feb 2017 19:51:16 GMT" ], "Transfer-Encoding": [ "chunked" @@ -632,7 +632,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3afae921-30b3-4102-bda6-2d53165f3f06" + "c61f98d4-2dfe-4263-97f4-aa3eaad48dee" ], "X-Content-Type-Options": [ "nosniff" @@ -644,35 +644,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14985" ], "x-ms-correlation-request-id": [ - "e9945d58-ec84-46ce-9987-e3ddb7ef9f25" + "6bafa2ea-bd35-43ab-8e2b-485c242b24c2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012203Z:e9945d58-ec84-46ce-9987-e3ddb7ef9f25" + "WESTUS2:20170224T195116Z:6bafa2ea-bd35-43ab-8e2b-485c242b24c2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L2VsYXN0aWNQb29sQWN0aXZpdHk/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba69a5ce-344a-4d2f-b546-9bdbfd1c7c69" + "06e00221-0a01-40bd-bea4-20da4916630b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/3cc875e8-6de0-4311-b3df-6acbcc228fe4\",\r\n \"name\": \"3cc875e8-6de0-4311-b3df-6acbcc228fe4\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"3cc875e8-6de0-4311-b3df-6acbcc228fe4\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:22:06.783Z\",\r\n \"endTime\": \"2017-02-10T01:22:07.317Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/c9fd0edc-7407-45e4-b4a0-8961cac1073a\",\r\n \"name\": \"c9fd0edc-7407-45e4-b4a0-8961cac1073a\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"c9fd0edc-7407-45e4-b4a0-8961cac1073a\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:21:33.57Z\",\r\n \"endTime\": \"2017-02-10T01:21:34.163Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"name\": \"5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"5ee4c559-4e44-4cd7-8292-d58c8a168e15\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:20:28.093Z\",\r\n \"endTime\": \"2017-02-10T01:21:00.167Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/elasticPoolActivity/8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"name\": \"8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"8e9c5103-5649-47ca-a132-ef6ccc4ee921\",\r\n \"serverName\": \"sqlcrudtest-9267\",\r\n \"elasticPoolName\": \"3320\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-10T01:19:27.363Z\",\r\n \"endTime\": \"2017-02-10T01:19:53.927Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"name\": \"cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"cd115898-f7cd-4488-8c6f-05ce5576483d\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:49:40.49Z\",\r\n \"endTime\": \"2017-02-24T19:50:18.23Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/173ca585-4059-4c81-8f46-7e48a0acc7b1\",\r\n \"name\": \"173ca585-4059-4c81-8f46-7e48a0acc7b1\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"173ca585-4059-4c81-8f46-7e48a0acc7b1\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:51:17.45Z\",\r\n \"endTime\": \"2017-02-24T19:51:17.857Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/aacab843-4ddd-43a5-ab73-86963793ccb2\",\r\n \"name\": \"aacab843-4ddd-43a5-ab73-86963793ccb2\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"aacab843-4ddd-43a5-ab73-86963793ccb2\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:50:46.047Z\",\r\n \"endTime\": \"2017-02-24T19:50:46.423Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": null,\r\n \"requestedDatabaseDtuCap\": null,\r\n \"requestedDatabaseDtuGuarantee\": null,\r\n \"requestedStorageLimitInGB\": null,\r\n \"requestedStorageLimitInMB\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/elasticPoolActivity/788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"name\": \"788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"788a8b9e-e1c8-4320-966b-c9f370752751\",\r\n \"serverName\": \"sqlcrudtest-8501\",\r\n \"elasticPoolName\": \"3104\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2017-02-24T19:48:44.193Z\",\r\n \"endTime\": \"2017-02-24T19:49:09.477Z\",\r\n \"percentComplete\": 100,\r\n \"requestedElasticPoolName\": null,\r\n \"requestedDtuGuarantee\": 100,\r\n \"requestedDatabaseDtuCap\": 20,\r\n \"requestedDatabaseDtuGuarantee\": 0,\r\n \"requestedStorageLimitInGB\": 100,\r\n \"requestedStorageLimitInMB\": 102400\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -681,7 +681,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:22:36 GMT" + "Fri, 24 Feb 2017 19:51:48 GMT" ], "Transfer-Encoding": [ "chunked" @@ -693,7 +693,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7df210ea-92af-4ecc-8c8c-fbd61095ed95" + "44c46f7b-1a1d-4418-ac7a-842b43540b6b" ], "X-Content-Type-Options": [ "nosniff" @@ -705,29 +705,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14983" ], "x-ms-correlation-request-id": [ - "308b2331-5c46-4263-be77-ddef7ed50f70" + "5fc0cc90-32e3-4508-80ea-c1b5bda779f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012237Z:308b2331-5c46-4263-be77-ddef7ed50f70" + "WESTUS2:20170224T195148Z:5fc0cc90-32e3-4508-80ea-c1b5bda779f3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/5ee4c559-4e44-4cd7-8292-d58c8a168e15?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL29wZXJhdGlvblJlc3VsdHMvNWVlNGM1NTktNGU0NC00Y2Q3LTgyOTItZDU4YzhhMTY4ZTE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/cd115898-f7cd-4488-8c6f-05ce5576483d?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L29wZXJhdGlvblJlc3VsdHMvY2QxMTU4OTgtZjdjZC00NDg4LThjNmYtMDVjZTU1NzY0ODNkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2017-02-10T01:20:28.093Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UPDATE\",\r\n \"startTime\": \"2017-02-24T19:49:40.49Z\"\r\n}", "ResponseHeaders": { "Content-Length": [ "60" @@ -739,10 +739,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:20:57 GMT" + "Fri, 24 Feb 2017 19:50:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/5ee4c559-4e44-4cd7-8292-d58c8a168e15?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/cd115898-f7cd-4488-8c6f-05ce5576483d?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -751,7 +751,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2af19d7e-a32e-4ca3-9336-c0943ba6be00" + "9a79273f-2b67-4fbb-871b-da21ef63363a" ], "X-Content-Type-Options": [ "nosniff" @@ -763,29 +763,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-correlation-request-id": [ - "959f0d09-a834-4ee8-a1a4-ce50dbc5e764" + "906e5ffb-f0a8-4468-866c-8de666447616" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012057Z:959f0d09-a834-4ee8-a1a4-ce50dbc5e764" + "WESTUS2:20170224T195011Z:906e5ffb-f0a8-4468-866c-8de666447616" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/5ee4c559-4e44-4cd7-8292-d58c8a168e15?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL29wZXJhdGlvblJlc3VsdHMvNWVlNGM1NTktNGU0NC00Y2Q3LTgyOTItZDU4YzhhMTY4ZTE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/cd115898-f7cd-4488-8c6f-05ce5576483d?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L29wZXJhdGlvblJlc3VsdHMvY2QxMTU4OTgtZjdjZC00NDg4LThjNmYtMDVjZTU1NzY0ODNkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320\",\r\n \"name\": \"3320\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:19:27.55Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104\",\r\n \"name\": \"3104\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:48:44.35Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -794,7 +794,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:21:28 GMT" + "Fri, 24 Feb 2017 19:50:41 GMT" ], "Transfer-Encoding": [ "chunked" @@ -806,7 +806,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3570575d-a76d-48ad-bfc3-f1d61767ecb8" + "153278c0-9e6f-4eba-a4a8-98050802b398" ], "X-Content-Type-Options": [ "nosniff" @@ -818,29 +818,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-correlation-request-id": [ - "a6403936-1da0-4d51-8c88-66b61b8aca2b" + "30813919-380c-4425-87ef-91b4c88c9a44" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012128Z:a6403936-1da0-4d51-8c88-66b61b8aca2b" + "WESTUS2:20170224T195042Z:30813919-380c-4425-87ef-91b4c88c9a44" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/c9fd0edc-7407-45e4-b4a0-8961cac1073a?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL29wZXJhdGlvblJlc3VsdHMvYzlmZDBlZGMtNzQwNy00NWU0LWI0YTAtODk2MWNhYzEwNzNhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/aacab843-4ddd-43a5-ab73-86963793ccb2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L29wZXJhdGlvblJlc3VsdHMvYWFjYWI4NDMtNGRkZC00M2E1LWFiNzMtODY5NjM3OTNjY2IyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320\",\r\n \"name\": \"3320\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:19:27.55Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104\",\r\n \"name\": \"3104\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:48:44.35Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -849,7 +849,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:22:01 GMT" + "Fri, 24 Feb 2017 19:51:15 GMT" ], "Transfer-Encoding": [ "chunked" @@ -861,7 +861,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d7136257-c663-404d-a4fa-093835c2de22" + "90bf7a11-307a-4bfc-ae85-b2eb683a1c98" ], "X-Content-Type-Options": [ "nosniff" @@ -873,29 +873,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14986" ], "x-ms-correlation-request-id": [ - "28cb0bc1-ada2-4b5b-a0a4-cefffaa44953" + "afb7ae63-4d5a-4ca5-95f3-0aef405e62fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012202Z:28cb0bc1-ada2-4b5b-a0a4-cefffaa44953" + "WESTUS2:20170224T195115Z:afb7ae63-4d5a-4ca5-95f3-0aef405e62fb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320/operationResults/3cc875e8-6de0-4311-b3df-6acbcc228fe4?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MjY3L2VsYXN0aWNQb29scy8zMzIwL29wZXJhdGlvblJlc3VsdHMvM2NjODc1ZTgtNmRlMC00MzExLWIzZGYtNmFjYmNjMjI4ZmU0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104/operationResults/173ca585-4059-4c81-8f46-7e48a0acc7b1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTkyMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NTAxL2VsYXN0aWNQb29scy8zMTA0L29wZXJhdGlvblJlc3VsdHMvMTczY2E1ODUtNDA1OS00YzgxLThmNDYtN2U0OGEwYWNjN2IxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7453/providers/Microsoft.Sql/servers/sqlcrudtest-9267/elasticPools/3320\",\r\n \"name\": \"3320\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-10T01:19:27.55Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 10,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-9208/providers/Microsoft.Sql/servers/sqlcrudtest-8501/elasticPools/3104\",\r\n \"name\": \"3104\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2017-02-24T19:48:44.35Z\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 10,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -904,7 +904,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:22:35 GMT" + "Fri, 24 Feb 2017 19:51:47 GMT" ], "Transfer-Encoding": [ "chunked" @@ -916,7 +916,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "79aa3511-9460-4dbe-8b11-4edc4b1f6558" + "f4c1a611-2bfa-4b00-92b3-4c49fea8c627" ], "X-Content-Type-Options": [ "nosniff" @@ -928,25 +928,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14984" ], "x-ms-correlation-request-id": [ - "ccecd33f-436d-4aa7-bd17-677e1fea845e" + "2bdd565e-6072-456e-9732-7f3faa66d62c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012236Z:ccecd33f-436d-4aa7-bd17-677e1fea845e" + "WESTUS2:20170224T195148Z:2bdd565e-6072-456e-9732-7f3faa66d62c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-7453?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTc0NTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-9208?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTkyMDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "620c6033-d224-43b2-9689-f2f90a25d312" + "f112d251-3fc2-4e6b-af5c-389e7e1dbab3" ], "accept-language": [ "en-US" @@ -968,13 +968,13 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:22:39 GMT" + "Fri, 24 Feb 2017 19:51:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyMDgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -983,65 +983,13 @@ "1193" ], "x-ms-request-id": [ - "ba68a5e6-fba6-490e-9b7a-c656419a38c3" - ], - "x-ms-correlation-request-id": [ - "ba68a5e6-fba6-490e-9b7a-c656419a38c3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012239Z:ba68a5e6-fba6-490e-9b7a-c656419a38c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzBOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 10 Feb 2017 01:23:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-request-id": [ - "340a1fb3-bbaf-4c0d-960f-f69985d37191" + "630ff272-ecc4-4119-ac6e-f0b9fc39b04a" ], "x-ms-correlation-request-id": [ - "340a1fb3-bbaf-4c0d-960f-f69985d37191" + "630ff272-ecc4-4119-ac6e-f0b9fc39b04a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012309Z:340a1fb3-bbaf-4c0d-960f-f69985d37191" + "WESTUS2:20170224T195150Z:630ff272-ecc4-4119-ac6e-f0b9fc39b04a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,8 +998,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzBOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyMDgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEa3lNRGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1072,28 +1020,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:23:39 GMT" + "Fri, 24 Feb 2017 19:52:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyMDgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14983" ], "x-ms-request-id": [ - "e8541797-637d-4c71-baaa-ef80d1950e33" + "f9e697b5-ff3f-48d7-88ec-634813aeffdd" ], "x-ms-correlation-request-id": [ - "e8541797-637d-4c71-baaa-ef80d1950e33" + "f9e697b5-ff3f-48d7-88ec-634813aeffdd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012339Z:e8541797-637d-4c71-baaa-ef80d1950e33" + "CENTRALUS:20170224T195221Z:f9e697b5-ff3f-48d7-88ec-634813aeffdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1050,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzBOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyMDgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEa3lNRGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1124,28 +1072,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:24:09 GMT" + "Fri, 24 Feb 2017 19:52:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyMDgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14982" ], "x-ms-request-id": [ - "c037e085-0e30-46d1-917c-f4ed50098c3a" + "dcff01f9-57a7-4f4c-8942-760eb04552c1" ], "x-ms-correlation-request-id": [ - "c037e085-0e30-46d1-917c-f4ed50098c3a" + "dcff01f9-57a7-4f4c-8942-760eb04552c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012410Z:c037e085-0e30-46d1-917c-f4ed50098c3a" + "WESTUS2:20170224T195252Z:dcff01f9-57a7-4f4c-8942-760eb04552c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1102,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc0NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzBOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDkyMDgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEa3lNRGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1176,22 +1124,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:24:40 GMT" + "Fri, 24 Feb 2017 19:53:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14982" ], "x-ms-request-id": [ - "f09b9fe2-bcbd-423f-8f01-2cfb3bfc5ad9" + "4ffd7ec7-8b01-4a5f-93c8-4eec828d7ef3" ], "x-ms-correlation-request-id": [ - "f09b9fe2-bcbd-423f-8f01-2cfb3bfc5ad9" + "4ffd7ec7-8b01-4a5f-93c8-4eec828d7ef3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170210T012440Z:f09b9fe2-bcbd-423f-8f01-2cfb3bfc5ad9" + "CENTRALUS:20170224T195322Z:4ffd7ec7-8b01-4a5f-93c8-4eec828d7ef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1202,13 +1150,13 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-7453" + "sqlcrudtest-9208" ], "RunTestInNewV12Server": [ - "sqlcrudtest-9267" + "sqlcrudtest-8501" ], "TestUpdateElasticPoolAndListActivity": [ - "3320" + "3104" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolDatabaseActivityScenarioTests/TestCreateDropDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolDatabaseActivityScenarioTests/TestCreateDropDatabase.json deleted file mode 100644 index 2ed508e38b37..000000000000 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolDatabaseActivityScenarioTests/TestCreateDropDatabase.json +++ /dev/null @@ -1,1087 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/sqlcrudtest-5301?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTUzMDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-5301\": \"2016-10-22 23:33:24Z\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "99" - ], - "x-ms-client-request-id": [ - "20987dda-ae51-4b16-a7de-92a98153b8b1" - ], - "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/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301\",\r\n \"name\": \"sqlcrudtest-5301\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-5301\": \"2016-10-22 23:33:24Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "239" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:33:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" - ], - "x-ms-request-id": [ - "3089ab3e-f415-483c-89e6-4fd3861ff088" - ], - "x-ms-correlation-request-id": [ - "3089ab3e-f415-483c-89e6-4fd3861ff088" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233327Z:3089ab3e-f415-483c-89e6-4fd3861ff088" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "216" - ], - "x-ms-client-request-id": [ - "6c242748-e44e-4ff1-8bac-ba378ba41be8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270\",\r\n \"name\": \"sqlcrudtest-270\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-270.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "521" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:33:59 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "f125ddd4-2b7f-4cf6-8cb7-0dc9a4378290" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" - ], - "x-ms-correlation-request-id": [ - "4eff0f11-d2b5-4511-9aed-50545d9947b8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233400Z:4eff0f11-d2b5-4511-9aed-50545d9947b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/elasticPools/6124?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZWxhc3RpY1Bvb2xzLzYxMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 5,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "197" - ], - "x-ms-client-request-id": [ - "1f288832-1c7c-496a-8aa8-359eaa9ea233" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2016-10-22T16:34:14.835-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:34:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/elasticPools/6124/operationResults/3ac0ca5d-8bdb-4127-a63b-a5b113a5858c?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "3ac0ca5d-8bdb-4127-a63b-a5b113a5858c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" - ], - "x-ms-correlation-request-id": [ - "e3e453b3-10b8-406e-9a49-5320c1a0e99a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233416Z:e3e453b3-10b8-406e-9a49-5320c1a0e99a" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/elasticPools/6124/operationResults/3ac0ca5d-8bdb-4127-a63b-a5b113a5858c?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZWxhc3RpY1Bvb2xzLzYxMjQvb3BlcmF0aW9uUmVzdWx0cy8zYWMwY2E1ZC04YmRiLTQxMjctYTYzYi1hNWIxMTNhNTg1OGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/elasticPools/6124\",\r\n \"name\": \"6124\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-22T23:34:00.97Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "439" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:34:47 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "30bdc4a2-b8a7-4919-9349-899c77285c89" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-correlation-request-id": [ - "794afc85-04fa-42db-994c-4a432e6d0c5d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233447Z:794afc85-04fa-42db-994c-4a432e6d0c5d" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZGF0YWJhc2VzLzcyNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "32" - ], - "x-ms-client-request-id": [ - "90469c81-0615-4a68-8d0a-d4ebbf42dedb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2016-10-22T16:34:49.138-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "80" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:34:49 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/operationResults/1925532a-1095-4303-9f79-7cfb0884a676?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "1925532a-1095-4303-9f79-7cfb0884a676" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/1925532a-1095-4303-9f79-7cfb0884a676?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" - ], - "x-ms-correlation-request-id": [ - "1031ae81-f2c1-4c60-9f60-3fb1b0a086db" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233449Z:1031ae81-f2c1-4c60-9f60-3fb1b0a086db" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZGF0YWJhc2VzLzcyNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolName\": \"6124\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "88" - ], - "x-ms-client-request-id": [ - "45c1b2de-7b2e-4eb5-b16f-ae12bf7fd8d1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2016-10-22T16:35:52.609-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "81" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:35:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/operationResults/22df0ed5-f436-44e5-a34e-57c06c645f1f?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "22df0ed5-f436-44e5-a34e-57c06c645f1f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/22df0ed5-f436-44e5-a34e-57c06c645f1f?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" - ], - "x-ms-correlation-request-id": [ - "e50e0cfd-bd73-4a3a-8a8f-a21681777b79" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233554Z:e50e0cfd-bd73-4a3a-8a8f-a21681777b79" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/1925532a-1095-4303-9f79-7cfb0884a676?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZGF0YWJhc2VzLzcyNTAvYXp1cmVBc3luY09wZXJhdGlvbi8xOTI1NTMyYS0xMDk1LTQzMDMtOWY3OS03Y2ZiMDg4NGE2NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"1925532a-1095-4303-9f79-7cfb0884a676\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:35:20 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f14d2a6c-b96d-4470-9cfa-c38f13922f68" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/1925532a-1095-4303-9f79-7cfb0884a676?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "c19d0a95-2bef-4dd4-85d0-0c514ff13821" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233520Z:c19d0a95-2bef-4dd4-85d0-0c514ff13821" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/1925532a-1095-4303-9f79-7cfb0884a676?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZGF0YWJhc2VzLzcyNTAvYXp1cmVBc3luY09wZXJhdGlvbi8xOTI1NTMyYS0xMDk1LTQzMDMtOWY3OS03Y2ZiMDg4NGE2NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"1925532a-1095-4303-9f79-7cfb0884a676\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:35:51 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "90f1c5e8-8746-4418-99fc-7596b7443b63" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/1925532a-1095-4303-9f79-7cfb0884a676?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "917d9609-930a-4a76-93d6-8b1bada7c098" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233551Z:917d9609-930a-4a76-93d6-8b1bada7c098" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZGF0YWJhc2VzLzcyNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250\",\r\n \"name\": \"7250\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"4dbd9b50-14d9-4bc2-8eca-4c359433a71b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2016-10-22T23:34:49.343Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2016-10-22T23:45:22.35Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:35:52 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0f1d2c0a-6cc6-4841-a000-4aa6c4abbe02" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "7129f6c5-34f1-4f67-b130-54c618abb119" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233552Z:7129f6c5-34f1-4f67-b130-54c618abb119" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZGF0YWJhc2VzLzcyNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250\",\r\n \"name\": \"7250\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"4dbd9b50-14d9-4bc2-8eca-4c359433a71b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2016-10-22T23:34:49.343Z\",\r\n \"currentServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2016-10-22T23:45:22.35Z\",\r\n \"elasticPoolName\": \"6124\",\r\n \"containmentState\": 2\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:36:57 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "237be1e4-1fb7-433a-97bc-d8fe3ed6ea4c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "edf7575e-3bc8-42d8-996f-44114f4f2d3c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233657Z:edf7575e-3bc8-42d8-996f-44114f4f2d3c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/22df0ed5-f436-44e5-a34e-57c06c645f1f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZGF0YWJhc2VzLzcyNTAvYXp1cmVBc3luY09wZXJhdGlvbi8yMmRmMGVkNS1mNDM2LTQ0ZTUtYTM0ZS01N2MwNmM2NDVmMWY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"22df0ed5-f436-44e5-a34e-57c06c645f1f\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:36:24 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "996cf6d5-074d-4567-8c5c-d1076c48c72e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/22df0ed5-f436-44e5-a34e-57c06c645f1f?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "abed7cb1-5d9b-4865-b125-9e7f1ac78984" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233625Z:abed7cb1-5d9b-4865-b125-9e7f1ac78984" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/22df0ed5-f436-44e5-a34e-57c06c645f1f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZGF0YWJhc2VzLzcyNTAvYXp1cmVBc3luY09wZXJhdGlvbi8yMmRmMGVkNS1mNDM2LTQ0ZTUtYTM0ZS01N2MwNmM2NDVmMWY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"22df0ed5-f436-44e5-a34e-57c06c645f1f\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:36:56 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "291a0bae-9b1e-473f-9016-3bfc92b67af9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/databases/7250/azureAsyncOperation/22df0ed5-f436-44e5-a34e-57c06c645f1f?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "cef6d74e-165c-4d03-ae32-a44d90a4112f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233656Z:cef6d74e-165c-4d03-ae32-a44d90a4112f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/elasticPools/6124/elasticPoolDatabaseActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzAvZWxhc3RpY1Bvb2xzLzYxMjQvZWxhc3RpY1Bvb2xEYXRhYmFzZUFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8c89a6e3-9466-48d2-bbed-0d7f6f9599ae" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/elasticPools/6124/elasticPoolDatabaseActivity/22df0ed5-f436-44e5-a34e-57c06c645f1f\",\r\n \"name\": \"22df0ed5-f436-44e5-a34e-57c06c645f1f\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"22df0ed5-f436-44e5-a34e-57c06c645f1f\",\r\n \"serverName\": \"sqlcrudtest-270\",\r\n \"databaseName\": \"7250\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:35:52.547\",\r\n \"endTime\": \"2016-10-22T23:36:44.977\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"6124\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-5301/providers/Microsoft.Sql/servers/sqlcrudtest-270/elasticPools/6124/elasticPoolDatabaseActivity/1925532a-1095-4303-9f79-7cfb0884a676\",\r\n \"name\": \"1925532a-1095-4303-9f79-7cfb0884a676\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"1925532a-1095-4303-9f79-7cfb0884a676\",\r\n \"serverName\": \"sqlcrudtest-270\",\r\n \"databaseName\": \"7250\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-22T23:34:49.123\",\r\n \"endTime\": \"2016-10-22T23:35:22.54\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"6124\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:36:58 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f20e57b4-9c6a-464b-a220-557bca862f80" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "1301307f-a676-460b-9e2e-393641dbace9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233658Z:1301307f-a676-460b-9e2e-393641dbace9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/sqlcrudtest-5301?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTUzMDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98cfc99e-c07d-49e7-9580-c2a38569d4c3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:37:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUzMDEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" - ], - "x-ms-request-id": [ - "e4d494c7-4aac-4f72-887b-c06b4c6e8d2c" - ], - "x-ms-correlation-request-id": [ - "e4d494c7-4aac-4f72-887b-c06b4c6e8d2c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233701Z:e4d494c7-4aac-4f72-887b-c06b4c6e8d2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUzMDEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVXpNREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:37:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUzMDEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-request-id": [ - "74ea08ed-8437-44a8-afd6-c2d00e4a2f64" - ], - "x-ms-correlation-request-id": [ - "74ea08ed-8437-44a8-afd6-c2d00e4a2f64" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233731Z:74ea08ed-8437-44a8-afd6-c2d00e4a2f64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUzMDEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVXpNREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:38:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUzMDEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-request-id": [ - "dd630393-a26d-4855-8ae4-3ee5365cb0ba" - ], - "x-ms-correlation-request-id": [ - "dd630393-a26d-4855-8ae4-3ee5365cb0ba" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233802Z:dd630393-a26d-4855-8ae4-3ee5365cb0ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUzMDEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVXpNREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:38:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUzMDEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-request-id": [ - "8958dfcd-a81c-481c-a644-ba05abecf354" - ], - "x-ms-correlation-request-id": [ - "8958dfcd-a81c-481c-a644-ba05abecf354" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233832Z:8958dfcd-a81c-481c-a644-ba05abecf354" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDUzMDEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEVXpNREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 22 Oct 2016 23:39:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-request-id": [ - "78d3853d-d8c8-4eed-b364-a732588e46bf" - ], - "x-ms-correlation-request-id": [ - "78d3853d-d8c8-4eed-b364-a732588e46bf" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161022T233902Z:78d3853d-d8c8-4eed-b364-a732588e46bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "RunTestInNewResourceGroup": [ - "sqlcrudtest-5301" - ], - "RunTestInNewV12Server": [ - "sqlcrudtest-270" - ], - "TestListElasticPoolDatabaseActivity": [ - "6124", - "7250" - ] - }, - "Variables": { - "SubscriptionId": "9d4e2ad0-e20b-4464-9219-353bded52513" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolDatabaseActivityScenarioTests/TestListElasticPoolDatabaseActivity.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolDatabaseActivityScenarioTests/TestListElasticPoolDatabaseActivity.json deleted file mode 100644 index 96655ff0bf2d..000000000000 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ElasticPoolDatabaseActivityScenarioTests/TestListElasticPoolDatabaseActivity.json +++ /dev/null @@ -1,1087 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/sqlcrudtest-4673?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-4673\": \"2016-10-23 03:04:53Z\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "99" - ], - "x-ms-client-request-id": [ - "d1bd42b8-fb6b-46b7-91a1-95a30be8f2ea" - ], - "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/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673\",\r\n \"name\": \"sqlcrudtest-4673\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-4673\": \"2016-10-23 03:04:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "239" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:04:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "05317231-d419-4514-9599-e8a3162392a5" - ], - "x-ms-correlation-request-id": [ - "05317231-d419-4514-9599-e8a3162392a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030455Z:05317231-d419-4514-9599-e8a3162392a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "216" - ], - "x-ms-client-request-id": [ - "dde383a8-ac5b-4cc4-a0f1-735ed1d9d6d2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603\",\r\n \"name\": \"sqlcrudtest-603\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-603.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "521" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:05:23 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "734fa897-603e-4c2f-8d53-b46fc9d3a2c9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "2cef5052-fd41-465f-a6fd-7edb990cae21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030523Z:2cef5052-fd41-465f-a6fd-7edb990cae21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/elasticPools/7537?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZWxhc3RpY1Bvb2xzLzc1Mzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"dtu\": 100,\r\n \"databaseDtuMax\": 5,\r\n \"databaseDtuMin\": 0\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "197" - ], - "x-ms-client-request-id": [ - "a1af68e0-3fde-4903-a33c-225af10dfe65" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CREATE\",\r\n \"startTime\": \"2016-10-22T20:05:36.455-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "65" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:05:36 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/elasticPools/7537/operationResults/e3a1cceb-42d5-48df-a030-71693e4991ca?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "e3a1cceb-42d5-48df-a030-71693e4991ca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "2271b076-ae2f-47c1-bf75-fa675b92ac7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030537Z:2271b076-ae2f-47c1-bf75-fa675b92ac7a" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/elasticPools/7537/operationResults/e3a1cceb-42d5-48df-a030-71693e4991ca?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZWxhc3RpY1Bvb2xzLzc1Mzcvb3BlcmF0aW9uUmVzdWx0cy9lM2ExY2NlYi00MmQ1LTQ4ZGYtYTAzMC03MTY5M2U0OTkxY2E/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/elasticPools/7537\",\r\n \"name\": \"7537\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2016-10-23T03:05:24.79Z\",\r\n \"edition\": \"Basic\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 100,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 5,\r\n \"storageMB\": 10000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "439" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:06:08 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "e68d9b00-eebc-4385-ae0d-f987d5719a0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" - ], - "x-ms-correlation-request-id": [ - "b775da3f-fd77-45b9-a785-44a4a51a0701" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030608Z:b775da3f-fd77-45b9-a785-44a4a51a0701" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZGF0YWJhc2VzLzIzOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "32" - ], - "x-ms-client-request-id": [ - "e36c70c0-6f61-482b-954b-e595b558cb42" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2016-10-22T20:06:11.206-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "80" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:06:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/operationResults/95108a78-384e-48d3-b4de-7bf23b93a26d?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "95108a78-384e-48d3-b4de-7bf23b93a26d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/95108a78-384e-48d3-b4de-7bf23b93a26d?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "01c86c63-eb01-4489-ba63-5dfeaaeb51b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030609Z:01c86c63-eb01-4489-ba63-5dfeaaeb51b0" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZGF0YWJhc2VzLzIzOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"elasticPoolName\": \"7537\"\r\n },\r\n \"location\": \"Japan East\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "88" - ], - "x-ms-client-request-id": [ - "a0578c8b-b130-431d-9106-34038bde85ed" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2016-10-22T20:07:12.624-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "81" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:07:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/operationResults/3a3272b3-f1fe-423c-9feb-7b843157eda5?api-version=2014-04-01-Preview" - ], - "Retry-After": [ - "30" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "3a3272b3-f1fe-423c-9feb-7b843157eda5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/3a3272b3-f1fe-423c-9feb-7b843157eda5?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "7deb71ef-1784-417f-be5d-8c06e0b32ddd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030713Z:7deb71ef-1784-417f-be5d-8c06e0b32ddd" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/95108a78-384e-48d3-b4de-7bf23b93a26d?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZGF0YWJhc2VzLzIzOTYvYXp1cmVBc3luY09wZXJhdGlvbi85NTEwOGE3OC0zODRlLTQ4ZDMtYjRkZS03YmYyM2I5M2EyNmQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"95108a78-384e-48d3-b4de-7bf23b93a26d\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:06:39 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "84e99570-a2ce-4e99-8d10-f496ec254b84" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/95108a78-384e-48d3-b4de-7bf23b93a26d?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], - "x-ms-correlation-request-id": [ - "507477e2-da66-41fe-87e6-c743817a9427" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030640Z:507477e2-da66-41fe-87e6-c743817a9427" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/95108a78-384e-48d3-b4de-7bf23b93a26d?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZGF0YWJhc2VzLzIzOTYvYXp1cmVBc3luY09wZXJhdGlvbi85NTEwOGE3OC0zODRlLTQ4ZDMtYjRkZS03YmYyM2I5M2EyNmQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"95108a78-384e-48d3-b4de-7bf23b93a26d\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:07:10 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a6840a4e-f7b9-446a-8ea1-083e954fd439" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/95108a78-384e-48d3-b4de-7bf23b93a26d?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" - ], - "x-ms-correlation-request-id": [ - "66b76f59-e8de-429b-abcf-6be2f9d2bdb0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030711Z:66b76f59-e8de-429b-abcf-6be2f9d2bdb0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZGF0YWJhc2VzLzIzOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396\",\r\n \"name\": \"2396\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"875e7e12-0fb8-4dd5-8098-2c318251e341\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2016-10-23T03:06:11.44Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2016-10-23T03:16:49.023Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:07:10 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "28e4cc21-b2e2-41bc-a3e0-b9a90bdf3fab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" - ], - "x-ms-correlation-request-id": [ - "fb3e1102-6701-4e60-b5cb-7da92e9c3ee5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030711Z:fb3e1102-6701-4e60-b5cb-7da92e9c3ee5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZGF0YWJhc2VzLzIzOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396\",\r\n \"name\": \"2396\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"875e7e12-0fb8-4dd5-8098-2c318251e341\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"ElasticPool\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"creationDate\": \"2016-10-23T03:06:11.44Z\",\r\n \"currentServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveId\": \"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\r\n \"requestedServiceObjectiveName\": \"ElasticPool\",\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2016-10-23T03:16:49.023Z\",\r\n \"elasticPoolName\": \"7537\",\r\n \"containmentState\": 2\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:08:14 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e8dac8f3-8399-452f-bbcd-24fd13b2cf49" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" - ], - "x-ms-correlation-request-id": [ - "bf94b426-d55d-440d-ad99-aeb6f8f1488e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030815Z:bf94b426-d55d-440d-ad99-aeb6f8f1488e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/3a3272b3-f1fe-423c-9feb-7b843157eda5?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZGF0YWJhc2VzLzIzOTYvYXp1cmVBc3luY09wZXJhdGlvbi8zYTMyNzJiMy1mMWZlLTQyM2MtOWZlYi03Yjg0MzE1N2VkYTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"3a3272b3-f1fe-423c-9feb-7b843157eda5\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:07:43 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3b7d6ef9-0024-4b30-9319-82dc5483684b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/3a3272b3-f1fe-423c-9feb-7b843157eda5?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" - ], - "x-ms-correlation-request-id": [ - "586cf8fe-733c-4f59-884c-93f0ddec3a9a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030743Z:586cf8fe-733c-4f59-884c-93f0ddec3a9a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/3a3272b3-f1fe-423c-9feb-7b843157eda5?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZGF0YWJhc2VzLzIzOTYvYXp1cmVBc3luY09wZXJhdGlvbi8zYTMyNzJiMy1mMWZlLTQyM2MtOWZlYi03Yjg0MzE1N2VkYTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"3a3272b3-f1fe-423c-9feb-7b843157eda5\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:08:13 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3eb3040a-9784-4d75-8c02-72df6b4540d9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/databases/2396/azureAsyncOperation/3a3272b3-f1fe-423c-9feb-7b843157eda5?api-version=2014-04-01-Preview" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" - ], - "x-ms-correlation-request-id": [ - "d80b5409-0cd1-406e-b7f8-76875c097d43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030814Z:d80b5409-0cd1-406e-b7f8-76875c097d43" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/elasticPools/7537/elasticPoolDatabaseActivity?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MDMvZWxhc3RpY1Bvb2xzLzc1MzcvZWxhc3RpY1Bvb2xEYXRhYmFzZUFjdGl2aXR5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a4c6e79-87c2-48de-9176-88aac3e5a983" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/elasticPools/7537/elasticPoolDatabaseActivity/3a3272b3-f1fe-423c-9feb-7b843157eda5\",\r\n \"name\": \"3a3272b3-f1fe-423c-9feb-7b843157eda5\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"3a3272b3-f1fe-423c-9feb-7b843157eda5\",\r\n \"serverName\": \"sqlcrudtest-603\",\r\n \"databaseName\": \"2396\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"UPDATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-23T03:07:12.577\",\r\n \"endTime\": \"2016-10-23T03:08:02.95\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"7537\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/sqlcrudtest-4673/providers/Microsoft.Sql/servers/sqlcrudtest-603/elasticPools/7537/elasticPoolDatabaseActivity/95108a78-384e-48d3-b4de-7bf23b93a26d\",\r\n \"name\": \"95108a78-384e-48d3-b4de-7bf23b93a26d\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"operationId\": \"95108a78-384e-48d3-b4de-7bf23b93a26d\",\r\n \"serverName\": \"sqlcrudtest-603\",\r\n \"databaseName\": \"2396\",\r\n \"state\": \"COMPLETED\",\r\n \"operation\": \"CREATE\",\r\n \"errorCode\": null,\r\n \"errorMessage\": null,\r\n \"errorSeverity\": null,\r\n \"startTime\": \"2016-10-23T03:06:11.19\",\r\n \"endTime\": \"2016-10-23T03:06:49.197\",\r\n \"percentComplete\": 100,\r\n \"currentServiceObjective\": \"ElasticPool\",\r\n \"requestedServiceObjective\": null,\r\n \"currentElasticPoolName\": \"7537\",\r\n \"requestedElasticPoolName\": null\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:08:15 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9761bc1e-9879-406f-b81f-b2340bea9e99" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], - "x-ms-correlation-request-id": [ - "99ac98a5-35a3-465d-99cd-05723714ad9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030816Z:99ac98a5-35a3-465d-99cd-05723714ad9c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/sqlcrudtest-4673?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ2NzM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8f65fef9-b8c2-4725-b080-2269f3e2e8f4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:08:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ2NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "2b06ec43-e650-4d75-907f-f9d5178361dd" - ], - "x-ms-correlation-request-id": [ - "2b06ec43-e650-4d75-907f-f9d5178361dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030818Z:2b06ec43-e650-4d75-907f-f9d5178361dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ2NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTJOek10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:08:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ2NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" - ], - "x-ms-request-id": [ - "882c4b19-88f2-4498-a1fa-9a5aaeff4eae" - ], - "x-ms-correlation-request-id": [ - "882c4b19-88f2-4498-a1fa-9a5aaeff4eae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030848Z:882c4b19-88f2-4498-a1fa-9a5aaeff4eae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ2NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTJOek10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:09:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ2NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" - ], - "x-ms-request-id": [ - "a3ffc0eb-736f-42c5-81b1-6f7185b9561b" - ], - "x-ms-correlation-request-id": [ - "a3ffc0eb-736f-42c5-81b1-6f7185b9561b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030918Z:a3ffc0eb-736f-42c5-81b1-6f7185b9561b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ2NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTJOek10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:09:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ2NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" - ], - "x-ms-request-id": [ - "b9fec697-e2ee-4688-9f1b-c451f142a9a5" - ], - "x-ms-correlation-request-id": [ - "b9fec697-e2ee-4688-9f1b-c451f142a9a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T030948Z:b9fec697-e2ee-4688-9f1b-c451f142a9a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ2NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTJOek10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:10:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" - ], - "x-ms-request-id": [ - "901ebd3f-647d-40b0-a298-20ae15329fe3" - ], - "x-ms-correlation-request-id": [ - "901ebd3f-647d-40b0-a298-20ae15329fe3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T031019Z:901ebd3f-647d-40b0-a298-20ae15329fe3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "RunTestInNewResourceGroup": [ - "sqlcrudtest-4673" - ], - "RunTestInNewV12Server": [ - "sqlcrudtest-603" - ], - "TestListElasticPoolDatabaseActivity": [ - "7537", - "2396" - ] - }, - "Variables": { - "SubscriptionId": "9d4e2ad0-e20b-4464-9219-353bded52513" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCreateUpdateDrop/TestCreateUpdateDropFirewallRule.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCreateUpdateDrop/TestCreateUpdateDropFirewallRule.json deleted file mode 100644 index 77c75cb87560..000000000000 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCreateUpdateDrop/TestCreateUpdateDropFirewallRule.json +++ /dev/null @@ -1,543 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/firewallrulecrudtest-5490?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTU0OTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-5490\": \"2016-10-23 03:47:58Z\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "108" - ], - "x-ms-client-request-id": [ - "12b53aea-b42d-4243-9c8e-8fac25f71696" - ], - "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/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-5490\",\r\n \"name\": \"firewallrulecrudtest-5490\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-5490\": \"2016-10-23 03:47:58Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "266" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:47:59 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "f11f171c-b0da-432c-94e0-9f5807ee0ecd" - ], - "x-ms-correlation-request-id": [ - "f11f171c-b0da-432c-94e0-9f5807ee0ecd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T034800Z:f11f171c-b0da-432c-94e0-9f5807ee0ecd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-5490/providers/Microsoft.Sql/servers/firewallrulecrudtest-9454?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTU0OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC05NDU0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "216" - ], - "x-ms-client-request-id": [ - "3035cc82-ed8a-4256-bca6-0bb6f3ad34e8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-5490/providers/Microsoft.Sql/servers/firewallrulecrudtest-9454\",\r\n \"name\": \"firewallrulecrudtest-9454\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"firewallrulecrudtest-9454.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "560" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:48:32 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "deb481f5-d5b2-4bd8-a982-dcf783e9300a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "684afd76-1774-4ea6-bfdc-2011b6cefac0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T034832Z:684afd76-1774-4ea6-bfdc-2011b6cefac0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-5490/providers/Microsoft.Sql/servers/firewallrulecrudtest-9454/firewallRules/firewallrulecrudtest-4411?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTU0OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC05NDU0L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNDQxMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "93" - ], - "x-ms-client-request-id": [ - "0f838ac2-e6b1-4664-b828-676ccc51b80f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-5490/providers/Microsoft.Sql/servers/firewallrulecrudtest-9454/firewallRules/firewallrulecrudtest-4411\",\r\n \"name\": \"firewallrulecrudtest-4411\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "385" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:48:34 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "15893cdc-07af-4f53-937e-57301af5c325" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "593c5db2-c582-419d-a3c8-6d916582300b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T034834Z:593c5db2-c582-419d-a3c8-6d916582300b" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-5490/providers/Microsoft.Sql/servers/firewallrulecrudtest-9454/firewallRules/firewallrulecrudtest-4411?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTU0OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC05NDU0L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNDQxMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"1.1.1.1\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "101" - ], - "x-ms-client-request-id": [ - "f45213ba-cd75-4062-9478-47701458e44e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-5490/providers/Microsoft.Sql/servers/firewallrulecrudtest-9454/firewallRules/firewallrulecrudtest-4411\",\r\n \"name\": \"firewallrulecrudtest-4411\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"1.1.1.1\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:48:35 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d7490f2f-4469-4106-87d9-5d3f5d02d570" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "c1eee757-052d-477e-9cd8-8f9d90c652a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T034835Z:c1eee757-052d-477e-9cd8-8f9d90c652a9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/firewallrulecrudtest-5490?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTU0OTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "555a733b-d85e-453d-9676-81520b390321" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:48:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDU0OTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "ba0f99d1-48f5-438a-9e99-6ea6e8dfbbfb" - ], - "x-ms-correlation-request-id": [ - "ba0f99d1-48f5-438a-9e99-6ea6e8dfbbfb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T034837Z:ba0f99d1-48f5-438a-9e99-6ea6e8dfbbfb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDU0OTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEVTBPVEF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:49:06 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDU0OTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-request-id": [ - "008f6476-5a31-4de1-9034-0205459fd81e" - ], - "x-ms-correlation-request-id": [ - "008f6476-5a31-4de1-9034-0205459fd81e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T034907Z:008f6476-5a31-4de1-9034-0205459fd81e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDU0OTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEVTBPVEF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:49:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDU0OTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-request-id": [ - "8be4eb18-111c-43f9-9994-87da6922091e" - ], - "x-ms-correlation-request-id": [ - "8be4eb18-111c-43f9-9994-87da6922091e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T034937Z:8be4eb18-111c-43f9-9994-87da6922091e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDU0OTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEVTBPVEF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:50:07 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDU0OTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-request-id": [ - "5a7f34dc-655e-4872-891f-8a9386ffb65f" - ], - "x-ms-correlation-request-id": [ - "5a7f34dc-655e-4872-891f-8a9386ffb65f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T035007Z:5a7f34dc-655e-4872-891f-8a9386ffb65f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDU0OTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEVTBPVEF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 03:50:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-request-id": [ - "cfb59919-c8eb-4120-b63e-b52d40964714" - ], - "x-ms-correlation-request-id": [ - "cfb59919-c8eb-4120-b63e-b52d40964714" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161023T035037Z:cfb59919-c8eb-4120-b63e-b52d40964714" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "RunTestInNewResourceGroup": [ - "firewallrulecrudtest-5490" - ], - "RunTestInNewV12Server": [ - "firewallrulecrudtest-9454" - ], - "TestCreateAndUpdateFirewallRule": [ - "firewallrulecrudtest-4411" - ] - }, - "Variables": { - "SubscriptionId": "9d4e2ad0-e20b-4464-9219-353bded52513" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCreateUpdateDrop/TestGetAndListFirewallRule.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCreateUpdateDrop/TestGetAndListFirewallRule.json deleted file mode 100644 index 4e0d7505d693..000000000000 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCreateUpdateDrop/TestGetAndListFirewallRule.json +++ /dev/null @@ -1,982 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/firewallrulecrudtest-3832?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-3832\": \"2016-10-23 04:08:17Z\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "108" - ], - "x-ms-client-request-id": [ - "1a28fae3-2b32-4b1c-8c36-7409aefe1102" - ], - "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/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832\",\r\n \"name\": \"firewallrulecrudtest-3832\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-3832\": \"2016-10-23 04:08:17Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "266" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:08:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "70111449-e123-4717-a3db-c45fe530f0a3" - ], - "x-ms-correlation-request-id": [ - "70111449-e123-4717-a3db-c45fe530f0a3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040820Z:70111449-e123-4717-a3db-c45fe530f0a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "216" - ], - "x-ms-client-request-id": [ - "e5e2d097-2f4a-4a61-9f30-97e00f18f9de" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723\",\r\n \"name\": \"firewallrulecrudtest-2723\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"firewallrulecrudtest-2723.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "560" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:08:59 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "d6b7be82-64a2-4007-aea2-9b20d1d43c24" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "983161fe-cdab-402a-b7f1-cd6da03f9795" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040859Z:983161fe-cdab-402a-b7f1-cd6da03f9795" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-2292?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMjI5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"47.123.63.179\",\r\n \"endIpAddress\": \"47.123.63.179\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "105" - ], - "x-ms-client-request-id": [ - "289be06a-7f75-4237-b61a-a45b1bc8dd6f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-2292\",\r\n \"name\": \"firewallrulecrudtest-2292\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"47.123.63.179\",\r\n \"endIpAddress\": \"47.123.63.179\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "397" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:01 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "8fb0e406-1103-40c4-a48b-8a5bdccb4adc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "cad0b5b7-3798-4077-a653-9f9402af9d44" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040901Z:cad0b5b7-3798-4077-a653-9f9402af9d44" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-6728?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjcyOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"31.213.47.35\",\r\n \"endIpAddress\": \"31.213.47.35\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "103" - ], - "x-ms-client-request-id": [ - "ef2c16dc-cbc7-4cd1-8f80-8454dfc12fa6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-6728\",\r\n \"name\": \"firewallrulecrudtest-6728\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"31.213.47.35\",\r\n \"endIpAddress\": \"31.213.47.35\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "395" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:02 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "a938351e-478d-4881-bf72-3c2488983237" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "a55d5060-7de6-46fd-bed5-fc0414e95975" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040903Z:a55d5060-7de6-46fd-bed5-fc0414e95975" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-4972?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNDk3Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"222.139.95.94\",\r\n \"endIpAddress\": \"222.139.95.94\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "105" - ], - "x-ms-client-request-id": [ - "ee907147-cede-41d1-9dad-2d747b2a85ff" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-4972\",\r\n \"name\": \"firewallrulecrudtest-4972\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"222.139.95.94\",\r\n \"endIpAddress\": \"222.139.95.94\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "397" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:04 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "471d68af-c2da-43d4-a5fa-dd76e4cb813d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "550521dd-c3d4-44be-8b8a-577249639414" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040905Z:550521dd-c3d4-44be-8b8a-577249639414" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-9972?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtOTk3Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"15.118.181.144\",\r\n \"endIpAddress\": \"15.118.181.144\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "107" - ], - "x-ms-client-request-id": [ - "38106a18-be27-4752-8232-e3523c90e529" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-9972\",\r\n \"name\": \"firewallrulecrudtest-9972\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"15.118.181.144\",\r\n \"endIpAddress\": \"15.118.181.144\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "399" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:05 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "9e220642-7e01-4e98-8ccb-f06a6598263e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Preference-Applied": [ - "return-content" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "9f66ce28-0630-45dd-8a21-0845f16ede57" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040906Z:9f66ce28-0630-45dd-8a21-0845f16ede57" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-2292?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMjI5Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffff9eca-0e2c-4820-8bdd-106644330353" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-2292\",\r\n \"name\": \"firewallrulecrudtest-2292\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"47.123.63.179\",\r\n \"endIpAddress\": \"47.123.63.179\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:06 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2a99c084-e6fe-486b-9cf1-313c227616d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "670c6c99-51c3-4da1-a623-83d132a51b44" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040907Z:670c6c99-51c3-4da1-a623-83d132a51b44" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-6728?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjcyOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4c0e328b-0f3e-44ba-ba6c-6abe23d3bbb9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-6728\",\r\n \"name\": \"firewallrulecrudtest-6728\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"31.213.47.35\",\r\n \"endIpAddress\": \"31.213.47.35\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:07 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "4adf4c90-d8a5-4e15-a4da-81eccac7f25b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "be347fd2-bac0-428c-b2cc-d9c31ad2bbd1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040908Z:be347fd2-bac0-428c-b2cc-d9c31ad2bbd1" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-4972?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNDk3Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "38ea2db4-c6b3-4219-aa43-b0930484b020" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-4972\",\r\n \"name\": \"firewallrulecrudtest-4972\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"222.139.95.94\",\r\n \"endIpAddress\": \"222.139.95.94\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:08 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cb2f12cb-8510-4f91-ad6d-712045c1ef33" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "5460c8e1-cbbc-43c1-bef6-1bdb373bfb5b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040909Z:5460c8e1-cbbc-43c1-bef6-1bdb373bfb5b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-9972?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtOTk3Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8753f3a2-81be-4070-9449-47070e8a6c7c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-9972\",\r\n \"name\": \"firewallrulecrudtest-9972\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"15.118.181.144\",\r\n \"endIpAddress\": \"15.118.181.144\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:09 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d6740fdd-7618-4a4a-b466-b7980243aede" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "395c06e7-91d2-411d-a99e-7a208350aa1e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040910Z:395c06e7-91d2-411d-a99e-7a208350aa1e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yNzIzL2ZpcmV3YWxsUnVsZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7db893b5-b7ae-4e72-9fbc-65bb50a3a1d4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-2292\",\r\n \"name\": \"firewallrulecrudtest-2292\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"47.123.63.179\",\r\n \"endIpAddress\": \"47.123.63.179\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-4972\",\r\n \"name\": \"firewallrulecrudtest-4972\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"222.139.95.94\",\r\n \"endIpAddress\": \"222.139.95.94\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-6728\",\r\n \"name\": \"firewallrulecrudtest-6728\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"31.213.47.35\",\r\n \"endIpAddress\": \"31.213.47.35\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourceGroups/firewallrulecrudtest-3832/providers/Microsoft.Sql/servers/firewallrulecrudtest-2723/firewallRules/firewallrulecrudtest-9972\",\r\n \"name\": \"firewallrulecrudtest-9972\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"15.118.181.144\",\r\n \"endIpAddress\": \"15.118.181.144\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:10 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c6e00e12-d8b3-4796-addf-14f29dbe4791" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "357e775f-6a73-48ba-b951-70d26fb69476" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040911Z:357e775f-6a73-48ba-b951-70d26fb69476" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/resourcegroups/firewallrulecrudtest-3832?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM4MzI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5c369d6b-29c5-4e7e-8064-6a980b58cced" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDM4MzItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "4beef2e9-c077-45a7-8630-d8b512c30618" - ], - "x-ms-correlation-request-id": [ - "4beef2e9-c077-45a7-8630-d8b512c30618" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040913Z:4beef2e9-c077-45a7-8630-d8b512c30618" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDM4MzItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJETTRNekl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:09:43 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDM4MzItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "b34ff73c-df07-43dc-a697-21d93e9e6efc" - ], - "x-ms-correlation-request-id": [ - "b34ff73c-df07-43dc-a697-21d93e9e6efc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T040943Z:b34ff73c-df07-43dc-a697-21d93e9e6efc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDM4MzItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJETTRNekl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:10:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDM4MzItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-request-id": [ - "5a21eb58-7590-4845-99a1-95ba01b979b2" - ], - "x-ms-correlation-request-id": [ - "5a21eb58-7590-4845-99a1-95ba01b979b2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T041014Z:5a21eb58-7590-4845-99a1-95ba01b979b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDM4MzItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJETTRNekl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:10:44 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDM4MzItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-request-id": [ - "d3e65b83-ae2a-4e48-bdb4-8adeb1b6a281" - ], - "x-ms-correlation-request-id": [ - "d3e65b83-ae2a-4e48-bdb4-8adeb1b6a281" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T041044Z:d3e65b83-ae2a-4e48-bdb4-8adeb1b6a281" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9d4e2ad0-e20b-4464-9219-353bded52513/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDM4MzItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQ0ZTJhZDAtZTIwYi00NDY0LTkyMTktMzUzYmRlZDUyNTEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJETTRNekl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 23 Oct 2016 04:11:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-request-id": [ - "c91c7278-fa46-4ca0-9aec-f8e90ab63258" - ], - "x-ms-correlation-request-id": [ - "c91c7278-fa46-4ca0-9aec-f8e90ab63258" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161023T041114Z:c91c7278-fa46-4ca0-9aec-f8e90ab63258" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "RunTestInNewResourceGroup": [ - "firewallrulecrudtest-3832" - ], - "RunTestInNewV12Server": [ - "firewallrulecrudtest-2723" - ], - "TestGetAndListFirewallRule": [ - "firewallrulecrudtest-2292", - "firewallrulecrudtest-6728", - "firewallrulecrudtest-4972", - "firewallrulecrudtest-9972" - ] - }, - "Variables": { - "SubscriptionId": "9d4e2ad0-e20b-4464-9219-353bded52513" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestCreateAndUpdateFirewallRule.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestCreateAndUpdateFirewallRule.json index 6ae61aebcf90..227d23a5effc 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestCreateAndUpdateFirewallRule.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestCreateAndUpdateFirewallRule.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-6646?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTY2NDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-706?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcwNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-6646\": \"2017-02-10 01:50:33Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-706\": \"2017-02-24 19:35:10Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "108" + "107" ], "x-ms-client-request-id": [ - "ce18c8d6-b4d4-4a11-94c3-bad3d14d91fb" + "91066f09-56b7-4cc4-b43a-d4b516ef9b1f" ], "accept-language": [ "en-US" @@ -23,10 +23,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-6646\",\r\n \"name\": \"firewallrulecrudtest-6646\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-6646\": \"2017-02-10 01:50:33Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-706\",\r\n \"name\": \"firewallrulecrudtest-706\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-706\": \"2017-02-24 19:35:10Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "266" + "263" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:50:33 GMT" + "Fri, 24 Feb 2017 19:35:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-request-id": [ - "c992e8fe-9688-4dee-9ed2-8a6eb05eefec" + "c71a42fe-1e27-42dc-b97a-cc2d7ba5d34e" ], "x-ms-correlation-request-id": [ - "c992e8fe-9688-4dee-9ed2-8a6eb05eefec" + "c71a42fe-1e27-42dc-b97a-cc2d7ba5d34e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015034Z:c992e8fe-9688-4dee-9ed2-8a6eb05eefec" + "WESTUS2:20170224T193512Z:c71a42fe-1e27-42dc-b97a-cc2d7ba5d34e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-6646/providers/Microsoft.Sql/servers/firewallrulecrudtest-9133?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTY2NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC05MTMzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-706/providers/Microsoft.Sql/servers/firewallrulecrudtest-7825?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTc4MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "216" ], "x-ms-client-request-id": [ - "b5010059-5103-4d49-ac96-f28dd944dcc9" + "8e00b952-8cb8-440c-9f18-0124a1d0e8e4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-6646/providers/Microsoft.Sql/servers/firewallrulecrudtest-9133\",\r\n \"name\": \"firewallrulecrudtest-9133\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"firewallrulecrudtest-9133.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-706/providers/Microsoft.Sql/servers/firewallrulecrudtest-7825\",\r\n \"name\": \"firewallrulecrudtest-7825\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"firewallrulecrudtest-7825.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "560" + "559" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:51:06 GMT" + "Fri, 24 Feb 2017 19:35:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "78d138e3-0663-49d8-8947-2f69f294d324" + "8d81656c-4534-422e-b3b1-213d32a93bf3" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1198" ], "x-ms-correlation-request-id": [ - "274a52cd-53d4-4dcf-bf4e-3048092c9006" + "c05740bb-a283-4351-a217-e848dbbfb8ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015107Z:274a52cd-53d4-4dcf-bf4e-3048092c9006" + "WESTUS2:20170224T193549Z:c05740bb-a283-4351-a217-e848dbbfb8ad" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-6646/providers/Microsoft.Sql/servers/firewallrulecrudtest-9133/firewallRules/firewallrulecrudtest-1525?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTY2NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC05MTMzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMTUyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-706/providers/Microsoft.Sql/servers/firewallrulecrudtest-7825/firewallRules/firewallrulecrudtest-3655?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTc4MjUvZmlyZXdhbGxSdWxlcy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNjU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "RequestHeaders": { @@ -141,20 +141,20 @@ "93" ], "x-ms-client-request-id": [ - "38907808-043b-4883-96a3-92bb409c17ee" + "ab0fa28c-7dfe-4219-8639-433794a91a30" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-6646/providers/Microsoft.Sql/servers/firewallrulecrudtest-9133/firewallRules/firewallrulecrudtest-1525\",\r\n \"name\": \"firewallrulecrudtest-1525\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-706/providers/Microsoft.Sql/servers/firewallrulecrudtest-7825/firewallRules/firewallrulecrudtest-3655\",\r\n \"name\": \"firewallrulecrudtest-3655\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -163,13 +163,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:51:08 GMT" + "Fri, 24 Feb 2017 19:35:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2b78fd60-4147-4bff-b5f1-04d4e4870ef7" + "2f95c558-c55b-46df-a932-4e9933cb0d1f" ], "X-Content-Type-Options": [ "nosniff" @@ -184,20 +184,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1197" ], "x-ms-correlation-request-id": [ - "8c1fabc0-5c2c-4f71-8597-7263b434ac9b" + "467a8efa-9acd-420d-aaab-ac435512c781" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015108Z:8c1fabc0-5c2c-4f71-8597-7263b434ac9b" + "WESTUS2:20170224T193551Z:467a8efa-9acd-420d-aaab-ac435512c781" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-6646/providers/Microsoft.Sql/servers/firewallrulecrudtest-9133/firewallRules/firewallrulecrudtest-1525?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTY2NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC05MTMzL2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMTUyNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-706/providers/Microsoft.Sql/servers/firewallrulecrudtest-7825/firewallRules/firewallrulecrudtest-3655?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTc4MjUvZmlyZXdhbGxSdWxlcy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNjU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"1.1.1.1\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", "RequestHeaders": { @@ -208,17 +208,17 @@ "101" ], "x-ms-client-request-id": [ - "7f395534-f7f3-4988-956e-1dd4d29f6155" + "22ab4339-ffde-4509-9322-c9177d786f2f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-6646/providers/Microsoft.Sql/servers/firewallrulecrudtest-9133/firewallRules/firewallrulecrudtest-1525\",\r\n \"name\": \"firewallrulecrudtest-1525\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"1.1.1.1\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-706/providers/Microsoft.Sql/servers/firewallrulecrudtest-7825/firewallRules/firewallrulecrudtest-3655\",\r\n \"name\": \"firewallrulecrudtest-3655\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"1.1.1.1\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -227,7 +227,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:51:09 GMT" + "Fri, 24 Feb 2017 19:35:53 GMT" ], "Transfer-Encoding": [ "chunked" @@ -239,7 +239,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ce8ee7bf-0d96-475e-82c4-74945d5a277f" + "bcc34341-5ce6-4787-a907-96487306671b" ], "X-Content-Type-Options": [ "nosniff" @@ -254,25 +254,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1196" ], "x-ms-correlation-request-id": [ - "f5c22c0d-a92e-4c18-b599-bd50f01a12ec" + "2da7fa96-2080-45a8-b7f3-5f4409626f8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015110Z:f5c22c0d-a92e-4c18-b599-bd50f01a12ec" + "WESTUS2:20170224T193553Z:2da7fa96-2080-45a8-b7f3-5f4409626f8f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-6646?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTY2NDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-706?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcwNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da037021-48d9-4837-a786-943011394afe" + "9d7b7e29-7dd3-4249-94ba-49841e8e4e21" ], "accept-language": [ "en-US" @@ -294,28 +294,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:51:11 GMT" + "Fri, 24 Feb 2017 19:35:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDY2NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcwNi1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1195" ], "x-ms-request-id": [ - "5e8e7a7b-bbeb-4095-b4a2-d564d09efd83" + "fe07db56-bf05-4373-b950-165773aecebd" ], "x-ms-correlation-request-id": [ - "5e8e7a7b-bbeb-4095-b4a2-d564d09efd83" + "fe07db56-bf05-4373-b950-165773aecebd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015111Z:5e8e7a7b-bbeb-4095-b4a2-d564d09efd83" + "WESTUS2:20170224T193554Z:fe07db56-bf05-4373-b950-165773aecebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,8 +324,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDY2NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEWTJORFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcwNi1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEY3dOaTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -346,28 +346,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:51:40 GMT" + "Fri, 24 Feb 2017 19:36:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDY2NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcwNi1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14555" + "14995" ], "x-ms-request-id": [ - "651a2dd8-8500-4234-9726-1628cc854a5d" + "258ff8ed-4b96-4b99-a718-1ff6ce91b99a" ], "x-ms-correlation-request-id": [ - "651a2dd8-8500-4234-9726-1628cc854a5d" + "258ff8ed-4b96-4b99-a718-1ff6ce91b99a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015141Z:651a2dd8-8500-4234-9726-1628cc854a5d" + "WESTUS2:20170224T193625Z:258ff8ed-4b96-4b99-a718-1ff6ce91b99a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,8 +376,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDY2NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEWTJORFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcwNi1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEY3dOaTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -398,28 +398,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:52:11 GMT" + "Fri, 24 Feb 2017 19:36:55 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDY2NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcwNi1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14551" + "14994" ], "x-ms-request-id": [ - "98dee6fc-8308-4edb-be53-5fcf2ccee463" + "070d5a50-f894-44ab-9890-2b1532cdb139" ], "x-ms-correlation-request-id": [ - "98dee6fc-8308-4edb-be53-5fcf2ccee463" + "070d5a50-f894-44ab-9890-2b1532cdb139" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015212Z:98dee6fc-8308-4edb-be53-5fcf2ccee463" + "WESTUS2:20170224T193655Z:070d5a50-f894-44ab-9890-2b1532cdb139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -428,8 +428,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDY2NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEWTJORFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcwNi1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEY3dOaTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -450,28 +450,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:52:41 GMT" + "Fri, 24 Feb 2017 19:37:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDY2NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcwNi1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14545" + "14997" ], "x-ms-request-id": [ - "86adad44-c635-4e6f-be63-1680a19e982e" + "06310d9a-6478-4e2e-a5fc-e1172cf7b7eb" ], "x-ms-correlation-request-id": [ - "86adad44-c635-4e6f-be63-1680a19e982e" + "06310d9a-6478-4e2e-a5fc-e1172cf7b7eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015242Z:86adad44-c635-4e6f-be63-1680a19e982e" + "WESTUS2:20170224T193726Z:06310d9a-6478-4e2e-a5fc-e1172cf7b7eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -480,8 +480,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDY2NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEWTJORFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcwNi1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEY3dOaTFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -502,22 +502,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:53:12 GMT" + "Fri, 24 Feb 2017 19:37:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14541" + "14996" ], "x-ms-request-id": [ - "ca779dc0-023c-44e4-bf00-c50c60458e1f" + "2b863dfd-48e1-46c4-9c4f-c52feec545bd" ], "x-ms-correlation-request-id": [ - "ca779dc0-023c-44e4-bf00-c50c60458e1f" + "2b863dfd-48e1-46c4-9c4f-c52feec545bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015312Z:ca779dc0-023c-44e4-bf00-c50c60458e1f" + "WESTUS2:20170224T193756Z:2b863dfd-48e1-46c4-9c4f-c52feec545bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,13 +528,13 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "firewallrulecrudtest-6646" + "firewallrulecrudtest-706" ], "RunTestInNewV12Server": [ - "firewallrulecrudtest-9133" + "firewallrulecrudtest-7825" ], "TestCreateAndUpdateFirewallRule": [ - "firewallrulecrudtest-1525" + "firewallrulecrudtest-3655" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestCreateUpdateDropFirewallRule.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestCreateUpdateDropFirewallRule.json index c1bcc66a63ca..cc3a89b9ab8b 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestCreateUpdateDropFirewallRule.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestCreateUpdateDropFirewallRule.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-9886?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-8411?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-9886\": \"2017-02-10 01:53:14Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-8411\": \"2017-02-24 19:37:59Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,7 +13,7 @@ "108" ], "x-ms-client-request-id": [ - "167d47e8-bd4a-4f0f-8a5a-9934cbcdc600" + "b27a2344-e722-4752-b8b9-46f7f20ff5ec" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886\",\r\n \"name\": \"firewallrulecrudtest-9886\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-9886\": \"2017-02-10 01:53:14Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411\",\r\n \"name\": \"firewallrulecrudtest-8411\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-8411\": \"2017-02-24 19:37:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "266" @@ -38,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:53:15 GMT" + "Fri, 24 Feb 2017 19:38:01 GMT" ], "Pragma": [ "no-cache" @@ -47,13 +47,13 @@ "1198" ], "x-ms-request-id": [ - "45b4b5c8-2809-4be5-9952-5df6b3a6d5df" + "b421b21c-0be3-4b38-b6e7-082367d30f94" ], "x-ms-correlation-request-id": [ - "45b4b5c8-2809-4be5-9952-5df6b3a6d5df" + "b421b21c-0be3-4b38-b6e7-082367d30f94" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015316Z:45b4b5c8-2809-4be5-9952-5df6b3a6d5df" + "WESTUS2:20170224T193801Z:b421b21c-0be3-4b38-b6e7-082367d30f94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yMzY4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zMTc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "216" ], "x-ms-client-request-id": [ - "b66ddf00-f963-4a1a-a36d-b4476d13ccb7" + "a8de1c3f-8122-438b-bff2-9e64759a7cde" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368\",\r\n \"name\": \"firewallrulecrudtest-2368\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"firewallrulecrudtest-2368.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177\",\r\n \"name\": \"firewallrulecrudtest-3177\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"firewallrulecrudtest-3177.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "560" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:53:56 GMT" + "Fri, 24 Feb 2017 19:38:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e480f7fd-786a-4435-847a-deced46f7e7f" + "c6c45ed5-ceb4-45f1-9d81-52db2ed508cf" ], "X-Content-Type-Options": [ "nosniff" @@ -120,17 +120,17 @@ "1197" ], "x-ms-correlation-request-id": [ - "d4dfca40-5fbf-4a60-8a75-5a716777d4ed" + "8060abdf-6814-4743-8c72-3f8822df906f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015356Z:d4dfca40-5fbf-4a60-8a75-5a716777d4ed" + "WESTUS2:20170224T193833Z:8060abdf-6814-4743-8c72-3f8822df906f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-2664?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yMzY4L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMjY2ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-8154?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zMTc3L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtODE1ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "93" ], "x-ms-client-request-id": [ - "fe7f3809-5c61-49bf-b51e-01cfc526d153" + "1643ca4b-f605-4509-8606-8c081df06e42" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-2664\",\r\n \"name\": \"firewallrulecrudtest-2664\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-8154\",\r\n \"name\": \"firewallrulecrudtest-8154\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,13 +163,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:53:58 GMT" + "Fri, 24 Feb 2017 19:38:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f15d3d2a-2b4e-4ab2-8d2b-ef20ec927957" + "c69db64f-1ec4-40a9-998c-1003acdf0917" ], "X-Content-Type-Options": [ "nosniff" @@ -187,17 +187,17 @@ "1196" ], "x-ms-correlation-request-id": [ - "a14469ed-8d04-4fd5-835d-0d2b4a4958d8" + "892cb9ba-96bc-4018-b49d-d20751fe259d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015358Z:a14469ed-8d04-4fd5-835d-0d2b4a4958d8" + "WESTUS2:20170224T193835Z:892cb9ba-96bc-4018-b49d-d20751fe259d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-9660?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yMzY4L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtOTY2MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-893?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zMTc3L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtODkzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"1.1.1.1\",\r\n \"endIpAddress\": \"1.1.2.2\"\r\n }\r\n}", "RequestHeaders": { @@ -208,20 +208,20 @@ "93" ], "x-ms-client-request-id": [ - "2b8b6fd2-d807-4548-8a68-f520d173ffbc" + "b8a29904-ece6-4d71-ab6d-c6173d27b3b4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-9660\",\r\n \"name\": \"firewallrulecrudtest-9660\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"1.1.1.1\",\r\n \"endIpAddress\": \"1.1.2.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-893\",\r\n \"name\": \"firewallrulecrudtest-893\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"1.1.1.1\",\r\n \"endIpAddress\": \"1.1.2.2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -230,13 +230,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:53:59 GMT" + "Fri, 24 Feb 2017 19:38:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "082b2890-93ec-4dc2-a133-d470324efea7" + "84a00581-5e44-4dad-ab2d-077fe6c9dc10" ], "X-Content-Type-Options": [ "nosniff" @@ -254,17 +254,17 @@ "1195" ], "x-ms-correlation-request-id": [ - "1bf62c79-8bc6-49a1-9443-0de89597f2cc" + "d037c113-e68f-4d15-8bbd-53bc3845c966" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015359Z:1bf62c79-8bc6-49a1-9443-0de89597f2cc" + "WESTUS2:20170224T193836Z:d037c113-e68f-4d15-8bbd-53bc3845c966" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-7011?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yMzY4L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNzAxMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zMTc3L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNTUyNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", "RequestHeaders": { @@ -275,17 +275,17 @@ "101" ], "x-ms-client-request-id": [ - "d8e3c8f1-b0c4-498b-ae76-77676f936b97" + "1551a22d-2f37-4d29-8192-742b08dfd0f7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-7011\",\r\n \"name\": \"firewallrulecrudtest-7011\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-5527\",\r\n \"name\": \"firewallrulecrudtest-5527\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -297,13 +297,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:54:00 GMT" + "Fri, 24 Feb 2017 19:38:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6755a391-c733-4273-b788-a45ed49c1a4e" + "21531605-8201-4cf9-a501-0241a39216df" ], "X-Content-Type-Options": [ "nosniff" @@ -321,29 +321,29 @@ "1194" ], "x-ms-correlation-request-id": [ - "f45fb94e-c346-4d53-a4af-8b3eefc431d0" + "d1494109-b541-41c1-be9b-10ba66f7a02e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015400Z:f45fb94e-c346-4d53-a4af-8b3eefc431d0" + "WESTUS2:20170224T193837Z:d1494109-b541-41c1-be9b-10ba66f7a02e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-2664?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yMzY4L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMjY2ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-8154?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zMTc3L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtODE1ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7410764c-1e23-406b-8a5a-8c53c73544b0" + "d8cc50a0-d59e-441e-8ecb-b0ebc7e9b4af" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -358,13 +358,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:54:02 GMT" + "Fri, 24 Feb 2017 19:38:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0766684e-0436-43ff-96b7-84d481455e71" + "ce10cc8e-8d9c-4e8b-bfa6-3afdf7172cf0" ], "X-Content-Type-Options": [ "nosniff" @@ -379,29 +379,29 @@ "1193" ], "x-ms-correlation-request-id": [ - "a913f257-85e1-433f-be21-40366573a573" + "93e31547-531f-4aaa-8921-c5f162168c01" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015402Z:a913f257-85e1-433f-be21-40366573a573" + "WESTUS2:20170224T193839Z:93e31547-531f-4aaa-8921-c5f162168c01" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-9660?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yMzY4L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtOTY2MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-893?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zMTc3L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtODkzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61143b02-08d2-48c8-836e-bb1bd7f2f587" + "7eb692b8-a820-4e95-931b-c1c92b37447c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -416,13 +416,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:54:03 GMT" + "Fri, 24 Feb 2017 19:38:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "80215f5f-ff52-4b65-8c7e-48aa814a062e" + "5d324e05-3957-4800-938c-b7cdbc301cf8" ], "X-Content-Type-Options": [ "nosniff" @@ -437,29 +437,29 @@ "1192" ], "x-ms-correlation-request-id": [ - "bff1db18-4590-40c3-9b19-e630764cc659" + "03ac5580-be9a-4692-a671-2cdcb70645f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015403Z:bff1db18-4590-40c3-9b19-e630764cc659" + "WESTUS2:20170224T193840Z:03ac5580-be9a-4692-a671-2cdcb70645f4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-9886/providers/Microsoft.Sql/servers/firewallrulecrudtest-2368/firewallRules/firewallrulecrudtest-7011?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0yMzY4L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNzAxMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-8411/providers/Microsoft.Sql/servers/firewallrulecrudtest-3177/firewallRules/firewallrulecrudtest-5527?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zMTc3L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNTUyNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "321b782e-92a4-4e9d-8d8c-1289f7be3f02" + "1c87deaf-1f2b-4685-9370-050872da43a7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -474,13 +474,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:54:04 GMT" + "Fri, 24 Feb 2017 19:38:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ae69e0ef-8b27-4bb5-af95-740ad5ec9030" + "2ffeb759-d066-442d-afca-063821b4e9b6" ], "X-Content-Type-Options": [ "nosniff" @@ -495,22 +495,22 @@ "1191" ], "x-ms-correlation-request-id": [ - "256adff0-f475-4be5-b4f6-8741411ea3ef" + "81d8ce95-9116-4218-b73c-a38385df62ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015405Z:256adff0-f475-4be5-b4f6-8741411ea3ef" + "WESTUS2:20170224T193841Z:81d8ce95-9116-4218-b73c-a38385df62ec" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-9886?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTk4ODY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-8411?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTg0MTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9aa9ff89-c304-40d5-8c18-f059d595c5cd" + "7bf39956-638a-4050-8b11-30d7d0c55935" ], "accept-language": [ "en-US" @@ -532,13 +532,13 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:54:06 GMT" + "Fri, 24 Feb 2017 19:38:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDk4ODYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDg0MTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -547,13 +547,13 @@ "1190" ], "x-ms-request-id": [ - "439e6539-9c9a-4e4b-83a7-e0235da0e3cd" + "fb8c1e42-9143-44f6-94cf-1038e4471a33" ], "x-ms-correlation-request-id": [ - "439e6539-9c9a-4e4b-83a7-e0235da0e3cd" + "fb8c1e42-9143-44f6-94cf-1038e4471a33" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015406Z:439e6539-9c9a-4e4b-83a7-e0235da0e3cd" + "WESTUS2:20170224T193843Z:fb8c1e42-9143-44f6-94cf-1038e4471a33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,8 +562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDk4ODYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEazRPRFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDg0MTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEZzBNVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,28 +584,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:54:36 GMT" + "Fri, 24 Feb 2017 19:39:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDk4ODYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDg0MTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14999" ], "x-ms-request-id": [ - "e2f20e14-0faf-4c22-b439-53e85db4afbb" + "0a980f43-d337-4e19-86ed-035db492f2c2" ], "x-ms-correlation-request-id": [ - "e2f20e14-0faf-4c22-b439-53e85db4afbb" + "0a980f43-d337-4e19-86ed-035db492f2c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015436Z:e2f20e14-0faf-4c22-b439-53e85db4afbb" + "WESTUS2:20170224T193913Z:0a980f43-d337-4e19-86ed-035db492f2c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -614,8 +614,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDk4ODYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEazRPRFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDg0MTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEZzBNVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -636,28 +636,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:55:06 GMT" + "Fri, 24 Feb 2017 19:39:43 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDk4ODYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDg0MTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14998" ], "x-ms-request-id": [ - "37b0362d-aeb6-4f27-89dd-22a165d82e89" + "abeba314-2bc3-44a8-9691-3d8c12481c0f" ], "x-ms-correlation-request-id": [ - "37b0362d-aeb6-4f27-89dd-22a165d82e89" + "abeba314-2bc3-44a8-9691-3d8c12481c0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015506Z:37b0362d-aeb6-4f27-89dd-22a165d82e89" + "WESTUS2:20170224T193943Z:abeba314-2bc3-44a8-9691-3d8c12481c0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,8 +666,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDk4ODYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEazRPRFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDg0MTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEZzBNVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,28 +688,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:55:36 GMT" + "Fri, 24 Feb 2017 19:40:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDk4ODYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDg0MTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14997" ], "x-ms-request-id": [ - "82af9d5e-a3b7-4780-8636-a3ccc8b343a8" + "37ffa2b7-5fd5-491b-8b93-30bede2e35a9" ], "x-ms-correlation-request-id": [ - "82af9d5e-a3b7-4780-8636-a3ccc8b343a8" + "37ffa2b7-5fd5-491b-8b93-30bede2e35a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015537Z:82af9d5e-a3b7-4780-8636-a3ccc8b343a8" + "WESTUS2:20170224T194014Z:37ffa2b7-5fd5-491b-8b93-30bede2e35a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,8 +718,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDk4ODYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEazRPRFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDg0MTEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEZzBNVEV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -740,22 +740,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:56:07 GMT" + "Fri, 24 Feb 2017 19:40:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14996" ], "x-ms-request-id": [ - "1ecc841d-a1d1-4619-8004-1912b6b4a065" + "3c70bec0-781a-421e-9d17-123a432ff288" ], "x-ms-correlation-request-id": [ - "1ecc841d-a1d1-4619-8004-1912b6b4a065" + "3c70bec0-781a-421e-9d17-123a432ff288" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015607Z:1ecc841d-a1d1-4619-8004-1912b6b4a065" + "WESTUS2:20170224T194044Z:3c70bec0-781a-421e-9d17-123a432ff288" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,15 +766,15 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "firewallrulecrudtest-9886" + "firewallrulecrudtest-8411" ], "RunTestInNewV12Server": [ - "firewallrulecrudtest-2368" + "firewallrulecrudtest-3177" ], "TestCreateAndDropFirewallRule": [ - "firewallrulecrudtest-2664", - "firewallrulecrudtest-9660", - "firewallrulecrudtest-7011" + "firewallrulecrudtest-8154", + "firewallrulecrudtest-893", + "firewallrulecrudtest-5527" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestGetAndListFirewallRule.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestGetAndListFirewallRule.json index e8b3dde84145..e2cf55a3b503 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestGetAndListFirewallRule.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.FirewallRuleCrudScenarioTests/TestGetAndListFirewallRule.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-12?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-7171?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-12\": \"2017-02-10 01:47:25Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-7171\": \"2017-02-24 19:32:28Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "106" + "108" ], "x-ms-client-request-id": [ - "23fca162-1b8f-48f8-a096-782da43ed7f8" + "287eb5c4-5227-4aba-a2e8-2bebf2e7248e" ], "accept-language": [ "en-US" @@ -23,10 +23,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12\",\r\n \"name\": \"firewallrulecrudtest-12\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-12\": \"2017-02-10 01:47:25Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171\",\r\n \"name\": \"firewallrulecrudtest-7171\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"firewallrulecrudtest-7171\": \"2017-02-24 19:32:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "260" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:47:26 GMT" + "Fri, 24 Feb 2017 19:32:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1189" ], "x-ms-request-id": [ - "a968aa57-94c2-4bf5-a735-ccea956d6652" + "189fa5d9-0db6-4c9e-b750-84870da18a1b" ], "x-ms-correlation-request-id": [ - "a968aa57-94c2-4bf5-a735-ccea956d6652" + "189fa5d9-0db6-4c9e-b750-84870da18a1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014727Z:a968aa57-94c2-4bf5-a735-ccea956d6652" + "WESTUS2:20170224T193229Z:189fa5d9-0db6-4c9e-b750-84870da18a1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "216" ], "x-ms-client-request-id": [ - "5addf639-6685-49a0-86f1-defa639399b3" + "5b96a080-a699-49bd-a20b-0fa4646f562a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285\",\r\n \"name\": \"firewallrulecrudtest-6285\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"firewallrulecrudtest-6285.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729\",\r\n \"name\": \"firewallrulecrudtest-3729\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"firewallrulecrudtest-3729.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "558" + "560" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:17 GMT" + "Fri, 24 Feb 2017 19:32:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8e4b4d4a-7859-4fb9-a22a-26a1857990d7" + "6df8c32f-1b4e-443c-93a6-96ca680c466a" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1188" ], "x-ms-correlation-request-id": [ - "99023ba7-b9e7-4976-9406-dcff1366c12c" + "ac8b2945-89c1-4e39-baee-070436ec4f57" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014817Z:99023ba7-b9e7-4976-9406-dcff1366c12c" + "WESTUS2:20170224T193256Z:ac8b2945-89c1-4e39-baee-070436ec4f57" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTIzMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-3079?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMzA3OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "RequestHeaders": { @@ -141,20 +141,20 @@ "93" ], "x-ms-client-request-id": [ - "77134569-fba2-47bd-9889-6b2ca02e50e9" + "ecd7871a-a173-4a3a-9563-07de8e58d589" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304\",\r\n \"name\": \"firewallrulecrudtest-2304\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-3079\",\r\n \"name\": \"firewallrulecrudtest-3079\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -163,13 +163,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:19 GMT" + "Fri, 24 Feb 2017 19:32:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "206f2333-955f-4743-af24-af0d967928b0" + "28a577e1-c559-409b-a90a-4d1edd012b43" ], "X-Content-Type-Options": [ "nosniff" @@ -184,20 +184,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1187" ], "x-ms-correlation-request-id": [ - "e0927681-3dfe-41b1-ac05-0ac13fc9973d" + "883af14c-ad57-4409-9ef5-3e9836de664e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014819Z:e0927681-3dfe-41b1-ac05-0ac13fc9973d" + "WESTUS2:20170224T193258Z:883af14c-ad57-4409-9ef5-3e9836de664e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM5Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-6259?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI1OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.1\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "RequestHeaders": { @@ -208,20 +208,20 @@ "93" ], "x-ms-client-request-id": [ - "88b12038-d01e-4f09-99d8-84ac7ff89edc" + "7af7266e-2a06-4ad0-80c7-f9aac5c376c8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927\",\r\n \"name\": \"firewallrulecrudtest-3927\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.1\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-6259\",\r\n \"name\": \"firewallrulecrudtest-6259\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.1\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -230,13 +230,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:21 GMT" + "Fri, 24 Feb 2017 19:32:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b888ee05-3e5f-4a85-b1f4-1140816b7c4b" + "34669bff-86d9-47ff-bbd6-8cbc1f4d992e" ], "X-Content-Type-Options": [ "nosniff" @@ -251,20 +251,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1186" ], "x-ms-correlation-request-id": [ - "91c306fe-3511-457b-9d0c-7d3d4df5d659" + "5e8c834b-0c6f-4bbb-8ceb-4f227b218701" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014821Z:91c306fe-3511-457b-9d0c-7d3d4df5d659" + "WESTUS2:20170224T193259Z:5e8c834b-0c6f-4bbb-8ceb-4f227b218701" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5767?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTU3Njc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-1197?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMTE5Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.2\"\r\n }\r\n}", "RequestHeaders": { @@ -275,20 +275,20 @@ "93" ], "x-ms-client-request-id": [ - "744d650d-1832-4584-bdaf-bc4b10c922b5" + "dea45bd0-99fc-4b09-9744-94deb59ded84" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5767\",\r\n \"name\": \"firewallrulecrudtest-5767\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-1197\",\r\n \"name\": \"firewallrulecrudtest-1197\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -297,13 +297,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:22 GMT" + "Fri, 24 Feb 2017 19:33:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b9963721-3b5e-43e5-b482-bc7d91c4b5ad" + "bcc530a0-706d-4179-80f5-71c4b0c24c44" ], "X-Content-Type-Options": [ "nosniff" @@ -318,20 +318,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1185" ], "x-ms-correlation-request-id": [ - "2aded46d-4dbd-4c97-8184-134efb74817a" + "c626ca51-6b99-4082-9868-ec578574ee5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014822Z:2aded46d-4dbd-4c97-8184-134efb74817a" + "WESTUS2:20170224T193301Z:c626ca51-6b99-4082-9868-ec578574ee5d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTUzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-257?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMjU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.3\",\r\n \"endIpAddress\": \"0.0.0.3\"\r\n }\r\n}", "RequestHeaders": { @@ -342,17 +342,17 @@ "93" ], "x-ms-client-request-id": [ - "b32e7d87-26df-48a0-a84c-b88c88de5bfd" + "fd7c62e0-d2c7-414e-9f01-bf45a5b394b3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370\",\r\n \"name\": \"firewallrulecrudtest-5370\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.3\",\r\n \"endIpAddress\": \"0.0.0.3\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-257\",\r\n \"name\": \"firewallrulecrudtest-257\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.3\",\r\n \"endIpAddress\": \"0.0.0.3\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "383" @@ -364,13 +364,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:24 GMT" + "Fri, 24 Feb 2017 19:33:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c5304efa-9d2d-4083-b196-c7015f5bb865" + "b9834254-9ee5-48a4-a928-466724dfa631" ], "X-Content-Type-Options": [ "nosniff" @@ -385,35 +385,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1184" ], "x-ms-correlation-request-id": [ - "12ed1cba-dc10-444e-a54e-d9b334060bd8" + "a7c7d1f6-bc69-412d-a324-83871d90f17d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014824Z:12ed1cba-dc10-444e-a54e-d9b334060bd8" + "WESTUS2:20170224T193302Z:a7c7d1f6-bc69-412d-a324-83871d90f17d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTIzMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-3079?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMzA3OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0801778c-b6c8-49ef-b2b3-43f878a70a87" + "9c1313ef-f20c-4eb6-91bc-347eaebb470c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304\",\r\n \"name\": \"firewallrulecrudtest-2304\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-3079\",\r\n \"name\": \"firewallrulecrudtest-3079\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -422,7 +422,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:25 GMT" + "Fri, 24 Feb 2017 19:33:02 GMT" ], "Transfer-Encoding": [ "chunked" @@ -434,7 +434,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "485624a0-13b5-4f88-8d28-0007d2d1879f" + "367a08c0-d69e-4afd-af85-d2f62040bd28" ], "X-Content-Type-Options": [ "nosniff" @@ -446,35 +446,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14990" ], "x-ms-correlation-request-id": [ - "0c3a2c7a-2ff5-4120-8d3b-e018329f7595" + "ddca722a-8d39-4244-a017-c9c036059caa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014825Z:0c3a2c7a-2ff5-4120-8d3b-e018329f7595" + "WESTUS2:20170224T193303Z:ddca722a-8d39-4244-a017-c9c036059caa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTM5Mjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-6259?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI1OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89605add-41a1-4392-9856-0502a35fd611" + "e14d42f5-f511-4d2c-a96f-94b93c3f2f52" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927\",\r\n \"name\": \"firewallrulecrudtest-3927\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.1\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-6259\",\r\n \"name\": \"firewallrulecrudtest-6259\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.1\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -483,7 +483,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:25 GMT" + "Fri, 24 Feb 2017 19:33:03 GMT" ], "Transfer-Encoding": [ "chunked" @@ -495,7 +495,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "06773bed-e55f-49de-9e9c-e81a5bc6ca25" + "8ae05e64-aa96-4ce2-b7ec-b88aad693aa6" ], "X-Content-Type-Options": [ "nosniff" @@ -507,35 +507,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14989" ], "x-ms-correlation-request-id": [ - "379e3c52-893c-41d4-9007-424a7def1fbc" + "5d4ab0de-3246-469c-8c72-80b91b862460" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014826Z:379e3c52-893c-41d4-9007-424a7def1fbc" + "WESTUS2:20170224T193304Z:5d4ab0de-3246-469c-8c72-80b91b862460" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5767?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTU3Njc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-1197?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMTE5Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cf79fbb-3ef7-4d43-bb72-2725e79f7e57" + "234759dc-68c1-4580-b6fc-8efc6ea0402d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5767\",\r\n \"name\": \"firewallrulecrudtest-5767\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-1197\",\r\n \"name\": \"firewallrulecrudtest-1197\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -544,7 +544,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:26 GMT" + "Fri, 24 Feb 2017 19:33:04 GMT" ], "Transfer-Encoding": [ "chunked" @@ -556,7 +556,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "306e15cc-a320-4e4f-a18f-b83fecdc6704" + "9c755703-a12b-4b0e-bdb7-f36a9f3f17ef" ], "X-Content-Type-Options": [ "nosniff" @@ -568,35 +568,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14988" ], "x-ms-correlation-request-id": [ - "d7bc127a-b238-46bc-b951-78bbe5cdafda" + "4c7bb8cf-fff4-4631-bc87-8464ee20042a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014826Z:d7bc127a-b238-46bc-b951-78bbe5cdafda" + "WESTUS2:20170224T193305Z:4c7bb8cf-fff4-4631-bc87-8464ee20042a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTUzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-257?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtMjU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3d80238-6399-4410-88d6-12ed80110ba3" + "4d4b8d10-0ae5-43f4-8792-93b2527f1758" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370\",\r\n \"name\": \"firewallrulecrudtest-5370\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.3\",\r\n \"endIpAddress\": \"0.0.0.3\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-257\",\r\n \"name\": \"firewallrulecrudtest-257\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.3\",\r\n \"endIpAddress\": \"0.0.0.3\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -605,7 +605,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:27 GMT" + "Fri, 24 Feb 2017 19:33:05 GMT" ], "Transfer-Encoding": [ "chunked" @@ -617,7 +617,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3c76e2b6-ab68-4085-909e-755cba98f6ca" + "cddb6ed1-413e-490b-a6c8-532f4c501623" ], "X-Content-Type-Options": [ "nosniff" @@ -629,35 +629,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14987" ], "x-ms-correlation-request-id": [ - "870dce09-52e5-4470-947b-1cee7de641fb" + "66042fcb-3eba-4344-97c6-0edcd98cd9e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014827Z:870dce09-52e5-4470-947b-1cee7de641fb" + "WESTUS2:20170224T193305Z:66042fcb-3eba-4344-97c6-0edcd98cd9e4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvZmlyZXdhbGxydWxlY3J1ZHRlc3QtNjI4NS9maXJld2FsbFJ1bGVzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9maXJld2FsbHJ1bGVjcnVkdGVzdC0zNzI5L2ZpcmV3YWxsUnVsZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88a539f2-1396-48fa-b7bb-a40fda5dda75" + "0da6c7d4-593a-4bd7-8f35-acae096070fe" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-2304\",\r\n \"name\": \"firewallrulecrudtest-2304\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-3927\",\r\n \"name\": \"firewallrulecrudtest-3927\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.1\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5370\",\r\n \"name\": \"firewallrulecrudtest-5370\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.3\",\r\n \"endIpAddress\": \"0.0.0.3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/firewallRules/firewallrulecrudtest-5767\",\r\n \"name\": \"firewallrulecrudtest-5767\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-1197\",\r\n \"name\": \"firewallrulecrudtest-1197\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.2\",\r\n \"endIpAddress\": \"0.0.0.2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-257\",\r\n \"name\": \"firewallrulecrudtest-257\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.3\",\r\n \"endIpAddress\": \"0.0.0.3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-3079\",\r\n \"name\": \"firewallrulecrudtest-3079\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"0.0.0.0\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/firewallrulecrudtest-7171/providers/Microsoft.Sql/servers/firewallrulecrudtest-3729/firewallRules/firewallrulecrudtest-6259\",\r\n \"name\": \"firewallrulecrudtest-6259\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.1\",\r\n \"endIpAddress\": \"0.0.0.1\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -666,7 +666,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:28 GMT" + "Fri, 24 Feb 2017 19:33:05 GMT" ], "Transfer-Encoding": [ "chunked" @@ -678,7 +678,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "564791e7-f325-4a63-b097-877ed7740ac0" + "9486b90c-3083-4f68-8c50-8e3c3d007728" ], "X-Content-Type-Options": [ "nosniff" @@ -690,25 +690,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14986" ], "x-ms-correlation-request-id": [ - "13ab320f-c241-44c2-a6a0-06e3bc4fd3fb" + "72422248-bd49-42d4-8b77-41437f27fc17" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014828Z:13ab320f-c241-44c2-a6a0-06e3bc4fd3fb" + "WESTUS2:20170224T193306Z:72422248-bd49-42d4-8b77-41437f27fc17" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-12?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTEyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/firewallrulecrudtest-7171?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL2ZpcmV3YWxscnVsZWNydWR0ZXN0LTcxNzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e498db03-9f41-4349-b780-fe0865e83cba" + "543e55d1-1719-4851-8831-85b4ecff8c72" ], "accept-language": [ "en-US" @@ -730,28 +730,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:29 GMT" + "Fri, 24 Feb 2017 19:33:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDEyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcxNzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1183" ], "x-ms-request-id": [ - "74781039-17c7-4720-a346-9554cd598e7e" + "58e4b9e6-f9a0-4751-b5ce-269bac261881" ], "x-ms-correlation-request-id": [ - "74781039-17c7-4720-a346-9554cd598e7e" + "58e4b9e6-f9a0-4751-b5ce-269bac261881" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014829Z:74781039-17c7-4720-a346-9554cd598e7e" + "WESTUS2:20170224T193307Z:58e4b9e6-f9a0-4751-b5ce-269bac261881" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -760,8 +760,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDEyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJERXlMVXBCVUVGT1JVRlRWQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lhbUZ3WVc1bFlYTjBJbjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcxNzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEY3hOekV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -782,28 +782,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:48:59 GMT" + "Fri, 24 Feb 2017 19:33:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDEyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcxNzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14985" ], "x-ms-request-id": [ - "e7c8982f-6ec9-4b58-9475-fba42404b32d" + "bd614037-74cc-4c74-9ad9-4d40b875a644" ], "x-ms-correlation-request-id": [ - "e7c8982f-6ec9-4b58-9475-fba42404b32d" + "bd614037-74cc-4c74-9ad9-4d40b875a644" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014859Z:e7c8982f-6ec9-4b58-9475-fba42404b32d" + "WESTUS2:20170224T193338Z:bd614037-74cc-4c74-9ad9-4d40b875a644" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -812,8 +812,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDEyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJERXlMVXBCVUVGT1JVRlRWQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lhbUZ3WVc1bFlYTjBJbjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcxNzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEY3hOekV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -834,28 +834,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:49:29 GMT" + "Fri, 24 Feb 2017 19:34:08 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDEyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcxNzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14984" ], "x-ms-request-id": [ - "e92a800e-0c8b-49e6-984f-2caef3ebd694" + "a09d7cc2-023c-40d6-8b72-c0522a27a38f" ], "x-ms-correlation-request-id": [ - "e92a800e-0c8b-49e6-984f-2caef3ebd694" + "a09d7cc2-023c-40d6-8b72-c0522a27a38f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T014930Z:e92a800e-0c8b-49e6-984f-2caef3ebd694" + "WESTUS2:20170224T193408Z:a09d7cc2-023c-40d6-8b72-c0522a27a38f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -864,8 +864,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDEyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJERXlMVXBCVUVGT1JVRlRWQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lhbUZ3WVc1bFlYTjBJbjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcxNzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEY3hOekV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -886,28 +886,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:49:59 GMT" + "Fri, 24 Feb 2017 19:34:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDEyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcxNzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14983" ], "x-ms-request-id": [ - "2cc91af0-5c3e-4357-9d79-8450f02d20f8" + "e9f8aa15-30d2-49ec-af8a-e7a4d22f7edf" ], "x-ms-correlation-request-id": [ - "2cc91af0-5c3e-4357-9d79-8450f02d20f8" + "e9f8aa15-30d2-49ec-af8a-e7a4d22f7edf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015000Z:2cc91af0-5c3e-4357-9d79-8450f02d20f8" + "WESTUS2:20170224T193438Z:e9f8aa15-30d2-49ec-af8a-e7a4d22f7edf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,8 +916,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDEyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJERXlMVXBCVUVGT1JVRlRWQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lhbUZ3WVc1bFlYTjBJbjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1GSVJFV0FMTFJVTEVDUlVEVEVTVDoyRDcxNzEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFHU1ZKRlYwRk1URkpWVEVWRFVsVkVWRVZUVkRveVJEY3hOekV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,22 +938,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 01:50:29 GMT" + "Fri, 24 Feb 2017 19:35:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14984" ], "x-ms-request-id": [ - "1c2a314d-bdfe-4e0f-8b80-554575545ea0" + "45cad733-df98-4f32-a2a1-9e9fdaf1d175" ], "x-ms-correlation-request-id": [ - "1c2a314d-bdfe-4e0f-8b80-554575545ea0" + "45cad733-df98-4f32-a2a1-9e9fdaf1d175" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T015030Z:1c2a314d-bdfe-4e0f-8b80-554575545ea0" + "WESTUS2:20170224T193508Z:45cad733-df98-4f32-a2a1-9e9fdaf1d175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -964,16 +964,16 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "firewallrulecrudtest-12" + "firewallrulecrudtest-7171" ], "RunTestInNewV12Server": [ - "firewallrulecrudtest-6285" + "firewallrulecrudtest-3729" ], "TestGetAndListFirewallRule": [ - "firewallrulecrudtest-2304", - "firewallrulecrudtest-3927", - "firewallrulecrudtest-5767", - "firewallrulecrudtest-5370" + "firewallrulecrudtest-3079", + "firewallrulecrudtest-6259", + "firewallrulecrudtest-1197", + "firewallrulecrudtest-257" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ServerCrudScenarioTests/TestCreateUpdateGetDropServer.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ServerCrudScenarioTests/TestCreateUpdateGetDropServer.json index 2bf8d0e325fe..2d82df6b2316 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ServerCrudScenarioTests/TestCreateUpdateGetDropServer.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ServerCrudScenarioTests/TestCreateUpdateGetDropServer.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-7398?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTczOTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-1481?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTE0ODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-7398\": \"2017-02-10 00:48:40Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-1481\": \"2017-02-24 22:24:01Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,7 +13,7 @@ "99" ], "x-ms-client-request-id": [ - "560dca49-63b8-4a64-b835-633ede2a77a5" + "c73cb346-5f43-498a-a65e-dfcaaacfa678" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398\",\r\n \"name\": \"sqlcrudtest-7398\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-7398\": \"2017-02-10 00:48:40Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481\",\r\n \"name\": \"sqlcrudtest-1481\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-1481\": \"2017-02-24 22:24:01Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "239" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:48:41 GMT" + "Fri, 24 Feb 2017 22:24:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "45e46ed9-8fdb-4c24-aec5-e722593b762e" + "c47ce253-f758-4a81-a64c-2862c7e16bb9" ], "x-ms-correlation-request-id": [ - "45e46ed9-8fdb-4c24-aec5-e722593b762e" + "c47ce253-f758-4a81-a64c-2862c7e16bb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004842Z:45e46ed9-8fdb-4c24-aec5-e722593b762e" + "WESTUS2:20170224T222403Z:c47ce253-f758-4a81-a64c-2862c7e16bb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTczOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NjYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-4108?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE0ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00MTA4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "216" ], "x-ms-client-request-id": [ - "650866e8-f2ed-44e6-a035-b13c54cf8ece" + "cb7e025d-cc0d-4970-ae21-05d754c4f39a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661\",\r\n \"name\": \"sqlcrudtest-6661\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6661.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-4108\",\r\n \"name\": \"sqlcrudtest-4108\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4108.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:49:16 GMT" + "Fri, 24 Feb 2017 22:24:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "773f1a2d-b448-4632-bdbb-5321cd5c9fb3" + "fd1237d2-c8a8-451e-9bd4-bfd367109eb9" ], "X-Content-Type-Options": [ "nosniff" @@ -117,20 +117,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "a0f3b60f-1587-4a0e-b53f-b6c735c4fb8a" + "a1fe0cdc-eb22-4387-b77d-6febe7ddf0d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004917Z:a0f3b60f-1587-4a0e-b53f-b6c735c4fb8a" + "WESTUS2:20170224T222436Z:a1fe0cdc-eb22-4387-b77d-6febe7ddf0d7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTczOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00NjQ1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-7668?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE0ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjY4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -141,17 +141,17 @@ "215" ], "x-ms-client-request-id": [ - "cfe63c77-a766-4fa0-b96d-387b9f6f7527" + "7ee1ca07-9294-4aad-bf50-4e42c109f769" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645\",\r\n \"name\": \"sqlcrudtest-4645\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4645.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-7668\",\r\n \"name\": \"sqlcrudtest-7668\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-7668.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -163,13 +163,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:49:49 GMT" + "Fri, 24 Feb 2017 22:25:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b957b7dc-c6da-4d71-8a4e-9bf53305c955" + "6fe83288-9c71-4fc1-9a6c-e8ec61e51b82" ], "X-Content-Type-Options": [ "nosniff" @@ -184,35 +184,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "e048af8e-f560-4b3c-8460-57a7c45fedb8" + "c09262a6-e931-4e55-8915-04208f197961" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004950Z:e048af8e-f560-4b3c-8460-57a7c45fedb8" + "WESTUS2:20170224T222501Z:c09262a6-e931-4e55-8915-04208f197961" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTczOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NjYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-4108?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE0ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00MTA4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ad4df71-9f2a-4111-8aa5-85ee86595c3c" + "a9b4a5ac-68cb-44ad-84b0-828affce7082" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661\",\r\n \"name\": \"sqlcrudtest-6661\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6661.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-4108\",\r\n \"name\": \"sqlcrudtest-4108\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4108.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -221,7 +221,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:49:49 GMT" + "Fri, 24 Feb 2017 22:25:01 GMT" ], "Transfer-Encoding": [ "chunked" @@ -233,7 +233,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a6a9f6e0-4e77-4cb2-abde-52111585b743" + "5d27ffe4-c926-4572-ac6f-00e049708894" ], "X-Content-Type-Options": [ "nosniff" @@ -245,35 +245,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14995" ], "x-ms-correlation-request-id": [ - "06b15148-e9ce-49d4-8f7c-6823fb0786c9" + "331c376c-effb-41c6-9ec2-aa2f17d553c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004950Z:06b15148-e9ce-49d4-8f7c-6823fb0786c9" + "WESTUS2:20170224T222501Z:331c376c-effb-41c6-9ec2-aa2f17d553c0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTczOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00NjQ1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-7668?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE0ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC03NjY4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45ba1ad1-883d-49ac-bf5c-5461ef8f628c" + "78365be4-6d24-40d4-93d4-5025943290e3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645\",\r\n \"name\": \"sqlcrudtest-4645\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4645.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-7668\",\r\n \"name\": \"sqlcrudtest-7668\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-7668.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -282,7 +282,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:49:49 GMT" + "Fri, 24 Feb 2017 22:25:01 GMT" ], "Transfer-Encoding": [ "chunked" @@ -294,7 +294,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5705cdc6-0b19-4e32-9a39-4d8bd6f2b3c2" + "64ee6433-0687-4074-b2cd-1ebba08caeb9" ], "X-Content-Type-Options": [ "nosniff" @@ -306,35 +306,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14994" ], "x-ms-correlation-request-id": [ - "e6b9a097-83b1-4c6f-8a73-c5d60f621bfa" + "fe366e7c-621c-45bc-9dcd-d194c978f7c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004950Z:e6b9a097-83b1-4c6f-8a73-c5d60f621bfa" + "WESTUS2:20170224T222501Z:fe366e7c-621c-45bc-9dcd-d194c978f7c7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTczOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE0ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c325d7a-2123-4bcd-aa8a-3753e08481bc" + "be5cba88-eef0-414a-a1ae-fec9c4f2ecd6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645\",\r\n \"name\": \"sqlcrudtest-4645\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4645.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661\",\r\n \"name\": \"sqlcrudtest-6661\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6661.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-4108\",\r\n \"name\": \"sqlcrudtest-4108\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4108.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-7668\",\r\n \"name\": \"sqlcrudtest-7668\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-7668.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -343,7 +343,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:49:49 GMT" + "Fri, 24 Feb 2017 22:25:01 GMT" ], "Transfer-Encoding": [ "chunked" @@ -355,7 +355,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f81f8f8e-3b58-476a-bcb7-4a4b0dfd5335" + "812fba4c-3546-4d13-9981-5539f6df02c8" ], "X-Content-Type-Options": [ "nosniff" @@ -367,35 +367,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14993" ], "x-ms-correlation-request-id": [ - "b91314ce-4ab7-4280-bace-317a7f99ef26" + "651bce2b-a511-43dc-ac9d-b4cb09ad93d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004950Z:b91314ce-4ab7-4280-bace-317a7f99ef26" + "WESTUS2:20170224T222502Z:651bce2b-a511-43dc-ac9d-b4cb09ad93d3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTczOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE0ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39589c18-0d09-4e9d-bdd2-552bb5640e0d" + "5b4426a4-e500-484c-ad78-ac5bf05c26b8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645\",\r\n \"name\": \"sqlcrudtest-4645\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4645.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-7668\",\r\n \"name\": \"sqlcrudtest-7668\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-7668.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -404,7 +404,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:49:52 GMT" + "Fri, 24 Feb 2017 22:25:10 GMT" ], "Transfer-Encoding": [ "chunked" @@ -416,7 +416,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "67d67f34-3759-4171-8b61-8b584c010425" + "77abbf86-c509-4d1c-be6d-97c676e6ae95" ], "X-Content-Type-Options": [ "nosniff" @@ -428,32 +428,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14992" ], "x-ms-correlation-request-id": [ - "d5a2289c-b272-4a5a-8c2a-72692f4c4728" + "b202df87-79b1-4e60-b7cd-16b3141668c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004953Z:d5a2289c-b272-4a5a-8c2a-72692f4c4728" + "WESTUS2:20170224T222511Z:b202df87-79b1-4e60-b7cd-16b3141668c7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTczOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02NjYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1481/providers/Microsoft.Sql/servers/sqlcrudtest-4108?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE0ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00MTA4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4243691-5ec6-4328-abfd-08e0b0bb8e03" + "3885b921-74d7-43d2-9892-ff827f3a0edf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -468,13 +468,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:49:52 GMT" + "Fri, 24 Feb 2017 22:25:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bd532d0c-1b62-4253-9291-d71d50838f9e" + "4a589d3b-f7c8-4db8-8adc-dc1910795f55" ], "X-Content-Type-Options": [ "nosniff" @@ -486,25 +486,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "3ebb0af2-f90d-42b8-a8eb-6b6029230124" + "d86f7da0-704e-4606-b1c0-82e793a5d198" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004953Z:3ebb0af2-f90d-42b8-a8eb-6b6029230124" + "WESTUS2:20170224T222504Z:d86f7da0-704e-4606-b1c0-82e793a5d198" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-7398?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTczOTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-1481?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTE0ODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8d50346-dc12-4ebc-a33c-c1abc60d0edb" + "14719cf5-d683-43ca-82a3-9489dfb7fb4c" ], "accept-language": [ "en-US" @@ -526,28 +526,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:49:53 GMT" + "Fri, 24 Feb 2017 22:25:18 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDczOTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE0ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "3805b9b6-a99e-42a3-b338-689a3489e062" + "bd3c1b6f-9a7f-47f8-a82f-e25e862ad62a" ], "x-ms-correlation-request-id": [ - "3805b9b6-a99e-42a3-b338-689a3489e062" + "bd3c1b6f-9a7f-47f8-a82f-e25e862ad62a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004954Z:3805b9b6-a99e-42a3-b338-689a3489e062" + "WESTUS2:20170224T222519Z:bd3c1b6f-9a7f-47f8-a82f-e25e862ad62a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDczOTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEY3pPVGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE0ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJERTBPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -578,28 +578,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:50:24 GMT" + "Fri, 24 Feb 2017 22:25:49 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDczOTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE0ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14989" ], "x-ms-request-id": [ - "85687492-a766-4322-8f31-a4d7dc359b77" + "6ea807f2-91a1-41cb-94b2-5d1b1a1d8df6" ], "x-ms-correlation-request-id": [ - "85687492-a766-4322-8f31-a4d7dc359b77" + "6ea807f2-91a1-41cb-94b2-5d1b1a1d8df6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005024Z:85687492-a766-4322-8f31-a4d7dc359b77" + "CENTRALUS:20170224T222550Z:6ea807f2-91a1-41cb-94b2-5d1b1a1d8df6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,8 +608,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDczOTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEY3pPVGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE0ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJERTBPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,28 +630,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:50:54 GMT" + "Fri, 24 Feb 2017 22:26:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDczOTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE0ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14988" ], "x-ms-request-id": [ - "b4ff9f3e-3973-4e66-98fc-4d3257018b46" + "6c4d4a5e-a4f1-4f66-ad18-a80a6b345877" ], "x-ms-correlation-request-id": [ - "b4ff9f3e-3973-4e66-98fc-4d3257018b46" + "6c4d4a5e-a4f1-4f66-ad18-a80a6b345877" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005055Z:b4ff9f3e-3973-4e66-98fc-4d3257018b46" + "CENTRALUS:20170224T222620Z:6c4d4a5e-a4f1-4f66-ad18-a80a6b345877" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -660,8 +660,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDczOTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEY3pPVGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE0ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJERTBPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -682,28 +682,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:51:24 GMT" + "Fri, 24 Feb 2017 22:26:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDczOTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE0ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14987" ], "x-ms-request-id": [ - "e1ad6ee4-be22-4ffd-8ead-c62bbdd65d72" + "796f3903-4664-4e38-b26e-52c01780dc9e" ], "x-ms-correlation-request-id": [ - "e1ad6ee4-be22-4ffd-8ead-c62bbdd65d72" + "796f3903-4664-4e38-b26e-52c01780dc9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005125Z:e1ad6ee4-be22-4ffd-8ead-c62bbdd65d72" + "CENTRALUS:20170224T222650Z:796f3903-4664-4e38-b26e-52c01780dc9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -712,8 +712,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDczOTgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEY3pPVGd0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE0ODEtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJERTBPREV0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,22 +734,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:51:54 GMT" + "Fri, 24 Feb 2017 22:27:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14986" ], "x-ms-request-id": [ - "e99ca574-9701-424e-ba9a-a031fa1e9096" + "1eb07b52-96b8-48fd-be2c-42f3478bd653" ], "x-ms-correlation-request-id": [ - "e99ca574-9701-424e-ba9a-a031fa1e9096" + "1eb07b52-96b8-48fd-be2c-42f3478bd653" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T005155Z:e99ca574-9701-424e-ba9a-a031fa1e9096" + "CENTRALUS:20170224T222721Z:1eb07b52-96b8-48fd-be2c-42f3478bd653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -760,11 +760,11 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-7398" + "sqlcrudtest-1481" ], "TestCreateUpdateGetDropServer": [ - "sqlcrudtest-6661", - "sqlcrudtest-4645" + "sqlcrudtest-4108", + "sqlcrudtest-7668" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.UsageScenarioTests/TestCreate.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.UsageScenarioTests/TestGetUsageData.json similarity index 66% rename from src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.UsageScenarioTests/TestCreate.json rename to src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.UsageScenarioTests/TestGetUsageData.json index c72638eb3475..f4625ca85e04 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.UsageScenarioTests/TestCreate.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.UsageScenarioTests/TestGetUsageData.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6730?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY3MzA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-209?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTIwOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-6730\": \"2017-02-10 00:44:54Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-209\": \"2017-02-24 19:40:47Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "98" ], "x-ms-client-request-id": [ - "c8fcd1d6-938c-4627-aa82-ebb4f61190f9" + "68ad1ec4-fffb-4fbe-bd7a-6abd4edd7316" ], "accept-language": [ "en-US" @@ -23,10 +23,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730\",\r\n \"name\": \"sqlcrudtest-6730\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-6730\": \"2017-02-10 00:44:54Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209\",\r\n \"name\": \"sqlcrudtest-209\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-209\": \"2017-02-24 19:40:47Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "239" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:44:55 GMT" + "Fri, 24 Feb 2017 19:40:48 GMT" ], "Pragma": [ "no-cache" @@ -47,13 +47,13 @@ "1199" ], "x-ms-request-id": [ - "bec7e196-7930-4698-a472-85c94581e31b" + "f5d4da8a-3175-4a40-9f6d-74356cd54bde" ], "x-ms-correlation-request-id": [ - "bec7e196-7930-4698-a472-85c94581e31b" + "f5d4da8a-3175-4a40-9f6d-74356cd54bde" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004456Z:bec7e196-7930-4698-a472-85c94581e31b" + "WESTUS2:20170224T194049Z:f5d4da8a-3175-4a40-9f6d-74356cd54bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MDA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM3NDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", "RequestHeaders": { @@ -74,20 +74,20 @@ "216" ], "x-ms-client-request-id": [ - "ec433868-e9a9-4013-97d3-25158dbab2b9" + "7179d1a0-1616-4d02-99e3-f2abd4a57ce0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007\",\r\n \"name\": \"sqlcrudtest-9007\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-9007.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747\",\r\n \"name\": \"sqlcrudtest-3747\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3747.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "524" + "523" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -96,13 +96,13 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:45:28 GMT" + "Fri, 24 Feb 2017 19:41:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d9b24f66-8ada-41cb-81af-ffc3a7e51564" + "5bbbbc7d-94b5-41b1-89b5-245f59bcf27d" ], "X-Content-Type-Options": [ "nosniff" @@ -120,32 +120,32 @@ "1198" ], "x-ms-correlation-request-id": [ - "f2fc05c9-dcc9-4680-aad0-05f9de5c2acd" + "9e137172-d480-4f1f-bb8d-f20f11f9e422" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004528Z:f2fc05c9-dcc9-4680-aad0-05f9de5c2acd" + "WESTUS2:20170224T194122Z:9e137172-d480-4f1f-bb8d-f20f11f9e422" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/usages?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MDA3L3VzYWdlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/usages?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM3NDcvdXNhZ2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d092060-045d-45f2-835a-85b55a776dce" + "12a89344-7280-4e57-a409-ab8ad3debe1f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"server_dtu_quota\",\r\n \"resourceName\": \"sqlcrudtest-9007\",\r\n \"displayName\": \"Database Throughput Unit Quota\",\r\n \"currentValue\": 0.0,\r\n \"limit\": 45000.0,\r\n \"unit\": \"DTUs\",\r\n \"nextResetTime\": null\r\n },\r\n {\r\n \"name\": \"server_dtu_quota_current\",\r\n \"resourceName\": \"sqlcrudtest-9007\",\r\n \"displayName\": \"Database Throughput Unit Quota\",\r\n \"currentValue\": 0.0,\r\n \"limit\": 45000.0,\r\n \"unit\": \"DTUs\",\r\n \"nextResetTime\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"server_dtu_quota\",\r\n \"resourceName\": \"sqlcrudtest-3747\",\r\n \"displayName\": \"Database Throughput Unit Quota\",\r\n \"currentValue\": 0.0,\r\n \"limit\": 45000.0,\r\n \"unit\": \"DTUs\",\r\n \"nextResetTime\": null\r\n },\r\n {\r\n \"name\": \"server_dtu_quota_current\",\r\n \"resourceName\": \"sqlcrudtest-3747\",\r\n \"displayName\": \"Database Throughput Unit Quota\",\r\n \"currentValue\": 0.0,\r\n \"limit\": 45000.0,\r\n \"unit\": \"DTUs\",\r\n \"nextResetTime\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -154,7 +154,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:45:29 GMT" + "Fri, 24 Feb 2017 19:41:23 GMT" ], "Transfer-Encoding": [ "chunked" @@ -166,7 +166,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "feb2296f-fa57-4a18-968a-e1e0d471003b" + "699b76e9-a6e8-4577-804a-4d72c1078a37" ], "X-Content-Type-Options": [ "nosniff" @@ -178,20 +178,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14997" ], "x-ms-correlation-request-id": [ - "f778291a-1f40-4713-b1c3-039b2a5778e8" + "d20406bc-2f6c-47d1-9ebb-53d747766cf4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004529Z:f778291a-1f40-4713-b1c3-039b2a5778e8" + "WESTUS2:20170224T194123Z:d20406bc-2f6c-47d1-9ebb-53d747766cf4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MDA3L2RhdGFiYXNlcy8zNDgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM3NDcvZGF0YWJhc2VzLzUxNjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "RequestHeaders": { @@ -202,17 +202,17 @@ "32" ], "x-ms-client-request-id": [ - "d0335d98-ec21-4299-9887-82f458985e3a" + "d3831792-bc72-4325-a9b3-1c90cf12118e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-09T16:45:33.087-08:00\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-02-24T11:41:26.85-08:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "80" @@ -224,10 +224,10 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:45:30 GMT" + "Fri, 24 Feb 2017 19:41:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/operationResults/0eabe37a-ba23-4244-878c-1d3193b0609f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162/operationResults/4a0cffc8-8e90-4be3-a17b-3c4bf713e780?api-version=2014-04-01-Preview" ], "Retry-After": [ "30" @@ -236,7 +236,7 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0eabe37a-ba23-4244-878c-1d3193b0609f" + "4a0cffc8-8e90-4be3-a17b-3c4bf713e780" ], "X-Content-Type-Options": [ "nosniff" @@ -251,32 +251,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/azureAsyncOperation/0eabe37a-ba23-4244-878c-1d3193b0609f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162/azureAsyncOperation/4a0cffc8-8e90-4be3-a17b-3c4bf713e780?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "fcd63b32-f99f-4acd-b5d2-e3aea4c7e0c0" + "885a678e-5473-480d-8bc1-42fe7ff713df" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004531Z:fcd63b32-f99f-4acd-b5d2-e3aea4c7e0c0" + "WESTUS2:20170224T194125Z:885a678e-5473-480d-8bc1-42fe7ff713df" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/azureAsyncOperation/0eabe37a-ba23-4244-878c-1d3193b0609f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MDA3L2RhdGFiYXNlcy8zNDgxL2F6dXJlQXN5bmNPcGVyYXRpb24vMGVhYmUzN2EtYmEyMy00MjQ0LTg3OGMtMWQzMTkzYjA2MDlmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162/azureAsyncOperation/4a0cffc8-8e90-4be3-a17b-3c4bf713e780?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM3NDcvZGF0YWJhc2VzLzUxNjIvYXp1cmVBc3luY09wZXJhdGlvbi80YTBjZmZjOC04ZTkwLTRiZTMtYTE3Yi0zYzRiZjcxM2U3ODA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0eabe37a-ba23-4244-878c-1d3193b0609f\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4a0cffc8-8e90-4be3-a17b-3c4bf713e780\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -285,7 +285,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:46:02 GMT" + "Fri, 24 Feb 2017 19:41:55 GMT" ], "Transfer-Encoding": [ "chunked" @@ -297,7 +297,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f478c935-3267-49bf-8dce-441f917989f2" + "d3dcde47-f558-4fe8-9138-a382f284cbbf" ], "X-Content-Type-Options": [ "nosniff" @@ -309,32 +309,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/azureAsyncOperation/0eabe37a-ba23-4244-878c-1d3193b0609f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162/azureAsyncOperation/4a0cffc8-8e90-4be3-a17b-3c4bf713e780?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14996" ], "x-ms-correlation-request-id": [ - "d151f158-e086-4351-9eee-58610e875963" + "dac1300c-b0c2-414f-bb63-cdeab5085557" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004602Z:d151f158-e086-4351-9eee-58610e875963" + "WESTUS2:20170224T194156Z:dac1300c-b0c2-414f-bb63-cdeab5085557" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/azureAsyncOperation/0eabe37a-ba23-4244-878c-1d3193b0609f?api-version=2014-04-01-Preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MDA3L2RhdGFiYXNlcy8zNDgxL2F6dXJlQXN5bmNPcGVyYXRpb24vMGVhYmUzN2EtYmEyMy00MjQ0LTg3OGMtMWQzMTkzYjA2MDlmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162/azureAsyncOperation/4a0cffc8-8e90-4be3-a17b-3c4bf713e780?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM3NDcvZGF0YWJhc2VzLzUxNjIvYXp1cmVBc3luY09wZXJhdGlvbi80YTBjZmZjOC04ZTkwLTRiZTMtYTE3Yi0zYzRiZjcxM2U3ODA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0eabe37a-ba23-4244-878c-1d3193b0609f\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4a0cffc8-8e90-4be3-a17b-3c4bf713e780\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -343,7 +343,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:46:33 GMT" + "Fri, 24 Feb 2017 19:42:26 GMT" ], "Transfer-Encoding": [ "chunked" @@ -355,7 +355,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "151f7179-e6c4-47d8-aadb-b95bf13d3c1e" + "025e3ae0-f56c-4a2f-90f1-b62d3617183d" ], "X-Content-Type-Options": [ "nosniff" @@ -367,32 +367,32 @@ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/azureAsyncOperation/0eabe37a-ba23-4244-878c-1d3193b0609f?api-version=2014-04-01-Preview" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162/azureAsyncOperation/4a0cffc8-8e90-4be3-a17b-3c4bf713e780?api-version=2014-04-01-Preview" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14995" ], "x-ms-correlation-request-id": [ - "18fd8b02-5588-431e-b908-1dcb1567ce56" + "137fcd6e-6fa7-4359-94fe-7dcf18b5ecb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004633Z:18fd8b02-5588-431e-b908-1dcb1567ce56" + "WESTUS2:20170224T194226Z:137fcd6e-6fa7-4359-94fe-7dcf18b5ecb5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MDA3L2RhdGFiYXNlcy8zNDgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM3NDcvZGF0YWJhc2VzLzUxNjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481\",\r\n \"name\": \"3481\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"89940663-8b75-46f2-bfd6-72b12314468a\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-10T00:45:33.68Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-10T00:56:14.417Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162\",\r\n \"name\": \"5162\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"446097c9-a5eb-4deb-ba76-f20cf5fd691b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-02-24T19:41:27.117Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-02-24T19:52:05.457Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -401,7 +401,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:46:33 GMT" + "Fri, 24 Feb 2017 19:42:27 GMT" ], "Transfer-Encoding": [ "chunked" @@ -413,7 +413,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d51d3cd0-9160-41a0-b252-f20d348f6b5a" + "f391b9b5-9367-43bd-9043-b8f74107b084" ], "X-Content-Type-Options": [ "nosniff" @@ -425,35 +425,35 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14994" ], "x-ms-correlation-request-id": [ - "f6530824-4255-4219-beb4-5a28b2510211" + "34a7803e-d959-437f-b05a-677746f91016" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004634Z:f6530824-4255-4219-beb4-5a28b2510211" + "WESTUS2:20170224T194227Z:34a7803e-d959-437f-b05a-677746f91016" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/databases/3481/usages?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC05MDA3L2RhdGFiYXNlcy8zNDgxL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-209/providers/Microsoft.Sql/servers/sqlcrudtest-3747/databases/5162/usages?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTM3NDcvZGF0YWJhc2VzLzUxNjIvdXNhZ2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce579a8f-8ce2-4b90-8b00-623b2472ebf6" + "d3532d24-95b7-4f88-bffb-6ecd98ea92c9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"database_size\",\r\n \"resourceName\": \"3481\",\r\n \"displayName\": \"Database Size\",\r\n \"currentValue\": 4194304.0,\r\n \"limit\": 268435456000.0,\r\n \"unit\": \"Bytes\",\r\n \"nextResetTime\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"database_size\",\r\n \"resourceName\": \"5162\",\r\n \"displayName\": \"Database Size\",\r\n \"currentValue\": 4194304.0,\r\n \"limit\": 268435456000.0,\r\n \"unit\": \"Bytes\",\r\n \"nextResetTime\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -462,7 +462,7 @@ "no-store, no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:46:34 GMT" + "Fri, 24 Feb 2017 19:42:28 GMT" ], "Transfer-Encoding": [ "chunked" @@ -474,7 +474,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "08072162-ae84-478a-aa44-4b9b79ad0467" + "e22d54e2-0282-4c5d-b26e-b66f02ea2e76" ], "X-Content-Type-Options": [ "nosniff" @@ -486,25 +486,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14993" ], "x-ms-correlation-request-id": [ - "56351cfd-d044-47ff-abb0-566a41836981" + "b144daf8-f93a-49f5-8e5c-f645c7334eed" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004634Z:56351cfd-d044-47ff-abb0-566a41836981" + "WESTUS2:20170224T194228Z:b144daf8-f93a-49f5-8e5c-f645c7334eed" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-6730?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY3MzA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-209?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTIwOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de078add-4127-44a2-92af-23ad22b25a84" + "fdc6d90a-cc76-468c-ba15-1269d24fecdc" ], "accept-language": [ "en-US" @@ -526,13 +526,13 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:46:36 GMT" + "Fri, 24 Feb 2017 19:42:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3MzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIwOS1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -541,13 +541,13 @@ "1196" ], "x-ms-request-id": [ - "93042351-aa79-4e76-a7b6-44a1ba785499" + "d1e2147b-92c7-44c5-b2bc-5662af12dd07" ], "x-ms-correlation-request-id": [ - "93042351-aa79-4e76-a7b6-44a1ba785499" + "d1e2147b-92c7-44c5-b2bc-5662af12dd07" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004637Z:93042351-aa79-4e76-a7b6-44a1ba785499" + "WESTUS2:20170224T194230Z:d1e2147b-92c7-44c5-b2bc-5662af12dd07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3MzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTNNekF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIwOS1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXdPUzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -578,28 +578,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:47:06 GMT" + "Fri, 24 Feb 2017 19:43:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3MzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIwOS1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14992" ], "x-ms-request-id": [ - "8cd409c2-7784-4d3e-a593-d503c29ecb29" + "7150d289-b07f-4c4e-b53a-8a9803535f65" ], "x-ms-correlation-request-id": [ - "8cd409c2-7784-4d3e-a593-d503c29ecb29" + "7150d289-b07f-4c4e-b53a-8a9803535f65" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004707Z:8cd409c2-7784-4d3e-a593-d503c29ecb29" + "WESTUS2:20170224T194300Z:7150d289-b07f-4c4e-b53a-8a9803535f65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,8 +608,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3MzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTNNekF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIwOS1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXdPUzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,28 +630,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:47:37 GMT" + "Fri, 24 Feb 2017 19:43:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3MzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIwOS1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14991" ], "x-ms-request-id": [ - "20180be0-cac1-4f80-8a6f-d2aa6b4e6e29" + "b4d4c0f3-091e-4998-b7e9-4d42487e6044" ], "x-ms-correlation-request-id": [ - "20180be0-cac1-4f80-8a6f-d2aa6b4e6e29" + "b4d4c0f3-091e-4998-b7e9-4d42487e6044" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004737Z:20180be0-cac1-4f80-8a6f-d2aa6b4e6e29" + "WESTUS2:20170224T194331Z:b4d4c0f3-091e-4998-b7e9-4d42487e6044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -660,8 +660,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3MzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTNNekF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIwOS1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXdPUzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -682,28 +682,28 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:48:07 GMT" + "Fri, 24 Feb 2017 19:44:01 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3MzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIwOS1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14990" ], "x-ms-request-id": [ - "254aaab5-d24e-41e6-94e1-fdb22571c2d9" + "cde2a746-5e1a-4834-b407-625d12cca226" ], "x-ms-correlation-request-id": [ - "254aaab5-d24e-41e6-94e1-fdb22571c2d9" + "cde2a746-5e1a-4834-b407-625d12cca226" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004807Z:254aaab5-d24e-41e6-94e1-fdb22571c2d9" + "WESTUS2:20170224T194401Z:cde2a746-5e1a-4834-b407-625d12cca226" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -712,8 +712,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY3MzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEWTNNekF0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIwOS1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXdPUzFLUVZCQlRrVkJVMVFpTENKcWIySk1iMk5oZEdsdmJpSTZJbXBoY0dGdVpXRnpkQ0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,22 +734,22 @@ "no-cache" ], "Date": [ - "Fri, 10 Feb 2017 00:48:37 GMT" + "Fri, 24 Feb 2017 19:44:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14989" ], "x-ms-request-id": [ - "bf02c9a7-77d3-4bc2-9576-b5d37b85633c" + "d909f10c-749e-4abc-a190-862f6b0c147d" ], "x-ms-correlation-request-id": [ - "bf02c9a7-77d3-4bc2-9576-b5d37b85633c" + "d909f10c-749e-4abc-a190-862f6b0c147d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170210T004838Z:bf02c9a7-77d3-4bc2-9576-b5d37b85633c" + "WESTUS2:20170224T194431Z:d909f10c-749e-4abc-a190-862f6b0c147d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -760,13 +760,13 @@ ], "Names": { "RunTestInNewResourceGroup": [ - "sqlcrudtest-6730" + "sqlcrudtest-209" ], "RunTestInNewV12Server": [ - "sqlcrudtest-9007" + "sqlcrudtest-3747" ], "TestGetUsageData": [ - "3481" + "5162" ] }, "Variables": { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/UsageScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/UsageScenarioTests.cs index 759c5e74a55d..5fcd750bcefc 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/UsageScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/UsageScenarioTests.cs @@ -18,7 +18,7 @@ public void TestGetUsageData() { string testPrefix = "sqlcrudtest-"; string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestCreate", testPrefix, (resClient, sqlClient, resourceGroup, server) => + SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestGetUsageData", testPrefix, (resClient, sqlClient, resourceGroup, server) => { // Get server metrics IEnumerable serverMetrics = sqlClient.Servers.ListUsages(resourceGroup.Name, server.Name); From 1b6bbcb3af9d18cea65bc2251e864eb7b9912891 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Mon, 27 Feb 2017 22:49:02 -0800 Subject: [PATCH 050/137] Adjusting properties. Allowing non-autorest libraries are preserved --- build.proj | 4 ++-- .../FilterOutAutoRestLibraries.cs | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/build.proj b/build.proj index 6eacb58915f8..099417bc79e1 100644 --- a/build.proj +++ b/build.proj @@ -125,12 +125,12 @@ - + - + diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs index 1dda774483df..d0c16b437b7c 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs @@ -77,6 +77,10 @@ public override bool Execute() SdkNuGetPackage.Add(nProj); } } + else + { + SdkNuGetPackage = SdkNugetPackageInput.ToList(); + } foreach (ITaskItem solution in AllLibraries) { From 1e11e87ac37e175d1b575a68083acddedea694af Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Tue, 28 Feb 2017 00:32:36 -0800 Subject: [PATCH 051/137] Picking all nonAutoRest library projects --- build.proj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.proj b/build.proj index 099417bc79e1..a749608acc2f 100644 --- a/build.proj +++ b/build.proj @@ -65,7 +65,7 @@ - + From 05240e2702f9722481edf09f5b0bf4b663c25488 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Tue, 28 Feb 2017 01:00:57 -0800 Subject: [PATCH 052/137] Making sure nonAutoRest library nuget spec are available when package names are provided --- tools/nuget.targets | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/nuget.targets b/tools/nuget.targets index fc87e9845895..877c3240bc0a 100644 --- a/tools/nuget.targets +++ b/tools/nuget.targets @@ -75,6 +75,7 @@ + @@ -82,7 +83,7 @@ Build NuGet packages --> - + Date: Sun, 26 Feb 2017 18:40:52 -0800 Subject: [PATCH 053/137] Ability to publish netCore packages when package names are provided without scope. Helps in publishing packages from multiple scopes. Added tests for publishing packages. Disabling publishing nuget packages for the entire repo if scope or package name is not specifiied Picking all nonAutoRest library projects Making sure nonAutoRest library nuget spec are available when package names are provided --- build.proj | 22 ++++- .../PublishNugetPackageTests.proj | 98 +++++++++++++++---- .../DebugTask.cs | 2 +- .../FilterOutAutoRestLibraries.cs | 27 ++++- tools/nuget.targets | 5 +- 5 files changed, 124 insertions(+), 30 deletions(-) diff --git a/build.proj b/build.proj index e8dbdb2ea67f..a749608acc2f 100644 --- a/build.proj +++ b/build.proj @@ -65,7 +65,7 @@ - + @@ -121,19 +121,31 @@ - + + + + - + + + - + + + + + + + - + diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/Build.Tasks.Tests/PublishNugetPackageTests.proj b/tools/Microsoft.WindowsAzure.Build.Tasks/Build.Tasks.Tests/PublishNugetPackageTests.proj index 0863cb32e779..c662f2e6d223 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/Build.Tasks.Tests/PublishNugetPackageTests.proj +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/Build.Tasks.Tests/PublishNugetPackageTests.proj @@ -24,7 +24,26 @@ - + + + + + + + + + + + + + + + + + + + MultiProjectMultiSln @@ -56,26 +75,36 @@ - - - - - - - - - - - - - - - - - - - + + + + + + RP1_MgmtPlane + + + + + + + + + + RP1_MgmtPlane NetCoreTestPublish + + + + + + + + MultiProjectSingleSln + RP1_MgmtPlane NetCoreTestPublish + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/DebugTask.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/DebugTask.cs index 36729e3cd657..a3494ed3c2e8 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/DebugTask.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/DebugTask.cs @@ -17,7 +17,7 @@ public class DebugTask : Microsoft.Build.Utilities.Task /// /// Default timeout /// - const int DEFAULT_TASK_TIMEOUT = 20000; + const int DEFAULT_TASK_TIMEOUT = 30000; /// /// Task Timeout diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs index f9cde92f1180..d0c16b437b7c 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs @@ -12,6 +12,9 @@ namespace Microsoft.WindowsAzure.Build.Tasks { public class FilterOutAutoRestLibraries : Task { + [Required] + public ITaskItem[] SdkNugetPackageInput { get; set; } + [Required] public ITaskItem[] AllLibraries { get; set; } @@ -37,6 +40,9 @@ public class FilterOutAutoRestLibraries : Task [Output] public ITaskItem[] NetCore_AutoRestLibraries { get; private set; } + [Output] + public ITaskItem[] SdkNuGetPackageOutput { get; private set; } + public override bool Execute() { System.Text.StringBuilder sb = new System.Text.StringBuilder(); @@ -50,15 +56,32 @@ public override bool Execute() var nonNetCoreAutoRestLibraries = new List(); var netCoreAutoRestLibraries = new List(); var netCoreLibraryTestOnes = new List(); + var SdkNuGetPackage = new List(); var others = new List(); List nPkgsList = null; + List sdkItemSpec = (from item in SdkNugetPackageInput select item.ItemSpec).ToList(); if (!string.IsNullOrWhiteSpace(NugetPackagesToPublish)) { nPkgsList = NugetPackagesToPublish.Split(new char[] { ' ', '\t' }, StringSplitOptions.RemoveEmptyEntries).ToList(); } + if(nPkgsList != null) + { + List common = nPkgsList.Intersect(sdkItemSpec).ToList(); + foreach(string projName in common) + { + ITaskItem nProj = SdkNugetPackageInput.Where((item) => item.ItemSpec.Equals(projName, StringComparison.OrdinalIgnoreCase)).First(); + if (nProj != null) + SdkNuGetPackage.Add(nProj); + } + } + else + { + SdkNuGetPackage = SdkNugetPackageInput.ToList(); + } + foreach (ITaskItem solution in AllLibraries) { bool isAutoRestLibrary = false; @@ -169,10 +192,12 @@ public override bool Execute() Log.LogMessage(MessageImportance.High, "We have found {0} non netcore autorest libraries.", nonNetCoreAutoRestLibraries.Count); Log.LogMessage(MessageImportance.High, "We have found {0} netcore autorest libraries.", netCoreAutoRestLibraries.Count); - Log.LogMessage(MessageImportance.High, "we have found {0} Non autorest libraries.", others.Count); + Log.LogMessage(MessageImportance.High, "We have found {0} Non autorest libraries.", others.Count); + Log.LogMessage(MessageImportance.High, "We have found {0} SdkNuget Packages.", SdkNuGetPackage.Count); Non_NetCore_AutoRestLibraries = nonNetCoreAutoRestLibraries.ToArray(); NetCore_AutoRestLibraries = netCoreAutoRestLibraries.ToArray(); NonAutoRestLibraries = others.ToArray(); + SdkNuGetPackageOutput = SdkNuGetPackage.ToArray(); return true; } } diff --git a/tools/nuget.targets b/tools/nuget.targets index b593d1ebe026..877c3240bc0a 100644 --- a/tools/nuget.targets +++ b/tools/nuget.targets @@ -75,6 +75,7 @@ + @@ -82,7 +83,7 @@ Build NuGet packages --> - + - + From b36c40b00cd43b89cafc0f798dc4bc7a509c3e31 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Tue, 28 Feb 2017 02:43:48 -0800 Subject: [PATCH 054/137] Restoring from root for scope, package --- build.proj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.proj b/build.proj index a749608acc2f..9adeb2098291 100644 --- a/build.proj +++ b/build.proj @@ -172,7 +172,7 @@ - + From 1b2d718aae59f4aef5ea4176c4a973156e3e81a9 Mon Sep 17 00:00:00 2001 From: ziyuanms Date: Tue, 28 Feb 2017 10:08:32 -0800 Subject: [PATCH 055/137] Update comment about storage account of Analysis Services BackupConfiguration to use full resource id instead Update comment about storage account of Analysis Services BackupConfiguration to use full resource id instead --- .../Generated/Models/BackupConfiguration.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/Generated/Models/BackupConfiguration.cs b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/Generated/Models/BackupConfiguration.cs index 01b5454f1a85..8b6933e61bb6 100644 --- a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/Generated/Models/BackupConfiguration.cs +++ b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/Generated/Models/BackupConfiguration.cs @@ -23,9 +23,8 @@ public BackupConfiguration() { } /// /// Initializes a new instance of the BackupConfiguration class. /// - /// The name of storage account for - /// backup configuration. It is in the format of 'Resource Group - /// Name/Storage Account Name' + /// Storage account full resource id for + /// backup configuration /// The name of blob container for backup /// configuration /// The access key of storage account used for @@ -38,8 +37,8 @@ public BackupConfiguration() { } } /// - /// Gets or sets the name of storage account for backup configuration. - /// It is in the format of 'Resource Group Name/Storage Account Name' + /// Gets or sets storage account full resource id for backup + /// configuration /// [Newtonsoft.Json.JsonProperty(PropertyName = "storageAccount")] public string StorageAccount { get; set; } From 2ceb7e8c044b1b9aac33ddd4bbbdfeec7b8ccfb0 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Tue, 28 Feb 2017 18:16:51 -0800 Subject: [PATCH 056/137] Update for IotHub --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 40 ++++++++++--------- 2 files changed, 22 insertions(+), 20 deletions(-) diff --git a/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/Properties/AssemblyInfo.cs b/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/Properties/AssemblyInfo.cs index 0f7d8ab81aa4..b50164cff784 100644 --- a/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/Properties/AssemblyInfo.cs @@ -15,4 +15,4 @@ [assembly: AssemblyCulture("")] [assembly: NeutralResourcesLanguage("en")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] diff --git a/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json b/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json index e436986b5b12..7f162ef49e90 100644 --- a/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json +++ b/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0", + "version": "1.1.0", "title": "Microsoft Azure IotHub Management", "description": "Provides management capabilities for Microsoft Azure IotHub.", "authors": [ "Microsoft" ], @@ -7,10 +7,10 @@ "packOptions": { "summary": "Provides management capabilities for Microsoft Azure IotHub.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure IotHub", "IotHub management", "IotHub", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure IotHub", "IotHub management", "IotHub", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -19,41 +19,43 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, - "dependencies": { + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "buildOptions": { "define": [ "PORTABLE" ] }, "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } From 359d324a7f4598256e2f5f7261c9670e21f2d43b Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Tue, 28 Feb 2017 22:27:54 -0800 Subject: [PATCH 057/137] Updates for RecoveryServices, RecoveryBackup, RedisCache, Resource --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 22 +++++----- .../project.json | 22 +++++----- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 20 +++++---- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 42 ++++++++++--------- 7 files changed, 61 insertions(+), 51 deletions(-) diff --git a/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/Properties/AssemblyInfo.cs b/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/Properties/AssemblyInfo.cs index 6f3c85ff0c8d..5b4b80d7045b 100644 --- a/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Recovery Services Backup Resources.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.4.0")] +[assembly: AssemblyFileVersion("1.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json b/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json index 7d8e39896efa..76f5e22b8a4d 100644 --- a/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json +++ b/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json @@ -1,11 +1,11 @@ { - "version": "1.1.2-preview", + "version": "1.2.0-preview", "description": "Provides developers with libraries for the updated recovery services backup feature under Azure Resource manager.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides developers with libraries for the updated recovery services backup feature under Azure Resource manager.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure resource management" ], + "tags": [ "Microsoft Azure resource management", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -16,29 +16,31 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)" } }, "netstandard1.5": { "imports": [ "dnxcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } }, diff --git a/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json b/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json index 4a290f3619a2..5f48d01fb33b 100644 --- a/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json +++ b/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json @@ -1,11 +1,11 @@ { - "version": "4.0.1-preview", + "version": "4.1.0-preview", "description": "Provides developers with libraries for the updated recovery services backup feature under Azure Resource manager.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides developers with libraries for the updated recovery services backup feature under Azure Resource manager.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure resource management" ], + "tags": [ "Microsoft Azure resource management", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -16,29 +16,31 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" } }, "netstandard1.5": { "imports": [ "dnxcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": [ "dnxcore50" ], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } } diff --git a/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/Properties/AssemblyInfo.cs b/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/Properties/AssemblyInfo.cs index c4f7b802be51..66595297462b 100644 --- a/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure redis cache management operations.")] [assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.2.0.0")] +[assembly: AssemblyFileVersion("4.3.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json b/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json index e093409e7d5a..7d22463e03ca 100644 --- a/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json +++ b/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json @@ -1,16 +1,16 @@ { - "version": "4.2.0-preview", + "version": "4.3.0-preview", "description": "Provides redis cache management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides redis cache management capabilities for Microsoft Azure.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Redis Cache management", "redis management", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure Redis Cache management", "redis management", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "releaseNotes": "https://github.com/Azure/azure-sdk-for-net/blob/AutoRest/src/ResourceManagement/RedisCache/ReleaseNotes.md", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -20,7 +20,8 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -31,16 +32,19 @@ "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1" } } diff --git a/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/Properties/AssemblyInfo.cs b/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/Properties/AssemblyInfo.cs index bac941156f9a..4f6e084f4432 100644 --- a/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure resource management operations including Resource Groups.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.4.0.0")] +[assembly: AssemblyFileVersion("1.5.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json b/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json index ce4c40c2a147..94db79646572 100644 --- a/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json +++ b/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json @@ -1,15 +1,15 @@ { - "version": "1.4.0-preview", + "version": "1.5.0-preview", "description": "Provides resource group and resource management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], "packOptions": { "summary": "Provides resource group and resource management capabilities for Microsoft Azure.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure resource management", "resource management", "resource groups", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure resource management", "resource management", "resource groups", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { @@ -18,40 +18,42 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, - "dependencies": { + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" } }, "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { - "System.Runtime.Serialization.Primitives": "4.1.1", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" } } - }, + } } From 9ebfc0d98244b4e5c910355ee2be78f579db1cea Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 1 Mar 2017 10:52:21 -0800 Subject: [PATCH 058/137] #ConnectionDraining Updated System.Net.Http dependencies. --- .../Network/Microsoft.Azure.Management.Network/project.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index 6ce3877c545d..485c9fbe5581 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -26,6 +26,7 @@ "frameworks": { "net45": { "dependencies": { + "System.Net.Http": "4.3.1" } }, "netstandard1.5": { From cee857c058bc463b8de9560c94845fb916cbbc3b Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 1 Mar 2017 10:52:41 -0800 Subject: [PATCH 059/137] #ConnectionDraining Updated System.Net.Http dependencies. --- .../Compute/Microsoft.Azure.Management.Compute/project.json | 3 ++- .../Storage/Microsoft.Azure.Management.Storage/project.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json index 162ccc6e04c4..f01271eb740a 100644 --- a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json +++ b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json @@ -23,7 +23,8 @@ "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "System.Net.Http": "4.3.1" } }, "netstandard1.5": { diff --git a/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/project.json b/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/project.json index 27a436ba42a7..2a55fc9d46b3 100644 --- a/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/project.json +++ b/src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/project.json @@ -28,7 +28,8 @@ "frameworks": { "net45": { "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)", + "System.Net.Http": "4.3.1" } }, "netstandard1.5": { @@ -36,7 +37,6 @@ "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", "System.Runtime.Serialization.Primitives": "4.1.1", "System.Threading.Tasks": "4.0.11", "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" From 993ca5653dd3159566fa299c9da7538074b8678b Mon Sep 17 00:00:00 2001 From: David Burg Date: Wed, 1 Mar 2017 12:58:00 -0800 Subject: [PATCH 060/137] Logic RP test code refactoring --- .../InMemoryTests/InMemoryTestsBase.cs | 23 +++ ...ntegrationAccountAgreementInMemoryTests.cs | 2 +- ...egrationAccountCertificateInMemoryTests.cs | 2 +- .../IntegrationAccountInMemoryTests.cs | 2 +- .../IntegrationAccountMapInMemoryTests.cs | 2 +- .../IntegrationAccountPartnerInMemoryTests.cs | 2 +- .../IntegrationAccountSchemaInMemoryTests.cs | 2 +- .../IntegrationAccountSessionInMemoryTests.cs | 8 +- .../WorkflowRunActions.InMemoryTests.cs | 2 +- .../WorkflowRuns.InMemoryTests.cs | 2 +- .../WorkflowTriggerHistories.InMemoryTests.cs | 2 +- .../WorkflowTriggers.InMemoryTests.cs | 2 +- .../WorkflowVersions.InMemoryTests.cs | 9 +- .../InMemoryTests/Workflows.InMemoryTests.cs | 36 +---- .../IntegrationAccount.ScenarioTests.cs | 27 +--- ...egrationAccountAgreements.ScenarioTests.cs | 19 +-- ...rationAccountCertificates.ScenarioTests.cs | 20 +-- .../IntegrationAccountMaps.ScenarioTests.cs | 16 +- ...ntegrationAccountPartners.ScenarioTests.cs | 15 +- ...IntegrationAccountSchemas.ScenarioTests.cs | 15 +- ...ntegrationAccountSessions.ScenarioTests.cs | 18 +-- .../ScenarioTests/ProviderOperationsTests.cs | 7 +- .../ScenarioTests/ScenarioTestsBase.cs | 5 + .../WorkflowTriggerHistories.ScenarioTests.cs | 4 +- .../WorkflowTriggers.ScenarioTests.cs | 6 +- .../WorkflowVersions.ScenarioTests.cs | 2 +- .../ScenarioTests/Workflows.ScenarioTests.cs | 12 +- ...eAndDeleteIntegrationAccountAgreement.json | 106 ++++++------- ...eateAndGetIntegrationAccountAgreement.json | 84 +++++----- ...eAndUpdateIntegrationAccountAgreement.json | 86 +++++----- ...eIntegrationAccountAgreementUsingFile.json | 120 +++++++------- ...nAccountAgreementWithEnvelopeOverride.json | 88 +++++----- ...tionAccountAgreementOnAccountDeletion.json | 84 +++++----- .../ListIntegrationAccountAgreements.json | 144 ++++++++--------- ...ndDeleteIntegrationAccountCertificate.json | 80 +++++----- ...teAndGetIntegrationAccountCertificate.json | 80 +++++----- ...ndUpdateIntegrationAccountCertificate.json | 104 ++++++------ ...ationAccountCertificateWithPrivateKey.json | 82 +++++----- ...rationAccountCertificateWithPublicKey.json | 80 +++++----- ...onAccountCertificateOnAccountDeletion.json | 86 +++++----- .../ListIntegrationAccountCertificates.json | 86 +++++----- .../CreateAndDeleteIntegrationAccountMap.json | 86 +++++----- .../CreateAndGetIntegrationAccountMap.json | 84 +++++----- .../CreateAndUpdateIntegrationAccountMap.json | 106 ++++++------- ...ntegrationAccountMapOnAccountDeletion.json | 82 +++++----- .../ListIntegrationAccountMaps.json | 80 +++++----- ...ateAndDeleteIntegrationAccountPartner.json | 82 +++++----- ...CreateAndGetIntegrationAccountPartner.json | 84 +++++----- ...ateAndUpdateIntegrationAccountPartner.json | 86 +++++----- ...rationAccountPartnerOnAccountDeletion.json | 84 +++++----- .../ListIntegrationAccountPartners.json | 78 ++++----- .../CreateAndDeleteIntegrationAccount.json | 40 ++--- .../CreateAndGetIntegrationAccountByName.json | 62 ++++---- .../CreateAndUpdateIntegrationAccount.json | 58 +++---- ...ListIntegrationAccountByResourceGroup.json | 56 +++---- .../ListIntegrationAccountBySubscription.json | 74 ++++----- .../ListIntegrationAccountCallbackUrl.json | 130 +++++++-------- .../UpdateIntegrationAccount.json | 56 +++---- ...eateAndDeleteIntegrationAccountSchema.json | 108 ++++++------- .../CreateAndGetIntegrationAccountSchema.json | 84 +++++----- ...eateAndUpdateIntegrationAccountSchema.json | 86 +++++----- ...grationAccountSchemaOnAccountDeletion.json | 82 +++++----- .../ListIntegrationAccountSchemas.json | 86 +++++----- ...ateAndDeleteIntegrationAccountSession.json | 150 +++++++++--------- ...CreateAndGetIntegrationAccountSession.json | 88 +++++----- ...ateAndUpdateIntegrationAccountSession.json | 90 +++++------ ...ateIntegrationAccountSessionUsingFile.json | 124 +++++++-------- ...rationAccountSessionOnAccountDeletion.json | 84 +++++----- .../ListIntegrationAccountSessions.json | 138 ++++++++-------- .../Properties/AssemblyInfo.cs | 5 +- .../project.json | 2 +- 71 files changed, 1985 insertions(+), 2042 deletions(-) diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/InMemoryTestsBase.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/InMemoryTestsBase.cs index de9ad916788d..2703421711c2 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/InMemoryTestsBase.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/InMemoryTestsBase.cs @@ -7,6 +7,7 @@ namespace Test.Azure.Management.Logic using System.Net.Http; using Microsoft.Azure.Management.Logic; using Microsoft.Rest; + using System.Text.RegularExpressions; /// /// Base class for in memory tests provides common methods and attributes. @@ -46,5 +47,27 @@ protected ILogicManagementClient CreateWorkflowClient(RecordedDelegatingHandler client.SubscriptionId = "66666666-6666-6666-6666-666666666666"; return client; } + + protected bool ValidateIdFormat(string id, string entityTypeName, string entitySubtypeName = null, string entityMicrotypeName = null) + { + var pattern = @"^/subscriptions/[0-9a-h]{8}-[0-9a-h]{4}-[0-9a-h]{4}-[0-9a-h]{4}-[0-9a-h]{12}/resourceGroups/[0-9a-z\-]*/providers/Microsoft.Logic/" + entityTypeName; + + if (!string.IsNullOrEmpty(entitySubtypeName)) + { + pattern += @"/[0-9a-z\-]*/" + entitySubtypeName; + } + + if (!string.IsNullOrEmpty(entityMicrotypeName)) + { + pattern += @"/[0-9a-z\-]*/" + entityMicrotypeName; + } + + pattern += @"/[0-9a-z\-]*$"; + + return Regex.IsMatch( + input: id, + pattern: pattern, + options: RegexOptions.IgnoreCase); + } } } diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs index 09cf8398be44..6f69e52a4bea 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs @@ -272,7 +272,7 @@ private void ValidateAgreementList(IPage result) private void ValidateAgreement(IntegrationAccountAgreement agreement) { - Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3696/agreements/IntegrationAccountAgreement8906", agreement.Id); + Assert.True(this.ValidateIdFormat(id: agreement.Id, entityTypeName: "integrationAccounts", entitySubtypeName: "agreements")); Assert.Equal("IntegrationAccountAgreement8906", agreement.Name); Assert.Equal("Microsoft.Logic/integrationAccounts/agreements", agreement.Type); } diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs index fd4515c6a17e..c0f9ca5f1f78 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs @@ -277,7 +277,7 @@ private void ValidateCertificate(IntegrationAccountCertificate certificate) Assert.Equal("Microsoft.Logic/integrationAccounts/certificates", certificate.Type); Assert.Equal("PRIVATEKEY", certificate.Key.KeyName); - Assert.Equal("2f08fc1455374280912e7fa24258ecdb", certificate.Key.KeyVersion); + Assert.Equal("2f08fc1455374280912e7fa24258ecdb", certificate.Key.KeyVersion); Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/IntegrationAccountSdkTest/providers/microsoft.keyvault/vaults/IntegrationAccountVault", certificate.Key.KeyVault.Id); Assert.Equal("IntegrationAccountVault", certificate.Key.KeyVault.Name); Assert.Equal("Microsoft.KeyVault/vaults", certificate.Key.KeyVault.Type); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs index ccc76c21289e..e7df06caf531 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs @@ -20,7 +20,7 @@ public class IntegrationAccountInMemoryTests : InMemoryTestsBase public IntegrationAccountInMemoryTests() { var content = File.ReadAllText(@"TestData/IntegrationAccountResponseContent.json"); - var callbackUrlContent = File.ReadAllText(@"TestData/IntegrationAccountCallbackUrlResponseContent.json"); + var callbackUrlContent = File.ReadAllText(@"TestData/IntegrationAccountCallbackUrlResponseContent.json"); this.IntegrationAccountsList = new StringContent(string.Format(Constants.ListFormat, diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs index 0838e63d1ce4..55076e6e3fd5 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs @@ -272,7 +272,7 @@ private void ValidateMapList(IPage result) private void ValidateMap(IntegrationAccountMap map) { - Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5935/maps/IntegrationAccountMap1", map.Id); + Assert.True(this.ValidateIdFormat(id: map.Id, entityTypeName: "integrationAccounts", entitySubtypeName: "maps")); Assert.Equal("IntegrationAccountMap1", map.Name); Assert.Equal("Microsoft.Logic/integrationAccounts/maps", map.Type); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs index 7d07befee26e..6f847358c639 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs @@ -272,7 +272,7 @@ private void ValidatePartnerList(IPage result) private void ValidatePartner(IntegrationAccountPartner partner) { - Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7426/partners/IntegrationAccountPartner7353", partner.Id); + Assert.True(this.ValidateIdFormat(id: partner.Id, entityTypeName: "integrationAccounts", entitySubtypeName: "partners")); Assert.Equal("IntegrationAccountPartner7353", partner.Name); Assert.Equal("Microsoft.Logic/integrationAccounts/partners", partner.Type); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs index 5960f54707b9..5f70011f62e6 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs @@ -272,7 +272,7 @@ private void ValidateSchemaList(IPage result) private void ValidateSchema(IntegrationAccountSchema schema) { - Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1600/schemas/IntegrationAccountSchema2147", schema.Id); + Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1600/schemas/IntegrationAccountSchema2147", schema.Id); Assert.Equal("IntegrationAccountSchema2147", schema.Name); Assert.Equal("Microsoft.Logic/integrationAccounts/schemas", schema.Type); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs index 271a0032cece..20d3ef604219 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs @@ -306,11 +306,11 @@ private void ValidateSessionList(IPage result) Assert.Equal(Constants.NextPageLink, result.NextPageLink); } - private void ValidateSession(IntegrationAccountSession Session) + private void ValidateSession(IntegrationAccountSession session) { - Assert.Equal("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountSdkTest/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1600/sessions/IntegrationAccountAgreement8906-ICN", Session.Id); - Assert.Equal("IntegrationAccountAgreement8906-ICN", Session.Name); - Assert.Equal("Microsoft.Logic/integrationAccounts/sessions", Session.Type); + Assert.True(this.ValidateIdFormat(id: session.Id, entityTypeName: "integrationAccounts", entitySubtypeName: "sessions")); + Assert.Equal("IntegrationAccountAgreement8906-ICN", session.Name); + Assert.Equal("Microsoft.Logic/integrationAccounts/sessions", session.Type); } } } diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs index 11152814b801..b18efa26042f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs @@ -198,7 +198,7 @@ public void WorkflowRunActions_Get_OK() private void ValidateRunAction1(WorkflowRunAction action) { - Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/08587692861242198730/actions/actName", action.Id); + Assert.True(this.ValidateIdFormat(id: action.Id, entityTypeName: "workflows", entitySubtypeName: "runs", entityMicrotypeName: "actions")); Assert.Equal("actName", action.Name); Assert.Equal("Microsoft.Logic/workflows/runs/actions", action.Type); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs index f1259a353432..656935b542dc 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs @@ -236,7 +236,7 @@ public void WorkflowRuns_Cancel_OK() private void ValidateRun1(WorkflowRun run) { - Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/08587692861242198730", run.Id); + Assert.True(this.ValidateIdFormat(id: run.Id, entityTypeName: "workflows", entitySubtypeName: "runs")); Assert.Equal("08587692861242198730", run.Name); Assert.Equal("Microsoft.Logic/workflows/runs", run.Type); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs index 7e48107a8b20..e40f987b0346 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs @@ -198,7 +198,7 @@ public void WorkflowTriggerHistories_Get_OK() private void ValidateTriggerHistory1(WorkflowTriggerHistory history) { - Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/triggers/tName/histories/08587646315851320553", history.Id); + Assert.True(this.ValidateIdFormat(id: history.Id, entityTypeName: "workflows", entitySubtypeName: "triggers", entityMicrotypeName: "histories")); Assert.Equal("08587646315851320553", history.Name); Assert.Equal("Microsoft.Logic/workflows/triggers/histories", history.Type); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs index 7f6fa91173d5..a7344c4b6121 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs @@ -316,7 +316,7 @@ public void WorkflowTriggers_ListCallbackUrl_OK() private void ValidateTrigger1(WorkflowTrigger trigger) { - Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/triggers/tName", trigger.Id); + Assert.True(this.ValidateIdFormat(id: trigger.Id, entityTypeName: "workflows", entitySubtypeName: "triggers")); Assert.Equal("tName", trigger.Name); Assert.Equal("Microsoft.Logic/workflows/triggers", trigger.Type); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs index b2580892ee02..81ce78b81fea 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs @@ -121,6 +121,7 @@ public void WorkflowVersions_Get_Exception() Assert.Throws(() => client.WorkflowVersions.Get("rgName", "wfName", "version")); } + [Fact] public void WorkflowVersions_Get_OK() { var handler = new RecordedDelegatingHandler(); @@ -148,10 +149,10 @@ public void WorkflowVersions_Get_OK() private void ValidateWorkflowVersion1(WorkflowVersion workflow) { - Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName", workflow.Id); - Assert.Equal("wfName", workflow.Name); - Assert.Equal("Microsoft.Logic/workflows", workflow.Type); - Assert.Equal("westus", workflow.Location); + Assert.True(this.ValidateIdFormat(id: workflow.Id, entityTypeName: "workflows", entitySubtypeName: "versions")); + Assert.Equal("08587668503212262209", workflow.Name); + Assert.Equal("Microsoft.Logic/workflows/versions", workflow.Type); + Assert.Null(workflow.Location); // 2015-06-23T21:47:00.0000001Z Assert.Equal(2015, workflow.CreatedTime.Value.Year); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs index 6094dbfcbda2..9f4fe76640e1 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs @@ -672,43 +672,9 @@ public void Workflows_GenerateUpgradedDefinition_OK() #region Validation - private void ValidateWorkflowRun1(WorkflowRun workflowRun) - { - Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/run87646872399558047", workflowRun.Id); - Assert.Equal("run87646872399558047", workflowRun.Name); - Assert.Equal("Microsoft.Logic/workflows/runs", workflowRun.Type); - - Assert.Equal(2015, workflowRun.StartTime.Value.Year); - Assert.Equal(06, workflowRun.StartTime.Value.Month); - Assert.Equal(23, workflowRun.StartTime.Value.Day); - Assert.Equal(21, workflowRun.StartTime.Value.Hour); - Assert.Equal(47, workflowRun.StartTime.Value.Minute); - Assert.Equal(00, workflowRun.StartTime.Value.Second); - Assert.Equal(00, workflowRun.StartTime.Value.Millisecond); - Assert.Equal(DateTimeKind.Utc, workflowRun.StartTime.Value.Kind); - - Assert.Equal(2015, workflowRun.EndTime.Value.Year); - Assert.Equal(06, workflowRun.EndTime.Value.Month); - Assert.Equal(23, workflowRun.EndTime.Value.Day); - Assert.Equal(21, workflowRun.EndTime.Value.Hour); - Assert.Equal(47, workflowRun.EndTime.Value.Minute); - Assert.Equal(30, workflowRun.EndTime.Value.Second); - Assert.Equal(130, workflowRun.EndTime.Value.Millisecond); - Assert.Equal(DateTimeKind.Utc, workflowRun.EndTime.Value.Kind); - - Assert.Equal(WorkflowStatus.Succeeded, workflowRun.Status.Value); - Assert.Equal("a04da054-a1ae-409d-80ff-b09febefc357", workflowRun.CorrelationId); - Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/versions/ver87717906782501130", workflowRun.Workflow.Id); - Assert.Equal("Microsoft.Logic/workflows/versions", workflowRun.Workflow.Type); - Assert.Equal("wfName/ver87717906782501130", workflowRun.Workflow.Name); - - Assert.Equal("6A65DA9E-CFF8-4D3E-B5FB-691739C7AD61", workflowRun.Trigger.Name); - Assert.Equal(0, workflowRun.Outputs.Count); - } - private void ValidateWorkflow1(Workflow workflow) { - Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName", workflow.Id); + Assert.True(this.ValidateIdFormat(id: workflow.Id, entityTypeName: "workflows")); Assert.Equal("wfName", workflow.Name); Assert.Equal("Microsoft.Logic/workflows", workflow.Type); Assert.Equal("westus", workflow.Location); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs index 4e199f9387cc..0ec85037ae82 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs @@ -19,19 +19,13 @@ namespace Test.Azure.Management.Logic [Collection("IntegrationAccountScenarioTests")] public class IntegrationAccountScenarioTests : ScenarioTestsBase { - /// - /// Name of the test class. - /// - private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountScenarioTests"; - /// /// Tests the create and delete operations of the integration account. /// [Fact] public void CreateAndDeleteIntegrationAccount() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (MockContext context = MockContext.Start(this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); var client = context.GetServiceClient(); @@ -55,8 +49,7 @@ public void CreateAndDeleteIntegrationAccount() [Fact] public void CreateAndUpdateIntegrationAccount() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (MockContext context = MockContext.Start(this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); var client = context.GetServiceClient(); @@ -96,8 +89,7 @@ public void CreateAndUpdateIntegrationAccount() [Fact] public void CreateAndGetIntegrationAccountByName() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (MockContext context = MockContext.Start(this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); var client = context.GetServiceClient(); @@ -124,8 +116,7 @@ public void CreateAndGetIntegrationAccountByName() [Fact] public void ListIntegrationAccountBySubscription() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (MockContext context = MockContext.Start(this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); var client = context.GetServiceClient(); @@ -152,8 +143,7 @@ public void ListIntegrationAccountBySubscription() [Fact] public void ListIntegrationAccountByResourceGroup() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (MockContext context = MockContext.Start(this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); var client = context.GetServiceClient(); @@ -180,8 +170,7 @@ public void ListIntegrationAccountByResourceGroup() [Fact] public void UpdateIntegrationAccount() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (MockContext context = MockContext.Start(this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); var client = context.GetServiceClient(); @@ -220,8 +209,7 @@ public void UpdateIntegrationAccount() [Fact] public void ListIntegrationAccountCallbackUrl() { - using ( - MockContext context = MockContext.Start(TestClass)) + using (MockContext context = MockContext.Start(this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); var client = context.GetServiceClient(); @@ -259,7 +247,6 @@ public void ListIntegrationAccountCallbackUrl() // Delete the IntegrationAccount client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); - } } diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs index 41e5b70f22e0..3a5412e090de 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs @@ -20,11 +20,6 @@ namespace Test.Azure.Management.Logic [Collection("IntegrationAccountPartnerScenarioTests")] public class IntegrationAccountAgreementScenarioTests : ScenarioTestsBase { - /// - /// Name of the test class - /// - private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests"; - /// /// Tests the create and delete operations of the integration account agreement. /// https://msazure.visualstudio.com/One/_workitems/edit/587947 @@ -33,7 +28,7 @@ public class IntegrationAccountAgreementScenarioTests : ScenarioTestsBase public void CreateAndDeleteIntegrationAccountAgreement() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountAgreementName = @@ -71,7 +66,7 @@ public void CreateAndDeleteIntegrationAccountAgreement() public void CreateAndUpdateIntegrationAccountAgreement() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountAgreementName = @@ -110,7 +105,7 @@ public void CreateAndUpdateIntegrationAccountAgreement() public void CreateAndGetIntegrationAccountAgreement() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountAgreementName = @@ -152,7 +147,7 @@ public void CreateAndGetIntegrationAccountAgreement() public void CreateIntegrationAccountAgreementWithEnvelopeOverride() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); @@ -199,7 +194,7 @@ public void CreateIntegrationAccountAgreementWithEnvelopeOverride() public void ListIntegrationAccountAgreements() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); @@ -251,7 +246,7 @@ public void ListIntegrationAccountAgreements() public void DeleteIntegrationAccountAgreementOnAccountDeletion() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountAgreementName = @@ -281,7 +276,7 @@ public void DeleteIntegrationAccountAgreementOnAccountDeletion() public void CreateIntegrationAccountAgreementUsingFile() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs index aeca771289ec..08cdb50d4ca5 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs @@ -21,12 +21,6 @@ namespace Test.Azure.Management.Logic [Collection("IntegrationAccountCertificateScenarioTests")] public class IntegrationAccountCertificateScenarioTests : ScenarioTestsBase { - - /// - /// Name of the test class - /// - private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests"; - /// /// Tests the create and delete operations of the integration account certificate. /// @@ -34,7 +28,7 @@ public class IntegrationAccountCertificateScenarioTests : ScenarioTestsBase public void CreateAndDeleteIntegrationAccountCertificate() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountCertificateName = @@ -67,7 +61,7 @@ public void CreateAndDeleteIntegrationAccountCertificate() public void CreateIntegrationAccountCertificateWithPublicKey() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountCertificateName = @@ -108,7 +102,7 @@ public void CreateIntegrationAccountCertificateWithPublicKey() public void CreateIntegrationAccountCertificateWithPrivateKey() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountCertificateName = @@ -144,7 +138,7 @@ public void CreateIntegrationAccountCertificateWithPrivateKey() public void DeleteIntegrationAccountCertificateOnAccountDeletion() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountCertificateName = @@ -177,7 +171,7 @@ public void DeleteIntegrationAccountCertificateOnAccountDeletion() public void CreateAndUpdateIntegrationAccountCertificate() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountCertificateName = @@ -216,7 +210,7 @@ public void CreateAndUpdateIntegrationAccountCertificate() public void CreateAndGetIntegrationAccountCertificate() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountCertificateName = @@ -250,7 +244,7 @@ public void CreateAndGetIntegrationAccountCertificate() public void ListIntegrationAccountCertificates() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountCertificateName = diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs index 0e9d32c6de8c..a3ba4940b87c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs @@ -19,12 +19,6 @@ namespace Test.Azure.Management.Logic [Collection("IntegrationAccountMapScenarioTests")] public class IntegrationAccountMapScenarioTests : ScenarioTestsBase { - - /// - /// Name of the test class - /// - private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests"; - /// /// Map content in string format /// @@ -45,7 +39,7 @@ public IntegrationAccountMapScenarioTests() public void CreateAndDeleteIntegrationAccountMap() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountMapName = TestUtilities.GenerateName(Constants.IntegrationAccountMapPrefix); @@ -76,7 +70,7 @@ public void CreateAndDeleteIntegrationAccountMap() public void DeleteIntegrationAccountMapOnAccountDeletion() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountMapName = TestUtilities.GenerateName(Constants.IntegrationAccountMapPrefix); @@ -108,7 +102,7 @@ public void DeleteIntegrationAccountMapOnAccountDeletion() public void CreateAndUpdateIntegrationAccountMap() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountMapName = TestUtilities.GenerateName(Constants.IntegrationAccountMapPrefix); @@ -149,7 +143,7 @@ public void CreateAndUpdateIntegrationAccountMap() public void CreateAndGetIntegrationAccountMap() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountMapName = TestUtilities.GenerateName(Constants.IntegrationAccountMapPrefix); @@ -180,7 +174,7 @@ public void CreateAndGetIntegrationAccountMap() public void ListIntegrationAccountMaps() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountMapName = TestUtilities.GenerateName(Constants.IntegrationAccountMapPrefix); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs index 90d217ea5aa9..b64b61b57f2f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs @@ -18,11 +18,6 @@ namespace Test.Azure.Management.Logic [Collection("IntegrationAccountPartnerScenarioTests")] public class IntegrationAccountPartnerScenarioTests : ScenarioTestsBase { - /// - /// Name of the test class - /// - private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests"; - /// /// Tests the create and delete operations of the integration account partner. /// @@ -30,7 +25,7 @@ public class IntegrationAccountPartnerScenarioTests : ScenarioTestsBase public void CreateAndDeleteIntegrationAccountPartner() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountPartnerName = @@ -58,7 +53,7 @@ public void CreateAndDeleteIntegrationAccountPartner() public void DeleteIntegrationAccountPartnerOnAccountDeletion() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountPartnerName = @@ -88,7 +83,7 @@ public void DeleteIntegrationAccountPartnerOnAccountDeletion() public void CreateAndUpdateIntegrationAccountPartner() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountPartnerName = @@ -137,7 +132,7 @@ public void CreateAndUpdateIntegrationAccountPartner() public void CreateAndGetIntegrationAccountPartner() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountPartnerName = @@ -171,7 +166,7 @@ public void CreateAndGetIntegrationAccountPartner() public void ListIntegrationAccountPartners() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountPartnerName = diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs index a722137c93e0..30126e582272 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs @@ -19,11 +19,6 @@ namespace Test.Azure.Management.Logic [Collection("IntegrationAccountSchemaScenarioTests")] public class IntegrationAccountSchemaScenarioTests : ScenarioTestsBase { - /// - /// Name of the test class - /// - private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests"; - /// /// Schema content in string format /// @@ -50,7 +45,7 @@ public IntegrationAccountSchemaScenarioTests() public void CreateAndDeleteIntegrationAccountSchema() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); @@ -85,7 +80,7 @@ public void CreateAndDeleteIntegrationAccountSchema() public void DeleteIntegrationAccountSchemaOnAccountDeletion() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountSchemaName = TestUtilities.GenerateName(Constants.IntegrationAccountSchemaPrefix); @@ -116,7 +111,7 @@ public void DeleteIntegrationAccountSchemaOnAccountDeletion() [Fact] public void CreateAndUpdateIntegrationAccountSchema() { - using (MockContext context = MockContext.Start(TestClass)) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountSchemaName =TestUtilities.GenerateName(Constants.IntegrationAccountSchemaPrefix); @@ -153,7 +148,7 @@ public void CreateAndUpdateIntegrationAccountSchema() public void CreateAndGetIntegrationAccountSchema() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountSchemaName = TestUtilities.GenerateName(Constants.IntegrationAccountSchemaPrefix); @@ -186,7 +181,7 @@ public void CreateAndGetIntegrationAccountSchema() public void ListIntegrationAccountSchemas() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { string integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); string integrationAccountSchemaName = TestUtilities.GenerateName(Constants.IntegrationAccountSchemaPrefix); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs index 3062b947b6c6..10e11d78b23f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs @@ -8,7 +8,6 @@ namespace Test.Azure.Management.Logic using System.Linq; using Microsoft.Azure.Management.Logic; using Microsoft.Azure.Management.Logic.Models; - using Microsoft.Rest.Azure; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; @@ -18,11 +17,6 @@ namespace Test.Azure.Management.Logic [Collection("IntegrationAccountPartnerScenarioTests")] public class IntegrationAccountSessionScenarioTests : ScenarioTestsBase { - /// - /// Name of the test class - /// - private const string TestClass = "Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests"; - /// /// Tests the create and delete operations of the integration account session. /// https://msazure.visualstudio.com/One/_workitems/edit/587947 @@ -30,7 +24,7 @@ public class IntegrationAccountSessionScenarioTests : ScenarioTestsBase [Fact] public void CreateAndDeleteIntegrationAccountSession() { - using (var context = MockContext.Start(className: TestClass)) + using (var context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); var integrationAccountSessionName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); @@ -95,7 +89,7 @@ public void CreateAndDeleteIntegrationAccountSession() [Fact] public void CreateAndUpdateIntegrationAccountSession() { - using (var context = MockContext.Start(className: TestClass)) + using (var context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); var integrationAccountSessionName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); @@ -141,7 +135,7 @@ public void CreateAndUpdateIntegrationAccountSession() [Fact] public void CreateAndGetIntegrationAccountSession() { - using (var context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); var integrationAccountSessionName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); @@ -184,7 +178,7 @@ public void CreateAndGetIntegrationAccountSession() [Fact] public void ListIntegrationAccountSessions() { - using (var context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); @@ -242,7 +236,7 @@ public void ListIntegrationAccountSessions() [Fact] public void DeleteIntegrationAccountSessionOnAccountDeletion() { - using (var context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); var integrationAccountSessionName = TestUtilities.GenerateName(Constants.IntegrationAccountSessionPrefix); @@ -283,7 +277,7 @@ public void DeleteIntegrationAccountSessionOnAccountDeletion() [Fact] public void CreateIntegrationAccountSessionUsingFile() { - using (var context = MockContext.Start(TestClass)) + using (var context = MockContext.Start(className: this.testClassName)) { var integrationAccountName = TestUtilities.GenerateName(prefix: Constants.IntegrationAccountPrefix); var integrationAs2AccountSessionName =TestUtilities.GenerateName(prefix: Constants.IntegrationAccountSessionPrefix); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs index 402fe2e270f9..e1c44312adac 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs @@ -15,11 +15,6 @@ namespace Test.Azure.Management.Logic [Collection("ProviderOperationsTests")] public class ProviderOperationsTests : ScenarioTestsBase { - /// - /// Name of the test class. - /// - private const string TestClass = "Test.Azure.Management.Logic.ProviderOperationsTests"; - /// /// Tests the get operation of provider. /// @@ -27,7 +22,7 @@ public class ProviderOperationsTests : ScenarioTestsBase public void GetProviderOperations() { using ( - MockContext context = MockContext.Start(TestClass)) + MockContext context = MockContext.Start(className: this.testClassName)) { var client = context.GetServiceClient(); var operationList = client.ListOperations(); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ScenarioTestsBase.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ScenarioTestsBase.cs index 17853d01f595..1ca227bb96df 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ScenarioTestsBase.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ScenarioTestsBase.cs @@ -15,6 +15,11 @@ namespace Test.Azure.Management.Logic /// abstract public class ScenarioTestsBase : TestBase { + /// + /// Name of the test class + /// + protected string testClassName { get { return this.GetType().FullName; } } + /// /// Default serviceplan Resource id /// diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs index 13cdbc07739f..79a54d80d752 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs @@ -17,7 +17,7 @@ public class WorkflowTriggerHistoriesScenarioTests : ScenarioTestsBase [Fact] public void ListHistory() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); @@ -51,7 +51,7 @@ public void ListHistory() [Fact] public void GetHistory() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs index 810625f0b5dd..47fe40079cdb 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs @@ -17,7 +17,7 @@ public class WorkflowTriggersScenarioTests : ScenarioTestsBase [Fact] public void ListNoTrigger() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowTriggersScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); @@ -46,7 +46,7 @@ public void ListNoTrigger() [Fact] public void GetAndListTriggers() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowTriggersScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); @@ -80,7 +80,7 @@ public void GetAndListTriggers() [Fact] public void RunTrigger() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowTriggersScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs index fffb48113311..e491b1638953 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs @@ -16,7 +16,7 @@ public class WorkflowVersionsScenarioTests : ScenarioTestsBase [Fact] public void CreateAndGetWorkflowVersion() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowVersionsScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs index e38f861266d9..435d88088414 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs @@ -20,7 +20,7 @@ public class WorkflowsScenarioTests : ScenarioTestsBase [Fact] public void CreateAndDeleteWorkflow() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowsScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); @@ -51,7 +51,7 @@ public void CreateAndDeleteWorkflow() [Fact] public void CreateAndEnableDisableWorkflow() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowsScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); @@ -94,7 +94,7 @@ public void CreateAndEnableDisableWorkflow() [Fact] public void ListWorkflow() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowsScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); string workflowName2 = TestUtilities.GenerateName("logicwf"); @@ -158,7 +158,7 @@ public void ListWorkflow() [Fact] public void ValidateWorkflow() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowsScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); @@ -206,7 +206,7 @@ public void ValidateWorkflow() [Fact] public void DeleteAllWorkflows() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowsScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { var client = this.GetWorkflowClient(context); @@ -236,7 +236,7 @@ public void DeleteAllWorkflows() [Fact] public void UpdateWorkflow() { - using (MockContext context = MockContext.Start("Test.Azure.Management.Logic.WorkflowsScenarioTests")) + using (MockContext context = MockContext.Start(className: this.testClassName)) { string workflowName = TestUtilities.GenerateName("logicwf"); var client = this.GetWorkflowClient(context); diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json index 071a3f7348c9..61937a1a9c45 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "545ecb69-c93c-4328-8c17-b58e1f5532d5" + "4d3f930a-84d4-46a7-bf05-a210bada2033" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579\",\r\n \"name\": \"IntegrationAccount7579\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909\",\r\n \"name\": \"IntegrationAccount8909\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,56 +38,56 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:31 GMT" + "Wed, 01 Mar 2017 20:52:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8f0e70ee-bd1e-48b7-9a13-63f8b552f207" + "westus:4d1ecf9d-fb93-4610-ab9e-87ad576d87cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1193" ], "x-ms-correlation-request-id": [ - "7c2a3b8b-26e5-4895-8cbd-7935e8cd5cb4" + "3a801e6f-9056-4d50-886f-6bdfbcaf1a3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002131Z:7c2a3b8b-26e5-4895-8cbd-7935e8cd5cb4" + "CENTRALUS:20170301T205200Z:3a801e6f-9056-4d50-886f-6bdfbcaf1a3f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU1MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDM1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5509\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5509\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement353\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement353\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5860" + "5858" ], "x-ms-client-request-id": [ - "f40a3249-252a-4b03-9481-40f04235a9c6" + "e2f2b1ae-8384-479c-a113-500b183db0fd" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:32.0684482Z\",\r\n \"changedTime\": \"2017-02-25T00:21:32.0687964Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5509\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509\",\r\n \"name\": \"IntegrationAccountAgreement5509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:01.1874472Z\",\r\n \"changedTime\": \"2017-03-01T20:52:01.1876469Z\",\r\n \"metadata\": \"IntegrationAccountAgreement353\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353\",\r\n \"name\": \"IntegrationAccountAgreement353\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3917" + "3914" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:31 GMT" + "Wed, 01 Mar 2017 20:52:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:add98529-1efc-47dd-8129-88c8e1c173bf" + "westus:81b3166f-f0c6-4cc8-acac-ef8c8169e410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1192" ], "x-ms-correlation-request-id": [ - "0a3f8701-c683-4e99-9a81-b72520aaadce" + "d3498553-d862-4a76-9f61-8a669bb0eecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002132Z:0a3f8701-c683-4e99-9a81-b72520aaadce" + "CENTRALUS:20170301T205201Z:d3498553-d862-4a76-9f61-8a669bb0eecb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU1MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDM1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3898cd11-e210-4b08-af8d-0d8c2713ecfb" + "ba2eab2d-69f4-4da2-9bf7-cc9d96407875" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:32.0684482Z\",\r\n \"changedTime\": \"2017-02-25T00:21:32.0687964Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5509\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509\",\r\n \"name\": \"IntegrationAccountAgreement5509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:01.1874472Z\",\r\n \"changedTime\": \"2017-03-01T20:52:01.1876469Z\",\r\n \"metadata\": \"IntegrationAccountAgreement353\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353\",\r\n \"name\": \"IntegrationAccountAgreement353\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:31 GMT" + "Wed, 01 Mar 2017 20:52:01 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:c2551f66-edc5-43ce-b895-834142b32de2" + "westus:ee572313-2eb9-4b16-b4c2-93f565acf8a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14609" + "14902" ], "x-ms-correlation-request-id": [ - "8a514bf0-542f-4f26-875d-bcff16b0d2c8" + "e53a9609-d4aa-42f7-bfa0-1291f3b1bd0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002132Z:8a514bf0-542f-4f26-875d-bcff16b0d2c8" + "CENTRALUS:20170301T205201Z:e53a9609-d4aa-42f7-bfa0-1291f3b1bd0a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579/agreements/IntegrationAccountAgreement5509?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU1MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDM1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24b37a0c-15ce-4e2f-bf43-5c491cfe9461" + "1e4fe108-7fd5-4ee8-81e4-5885252f5d59" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,44 +210,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:32 GMT" + "Wed, 01 Mar 2017 20:52:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f2a90077-eed4-4fc1-8304-50cbe4b5fcdf" + "westus:331b7c70-2367-4be5-b77b-7bb145517aaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1191" ], "x-ms-correlation-request-id": [ - "fd0710ea-b116-4f13-85f4-254dcc4216ee" + "fee2e95c-93d0-4f72-930a-b2aafdf4a292" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002132Z:fd0710ea-b116-4f13-85f4-254dcc4216ee" + "CENTRALUS:20170301T205201Z:fee2e95c-93d0-4f72-930a-b2aafdf4a292" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7579?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU3OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27fb0125-0010-43fb-9c09-f51e298e5408" + "26fc28ae-1b48-492e-b33c-6dc633ca728b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -262,25 +262,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:32 GMT" + "Wed, 01 Mar 2017 20:52:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:1fb499de-36ff-45f8-82c4-5bfe055f490c" + "westus:78aef39e-4ee8-40be-8bd9-04e97dd48175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1190" ], "x-ms-correlation-request-id": [ - "e9125c8f-2aa1-4471-81c0-1b7cc7c8bb1a" + "a9577016-e45a-42c2-a127-d0472976317d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002132Z:e9125c8f-2aa1-4471-81c0-1b7cc7c8bb1a" + "CENTRALUS:20170301T205202Z:a9577016-e45a-42c2-a127-d0472976317d" ] }, "StatusCode": 200 @@ -288,8 +288,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountAgreement": [ - "IntegrationAccount7579", - "IntegrationAccountAgreement5509" + "IntegrationAccount8909", + "IntegrationAccountAgreement353" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json index a878ce5b0f89..874a8a5d29c7 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "232fcc82-606a-4b53-bf8e-cba30391f17a" + "f58590e8-f2a8-409a-aa8e-9262f4ef7cb7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552\",\r\n \"name\": \"IntegrationAccount4552\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905\",\r\n \"name\": \"IntegrationAccount2905\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:26 GMT" + "Wed, 01 Mar 2017 20:51:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4ac3eff1-70ce-455e-9a37-c2863939b521" + "westus:2898a0ec-2057-4614-94f5-ee4f25ac2715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "0fe73687-e784-4bb2-8a37-6fb2f730da82" + "f694cdf2-b306-46b8-8404-c6c8521d9b5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002126Z:0fe73687-e784-4bb2-8a37-6fb2f730da82" + "WESTUS2:20170301T205152Z:f694cdf2-b306-46b8-8404-c6c8521d9b5a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552/agreements/IntegrationAccountAgreement9329?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDkzMjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905/agreements/IntegrationAccountAgreement8296?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkwNS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement9329\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement9329\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8296\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8296\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5862" ], "x-ms-client-request-id": [ - "919b4874-81be-43da-adda-7c90b53f843c" + "bd96f9ca-2caa-4524-8427-d830ec7a0fb0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:26.6913573Z\",\r\n \"changedTime\": \"2017-02-25T00:21:26.6920065Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9329\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552/agreements/IntegrationAccountAgreement9329\",\r\n \"name\": \"IntegrationAccountAgreement9329\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:53.0656157Z\",\r\n \"changedTime\": \"2017-03-01T20:51:53.0659728Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8296\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905/agreements/IntegrationAccountAgreement8296\",\r\n \"name\": \"IntegrationAccountAgreement8296\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3919" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:26 GMT" + "Wed, 01 Mar 2017 20:51:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f9869cec-97b2-46a3-b225-72c13e1302f0" + "westus:0bdd23b5-371b-4c9d-8015-d8e2802cb311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "a13cbb5b-a69e-4024-b38f-298bae86ea26" + "d25bf908-33e9-4fc1-97a2-71a54591c7d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002126Z:a13cbb5b-a69e-4024-b38f-298bae86ea26" + "WESTUS2:20170301T205153Z:d25bf908-33e9-4fc1-97a2-71a54591c7d9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552/agreements/IntegrationAccountAgreement9329?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDkzMjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905/agreements/IntegrationAccountAgreement8296?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkwNS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23d10b46-bd8e-426b-85fb-28567c0d36d4" + "12f1f28f-19d8-404c-bb5f-4b70fcb753b3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:26.6913573Z\",\r\n \"changedTime\": \"2017-02-25T00:21:26.6920065Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9329\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552/agreements/IntegrationAccountAgreement9329\",\r\n \"name\": \"IntegrationAccountAgreement9329\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:53.0656157Z\",\r\n \"changedTime\": \"2017-03-01T20:51:53.0659728Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8296\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905/agreements/IntegrationAccountAgreement8296\",\r\n \"name\": \"IntegrationAccountAgreement8296\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:26 GMT" + "Wed, 01 Mar 2017 20:51:52 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:42737abf-dcb9-4444-a018-9cfa4fd98ae5" + "westus:4184f52b-6123-485e-8f1c-af1b7621294c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14738" ], "x-ms-correlation-request-id": [ - "a692dd66-b407-4a0d-b49e-34b16528f65b" + "4750e494-bc3c-47a4-9467-03a6ce0ffa45" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002126Z:a692dd66-b407-4a0d-b49e-34b16528f65b" + "WESTUS2:20170301T205153Z:4750e494-bc3c-47a4-9467-03a6ce0ffa45" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4552?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6fb75b3-b8bb-4b90-9477-42ecf6e9a30e" + "ec44466d-c428-4b86-9b5b-4914dadd6f4e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:27 GMT" + "Wed, 01 Mar 2017 20:51:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7a355147-41c6-4d1f-97e5-4c2285f5c46b" + "westus:9b84c07e-4f8d-42f4-9f9d-2dde4d567491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "1eff78c5-8ef7-4540-ba2e-dce97f296759" + "880cab42-2fae-45b0-ad6e-f6baffe871fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002127Z:1eff78c5-8ef7-4540-ba2e-dce97f296759" + "WESTUS2:20170301T205153Z:880cab42-2fae-45b0-ad6e-f6baffe871fe" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountAgreement": [ - "IntegrationAccount4552", - "IntegrationAccountAgreement9329" + "IntegrationAccount2905", + "IntegrationAccountAgreement8296" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json index dfad4c3a69d1..2efa2dc9f64c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "a197abba-18db-4aec-8b0e-e1eabc325025" + "43b94e8e-5627-4ee4-ae1c-697486a59004" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966\",\r\n \"name\": \"IntegrationAccount9966\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685\",\r\n \"name\": \"IntegrationAccount7685\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:15 GMT" + "Wed, 01 Mar 2017 20:51:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f6b53a82-7c97-4bf8-8cd7-6285ba7c17ea" + "westus:f1a2bd1d-2db9-4251-b9e0-0dc9d870e230" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1195" ], "x-ms-correlation-request-id": [ - "fcf1c973-fd61-4210-a3eb-f6fa589f92c4" + "ebb45501-bf85-4ec3-b1c5-c6adfff6ece7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002115Z:fcf1c973-fd61-4210-a3eb-f6fa589f92c4" + "CENTRALUS:20170301T205137Z:ebb45501-bf85-4ec3-b1c5-c6adfff6ece7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966/agreements/IntegrationAccountAgreement6780?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk2Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDY3ODA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685/agreements/IntegrationAccountAgreement8443?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY4NS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg0NDM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6780\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6780\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8443\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8443\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5862" ], "x-ms-client-request-id": [ - "781e0f4a-7abf-44ac-94a6-6b93848ec79c" + "23f59778-0d2c-48b5-a43b-9e2a2c72201c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:16.2062682Z\",\r\n \"changedTime\": \"2017-02-25T00:21:16.2070737Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6780\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966/agreements/IntegrationAccountAgreement6780\",\r\n \"name\": \"IntegrationAccountAgreement6780\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:38.3833353Z\",\r\n \"changedTime\": \"2017-03-01T20:51:38.3841858Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8443\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685/agreements/IntegrationAccountAgreement8443\",\r\n \"name\": \"IntegrationAccountAgreement8443\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3919" @@ -99,34 +99,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:16 GMT" + "Wed, 01 Mar 2017 20:51:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:48ed156c-8069-402f-ab75-45adbf1e78ee" + "westus:e88c5669-9a6a-41d3-ae8b-1aa1949eba72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1194" ], "x-ms-correlation-request-id": [ - "41f1d603-d29c-4ac1-99a3-5b254310717c" + "c8543561-e357-4aef-9262-0d5558d436d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002116Z:41f1d603-d29c-4ac1-99a3-5b254310717c" + "CENTRALUS:20170301T205138Z:c8543561-e357-4aef-9262-0d5558d436d0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966/agreements/IntegrationAccountAgreement6780?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk2Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDY3ODA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685/agreements/IntegrationAccountAgreement8443?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY4NS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg0NDM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6780\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6780\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8443\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8443\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -135,17 +135,17 @@ "8185" ], "x-ms-client-request-id": [ - "e0f5f77b-82aa-4955-8b36-b65a8f75ad66" + "81cd2347-2e21-44da-b0db-56c444ba97e1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:16.2062682Z\",\r\n \"changedTime\": \"2017-02-25T00:21:16.5389193Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6780\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966/agreements/IntegrationAccountAgreement6780\",\r\n \"name\": \"IntegrationAccountAgreement6780\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:38.3833353Z\",\r\n \"changedTime\": \"2017-03-01T20:51:38.7564806Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8443\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685/agreements/IntegrationAccountAgreement8443\",\r\n \"name\": \"IntegrationAccountAgreement8443\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:16 GMT" + "Wed, 01 Mar 2017 20:51:38 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b65fbb28-fdbd-4bdf-9c15-9a9d6242e831" + "westus:5d593e09-50aa-47c4-8beb-5a3666d7f8ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1193" ], "x-ms-correlation-request-id": [ - "ed4446ea-eaa7-4524-8fcc-fae5010f6d59" + "9a5a9b46-c897-4f1c-ab33-95e2781c0806" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002116Z:ed4446ea-eaa7-4524-8fcc-fae5010f6d59" + "CENTRALUS:20170301T205138Z:9a5a9b46-c897-4f1c-ab33-95e2781c0806" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9966?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be06dc66-3222-4505-81f2-dadfd565fbd8" + "b4efb489-7f31-44e8-860f-e734620200f4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:17 GMT" + "Wed, 01 Mar 2017 20:51:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4a0056e5-82f3-4fea-8887-01f6e312b6f3" + "westus:e307552a-f4e3-44a4-943e-2a5833fd5ff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1192" ], "x-ms-correlation-request-id": [ - "da92a5bc-5032-430f-b43f-365eccb2bb60" + "76c596ae-5b9d-46aa-adea-51a4d9db5006" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002117Z:da92a5bc-5032-430f-b43f-365eccb2bb60" + "CENTRALUS:20170301T205139Z:76c596ae-5b9d-46aa-adea-51a4d9db5006" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountAgreement": [ - "IntegrationAccount9966", - "IntegrationAccountAgreement6780" + "IntegrationAccount7685", + "IntegrationAccountAgreement8443" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json index 9fa9111b8390..9f1d704016db 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "512efc7b-3cd4-4174-969d-87b8c7283d6f" + "2f34f971-9237-46ff-8ef0-c21963df5342" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314\",\r\n \"name\": \"IntegrationAccount1314\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364\",\r\n \"name\": \"IntegrationAccount8364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:18 GMT" + "Wed, 01 Mar 2017 20:51:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9a6d2585-ba15-45a9-9e63-d372b979426f" + "westus:409e74d0-378b-47f4-8ed5-be9957434312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-correlation-request-id": [ - "453ba440-d048-4bdd-86bb-8a07129e76b3" + "5a3d3173-4841-4615-9e8a-e54dd6c6f21a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002118Z:453ba440-d048-4bdd-86bb-8a07129e76b3" + "CENTRALUS:20170301T205142Z:5a3d3173-4841-4615-9e8a-e54dd6c6f21a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement7693?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc2OTM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement3029?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMwMjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7693\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": false,\r\n \"signMdn\": false,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7693\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement3029\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": false,\r\n \"signMdn\": false,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement3029\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5865" ], "x-ms-client-request-id": [ - "80d84386-ede7-485b-8957-1b6681d6f1a1" + "d2df44c5-0bc3-4f3a-9afb-68035994d384" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": false,\r\n \"signMDN\": false,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:18.9418556Z\",\r\n \"changedTime\": \"2017-02-25T00:21:18.9426484Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7693\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement7693\",\r\n \"name\": \"IntegrationAccountAgreement7693\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": false,\r\n \"signMDN\": false,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:42.9827353Z\",\r\n \"changedTime\": \"2017-03-01T20:51:42.9836373Z\",\r\n \"metadata\": \"IntegrationAccountAgreement3029\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement3029\",\r\n \"name\": \"IntegrationAccountAgreement3029\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3922" @@ -99,56 +99,56 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:18 GMT" + "Wed, 01 Mar 2017 20:51:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e70d3188-87c8-4c72-af88-7cbc06a6df86" + "westus:56d074b8-02aa-49c2-b8d2-1847ff49b557" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-correlation-request-id": [ - "95497b6f-4619-4ddc-ba36-7fd0d653929b" + "5a3378a6-b358-4a0c-b149-728964dbb78d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002118Z:95497b6f-4619-4ddc-ba36-7fd0d653929b" + "CENTRALUS:20170301T205143Z:5a3378a6-b358-4a0c-b149-728964dbb78d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement8388?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgzODg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement346?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDM0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8388\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8388\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement346\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement346\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "9796" + "9794" ], "x-ms-client-request-id": [ - "89c77cd1-57ac-45ce-b012-b8e78635a6df" + "55f3bfaf-b2ed-44f1-8d1b-585392441db4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:19.3340204Z\",\r\n \"changedTime\": \"2017-02-25T00:21:19.3342356Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8388\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement8388\",\r\n \"name\": \"IntegrationAccountAgreement8388\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:43.5243543Z\",\r\n \"changedTime\": \"2017-03-01T20:51:43.525108Z\",\r\n \"metadata\": \"IntegrationAccountAgreement346\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement346\",\r\n \"name\": \"IntegrationAccountAgreement346\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6657" + "6653" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,56 +160,56 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:19 GMT" + "Wed, 01 Mar 2017 20:51:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b49af9c8-13d5-433e-b84d-aad846c8e3f2" + "westus:06809ffe-6dc7-4441-a51b-38e9f0c2973b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1193" ], "x-ms-correlation-request-id": [ - "c98cddb7-3850-4e3f-88b6-9e9738d05579" + "0658f733-7c79-4f1c-af35-3cfd41230c70" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002119Z:c98cddb7-3850-4e3f-88b6-9e9738d05579" + "CENTRALUS:20170301T205143Z:0658f733-7c79-4f1c-af35-3cfd41230c70" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement4927?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDQ5Mjc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement767?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc2Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement4927\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement4927\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement767\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement767\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8185" + "8183" ], "x-ms-client-request-id": [ - "8dabc7e0-9c94-4f0e-a164-1ec67e143a8c" + "4e61e2dd-e33a-4b02-8ee2-edc6c7fbf528" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:19.6767008Z\",\r\n \"changedTime\": \"2017-02-25T00:21:19.6771313Z\",\r\n \"metadata\": \"IntegrationAccountAgreement4927\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314/agreements/IntegrationAccountAgreement4927\",\r\n \"name\": \"IntegrationAccountAgreement4927\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:43.934191Z\",\r\n \"changedTime\": \"2017-03-01T20:51:43.9346505Z\",\r\n \"metadata\": \"IntegrationAccountAgreement767\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement767\",\r\n \"name\": \"IntegrationAccountAgreement767\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5549" + "5545" ], "Content-Type": [ "application/json; charset=utf-8" @@ -221,44 +221,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:19 GMT" + "Wed, 01 Mar 2017 20:51:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5d12472f-86dc-4251-937b-b22095fc83de" + "westus:898818bf-2ce1-4181-b6fa-43b4eeaae64f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1192" ], "x-ms-correlation-request-id": [ - "e76f602a-4fcc-4c4e-a029-411cd09efca3" + "7dc0ae63-e979-49b0-b6a4-1b482845dfbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002119Z:e76f602a-4fcc-4c4e-a029-411cd09efca3" + "CENTRALUS:20170301T205143Z:7dc0ae63-e979-49b0-b6a4-1b482845dfbe" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1314?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ef4beb2-cd7d-47f9-9f7a-cb17fec05bae" + "4f6e49cc-679e-4e69-8592-bc28a7e0448d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -273,25 +273,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:20 GMT" + "Wed, 01 Mar 2017 20:51:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a3d55e84-6049-403e-b10b-ee4a26308e34" + "westus:6f090588-e0bf-4669-aaa5-c775dd8cf8d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1191" ], "x-ms-correlation-request-id": [ - "8bb9e93f-de53-43ae-a215-73baaa5fa861" + "66568249-9a74-464c-9daf-1febd0c605d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002120Z:8bb9e93f-de53-43ae-a215-73baaa5fa861" + "CENTRALUS:20170301T205144Z:66568249-9a74-464c-9daf-1febd0c605d9" ] }, "StatusCode": 200 @@ -299,10 +299,10 @@ ], "Names": { "CreateIntegrationAccountAgreementUsingFile": [ - "IntegrationAccount1314", - "IntegrationAccountAgreement7693", - "IntegrationAccountAgreement4927", - "IntegrationAccountAgreement8388" + "IntegrationAccount8364", + "IntegrationAccountAgreement3029", + "IntegrationAccountAgreement767", + "IntegrationAccountAgreement346" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json index 3d9b8cf9921f..01bc4d7e56c0 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzAyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzczMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "9be9d019-2469-4874-95f8-8746c0b95b59" + "9f3675a4-ee4f-458a-8b07-1c3952bfe04c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302\",\r\n \"name\": \"IntegrationAccount302\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730\",\r\n \"name\": \"IntegrationAccount3730\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:22 GMT" + "Wed, 01 Mar 2017 20:51:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:52ff4561-c0ff-490d-909f-15529ffeaf46" + "westus:ed58e99f-61bb-4448-a886-169ea48fe7cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "fc3f7adf-c937-478c-91db-35889fb63736" + "d50b1073-d20a-4e39-9189-07da792fc484" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002122Z:fc3f7adf-c937-478c-91db-35889fb63736" + "CENTRALUS:20170301T205147Z:d50b1073-d20a-4e39-9189-07da792fc484" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302/agreements/IntegrationAccountAgreement2827?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzAyL2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50MjgyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730/agreements/IntegrationAccountAgreement1794?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzczMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDE3OTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement2827\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement2827\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1794\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1794\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8710" ], "x-ms-client-request-id": [ - "784df107-ec36-49e7-a75a-f0b7e905d2aa" + "347dd826-9942-4f33-a86f-ea528dd0e4f4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:23.2215644Z\",\r\n \"changedTime\": \"2017-02-25T00:21:23.2219458Z\",\r\n \"metadata\": \"IntegrationAccountAgreement2827\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302/agreements/IntegrationAccountAgreement2827\",\r\n \"name\": \"IntegrationAccountAgreement2827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:48.0416191Z\",\r\n \"changedTime\": \"2017-03-01T20:51:48.0418141Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1794\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730/agreements/IntegrationAccountAgreement1794\",\r\n \"name\": \"IntegrationAccountAgreement1794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5822" + "5823" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:22 GMT" + "Wed, 01 Mar 2017 20:51:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a2fee185-c11f-4bc3-8911-1bde2fef7448" + "westus:5aa00119-64d2-4166-b765-1b520bda2145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "ca7841f8-000d-4f03-b84a-394ff64ac35b" + "b8758554-0d09-45df-b629-2d1858d345d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002123Z:ca7841f8-000d-4f03-b84a-394ff64ac35b" + "CENTRALUS:20170301T205148Z:b8758554-0d09-45df-b629-2d1858d345d5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302/agreements/IntegrationAccountAgreement2827?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzAyL2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50MjgyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730/agreements/IntegrationAccountAgreement1794?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzczMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDE3OTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "732a4764-3dde-4419-b94b-81a1dfb7578b" + "002e7650-e57e-48c6-a4a2-0f19ccb395ab" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:23.2215644Z\",\r\n \"changedTime\": \"2017-02-25T00:21:23.2219458Z\",\r\n \"metadata\": \"IntegrationAccountAgreement2827\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302/agreements/IntegrationAccountAgreement2827\",\r\n \"name\": \"IntegrationAccountAgreement2827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:48.0416191Z\",\r\n \"changedTime\": \"2017-03-01T20:51:48.0418141Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1794\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730/agreements/IntegrationAccountAgreement1794\",\r\n \"name\": \"IntegrationAccountAgreement1794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:22 GMT" + "Wed, 01 Mar 2017 20:51:47 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:2998cc58-f754-46a7-ba58-c9e527069fd4" + "westus:39e65f9e-a8b3-44ea-a424-a64a2dddf85e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14759" + "14929" ], "x-ms-correlation-request-id": [ - "7c2c6175-e6d1-4223-ac92-af20c248349b" + "b39e2520-7b68-467a-a967-efce0efec6d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002123Z:7c2c6175-e6d1-4223-ac92-af20c248349b" + "CENTRALUS:20170301T205148Z:b39e2520-7b68-467a-a967-efce0efec6d9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount302?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzAyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzczMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d54400ac-f0f7-4f57-994d-bf5479ebb8b7" + "c3ca5264-c698-4afe-9b41-84b7aaa10084" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:23 GMT" + "Wed, 01 Mar 2017 20:51:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2d275801-dbf9-40f5-84f5-529b74fb7af2" + "westus:5e39b491-a52e-48d1-b32e-b2c424013bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "432bf009-b0dd-4eb2-8628-33d7a5e17e3e" + "68a5f7ae-22d4-454c-bb66-47acb914ceaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002123Z:432bf009-b0dd-4eb2-8628-33d7a5e17e3e" + "CENTRALUS:20170301T205148Z:68a5f7ae-22d4-454c-bb66-47acb914ceaf" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateIntegrationAccountAgreementWithEnvelopeOverride": [ - "IntegrationAccount302", - "IntegrationAccountAgreement2827" + "IntegrationAccount3730", + "IntegrationAccountAgreement1794" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json index 4738b827b716..322975ebb3bd 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg5NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "7912d4eb-ffd4-4bbf-bc52-61dbb812e67f" + "3c1c83e5-e0a9-4ebf-84a0-4e9c60ba7425" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895\",\r\n \"name\": \"IntegrationAccount5895\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594\",\r\n \"name\": \"IntegrationAccount7594\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:28 GMT" + "Wed, 01 Mar 2017 20:51:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:45b8656c-f4e1-42f2-a56a-4d6eabf2409f" + "westus:31e8d6bd-6f08-4543-bfe9-d7fed24d2ccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1189" ], "x-ms-correlation-request-id": [ - "75d46e32-780e-4e31-a939-6dc34491ac71" + "5c2bfda3-6bb3-4374-9832-5e588cb8dbaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002128Z:75d46e32-780e-4e31-a939-6dc34491ac71" + "CENTRALUS:20170301T205156Z:5c2bfda3-6bb3-4374-9832-5e588cb8dbaf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895/agreements/IntegrationAccountAgreement3063?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg5NS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMwNjM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594/agreements/IntegrationAccountAgreement5654?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU5NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU2NTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement3063\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement3063\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5654\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5654\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8185" ], "x-ms-client-request-id": [ - "6411b59e-c02a-4fe2-8e0c-327dbb3aed30" + "77f7df9c-3cca-4dac-a9a0-c8e83ac57183" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:29.2857526Z\",\r\n \"changedTime\": \"2017-02-25T00:21:29.2865766Z\",\r\n \"metadata\": \"IntegrationAccountAgreement3063\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895/agreements/IntegrationAccountAgreement3063\",\r\n \"name\": \"IntegrationAccountAgreement3063\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:56.923864Z\",\r\n \"changedTime\": \"2017-03-01T20:51:56.9244778Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5654\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594/agreements/IntegrationAccountAgreement5654\",\r\n \"name\": \"IntegrationAccountAgreement5654\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5549" + "5548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:28 GMT" + "Wed, 01 Mar 2017 20:51:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:be068abb-3066-4fad-958d-4c44f65fc980" + "westus:07731586-8c69-43f7-86ea-5b1997fd328e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1188" ], "x-ms-correlation-request-id": [ - "f79b3cee-7d3b-4789-8a8c-d6e16cb80345" + "4d4fff01-3568-4149-a996-021dc3459ad6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002129Z:f79b3cee-7d3b-4789-8a8c-d6e16cb80345" + "CENTRALUS:20170301T205156Z:4d4fff01-3568-4149-a996-021dc3459ad6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg5NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "601f11f1-a7bd-4118-b6da-5ef4592f926e" + "7f92bac7-7f4e-442a-a884-db727fe63b4d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:29 GMT" + "Wed, 01 Mar 2017 20:51:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:79b7c2e0-b27b-4be7-a8cf-2d6f350a1a74" + "westus:59ba9937-df1e-47ed-8db9-d735fa37c812" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1187" ], "x-ms-correlation-request-id": [ - "a757308d-1ed6-4e14-8fa6-c2380832d043" + "7323620b-f064-456d-85a6-7907888906ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002129Z:a757308d-1ed6-4e14-8fa6-c2380832d043" + "CENTRALUS:20170301T205157Z:7323620b-f064-456d-85a6-7907888906ef" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5895/agreements/IntegrationAccountAgreement3063?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg5NS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMwNjM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594/agreements/IntegrationAccountAgreement5654?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU5NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU2NTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a1d1532-2f0f-4c93-b4fa-c9c4ef2edb61" + "062c5602-b947-47e8-8409-9b2979ff0372" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount5895' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7594' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:29 GMT" + "Wed, 01 Mar 2017 20:51:57 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "0eec5f85-7a3b-4aaa-99f3-aa7cb6e6850f" + "a15ca196-31ec-4a7e-bcbd-2658412b9ffb" ], "x-ms-correlation-request-id": [ - "0eec5f85-7a3b-4aaa-99f3-aa7cb6e6850f" + "a15ca196-31ec-4a7e-bcbd-2658412b9ffb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002129Z:0eec5f85-7a3b-4aaa-99f3-aa7cb6e6850f" + "CENTRALUS:20170301T205157Z:a15ca196-31ec-4a7e-bcbd-2658412b9ffb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountAgreementOnAccountDeletion": [ - "IntegrationAccount5895", - "IntegrationAccountAgreement3063" + "IntegrationAccount7594", + "IntegrationAccountAgreement5654" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json index 59ff02b5acce..f5dc0d019a36 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "5af88297-15e3-467d-8fc4-19be857c38de" + "0b74509d-4077-45b8-9c05-daa5bd3936a4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886\",\r\n \"name\": \"IntegrationAccount886\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800\",\r\n \"name\": \"IntegrationAccount9800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:33 GMT" + "Wed, 01 Mar 2017 20:52:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:06b436a8-a99e-4c23-8e01-60907c6450dd" + "westus:6b7283dd-e473-4fb4-ade8-cdf61fa827b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "d00a9cf5-d539-4c8b-9946-27dde4269a81" + "2397e5a4-87c5-4fa6-808a-5af47a2b3ade" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002134Z:d00a9cf5-d539-4c8b-9946-27dde4269a81" + "CENTRALUS:20170301T205204Z:2397e5a4-87c5-4fa6-808a-5af47a2b3ade" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement6685?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50NjY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement5606?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU2MDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6685\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6685\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5606\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5606\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "5862" ], "x-ms-client-request-id": [ - "743913f8-cb7f-4798-bef2-dedceb1cba10" + "bae5e8d2-569c-4811-b67b-8727120f26b4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:34.6145045Z\",\r\n \"changedTime\": \"2017-02-25T00:21:34.6152645Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6685\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement6685\",\r\n \"name\": \"IntegrationAccountAgreement6685\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:05.4115473Z\",\r\n \"changedTime\": \"2017-03-01T20:52:05.4123145Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5606\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement5606\",\r\n \"name\": \"IntegrationAccountAgreement5606\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3918" + "3919" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,56 +99,56 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:34 GMT" + "Wed, 01 Mar 2017 20:52:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f9b142ba-fb4b-404b-a711-b6aa6c8a339b" + "westus:31e85acd-d796-493a-ac6e-e4717ca65ea2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "dad1e676-62a9-4534-8706-a6024de33750" + "0919b6d7-e475-4abe-ab55-fc3bca065604" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002134Z:dad1e676-62a9-4534-8706-a6024de33750" + "CENTRALUS:20170301T205205Z:0919b6d7-e475-4abe-ab55-fc3bca065604" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement1151?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50MTE1MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement502?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDUwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1151\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1151\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement502\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement502\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "9757" + "9755" ], "x-ms-client-request-id": [ - "8e32eecd-5c93-4572-9f82-edfde3942a8f" + "0e287796-5839-4fa8-975f-76c8b99b179f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:35.0017185Z\",\r\n \"changedTime\": \"2017-02-25T00:21:35.002357Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1151\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement1151\",\r\n \"name\": \"IntegrationAccountAgreement1151\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:05.7994865Z\",\r\n \"changedTime\": \"2017-03-01T20:52:05.7999733Z\",\r\n \"metadata\": \"IntegrationAccountAgreement502\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement502\",\r\n \"name\": \"IntegrationAccountAgreement502\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6616" + "6615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,56 +160,56 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:34 GMT" + "Wed, 01 Mar 2017 20:52:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0b4b37d6-97f2-433d-bf5c-48cae4cecdf8" + "westus:984b7af7-8474-464b-b12b-112f670daa1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "38e6240e-8b4e-4432-8159-9d2dd3809e3a" + "24623624-ccf3-4e41-8964-04230e42d9eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002135Z:38e6240e-8b4e-4432-8159-9d2dd3809e3a" + "CENTRALUS:20170301T205205Z:24623624-ccf3-4e41-8964-04230e42d9eb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement25?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50MjU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement1109?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDExMDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement25\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement25\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1109\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1109\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8181" + "8185" ], "x-ms-client-request-id": [ - "7205ddd6-111b-40a6-99c6-ba9983b5f2c9" + "1a514a54-6cf1-4d0a-81c1-2e600e3971ae" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:35.2712239Z\",\r\n \"changedTime\": \"2017-02-25T00:21:35.2721842Z\",\r\n \"metadata\": \"IntegrationAccountAgreement25\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement25\",\r\n \"name\": \"IntegrationAccountAgreement25\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:06.2406077Z\",\r\n \"changedTime\": \"2017-03-01T20:52:06.2410809Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1109\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement1109\",\r\n \"name\": \"IntegrationAccountAgreement1109\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5542" + "5549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -221,47 +221,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:34 GMT" + "Wed, 01 Mar 2017 20:52:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ac6b0200-e77e-4ba3-8c06-ce8239bd0e98" + "westus:c3f729ef-18af-4635-843b-7a648d2fe456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "915de39a-c799-46e9-b6f9-d916fc0ab526" + "b704795f-a937-4d02-a894-fc60857c351f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002135Z:915de39a-c799-46e9-b6f9-d916fc0ab526" + "CENTRALUS:20170301T205206Z:b704795f-a937-4d02-a894-fc60857c351f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2L2FncmVlbWVudHM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMC9hZ3JlZW1lbnRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c320881f-f57e-4d55-805c-ccaf857e493d" + "44dc4ee0-e4ec-4b7d-acfb-a690eacb916a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:35.0017185Z\",\r\n \"changedTime\": \"2017-02-25T00:21:35.002357Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1151\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement1151\",\r\n \"name\": \"IntegrationAccountAgreement1151\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:35.2712239Z\",\r\n \"changedTime\": \"2017-02-25T00:21:35.2721842Z\",\r\n \"metadata\": \"IntegrationAccountAgreement25\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement25\",\r\n \"name\": \"IntegrationAccountAgreement25\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:34.6145045Z\",\r\n \"changedTime\": \"2017-02-25T00:21:34.6152645Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6685\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886/agreements/IntegrationAccountAgreement6685\",\r\n \"name\": \"IntegrationAccountAgreement6685\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:06.2406077Z\",\r\n \"changedTime\": \"2017-03-01T20:52:06.2410809Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1109\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement1109\",\r\n \"name\": \"IntegrationAccountAgreement1109\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:05.7994865Z\",\r\n \"changedTime\": \"2017-03-01T20:52:05.7999733Z\",\r\n \"metadata\": \"IntegrationAccountAgreement502\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement502\",\r\n \"name\": \"IntegrationAccountAgreement502\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:05.4115473Z\",\r\n \"changedTime\": \"2017-03-01T20:52:05.4123145Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5606\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement5606\",\r\n \"name\": \"IntegrationAccountAgreement5606\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -273,7 +273,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:34 GMT" + "Wed, 01 Mar 2017 20:52:06 GMT" ], "Pragma": [ "no-cache" @@ -286,38 +286,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:48acc348-9025-45c1-8e50-154065d38245" + "westus:74517624-1add-4e70-896c-29724a94382d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14852" ], "x-ms-correlation-request-id": [ - "1e71588b-f761-4179-9dc5-608de1115de9" + "5dfcc513-b770-4fab-b8d0-2cd0d96d548a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002135Z:1e71588b-f761-4179-9dc5-608de1115de9" + "CENTRALUS:20170301T205206Z:5dfcc513-b770-4fab-b8d0-2cd0d96d548a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount886?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8645b00-ba09-4b0a-8916-3f195dae2065" + "12e052d4-1e03-47be-9f31-4ef82ae07a29" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -332,25 +332,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:35 GMT" + "Wed, 01 Mar 2017 20:52:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7c4f72da-465b-4a5e-9590-e407c56acd48" + "westus:703a8d69-d5ae-4ff9-8d79-1a2ea5fb60e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "bd340039-993c-4209-9672-a410b2b99d7c" + "7ab0b3dc-b8a3-4cfa-8538-363c55e51b9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002135Z:bd340039-993c-4209-9672-a410b2b99d7c" + "CENTRALUS:20170301T205207Z:7ab0b3dc-b8a3-4cfa-8538-363c55e51b9b" ] }, "StatusCode": 200 @@ -358,10 +358,10 @@ ], "Names": { "ListIntegrationAccountAgreements": [ - "IntegrationAccount886", - "IntegrationAccountAgreement6685", - "IntegrationAccountAgreement1151", - "IntegrationAccountAgreement25" + "IntegrationAccount9800", + "IntegrationAccountAgreement5606", + "IntegrationAccountAgreement502", + "IntegrationAccountAgreement1109" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json index 23633f2fdaad..9612d8caba98 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzc3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "4b56e575-f30d-4d3e-b80f-4652e04a3b42" + "7b273170-27b4-47de-98f7-bb05627835ee" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652\",\r\n \"name\": \"IntegrationAccount6652\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776\",\r\n \"name\": \"IntegrationAccount3776\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:00 GMT" + "Wed, 01 Mar 2017 20:50:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:caf13245-8337-4819-b757-0ce52a0f4d31" + "westus:bf06edb4-a1f2-4705-aca7-198b2a4bcc7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "fda0be84-2972-4312-a2d2-50b9c61d9a55" + "208c1395-a35b-437e-81cd-c9658005c9f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002101Z:fda0be84-2972-4312-a2d2-50b9c61d9a55" + "CENTRALUS:20170301T205000Z:208c1395-a35b-437e-81cd-c9658005c9f4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652/certificates/IntegrationAccountCertificate6176?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MTc2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776/certificates/IntegrationAccountCertificate9836?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzc3Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU5ODM2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,18 +75,18 @@ "1088" ], "x-ms-client-request-id": [ - "db2edb78-7571-4874-af18-8dad5c3777f5" + "072a40ed-8cf8-4074-9c80-0fc19e7238c3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:21:01.8960296Z\",\r\n \"changedTime\": \"2017-02-25T00:21:01.8968772Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652/certificates/IntegrationAccountCertificate6176\",\r\n \"name\": \"IntegrationAccountCertificate6176\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:50:00.8661144Z\",\r\n \"changedTime\": \"2017-03-01T20:50:00.8663366Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776/certificates/IntegrationAccountCertificate9836\",\r\n \"name\": \"IntegrationAccountCertificate9836\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1434" @@ -101,44 +101,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:00 GMT" + "Wed, 01 Mar 2017 20:50:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:05b01ee2-3cf7-4131-9020-db0180533ff7" + "westus:8395d36f-0cac-4a35-9c9e-b43b0114a4bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "21f6e8e9-c2ab-4450-93aa-a3e16cfeec5c" + "3d49b1a4-9eb2-4219-94b4-be6ab611e04b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002101Z:21f6e8e9-c2ab-4450-93aa-a3e16cfeec5c" + "CENTRALUS:20170301T205000Z:3d49b1a4-9eb2-4219-94b4-be6ab611e04b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652/certificates/IntegrationAccountCertificate6176?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MTc2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776/certificates/IntegrationAccountCertificate9836?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzc3Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU5ODM2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d39ed36-c0cc-4e70-8756-d40c07685e34" + "2a0250b2-4b62-496f-baba-5fdf19bf361b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -153,44 +153,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:01 GMT" + "Wed, 01 Mar 2017 20:50:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:959d4743-8f57-495c-b38b-85353b3d3d59" + "westus:9882d8a0-c1cd-4d38-8be1-91c083cfe45a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "f7fca5f0-dd09-4f63-a784-6faa92e92859" + "3785dd82-0355-4da1-b302-85cff7c83199" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002102Z:f7fca5f0-dd09-4f63-a784-6faa92e92859" + "CENTRALUS:20170301T205001Z:3785dd82-0355-4da1-b302-85cff7c83199" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6652?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY1Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzc3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd03c708-188c-40b3-a132-343ce29e3e72" + "d0b5495a-839d-4995-9f1e-a373fbcaa765" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -205,25 +205,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:01 GMT" + "Wed, 01 Mar 2017 20:50:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:218a4305-4ba9-4479-8586-6adacdd869b3" + "westus:180542e5-442a-4768-895a-e657b5a6ab6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "307cbae1-82ff-4433-a15c-a105515ff333" + "98795897-d2d0-446a-b1d7-968d81af3828" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002102Z:307cbae1-82ff-4433-a15c-a105515ff333" + "CENTRALUS:20170301T205001Z:98795897-d2d0-446a-b1d7-968d81af3828" ] }, "StatusCode": 200 @@ -231,8 +231,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountCertificate": [ - "IntegrationAccount6652", - "IntegrationAccountCertificate6176" + "IntegrationAccount3776", + "IntegrationAccountCertificate9836" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json index c7961e796741..5117be50976e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "bb52ca14-b78b-475b-a7b5-796b80c12802" + "55f89c56-d3c2-4998-acf4-44b57fd258b1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739\",\r\n \"name\": \"IntegrationAccount739\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937\",\r\n \"name\": \"IntegrationAccount3937\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:46 GMT" + "Wed, 01 Mar 2017 20:49:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3e977fe9-3668-4ecf-a7b9-5697b7bdc001" + "westus:262b003c-0bf6-4421-9d1e-2f95d5699933" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,17 +53,17 @@ "1199" ], "x-ms-correlation-request-id": [ - "0e483c6c-0d4b-4aa3-80e4-a82478a2f036" + "77088a3e-752e-429c-a8df-e5efefd5077b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002047Z:0e483c6c-0d4b-4aa3-80e4-a82478a2f036" + "WESTUS2:20170301T204939Z:77088a3e-752e-429c-a8df-e5efefd5077b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTQ4MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937/certificates/IntegrationAccountCertificate8031?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkzNy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU4MDMxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "1088" ], "x-ms-client-request-id": [ - "417de579-1a00-4253-84fa-b0311b01b097" + "4f17c058-c863-41f6-9340-34b5a6de3929" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:49.3996839Z\",\r\n \"changedTime\": \"2017-02-25T00:20:49.4004187Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809\",\r\n \"name\": \"IntegrationAccountCertificate4809\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:40.5348271Z\",\r\n \"changedTime\": \"2017-03-01T20:49:40.5354168Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937/certificates/IntegrationAccountCertificate8031\",\r\n \"name\": \"IntegrationAccountCertificate8031\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1433" + "1434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,13 +101,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:48 GMT" + "Wed, 01 Mar 2017 20:49:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e4b63c51-9d39-4458-b3d4-b9d901bbabe5" + "westus:2a15d763-3af1-4633-a9b8-16fa2b81ba66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -116,33 +116,33 @@ "1198" ], "x-ms-correlation-request-id": [ - "e3057405-480c-4fd4-859e-cb0c8c958469" + "57516f96-1bd3-4bc5-adaf-6fc6fd1c1b88" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002049Z:e3057405-480c-4fd4-859e-cb0c8c958469" + "WESTUS2:20170301T204940Z:57516f96-1bd3-4bc5-adaf-6fc6fd1c1b88" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTQ4MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937/certificates/IntegrationAccountCertificate8031?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkzNy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU4MDMxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c2995a-cb9c-4c1e-8f3c-36248fed238d" + "b0b7ef1f-f473-4877-bb7e-e1736f355381" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:49.3996839Z\",\r\n \"changedTime\": \"2017-02-25T00:20:49.4004187Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739/certificates/IntegrationAccountCertificate4809\",\r\n \"name\": \"IntegrationAccountCertificate4809\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:40.5348271Z\",\r\n \"changedTime\": \"2017-03-01T20:49:40.5354168Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937/certificates/IntegrationAccountCertificate8031\",\r\n \"name\": \"IntegrationAccountCertificate8031\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:48 GMT" + "Wed, 01 Mar 2017 20:49:40 GMT" ], "Pragma": [ "no-cache" @@ -167,38 +167,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:ae770342-4950-4e7c-b447-24235afdcca0" + "westus:f2b99121-006b-4cd6-b5cd-df0b8657f943" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14826" ], "x-ms-correlation-request-id": [ - "064485d2-9636-49df-be41-aeb5098bb452" + "99478f5b-690c-46ce-9f73-21e5f46807f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002049Z:064485d2-9636-49df-be41-aeb5098bb452" + "WESTUS2:20170301T204940Z:99478f5b-690c-46ce-9f73-21e5f46807f8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount739?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4112a6-2e4e-4601-9443-3a3a978563a7" + "b39666ff-07a4-481a-aa41-0958da69f44a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -213,13 +213,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:48 GMT" + "Wed, 01 Mar 2017 20:49:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f544328c-aa07-4ca5-a9f0-0a3fa7924a88" + "westus:98fc76dd-56d7-41ac-9406-ee4cbff6b202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,10 +228,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "54b47dc6-941d-4e79-9075-c041bad98179" + "33714e00-f1d5-4b2c-94f1-bbf150ee8e40" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002049Z:54b47dc6-941d-4e79-9075-c041bad98179" + "WESTUS2:20170301T204941Z:33714e00-f1d5-4b2c-94f1-bbf150ee8e40" ] }, "StatusCode": 200 @@ -239,8 +239,8 @@ ], "Names": { "CreateAndGetIntegrationAccountCertificate": [ - "IntegrationAccount739", - "IntegrationAccountCertificate4809" + "IntegrationAccount3937", + "IntegrationAccountCertificate8031" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json index a5fc1092d030..cddff9d7bc3c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "7757d6a6-96d9-4181-95db-721b5455faec" + "ab898c28-de52-42ba-ba60-dce4bf9f442a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471\",\r\n \"name\": \"IntegrationAccount2471\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112\",\r\n \"name\": \"IntegrationAccount8112\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:54 GMT" + "Wed, 01 Mar 2017 20:49:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9e95e0a1-6832-4ba7-bfbe-e8a5e9001be5" + "westus:7b3d81da-c2c3-4181-8670-fc52cedd3d07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "94cf96f7-fd4e-4dde-9da6-7e9489b1d9b0" + "cb3388f5-d827-44d5-9aad-d053feed3b86" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002054Z:94cf96f7-fd4e-4dde-9da6-7e9489b1d9b0" + "CENTRALUS:20170301T204948Z:cb3388f5-d827-44d5-9aad-d053feed3b86" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MjA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MDc5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "1088" ], "x-ms-client-request-id": [ - "0029599f-1b3a-470d-b5f7-a34a050ebd18" + "fc46abd7-37d6-4c7f-b6f3-49b601f44716" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.3434443Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:49.2218676Z\",\r\n \"changedTime\": \"2017-03-01T20:49:49.2228598Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079\",\r\n \"name\": \"IntegrationAccountCertificate4079\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1433" + "1434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,32 +101,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:55 GMT" + "Wed, 01 Mar 2017 20:49:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5467de9b-9374-4b41-80e5-f9ebc87ce53e" + "westus:0dcf87c2-ac00-4d82-972b-d0992cc2a778" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "38145ea8-34c3-426a-afd3-de29641bdecd" + "76c4df9a-68b0-4770-a031-ebce93b075c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002055Z:38145ea8-34c3-426a-afd3-de29641bdecd" + "CENTRALUS:20170301T204949Z:76c4df9a-68b0-4770-a031-ebce93b075c0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MjA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MDc5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -138,18 +138,18 @@ "1088" ], "x-ms-client-request-id": [ - "8c928420-63b4-48ed-b330-bf1da561c9ff" + "caa65cdc-82e7-43b0-ba43-c4177b14a9bd" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.8645787Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:49.2218676Z\",\r\n \"changedTime\": \"2017-03-01T20:49:49.4971086Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079\",\r\n \"name\": \"IntegrationAccountCertificate4079\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -161,7 +161,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:55 GMT" + "Wed, 01 Mar 2017 20:49:48 GMT" ], "Pragma": [ "no-cache" @@ -174,42 +174,42 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b0d9c876-5984-47f5-a0c8-9891cdbeb6e6" + "westus:955090c6-5b61-4611-84da-10ad6a5417ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "9dd6b4d5-1044-464a-ad54-1155508f635a" + "f8b8644f-4488-4f28-840a-46d996229ac7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002055Z:9dd6b4d5-1044-464a-ad54-1155508f635a" + "CENTRALUS:20170301T204949Z:f8b8644f-4488-4f28-840a-46d996229ac7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MjA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MDc5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0abc6386-7ed8-4495-8834-4b81c63c29e5" + "c4b5f1bf-3082-46ea-a690-80d46a515a67" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:55.342704Z\",\r\n \"changedTime\": \"2017-02-25T00:20:55.8645787Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471/certificates/IntegrationAccountCertificate4205\",\r\n \"name\": \"IntegrationAccountCertificate4205\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:49.2218676Z\",\r\n \"changedTime\": \"2017-03-01T20:49:49.4971086Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079\",\r\n \"name\": \"IntegrationAccountCertificate4079\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:55 GMT" + "Wed, 01 Mar 2017 20:49:48 GMT" ], "Pragma": [ "no-cache" @@ -234,38 +234,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:d5e8b9a0-a6e5-4fc5-9504-b67eaef4ac11" + "westus:4f5398de-8882-4503-b9de-fc4fb29082fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14986" ], "x-ms-correlation-request-id": [ - "6b04e1b3-7d65-4c5b-b66f-95e1df82eae3" + "f6d15c3b-9572-47f9-8f2b-6512b16c81b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002055Z:6b04e1b3-7d65-4c5b-b66f-95e1df82eae3" + "CENTRALUS:20170301T204949Z:f6d15c3b-9572-47f9-8f2b-6512b16c81b8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2471?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjQ3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "028e21f5-b131-4b0f-8562-80b276b51b55" + "b79bdb14-507a-4720-9621-fe8bdb63e7f6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -280,25 +280,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:56 GMT" + "Wed, 01 Mar 2017 20:49:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0d370a26-07d4-41fc-a376-e88a79da6643" + "westus:c9a6400e-ba4f-43aa-b636-ff80b298d983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-correlation-request-id": [ - "01df942e-6670-4112-89ca-32784c397e9b" + "f7e1e33c-9388-4a05-9889-e3d6c2f06bcd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002056Z:01df942e-6670-4112-89ca-32784c397e9b" + "CENTRALUS:20170301T204950Z:f7e1e33c-9388-4a05-9889-e3d6c2f06bcd" ] }, "StatusCode": 200 @@ -306,8 +306,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountCertificate": [ - "IntegrationAccount2471", - "IntegrationAccountCertificate4205" + "IntegrationAccount8112", + "IntegrationAccountCertificate4079" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json index 837162a14959..fce9d953d3ee 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "53c2c15e-e883-4cd2-9c2e-b9a1ac78d08a" + "d599c050-17cf-44c3-a23e-b156ec9a384b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994\",\r\n \"name\": \"IntegrationAccount5994\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392\",\r\n \"name\": \"IntegrationAccount5392\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:03 GMT" + "Wed, 01 Mar 2017 20:50:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:59784719-bf56-468a-bad8-c10fc8558c30" + "westus:bbccf6fa-9df3-4506-821c-2e1a85b778fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "b7ce2b39-e4ef-420d-b24f-f7df6d2c177c" + "d818fad5-3649-41d9-b405-5e0ebf19491a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002104Z:b7ce2b39-e4ef-420d-b24f-f7df6d2c177c" + "CENTRALUS:20170301T205006Z:d818fad5-3649-41d9-b405-5e0ebf19491a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994/certificates/IntegrationAccountCertificate753?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5NC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3NTM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392/certificates/IntegrationAccountCertificate6612?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM5Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NjEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n }\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "346" ], "x-ms-client-request-id": [ - "9ee4fddf-26aa-4c34-8e62-07ece27f9882" + "37540ad0-3e51-428b-9536-fc9ad406d603" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:04.9581585Z\",\r\n \"changedTime\": \"2017-02-25T00:21:04.9583985Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994/certificates/IntegrationAccountCertificate753\",\r\n \"name\": \"IntegrationAccountCertificate753\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:06.635352Z\",\r\n \"changedTime\": \"2017-03-01T20:50:06.6357671Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392/certificates/IntegrationAccountCertificate6612\",\r\n \"name\": \"IntegrationAccountCertificate6612\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "697" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,44 +101,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:04 GMT" + "Wed, 01 Mar 2017 20:50:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8ef9ea9a-f8bc-4e64-9b1f-a76ea20fc8cf" + "westus:729f19b2-d3a5-4349-9391-4dfc060f0bb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "738c65cb-b422-4240-98d2-7730ed4267ca" + "deee8b71-ea5c-4a4e-8851-59d087fb2d22" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002104Z:738c65cb-b422-4240-98d2-7730ed4267ca" + "CENTRALUS:20170301T205006Z:deee8b71-ea5c-4a4e-8851-59d087fb2d22" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994/certificates/IntegrationAccountCertificate753?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5NC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3NTM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392/certificates/IntegrationAccountCertificate6612?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM5Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NjEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8884bf50-1454-4137-8b61-52e6bd39427e" + "58ef3879-adf5-4f2e-97f4-1898012f55f6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -153,44 +153,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:04 GMT" + "Wed, 01 Mar 2017 20:50:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0c004606-2577-4b26-85d6-429af057ce4c" + "westus:0903800f-821b-4e9e-9654-a132ffc361f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "fab51d06-75de-43ef-80ee-57c865ba1038" + "3f35400e-41c2-4c57-b5d0-74e507fc8b56" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002105Z:fab51d06-75de-43ef-80ee-57c865ba1038" + "CENTRALUS:20170301T205006Z:3f35400e-41c2-4c57-b5d0-74e507fc8b56" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5994?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a01210d3-172a-4d12-8df0-07b33c8cb5cc" + "cdea9d10-47a6-4c13-a8c6-36207fc4fe85" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -205,25 +205,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:04 GMT" + "Wed, 01 Mar 2017 20:50:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c46f46de-e27b-44de-816c-c90bf4e982d5" + "westus:0a336f0c-a75f-4986-acce-e6e09f43b41d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "b83431f9-7ab3-40d2-9049-71064dd0c4a0" + "4fc844aa-4fcc-4358-81d6-b23f844fc69a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002105Z:b83431f9-7ab3-40d2-9049-71064dd0c4a0" + "CENTRALUS:20170301T205007Z:4fc844aa-4fcc-4358-81d6-b23f844fc69a" ] }, "StatusCode": 200 @@ -231,8 +231,8 @@ ], "Names": { "CreateIntegrationAccountCertificateWithPrivateKey": [ - "IntegrationAccount5994", - "IntegrationAccountCertificate753" + "IntegrationAccount5392", + "IntegrationAccountCertificate6612" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json index 7795a05ba31c..b78471803315 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDUwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "cd4b56e5-6add-4404-996c-cbe61686d7fa" + "b833dada-392d-4220-a69d-e211b7f812df" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772\",\r\n \"name\": \"IntegrationAccount5772\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505\",\r\n \"name\": \"IntegrationAccount4505\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:44 GMT" + "Wed, 01 Mar 2017 20:49:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3c4cb829-032f-4b7b-9636-88d39baac6be" + "westus:c6896f54-324d-4d81-892f-9b113ffd7075" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "7b5f968c-32db-4fb4-839b-431ab8dbe870" + "227fc976-5e0e-43fb-9e4f-eec2477949ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002045Z:7b5f968c-32db-4fb4-839b-431ab8dbe870" + "WESTUS2:20170301T204935Z:227fc976-5e0e-43fb-9e4f-eec2477949ef" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772/certificates/IntegrationAccountCertificate6964?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2OTY0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505/certificates/IntegrationAccountCertificate7877?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDUwNS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3ODc3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,18 +75,18 @@ "799" ], "x-ms-client-request-id": [ - "7ca01e51-38ee-4fbd-aa4e-c31a78ac4b30" + "2f6df939-8d5f-4a7f-99cf-81c0638ac9df" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:45.7540057Z\",\r\n \"changedTime\": \"2017-02-25T00:20:45.7546271Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772/certificates/IntegrationAccountCertificate6964\",\r\n \"name\": \"IntegrationAccountCertificate6964\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:36.3084513Z\",\r\n \"changedTime\": \"2017-03-01T20:49:36.3086732Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505/certificates/IntegrationAccountCertificate7877\",\r\n \"name\": \"IntegrationAccountCertificate7877\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1139" @@ -101,44 +101,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:45 GMT" + "Wed, 01 Mar 2017 20:49:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:36da9ec0-41b1-492f-aefe-343f00ff618f" + "westus:d7376690-d116-4054-90aa-5ec2113d0906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "f2a4553b-0270-40dd-9ca6-f5f92c78ebdd" + "84a9e5b2-8e9f-4f09-b884-1c502f03661d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002045Z:f2a4553b-0270-40dd-9ca6-f5f92c78ebdd" + "WESTUS2:20170301T204936Z:84a9e5b2-8e9f-4f09-b884-1c502f03661d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772/certificates/IntegrationAccountCertificate6964?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2OTY0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505/certificates/IntegrationAccountCertificate7877?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDUwNS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3ODc3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acbd2e56-020d-4dcf-8338-b96c5720b4c7" + "6016b0c7-14f5-42d1-b549-9e8f5ced2aa8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -153,44 +153,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:45 GMT" + "Wed, 01 Mar 2017 20:49:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:961b0ec7-f6af-4e8f-ab02-655be03618d7" + "westus:8e2c4c4c-e468-4242-8fc6-f517adf44aeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "86f881fc-72bd-4333-9456-a2fa5ca5322e" + "eade3c79-0468-4902-a79a-bade3489feb3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002046Z:86f881fc-72bd-4333-9456-a2fa5ca5322e" + "WESTUS2:20170301T204936Z:eade3c79-0468-4902-a79a-bade3489feb3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5772?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDUwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc1d902f-4856-4259-88be-7becddec8322" + "45870e57-d2e2-4dc8-b24b-2abc340a1dce" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -205,25 +205,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:45 GMT" + "Wed, 01 Mar 2017 20:49:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8a0742b0-d504-4c83-ae78-a8d781e4bc80" + "westus:32ddb626-fb69-4e0f-8194-b98a259a7281" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "92e96ebd-073b-48b6-9156-f24bc60f6be2" + "6da67337-fea8-48c8-a8b1-18b5d3c9e30d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002046Z:92e96ebd-073b-48b6-9156-f24bc60f6be2" + "WESTUS2:20170301T204936Z:6da67337-fea8-48c8-a8b1-18b5d3c9e30d" ] }, "StatusCode": 200 @@ -231,8 +231,8 @@ ], "Names": { "CreateIntegrationAccountCertificateWithPublicKey": [ - "IntegrationAccount5772", - "IntegrationAccountCertificate6964" + "IntegrationAccount4505", + "IntegrationAccountCertificate7877" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json index 4b65deb0f116..6cbf1ba996a0 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "0d133636-8182-46e0-a7ce-0fe2e135e8e1" + "cbf08c5a-05e0-4922-8a82-76ccb48af169" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887\",\r\n \"name\": \"IntegrationAccount887\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546\",\r\n \"name\": \"IntegrationAccount4546\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:50 GMT" + "Wed, 01 Mar 2017 20:49:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f100b291-df05-4612-a41b-e6ce75dd5c7d" + "westus:a1914999-8d9b-4ace-86e3-7341df6ee818" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "60f52681-4d9a-40a1-9904-190b266fd315" + "7f7a168d-107b-473f-9d14-9bd4445f2d39" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002051Z:60f52681-4d9a-40a1-9904-190b266fd315" + "WESTUS2:20170301T204943Z:7f7a168d-107b-473f-9d14-9bd4445f2d39" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887/certificates/IntegrationAccountCertificate2920?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTI5MjA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546/certificates/IntegrationAccountCertificate6742?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU0Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NzQyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "1088" ], "x-ms-client-request-id": [ - "d7a1906a-7df6-4a89-8488-af6574780201" + "6b02e357-0c04-4270-b40e-4b4680011b44" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:51.9320654Z\",\r\n \"changedTime\": \"2017-02-25T00:20:51.9360857Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887/certificates/IntegrationAccountCertificate2920\",\r\n \"name\": \"IntegrationAccountCertificate2920\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:44.6013822Z\",\r\n \"changedTime\": \"2017-03-01T20:49:44.6015625Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546/certificates/IntegrationAccountCertificate6742\",\r\n \"name\": \"IntegrationAccountCertificate6742\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1433" + "1434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,44 +101,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:51 GMT" + "Wed, 01 Mar 2017 20:49:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d3b6a38a-bab3-40b5-b026-775697589971" + "westus:848e6abb-4b15-4161-9d5e-52d5163b6704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "eb3c9873-7fbe-4088-96e2-afc61fbba4da" + "22f61394-06fe-492a-8080-5c8f206293bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002051Z:eb3c9873-7fbe-4088-96e2-afc61fbba4da" + "WESTUS2:20170301T204944Z:22f61394-06fe-492a-8080-5c8f206293bf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21f7b792-c002-4a5d-96fa-7c1863df0c94" + "2bd10a78-a6f7-4ab4-b013-33c9d4e0dc20" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -153,50 +153,50 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:52 GMT" + "Wed, 01 Mar 2017 20:49:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ff0e7d1d-5af7-4ce1-93d2-183be9a0306f" + "westus:e51e508c-2b6f-4750-a1df-b996f6bf63ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "8024d48f-9c93-4276-b3a3-28a87d3b86a8" + "ac43b883-baf0-42a3-af5c-bb904cc0fc8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002052Z:8024d48f-9c93-4276-b3a3-28a87d3b86a8" + "WESTUS2:20170301T204945Z:ac43b883-baf0-42a3-af5c-bb904cc0fc8d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount887/certificates/IntegrationAccountCertificate2920?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODg3L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTI5MjA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546/certificates/IntegrationAccountCertificate6742?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU0Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NzQyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "855859f6-da10-4c55-8d84-49e24ee3386f" + "94d9ccd7-18eb-4ef6-bc3c-930b21e90ba0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount887' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount4546' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "167" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,7 +208,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:52 GMT" + "Wed, 01 Mar 2017 20:49:44 GMT" ], "Pragma": [ "no-cache" @@ -217,13 +217,13 @@ "gateway" ], "x-ms-request-id": [ - "82b627ee-78e9-4141-b969-cdd68674a805" + "1e6001c6-3a62-41d6-b238-b78b2a0e06ea" ], "x-ms-correlation-request-id": [ - "82b627ee-78e9-4141-b969-cdd68674a805" + "1e6001c6-3a62-41d6-b238-b78b2a0e06ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002052Z:82b627ee-78e9-4141-b969-cdd68674a805" + "WESTUS2:20170301T204945Z:1e6001c6-3a62-41d6-b238-b78b2a0e06ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,8 +234,8 @@ ], "Names": { "DeleteIntegrationAccountCertificateOnAccountDeletion": [ - "IntegrationAccount887", - "IntegrationAccountCertificate2920" + "IntegrationAccount4546", + "IntegrationAccountCertificate6742" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json index d07ad1fc94e9..a731e976ec4f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM4OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "f47ef56c-27bb-4877-92f8-a7b2ac74bfb7" + "148d4164-38b6-407e-b064-fd19b8bd3e59" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173\",\r\n \"name\": \"IntegrationAccount173\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389\",\r\n \"name\": \"IntegrationAccount7389\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:57 GMT" + "Wed, 01 Mar 2017 20:49:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:eda6b6d8-b060-403f-8d5c-7698e6f2f685" + "westus:41056cee-e5d5-469d-8f72-ed131270e62c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "ce159d73-d82f-49b1-8fdb-a9cde596fa81" + "81186a78-c43b-4d6c-9c0f-f680c1c718a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002058Z:ce159d73-d82f-49b1-8fdb-a9cde596fa81" + "CENTRALUS:20170301T204954Z:81186a78-c43b-4d6c-9c0f-f680c1c718a5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTE1OTI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389/certificates/IntegrationAccountCertificate674?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM4OS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NzQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "1088" ], "x-ms-client-request-id": [ - "ec35a891-82bb-4dc2-9ec5-6cf92233398a" + "7f3299ee-7e2c-40c2-8a04-17a1aba1cbfb" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:59.0101599Z\",\r\n \"changedTime\": \"2017-02-25T00:20:59.0103597Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592\",\r\n \"name\": \"IntegrationAccountCertificate1592\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:55.2080312Z\",\r\n \"changedTime\": \"2017-03-01T20:49:55.208769Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389/certificates/IntegrationAccountCertificate674\",\r\n \"name\": \"IntegrationAccountCertificate674\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1433" + "1431" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,48 +101,48 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:58 GMT" + "Wed, 01 Mar 2017 20:49:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e97407d0-549e-4375-85bd-8fd902728e8e" + "westus:2286149d-3a0a-4933-b76a-197aae405fcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "9b50c0b0-655a-45b2-8721-b5010e0fcf21" + "a0067896-c039-4710-ac20-41ce740f50c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002058Z:9b50c0b0-655a-45b2-8721-b5010e0fcf21" + "CENTRALUS:20170301T204955Z:a0067896-c039-4710-ac20-41ce740f50c2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389/certificates?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM4OS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50087800-aa44-43b8-94f5-2bece3da4eea" + "0fc66e62-ca74-438f-884c-8148916c959d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-25T00:20:59.0101599Z\",\r\n \"changedTime\": \"2017-02-25T00:20:59.0103597Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173/certificates/IntegrationAccountCertificate1592\",\r\n \"name\": \"IntegrationAccountCertificate1592\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:55.2080312Z\",\r\n \"changedTime\": \"2017-03-01T20:49:55.208769Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389/certificates/IntegrationAccountCertificate674\",\r\n \"name\": \"IntegrationAccountCertificate674\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:58 GMT" + "Wed, 01 Mar 2017 20:49:54 GMT" ], "Pragma": [ "no-cache" @@ -167,38 +167,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1287ddcf-d572-4345-abab-eb41dd247c50" + "westus:05a1e63c-1b42-421f-9935-9f5239b0205a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14538" + "14938" ], "x-ms-correlation-request-id": [ - "8ddd83d8-8af9-4f42-bb74-7482704a36a8" + "8e6f0ed7-1f13-41bc-80bb-1fbe725b01d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002059Z:8ddd83d8-8af9-4f42-bb74-7482704a36a8" + "CENTRALUS:20170301T204955Z:8e6f0ed7-1f13-41bc-80bb-1fbe725b01d1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount173?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTczP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM4OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "510782f8-b91f-4a88-b228-05ad3ffbd813" + "e5a0ec80-4080-400d-8cff-a2801ca1ce8a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -213,25 +213,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:58 GMT" + "Wed, 01 Mar 2017 20:49:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9ba456b4-5830-4c1e-ba09-4a17f8b1bde0" + "westus:3ccf3816-bcd5-46b8-9ce1-14885cdcd73f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "eb83b7d4-6e6b-4df2-a6c0-020dc048d960" + "a2c8fdf1-d6e3-4bcf-a601-bf28a1339017" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002059Z:eb83b7d4-6e6b-4df2-a6c0-020dc048d960" + "CENTRALUS:20170301T204956Z:a2c8fdf1-d6e3-4bcf-a601-bf28a1339017" ] }, "StatusCode": 200 @@ -239,8 +239,8 @@ ], "Names": { "ListIntegrationAccountCertificates": [ - "IntegrationAccount173", - "IntegrationAccountCertificate1592" + "IntegrationAccount7389", + "IntegrationAccountCertificate674" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json index 8ce59f2c6a2f..57791ff648eb 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc3OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "34851dba-f8ff-45d9-9365-61fd26773b04" + "02e68653-6f07-4250-9b49-43bc7293ba60" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778\",\r\n \"name\": \"IntegrationAccount1778\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784\",\r\n \"name\": \"IntegrationAccount9784\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,56 +38,56 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:33 GMT" + "Wed, 01 Mar 2017 20:50:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:27d07142-157c-4a29-9680-d01b50cf7447" + "westus:8d4fccf8-430f-4a0b-b7f5-c9935a75fc60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "a2ec63c9-b362-4b92-8f28-5b2234e35211" + "54a83b57-664b-4c64-9084-8b0e8ea0afca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002034Z:a2ec63c9-b362-4b92-8f28-5b2234e35211" + "CENTRALUS:20170301T205057Z:54a83b57-664b-4c64-9084-8b0e8ea0afca" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778/maps/IntegrationAccountMap5611?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc3OC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU2MTE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784/maps/IntegrationAccountMap880?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDg4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap5611\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap5611\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap880\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap880\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3514" + "3512" ], "x-ms-client-request-id": [ - "28dec499-a375-4e56-9691-0393c3dcdbec" + "cc0b0e1f-6bec-432f-b6c4-2b1de6d2a838" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu18by01.blob.core.windows.net/integrationaccountscf402499fcae453283dea85faa806427/99D1E_XSLT_INTEGRATIONACCOUNTMAP5611-9A7CB2B74F7349E0897D5277EB90BCA8?sv=2016-05-31&sr=b&sig=ZGsqgmFWLOskmVNuwimF0Uysl37bkK2qGbUE8SL%2FLlY%3D&se=2017-02-25T04%3A20%3A34Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141D67D3A5\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:34.6221241Z\",\r\n \"changedTime\": \"2017-02-25T00:20:34.6271015Z\",\r\n \"metadata\": \"IntegrationAccountMap5611\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778/maps/IntegrationAccountMap5611\",\r\n \"name\": \"IntegrationAccountMap5611\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccountsdc08429a22a24167b89a572e6c40f698/99D1E_XSLT_INTEGRATIONACCOUNTMAP880-11172EFA4ED949C2BEA4BB0EE252F0DC?sv=2016-05-31&sr=b&sig=vH7WLj6zvY%2Bbwh1ILc39g0KzT4ZeH0sEh4OWn6VfTkA%3D&se=2017-03-02T00%3A50%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A97AAF04\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:58.0853203Z\",\r\n \"changedTime\": \"2017-03-01T20:50:58.08561Z\",\r\n \"metadata\": \"IntegrationAccountMap880\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784/maps/IntegrationAccountMap880\",\r\n \"name\": \"IntegrationAccountMap880\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "855" + "849" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:34 GMT" + "Wed, 01 Mar 2017 20:50:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:041ab138-7971-4c49-89d3-f68cab56e949" + "westus:2826f7d4-4d21-4e8f-b436-8b03b5f1c6d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "265ac82a-668a-490f-98af-10ef4789d2ca" + "ceda8d64-6d82-4ea2-96ed-9c2b4b9aa193" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002034Z:265ac82a-668a-490f-98af-10ef4789d2ca" + "CENTRALUS:20170301T205058Z:ceda8d64-6d82-4ea2-96ed-9c2b4b9aa193" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778/maps/IntegrationAccountMap5611?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc3OC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU2MTE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784/maps/IntegrationAccountMap880?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDg4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d71f3ba-cf5e-4983-84df-98574eb830c1" + "4b065cce-9023-4150-83e5-83572b8247f9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -151,44 +151,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:34 GMT" + "Wed, 01 Mar 2017 20:50:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2bc0cca5-a0a5-4d8d-9936-061416e5c201" + "westus:6a80a4cc-5ac1-4a2d-8875-5b3c356d9dd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "aa4f9317-e916-47b1-89a1-60ea05cf47fd" + "54725351-92e4-4966-9538-b4020d53199e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002034Z:aa4f9317-e916-47b1-89a1-60ea05cf47fd" + "CENTRALUS:20170301T205058Z:54725351-92e4-4966-9538-b4020d53199e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1778?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc3OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2049b598-5ad1-430d-9e94-dc19699963b9" + "8e966bea-1b27-42a8-b4b0-594d6d8a6b81" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -203,25 +203,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:34 GMT" + "Wed, 01 Mar 2017 20:50:59 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2b6b6bc3-e3f1-4081-97a4-6d92ee9cae27" + "westus:42c0125f-dd26-4e7a-b8a4-0c56f0b0dca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "219fb562-fe6d-4009-b6f4-9e331c5885c5" + "9763b4d2-58d0-4a45-9019-6189c38c968b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002035Z:219fb562-fe6d-4009-b6f4-9e331c5885c5" + "CENTRALUS:20170301T205059Z:9763b4d2-58d0-4a45-9019-6189c38c968b" ] }, "StatusCode": 200 @@ -229,8 +229,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountMap": [ - "IntegrationAccount1778", - "IntegrationAccountMap5611" + "IntegrationAccount9784", + "IntegrationAccountMap880" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json index 802b245055b3..1838086eda76 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "67a86389-5628-4bd4-a074-4fbe0ec5b0c5" + "2ccb6add-f9f6-4804-ad5e-571609ae3ad3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772\",\r\n \"name\": \"IntegrationAccount6772\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:38 GMT" + "Wed, 01 Mar 2017 20:51:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a6e742fa-2dc4-457b-b2df-3f07d5ff0967" + "westus:f520c487-6d43-4469-989a-bf90eaab409e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-correlation-request-id": [ - "6c57e789-e147-45e5-b3a8-650236ca72a8" + "59a2f3ce-3636-43b8-933b-ec11050d3775" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002038Z:6c57e789-e147-45e5-b3a8-650236ca72a8" + "CENTRALUS:20170301T205108Z:59a2f3ce-3636-43b8-933b-ec11050d3775" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794/maps/IntegrationAccountMap6107?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc5NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDYxMDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772/maps/IntegrationAccountMap2686?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc3Mi9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDI2ODY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap6107\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap6107\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap2686\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap2686\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "3514" ], "x-ms-client-request-id": [ - "707ca3aa-b346-421a-aec4-19fcf8bc9afe" + "adb26e6b-bc60-4e7c-88c4-9fcac64231c0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/integrationaccountsd403622cbdaf400895cefa7a712df19e/99D1E_XSLT_INTEGRATIONACCOUNTMAP6107-69E5AC464F154D21B4417DD9A8A01BB0?sv=2016-05-31&sr=b&sig=fmmtrlMnWgNb7sJ6ODHTv6aMvlVUUkK7Gx1MleJR96c%3D&se=2017-02-25T04%3A20%3A39Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1420BA5FFF\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:39.2545843Z\",\r\n \"changedTime\": \"2017-02-25T00:20:39.2555711Z\",\r\n \"metadata\": \"IntegrationAccountMap6107\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794/maps/IntegrationAccountMap6107\",\r\n \"name\": \"IntegrationAccountMap6107\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccountsa3f4b5b6398c48bab330a34e04f93768/99D1E_XSLT_INTEGRATIONACCOUNTMAP2686-F5593CB6356B408D92F6F71BC268CE4E?sv=2016-05-31&sr=b&sig=Fq13Js6U2zGEMqpZlP7TpqhoRA5Y89xJlTl75aTWWtY%3D&se=2017-03-02T00%3A51%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4AF9FF81F\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:08.3962646Z\",\r\n \"changedTime\": \"2017-03-01T20:51:08.3965514Z\",\r\n \"metadata\": \"IntegrationAccountMap2686\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772/maps/IntegrationAccountMap2686\",\r\n \"name\": \"IntegrationAccountMap2686\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ "853" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:38 GMT" + "Wed, 01 Mar 2017 20:51:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:650d4c83-7b72-4b84-a680-9d534ffb4db1" + "westus:e50cd4ed-8f71-4600-85c3-43d5f4cd01b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-correlation-request-id": [ - "eae85177-1ec2-4479-9a79-dcc5d94bac70" + "55a82f33-ae97-4594-ac45-c56918a5b09e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002039Z:eae85177-1ec2-4479-9a79-dcc5d94bac70" + "CENTRALUS:20170301T205108Z:55a82f33-ae97-4594-ac45-c56918a5b09e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794/maps/IntegrationAccountMap6107?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc5NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDYxMDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772/maps/IntegrationAccountMap2686?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc3Mi9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDI2ODY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01fd769d-add9-4cfb-af48-de944035c02f" + "d9dd7032-ed9f-405e-9fa2-ddf0a65f90c4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/integrationaccountsd403622cbdaf400895cefa7a712df19e/99D1E_XSLT_INTEGRATIONACCOUNTMAP6107-69E5AC464F154D21B4417DD9A8A01BB0?sv=2016-05-31&sr=b&sig=fmmtrlMnWgNb7sJ6ODHTv6aMvlVUUkK7Gx1MleJR96c%3D&se=2017-02-25T04%3A20%3A39Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1420BA5FFF\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:39.2545843Z\",\r\n \"changedTime\": \"2017-02-25T00:20:39.2555711Z\",\r\n \"metadata\": \"IntegrationAccountMap6107\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794/maps/IntegrationAccountMap6107\",\r\n \"name\": \"IntegrationAccountMap6107\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccountsa3f4b5b6398c48bab330a34e04f93768/99D1E_XSLT_INTEGRATIONACCOUNTMAP2686-F5593CB6356B408D92F6F71BC268CE4E?sv=2016-05-31&sr=b&sig=Fq13Js6U2zGEMqpZlP7TpqhoRA5Y89xJlTl75aTWWtY%3D&se=2017-03-02T00%3A51%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4AF9FF81F\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:08.3962646Z\",\r\n \"changedTime\": \"2017-03-01T20:51:08.3965514Z\",\r\n \"metadata\": \"IntegrationAccountMap2686\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772/maps/IntegrationAccountMap2686\",\r\n \"name\": \"IntegrationAccountMap2686\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:38 GMT" + "Wed, 01 Mar 2017 20:51:07 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:74cb91cd-e573-4fb3-9236-b435c6440530" + "westus:259dca06-f7cb-42fa-84d9-80040d009119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14681" + "14902" ], "x-ms-correlation-request-id": [ - "d57cc9ca-5bde-4d09-aba3-f9b0efae8d50" + "b8595cc4-91b5-4037-80b0-7f19f50e556f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002039Z:d57cc9ca-5bde-4d09-aba3-f9b0efae8d50" + "CENTRALUS:20170301T205108Z:b8595cc4-91b5-4037-80b0-7f19f50e556f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94e15fc7-fd57-43c8-95c3-5349537a4c51" + "155689e5-f7c5-4cee-acf6-e6a3e6b6ecfe" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:39 GMT" + "Wed, 01 Mar 2017 20:51:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7a09545e-2331-4999-ac80-c6c706cbe46e" + "westus:2683f539-a734-42cc-9013-990cbb5b3667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-correlation-request-id": [ - "ccbb78ef-9855-457e-aed9-57a159b7f320" + "f37b171a-815b-4c86-97b4-669fe5a8e37d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002040Z:ccbb78ef-9855-457e-aed9-57a159b7f320" + "CENTRALUS:20170301T205109Z:f37b171a-815b-4c86-97b4-669fe5a8e37d" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountMap": [ - "IntegrationAccount8794", - "IntegrationAccountMap6107" + "IntegrationAccount6772", + "IntegrationAccountMap2686" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json index 5e65a8522f0d..72d71efe2b84 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "e1cdf012-118b-455b-9677-dc539a2b8c72" + "e3900dc6-47e3-41a3-9083-2578bc83f3e0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581\",\r\n \"name\": \"IntegrationAccount2581\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704\",\r\n \"name\": \"IntegrationAccount4704\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:26 GMT" + "Wed, 01 Mar 2017 20:50:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9ca01f2e-cfa4-4083-acdb-c807b917644f" + "westus:f3420a51-5cce-4546-81cf-815de78ec4f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "a6d3f30a-1ae0-49b6-9415-e3d9a6bcdfc9" + "a933481e-ffd3-4bea-b7cf-86ddaaf06075" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002027Z:a6d3f30a-1ae0-49b6-9415-e3d9a6bcdfc9" + "CENTRALUS:20170301T205045Z:a933481e-ffd3-4bea-b7cf-86ddaaf06075" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDEwNDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwNC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIyNzA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap1047\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap1047\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap2270\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap2270\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "3514" ], "x-ms-client-request-id": [ - "ca878b6d-7e28-4bd5-9eb3-2019e7e01f7e" + "9357ecd2-30cf-483a-bccf-4131dbbf24a1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu21by01.blob.core.windows.net/integrationaccountsa34fd4c885a94485a43952d486a1f616/99D1E_XSLT_INTEGRATIONACCOUNTMAP1047-C7CC3493819E4F91A563E61CEF081BC1?sv=2016-05-31&sr=b&sig=pBAL1%2BcBUpmCXag%2Bqx9P%2FU4xF9mw1%2FU8gLblN3i7i4I%3D&se=2017-02-25T04%3A20%3A27Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1419425086\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:27.4618778Z\",\r\n \"changedTime\": \"2017-02-25T00:20:27.4693496Z\",\r\n \"metadata\": \"IntegrationAccountMap1047\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047\",\r\n \"name\": \"IntegrationAccountMap1047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccountseb3eeef0bb7643a3ae9e67a2a194d988/99D1E_XSLT_INTEGRATIONACCOUNTMAP2270-12FDD829CEDC4C17B7741AA03DB943C7?sv=2016-05-31&sr=b&sig=%2FhEMqnXs3%2FkvkM3sQcYaKcWkZEmTdlKYBYe1cfpUhgc%3D&se=2017-03-02T00%3A50%3A45Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A278A302\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:45.8695637Z\",\r\n \"changedTime\": \"2017-03-01T20:50:45.8700337Z\",\r\n \"metadata\": \"IntegrationAccountMap2270\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270\",\r\n \"name\": \"IntegrationAccountMap2270\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "861" + "857" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:27 GMT" + "Wed, 01 Mar 2017 20:50:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f3bcbabd-72a7-4821-8de4-55b35cebb5bc" + "westus:d9c389e1-5116-4e51-abd1-129291a6ab56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "f1978838-08d7-413c-9ed8-cd7121569b68" + "aad8bbad-fb7c-4793-a5e6-05b6d9d53323" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002027Z:f1978838-08d7-413c-9ed8-cd7121569b68" + "CENTRALUS:20170301T205045Z:aad8bbad-fb7c-4793-a5e6-05b6d9d53323" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDEwNDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwNC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIyNzA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "3417" ], "x-ms-client-request-id": [ - "2dd7367a-8511-48c9-8750-3c67e4f0e50d" + "90b7fbcc-7c99-4b6d-895f-765e95e65aea" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu21by01.blob.core.windows.net/integrationaccountsa34fd4c885a94485a43952d486a1f616/99D1E_XSLT_INTEGRATIONACCOUNTMAP1047-B66D93AE473D4D4EB9068848786D4A7D?sv=2016-05-31&sr=b&sig=uF8P0l8AFV%2F2ccIHvMqsnUQ0CTReWcBRzwFa6kSACY0%3D&se=2017-02-25T04%3A20%3A27Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141967E060\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:27.4618778Z\",\r\n \"changedTime\": \"2017-02-25T00:20:27.7025991Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047\",\r\n \"name\": \"IntegrationAccountMap1047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccountseb3eeef0bb7643a3ae9e67a2a194d988/99D1E_XSLT_INTEGRATIONACCOUNTMAP2270-236FE59B54034240BA221167780C4069?sv=2016-05-31&sr=b&sig=yH3D%2FHkdJNfgPtKVTiWTNdkb7hJH0kcotlKIA6OTjBM%3D&se=2017-03-02T00%3A50%3A46Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A2A4E3E7\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:45.8695637Z\",\r\n \"changedTime\": \"2017-03-01T20:50:46.169407Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270\",\r\n \"name\": \"IntegrationAccountMap2270\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:27 GMT" + "Wed, 01 Mar 2017 20:50:45 GMT" ], "Pragma": [ "no-cache" @@ -170,41 +170,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:3a320fab-0e17-405d-a016-292d076bbe9b" + "westus:a7891f64-ba8b-44a9-823e-8d906ef08c4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "e8a0d84a-c902-428a-a203-6b4b4e3fca92" + "7d48fa11-4d86-40a6-8be2-2d06dc1a629e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002027Z:e8a0d84a-c902-428a-a203-6b4b4e3fca92" + "CENTRALUS:20170301T205046Z:7d48fa11-4d86-40a6-8be2-2d06dc1a629e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDEwNDc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwNC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIyNzA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76a2b97e-b379-40de-a3ff-f39fd1feb00b" + "d80f2799-0d28-477a-bbcd-96ca742d4c08" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu21by01.blob.core.windows.net/integrationaccountsa34fd4c885a94485a43952d486a1f616/99D1E_XSLT_INTEGRATIONACCOUNTMAP1047-B66D93AE473D4D4EB9068848786D4A7D?sv=2016-05-31&sr=b&sig=uF8P0l8AFV%2F2ccIHvMqsnUQ0CTReWcBRzwFa6kSACY0%3D&se=2017-02-25T04%3A20%3A27Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141967E060\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:27.4618778Z\",\r\n \"changedTime\": \"2017-02-25T00:20:27.7025991Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581/maps/IntegrationAccountMap1047\",\r\n \"name\": \"IntegrationAccountMap1047\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccountseb3eeef0bb7643a3ae9e67a2a194d988/99D1E_XSLT_INTEGRATIONACCOUNTMAP2270-236FE59B54034240BA221167780C4069?sv=2016-05-31&sr=b&sig=yH3D%2FHkdJNfgPtKVTiWTNdkb7hJH0kcotlKIA6OTjBM%3D&se=2017-03-02T00%3A50%3A46Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A2A4E3E7\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:45.8695637Z\",\r\n \"changedTime\": \"2017-03-01T20:50:46.169407Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270\",\r\n \"name\": \"IntegrationAccountMap2270\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:27 GMT" + "Wed, 01 Mar 2017 20:50:45 GMT" ], "Pragma": [ "no-cache" @@ -229,38 +229,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:20ecdb3b-ce7d-4fea-bfa6-04caddcc2a12" + "westus:4d98bd08-b14a-45e7-a4c0-8e8e534b62b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14547" + "14948" ], "x-ms-correlation-request-id": [ - "7bac3236-1c2c-491c-af9d-d986aba58418" + "7986b75d-53c3-4f06-84f4-48055e38c43b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002027Z:7bac3236-1c2c-491c-af9d-d986aba58418" + "CENTRALUS:20170301T205046Z:7986b75d-53c3-4f06-84f4-48055e38c43b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2581?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaff922a-797c-442f-8430-7e1db524663e" + "d2858542-9e43-427e-9aea-1f107aea858c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -275,25 +275,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:27 GMT" + "Wed, 01 Mar 2017 20:50:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:284c6a07-a049-453c-a0ce-251f2127d82c" + "westus:5af2affe-d6c8-4fae-83b1-732d53ffcae0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "9e379faf-0343-4581-9740-87f4d0198220" + "347f6fd7-8059-4ffe-a129-0d388847db5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002028Z:9e379faf-0343-4581-9740-87f4d0198220" + "CENTRALUS:20170301T205047Z:347f6fd7-8059-4ffe-a129-0d388847db5d" ] }, "StatusCode": 200 @@ -301,8 +301,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountMap": [ - "IntegrationAccount2581", - "IntegrationAccountMap1047" + "IntegrationAccount4704", + "IntegrationAccountMap2270" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json index 4b52b06515f2..08ed9261bcbe 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "ec0518a9-9954-4d4a-b184-25c6525f248f" + "a1499db8-229e-4b9b-abc8-fdcf1dfd08f6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793\",\r\n \"name\": \"IntegrationAccount6793\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807\",\r\n \"name\": \"IntegrationAccount8807\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:36 GMT" + "Wed, 01 Mar 2017 20:51:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:cb5b33ea-bcf2-42fd-863c-67e49cf9aeff" + "westus:24d3cdfa-eabe-4c66-98cc-3ebbaa063466" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "58936a38-2928-4e91-965d-fd94f953d767" + "ba45213b-8603-43ac-a9d8-edb952e83c67" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002036Z:58936a38-2928-4e91-965d-fd94f953d767" + "CENTRALUS:20170301T205102Z:ba45213b-8603-43ac-a9d8-edb952e83c67" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793/maps/IntegrationAccountMap2146?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5My9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIxNDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807/maps/IntegrationAccountMap6972?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwNy9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDY5NzI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap2146\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap2146\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap6972\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap6972\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "3514" ], "x-ms-client-request-id": [ - "0570d807-c042-4db7-86e4-9326a6e67e9b" + "1aaeff28-3747-4a3b-ad80-b8aa4ba8ef71" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu18by01.blob.core.windows.net/integrationaccountsd52525e0b27141c3959b87f356314d0f/99D1E_XSLT_INTEGRATIONACCOUNTMAP2146-621A32EA940E4A16A39D94AA679CA5E7?sv=2016-05-31&sr=b&sig=zpkDtbxgxQzeX8U6wlGTRxeqUMTkOTir3PcCv5XdLyA%3D&se=2017-02-25T04%3A20%3A37Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141ED0F31D\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:36.9949892Z\",\r\n \"changedTime\": \"2017-02-25T00:20:36.9953556Z\",\r\n \"metadata\": \"IntegrationAccountMap2146\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793/maps/IntegrationAccountMap2146\",\r\n \"name\": \"IntegrationAccountMap2146\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu12by01.blob.core.windows.net/integrationaccountscbe787376c834dd69872ca97c6b7c9ee/99D1E_XSLT_INTEGRATIONACCOUNTMAP6972-D3035240F0DD41D4B26C9C03E88BAC07?sv=2016-05-31&sr=b&sig=HSMu7rQyyHivZuF3c5L6q0GBZ6EGTaPmY9iZzCraEus%3D&se=2017-03-02T00%3A51%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4ACBBDFA7\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:02.9480794Z\",\r\n \"changedTime\": \"2017-03-01T20:51:02.9484125Z\",\r\n \"metadata\": \"IntegrationAccountMap6972\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807/maps/IntegrationAccountMap6972\",\r\n \"name\": \"IntegrationAccountMap6972\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ "853" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:36 GMT" + "Wed, 01 Mar 2017 20:51:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d2cc59c2-0005-4812-9ace-c625db40c65b" + "westus:ec4e1065-292c-45f8-82ea-2a4a0acde86f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "a9360c4e-5879-4c0f-88e4-0d401a628ff7" + "c4537dbb-ec68-4b11-90a0-3987e2757901" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002036Z:a9360c4e-5879-4c0f-88e4-0d401a628ff7" + "CENTRALUS:20170301T205103Z:c4537dbb-ec68-4b11-90a0-3987e2757901" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a0fc6d-751e-4abb-a521-aa30b8a0ccc1" + "c8c4771e-192b-4730-a93f-741b5bfda51a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:37 GMT" + "Wed, 01 Mar 2017 20:51:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:47565bb2-6387-4c6f-9b9b-5f4ef6428be1" + "westus:10aae9eb-ca92-4d22-a186-7c623cfb38a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "b7e33435-edff-494c-8f8c-b295b54b5d25" + "18350120-dda1-4212-9d17-1169e2060f65" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002037Z:b7e33435-edff-494c-8f8c-b295b54b5d25" + "CENTRALUS:20170301T205103Z:18350120-dda1-4212-9d17-1169e2060f65" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6793/maps/IntegrationAccountMap2146?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5My9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIxNDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807/maps/IntegrationAccountMap6972?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwNy9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDY5NzI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45750303-3a96-49ba-8a81-15d1ff458bec" + "763786d0-2161-483a-99d5-fdb309204d93" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount6793' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount8807' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:37 GMT" + "Wed, 01 Mar 2017 20:51:03 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "ddfdc9cc-712b-4acd-bf38-14f868265f68" + "653cc2d5-9dc8-4fe2-a981-10b5ff55d2d3" ], "x-ms-correlation-request-id": [ - "ddfdc9cc-712b-4acd-bf38-14f868265f68" + "653cc2d5-9dc8-4fe2-a981-10b5ff55d2d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002037Z:ddfdc9cc-712b-4acd-bf38-14f868265f68" + "CENTRALUS:20170301T205104Z:653cc2d5-9dc8-4fe2-a981-10b5ff55d2d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountMapOnAccountDeletion": [ - "IntegrationAccount6793", - "IntegrationAccountMap2146" + "IntegrationAccount8807", + "IntegrationAccountMap6972" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json index d140c9fa7441..5b4a8a9ddf3e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "11a213ea-2a7e-49f7-a896-534753743e1e" + "811faea9-540f-4b5f-87b6-4cc565ed71de" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811\",\r\n \"name\": \"IntegrationAccount8811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435\",\r\n \"name\": \"IntegrationAccount3435\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:30 GMT" + "Wed, 01 Mar 2017 20:50:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d97ee1cf-effc-4cb0-bfcc-ff813db55f19" + "westus:5e72499f-43f3-46f1-8987-69bc01d78565" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,19 +53,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "de0efb8c-4c59-4f26-a9eb-0ac9a3b72485" + "07b604cb-fa89-4f5c-9633-508c7e483375" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002030Z:de0efb8c-4c59-4f26-a9eb-0ac9a3b72485" + "WESTUS2:20170301T205051Z:07b604cb-fa89-4f5c-9633-508c7e483375" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811/maps/IntegrationAccountMap5827?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgxMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU4Mjc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435/maps/IntegrationAccountMap6921?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQzNS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDY5MjE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap5827\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap5827\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap6921\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap6921\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "3514" ], "x-ms-client-request-id": [ - "5d61a95c-b28e-4d44-ba7b-f3b8f31179a9" + "aa10cd01-fadc-434b-8542-07020c6a851d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu29by01.blob.core.windows.net/integrationaccounts7d1d7d9029a24ebcb7da29bd7a6dddfc/99D1E_XSLT_INTEGRATIONACCOUNTMAP5827-6A1E0298D4C44FE281C2208A92BD4E8C?sv=2016-05-31&sr=b&sig=6D3BsZmo86RPnPnIc33k%2BgDeQMH%2BhijyCYoIbv6KxVE%3D&se=2017-02-25T04%3A20%3A31Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141BA33E83\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:31.4249333Z\",\r\n \"changedTime\": \"2017-02-25T00:20:31.4303778Z\",\r\n \"metadata\": \"IntegrationAccountMap5827\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811/maps/IntegrationAccountMap5827\",\r\n \"name\": \"IntegrationAccountMap5827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccountsd3508a35bcfe4b3abed50340dc650440/99D1E_XSLT_INTEGRATIONACCOUNTMAP6921-B47FC4EE3B9641BD914C49304766FCBF?sv=2016-05-31&sr=b&sig=j3seO%2Fl65emkbCJe%2BbROGNDbiFJohuJ45c82bB8MleQ%3D&se=2017-03-02T00%3A50%3A52Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A6795ED9\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:52.587217Z\",\r\n \"changedTime\": \"2017-03-01T20:50:52.5875122Z\",\r\n \"metadata\": \"IntegrationAccountMap6921\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435/maps/IntegrationAccountMap6921\",\r\n \"name\": \"IntegrationAccountMap6921\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "857" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:31 GMT" + "Wed, 01 Mar 2017 20:50:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:25b89125-0cb2-4b0d-9ccc-091e893c81d6" + "westus:96c9e374-c4e9-4cbb-b75a-296c1afa61b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,32 +114,32 @@ "1198" ], "x-ms-correlation-request-id": [ - "667c023f-d845-4bb7-9f0b-d9ffddc31b93" + "08be20e8-2bf3-4784-b216-f8c05634b942" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002031Z:667c023f-d845-4bb7-9f0b-d9ffddc31b93" + "WESTUS2:20170301T205052Z:08be20e8-2bf3-4784-b216-f8c05634b942" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811/maps?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgxMS9tYXBzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435/maps?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQzNS9tYXBzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f7d607f-3a3d-47c3-898a-0792b140f462" + "1c7e5d82-6346-4294-88d2-515efa57230e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu29by01.blob.core.windows.net/integrationaccounts7d1d7d9029a24ebcb7da29bd7a6dddfc/99D1E_XSLT_INTEGRATIONACCOUNTMAP5827-6A1E0298D4C44FE281C2208A92BD4E8C?sv=2016-05-31&sr=b&sig=6D3BsZmo86RPnPnIc33k%2BgDeQMH%2BhijyCYoIbv6KxVE%3D&se=2017-02-25T04%3A20%3A31Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D141BA33E83\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:20:31.4249333Z\",\r\n \"changedTime\": \"2017-02-25T00:20:31.4303778Z\",\r\n \"metadata\": \"IntegrationAccountMap5827\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811/maps/IntegrationAccountMap5827\",\r\n \"name\": \"IntegrationAccountMap5827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccountsd3508a35bcfe4b3abed50340dc650440/99D1E_XSLT_INTEGRATIONACCOUNTMAP6921-B47FC4EE3B9641BD914C49304766FCBF?sv=2016-05-31&sr=b&sig=j3seO%2Fl65emkbCJe%2BbROGNDbiFJohuJ45c82bB8MleQ%3D&se=2017-03-02T00%3A50%3A52Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A6795ED9\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:52.587217Z\",\r\n \"changedTime\": \"2017-03-01T20:50:52.5875122Z\",\r\n \"metadata\": \"IntegrationAccountMap6921\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435/maps/IntegrationAccountMap6921\",\r\n \"name\": \"IntegrationAccountMap6921\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:31 GMT" + "Wed, 01 Mar 2017 20:50:51 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:fc47af98-1bdc-4e86-b8c2-ceccb8a200ae" + "westus:4a89e752-d73a-4070-95ce-6a6a684d6874" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14615" + "14795" ], "x-ms-correlation-request-id": [ - "20d3a4ae-ade7-43c4-a45b-ae648fce5392" + "40457577-4cf0-48b6-a8b9-31dbb91de2a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002031Z:20d3a4ae-ade7-43c4-a45b-ae648fce5392" + "WESTUS2:20170301T205052Z:40457577-4cf0-48b6-a8b9-31dbb91de2a6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8811?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef9403a9-5d4c-4a0b-aa02-1e280b3e6e05" + "08331244-3524-4ea7-9f7c-3911f362617d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,13 +210,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:31 GMT" + "Wed, 01 Mar 2017 20:50:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:232864dd-83a2-430b-a429-8014edf1f461" + "westus:6c10ad9a-1b28-45e9-90b6-a8fd33ed1fc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,10 +225,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "bdd4e8b4-8cb6-4212-b7ab-9ee883504bc6" + "704e132a-3ef3-4b38-8618-43ecb3a315b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002032Z:bdd4e8b4-8cb6-4212-b7ab-9ee883504bc6" + "WESTUS2:20170301T205053Z:704e132a-3ef3-4b38-8618-43ecb3a315b6" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountMaps": [ - "IntegrationAccount8811", - "IntegrationAccountMap5827" + "IntegrationAccount3435", + "IntegrationAccountMap6921" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json index a6ea71024fc3..d99cbe364239 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTg4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "6c37c4a6-e7e7-44b2-b210-4721745c2f9f" + "198cc2b5-44c0-4bee-ade2-097cec474139" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988\",\r\n \"name\": \"IntegrationAccount988\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616\",\r\n \"name\": \"IntegrationAccount616\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "288" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:44 GMT" + "Wed, 01 Mar 2017 20:52:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d6e9d262-6a6c-4dd8-973b-aef768f5d1b6" + "westus:ea4da016-3106-43c1-be36-f15e52e98032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1196" ], "x-ms-correlation-request-id": [ - "5ee78be9-190f-4c4f-83a0-d65aec4b060e" + "47b165f2-5923-407b-b0d8-39052c2c9a48" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002144Z:5ee78be9-190f-4c4f-83a0-d65aec4b060e" + "CENTRALUS:20170301T205220Z:47b165f2-5923-407b-b0d8-39052c2c9a48" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988/partners/IntegrationAccountPartner4394?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTg4L3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI0Mzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616/partners/IntegrationAccountPartner7986?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2L3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI3OTg2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner4394\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner4394\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7986\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7986\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "de9e4ccd-7335-4bfc-ae9e-2ed1d8d4ec26" + "a3ed1edf-7863-40c8-98d1-c10e412c75c0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:44.9998631Z\",\r\n \"changedTime\": \"2017-02-25T00:21:45.0007342Z\",\r\n \"metadata\": \"IntegrationAccountPartner4394\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988/partners/IntegrationAccountPartner4394\",\r\n \"name\": \"IntegrationAccountPartner4394\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:20.8143559Z\",\r\n \"changedTime\": \"2017-03-01T20:52:20.8146874Z\",\r\n \"metadata\": \"IntegrationAccountPartner7986\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616/partners/IntegrationAccountPartner7986\",\r\n \"name\": \"IntegrationAccountPartner7986\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "525" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:44 GMT" + "Wed, 01 Mar 2017 20:52:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a640058a-093b-4776-92f8-7a4f75e5591f" + "westus:34d18f4a-8527-414b-b00a-72635b917de7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1195" ], "x-ms-correlation-request-id": [ - "26936dfc-083b-4bad-9798-0636a06f2124" + "46acc9f6-b12d-4bae-ae10-431daf1766b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002144Z:26936dfc-083b-4bad-9798-0636a06f2124" + "CENTRALUS:20170301T205220Z:46acc9f6-b12d-4bae-ae10-431daf1766b2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988/partners/IntegrationAccountPartner4394?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTg4L3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI0Mzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616/partners/IntegrationAccountPartner7986?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2L3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI3OTg2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f875d581-4d27-4aeb-9130-1942383facaf" + "3f379bec-a4c5-4742-8340-62b5e8c54623" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -151,44 +151,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:44 GMT" + "Wed, 01 Mar 2017 20:52:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c3624b8e-e3d5-4ef7-8968-af9a98087774" + "westus:0369b7e4-a70d-4423-94b7-00aff04b4e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1194" ], "x-ms-correlation-request-id": [ - "d24cd4c5-b12a-4a01-a26b-e5d85d358109" + "ca1d2a8c-5e76-4756-9cb4-6362e63913ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002145Z:d24cd4c5-b12a-4a01-a26b-e5d85d358109" + "CENTRALUS:20170301T205221Z:ca1d2a8c-5e76-4756-9cb4-6362e63913ba" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount988?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTg4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c1100f9-3874-445d-97cf-a868c7f8e74a" + "43024522-e812-4dfe-ac98-17532c98b497" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -203,25 +203,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:45 GMT" + "Wed, 01 Mar 2017 20:52:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:25749113-9ac4-49dd-9958-4b578a1c8c67" + "westus:8aa52713-5722-4bb5-8f91-b803c8f81224" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1193" ], "x-ms-correlation-request-id": [ - "a19ffd20-353f-463c-a374-902afc04a80a" + "2cc81a06-2c50-435d-8cb2-563aa0daa7c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002145Z:a19ffd20-353f-463c-a374-902afc04a80a" + "CENTRALUS:20170301T205221Z:2cc81a06-2c50-435d-8cb2-563aa0daa7c1" ] }, "StatusCode": 200 @@ -229,8 +229,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountPartner": [ - "IntegrationAccount988", - "IntegrationAccountPartner4394" + "IntegrationAccount616", + "IntegrationAccountPartner7986" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json index cd9140744de9..b7b24c16eda0 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTM5MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "f2f501b0-6307-444d-a79c-d2bf392e8ae7" + "64d27154-a233-468e-9601-75e61d43c822" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391\",\r\n \"name\": \"IntegrationAccount1391\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761\",\r\n \"name\": \"IntegrationAccount4761\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:39 GMT" + "Wed, 01 Mar 2017 20:52:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5fbf5a4e-324f-43eb-9f31-2e79de703f54" + "westus:8eeb87f3-8d0d-4555-b9bf-b25dd1eb83fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "baceee55-e930-42a1-b35d-11903f97ecba" + "4353d11e-6094-4b4b-a101-79b31168f722" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002140Z:baceee55-e930-42a1-b35d-11903f97ecba" + "CENTRALUS:20170301T205212Z:4353d11e-6094-4b4b-a101-79b31168f722" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391/partners/IntegrationAccountPartner7936?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTM5MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzkzNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761/partners/IntegrationAccountPartner5862?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7936\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7936\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner5862\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner5862\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "67790a62-6af4-4d84-a33e-28ccc3da4a40" + "9452f819-0260-47ec-969c-41d1242d55ce" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:40.3342994Z\",\r\n \"changedTime\": \"2017-02-25T00:21:40.3354521Z\",\r\n \"metadata\": \"IntegrationAccountPartner7936\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391/partners/IntegrationAccountPartner7936\",\r\n \"name\": \"IntegrationAccountPartner7936\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:13.0903558Z\",\r\n \"changedTime\": \"2017-03-01T20:52:13.0910468Z\",\r\n \"metadata\": \"IntegrationAccountPartner5862\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761/partners/IntegrationAccountPartner5862\",\r\n \"name\": \"IntegrationAccountPartner5862\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:39 GMT" + "Wed, 01 Mar 2017 20:52:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:988777ee-f3d6-4cbf-84a5-8c277015287a" + "westus:691d35c9-8b54-4cc1-99bf-1a293d7f2e1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-correlation-request-id": [ - "93a470d2-08af-41b2-8c27-6de619f1dd6c" + "d98b8e04-0867-41f3-9805-8be7dcf4e71b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002140Z:93a470d2-08af-41b2-8c27-6de619f1dd6c" + "CENTRALUS:20170301T205213Z:d98b8e04-0867-41f3-9805-8be7dcf4e71b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391/partners/IntegrationAccountPartner7936?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTM5MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzkzNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761/partners/IntegrationAccountPartner5862?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "993ee77e-2835-4f37-a6d6-9f3d1b3aa1ea" + "e843c77c-85e7-46d4-96ec-83b96bdde6cf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:40.3342994Z\",\r\n \"changedTime\": \"2017-02-25T00:21:40.3354521Z\",\r\n \"metadata\": \"IntegrationAccountPartner7936\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391/partners/IntegrationAccountPartner7936\",\r\n \"name\": \"IntegrationAccountPartner7936\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:13.0903558Z\",\r\n \"changedTime\": \"2017-03-01T20:52:13.0910468Z\",\r\n \"metadata\": \"IntegrationAccountPartner5862\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761/partners/IntegrationAccountPartner5862\",\r\n \"name\": \"IntegrationAccountPartner5862\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:40 GMT" + "Wed, 01 Mar 2017 20:52:13 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:08bac078-d9b9-4cf0-940c-8453d754c5a2" + "westus:c543d50b-e17d-4090-8c73-5f2705d1f41d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14948" ], "x-ms-correlation-request-id": [ - "0ca54082-ab6b-4ed1-a1df-733fdc8606a3" + "2d828e88-b06a-41fd-8a00-6db458dfd54c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002140Z:0ca54082-ab6b-4ed1-a1df-733fdc8606a3" + "CENTRALUS:20170301T205213Z:2d828e88-b06a-41fd-8a00-6db458dfd54c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1391?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTM5MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73927aac-8fb3-4d10-9a5b-3d1530d042f6" + "b578d964-8bf9-4a4a-8244-607b3c631b39" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:40 GMT" + "Wed, 01 Mar 2017 20:52:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d367fcc1-977d-4ec4-a634-a7fb481b2f0d" + "westus:a105a1c2-ab86-4876-99e9-6148c84bced3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-correlation-request-id": [ - "20eb3d05-b45f-44ce-837f-64f9c91fcb64" + "28134808-3a00-41ff-882e-74363bcf92e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002140Z:20eb3d05-b45f-44ce-837f-64f9c91fcb64" + "CENTRALUS:20170301T205214Z:28134808-3a00-41ff-882e-74363bcf92e1" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountPartner": [ - "IntegrationAccount1391", - "IntegrationAccountPartner7936" + "IntegrationAccount4761", + "IntegrationAccountPartner5862" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json index 1ab33fdc4f71..88017ffe86e1 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "959f28bc-eac4-4d42-b29d-5402c46cc72c" + "db172147-d6b1-4941-b584-666a80b5dace" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635\",\r\n \"name\": \"IntegrationAccount2635\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222\",\r\n \"name\": \"IntegrationAccount9222\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:46 GMT" + "Wed, 01 Mar 2017 20:52:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:05f63253-89c0-4400-b310-affe10541c94" + "westus:8f10e79c-559f-41f6-a57d-5d24a2cf831e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-correlation-request-id": [ - "4067585d-0744-456b-91da-8c96449a3375" + "fedac1c6-fbad-4aa6-a3a9-243f8ad845b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002146Z:4067585d-0744-456b-91da-8c96449a3375" + "CENTRALUS:20170301T205224Z:fedac1c6-fbad-4aa6-a3a9-243f8ad845b7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635/partners/IntegrationAccountPartner9831?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjYzNS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTgzMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222/partners/IntegrationAccountPartner2327?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyMi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjMyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner9831\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner9831\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner2327\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner2327\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "398" ], "x-ms-client-request-id": [ - "36622e6a-5aa6-47bb-a4df-db98ee8cb5ad" + "400b7683-1c43-47e7-a647-60b6300b2ce9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:47.0900617Z\",\r\n \"changedTime\": \"2017-02-25T00:21:47.09127Z\",\r\n \"metadata\": \"IntegrationAccountPartner9831\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635/partners/IntegrationAccountPartner9831\",\r\n \"name\": \"IntegrationAccountPartner9831\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:24.2515726Z\",\r\n \"changedTime\": \"2017-03-01T20:52:24.2517783Z\",\r\n \"metadata\": \"IntegrationAccountPartner2327\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222/partners/IntegrationAccountPartner2327\",\r\n \"name\": \"IntegrationAccountPartner2327\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "524" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:46 GMT" + "Wed, 01 Mar 2017 20:52:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:350c11e2-49e2-4c39-bd30-7ea235c286fa" + "westus:928cdced-c042-40e7-9e26-3a5f086d0bef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1189" ], "x-ms-correlation-request-id": [ - "38ae8f3b-8e85-49bc-a803-f184165d198c" + "171dfa6b-f658-4cf2-b279-62043ecbe468" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002147Z:38ae8f3b-8e85-49bc-a803-f184165d198c" + "CENTRALUS:20170301T205224Z:171dfa6b-f658-4cf2-b279-62043ecbe468" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635/partners/IntegrationAccountPartner9831?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjYzNS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTgzMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222/partners/IntegrationAccountPartner2327?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyMi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjMyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"updated\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "373" ], "x-ms-client-request-id": [ - "437c6d2b-0b88-4d7a-9f77-6e7a6b67fbde" + "761b62e6-41d4-44e3-b016-3d982c2254ac" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:47.0900617Z\",\r\n \"changedTime\": \"2017-02-25T00:21:47.1881395Z\",\r\n \"metadata\": \"updated\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635/partners/IntegrationAccountPartner9831\",\r\n \"name\": \"IntegrationAccountPartner9831\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:24.2515726Z\",\r\n \"changedTime\": \"2017-03-01T20:52:24.4158216Z\",\r\n \"metadata\": \"updated\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222/partners/IntegrationAccountPartner2327\",\r\n \"name\": \"IntegrationAccountPartner2327\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:47 GMT" + "Wed, 01 Mar 2017 20:52:24 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1d93e3bb-4d3b-4b1f-a2f7-5c1df86735eb" + "westus:7df3c60c-1c72-4103-8f9c-4173b577f8de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1188" ], "x-ms-correlation-request-id": [ - "d0be605f-f4d1-42af-981c-4967d0ff6c26" + "607b41ac-0f4b-4603-af5b-04040df50053" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002147Z:d0be605f-f4d1-42af-981c-4967d0ff6c26" + "CENTRALUS:20170301T205224Z:607b41ac-0f4b-4603-af5b-04040df50053" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2635?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjYzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "117ee1cd-c23e-4253-8607-9510680c0fe2" + "ae51a643-444e-4f73-9ea6-d4dc9fd8701a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:47 GMT" + "Wed, 01 Mar 2017 20:52:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:1477a6d5-0bfc-4bd5-9d44-d5885747ad05" + "westus:33baec1b-8144-4c32-b748-01a5532a4f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1187" ], "x-ms-correlation-request-id": [ - "b56b9278-4f8a-4335-8b39-93ee27dfa0d2" + "e83d2e92-73df-49e8-b6ae-e71d5387daf2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002147Z:b56b9278-4f8a-4335-8b39-93ee27dfa0d2" + "CENTRALUS:20170301T205225Z:e83d2e92-73df-49e8-b6ae-e71d5387daf2" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountPartner": [ - "IntegrationAccount2635", - "IntegrationAccountPartner9831" + "IntegrationAccount9222", + "IntegrationAccountPartner2327" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json index 4f3c586d2c40..b552bbf655ac 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTAyND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTcwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "436c13a2-e224-41c3-9ded-2f1e952041d5" + "18433953-ec7f-45e5-8bb4-0cbbaff1a066" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024\",\r\n \"name\": \"IntegrationAccount1024\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709\",\r\n \"name\": \"IntegrationAccount9709\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:49 GMT" + "Wed, 01 Mar 2017 20:52:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bba89751-ff99-40b2-8e51-d390abf62ff1" + "westus:3c3344e2-e801-46aa-a082-d0c54a512a11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1190" ], "x-ms-correlation-request-id": [ - "19c9359d-17ba-4438-bc56-b532e65698c9" + "e21b8785-c140-440b-affc-ccc863729646" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002149Z:19c9359d-17ba-4438-bc56-b532e65698c9" + "CENTRALUS:20170301T205227Z:e21b8785-c140-440b-affc-ccc863729646" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024/partners/IntegrationAccountPartner3164?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTAyNC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMzE2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709/partners/IntegrationAccountPartner2606?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTcwOS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjYwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner3164\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner3164\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner2606\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner2606\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "398" ], "x-ms-client-request-id": [ - "1a146add-a6d0-430b-a119-04096771afbb" + "6c259b74-ba7b-4b8b-ba35-549c027f2641" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:50.1013831Z\",\r\n \"changedTime\": \"2017-02-25T00:21:50.1019686Z\",\r\n \"metadata\": \"IntegrationAccountPartner3164\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024/partners/IntegrationAccountPartner3164\",\r\n \"name\": \"IntegrationAccountPartner3164\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:27.9871379Z\",\r\n \"changedTime\": \"2017-03-01T20:52:27.987329Z\",\r\n \"metadata\": \"IntegrationAccountPartner2606\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709/partners/IntegrationAccountPartner2606\",\r\n \"name\": \"IntegrationAccountPartner2606\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "526" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:50 GMT" + "Wed, 01 Mar 2017 20:52:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2b62e08f-b4ae-4e5c-a9be-cd3275cb740b" + "westus:a34ffa8c-b8f7-47fd-897c-4507d8c6a48b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1189" ], "x-ms-correlation-request-id": [ - "2ea5d664-b3d8-4f95-aa89-2aa8b77da51c" + "bdf0a19d-6752-4a9f-8e71-a1dad9dca922" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002150Z:2ea5d664-b3d8-4f95-aa89-2aa8b77da51c" + "CENTRALUS:20170301T205227Z:bdf0a19d-6752-4a9f-8e71-a1dad9dca922" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTAyND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTcwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcb16862-abbe-489e-bac7-3bd0fc1861bb" + "7bd5052c-9f9a-4c67-9375-7f21cb29b0e2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:50 GMT" + "Wed, 01 Mar 2017 20:52:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8fd6de8e-a97f-432e-96d9-e22bc75cbb49" + "westus:b61ea3dc-1f19-46e7-8db3-7219fc921167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1188" ], "x-ms-correlation-request-id": [ - "a7cf0903-11ac-4275-b5a0-043edeb35962" + "9f57e885-1bc0-4d49-9208-f1bc4f85c0b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002150Z:a7cf0903-11ac-4275-b5a0-043edeb35962" + "CENTRALUS:20170301T205228Z:9f57e885-1bc0-4d49-9208-f1bc4f85c0b9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1024/partners/IntegrationAccountPartner3164?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTAyNC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMzE2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709/partners/IntegrationAccountPartner2606?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTcwOS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjYwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9357a878-b63b-44bc-993b-28853913396d" + "991c6a69-7ae7-4dad-b4c8-6d57afe34a0c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount1024' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount9709' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:50 GMT" + "Wed, 01 Mar 2017 20:52:28 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "bf8d7d6d-2ac0-4e8f-9855-0ce0bd7cca52" + "8b64dfd7-0c11-4ed0-8b4a-7a3a51ddb026" ], "x-ms-correlation-request-id": [ - "bf8d7d6d-2ac0-4e8f-9855-0ce0bd7cca52" + "8b64dfd7-0c11-4ed0-8b4a-7a3a51ddb026" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002150Z:bf8d7d6d-2ac0-4e8f-9855-0ce0bd7cca52" + "CENTRALUS:20170301T205228Z:8b64dfd7-0c11-4ed0-8b4a-7a3a51ddb026" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountPartnerOnAccountDeletion": [ - "IntegrationAccount1024", - "IntegrationAccountPartner3164" + "IntegrationAccount9709", + "IntegrationAccountPartner2606" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json index 84427127e79b..b9dad96b3a29 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODAxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTMwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "8c93f21e-3f4c-4cce-90e5-f4578768488c" + "eeef63c7-dbdf-4684-9658-85fbe70a01c2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012\",\r\n \"name\": \"IntegrationAccount8012\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303\",\r\n \"name\": \"IntegrationAccount9303\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:41 GMT" + "Wed, 01 Mar 2017 20:52:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:104dce45-4b1f-4c38-98cd-869ca9be2a76" + "westus:d9ab0a0f-615b-4cc9-bd8c-868917e973d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,19 +53,19 @@ "1191" ], "x-ms-correlation-request-id": [ - "272c5d7e-fc02-4727-af52-654b92b964f0" + "dc7ece4e-22fa-4ac6-890c-1f5760d05e7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002142Z:272c5d7e-fc02-4727-af52-654b92b964f0" + "CENTRALUS:20170301T205216Z:dc7ece4e-22fa-4ac6-890c-1f5760d05e7c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012/partners/IntegrationAccountPartner1155?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODAxMi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMTE1NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303/partners/IntegrationAccountPartner7106?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTMwMy9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzEwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner1155\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner1155\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7106\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7106\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "8ab12591-41e7-4eb9-a342-ea092764e0b9" + "15236129-b6f9-45d7-a839-77f6f2257a8b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:42.5009157Z\",\r\n \"changedTime\": \"2017-02-25T00:21:42.5020967Z\",\r\n \"metadata\": \"IntegrationAccountPartner1155\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012/partners/IntegrationAccountPartner1155\",\r\n \"name\": \"IntegrationAccountPartner1155\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:16.5315897Z\",\r\n \"changedTime\": \"2017-03-01T20:52:16.5321851Z\",\r\n \"metadata\": \"IntegrationAccountPartner7106\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303/partners/IntegrationAccountPartner7106\",\r\n \"name\": \"IntegrationAccountPartner7106\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -99,13 +99,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:41 GMT" + "Wed, 01 Mar 2017 20:52:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:488a0c46-a4e8-4773-a13a-88ec9a941243" + "westus:5f286fdf-9de9-4c71-80fb-93977c40f6d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,32 +114,32 @@ "1190" ], "x-ms-correlation-request-id": [ - "fe6a39ce-2d50-41c7-a2f1-6f58f2a11941" + "2a81b7d6-98b0-44fd-879d-79757884e28e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002142Z:fe6a39ce-2d50-41c7-a2f1-6f58f2a11941" + "CENTRALUS:20170301T205216Z:2a81b7d6-98b0-44fd-879d-79757884e28e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012/partners?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODAxMi9wYXJ0bmVycz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303/partners?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTMwMy9wYXJ0bmVycz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "161281fc-d794-423a-81d6-c2e5741a18ab" + "7de1a484-6f45-413a-8331-bdf1df730ee0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:21:42.5009157Z\",\r\n \"changedTime\": \"2017-02-25T00:21:42.5020967Z\",\r\n \"metadata\": \"IntegrationAccountPartner1155\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012/partners/IntegrationAccountPartner1155\",\r\n \"name\": \"IntegrationAccountPartner1155\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:16.5315897Z\",\r\n \"changedTime\": \"2017-03-01T20:52:16.5321851Z\",\r\n \"metadata\": \"IntegrationAccountPartner7106\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303/partners/IntegrationAccountPartner7106\",\r\n \"name\": \"IntegrationAccountPartner7106\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:41 GMT" + "Wed, 01 Mar 2017 20:52:16 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:70d8f098-3971-4143-9bb3-eb5222930eec" + "westus:101dcb4a-33e7-46c8-aa10-bd125ec28475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14608" + "14984" ], "x-ms-correlation-request-id": [ - "5c62d562-8fad-45f4-94a6-1dca88247f85" + "85875b05-2c8e-4a8f-a7aa-c28b3c5c0dff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002142Z:5c62d562-8fad-45f4-94a6-1dca88247f85" + "CENTRALUS:20170301T205216Z:85875b05-2c8e-4a8f-a7aa-c28b3c5c0dff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8012?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODAxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTMwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "513c9eb1-cd90-437b-8c33-962550f62b04" + "26a58877-a191-4e8b-860b-3e975c4a5d70" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,13 +210,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:21:42 GMT" + "Wed, 01 Mar 2017 20:52:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9d31c8a1-c0f5-43e5-9fe3-80a5ae4d1666" + "westus:57a1a8e9-aa98-4ddb-a918-c53635ab98a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,10 +225,10 @@ "1189" ], "x-ms-correlation-request-id": [ - "ffe89899-5ab2-427d-b400-b5396764f414" + "4b2133d7-009f-4c56-b285-ec6d419eea85" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002143Z:ffe89899-5ab2-427d-b400-b5396764f414" + "CENTRALUS:20170301T205217Z:4b2133d7-009f-4c56-b285-ec6d419eea85" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountPartners": [ - "IntegrationAccount8012", - "IntegrationAccountPartner1155" + "IntegrationAccount9303", + "IntegrationAccountPartner7106" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json index 1dec14e39ff3..b479dc94a295 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1283?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI4Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9123?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "590849f5-ac83-4aaf-a3ec-672ffdd88461" + "119208f1-8b9f-48bf-a852-e7e6b4d0f391" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1283\",\r\n \"name\": \"IntegrationAccount1283\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9123\",\r\n \"name\": \"IntegrationAccount9123\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,44 +38,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:04 GMT" + "Wed, 01 Mar 2017 20:50:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b747bd6f-ea2a-427f-92a0-268e89aac90d" + "westus:e19d1da8-4edb-40c1-a948-4c93a7f453af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "b374cc31-8ee7-43f7-a3ea-4e5f5d099a0d" + "8126b594-ed9c-4e14-b1ec-c22501eb44b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002005Z:b374cc31-8ee7-43f7-a3ea-4e5f5d099a0d" + "CENTRALUS:20170301T205016Z:8126b594-ed9c-4e14-b1ec-c22501eb44b7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1283?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI4Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9123?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0add56d-e570-4404-8302-93a509236e39" + "a9cb2c9d-5063-4384-9550-a8e7b30149ca" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -90,25 +90,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:05 GMT" + "Wed, 01 Mar 2017 20:50:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f7f2892f-9058-45b6-9f76-c84d96d12878" + "westus:976048c9-76e0-4fa2-b041-d20a38534dbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "3ea4fd9a-7b05-49f3-820d-0c36c97865e9" + "de913303-8365-4b69-b70a-51997fee863b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002005Z:3ea4fd9a-7b05-49f3-820d-0c36c97865e9" + "CENTRALUS:20170301T205017Z:de913303-8365-4b69-b70a-51997fee863b" ] }, "StatusCode": 200 @@ -116,7 +116,7 @@ ], "Names": { "CreateAndDeleteIntegrationAccount": [ - "IntegrationAccount1283" + "IntegrationAccount9123" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json index 8f537632b652..0379b55fd214 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "d6918b1d-711a-46b2-887e-fc1d42d0ec6f" + "1e530280-7f04-4f69-acad-1c039962c559" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912\",\r\n \"name\": \"IntegrationAccount912\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945\",\r\n \"name\": \"IntegrationAccount6945\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,47 +38,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:17 GMT" + "Wed, 01 Mar 2017 20:50:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9b4a7371-e777-4dfc-a330-8982deeb94ec" + "westus:885903c6-a261-4362-b396-8e4278cea65f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "426eaa37-7b64-4176-a26a-40b940213d7b" + "46ce8d1b-e57d-48ef-9081-b4becb2f9403" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002017Z:426eaa37-7b64-4176-a26a-40b940213d7b" + "CENTRALUS:20170301T205036Z:46ce8d1b-e57d-48ef-9081-b4becb2f9403" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6ce0f79-8c75-47b9-bd85-2ca791ad2591" + "4ba89c39-7be9-4731-9b28-c83495059a01" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912\",\r\n \"name\": \"IntegrationAccount912\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945\",\r\n \"name\": \"IntegrationAccount6945\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:17 GMT" + "Wed, 01 Mar 2017 20:50:35 GMT" ], "Pragma": [ "no-cache" @@ -103,38 +103,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:d8a3fda4-95b8-4c27-bc3d-bf2e03292430" + "westus:1c6da8bf-5afe-4d16-a37c-59fe93d0cd2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14929" ], "x-ms-correlation-request-id": [ - "9ac4c5bb-2119-42cd-82ca-3fe76015442b" + "e8ddddf3-8e64-47da-9dc0-e5533aa7b0d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002018Z:9ac4c5bb-2119-42cd-82ca-3fe76015442b" + "CENTRALUS:20170301T205036Z:e8ddddf3-8e64-47da-9dc0-e5533aa7b0d0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount912?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e15e3578-d639-4765-a183-c1005ed7fa5e" + "2a3f2bfb-a556-45b1-8bb0-0df8f9fa1456" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -149,25 +149,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:17 GMT" + "Wed, 01 Mar 2017 20:50:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2449b5c5-f8eb-425e-a8be-b2f314cc9f63" + "westus:1129fae1-13a4-407a-a1fc-c57ef768ebc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "7cffa2f9-f02c-4431-b3e0-d36790442366" + "2336c96d-d32e-4143-9670-cca46939d48f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002018Z:7cffa2f9-f02c-4431-b3e0-d36790442366" + "CENTRALUS:20170301T205037Z:2336c96d-d32e-4143-9670-cca46939d48f" ] }, "StatusCode": 200 @@ -175,7 +175,7 @@ ], "Names": { "CreateAndGetIntegrationAccountByName": [ - "IntegrationAccount912" + "IntegrationAccount6945" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json index 3666df2f4ecf..61c87988e0a1 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkyOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "e85de05c-75af-4d67-ae5f-99a2ff4e5509" + "71dcafd9-4ec1-4ed2-8039-c936dfda9fd8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960\",\r\n \"name\": \"IntegrationAccount5960\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929\",\r\n \"name\": \"IntegrationAccount2929\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:14 GMT" + "Wed, 01 Mar 2017 20:50:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3967307b-3963-43b4-9f07-4ba846c2c0f4" + "westus:afbc469d-0d85-47d8-ab15-6be2b2bff00d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,17 +53,17 @@ "1199" ], "x-ms-correlation-request-id": [ - "bcdf2f66-9516-4621-9c90-0144c5447def" + "08f2a652-b527-4595-b10e-6b3c7a8cd6a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002014Z:bcdf2f66-9516-4621-9c90-0144c5447def" + "CENTRALUS:20170301T205031Z:08f2a652-b527-4595-b10e-6b3c7a8cd6a9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkyOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "91" ], "x-ms-client-request-id": [ - "04e79dcb-a3c3-4e46-b06c-e826bf93fa8d" + "12ba5efb-aa35-4705-a9b4-5600e6ab8e28" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960\",\r\n \"name\": \"IntegrationAccount5960\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929\",\r\n \"name\": \"IntegrationAccount2929\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:14 GMT" + "Wed, 01 Mar 2017 20:50:31 GMT" ], "Pragma": [ "no-cache" @@ -109,7 +109,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:0eeab863-661f-416b-8e8a-3f83a292e9b2" + "westus:772267e9-a451-43f9-bc93-8f4c44b4611c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -118,29 +118,29 @@ "1198" ], "x-ms-correlation-request-id": [ - "94f31256-5ccf-4a49-ac1e-1b2a6daa49bb" + "162d7171-4ec5-4e49-af77-c89fb1c9fd38" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002014Z:94f31256-5ccf-4a49-ac1e-1b2a6daa49bb" + "CENTRALUS:20170301T205032Z:162d7171-4ec5-4e49-af77-c89fb1c9fd38" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5960?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTk2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkyOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb967d41-f755-4965-ae7e-5551d6846b2e" + "667c000f-6788-4de3-b54f-92f088203396" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -155,33 +155,33 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:14 GMT" + "Wed, 01 Mar 2017 20:50:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:19ec8563-adf6-40f9-8c1b-ce7487f05999" + "westus:b554e294-791f-4310-a03d-efd2fa7283fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "a553d74c-0257-4ffe-9ae2-e5e55c3c0a4f" + "3d4c9bf7-1b61-4a58-9406-9ee334b8db09" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002015Z:a553d74c-0257-4ffe-9ae2-e5e55c3c0a4f" + "CENTRALUS:20170301T205032Z:3d4c9bf7-1b61-4a58-9406-9ee334b8db09" ] }, - "StatusCode": 204 + "StatusCode": 200 } ], "Names": { "CreateAndUpdateIntegrationAccount": [ - "IntegrationAccount5960" + "IntegrationAccount2929" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json index e976f41a54d1..5f6402b48714 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7425?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzQyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3483?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ4Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "2630f499-594e-4063-8214-c23c10869309" + "ac8b036a-e551-492d-9376-05d7cd3f879c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7425\",\r\n \"name\": \"IntegrationAccount7425\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3483\",\r\n \"name\": \"IntegrationAccount3483\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,25 +38,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:10 GMT" + "Wed, 01 Mar 2017 20:50:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5f135140-f64d-4ec9-8a1a-70ba7f550f03" + "westus:5be57dad-0d1f-447c-a291-8f850d325912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "9e79458e-e81b-4725-94f5-2fb2b2200e05" + "8760c941-75a2-4c26-8542-da018e0b04d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002011Z:9e79458e-e81b-4725-94f5-2fb2b2200e05" + "CENTRALUS:20170301T205027Z:8760c941-75a2-4c26-8542-da018e0b04d7" ] }, "StatusCode": 201 @@ -68,17 +68,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c670ffe4-1a61-4da3-89c4-f0b9f8c3764c" + "1d3e945f-b05b-4634-9cf7-88a5a514e33e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7425\",\r\n \"name\": \"IntegrationAccount7425\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3483\",\r\n \"name\": \"IntegrationAccount3483\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6900\",\r\n \"name\": \"IntegrationAccount6900\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:10 GMT" + "Wed, 01 Mar 2017 20:50:27 GMT" ], "Pragma": [ "no-cache" @@ -103,38 +103,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:2e445ca5-528c-47c4-b75a-e93c0ba7aca1" + "westus:942e87fc-6f79-443f-9e84-b40d81c06bb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14621" + "14923" ], "x-ms-correlation-request-id": [ - "d5e05789-8231-4627-9b47-b69e651a66f3" + "2967083d-75db-4a51-ae59-6b9624c1408c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002011Z:d5e05789-8231-4627-9b47-b69e651a66f3" + "CENTRALUS:20170301T205027Z:2967083d-75db-4a51-ae59-6b9624c1408c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7425?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzQyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3483?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ4Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6caa3a6e-1977-4b5c-a9a9-13bb9523f732" + "90bca94a-9d3a-4c24-9e37-4c28dadcb879" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -149,25 +149,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:11 GMT" + "Wed, 01 Mar 2017 20:50:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d511b3ec-1744-4f3d-9ca3-9bf1573061ba" + "westus:b35e91a3-af72-4b28-b405-6cbfa5660c87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "16831ca4-9b70-4608-87a9-71589701f8b4" + "975da95d-e69e-4ac7-9c63-6430ccbd0e6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002012Z:16831ca4-9b70-4608-87a9-71589701f8b4" + "CENTRALUS:20170301T205028Z:975da95d-e69e-4ac7-9c63-6430ccbd0e6c" ] }, "StatusCode": 200 @@ -175,7 +175,7 @@ ], "Names": { "ListIntegrationAccountByResourceGroup": [ - "IntegrationAccount7425" + "IntegrationAccount3483" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json index c7ba37065071..cfcb54e6488e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7851?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzg1MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1201?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTIwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "640c487b-da06-47d0-b2ff-f2bc0e0214d9" + "2b70e734-fb91-4876-a770-342fec6b00d0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7851\",\r\n \"name\": \"IntegrationAccount7851\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1201\",\r\n \"name\": \"IntegrationAccount1201\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:07 GMT" + "Wed, 01 Mar 2017 20:50:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7147b66d-ea78-4aa8-9ac3-1d9cb0bd2567" + "westus:3165c116-98ed-4194-b7c4-33be2bb527b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,10 +53,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "af940f03-5313-480f-9830-bbd9ce395c33" + "239bac90-4892-4d2d-89f5-37af3cc904d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002008Z:af940f03-5313-480f-9830-bbd9ce395c33" + "CENTRALUS:20170301T205021Z:239bac90-4892-4d2d-89f5-37af3cc904d0" ] }, "StatusCode": 201 @@ -68,17 +68,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f42c709-e964-41dc-bfda-d15641b9db4c" + "c25c4159-120e-486b-b7e7-4a103ab42db6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIAFabrikam\",\r\n \"name\": \"daviburgIAFabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIANC\",\r\n \"name\": \"daviburgIANC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/DONOTDELETE-TrackingResourceGroupNorthCentralUS/providers/Microsoft.Logic/integrationAccounts/DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"name\": \"DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/testbatchtracking\",\r\n \"name\": \"testbatchtracking\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIANCUS\",\r\n \"name\": \"JavIANCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/sapdemo2\",\r\n \"name\": \"sapdemo2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/klamRG/providers/Microsoft.Logic/integrationAccounts/klamIntegrationAccount\",\r\n \"name\": \"klamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PaginationTestRG/providers/Microsoft.Logic/integrationAccounts/PaginationIA\",\r\n \"name\": \"PaginationIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIA2\",\r\n \"name\": \"sumikumIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIAt1\",\r\n \"name\": \"sumikumIAt1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccountDemo\",\r\n \"name\": \"ContosoIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccountDemo\",\r\n \"name\": \"FabrikamIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccountDemo\",\r\n \"name\": \"IntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsCentralUSAccount\",\r\n \"name\": \"JonsCentralUSAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsIntAcc\",\r\n \"name\": \"JonsIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsDemos\",\r\n \"name\": \"JonsDemos\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsigniteintacc\",\r\n \"name\": \"jonsigniteintacc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccCentralUS\",\r\n \"name\": \"JonsIntAccCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padintegrationaccountdiagnostics/providers/Microsoft.Logic/integrationAccounts/testdiagnostics\",\r\n \"name\": \"testdiagnostics\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuducentralusrg/providers/Microsoft.Logic/integrationAccounts/rarayuducentralusia\",\r\n \"name\": \"rarayuducentralusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinay-central-ua/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/VETERaccount\",\r\n \"name\": \"VETERaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/HL7\",\r\n \"name\": \"HL7\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ramacfar-test/providers/Microsoft.Logic/integrationAccounts/ramacfar_south_central\",\r\n \"name\": \"ramacfar_south_central\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia1\",\r\n \"name\": \"rarayuduscusperfia1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia2\",\r\n \"name\": \"rarayuduscusperfia2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2rg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaSCUS\",\r\n \"name\": \"rarayuduiaSCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JAV-RG-NorthEurope2/providers/Microsoft.Logic/integrationAccounts/Jav-IA-NorthEurope\",\r\n \"name\": \"Jav-IA-NorthEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestnortheuroperg/providers/Microsoft.Logic/integrationAccounts/rarayudutestnortheuropeia\",\r\n \"name\": \"rarayudutestnortheuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuestIA\",\r\n \"name\": \"TrackingTipGuestIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipHostIA\",\r\n \"name\": \"TrackingTipHostIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinayvsrg/providers/Microsoft.Logic/integrationAccounts/NorthEuropeTesting\",\r\n \"name\": \"NorthEuropeTesting\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRG-WestEurope2/providers/Microsoft.Logic/integrationAccounts/JavIA-WestEurope\",\r\n \"name\": \"JavIA-WestEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TestFreeAccount\",\r\n \"name\": \"TestFreeAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/X12WestEurope/providers/Microsoft.Logic/integrationAccounts/westeuropeia\",\r\n \"name\": \"westeuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/apsethRG/providers/Microsoft.Logic/integrationAccounts/APATEST\",\r\n \"name\": \"APATEST\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount-1.618\",\r\n \"name\": \"IntegrationAccount-1.618\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1890\",\r\n \"name\": \"IntegrationAccount1890\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2342\",\r\n \"name\": \"IntegrationAccount2342\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2800\",\r\n \"name\": \"IntegrationAccount2800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6287\",\r\n \"name\": \"IntegrationAccount6287\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6364\",\r\n \"name\": \"IntegrationAccount6364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9648\",\r\n \"name\": \"IntegrationAccount9648\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9789\",\r\n \"name\": \"IntegrationAccount9789\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Default-Web-WestUS/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/EIPIntegration\",\r\n \"name\": \"EIPIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7851\",\r\n \"name\": \"IntegrationAccount7851\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIABTS\",\r\n \"name\": \"JavIABTS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS4/providers/Microsoft.Logic/integrationAccounts/Jav-BrazilUSIA\",\r\n \"name\": \"Jav-BrazilUSIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsB2Baccount\",\r\n \"name\": \"JonsB2Baccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/AS2IntegrationAccount\",\r\n \"name\": \"AS2IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/myRGname/providers/Microsoft.Logic/integrationAccounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PadmaCSADemo/providers/Microsoft.Logic/integrationAccounts/padintegrationdemo\",\r\n \"name\": \"padintegrationdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PrimaryRegionRG/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestas2westusia\",\r\n \"name\": \"rarayudutestas2westusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestdiagnosticsia\",\r\n \"name\": \"rarayudutestdiagnosticsia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestintegration\",\r\n \"name\": \"rarayudutestintegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testvetr/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTestResourceGroup/providers/Microsoft.Logic/integrationAccounts/TrackingTestIntegrationAccount\",\r\n \"name\": \"TrackingTestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonnewia\",\r\n \"name\": \"jonnewia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudueastusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaeastus\",\r\n \"name\": \"rarayuduiaeastus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/SecondaryRegionRG/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/yisha-brazilus/providers/Microsoft.Logic/integrationAccounts/yisha-guest\",\r\n \"name\": \"yisha-guest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayudutestsignencryptis\",\r\n \"name\": \"rarayudutestsignencryptis\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Axrunz/providers/Microsoft.Logic/integrationAccounts/x12TestIntegrationAccount\",\r\n \"name\": \"x12TestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/BizTalkConnectorDemoRG/providers/Microsoft.Logic/integrationAccounts/BtsLogicAppTestIntAcc\",\r\n \"name\": \"BtsLogicAppTestIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/brazilsouth1/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/ContosoIntegration\",\r\n \"name\": \"ContosoIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS\",\r\n \"name\": \"daviburgIA_BS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS_Fabrikam\",\r\n \"name\": \"daviburgIA_BS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1325\",\r\n \"name\": \"onesdk1325\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1407\",\r\n \"name\": \"onesdk1407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk167\",\r\n \"name\": \"onesdk167\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk2649\",\r\n \"name\": \"onesdk2649\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5806\",\r\n \"name\": \"onesdk5806\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6122\",\r\n \"name\": \"onesdk6122\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6407\",\r\n \"name\": \"onesdk6407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7137\",\r\n \"name\": \"onesdk7137\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7767\",\r\n \"name\": \"onesdk7767\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9526\",\r\n \"name\": \"onesdk9526\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9731\",\r\n \"name\": \"onesdk9731\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/Test\",\r\n \"name\": \"Test\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/CanaryIA\",\r\n \"name\": \"CanaryIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonIA2\",\r\n \"name\": \"JonIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsNewIA\",\r\n \"name\": \"JonsNewIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccountBrazil\",\r\n \"name\": \"JonsIntAccountBrazil\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padCSAdemo/providers/Microsoft.Logic/integrationAccounts/padcsaIAdemo\",\r\n \"name\": \"padcsaIAdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padmatestdr/providers/Microsoft.Logic/integrationAccounts/primaryia\",\r\n \"name\": \"primaryia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padmatestdr/providers/Microsoft.Logic/integrationAccounts/secondaryia\",\r\n \"name\": \"secondaryia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/msftconnectaccount\",\r\n \"name\": \"msftconnectaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/B2BEndToEndTracking/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuest\",\r\n \"name\": \"TrackingTipGuest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Contoso\",\r\n \"name\": \"daviburgWCUS_Contoso\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Fabrikam\",\r\n \"name\": \"daviburgWCUS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiatestwestcentralus\",\r\n \"name\": \"rarayuduiatestwestcentralus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTipRG/providers/Microsoft.Logic/integrationAccounts/TrackingTip\",\r\n \"name\": \"TrackingTip\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/westcentralus-rg/providers/Microsoft.Logic/integrationAccounts/westcentralus-ia\",\r\n \"name\": \"westcentralus-ia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01&%24skiptoken=5ZHLbqMwFIbfBamzGoLNJWoiVaNENRloIMXYJsPOgJNQzCXBSWirvvt4pNnOE4x0Vuf7L4v%2f0%2bjEpLZ114zG8tPIUEpoaiyNk1LDuLSslnf8KFrRqRn%2fuF7ErOxba7wWY3mpB1X33WgdHLewbe6Ytg1s0z0U0CyAC0zoOHZRLezH8tG1hkt%2fqytxGa2oLi%2f92B%2fUbNsf69KqOyWOF%2f4na1WW%2fbVT4w8%2b1OZNi%2fXvyQZwbgJ98NuD7Y6Nru0b0T2J9%2fCa70%2bAbvz3aiMBzxbX1GZe8NbXUYrcgKF7RuKUS6SC%2bl4XLXMrP7xVQEmRBvPgDZ0isgIBC8%2bErDFvpEcZjgWF52Qvd5gNz4SxsAIeSvanWDTQo5nCseYc4Vfshy1D1KN%2bNDHpR0yGGbXVhshgylHOIhYS2jUTYXFGJMOsCV8opFBHstyPsda%2fsOcVTCS6E7nOmC4LOvDgVMZ3Y41XebBNd5T8%2fG%2fG2JFfJ9oOceT753QvMUPQI9mwFtTzsyaOGZUOafBaIDgnmnOIoOY9RgtE25xiIhP64WeUTlmi7dye9pTlu1TikTYhjpCXMKkH%2bCcH6u8AX1%2b%2fAQ%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIAFabrikam\",\r\n \"name\": \"daviburgIAFabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIANC\",\r\n \"name\": \"daviburgIANC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/DONOTDELETE-TrackingResourceGroupNorthCentralUS/providers/Microsoft.Logic/integrationAccounts/DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"name\": \"DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/testbatchtracking\",\r\n \"name\": \"testbatchtracking\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIANCUS\",\r\n \"name\": \"JavIANCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/sapdemo2\",\r\n \"name\": \"sapdemo2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/klamRG/providers/Microsoft.Logic/integrationAccounts/klamIntegrationAccount\",\r\n \"name\": \"klamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PaginationTestRG/providers/Microsoft.Logic/integrationAccounts/PaginationIA\",\r\n \"name\": \"PaginationIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIA2\",\r\n \"name\": \"sumikumIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIAt1\",\r\n \"name\": \"sumikumIAt1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccountDemo\",\r\n \"name\": \"ContosoIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccountDemo\",\r\n \"name\": \"FabrikamIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccountDemo\",\r\n \"name\": \"IntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsCentralUSAccount\",\r\n \"name\": \"JonsCentralUSAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsIntAcc\",\r\n \"name\": \"JonsIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsDemos\",\r\n \"name\": \"JonsDemos\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsigniteintacc\",\r\n \"name\": \"jonsigniteintacc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccCentralUS\",\r\n \"name\": \"JonsIntAccCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TrackingAPI\",\r\n \"name\": \"TrackingAPI\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padintegrationaccountdiagnostics/providers/Microsoft.Logic/integrationAccounts/testdiagnostics\",\r\n \"name\": \"testdiagnostics\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuducentralusrg/providers/Microsoft.Logic/integrationAccounts/rarayuducentralusia\",\r\n \"name\": \"rarayuducentralusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinay-central-ua/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/VETERaccount\",\r\n \"name\": \"VETERaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/HL7\",\r\n \"name\": \"HL7\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ramacfar-test/providers/Microsoft.Logic/integrationAccounts/ramacfar_south_central\",\r\n \"name\": \"ramacfar_south_central\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia1\",\r\n \"name\": \"rarayuduscusperfia1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia2\",\r\n \"name\": \"rarayuduscusperfia2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2rg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaSCUS\",\r\n \"name\": \"rarayuduiaSCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JAV-RG-NorthEurope2/providers/Microsoft.Logic/integrationAccounts/Jav-IA-NorthEurope\",\r\n \"name\": \"Jav-IA-NorthEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestnortheuroperg/providers/Microsoft.Logic/integrationAccounts/rarayudutestnortheuropeia\",\r\n \"name\": \"rarayudutestnortheuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuestIA\",\r\n \"name\": \"TrackingTipGuestIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipHostIA\",\r\n \"name\": \"TrackingTipHostIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinayvsrg/providers/Microsoft.Logic/integrationAccounts/NorthEuropeTesting\",\r\n \"name\": \"NorthEuropeTesting\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRG-WestEurope2/providers/Microsoft.Logic/integrationAccounts/JavIA-WestEurope\",\r\n \"name\": \"JavIA-WestEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TestFreeAccount\",\r\n \"name\": \"TestFreeAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/X12WestEurope/providers/Microsoft.Logic/integrationAccounts/westeuropeia\",\r\n \"name\": \"westeuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/apsethRG/providers/Microsoft.Logic/integrationAccounts/APATEST\",\r\n \"name\": \"APATEST\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount-1.618\",\r\n \"name\": \"IntegrationAccount-1.618\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1890\",\r\n \"name\": \"IntegrationAccount1890\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2342\",\r\n \"name\": \"IntegrationAccount2342\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2800\",\r\n \"name\": \"IntegrationAccount2800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6287\",\r\n \"name\": \"IntegrationAccount6287\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6364\",\r\n \"name\": \"IntegrationAccount6364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9648\",\r\n \"name\": \"IntegrationAccount9648\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9789\",\r\n \"name\": \"IntegrationAccount9789\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Default-Web-WestUS/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/EIPIntegration\",\r\n \"name\": \"EIPIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1201\",\r\n \"name\": \"IntegrationAccount1201\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6900\",\r\n \"name\": \"IntegrationAccount6900\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIABTS\",\r\n \"name\": \"JavIABTS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS4/providers/Microsoft.Logic/integrationAccounts/Jav-BrazilUSIA\",\r\n \"name\": \"Jav-BrazilUSIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsB2Baccount\",\r\n \"name\": \"JonsB2Baccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/AS2IntegrationAccount\",\r\n \"name\": \"AS2IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/myRGname/providers/Microsoft.Logic/integrationAccounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PadmaCSADemo/providers/Microsoft.Logic/integrationAccounts/padintegrationdemo\",\r\n \"name\": \"padintegrationdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PrimaryRegionRG/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestas2westusia\",\r\n \"name\": \"rarayudutestas2westusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestdiagnosticsia\",\r\n \"name\": \"rarayudutestdiagnosticsia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestintegration\",\r\n \"name\": \"rarayudutestintegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testvetr/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonnewia\",\r\n \"name\": \"jonnewia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudueastusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaeastus\",\r\n \"name\": \"rarayuduiaeastus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/SecondaryRegionRG/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/yisha-brazilus/providers/Microsoft.Logic/integrationAccounts/yisha-guest\",\r\n \"name\": \"yisha-guest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayudutestsignencryptis\",\r\n \"name\": \"rarayudutestsignencryptis\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Axrunz/providers/Microsoft.Logic/integrationAccounts/x12TestIntegrationAccount\",\r\n \"name\": \"x12TestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/BizTalkConnectorDemoRG/providers/Microsoft.Logic/integrationAccounts/BtsLogicAppTestIntAcc\",\r\n \"name\": \"BtsLogicAppTestIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/brazilsouth1/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/ContosoIntegration\",\r\n \"name\": \"ContosoIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS\",\r\n \"name\": \"daviburgIA_BS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS_Fabrikam\",\r\n \"name\": \"daviburgIA_BS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1267\",\r\n \"name\": \"onesdk1267\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1325\",\r\n \"name\": \"onesdk1325\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1407\",\r\n \"name\": \"onesdk1407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk167\",\r\n \"name\": \"onesdk167\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk2649\",\r\n \"name\": \"onesdk2649\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5451\",\r\n \"name\": \"onesdk5451\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5768\",\r\n \"name\": \"onesdk5768\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5806\",\r\n \"name\": \"onesdk5806\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6122\",\r\n \"name\": \"onesdk6122\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6160\",\r\n \"name\": \"onesdk6160\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6275\",\r\n \"name\": \"onesdk6275\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6407\",\r\n \"name\": \"onesdk6407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6924\",\r\n \"name\": \"onesdk6924\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7137\",\r\n \"name\": \"onesdk7137\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7767\",\r\n \"name\": \"onesdk7767\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk8952\",\r\n \"name\": \"onesdk8952\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9015\",\r\n \"name\": \"onesdk9015\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9526\",\r\n \"name\": \"onesdk9526\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9731\",\r\n \"name\": \"onesdk9731\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/Test\",\r\n \"name\": \"Test\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/CanaryIA\",\r\n \"name\": \"CanaryIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/msftconnectaccount\",\r\n \"name\": \"msftconnectaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/B2BEndToEndTracking/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuest\",\r\n \"name\": \"TrackingTipGuest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Contoso\",\r\n \"name\": \"daviburgWCUS_Contoso\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Fabrikam\",\r\n \"name\": \"daviburgWCUS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiatestwestcentralus\",\r\n \"name\": \"rarayuduiatestwestcentralus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTipRG/providers/Microsoft.Logic/integrationAccounts/TrackingTip\",\r\n \"name\": \"TrackingTip\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/westcentralus-rg/providers/Microsoft.Logic/integrationAccounts/westcentralus-ia\",\r\n \"name\": \"westcentralus-ia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01&%24skiptoken=5VHbbqMwFPwXpO7TptgEqqZStQobO0suZGN8jiPeuDgNxVwK5NJW%2ffel37HSeZoZzRzNfFq1vg2boi576%2bnTUiySEFlP1mkY2v7JtqukTl50pevhPvk4d%2fo%2bayq7P6d91hXtUDR1bx%2bnbuo4yXTiOMSZuMeUTlLikgmdTp00nzmP2aNrt11zKXLd9fa2yLqmb47D%2faZ5KTK7qAf90iXfXvMsa8710P9K2mJyGcUj9uwQ%2bjAh49Efd47bl2NsU%2br6Wb%2bvzvHhRGDJ3%2fOlIYmanSMHveC1KbYRcwNkVyXDKDFsCIprkVbo5nx1yclgdBQ8BK%2fstJXBqFu9SemLpDQeoAg10Lf9wewEtguJuMqJx%2faHU6hL6oEaRDjyCRN%2fBV9VyMADvr2h4Vs0KwmIO8lDDOGkBMaAZbwWBq47jDEh3hJe%2bRp4rPYHoUTZ%2fgbpk8iILuYYYekhUKBjJMY8FKPfGhdzujfsKo2vcHwmqMndNLd%2bWr6Yx8Em2oH889%2bMtZPBCao23HL%2bFh2MQEY9qVpfg8dVGYYIZipL4WtGH%2bTIJ5TRkW8EmzGoYhDS7OGDK4AbZtyHlHlrwHgdsRumbPY9WIBqWCKGuIOZQPAYLriSNPY3ESmO%2b7H77%2fq%2fvv4B\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:08 GMT" + "Wed, 01 Mar 2017 20:50:22 GMT" ], "Pragma": [ "no-cache" @@ -99,29 +99,29 @@ "Accept-Encoding" ], "x-ms-original-request-ids": [ - "northcentralus:d5a19eb4-5b2b-471a-9c84-452be3d9c646", - "centralus:6d954128-a9aa-4cfd-98bf-f74c3875b191", - "southcentralus:02fb68a4-9263-41de-a999-83e571e1edf3", - "northeurope:e03771a6-1dc9-49e4-89be-44e9c9d0e20a", - "westeurope:7df6a998-a160-48db-a341-63880d705824", - "westus:3c201786-e3da-45a9-a4d2-68f5fc2bba7e", - "eastus:64c21a34-598c-4dea-8263-7cb256b2637b", - "eastus2:56efbb6c-1b92-4013-9869-51cbaf959e11", - "brazilsouth:6c88fdff-f910-4086-95ae-7f5965dc62dc", - "westus2:ae156f5d-6ca4-4932-9fcc-8d42614a2cf9", - "westcentralus:569736d8-0e77-421d-bbc8-0497f6c40e5a" + "northcentralus:f0b490a3-d246-4d61-adf8-9b0c00d4365c", + "centralus:6e8528b3-5d2a-47da-9fbc-c310bb162403", + "southcentralus:b0d9cd7e-92c4-4d07-a4bb-7656ea6e7d70", + "northeurope:131f3694-7c1a-434e-a4bb-94944c305bd1", + "westeurope:dba36f14-fd00-4d3f-b1a8-85b13eba2f56", + "westus:a5ff6125-7e92-49f5-97a2-04f5b8e0e816", + "eastus:c7d119ed-dde4-4e42-a650-167069019eee", + "eastus2:7718660d-2b07-4269-a43c-c7eea79e3350", + "brazilsouth:d5f990ef-ebb1-4ac6-a3b1-e4dcc302524c", + "westus2:ac355b33-b07a-44be-b36c-b568849e6870", + "westcentralus:64e1f449-f1a5-4f24-9300-c70d163be9b8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14615" + "14952" ], "x-ms-request-id": [ - "c4514149-b279-4533-bcc4-67f725ee0e96" + "62e3bcb9-88a3-4bd4-87c8-08ee06366e54" ], "x-ms-correlation-request-id": [ - "c4514149-b279-4533-bcc4-67f725ee0e96" + "62e3bcb9-88a3-4bd4-87c8-08ee06366e54" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002009Z:c4514149-b279-4533-bcc4-67f725ee0e96" + "CENTRALUS:20170301T205022Z:62e3bcb9-88a3-4bd4-87c8-08ee06366e54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,20 +130,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7851?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzg1MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1201?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTIwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "705c2dd3-9bd0-47dd-be35-2875434561fd" + "e37a3393-2d3d-4613-b3a3-676f929b0954" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -158,13 +158,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:10 GMT" + "Wed, 01 Mar 2017 20:50:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3bf06a9d-e33e-4df2-82a6-3c22a86ce6bb" + "westus:671fed48-9e79-4e12-9b95-89bc31f992ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,10 +173,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "27c9a5f6-047d-47ec-a935-78cd5fae63b7" + "2dd09f0d-7de1-49d6-89e8-310b952f1a72" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002010Z:27c9a5f6-047d-47ec-a935-78cd5fae63b7" + "CENTRALUS:20170301T205023Z:2dd09f0d-7de1-49d6-89e8-310b952f1a72" ] }, "StatusCode": 200 @@ -184,7 +184,7 @@ ], "Names": { "ListIntegrationAccountBySubscription": [ - "IntegrationAccount7851" + "IntegrationAccount1201" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json index 899b2e8a90ec..58aa9e9c9600 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "09e811a9-549a-471a-9153-189d515664bf" + "257ea4a8-b744-4630-bf3b-d7f516a9995f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199\",\r\n \"name\": \"IntegrationAccount2199\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173\",\r\n \"name\": \"IntegrationAccount3173\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:00 GMT" + "Wed, 01 Mar 2017 20:50:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e03526c8-b8a7-4d0c-832b-2cd7fd02e4b2" + "westus:4368d7b7-67eb-4ae7-b641-ba6786aaec66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,17 +53,17 @@ "1199" ], "x-ms-correlation-request-id": [ - "08d41ced-3e66-4ddb-b288-dfd859b6a05e" + "4cf0ca3a-fd69-44e4-9b2a-f8af95145a17" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002001Z:08d41ced-3e66-4ddb-b288-dfd859b6a05e" + "CENTRALUS:20170301T205011Z:4cf0ca3a-fd69-44e4-9b2a-f8af95145a17" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -74,17 +74,17 @@ "2" ], "x-ms-client-request-id": [ - "bee1c07f-9932-4079-9b8a-2ff882653b21" + "b633263c-e2e5-44f0-aa01-b92297242f69" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=JlFkBXYeqaZy_gTJIDRs_6S9QLu6w9KBZGHG6VndTiI\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=qWXzkQXOUlz7f6-Rbd77jkpeejbQrWW-_ub53g5rhnI\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:00 GMT" + "Wed, 01 Mar 2017 20:50:11 GMT" ], "Pragma": [ "no-cache" @@ -109,7 +109,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:62c6affd-7206-4676-b3a3-8b1c5c2aadb6" + "westus:1f4c4f9a-58ce-417d-9885-69fea3d7ceec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -118,17 +118,17 @@ "1198" ], "x-ms-correlation-request-id": [ - "a86e4d4d-c8e4-4b58-8a2a-09bb47fe76f7" + "317882a3-2ac2-4ac3-9e2b-a89d285aca57" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002001Z:a86e4d4d-c8e4-4b58-8a2a-09bb47fe76f7" + "CENTRALUS:20170301T205011Z:317882a3-2ac2-4ac3-9e2b-a89d285aca57" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -139,17 +139,17 @@ "2" ], "x-ms-client-request-id": [ - "8840e157-5c1f-46bf-bc47-f704947e92d1" + "1e3541ba-c1d3-4b4f-a095-e4ec322acf3b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=JlFkBXYeqaZy_gTJIDRs_6S9QLu6w9KBZGHG6VndTiI\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=qWXzkQXOUlz7f6-Rbd77jkpeejbQrWW-_ub53g5rhnI\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -161,7 +161,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:00 GMT" + "Wed, 01 Mar 2017 20:50:11 GMT" ], "Pragma": [ "no-cache" @@ -174,7 +174,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:cba81a70-3bfb-41b1-ad21-1203451b5efa" + "westus:fe1ad7e6-1775-4588-8800-051ef23c5755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,19 +183,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "4c59a03f-b3e6-4904-863f-bdeeb5093729" + "13f7c21b-4930-46e0-8c0f-84b5141b3f5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002001Z:4c59a03f-b3e6-4904-863f-bdeeb5093729" + "CENTRALUS:20170301T205011Z:13f7c21b-4930-46e0-8c0f-84b5141b3f5a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"notAfter\": \"2017-03-06T08:00:00Z\",\r\n \"keyType\": \"Primary\"\r\n}", + "RequestBody": "{\r\n \"notAfter\": \"2017-03-11T08:00:00Z\",\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -204,17 +204,17 @@ "67" ], "x-ms-client-request-id": [ - "bfa8ca02-0428-400f-af3f-90ab5190de1d" + "7171bab3-1aaf-4d60-807f-3b35177e7446" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&se=2017-03-06T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=fg0ThOiuUsFf8oytfcFiHw6Tfv0ATZ59wQfAjQOJITw\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&se=2017-03-11T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=NuHrY3K4e6rcjaye4Tztjku9-7YRGSLPjbhjO4CYoxo\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +226,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:00 GMT" + "Wed, 01 Mar 2017 20:50:11 GMT" ], "Pragma": [ "no-cache" @@ -239,7 +239,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:c66de77c-bd1d-4dae-9c8b-8c16c6d5c1a0" + "westus:f214abf4-07c9-4b13-bc32-52555b84b068" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -248,17 +248,17 @@ "1196" ], "x-ms-correlation-request-id": [ - "832f1ce6-6fc8-4574-8125-0264bcd51f0d" + "fc8f334a-5ccd-4456-ab36-61b4c40037a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002001Z:832f1ce6-6fc8-4574-8125-0264bcd51f0d" + "CENTRALUS:20170301T205011Z:fc8f334a-5ccd-4456-ab36-61b4c40037a8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -269,17 +269,17 @@ "28" ], "x-ms-client-request-id": [ - "117557ca-b584-4c8d-96e1-064e1357e7bd" + "e98ec41e-0e5e-406e-a234-c11583051fe6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=JlFkBXYeqaZy_gTJIDRs_6S9QLu6w9KBZGHG6VndTiI\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=qWXzkQXOUlz7f6-Rbd77jkpeejbQrWW-_ub53g5rhnI\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -291,7 +291,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:00 GMT" + "Wed, 01 Mar 2017 20:50:12 GMT" ], "Pragma": [ "no-cache" @@ -304,7 +304,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:019dad6d-7238-4e7b-bf41-0bec8bdab6d4" + "westus:03bcd810-28a7-49f7-b2e6-8dd64217d327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -313,19 +313,19 @@ "1195" ], "x-ms-correlation-request-id": [ - "21890549-6fd9-4bee-a789-353a7f42efc9" + "62f8be73-a758-4d54-8fba-a4d8153cc323" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002001Z:21890549-6fd9-4bee-a789-353a7f42efc9" + "CENTRALUS:20170301T205012Z:62f8be73-a758-4d54-8fba-a4d8153cc323" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"notAfter\": \"2017-03-06T08:00:00Z\"\r\n}", + "RequestBody": "{\r\n \"notAfter\": \"2017-03-11T08:00:00Z\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -334,17 +334,17 @@ "42" ], "x-ms-client-request-id": [ - "4dfb84ad-2591-4d75-8d91-90232cb42e8c" + "3b77c106-3678-414a-968b-4b0a33aadde1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-08.westus.logic.azure.com:443/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a?api-version=2015-08-01-preview&se=2017-03-06T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=fg0ThOiuUsFf8oytfcFiHw6Tfv0ATZ59wQfAjQOJITw\",\r\n \"basePath\": \"https://prod-08.westus.logic.azure.com/integrationAccounts/2c57a6d2fa8e45be861810e1f1b6a08a\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&se=2017-03-11T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=NuHrY3K4e6rcjaye4Tztjku9-7YRGSLPjbhjO4CYoxo\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -356,7 +356,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:01 GMT" + "Wed, 01 Mar 2017 20:50:12 GMT" ], "Pragma": [ "no-cache" @@ -369,7 +369,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:8a3d60cc-ef99-4dbe-b92c-190cb2393e89" + "westus:6101f186-5e76-4d24-bda4-1adb675730c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,29 +378,29 @@ "1194" ], "x-ms-correlation-request-id": [ - "b1eaacc8-0d2f-49af-9bd2-1d6c1094c031" + "2b62504f-58ba-4933-ad5d-0171bc52a3d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002001Z:b1eaacc8-0d2f-49af-9bd2-1d6c1094c031" + "CENTRALUS:20170301T205012Z:2b62504f-58ba-4933-ad5d-0171bc52a3d1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2199?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjE5OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be529ec9-1408-4b85-b933-b507072587f0" + "0218b623-9b0e-41ee-ba00-bf2984d191ff" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -415,13 +415,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:01 GMT" + "Wed, 01 Mar 2017 20:50:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:54dc456b-4ca0-4fee-8dbb-c0e36029e33b" + "westus:bdbdf947-6cd4-4f68-8430-e0434c895c74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -430,10 +430,10 @@ "1193" ], "x-ms-correlation-request-id": [ - "4a125005-dffa-405d-afe7-f7699f053d41" + "f4203630-828e-432e-9284-ce664f130070" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002002Z:4a125005-dffa-405d-afe7-f7699f053d41" + "CENTRALUS:20170301T205012Z:f4203630-828e-432e-9284-ce664f130070" ] }, "StatusCode": 200 @@ -441,7 +441,7 @@ ], "Names": { "ListIntegrationAccountCallbackUrl": [ - "IntegrationAccount2199" + "IntegrationAccount3173" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json index f49c84860354..f7b433c5b2fb 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "fc752c47-25cc-46c1-9afd-13ea3256d25b" + "4824e513-5131-4215-998e-f91d2c6b2f82" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311\",\r\n \"name\": \"IntegrationAccount4311\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821\",\r\n \"name\": \"IntegrationAccount1821\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:19 GMT" + "Wed, 01 Mar 2017 20:50:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:25286b6b-94b7-4bc9-b223-45422d4bbfa2" + "westus:adedf1ed-50ef-4de0-b7f0-3aa5ad1123de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,19 +53,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "6e98fced-4c47-47a5-ad37-887bbaaf6115" + "ae823108-8237-43eb-a3d9-eeafb8f0e882" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002019Z:6e98fced-4c47-47a5-ad37-887bbaaf6115" + "CENTRALUS:20170301T205039Z:ae823108-8237-43eb-a3d9-eeafb8f0e882" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount4311\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount1821\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "74" ], "x-ms-client-request-id": [ - "a889a97d-9886-4010-86d0-18e41745ca30" + "6f803aca-f680-45d9-9cfe-3619bd175061" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311\",\r\n \"name\": \"IntegrationAccount4311\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount4311\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821\",\r\n \"name\": \"IntegrationAccount1821\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount1821\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:19 GMT" + "Wed, 01 Mar 2017 20:50:40 GMT" ], "Pragma": [ "no-cache" @@ -109,7 +109,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:52c3145c-2e4f-481a-903c-055c97bc1512" + "westus:d64eb947-7219-4f98-b0e7-ac595a7bad99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -118,29 +118,29 @@ "1195" ], "x-ms-correlation-request-id": [ - "74480bf9-68a3-4d32-b64f-813ee3ea168f" + "a49a3d54-23f1-497c-b2e9-690151edea1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002020Z:74480bf9-68a3-4d32-b64f-813ee3ea168f" + "CENTRALUS:20170301T205040Z:a49a3d54-23f1-497c-b2e9-690151edea1d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4311?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c080af2d-60e8-4618-9d0c-8fe43236e1d7" + "183e6d2f-8b3e-440e-8f91-77bb48b85a72" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -155,13 +155,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:20:20 GMT" + "Wed, 01 Mar 2017 20:50:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8817b2be-8c7f-4c5b-993c-3658eccd382b" + "westus:c5f3b535-6abb-4818-9b0a-99e844b8201b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -170,10 +170,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "0ce14804-ad27-43b3-90cc-8d665eb0e1fa" + "800d759a-60ea-4c66-abf5-6f057186f4d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T002021Z:0ce14804-ad27-43b3-90cc-8d665eb0e1fa" + "CENTRALUS:20170301T205041Z:800d759a-60ea-4c66-abf5-6f057186f4d6" ] }, "StatusCode": 200 @@ -181,7 +181,7 @@ ], "Names": { "UpdateIntegrationAccount": [ - "IntegrationAccount4311" + "IntegrationAccount1821" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json index 57bee967d32d..4bc4d95207e9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "1dc53d9c-bd5f-4dbb-82b0-15ff2a72cd12" + "bab8a445-44c5-4ad3-9e02-13fd94443b17" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699\",\r\n \"name\": \"IntegrationAccount6699\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807\",\r\n \"name\": \"IntegrationAccount807\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:52 GMT" + "Wed, 01 Mar 2017 20:51:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:30d9a9fd-d1e9-47c9-a7be-9ca2b753d3b2" + "westus:5f313a55-f326-4eef-be63-08260d80078e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "d06df1b7-5364-4587-a28e-afd70ae925bb" + "78680e32-eae2-4214-b71f-d489834e6f7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001953Z:d06df1b7-5364-4587-a28e-afd70ae925bb" + "CENTRALUS:20170301T205127Z:78680e32-eae2-4214-b71f-d489834e6f7b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699/schemas/IntegrationAccountSchema8125?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTgxMjU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807/schemas/IntegrationAccountSchema4884?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hNDg4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema8125\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema8125\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema4884\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema4884\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "34591b8f-39f8-40fe-88f9-eea0a44a7956" + "ea39e1f3-f5da-4f69-b132-8bdabd1f91a5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu29by01.blob.core.windows.net/integrationaccounts7da084f32e804fa9b90520f9c3d387aa/3839E_XML_INTEGRATIONACCOUNTSCHEMA8125-6248A47723C145439E518CE78C2DA4CC?sv=2016-05-31&sr=b&sig=VeHd%2Bk1DGvQJ%2Bo6hGPCacRipaObY0tjoST7czt6ezr0%3D&se=2017-02-25T04%3A19%3A53Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D140551B833\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:53.9858026Z\",\r\n \"changedTime\": \"2017-02-25T00:19:53.9897401Z\",\r\n \"metadata\": \"IntegrationAccountSchema8125\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699/schemas/IntegrationAccountSchema8125\",\r\n \"name\": \"IntegrationAccountSchema8125\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/integrationaccounts105c17fcea274df6ab8a2841185c326a/3839E_XML_INTEGRATIONACCOUNTSCHEMA4884-259295F6EDE1430DAA59F2F52AD77184?sv=2016-05-31&sr=b&sig=J15FEfWSRzbyb36UdnYJoDUKTnzpFrr6ZcDrCTIXjxo%3D&se=2017-03-02T00%3A51%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4BC28C9F1\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:28.0740167Z\",\r\n \"changedTime\": \"2017-03-01T20:51:28.0748202Z\",\r\n \"metadata\": \"IntegrationAccountSchema4884\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807/schemas/IntegrationAccountSchema4884\",\r\n \"name\": \"IntegrationAccountSchema4884\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "952" + "947" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:53 GMT" + "Wed, 01 Mar 2017 20:51:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:70a3391c-bbc8-449f-a049-1e559485b9d2" + "westus:7ca7cc38-9b01-4335-b190-a2836ecf0ebe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "e09aa9a5-45f6-4420-b406-2a808cb2ab59" + "0b2496ef-f032-446b-82be-9390f59d72a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001954Z:e09aa9a5-45f6-4420-b406-2a808cb2ab59" + "CENTRALUS:20170301T205128Z:0b2496ef-f032-446b-82be-9390f59d72a5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699/schemas/IntegrationAccountSchema8125?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTgxMjU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807/schemas/IntegrationAccountSchema4884?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hNDg4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48289e56-f223-4c25-83b1-c1c226ceb503" + "13feff68-9f0a-430b-9e29-ee2e1afa08b9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -151,50 +151,50 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:53 GMT" + "Wed, 01 Mar 2017 20:51:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:55675182-2370-4e92-8936-147ef364066d" + "westus:dcbef311-0b6b-4932-ae26-df9608aa723a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "1f66c14e-d71f-4de3-821d-aa73ad886f7a" + "31c267d2-d3a5-4ec7-bfab-b962a55ef022" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001954Z:1f66c14e-d71f-4de3-821d-aa73ad886f7a" + "CENTRALUS:20170301T205128Z:31c267d2-d3a5-4ec7-bfab-b962a55ef022" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699/schemas/IntegrationAccountSchema8125?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTgxMjU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807/schemas/IntegrationAccountSchema4884?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hNDg4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2eadd4b-7ae9-4178-85b0-5cba16933b77" + "e9890cc5-7272-4f1d-8df8-385925108501" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SchemaNotFound\",\r\n \"message\": \"The schema 'IntegrationAccountSchema8125' could not be found in integration account 'IntegrationAccount6699'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SchemaNotFound\",\r\n \"message\": \"The schema 'IntegrationAccountSchema4884' could not be found in integration account 'IntegrationAccount807'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "157" + "156" ], "Content-Type": [ "application/json; charset=utf-8" @@ -206,44 +206,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:53 GMT" + "Wed, 01 Mar 2017 20:51:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:62c7bddb-7c70-414e-b042-6041a15dfcd4" + "westus:5a31cffc-229a-4ae6-adc8-4eb9f09ac025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14509" + "14945" ], "x-ms-correlation-request-id": [ - "677a5449-e60f-4cc6-abfd-2486857cf7a7" + "04b0d668-ad4f-48d2-9887-2302c78e23cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001954Z:677a5449-e60f-4cc6-abfd-2486857cf7a7" + "CENTRALUS:20170301T205129Z:04b0d668-ad4f-48d2-9887-2302c78e23cf" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6699?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY5OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b0a9de8-5382-4d60-b8de-b4ad1dde3256" + "78b33d67-199e-4324-b603-9b15786e8881" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -258,25 +258,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:54 GMT" + "Wed, 01 Mar 2017 20:51:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d2e71809-1f0a-4717-b8fc-96945e48a5b1" + "westus:b928c9f4-8e34-472e-8c20-ca213b68a04c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "4432b83f-3470-40ed-9710-eb282bf42561" + "4fc5f83e-1790-43cc-9318-a9e52c64e349" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001954Z:4432b83f-3470-40ed-9710-eb282bf42561" + "CENTRALUS:20170301T205129Z:4fc5f83e-1790-43cc-9318-a9e52c64e349" ] }, "StatusCode": 200 @@ -284,8 +284,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountSchema": [ - "IntegrationAccount6699", - "IntegrationAccountSchema8125" + "IntegrationAccount807", + "IntegrationAccountSchema4884" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json index 321748ab95f7..4dd682668d00 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTY4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "4bed437c-c601-4bef-9875-be6057dbf191" + "defbd6bf-cc2d-413b-a1f9-217da315032e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755\",\r\n \"name\": \"IntegrationAccount755\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681\",\r\n \"name\": \"IntegrationAccount5681\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:43 GMT" + "Wed, 01 Mar 2017 20:51:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0726f904-3608-4ebb-b6a2-27fe8fb911c4" + "westus:06a65dce-a7b5-466e-af20-5cddcd326f49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,41 +53,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "c1e9223b-b99d-4a6c-90ce-f4f089e0bf0b" + "5fc50bda-d3aa-49fa-a81b-ad12a603f41b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001944Z:c1e9223b-b99d-4a6c-90ce-f4f089e0bf0b" + "CENTRALUS:20170301T205117Z:5fc50bda-d3aa-49fa-a81b-ad12a603f41b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755/schemas/IntegrationAccountSchema168?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU1L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hMTY4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681/schemas/IntegrationAccountSchema4005?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTY4MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTQwMDU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema168\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema168\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema4005\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema4005\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8698" + "8700" ], "x-ms-client-request-id": [ - "ed5f9d39-5647-4aac-af3f-87f44b4106cc" + "31462a11-e75a-4442-8482-c4b34c495e20" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu23by01.blob.core.windows.net/integrationaccountsb1d55ee0e6f94168a2b7e29dda36d507/3839E_XML_INTEGRATIONACCOUNTSCHEMA168-B423109721094051956D6CBF67922ECD?sv=2016-05-31&sr=b&sig=9TBAJKfo2OdnQTYRletYLN95VjN9t0hjhPRTO2OaC%2F0%3D&se=2017-02-25T04%3A19%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D13FFCA1144\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:44.7255141Z\",\r\n \"changedTime\": \"2017-02-25T00:19:44.7263478Z\",\r\n \"metadata\": \"IntegrationAccountSchema168\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755/schemas/IntegrationAccountSchema168\",\r\n \"name\": \"IntegrationAccountSchema168\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccountsdabba557a6754cdea0516c0a7334a6bb/3839E_XML_INTEGRATIONACCOUNTSCHEMA4005-5B1408D270FD4EBBB9EB3AF8D31AFD4E?sv=2016-05-31&sr=b&sig=04%2FZ8P0BtYvBKJnlZ0ceaFwEdzL3UQWVBNPt20sSmUk%3D&se=2017-03-02T00%3A51%3A18Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B5C5D50B\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:18.2533897Z\",\r\n \"changedTime\": \"2017-03-01T20:51:18.2538929Z\",\r\n \"metadata\": \"IntegrationAccountSchema4005\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681/schemas/IntegrationAccountSchema4005\",\r\n \"name\": \"IntegrationAccountSchema4005\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "945" + "950" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:44 GMT" + "Wed, 01 Mar 2017 20:51:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:66ad5f7a-19f7-4507-bce0-66bfd2526bb8" + "westus:f7c3e2b1-b645-492d-98ff-b50a1b0ce0c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,32 +114,32 @@ "1198" ], "x-ms-correlation-request-id": [ - "01467090-cdf1-4377-9890-118be41802c0" + "612a473a-443e-4bec-a3e9-f86dcaedca53" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001944Z:01467090-cdf1-4377-9890-118be41802c0" + "CENTRALUS:20170301T205118Z:612a473a-443e-4bec-a3e9-f86dcaedca53" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755/schemas/IntegrationAccountSchema168?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU1L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hMTY4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681/schemas/IntegrationAccountSchema4005?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTY4MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTQwMDU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8643e53a-1ef1-4c9b-9272-07283eafdc38" + "772ec556-0c76-41d0-8841-7a22ca017d2d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu23by01.blob.core.windows.net/integrationaccountsb1d55ee0e6f94168a2b7e29dda36d507/3839E_XML_INTEGRATIONACCOUNTSCHEMA168-B423109721094051956D6CBF67922ECD?sv=2016-05-31&sr=b&sig=9TBAJKfo2OdnQTYRletYLN95VjN9t0hjhPRTO2OaC%2F0%3D&se=2017-02-25T04%3A19%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D13FFCA1144\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:44.7255141Z\",\r\n \"changedTime\": \"2017-02-25T00:19:44.7263478Z\",\r\n \"metadata\": \"IntegrationAccountSchema168\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755/schemas/IntegrationAccountSchema168\",\r\n \"name\": \"IntegrationAccountSchema168\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccountsdabba557a6754cdea0516c0a7334a6bb/3839E_XML_INTEGRATIONACCOUNTSCHEMA4005-5B1408D270FD4EBBB9EB3AF8D31AFD4E?sv=2016-05-31&sr=b&sig=04%2FZ8P0BtYvBKJnlZ0ceaFwEdzL3UQWVBNPt20sSmUk%3D&se=2017-03-02T00%3A51%3A18Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B5C5D50B\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:18.2533897Z\",\r\n \"changedTime\": \"2017-03-01T20:51:18.2538929Z\",\r\n \"metadata\": \"IntegrationAccountSchema4005\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681/schemas/IntegrationAccountSchema4005\",\r\n \"name\": \"IntegrationAccountSchema4005\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:44 GMT" + "Wed, 01 Mar 2017 20:51:18 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4a235667-8d9c-4c6e-8a9e-0cfe4e92b68b" + "westus:9b2c2714-e05b-4426-898a-2aec2afab454" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14934" ], "x-ms-correlation-request-id": [ - "3653df15-9e83-49a3-815c-68a673bd2dba" + "9165c6ef-a484-4734-a40c-1ff0eddc3022" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001944Z:3653df15-9e83-49a3-815c-68a673bd2dba" + "CENTRALUS:20170301T205118Z:9165c6ef-a484-4734-a40c-1ff0eddc3022" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount755?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTY4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "696b5de1-5cb3-4909-b63b-fd3b30b2e37b" + "2503772a-d4e6-4d26-8b01-61f2f24b3e18" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,13 +210,13 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:44 GMT" + "Wed, 01 Mar 2017 20:51:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:dd6144f9-e245-4ab0-b054-189d0304edab" + "westus:37a60f1d-1928-4908-befe-34faff673463" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,10 +225,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "007699c7-f2c1-4323-92a1-7af4fdf783a8" + "7980a3f7-fd45-4a82-a807-a7da21ab99f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001945Z:007699c7-f2c1-4323-92a1-7af4fdf783a8" + "CENTRALUS:20170301T205119Z:7980a3f7-fd45-4a82-a807-a7da21ab99f9" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountSchema": [ - "IntegrationAccount755", - "IntegrationAccountSchema168" + "IntegrationAccount5681", + "IntegrationAccountSchema4005" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json index 573d9910d360..5d23b1d01da4 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "6cbb8dce-500a-40fc-a2d5-c19d8401fb32" + "15af5f71-6765-4d18-a00a-987eb4b26ce0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913\",\r\n \"name\": \"IntegrationAccount5913\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996\",\r\n \"name\": \"IntegrationAccount9996\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:48 GMT" + "Wed, 01 Mar 2017 20:51:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:93e3021d-70d8-4b77-83d0-ecad50b3b7cb" + "westus:61c8c254-556f-4a0f-94a6-4c8922feeb1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "5e574332-c189-4f78-b35c-b223239d3e8c" + "5e3c31ad-791b-4d24-9473-dfc7b2dba241" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001948Z:5e574332-c189-4f78-b35c-b223239d3e8c" + "CENTRALUS:20170301T205123Z:5e3c31ad-791b-4d24-9473-dfc7b2dba241" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913/schemas/IntegrationAccountSchema9621?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTkxMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTk2MjE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996/schemas/IntegrationAccountSchema1515?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk5Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE1MTU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema9621\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema9621\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema1515\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema1515\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "a25bebe0-8075-4eba-8cae-240241e0b461" + "1ee54b8c-d8e1-4b7b-b7b9-ce82f8426ad2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu31by01.blob.core.windows.net/integrationaccountseab76f2d173f4cdf979ecafdc390913b/3839E_XML_INTEGRATIONACCOUNTSCHEMA9621-CF0B4F009C84465E89984197459E80DA?sv=2016-05-31&sr=b&sig=o9NPChOQ86vtJ0dLoccTCnAdrLQouG54SQQU5VMEB9M%3D&se=2017-02-25T04%3A19%3A49Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D14026DF92B\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:49.2437039Z\",\r\n \"changedTime\": \"2017-02-25T00:19:49.2481481Z\",\r\n \"metadata\": \"IntegrationAccountSchema9621\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913/schemas/IntegrationAccountSchema9621\",\r\n \"name\": \"IntegrationAccountSchema9621\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu30by01.blob.core.windows.net/integrationaccounts13ce8b72606549598f66a6cb7ce27b6d/3839E_XML_INTEGRATIONACCOUNTSCHEMA1515-5D0479D2EB7647A9811A64953F4F12B7?sv=2016-05-31&sr=b&sig=Tx6vgUr3ledG%2Fh%2FZNjPDNQ67PMIGZMbntJI%2BYA5m3Oo%3D&se=2017-03-02T00%3A51%3A23Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B8E3E4A3\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:23.8397218Z\",\r\n \"changedTime\": \"2017-03-01T20:51:23.840386Z\",\r\n \"metadata\": \"IntegrationAccountSchema1515\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996/schemas/IntegrationAccountSchema1515\",\r\n \"name\": \"IntegrationAccountSchema1515\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "948" + "953" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:48 GMT" + "Wed, 01 Mar 2017 20:51:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b524d4f9-43f8-420a-9e35-827347302b18" + "westus:bd237cb3-22cf-4a5d-bd95-65957f2f1e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "5a42e67f-fcb0-4146-af9f-9b3afa603cc4" + "ad54c417-cf3f-4291-9455-32a68f27410d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001949Z:5a42e67f-fcb0-4146-af9f-9b3afa603cc4" + "CENTRALUS:20170301T205123Z:ad54c417-cf3f-4291-9455-32a68f27410d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913/schemas/IntegrationAccountSchema9621?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTkxMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTk2MjE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996/schemas/IntegrationAccountSchema1515?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk5Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE1MTU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "8564" ], "x-ms-client-request-id": [ - "0810cb23-4d57-4929-8f80-740512806477" + "896478a0-4da2-45db-9495-503b3c15f598" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu31by01.blob.core.windows.net/integrationaccountseab76f2d173f4cdf979ecafdc390913b/3839E_XML_INTEGRATIONACCOUNTSCHEMA9621-D389860E018C489A80F541679372A445?sv=2016-05-31&sr=b&sig=Lu3nW8Huo1SmbIhHN5dCzsBWHnaS879KJR48IJ7TKDQ%3D&se=2017-02-25T04%3A19%3A49Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1402861A62\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:49.2437039Z\",\r\n \"changedTime\": \"2017-02-25T00:19:49.4388297Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913/schemas/IntegrationAccountSchema9621\",\r\n \"name\": \"IntegrationAccountSchema9621\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu30by01.blob.core.windows.net/integrationaccounts13ce8b72606549598f66a6cb7ce27b6d/3839E_XML_INTEGRATIONACCOUNTSCHEMA1515-5D5A44DB111B4EA7A516D45EBDA9347C?sv=2016-05-31&sr=b&sig=Aal5I0uVTIyETz4s%2FEk4%2Fb5ECS434Q3SpXuh1TodHuI%3D&se=2017-03-02T00%3A51%3A24Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B906B782\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:23.8397218Z\",\r\n \"changedTime\": \"2017-03-01T20:51:24.0780066Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996/schemas/IntegrationAccountSchema1515\",\r\n \"name\": \"IntegrationAccountSchema1515\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:48 GMT" + "Wed, 01 Mar 2017 20:51:23 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1bb537d1-7084-4d1c-8f2a-1633a9ebe851" + "westus:43ab57c8-4023-4d96-89a5-68d243220e7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "aca99d20-3a1b-44a4-85a9-69fac3809090" + "fe2fab77-d4a3-4ade-8d84-36d455cdbfad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001949Z:aca99d20-3a1b-44a4-85a9-69fac3809090" + "CENTRALUS:20170301T205124Z:fe2fab77-d4a3-4ade-8d84-36d455cdbfad" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5913?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d0b8c8a-7f7a-4a9c-9a19-7f709528790d" + "ea2ffe11-48dc-472b-98c4-8186a98143e7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:49 GMT" + "Wed, 01 Mar 2017 20:51:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8e8d0520-056e-451d-8ff1-a8d181264dab" + "westus:19b38c8a-8640-480e-801b-22fcff83359d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "dad8eae8-04a3-4f01-8f52-4c1e0a0219dd" + "f4cfed59-12eb-44a5-876d-617c4174b0e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001950Z:dad8eae8-04a3-4f01-8f52-4c1e0a0219dd" + "CENTRALUS:20170301T205124Z:f4cfed59-12eb-44a5-876d-617c4174b0e8" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountSchema": [ - "IntegrationAccount5913", - "IntegrationAccountSchema9621" + "IntegrationAccount9996", + "IntegrationAccountSchema1515" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json index 2eb5d6812887..a673a9b5974d 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzc2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "836e88fd-4c5a-4b42-8c6d-242d752a610c" + "b48d5c15-96ce-4fc8-aa2a-4c8a6db4a999" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003\",\r\n \"name\": \"IntegrationAccount2003\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761\",\r\n \"name\": \"IntegrationAccount7761\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:56 GMT" + "Wed, 01 Mar 2017 20:51:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0bd427b6-e051-40e9-98f2-e4f17e14b754" + "westus:633479d8-9fe7-45d7-a785-2a2e8b9c4837" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "efc64937-e91b-4220-bc27-9a3ab61d71fd" + "832ba513-de07-445c-92ff-df61a191fffa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001957Z:efc64937-e91b-4220-bc27-9a3ab61d71fd" + "CENTRALUS:20170301T205132Z:832ba513-de07-445c-92ff-df61a191fffa" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003/schemas/IntegrationAccountSchema7549?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAwMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTc1NDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761/schemas/IntegrationAccountSchema5800?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzc2MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTU4MDA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema7549\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema7549\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema5800\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema5800\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "8700" ], "x-ms-client-request-id": [ - "023b6277-f502-47c5-af08-251971a01cf0" + "75f4cf2c-fe8f-4755-8083-22998ca8b2d8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu11by01.blob.core.windows.net/integrationaccounts0d26fedc11ea495996c542d1ba7e63ea/3839E_XML_INTEGRATIONACCOUNTSCHEMA7549-DD6824B91DB847E181CB3ECB16C44825?sv=2016-05-31&sr=b&sig=Y42HNi%2BrYpTgyacOFnx%2FLjiGnB6JFPcOlq1yUoglY9Y%3D&se=2017-02-25T04%3A19%3A57Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D1407C1D73F\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:57.8077324Z\",\r\n \"changedTime\": \"2017-02-25T00:19:57.8080574Z\",\r\n \"metadata\": \"IntegrationAccountSchema7549\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003/schemas/IntegrationAccountSchema7549\",\r\n \"name\": \"IntegrationAccountSchema7549\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu19by01.blob.core.windows.net/integrationaccounts08fea963b3ec4c78b2bb15147d7ed88e/3839E_XML_INTEGRATIONACCOUNTSCHEMA5800-34E6EAC8156147408F1EE7FC5090E206?sv=2016-05-31&sr=b&sig=HA%2BRuFASKIzx1vJvnocP8STspXEaxVdYW5%2FlTyeFUNg%3D&se=2017-03-02T00%3A51%3A33Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4BE9442E9\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:33.1232826Z\",\r\n \"changedTime\": \"2017-03-01T20:51:33.1241503Z\",\r\n \"metadata\": \"IntegrationAccountSchema5800\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761/schemas/IntegrationAccountSchema5800\",\r\n \"name\": \"IntegrationAccountSchema5800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ "952" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:57 GMT" + "Wed, 01 Mar 2017 20:51:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:53ee7fb3-0903-4c22-8e61-ead275db9583" + "westus:2d057c18-5826-479d-bfb3-c0b02fcd550a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "8aa32b98-56bc-4e12-bf6e-038d428de756" + "c1f6b07b-5920-4793-b0c7-fd0ef83048f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001957Z:8aa32b98-56bc-4e12-bf6e-038d428de756" + "CENTRALUS:20170301T205133Z:c1f6b07b-5920-4793-b0c7-fd0ef83048f9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzc2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1a19719-e2c4-4863-9aa6-09471ceb5c1d" + "a38138a1-0a4e-46ad-8629-0d8c01643bc5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:57 GMT" + "Wed, 01 Mar 2017 20:51:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3c4b3acb-1a01-4935-933a-cb551192adb2" + "westus:71a77ad3-930a-45b6-93bd-776e2e6b3f39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "1c7b5aa3-d077-4377-8b57-a84f09ee561b" + "ba224a1d-f747-4b5a-898f-86fad5e288cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001958Z:1c7b5aa3-d077-4377-8b57-a84f09ee561b" + "CENTRALUS:20170301T205134Z:ba224a1d-f747-4b5a-898f-86fad5e288cc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2003/schemas/IntegrationAccountSchema7549?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAwMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTc1NDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761/schemas/IntegrationAccountSchema5800?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzc2MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTU4MDA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6346a55-078a-4f78-a960-69969216b8b5" + "70819099-6be8-4eb9-af79-743c76a39c6f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount2003' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7761' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:58 GMT" + "Wed, 01 Mar 2017 20:51:33 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "c48b23d4-09f4-417e-9854-be3994240664" + "ab306de3-6949-4105-af6c-34ceceb0ab18" ], "x-ms-correlation-request-id": [ - "c48b23d4-09f4-417e-9854-be3994240664" + "ab306de3-6949-4105-af6c-34ceceb0ab18" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001958Z:c48b23d4-09f4-417e-9854-be3994240664" + "CENTRALUS:20170301T205134Z:ab306de3-6949-4105-af6c-34ceceb0ab18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountSchemaOnAccountDeletion": [ - "IntegrationAccount2003", - "IntegrationAccountSchema7549" + "IntegrationAccount7761", + "IntegrationAccountSchema5800" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json index 1577a9747be7..4f3dd8822807 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjM2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "d3bd7bb0-4de1-41bd-b92c-23438d1bb283" + "8804d8f2-65d8-4f07-945a-3b0371b0fba9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361\",\r\n \"name\": \"IntegrationAccount2361\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553\",\r\n \"name\": \"IntegrationAccount4553\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:40 GMT" + "Wed, 01 Mar 2017 20:51:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f588f02b-735b-4bed-8ae8-05f17328552e" + "westus:4d09f9a4-c540-4078-b0cc-626b09c10da9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "836bbad5-02da-43a8-87b3-3fd716b43149" + "3ff06193-e28c-413e-836d-894bcd6012d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001940Z:836bbad5-02da-43a8-87b3-3fd716b43149" + "CENTRALUS:20170301T205112Z:3ff06193-e28c-413e-836d-894bcd6012d4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361/schemas/IntegrationAccountSchema6506?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjM2MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTY1MDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553/schemas/IntegrationAccountSchema7509?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1My9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTc1MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema6506\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema6506\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema7509\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema7509\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "1d6da609-7fde-4e66-9d9d-5f97dc026187" + "1d4a0692-dcd5-4d7f-88c1-064d0dbfd757" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/integrationaccounts8f2db22836cf4c23b03ba9ccc291e1b6/3839E_XML_INTEGRATIONACCOUNTSCHEMA6506-58A8E4FC9BDE48A0BADB0C8FA418F64A?sv=2016-05-31&sr=b&sig=0pXl6f5mCaJ3y2n%2FDniQGUaaZgn11fM6vG1Oxwl5sV0%3D&se=2017-02-25T04%3A19%3A41Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D13FDA9231F\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:41.1712365Z\",\r\n \"changedTime\": \"2017-02-25T00:19:41.1751365Z\",\r\n \"metadata\": \"IntegrationAccountSchema6506\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361/schemas/IntegrationAccountSchema6506\",\r\n \"name\": \"IntegrationAccountSchema6506\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu11by01.blob.core.windows.net/integrationaccountse055c66eb07f4ea5b33a10fbd0d1e022/3839E_XML_INTEGRATIONACCOUNTSCHEMA7509-6C61A6FE10C947D1B69EE0DBD9E3FE66?sv=2016-05-31&sr=b&sig=GyTvESUA83ZEr4Jx8D8BubdxiJFbFpEShp8pdxiEBoM%3D&se=2017-03-02T00%3A51%3A13Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B29C6EAD\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:13.1657734Z\",\r\n \"changedTime\": \"2017-03-01T20:51:13.1666837Z\",\r\n \"metadata\": \"IntegrationAccountSchema7509\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553/schemas/IntegrationAccountSchema7509\",\r\n \"name\": \"IntegrationAccountSchema7509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "950" + "948" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:41 GMT" + "Wed, 01 Mar 2017 20:51:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7002922a-6932-486b-8b5b-86e0e0cd55fb" + "westus:3ed7b343-099c-4050-8078-f454ab418756" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "04d44f09-9cb2-4b92-87f6-21b71e5f35cd" + "da2da47e-f573-410f-b8c4-064f975f2be6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001941Z:04d44f09-9cb2-4b92-87f6-21b71e5f35cd" + "CENTRALUS:20170301T205113Z:da2da47e-f573-410f-b8c4-064f975f2be6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361/schemas?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjM2MS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553/schemas?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1My9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff5df392-0cf8-4393-a962-3af0a80b8799" + "49ffc947-7fcf-4b0a-b5c5-0f1335575e91" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/integrationaccounts8f2db22836cf4c23b03ba9ccc291e1b6/3839E_XML_INTEGRATIONACCOUNTSCHEMA6506-58A8E4FC9BDE48A0BADB0C8FA418F64A?sv=2016-05-31&sr=b&sig=0pXl6f5mCaJ3y2n%2FDniQGUaaZgn11fM6vG1Oxwl5sV0%3D&se=2017-02-25T04%3A19%3A41Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45D13FDA9231F\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-25T00:19:41.1712365Z\",\r\n \"changedTime\": \"2017-02-25T00:19:41.1751365Z\",\r\n \"metadata\": \"IntegrationAccountSchema6506\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361/schemas/IntegrationAccountSchema6506\",\r\n \"name\": \"IntegrationAccountSchema6506\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu11by01.blob.core.windows.net/integrationaccountse055c66eb07f4ea5b33a10fbd0d1e022/3839E_XML_INTEGRATIONACCOUNTSCHEMA7509-6C61A6FE10C947D1B69EE0DBD9E3FE66?sv=2016-05-31&sr=b&sig=GyTvESUA83ZEr4Jx8D8BubdxiJFbFpEShp8pdxiEBoM%3D&se=2017-03-02T00%3A51%3A13Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B29C6EAD\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:13.1657734Z\",\r\n \"changedTime\": \"2017-03-01T20:51:13.1666837Z\",\r\n \"metadata\": \"IntegrationAccountSchema7509\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553/schemas/IntegrationAccountSchema7509\",\r\n \"name\": \"IntegrationAccountSchema7509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:41 GMT" + "Wed, 01 Mar 2017 20:51:12 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e8bb4204-c7cc-472f-a358-dad511eb0257" + "westus:4d5d95d1-67ae-4f49-a4c6-54592a56d804" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14948" ], "x-ms-correlation-request-id": [ - "b613e91c-3491-4886-bd19-b2ba1fb3d020" + "97ed230f-bfab-42eb-a26f-7df34d4a24a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001941Z:b613e91c-3491-4886-bd19-b2ba1fb3d020" + "CENTRALUS:20170301T205113Z:97ed230f-bfab-42eb-a26f-7df34d4a24a4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2361?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjM2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c4835f9-c959-45f2-957f-cbb8527389cc" + "76da35b1-25c6-4287-a04d-3178e78811c8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:19:41 GMT" + "Wed, 01 Mar 2017 20:51:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2aa93642-5ba1-44cf-9a78-a5ef56aeaf6b" + "westus:961e6d9a-4d49-4f95-9278-15f5a47548f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-correlation-request-id": [ - "85ad7c01-dc57-4247-bbaf-ca75f60ce2f8" + "c3349da5-06dd-4503-acd4-30fdcf71cc07" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T001941Z:85ad7c01-dc57-4247-bbaf-ca75f60ce2f8" + "CENTRALUS:20170301T205114Z:c3349da5-06dd-4503-acd4-30fdcf71cc07" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountSchemas": [ - "IntegrationAccount2361", - "IntegrationAccountSchema6506" + "IntegrationAccount4553", + "IntegrationAccountSchema7509" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json index 3f5d20bdd167..2870f1114332 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "e049745c-d19d-4ab0-bbe1-542bd3186dc5" + "c75b3adf-fe40-4820-a1bd-7319c8b5dad6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581\",\r\n \"name\": \"IntegrationAccount6581\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904\",\r\n \"name\": \"IntegrationAccount3904\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,56 +38,56 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:41 GMT" + "Wed, 01 Mar 2017 20:52:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7a0b8bd8-5f4b-4352-ab54-6a0709e0e2cc" + "westus:3d8419d7-cdc3-4b15-bbbe-5fc4d8e4e949" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1199" ], "x-ms-correlation-request-id": [ - "9a4284f9-e828-4433-b15e-0b4aa3cafbd5" + "b07f08d8-9146-41c0-83d1-775b54625724" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005942Z:9a4284f9-e828-4433-b15e-0b4aa3cafbd5" + "WESTUS2:20170301T205240Z:b07f08d8-9146-41c0-83d1-775b54625724" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4133\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession405\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "135" + "134" ], "x-ms-client-request-id": [ - "e9115952-c85c-492f-86b2-157404a5789e" + "5d66739e-d080-4d86-b570-f6950fd6971f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:42.4688041Z\",\r\n \"changedTime\": \"2017-02-25T00:59:42.4688041Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133\",\r\n \"name\": \"IntegrationAccountSession4133\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225030087644\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:41.113661Z\",\r\n \"changedTime\": \"2017-03-01T20:52:41.113661Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405\",\r\n \"name\": \"IntegrationAccountSession405\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053243639064\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "438" + "434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,50 +99,50 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:41 GMT" + "Wed, 01 Mar 2017 20:52:40 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225030087644\"" + "\"08587132053243639064\"" ], "x-ms-request-id": [ - "westus:bd8a135f-6008-407d-a97c-959af8372707" + "westus:b8570caa-709d-46ec-8d99-6b0165081b85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "1198" ], "x-ms-correlation-request-id": [ - "54b589b0-2f32-4eda-82ed-e4229471d5bb" + "6e297279-b1e3-45ae-8fc1-54301d7a0bc6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005942Z:54b589b0-2f32-4eda-82ed-e4229471d5bb" + "WESTUS2:20170301T205241Z:6e297279-b1e3-45ae-8fc1-54301d7a0bc6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fa0aefd-6a7d-43e7-93bd-11a5fd2f1a11" + "15920a48-8b9d-4594-b0af-773af40156a9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:42.4688041Z\",\r\n \"changedTime\": \"2017-02-25T00:59:42.469179Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133\",\r\n \"name\": \"IntegrationAccountSession4133\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225030087644\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:41.113661Z\",\r\n \"changedTime\": \"2017-03-01T20:52:41.114208Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405\",\r\n \"name\": \"IntegrationAccountSession405\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053243639064\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:41 GMT" + "Wed, 01 Mar 2017 20:52:40 GMT" ], "Pragma": [ "no-cache" @@ -163,51 +163,51 @@ "chunked" ], "ETag": [ - "\"08587136225030087644\"" + "\"08587132053243639064\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:83c43d23-0213-4faa-8f29-6fa63a59341a" + "westus:ca281927-c850-4b77-b117-e9d80eb81122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "14881" ], "x-ms-correlation-request-id": [ - "ea974b03-18a2-4499-bc7c-7ce80d825462" + "f24c32af-7647-40dd-b10f-fc7cd1468d01" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005942Z:ea974b03-18a2-4499-bc7c-7ce80d825462" + "WESTUS2:20170301T205241Z:f24c32af-7647-40dd-b10f-fc7cd1468d01" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dad6231-3d02-4362-85e9-993516a59e14" + "b1203151-78f7-4886-bd08-337e2fd136a4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SessionNotFound\",\r\n \"message\": \"The session 'IntegrationAccountSession4133' could not be found in integration account 'IntegrationAccount6581'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SessionNotFound\",\r\n \"message\": \"The session 'IntegrationAccountSession405' could not be found in integration account 'IntegrationAccount3904'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "160" + "159" ], "Content-Type": [ "application/json; charset=utf-8" @@ -219,44 +219,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:42 GMT" + "Wed, 01 Mar 2017 20:52:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:cd985543-14be-4a39-a6a8-38eaf7c6e596" + "westus:2591c1d1-bde3-45cd-9119-e4a0666d00b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14880" ], "x-ms-correlation-request-id": [ - "a357cba5-ce43-402e-9c27-6eb65367864f" + "d2fef199-1ef1-4f8f-940a-57490dc7b0f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005942Z:a357cba5-ce43-402e-9c27-6eb65367864f" + "WESTUS2:20170301T205241Z:d2fef199-1ef1-4f8f-940a-57490dc7b0f0" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c53ffbd4-9e7d-44ec-b3b3-64f01aa27346" + "a73367ea-3609-4ae0-84d6-005b647ef364" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -271,44 +271,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:42 GMT" + "Wed, 01 Mar 2017 20:52:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f839a942-4c84-45b2-b768-0bc4b77c85f2" + "westus:ed1cb779-c0a1-49c3-870c-e419e7b78dbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1197" ], "x-ms-correlation-request-id": [ - "7ae24e54-2beb-4618-ab3d-9b761c1c8d80" + "ad1471a0-20d1-4b5f-8370-d6612de981ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005942Z:7ae24e54-2beb-4618-ab3d-9b761c1c8d80" + "WESTUS2:20170301T205241Z:ad1471a0-20d1-4b5f-8370-d6612de981ef" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581/sessions/IntegrationAccountSession4133?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDEzMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67dcf3d3-4bab-4d6b-a40d-00f29ca817b3" + "b4dd2245-8ff3-4d00-83a5-f1731029a7f9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -323,44 +323,44 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:42 GMT" + "Wed, 01 Mar 2017 20:52:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:cf56e6bd-9542-4dbb-9dcb-22483fd1b857" + "westus:f1de37cf-ee09-4e1e-9eeb-1941c1e9f01e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1196" ], "x-ms-correlation-request-id": [ - "778a74a5-6eaa-4bdc-86d4-3403d75558b2" + "70f58145-c2cb-4960-b7ff-7823f6349a2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005942Z:778a74a5-6eaa-4bdc-86d4-3403d75558b2" + "WESTUS2:20170301T205241Z:70f58145-c2cb-4960-b7ff-7823f6349a2c" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6581?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0864c0ee-026f-4631-b772-d15b74c53995" + "221c5ec5-904f-4b06-9dc8-a8ed4710b3d4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -375,25 +375,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:42 GMT" + "Wed, 01 Mar 2017 20:52:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:921c342a-44d6-4446-9a13-f139db881037" + "westus:cb517cb6-1baa-4303-8187-ac2bdd51afee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" + "1195" ], "x-ms-correlation-request-id": [ - "51f2ffda-452f-40af-bd4a-dbcc37f71e58" + "ca0f8f21-ff0f-47a4-9927-d299014f0817" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005943Z:51f2ffda-452f-40af-bd4a-dbcc37f71e58" + "WESTUS2:20170301T205242Z:ca0f8f21-ff0f-47a4-9927-d299014f0817" ] }, "StatusCode": 200 @@ -401,8 +401,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountSession": [ - "IntegrationAccount6581", - "IntegrationAccountSession4133" + "IntegrationAccount3904", + "IntegrationAccountSession405" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json index 42d9089ce063..2d6685ef93a9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDA2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "c2fbd428-95fa-4856-a790-3f19ccf13a8e" + "88daef49-3683-4bcd-834a-5c71f5ada9dc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601\",\r\n \"name\": \"IntegrationAccount7601\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066\",\r\n \"name\": \"IntegrationAccount4066\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:46 GMT" + "Wed, 01 Mar 2017 20:52:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:267d2877-17ce-4891-9f72-205ba3dc3e53" + "westus:ecd64db3-ae10-4931-a7a2-bb84d24bb33b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1196" ], "x-ms-correlation-request-id": [ - "5b907fbd-fca5-4699-b919-ccdb8f4ee484" + "e9a4898f-0ad2-4ad1-a1de-371a1d900e17" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005947Z:5b907fbd-fca5-4699-b919-ccdb8f4ee484" + "WESTUS2:20170301T205248Z:e9a4898f-0ad2-4ad1-a1de-371a1d900e17" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601/sessions/IntegrationAccountSession7913?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066/sessions/IntegrationAccountSession8475?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDA2Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODQ3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7913\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession8475\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "135" ], "x-ms-client-request-id": [ - "e843cecb-517d-4f0b-a814-68272dc27e57" + "3f3f8de4-a3d1-4ad5-93d6-9bfe5b926c45" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:47.5522177Z\",\r\n \"changedTime\": \"2017-02-25T00:59:47.5522177Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601/sessions/IntegrationAccountSession7913\",\r\n \"name\": \"IntegrationAccountSession7913\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136224979253457\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:48.3196053Z\",\r\n \"changedTime\": \"2017-03-01T20:52:48.3196053Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066/sessions/IntegrationAccountSession8475\",\r\n \"name\": \"IntegrationAccountSession8475\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053171579640\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,50 +99,50 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:47 GMT" + "Wed, 01 Mar 2017 20:52:48 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136224979253457\"" + "\"08587132053171579640\"" ], "x-ms-request-id": [ - "westus:09439da6-e51e-4829-bc6c-343d3e5ecd72" + "westus:90928d9c-812e-4806-a318-80c10904803d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1195" ], "x-ms-correlation-request-id": [ - "64c56921-05bc-4f09-bd46-263b8dd26b1b" + "36d44d31-0c30-42fb-bd47-6cdfdd69e4f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005947Z:64c56921-05bc-4f09-bd46-263b8dd26b1b" + "WESTUS2:20170301T205248Z:36d44d31-0c30-42fb-bd47-6cdfdd69e4f0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601/sessions/IntegrationAccountSession7913?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066/sessions/IntegrationAccountSession8475?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDA2Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODQ3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f0b32ab-a263-453b-ab8b-0779f968c583" + "57ba6393-7142-48ed-8596-b3cc8243706e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:47.5522177Z\",\r\n \"changedTime\": \"2017-02-25T00:59:47.5524709Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601/sessions/IntegrationAccountSession7913\",\r\n \"name\": \"IntegrationAccountSession7913\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136224979253457\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:48.3196053Z\",\r\n \"changedTime\": \"2017-03-01T20:52:48.319843Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066/sessions/IntegrationAccountSession8475\",\r\n \"name\": \"IntegrationAccountSession8475\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053171579640\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:47 GMT" + "Wed, 01 Mar 2017 20:52:48 GMT" ], "Pragma": [ "no-cache" @@ -163,45 +163,45 @@ "chunked" ], "ETag": [ - "\"08587136224979253457\"" + "\"08587132053171579640\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:43667bdc-3199-4ad4-bbf7-94e4bf8756c2" + "westus:94396afd-deec-4a0c-a81e-4ed2eb72e84a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14496" + "14822" ], "x-ms-correlation-request-id": [ - "24516f1f-000a-43be-8048-36866d5d874f" + "be2a26a1-025f-43c7-bc66-abf90f6e1b8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005947Z:24516f1f-000a-43be-8048-36866d5d874f" + "WESTUS2:20170301T205248Z:be2a26a1-025f-43c7-bc66-abf90f6e1b8e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7601?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDA2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a785eb8-1ab5-4525-8748-f9cc90935760" + "3e60ce10-9f22-4e04-b21e-58c9452bd7d5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:47 GMT" + "Wed, 01 Mar 2017 20:52:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:504862c6-7f72-4c30-969a-71f68b8d4ebe" + "westus:3d4d3c70-4b78-4c83-b788-df5e5fa1c2a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1194" ], "x-ms-correlation-request-id": [ - "9449f0af-3b02-4a8d-9ba9-8c410561aa9a" + "8bac4b24-87d9-4ea8-9ebe-afb40b0878f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005948Z:9449f0af-3b02-4a8d-9ba9-8c410561aa9a" + "WESTUS2:20170301T205249Z:8bac4b24-87d9-4ea8-9ebe-afb40b0878f3" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndGetIntegrationAccountSession": [ - "IntegrationAccount7601", - "IntegrationAccountSession7913" + "IntegrationAccount4066", + "IntegrationAccountSession8475" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json index 5084ea495a0f..6b388b6d759e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjczOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "9c2a691d-970a-4cd6-bf21-59f94b371476" + "ba279465-ad41-4f80-9f64-f4e97e9f2852" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738\",\r\n \"name\": \"IntegrationAccount2738\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167\",\r\n \"name\": \"IntegrationAccount5167\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:36 GMT" + "Wed, 01 Mar 2017 20:52:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7cc51f40-e652-4479-be14-bf6e7244056b" + "westus:4e1e2fad-6d37-4bfa-8925-60aecfdcb9b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "cd060d05-3bc2-4894-9168-fad453ca57b4" + "d18a397a-3506-4242-83e3-015aea995b94" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005936Z:cd060d05-3bc2-4894-9168-fad453ca57b4" + "WESTUS2:20170301T205234Z:d18a397a-3506-4242-83e3-015aea995b94" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738/sessions/IntegrationAccountSession1253?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjczOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTI1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167/sessions/IntegrationAccountSession1145?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2Ny9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTE0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1253\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1145\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "135" ], "x-ms-client-request-id": [ - "54ea60c5-768a-4dac-80d3-56ea1f63e8c9" + "0dd4c90b-d287-4d61-9653-38492e8f049a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:36.9859595Z\",\r\n \"changedTime\": \"2017-02-25T00:59:36.9859595Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738/sessions/IntegrationAccountSession1253\",\r\n \"name\": \"IntegrationAccountSession1253\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225084916088\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:35.0039729Z\",\r\n \"changedTime\": \"2017-03-01T20:52:35.0039729Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167/sessions/IntegrationAccountSession1145\",\r\n \"name\": \"IntegrationAccountSession1145\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053304735945\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,37 +99,37 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:37 GMT" + "Wed, 01 Mar 2017 20:52:34 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225084916088\"" + "\"08587132053304735945\"" ], "x-ms-request-id": [ - "westus:299d52e6-49f0-41d9-99f2-6ece1fc53ffc" + "westus:57d87e93-d040-4f8b-bab6-a10e7cc7bb58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1198" ], "x-ms-correlation-request-id": [ - "ec66526b-f689-4b0d-b673-9b9d348f7ac4" + "e74f6e76-cec1-4d36-b2e3-88969bff1ab2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005937Z:ec66526b-f689-4b0d-b673-9b9d348f7ac4" + "WESTUS2:20170301T205234Z:e74f6e76-cec1-4d36-b2e3-88969bff1ab2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738/sessions/IntegrationAccountSession1253?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjczOC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTI1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167/sessions/IntegrationAccountSession1145?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2Ny9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTE0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"foobar_update\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1253\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"foobar_update\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1145\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -138,17 +138,17 @@ "145" ], "x-ms-client-request-id": [ - "8bcc77b4-b420-41a2-a80b-51b7b09accc0" + "64912c1a-8d91-4f02-879e-4fc6f4f744f6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:36.9859595Z\",\r\n \"changedTime\": \"2017-02-25T00:59:36.9866378Z\",\r\n \"content\": \"foobar_update\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738/sessions/IntegrationAccountSession1253\",\r\n \"name\": \"IntegrationAccountSession1253\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225084130971\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:35.0039729Z\",\r\n \"changedTime\": \"2017-03-01T20:52:35.0042Z\",\r\n \"content\": \"foobar_update\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167/sessions/IntegrationAccountSession1145\",\r\n \"name\": \"IntegrationAccountSession1145\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053303494410\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -160,7 +160,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:37 GMT" + "Wed, 01 Mar 2017 20:52:34 GMT" ], "Pragma": [ "no-cache" @@ -169,45 +169,45 @@ "chunked" ], "ETag": [ - "\"08587136225084130971\"" + "\"08587132053303494410\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:95984bd2-d11a-46e7-9fc6-bb2fce27636a" + "westus:37340a66-2001-4beb-a9c2-684313647fb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1197" ], "x-ms-correlation-request-id": [ - "f03f7688-3499-458f-97fa-8e132e385f1f" + "18522fe1-2ba2-4717-925e-cbcf97f85057" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005937Z:f03f7688-3499-458f-97fa-8e132e385f1f" + "WESTUS2:20170301T205235Z:18522fe1-2ba2-4717-925e-cbcf97f85057" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2738?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjczOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0faf4e33-4e49-452d-99c7-cd0d4b6e3b30" + "ab7c6d10-e2c3-480b-af19-96cb67a81ac1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -222,25 +222,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:37 GMT" + "Wed, 01 Mar 2017 20:52:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:aac32fec-0e8e-44a1-b233-ac2505fabaff" + "westus:14757427-00a1-4865-8399-208454dfb641" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1196" ], "x-ms-correlation-request-id": [ - "58310fa1-845d-453d-bdb6-b932a2f4b54d" + "42e43d1a-f9c6-4fd2-93ab-6e6354dabb1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005937Z:58310fa1-845d-453d-bdb6-b932a2f4b54d" + "WESTUS2:20170301T205235Z:42e43d1a-f9c6-4fd2-93ab-6e6354dabb1e" ] }, "StatusCode": 200 @@ -248,8 +248,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountSession": [ - "IntegrationAccount2738", - "IntegrationAccountSession1253" + "IntegrationAccount5167", + "IntegrationAccountSession1145" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json index 9af281c593cd..839059352d0f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "cd417275-8f29-4dac-a5b6-bc0d7126e11c" + "43e5195f-2e7c-4486-9f36-8d1873375687" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224\",\r\n \"name\": \"IntegrationAccount9224\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176\",\r\n \"name\": \"IntegrationAccount3176\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:32 GMT" + "Wed, 01 Mar 2017 20:52:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:11056fce-b42e-4ff8-b156-40557d2cffe5" + "westus:a3ab3965-4c67-4cfb-9a33-f37353007495" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1196" ], "x-ms-correlation-request-id": [ - "53cd4a06-6074-492c-a53f-aec3bff74225" + "643746fa-d904-412e-bb64-31dd0bed7220" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005933Z:53cd4a06-6074-492c-a53f-aec3bff74225" + "WESTUS2:20170301T205231Z:643746fa-d904-412e-bb64-31dd0bed7220" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession4345?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDM0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession7607?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzYwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4345\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7607\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "160" ], "x-ms-client-request-id": [ - "100d5081-d0d1-42d3-87ad-a79a1249dd52" + "28b885f1-da7d-4fce-bec8-e1e5a9d38975" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:33.8703042Z\",\r\n \"changedTime\": \"2017-02-25T00:59:33.8703042Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession4345\",\r\n \"name\": \"IntegrationAccountSession4345\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225116072668\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:32.0626584Z\",\r\n \"changedTime\": \"2017-03-01T20:52:32.0626584Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession7607\",\r\n \"name\": \"IntegrationAccountSession7607\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053334149114\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,37 +99,37 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:33 GMT" + "Wed, 01 Mar 2017 20:52:31 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225116072668\"" + "\"08587132053334149114\"" ], "x-ms-request-id": [ - "westus:ee911516-5ff3-4580-a774-584cbb2cf66f" + "westus:04c3e6d6-82fc-4cec-bc2f-9c7bf60d174a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1195" ], "x-ms-correlation-request-id": [ - "82c35bb0-23fb-4a86-8e23-7fa1e9897ba2" + "0cb67b53-8c95-4858-a403-131f28fd0cbc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005933Z:82c35bb0-23fb-4a86-8e23-7fa1e9897ba2" + "WESTUS2:20170301T205232Z:0cb67b53-8c95-4858-a403-131f28fd0cbc" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession9907?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uOTkwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession8598?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODU5OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession9907\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession8598\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -138,20 +138,20 @@ "160" ], "x-ms-client-request-id": [ - "ebf82d87-88dd-4473-beea-562be2ed8a2f" + "b1148574-166b-41e9-8dc8-523c55921be5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:33.95043Z\",\r\n \"changedTime\": \"2017-02-25T00:59:33.95043Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession9907\",\r\n \"name\": \"IntegrationAccountSession9907\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225115271411\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:32.1653756Z\",\r\n \"changedTime\": \"2017-03-01T20:52:32.1653756Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession8598\",\r\n \"name\": \"IntegrationAccountSession8598\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053333121933\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "434" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,59 +163,59 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:33 GMT" + "Wed, 01 Mar 2017 20:52:31 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225115271411\"" + "\"08587132053333121933\"" ], "x-ms-request-id": [ - "westus:cf1b6f03-237c-4475-a697-c48ccc791ba9" + "westus:550ca232-2a20-4bfc-84bb-c0317fd6989c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1194" ], "x-ms-correlation-request-id": [ - "ef882dd8-ac37-49a8-8484-bcb3267f7871" + "5cd2c8f4-46d9-48ec-a3cd-86b30f76b434" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005933Z:ef882dd8-ac37-49a8-8484-bcb3267f7871" + "WESTUS2:20170301T205232Z:5cd2c8f4-46d9-48ec-a3cd-86b30f76b434" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession4571?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDU3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession394?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4571\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession394\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "160" + "159" ], "x-ms-client-request-id": [ - "8ed6b081-9920-498d-9f47-d187d6609aeb" + "1e85fe91-ae20-4241-a12e-a4ecdcc1833a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:34.0477317Z\",\r\n \"changedTime\": \"2017-02-25T00:59:34.0477317Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224/sessions/IntegrationAccountSession4571\",\r\n \"name\": \"IntegrationAccountSession4571\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225114298391\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:32.2384136Z\",\r\n \"changedTime\": \"2017-03-01T20:52:32.2384136Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession394\",\r\n \"name\": \"IntegrationAccountSession394\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053332391570\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "438" + "436" ], "Content-Type": [ "application/json; charset=utf-8" @@ -227,47 +227,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:33 GMT" + "Wed, 01 Mar 2017 20:52:31 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225114298391\"" + "\"08587132053332391570\"" ], "x-ms-request-id": [ - "westus:0ebe3452-676e-4480-9271-20c436bf2a9d" + "westus:1bd75adc-73fc-4968-8eda-ac8c40d55995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1193" ], "x-ms-correlation-request-id": [ - "e4901171-e693-4cf2-9708-174b47b83202" + "ae8c82aa-a4c9-4dcb-8ea1-c54d0ef563d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005934Z:e4901171-e693-4cf2-9708-174b47b83202" + "WESTUS2:20170301T205232Z:ae8c82aa-a4c9-4dcb-8ea1-c54d0ef563d7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9224?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8f06308-ffb4-4d72-b317-3ccb1cfdaa3a" + "b6374928-ed3d-46da-a29f-3aad6dfd069c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -282,25 +282,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:33 GMT" + "Wed, 01 Mar 2017 20:52:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:1c386b8f-519a-4e6d-a336-6e59bc58975e" + "westus:c8f2de9e-c11d-4b28-b0b4-b814484351a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1192" ], "x-ms-correlation-request-id": [ - "521a74f2-8ea9-475b-a981-6c526edee824" + "c29f03c2-74d9-440d-99e9-01eddd62c7b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005934Z:521a74f2-8ea9-475b-a981-6c526edee824" + "WESTUS2:20170301T205232Z:c29f03c2-74d9-440d-99e9-01eddd62c7b2" ] }, "StatusCode": 200 @@ -308,10 +308,10 @@ ], "Names": { "CreateIntegrationAccountSessionUsingFile": [ - "IntegrationAccount9224", - "IntegrationAccountSession4345", - "IntegrationAccountSession4571", - "IntegrationAccountSession9907" + "IntegrationAccount3176", + "IntegrationAccountSession7607", + "IntegrationAccountSession394", + "IntegrationAccountSession8598" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json index 833abbafb541..f549025d2d09 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "311fc1da-1658-4d5a-abae-112bf3cf09ac" + "4ca93b14-2543-41ea-b67a-a98291bbb7d1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685\",\r\n \"name\": \"IntegrationAccount3685\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134\",\r\n \"name\": \"IntegrationAccount4134\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:39 GMT" + "Wed, 01 Mar 2017 20:52:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:852d59c0-f54b-4ec4-af3a-2d52b9fb33ea" + "westus:1b58ab60-aacc-4862-b54b-a8536971e470" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1199" ], "x-ms-correlation-request-id": [ - "c10c26b9-4483-4851-9c53-87af919a4953" + "2ec8e2cd-476d-4f00-9050-14374a8cad6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005939Z:c10c26b9-4483-4851-9c53-87af919a4953" + "WESTUS2:20170301T205237Z:2ec8e2cd-476d-4f00-9050-14374a8cad6e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685/sessions/IntegrationAccountSession7201?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzY4NS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzIwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134/sessions/IntegrationAccountSession6259?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjI1OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7201\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession6259\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "135" ], "x-ms-client-request-id": [ - "84e7d073-d499-4cc4-81c5-ed7820b985f5" + "e05e566d-261a-4938-b362-c1caddce849c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:40.3854014Z\",\r\n \"changedTime\": \"2017-02-25T00:59:40.3854014Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685/sessions/IntegrationAccountSession7201\",\r\n \"name\": \"IntegrationAccountSession7201\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225050921625\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:38.2703949Z\",\r\n \"changedTime\": \"2017-03-01T20:52:38.2703949Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134/sessions/IntegrationAccountSession6259\",\r\n \"name\": \"IntegrationAccountSession6259\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053272071711\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:39 GMT" + "Wed, 01 Mar 2017 20:52:37 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225050921625\"" + "\"08587132053272071711\"" ], "x-ms-request-id": [ - "westus:604f7aba-0c3d-4c33-8a5f-9b41270ce1bb" + "westus:5495305b-31ca-4843-b9b3-2063d8b907ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1198" ], "x-ms-correlation-request-id": [ - "d2473c51-d65b-428b-b6ff-ae4c47bd52de" + "b1166cdd-7c13-4ad6-b2f8-e0212ecfb223" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005940Z:d2473c51-d65b-428b-b6ff-ae4c47bd52de" + "WESTUS2:20170301T205238Z:b1166cdd-7c13-4ad6-b2f8-e0212ecfb223" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96ce80b8-737d-46c7-902c-fee0b27bf172" + "7abed20e-af49-4860-99d2-733fc0c2fa77" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -154,47 +154,47 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:40 GMT" + "Wed, 01 Mar 2017 20:52:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6669127c-5784-4a7b-8e78-f2773b39be72" + "westus:5fe246e1-afef-4df4-a080-8a9151358f4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1197" ], "x-ms-correlation-request-id": [ - "e2d36a88-20d3-42a6-872a-868bbd7590b3" + "13cefc2d-3dd2-4ac8-811a-68a6911c9cc6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005941Z:e2d36a88-20d3-42a6-872a-868bbd7590b3" + "WESTUS2:20170301T205238Z:13cefc2d-3dd2-4ac8-811a-68a6911c9cc6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3685/sessions/IntegrationAccountSession7201?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzY4NS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzIwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134/sessions/IntegrationAccountSession6259?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjI1OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcfc717c-d9d3-433b-be54-349d6c582449" + "f30974a2-5acc-48f6-9d64-7aa21451a68b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount3685' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount4134' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -209,7 +209,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:40 GMT" + "Wed, 01 Mar 2017 20:52:38 GMT" ], "Pragma": [ "no-cache" @@ -218,13 +218,13 @@ "gateway" ], "x-ms-request-id": [ - "266a954d-f32c-4a1a-8ea3-fedf5a2cdf59" + "ba0b801f-1d10-4359-9448-946b6bbfd111" ], "x-ms-correlation-request-id": [ - "266a954d-f32c-4a1a-8ea3-fedf5a2cdf59" + "ba0b801f-1d10-4359-9448-946b6bbfd111" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005941Z:266a954d-f32c-4a1a-8ea3-fedf5a2cdf59" + "WESTUS2:20170301T205238Z:ba0b801f-1d10-4359-9448-946b6bbfd111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,8 +235,8 @@ ], "Names": { "DeleteIntegrationAccountSessionOnAccountDeletion": [ - "IntegrationAccount3685", - "IntegrationAccountSession7201" + "IntegrationAccount4134", + "IntegrationAccountSession6259" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json index 7983bebcbe9b..85530ade7a7b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "e8e0f3f8-51bc-4e63-ae31-46feff3f88ab" + "a32eda93-c6c9-4bcc-8bd0-990e7eecee8d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472\",\r\n \"name\": \"IntegrationAccount6472\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153\",\r\n \"name\": \"IntegrationAccount6153\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:45 GMT" + "Wed, 01 Mar 2017 20:52:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:07da4c72-8e2c-42fd-b4e8-084a7648e5da" + "westus:50325dca-9aca-475b-be39-badc3562737b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1196" ], "x-ms-correlation-request-id": [ - "100a6f29-f2e7-44b7-8c55-873dac9c122a" + "1c9d2e66-4050-4012-b2d6-1c0c5d5d1a16" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005945Z:100a6f29-f2e7-44b7-8c55-873dac9c122a" + "WESTUS2:20170301T205244Z:1c9d2e66-4050-4012-b2d6-1c0c5d5d1a16" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession5635?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mi9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNTYzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession9437?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uOTQzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession5635\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession9437\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "135" ], "x-ms-client-request-id": [ - "d7b709d8-88a3-44ac-b014-861df1380393" + "8d744b98-9466-4460-a128-2aa5afb9b44d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.2061745Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.2061745Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession5635\",\r\n \"name\": \"IntegrationAccountSession5635\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225002713938\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.7399524Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.7399524Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession9437\",\r\n \"name\": \"IntegrationAccountSession9437\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053207376064\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,37 +99,37 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:45 GMT" + "Wed, 01 Mar 2017 20:52:44 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225002713938\"" + "\"08587132053207376064\"" ], "x-ms-request-id": [ - "westus:0cbae5a6-6f51-49ce-a754-1f3711b582f8" + "westus:86e29bd3-1ee4-44c7-9783-e4035eb3727e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1195" ], "x-ms-correlation-request-id": [ - "19e4531a-dcca-4095-89f5-7405d98ca9b8" + "a68e9961-5f79-4bde-b665-f04ab7f1813f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005945Z:19e4531a-dcca-4095-89f5-7405d98ca9b8" + "WESTUS2:20170301T205244Z:a68e9961-5f79-4bde-b665-f04ab7f1813f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession9630?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mi9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uOTYzMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7148?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzE0OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession9630\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7148\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -138,17 +138,17 @@ "135" ], "x-ms-client-request-id": [ - "6b18f38d-af3e-439a-bed6-1df02b1431ce" + "8edab64d-808d-4af1-9c55-71999dbbe071" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.2872257Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.2872257Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession9630\",\r\n \"name\": \"IntegrationAccountSession9630\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225001903451\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.8237327Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.8237327Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7148\",\r\n \"name\": \"IntegrationAccountSession7148\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053206538375\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -163,37 +163,37 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:45 GMT" + "Wed, 01 Mar 2017 20:52:44 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225001903451\"" + "\"08587132053206538375\"" ], "x-ms-request-id": [ - "westus:f24c64f4-6e4f-482c-8d9d-41e03fe59fef" + "westus:5f70540c-28fc-40d4-ba63-e466406d6593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1194" ], "x-ms-correlation-request-id": [ - "ab8c94d0-ae41-49b4-b77e-b64cafc8036f" + "4131964e-8520-49ef-9b8e-3589c0fed845" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005945Z:ab8c94d0-ae41-49b4-b77e-b64cafc8036f" + "WESTUS2:20170301T205244Z:4131964e-8520-49ef-9b8e-3589c0fed845" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession6975?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mi9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjk3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7012?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzAxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession6975\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7012\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -202,17 +202,17 @@ "135" ], "x-ms-client-request-id": [ - "bf383048-186b-427d-afa9-fe8c0bda7a14" + "b623f13b-093c-4e8a-bfbd-8427cc448cf4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.3684865Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.3684865Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession6975\",\r\n \"name\": \"IntegrationAccountSession6975\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225001090832\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.8939418Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.8939418Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7012\",\r\n \"name\": \"IntegrationAccountSession7012\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053205836282\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -227,50 +227,50 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:45 GMT" + "Wed, 01 Mar 2017 20:52:44 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587136225001090832\"" + "\"08587132053205836282\"" ], "x-ms-request-id": [ - "westus:fe7505b2-8871-4d26-9d0e-c2e50639fe89" + "westus:50faa815-a061-43c9-b668-5b85b2ab7cc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1193" ], "x-ms-correlation-request-id": [ - "e97e326a-29be-43c1-911e-a8b3f94682d6" + "a212e58e-0161-49d8-addf-22f0c05f2c22" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005945Z:e97e326a-29be-43c1-911e-a8b3f94682d6" + "WESTUS2:20170301T205244Z:a212e58e-0161-49d8-addf-22f0c05f2c22" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mi9zZXNzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1My9zZXNzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b412cac9-d104-4cb2-8dc9-3615392c7ade" + "cb2bd4ee-be05-4581-9380-dd66fcf2d327" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.2061745Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.2067025Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession5635\",\r\n \"name\": \"IntegrationAccountSession5635\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225002713938\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.3684865Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.3687436Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession6975\",\r\n \"name\": \"IntegrationAccountSession6975\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225001090832\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-02-25T00:59:45.2872257Z\",\r\n \"changedTime\": \"2017-02-25T00:59:45.2879408Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472/sessions/IntegrationAccountSession9630\",\r\n \"name\": \"IntegrationAccountSession9630\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587136225001903451\\\"\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.8939418Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.8948715Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7012\",\r\n \"name\": \"IntegrationAccountSession7012\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053205836282\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.8237327Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.8244216Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7148\",\r\n \"name\": \"IntegrationAccountSession7148\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053206538375\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.7399524Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.7403009Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession9437\",\r\n \"name\": \"IntegrationAccountSession9437\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053207376064\\\"\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -282,7 +282,7 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:45 GMT" + "Wed, 01 Mar 2017 20:52:44 GMT" ], "Pragma": [ "no-cache" @@ -295,38 +295,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4d764484-a5b9-43a5-a506-1db1214afe66" + "westus:86a19de5-8b25-4202-abb6-5d35f6115461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14830" ], "x-ms-correlation-request-id": [ - "ac586ea1-b44c-479e-ae7d-f24c2b5a8862" + "e2eb2f51-5cfa-4bb6-9e77-4b37fa668364" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005945Z:ac586ea1-b44c-479e-ae7d-f24c2b5a8862" + "WESTUS2:20170301T205245Z:e2eb2f51-5cfa-4bb6-9e77-4b37fa668364" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6472?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjQ3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8fa839d-f458-43e4-955c-79a21cf1419e" + "3e580cd4-d570-477b-bf9e-d76047a40eac" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" ] }, "ResponseBody": "", @@ -341,25 +341,25 @@ "no-cache" ], "Date": [ - "Sat, 25 Feb 2017 00:59:45 GMT" + "Wed, 01 Mar 2017 20:52:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:dd831734-250b-4c9f-9a1e-f5d541dfcecb" + "westus:2aa5e746-7fa2-45b3-bda7-cae0c37b70c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1192" ], "x-ms-correlation-request-id": [ - "f720314c-d45d-41b4-825d-9b4141a16cd1" + "4b91fa09-dc99-4e1e-9abd-029ca71e8f29" ], "x-ms-routing-request-id": [ - "WESTUS2:20170225T005945Z:f720314c-d45d-41b4-825d-9b4141a16cd1" + "WESTUS2:20170301T205245Z:4b91fa09-dc99-4e1e-9abd-029ca71e8f29" ] }, "StatusCode": 200 @@ -367,10 +367,10 @@ ], "Names": { "ListIntegrationAccountSessions": [ - "IntegrationAccount6472", - "IntegrationAccountSession5635", - "IntegrationAccountSession9630", - "IntegrationAccountSession6975" + "IntegrationAccount6153", + "IntegrationAccountSession9437", + "IntegrationAccountSession7148", + "IntegrationAccountSession7012" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs index 1a6ad70d46b6..a2825861616c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs @@ -4,15 +4,14 @@ using System.Reflection; using System.Resources; -using System.Runtime.InteropServices; [assembly: AssemblyTitle("Microsoft Azure Logic App Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Logic App management operations.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] -[assembly: AssemblyVersion("2.1.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("2.0.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json index d8d115627e5a..addd2cd03cb1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0", + "version": "2.0.0", "description": "Microsoft Azure LogicApps Management Library", "authors": [ "Microsoft" ], From a5da5590183e8aab6a52b57f75df8672f182fd13 Mon Sep 17 00:00:00 2001 From: David Burg Date: Wed, 1 Mar 2017 14:07:52 -0800 Subject: [PATCH 061/137] Logic SDK restored package version minor increase --- ...eAndDeleteIntegrationAccountAgreement.json | 106 ++++++------- ...eateAndGetIntegrationAccountAgreement.json | 86 +++++------ ...eAndUpdateIntegrationAccountAgreement.json | 86 +++++------ ...eIntegrationAccountAgreementUsingFile.json | 120 +++++++------- ...nAccountAgreementWithEnvelopeOverride.json | 88 +++++------ ...tionAccountAgreementOnAccountDeletion.json | 84 +++++----- .../ListIntegrationAccountAgreements.json | 138 ++++++++--------- ...ndDeleteIntegrationAccountCertificate.json | 80 +++++----- ...teAndGetIntegrationAccountCertificate.json | 82 +++++----- ...ndUpdateIntegrationAccountCertificate.json | 102 ++++++------ ...ationAccountCertificateWithPrivateKey.json | 82 +++++----- ...rationAccountCertificateWithPublicKey.json | 82 +++++----- ...onAccountCertificateOnAccountDeletion.json | 82 +++++----- .../ListIntegrationAccountCertificates.json | 86 +++++------ .../CreateAndDeleteIntegrationAccountMap.json | 86 +++++------ .../CreateAndGetIntegrationAccountMap.json | 84 +++++----- .../CreateAndUpdateIntegrationAccountMap.json | 108 ++++++------- ...ntegrationAccountMapOnAccountDeletion.json | 84 +++++----- .../ListIntegrationAccountMaps.json | 86 +++++------ ...ateAndDeleteIntegrationAccountPartner.json | 86 +++++------ ...CreateAndGetIntegrationAccountPartner.json | 78 +++++----- ...ateAndUpdateIntegrationAccountPartner.json | 84 +++++----- ...rationAccountPartnerOnAccountDeletion.json | 84 +++++----- .../ListIntegrationAccountPartners.json | 84 +++++----- .../CreateAndDeleteIntegrationAccount.json | 40 ++--- .../CreateAndGetIntegrationAccountByName.json | 56 +++---- .../CreateAndUpdateIntegrationAccount.json | 60 +++---- ...ListIntegrationAccountByResourceGroup.json | 52 +++---- .../ListIntegrationAccountBySubscription.json | 78 +++++----- .../ListIntegrationAccountCallbackUrl.json | 140 ++++++++--------- .../UpdateIntegrationAccount.json | 62 ++++---- ...eateAndDeleteIntegrationAccountSchema.json | 108 ++++++------- .../CreateAndGetIntegrationAccountSchema.json | 86 +++++------ ...eateAndUpdateIntegrationAccountSchema.json | 84 +++++----- ...grationAccountSchemaOnAccountDeletion.json | 86 +++++------ .../ListIntegrationAccountSchemas.json | 88 +++++------ ...ateAndDeleteIntegrationAccountSession.json | 146 +++++++++--------- ...CreateAndGetIntegrationAccountSession.json | 92 +++++------ ...ateAndUpdateIntegrationAccountSession.json | 94 +++++------ ...ateIntegrationAccountSessionUsingFile.json | 122 +++++++-------- ...rationAccountSessionOnAccountDeletion.json | 84 +++++----- .../ListIntegrationAccountSessions.json | 138 ++++++++--------- .../project.json | 2 +- 43 files changed, 1893 insertions(+), 1893 deletions(-) diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json index 61937a1a9c45..8cfae670083a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5142?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "4d3f930a-84d4-46a7-bf05-a210bada2033" + "0a365d6b-8745-4ae7-81e6-cf8fe26e6360" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909\",\r\n \"name\": \"IntegrationAccount8909\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5142\",\r\n \"name\": \"IntegrationAccount5142\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,56 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:00 GMT" + "Wed, 01 Mar 2017 21:56:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4d1ecf9d-fb93-4610-ab9e-87ad576d87cb" + "westus:67ff2ffb-1252-43de-b589-5ddc19ab1466" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "3a801e6f-9056-4d50-886f-6bdfbcaf1a3f" + "d3840975-6d28-4874-b011-773dadfea513" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205200Z:3a801e6f-9056-4d50-886f-6bdfbcaf1a3f" + "WESTUS2:20170301T215644Z:d3840975-6d28-4874-b011-773dadfea513" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDM1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5142/agreements/IntegrationAccountAgreement8124?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgxMjQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement353\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement353\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8124\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8124\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5858" + "5860" ], "x-ms-client-request-id": [ - "e2f2b1ae-8384-479c-a113-500b183db0fd" + "bad0819a-d0d8-45e7-85fe-d66c1ff4027e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:01.1874472Z\",\r\n \"changedTime\": \"2017-03-01T20:52:01.1876469Z\",\r\n \"metadata\": \"IntegrationAccountAgreement353\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353\",\r\n \"name\": \"IntegrationAccountAgreement353\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:44.2301383Z\",\r\n \"changedTime\": \"2017-03-01T21:56:44.2310296Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8124\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5142/agreements/IntegrationAccountAgreement8124\",\r\n \"name\": \"IntegrationAccountAgreement8124\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3914" + "3917" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:01 GMT" + "Wed, 01 Mar 2017 21:56:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:81b3166f-f0c6-4cc8-acac-ef8c8169e410" + "westus:6bfd5ffe-2a51-46f5-9385-d4278a9f4d27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-correlation-request-id": [ - "d3498553-d862-4a76-9f61-8a669bb0eecb" + "fb8dc6b9-c0d0-4288-8f92-3b02660bda52" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205201Z:d3498553-d862-4a76-9f61-8a669bb0eecb" + "WESTUS2:20170301T215644Z:fb8dc6b9-c0d0-4288-8f92-3b02660bda52" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDM1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5142/agreements/IntegrationAccountAgreement8124?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgxMjQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba2eab2d-69f4-4da2-9bf7-cc9d96407875" + "4c5aa1f6-d720-48de-80ed-03b09c9fbfce" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:01.1874472Z\",\r\n \"changedTime\": \"2017-03-01T20:52:01.1876469Z\",\r\n \"metadata\": \"IntegrationAccountAgreement353\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353\",\r\n \"name\": \"IntegrationAccountAgreement353\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:44.2301383Z\",\r\n \"changedTime\": \"2017-03-01T21:56:44.2310296Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8124\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5142/agreements/IntegrationAccountAgreement8124\",\r\n \"name\": \"IntegrationAccountAgreement8124\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:01 GMT" + "Wed, 01 Mar 2017 21:56:43 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:ee572313-2eb9-4b16-b4c2-93f565acf8a4" + "westus:436a9ba3-030f-46a2-99db-8dcaf12444dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14739" ], "x-ms-correlation-request-id": [ - "e53a9609-d4aa-42f7-bfa0-1291f3b1bd0a" + "b19f5223-69ad-4dac-85a2-56b2dc17a683" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205201Z:e53a9609-d4aa-42f7-bfa0-1291f3b1bd0a" + "WESTUS2:20170301T215644Z:b19f5223-69ad-4dac-85a2-56b2dc17a683" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909/agreements/IntegrationAccountAgreement353?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDM1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5142/agreements/IntegrationAccountAgreement8124?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgxMjQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e4fe108-7fd5-4ee8-81e4-5885252f5d59" + "5faac5a6-b43d-4bc1-af26-fd1ebf28cd78" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,44 +210,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:01 GMT" + "Wed, 01 Mar 2017 21:56:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:331b7c70-2367-4be5-b77b-7bb145517aaa" + "westus:69b146a0-0055-4ec7-8528-3907d5c351bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-correlation-request-id": [ - "fee2e95c-93d0-4f72-930a-b2aafdf4a292" + "66626951-9f2f-4820-9b82-e490ae87bf3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205201Z:fee2e95c-93d0-4f72-930a-b2aafdf4a292" + "WESTUS2:20170301T215644Z:66626951-9f2f-4820-9b82-e490ae87bf3e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8909?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5142?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26fc28ae-1b48-492e-b33c-6dc633ca728b" + "0daacd2a-2346-42e0-8f82-8f23b29647aa" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -262,25 +262,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:02 GMT" + "Wed, 01 Mar 2017 21:56:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:78aef39e-4ee8-40be-8bd9-04e97dd48175" + "westus:84b673eb-24ef-47c1-8344-18414d35052f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-correlation-request-id": [ - "a9577016-e45a-42c2-a127-d0472976317d" + "766fcb36-6df3-456e-badf-bda312de2c1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205202Z:a9577016-e45a-42c2-a127-d0472976317d" + "WESTUS2:20170301T215645Z:766fcb36-6df3-456e-badf-bda312de2c1d" ] }, "StatusCode": 200 @@ -288,8 +288,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountAgreement": [ - "IntegrationAccount8909", - "IntegrationAccountAgreement353" + "IntegrationAccount5142", + "IntegrationAccountAgreement8124" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json index 874a8a5d29c7..5ea9b29d8784 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7013?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzAxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "f58590e8-f2a8-409a-aa8e-9262f4ef7cb7" + "9e129981-374e-4191-9300-155b498aa8d5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905\",\r\n \"name\": \"IntegrationAccount2905\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7013\",\r\n \"name\": \"IntegrationAccount7013\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:52 GMT" + "Wed, 01 Mar 2017 21:56:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2898a0ec-2057-4614-94f5-ee4f25ac2715" + "westus:5ac0e19d-158c-4e05-a8ef-0159409f100f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "f694cdf2-b306-46b8-8404-c6c8521d9b5a" + "8ed30cf3-5f83-4ba8-ae98-0e682b431201" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205152Z:f694cdf2-b306-46b8-8404-c6c8521d9b5a" + "WESTUS2:20170301T215639Z:8ed30cf3-5f83-4ba8-ae98-0e682b431201" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905/agreements/IntegrationAccountAgreement8296?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkwNS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7013/agreements/IntegrationAccountAgreement9800?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzAxMy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDk4MDA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8296\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8296\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement9800\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement9800\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "5862" ], "x-ms-client-request-id": [ - "bd96f9ca-2caa-4524-8427-d830ec7a0fb0" + "f27d95a3-93de-4cdd-9366-6a6b9d7ab0c7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:53.0656157Z\",\r\n \"changedTime\": \"2017-03-01T20:51:53.0659728Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8296\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905/agreements/IntegrationAccountAgreement8296\",\r\n \"name\": \"IntegrationAccountAgreement8296\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:39.422783Z\",\r\n \"changedTime\": \"2017-03-01T21:56:39.4237793Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9800\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7013/agreements/IntegrationAccountAgreement9800\",\r\n \"name\": \"IntegrationAccountAgreement9800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3919" + "3918" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:52 GMT" + "Wed, 01 Mar 2017 21:56:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0bdd23b5-371b-4c9d-8015-d8e2802cb311" + "westus:a4ed3e1a-e8a3-49fe-9118-89806862f06a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "d25bf908-33e9-4fc1-97a2-71a54591c7d9" + "58b0c61a-8a36-4a2b-a729-d5643b8aa2bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205153Z:d25bf908-33e9-4fc1-97a2-71a54591c7d9" + "WESTUS2:20170301T215639Z:58b0c61a-8a36-4a2b-a729-d5643b8aa2bc" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905/agreements/IntegrationAccountAgreement8296?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkwNS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7013/agreements/IntegrationAccountAgreement9800?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzAxMy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDk4MDA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12f1f28f-19d8-404c-bb5f-4b70fcb753b3" + "a84efa8e-8274-4854-86cd-162e12fcd558" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:53.0656157Z\",\r\n \"changedTime\": \"2017-03-01T20:51:53.0659728Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8296\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905/agreements/IntegrationAccountAgreement8296\",\r\n \"name\": \"IntegrationAccountAgreement8296\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:39.422783Z\",\r\n \"changedTime\": \"2017-03-01T21:56:39.4237793Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9800\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7013/agreements/IntegrationAccountAgreement9800\",\r\n \"name\": \"IntegrationAccountAgreement9800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:52 GMT" + "Wed, 01 Mar 2017 21:56:38 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4184f52b-6123-485e-8f1c-af1b7621294c" + "westus:7a943d17-9b01-4afe-bff7-bd2193b2007f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" + "14803" ], "x-ms-correlation-request-id": [ - "4750e494-bc3c-47a4-9467-03a6ce0ffa45" + "1ba0b195-f44e-4521-a81c-b14c84d91e23" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205153Z:4750e494-bc3c-47a4-9467-03a6ce0ffa45" + "WESTUS2:20170301T215639Z:1ba0b195-f44e-4521-a81c-b14c84d91e23" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2905?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7013?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzAxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec44466d-c428-4b86-9b5b-4914dadd6f4e" + "7befaf99-d6a1-4e7e-a9e0-b1644b58d7ab" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:53 GMT" + "Wed, 01 Mar 2017 21:56:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9b84c07e-4f8d-42f4-9f9d-2dde4d567491" + "westus:1afe297e-f45d-455a-9364-f225ffd38ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "880cab42-2fae-45b0-ad6e-f6baffe871fe" + "296096d9-484a-4431-bad7-b144e9a3ceee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205153Z:880cab42-2fae-45b0-ad6e-f6baffe871fe" + "WESTUS2:20170301T215639Z:296096d9-484a-4431-bad7-b144e9a3ceee" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountAgreement": [ - "IntegrationAccount2905", - "IntegrationAccountAgreement8296" + "IntegrationAccount7013", + "IntegrationAccountAgreement9800" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json index 2efa2dc9f64c..8af25d1eb301 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3964?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzk2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "43b94e8e-5627-4ee4-ae1c-697486a59004" + "4bb2454d-3cda-4fe2-8eb4-d3471e202282" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685\",\r\n \"name\": \"IntegrationAccount7685\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3964\",\r\n \"name\": \"IntegrationAccount3964\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:37 GMT" + "Wed, 01 Mar 2017 21:56:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f1a2bd1d-2db9-4251-b9e0-0dc9d870e230" + "westus:a6292d3a-af31-4c1e-8f2c-b9047448e5ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "ebb45501-bf85-4ec3-b1c5-c6adfff6ece7" + "db8464d2-5bfd-4f73-b447-d8e9104209eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205137Z:ebb45501-bf85-4ec3-b1c5-c6adfff6ece7" + "WESTUS2:20170301T215627Z:db8464d2-5bfd-4f73-b447-d8e9104209eb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685/agreements/IntegrationAccountAgreement8443?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY4NS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg0NDM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3964/agreements/IntegrationAccountAgreement1285?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzk2NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDEyODU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8443\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8443\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1285\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1285\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5862" ], "x-ms-client-request-id": [ - "23f59778-0d2c-48b5-a43b-9e2a2c72201c" + "b7cb9579-3cd8-4f34-b224-9bac82ff20b2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:38.3833353Z\",\r\n \"changedTime\": \"2017-03-01T20:51:38.3841858Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8443\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685/agreements/IntegrationAccountAgreement8443\",\r\n \"name\": \"IntegrationAccountAgreement8443\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:27.8038375Z\",\r\n \"changedTime\": \"2017-03-01T21:56:27.8040402Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1285\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3964/agreements/IntegrationAccountAgreement1285\",\r\n \"name\": \"IntegrationAccountAgreement1285\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3919" @@ -99,34 +99,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:38 GMT" + "Wed, 01 Mar 2017 21:56:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e88c5669-9a6a-41d3-ae8b-1aa1949eba72" + "westus:fe0f9efb-68ea-4a94-be8e-04833d305b7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "c8543561-e357-4aef-9262-0d5558d436d0" + "90c9073f-991c-4fec-8242-c987cbe0af91" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205138Z:c8543561-e357-4aef-9262-0d5558d436d0" + "WESTUS2:20170301T215627Z:90c9073f-991c-4fec-8242-c987cbe0af91" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685/agreements/IntegrationAccountAgreement8443?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY4NS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg0NDM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3964/agreements/IntegrationAccountAgreement1285?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzk2NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDEyODU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8443\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8443\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1285\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1285\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -135,17 +135,17 @@ "8185" ], "x-ms-client-request-id": [ - "81cd2347-2e21-44da-b0db-56c444ba97e1" + "8277a1d3-f311-4908-96ae-761892d9b0de" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:38.3833353Z\",\r\n \"changedTime\": \"2017-03-01T20:51:38.7564806Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8443\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685/agreements/IntegrationAccountAgreement8443\",\r\n \"name\": \"IntegrationAccountAgreement8443\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:27.8038375Z\",\r\n \"changedTime\": \"2017-03-01T21:56:28.1680241Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1285\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3964/agreements/IntegrationAccountAgreement1285\",\r\n \"name\": \"IntegrationAccountAgreement1285\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:38 GMT" + "Wed, 01 Mar 2017 21:56:28 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:5d593e09-50aa-47c4-8beb-5a3666d7f8ad" + "westus:f4e69126-058c-424f-9017-5e4a1fc5d946" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "9a5a9b46-c897-4f1c-ab33-95e2781c0806" + "f4f35439-5c1f-4f24-8a5b-0ef8933116ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205138Z:9a5a9b46-c897-4f1c-ab33-95e2781c0806" + "WESTUS2:20170301T215628Z:f4f35439-5c1f-4f24-8a5b-0ef8933116ff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7685?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3964?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzk2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4efb489-7f31-44e8-860f-e734620200f4" + "b76ae383-d335-47f3-add3-ce65253e951b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:39 GMT" + "Wed, 01 Mar 2017 21:56:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e307552a-f4e3-44a4-943e-2a5833fd5ff3" + "westus:965990af-9d10-4e93-ac2b-932ee8fe1857" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "76c596ae-5b9d-46aa-adea-51a4d9db5006" + "24758228-28c8-45f9-bf68-f807970cd0c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205139Z:76c596ae-5b9d-46aa-adea-51a4d9db5006" + "WESTUS2:20170301T215628Z:24758228-28c8-45f9-bf68-f807970cd0c6" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountAgreement": [ - "IntegrationAccount7685", - "IntegrationAccountAgreement8443" + "IntegrationAccount3964", + "IntegrationAccountAgreement1285" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json index 9f1d704016db..1835abf7b132 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "2f34f971-9237-46ff-8ef0-c21963df5342" + "0cd23316-f0d3-4a0d-82d5-59e5a0a27d14" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364\",\r\n \"name\": \"IntegrationAccount8364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648\",\r\n \"name\": \"IntegrationAccount2648\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:41 GMT" + "Wed, 01 Mar 2017 21:56:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:409e74d0-378b-47f4-8ed5-be9957434312" + "westus:e578c2e6-7f53-45b6-9508-0e07860ee743" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "5a3d3173-4841-4615-9e8a-e54dd6c6f21a" + "27e83f8a-3593-4abc-8d08-7f9ee55799ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205142Z:5a3d3173-4841-4615-9e8a-e54dd6c6f21a" + "WESTUS2:20170301T215631Z:27e83f8a-3593-4abc-8d08-7f9ee55799ec" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement3029?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMwMjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648/agreements/IntegrationAccountAgreement8614?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg2MTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement3029\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": false,\r\n \"signMdn\": false,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement3029\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8614\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": false,\r\n \"signMdn\": false,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8614\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5865" ], "x-ms-client-request-id": [ - "d2df44c5-0bc3-4f3a-9afb-68035994d384" + "8126ca84-0c37-49cb-8c55-fa343e9e43b8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": false,\r\n \"signMDN\": false,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:42.9827353Z\",\r\n \"changedTime\": \"2017-03-01T20:51:42.9836373Z\",\r\n \"metadata\": \"IntegrationAccountAgreement3029\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement3029\",\r\n \"name\": \"IntegrationAccountAgreement3029\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": false,\r\n \"signMDN\": false,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:32.2578751Z\",\r\n \"changedTime\": \"2017-03-01T21:56:32.2580808Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8614\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648/agreements/IntegrationAccountAgreement8614\",\r\n \"name\": \"IntegrationAccountAgreement8614\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3922" @@ -99,56 +99,56 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:43 GMT" + "Wed, 01 Mar 2017 21:56:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:56d074b8-02aa-49c2-b8d2-1847ff49b557" + "westus:3467a2b4-a9ca-4055-9453-ce10c92f9f70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "5a3378a6-b358-4a0c-b149-728964dbb78d" + "ef8fcba3-1ecf-4884-927d-e31790e447cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205143Z:5a3378a6-b358-4a0c-b149-728964dbb78d" + "WESTUS2:20170301T215632Z:ef8fcba3-1ecf-4884-927d-e31790e447cf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement346?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDM0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648/agreements/IntegrationAccountAgreement2962?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDI5NjI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement346\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement346\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement2962\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement2962\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "9794" + "9796" ], "x-ms-client-request-id": [ - "55f3bfaf-b2ed-44f1-8d1b-585392441db4" + "4c214a7a-f8fc-4829-825d-acec289f053c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:43.5243543Z\",\r\n \"changedTime\": \"2017-03-01T20:51:43.525108Z\",\r\n \"metadata\": \"IntegrationAccountAgreement346\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement346\",\r\n \"name\": \"IntegrationAccountAgreement346\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:32.6518232Z\",\r\n \"changedTime\": \"2017-03-01T21:56:32.6520486Z\",\r\n \"metadata\": \"IntegrationAccountAgreement2962\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648/agreements/IntegrationAccountAgreement2962\",\r\n \"name\": \"IntegrationAccountAgreement2962\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6653" + "6657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,56 +160,56 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:43 GMT" + "Wed, 01 Mar 2017 21:56:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:06809ffe-6dc7-4441-a51b-38e9f0c2973b" + "westus:90e0f43e-5d93-4d66-b2c8-5955b4df7b81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "0658f733-7c79-4f1c-af35-3cfd41230c70" + "59d35536-8db0-459a-9ee9-ba1edd031dd0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205143Z:0658f733-7c79-4f1c-af35-3cfd41230c70" + "WESTUS2:20170301T215632Z:59d35536-8db0-459a-9ee9-ba1edd031dd0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement767?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc2Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648/agreements/IntegrationAccountAgreement8620?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg2MjA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement767\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement767\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8620\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8620\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8183" + "8185" ], "x-ms-client-request-id": [ - "4e61e2dd-e33a-4b02-8ee2-edc6c7fbf528" + "ef3eb459-2b82-43b8-9ffb-ab3c6870e8ec" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:43.934191Z\",\r\n \"changedTime\": \"2017-03-01T20:51:43.9346505Z\",\r\n \"metadata\": \"IntegrationAccountAgreement767\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364/agreements/IntegrationAccountAgreement767\",\r\n \"name\": \"IntegrationAccountAgreement767\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:33.0132695Z\",\r\n \"changedTime\": \"2017-03-01T21:56:33.0137785Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8620\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648/agreements/IntegrationAccountAgreement8620\",\r\n \"name\": \"IntegrationAccountAgreement8620\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5545" + "5549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -221,44 +221,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:43 GMT" + "Wed, 01 Mar 2017 21:56:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:898818bf-2ce1-4181-b6fa-43b4eeaae64f" + "westus:c604cb02-ff20-4457-8830-6ff15bf8eb23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "7dc0ae63-e979-49b0-b6a4-1b482845dfbe" + "054d877f-d87f-42e3-ba6c-5fb799bb4859" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205143Z:7dc0ae63-e979-49b0-b6a4-1b482845dfbe" + "WESTUS2:20170301T215633Z:054d877f-d87f-42e3-ba6c-5fb799bb4859" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8364?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODM2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2648?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f6e49cc-679e-4e69-8592-bc28a7e0448d" + "3ae909b4-ab31-49c3-95ce-1f941ae12eeb" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -273,25 +273,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:44 GMT" + "Wed, 01 Mar 2017 21:56:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6f090588-e0bf-4669-aaa5-c775dd8cf8d5" + "westus:2baf5810-5d38-45a4-be33-a5f07fc1c071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "66568249-9a74-464c-9daf-1febd0c605d9" + "e82a66b9-6851-47af-813a-0d6ab2331796" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205144Z:66568249-9a74-464c-9daf-1febd0c605d9" + "WESTUS2:20170301T215633Z:e82a66b9-6851-47af-813a-0d6ab2331796" ] }, "StatusCode": 200 @@ -299,10 +299,10 @@ ], "Names": { "CreateIntegrationAccountAgreementUsingFile": [ - "IntegrationAccount8364", - "IntegrationAccountAgreement3029", - "IntegrationAccountAgreement767", - "IntegrationAccountAgreement346" + "IntegrationAccount2648", + "IntegrationAccountAgreement8614", + "IntegrationAccountAgreement8620", + "IntegrationAccountAgreement2962" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json index 01bc4d7e56c0..88d7263397da 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzczMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount842?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODQyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "9f3675a4-ee4f-458a-8b07-1c3952bfe04c" + "6c686c2d-0e35-45d6-ada9-e9e2611f4591" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730\",\r\n \"name\": \"IntegrationAccount3730\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount842\",\r\n \"name\": \"IntegrationAccount842\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:46 GMT" + "Wed, 01 Mar 2017 21:56:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ed58e99f-61bb-4448-a886-169ea48fe7cc" + "westus:e38edc60-cab3-4b6e-a309-4a529f10fbed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "d50b1073-d20a-4e39-9189-07da792fc484" + "645db8fd-ce54-4f43-8012-db8714bb305f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205147Z:d50b1073-d20a-4e39-9189-07da792fc484" + "WESTUS2:20170301T215636Z:645db8fd-ce54-4f43-8012-db8714bb305f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730/agreements/IntegrationAccountAgreement1794?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzczMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDE3OTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount842/agreements/IntegrationAccountAgreement7432?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODQyL2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50NzQzMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1794\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1794\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7432\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7432\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8710" ], "x-ms-client-request-id": [ - "347dd826-9942-4f33-a86f-ea528dd0e4f4" + "9ec827ff-71de-4c8e-b8a6-fb40bf3af93f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:48.0416191Z\",\r\n \"changedTime\": \"2017-03-01T20:51:48.0418141Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1794\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730/agreements/IntegrationAccountAgreement1794\",\r\n \"name\": \"IntegrationAccountAgreement1794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:36.9101689Z\",\r\n \"changedTime\": \"2017-03-01T21:56:36.9103832Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7432\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount842/agreements/IntegrationAccountAgreement7432\",\r\n \"name\": \"IntegrationAccountAgreement7432\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5823" + "5822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:47 GMT" + "Wed, 01 Mar 2017 21:56:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5aa00119-64d2-4166-b765-1b520bda2145" + "westus:54b71da8-b56c-4252-802b-22e29dbef76b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1189" ], "x-ms-correlation-request-id": [ - "b8758554-0d09-45df-b629-2d1858d345d5" + "a45d3feb-9372-4e79-bd4a-2bad302aeabf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205148Z:b8758554-0d09-45df-b629-2d1858d345d5" + "WESTUS2:20170301T215636Z:a45d3feb-9372-4e79-bd4a-2bad302aeabf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730/agreements/IntegrationAccountAgreement1794?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzczMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDE3OTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount842/agreements/IntegrationAccountAgreement7432?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODQyL2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50NzQzMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "002e7650-e57e-48c6-a4a2-0f19ccb395ab" + "c3d088fa-5248-429d-8d0b-a01bebcd0454" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:48.0416191Z\",\r\n \"changedTime\": \"2017-03-01T20:51:48.0418141Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1794\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730/agreements/IntegrationAccountAgreement1794\",\r\n \"name\": \"IntegrationAccountAgreement1794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:36.9101689Z\",\r\n \"changedTime\": \"2017-03-01T21:56:36.9103832Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7432\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount842/agreements/IntegrationAccountAgreement7432\",\r\n \"name\": \"IntegrationAccountAgreement7432\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:47 GMT" + "Wed, 01 Mar 2017 21:56:36 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:39e65f9e-a8b3-44ea-a424-a64a2dddf85e" + "westus:a8488657-b218-47b1-b8ca-b024cdf82bca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14743" ], "x-ms-correlation-request-id": [ - "b39e2520-7b68-467a-a967-efce0efec6d9" + "a87b3c8b-5e8b-451b-a95e-c5793e3c0bbd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205148Z:b39e2520-7b68-467a-a967-efce0efec6d9" + "WESTUS2:20170301T215637Z:a87b3c8b-5e8b-451b-a95e-c5793e3c0bbd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3730?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzczMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount842?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODQyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3ca5264-c698-4afe-9b41-84b7aaa10084" + "59cef0d0-3e99-4ef3-a2a4-3ae8f8f96992" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:48 GMT" + "Wed, 01 Mar 2017 21:56:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5e39b491-a52e-48d1-b32e-b2c424013bc6" + "westus:1c1be22b-149c-45db-8728-f9ac1d263d4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1188" ], "x-ms-correlation-request-id": [ - "68a5f7ae-22d4-454c-bb66-47acb914ceaf" + "9e71a8e0-4282-4ee2-b1c0-ed0b5657d464" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205148Z:68a5f7ae-22d4-454c-bb66-47acb914ceaf" + "WESTUS2:20170301T215637Z:9e71a8e0-4282-4ee2-b1c0-ed0b5657d464" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateIntegrationAccountAgreementWithEnvelopeOverride": [ - "IntegrationAccount3730", - "IntegrationAccountAgreement1794" + "IntegrationAccount842", + "IntegrationAccountAgreement7432" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json index 322975ebb3bd..151ff3b5ce7b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5036?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTAzNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "3c1c83e5-e0a9-4ebf-84a0-4e9c60ba7425" + "67c383d3-7d5e-441e-8d1d-4ea1f87e9bbc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594\",\r\n \"name\": \"IntegrationAccount7594\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5036\",\r\n \"name\": \"IntegrationAccount5036\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:55 GMT" + "Wed, 01 Mar 2017 21:56:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:31e8d6bd-6f08-4543-bfe9-d7fed24d2ccf" + "westus:496bef92-9dae-49dc-b15e-7cc246b34bcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-correlation-request-id": [ - "5c2bfda3-6bb3-4374-9832-5e588cb8dbaf" + "27935857-992c-441a-85b1-0d7ce178cc04" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205156Z:5c2bfda3-6bb3-4374-9832-5e588cb8dbaf" + "WESTUS2:20170301T215641Z:27935857-992c-441a-85b1-0d7ce178cc04" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594/agreements/IntegrationAccountAgreement5654?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU5NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU2NTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5036/agreements/IntegrationAccountAgreement9682?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTAzNi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDk2ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5654\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5654\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement9682\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement9682\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8185" ], "x-ms-client-request-id": [ - "77f7df9c-3cca-4dac-a9a0-c8e83ac57183" + "e7b895f4-c648-477b-90eb-3fb3cb93fdab" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:56.923864Z\",\r\n \"changedTime\": \"2017-03-01T20:51:56.9244778Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5654\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594/agreements/IntegrationAccountAgreement5654\",\r\n \"name\": \"IntegrationAccountAgreement5654\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:41.8457102Z\",\r\n \"changedTime\": \"2017-03-01T21:56:41.8464847Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9682\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5036/agreements/IntegrationAccountAgreement9682\",\r\n \"name\": \"IntegrationAccountAgreement9682\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5548" + "5549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:56 GMT" + "Wed, 01 Mar 2017 21:56:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:07731586-8c69-43f7-86ea-5b1997fd328e" + "westus:e2cec432-35a1-4101-b992-3bc6df295cca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-correlation-request-id": [ - "4d4fff01-3568-4149-a996-021dc3459ad6" + "e09fdc6d-d15a-4b46-8729-6f1cd4b93097" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205156Z:4d4fff01-3568-4149-a996-021dc3459ad6" + "WESTUS2:20170301T215641Z:e09fdc6d-d15a-4b46-8729-6f1cd4b93097" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU5ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5036?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTAzNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f92bac7-7f4e-442a-a884-db727fe63b4d" + "c7f0237b-8888-48ba-aab2-8346a12aa0ea" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:57 GMT" + "Wed, 01 Mar 2017 21:56:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:59ba9937-df1e-47ed-8db9-d735fa37c812" + "westus:b791e8fb-8960-44fc-9035-896a09b0bc5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1193" ], "x-ms-correlation-request-id": [ - "7323620b-f064-456d-85a6-7907888906ef" + "236e95a0-5a83-4c97-bb5e-23a6f168a05a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205157Z:7323620b-f064-456d-85a6-7907888906ef" + "WESTUS2:20170301T215642Z:236e95a0-5a83-4c97-bb5e-23a6f168a05a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7594/agreements/IntegrationAccountAgreement5654?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzU5NC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU2NTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5036/agreements/IntegrationAccountAgreement9682?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTAzNi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDk2ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "062c5602-b947-47e8-8409-9b2979ff0372" + "c9bcbc69-cd11-4177-9448-ade3ac62c609" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7594' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount5036' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:57 GMT" + "Wed, 01 Mar 2017 21:56:42 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "a15ca196-31ec-4a7e-bcbd-2658412b9ffb" + "bffef9f3-8cb9-422d-bf46-4b3c2da3a61f" ], "x-ms-correlation-request-id": [ - "a15ca196-31ec-4a7e-bcbd-2658412b9ffb" + "bffef9f3-8cb9-422d-bf46-4b3c2da3a61f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205157Z:a15ca196-31ec-4a7e-bcbd-2658412b9ffb" + "WESTUS2:20170301T215642Z:bffef9f3-8cb9-422d-bf46-4b3c2da3a61f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountAgreementOnAccountDeletion": [ - "IntegrationAccount7594", - "IntegrationAccountAgreement5654" + "IntegrationAccount5036", + "IntegrationAccountAgreement9682" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json index f5dc0d019a36..b57ed7827602 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "0b74509d-4077-45b8-9c05-daa5bd3936a4" + "e28a87b2-0bce-47e6-a2c3-5d5e76652364" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800\",\r\n \"name\": \"IntegrationAccount9800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207\",\r\n \"name\": \"IntegrationAccount9207\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:04 GMT" + "Wed, 01 Mar 2017 21:56:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6b7283dd-e473-4fb4-ade8-cdf61fa827b2" + "westus:3328681e-4599-4969-9818-19841b85035b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "2397e5a4-87c5-4fa6-808a-5af47a2b3ade" + "d1d94af8-1d60-4563-bcfa-fad2a6787daf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205204Z:2397e5a4-87c5-4fa6-808a-5af47a2b3ade" + "WESTUS2:20170301T215646Z:d1d94af8-1d60-4563-bcfa-fad2a6787daf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement5606?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDU2MDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement8993?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIwNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg5OTM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5606\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5606\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8993\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8993\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "5862" ], "x-ms-client-request-id": [ - "bae5e8d2-569c-4811-b67b-8727120f26b4" + "40cf9829-fd40-4fe2-be22-0662ae8aaccd" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:05.4115473Z\",\r\n \"changedTime\": \"2017-03-01T20:52:05.4123145Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5606\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement5606\",\r\n \"name\": \"IntegrationAccountAgreement5606\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:46.6788677Z\",\r\n \"changedTime\": \"2017-03-01T21:56:46.6798601Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8993\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement8993\",\r\n \"name\": \"IntegrationAccountAgreement8993\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3919" @@ -99,56 +99,56 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:05 GMT" + "Wed, 01 Mar 2017 21:56:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:31e85acd-d796-493a-ac6e-e4717ca65ea2" + "westus:1be52cad-1659-4f3e-a30a-5284ded4d897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "0919b6d7-e475-4abe-ab55-fc3bca065604" + "6c840091-a365-43d3-8463-e54bfdebe8bd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205205Z:0919b6d7-e475-4abe-ab55-fc3bca065604" + "WESTUS2:20170301T215646Z:6c840091-a365-43d3-8463-e54bfdebe8bd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement502?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDUwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement5372?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIwNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDUzNzI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement502\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement502\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5372\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5372\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "9755" + "9757" ], "x-ms-client-request-id": [ - "0e287796-5839-4fa8-975f-76c8b99b179f" + "b9f9744f-82a3-4019-9f2d-beb2d35a5553" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:05.7994865Z\",\r\n \"changedTime\": \"2017-03-01T20:52:05.7999733Z\",\r\n \"metadata\": \"IntegrationAccountAgreement502\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement502\",\r\n \"name\": \"IntegrationAccountAgreement502\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:46.9849153Z\",\r\n \"changedTime\": \"2017-03-01T21:56:46.9851084Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5372\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement5372\",\r\n \"name\": \"IntegrationAccountAgreement5372\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6615" + "6618" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,34 +160,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:05 GMT" + "Wed, 01 Mar 2017 21:56:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:984b7af7-8474-464b-b12b-112f670daa1d" + "westus:25c26db9-e04a-46b0-9b2e-77dec03ddc63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "24623624-ccf3-4e41-8964-04230e42d9eb" + "b3374e62-f923-4bcb-9cde-57b1a0c5d3e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205205Z:24623624-ccf3-4e41-8964-04230e42d9eb" + "WESTUS2:20170301T215647Z:b3374e62-f923-4bcb-9cde-57b1a0c5d3e9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement1109?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDExMDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement7262?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIwNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDcyNjI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1109\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1109\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7262\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7262\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -196,20 +196,20 @@ "8185" ], "x-ms-client-request-id": [ - "1a514a54-6cf1-4d0a-81c1-2e600e3971ae" + "bc8b5cb0-e62e-423d-8091-0845a7cd3610" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:06.2406077Z\",\r\n \"changedTime\": \"2017-03-01T20:52:06.2410809Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1109\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement1109\",\r\n \"name\": \"IntegrationAccountAgreement1109\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:47.264692Z\",\r\n \"changedTime\": \"2017-03-01T21:56:47.2652019Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7262\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement7262\",\r\n \"name\": \"IntegrationAccountAgreement7262\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5549" + "5548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -221,47 +221,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:06 GMT" + "Wed, 01 Mar 2017 21:56:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c3f729ef-18af-4635-843b-7a648d2fe456" + "westus:ad81d64d-ade0-4d76-a347-ff3f0c54d61b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "b704795f-a937-4d02-a894-fc60857c351f" + "7fb6f9c3-92fc-40cc-9954-c79563c76c36" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205206Z:b704795f-a937-4d02-a894-fc60857c351f" + "WESTUS2:20170301T215647Z:7fb6f9c3-92fc-40cc-9954-c79563c76c36" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMC9hZ3JlZW1lbnRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIwNy9hZ3JlZW1lbnRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44dc4ee0-e4ec-4b7d-acfb-a690eacb916a" + "b7082dd8-abd9-456a-aa2a-c2f7dde917aa" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:06.2406077Z\",\r\n \"changedTime\": \"2017-03-01T20:52:06.2410809Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1109\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement1109\",\r\n \"name\": \"IntegrationAccountAgreement1109\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:05.7994865Z\",\r\n \"changedTime\": \"2017-03-01T20:52:05.7999733Z\",\r\n \"metadata\": \"IntegrationAccountAgreement502\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement502\",\r\n \"name\": \"IntegrationAccountAgreement502\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:05.4115473Z\",\r\n \"changedTime\": \"2017-03-01T20:52:05.4123145Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5606\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800/agreements/IntegrationAccountAgreement5606\",\r\n \"name\": \"IntegrationAccountAgreement5606\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:46.9849153Z\",\r\n \"changedTime\": \"2017-03-01T21:56:46.9851084Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5372\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement5372\",\r\n \"name\": \"IntegrationAccountAgreement5372\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:47.264692Z\",\r\n \"changedTime\": \"2017-03-01T21:56:47.2652019Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7262\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement7262\",\r\n \"name\": \"IntegrationAccountAgreement7262\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:46.6788677Z\",\r\n \"changedTime\": \"2017-03-01T21:56:46.6798601Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8993\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207/agreements/IntegrationAccountAgreement8993\",\r\n \"name\": \"IntegrationAccountAgreement8993\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -273,7 +273,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:06 GMT" + "Wed, 01 Mar 2017 21:56:46 GMT" ], "Pragma": [ "no-cache" @@ -286,38 +286,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:74517624-1add-4e70-896c-29724a94382d" + "westus:ba9c2449-7cd4-473b-b0ef-99cd1670b8c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14817" ], "x-ms-correlation-request-id": [ - "5dfcc513-b770-4fab-b8d0-2cd0d96d548a" + "57516ea5-7354-4858-b00c-9644d5c06230" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205206Z:5dfcc513-b770-4fab-b8d0-2cd0d96d548a" + "WESTUS2:20170301T215647Z:57516ea5-7354-4858-b00c-9644d5c06230" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9800?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9207?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12e052d4-1e03-47be-9f31-4ef82ae07a29" + "07831f0a-2091-4b27-b341-3f1b90857a2c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -332,25 +332,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:07 GMT" + "Wed, 01 Mar 2017 21:56:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:703a8d69-d5ae-4ff9-8d79-1a2ea5fb60e2" + "westus:f029dc90-666c-440c-a91f-9e62a1ad8ac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-correlation-request-id": [ - "7ab0b3dc-b8a3-4cfa-8538-363c55e51b9b" + "30434256-0851-477c-871c-58ca000a51e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205207Z:7ab0b3dc-b8a3-4cfa-8538-363c55e51b9b" + "WESTUS2:20170301T215647Z:30434256-0851-477c-871c-58ca000a51e4" ] }, "StatusCode": 200 @@ -358,10 +358,10 @@ ], "Names": { "ListIntegrationAccountAgreements": [ - "IntegrationAccount9800", - "IntegrationAccountAgreement5606", - "IntegrationAccountAgreement502", - "IntegrationAccountAgreement1109" + "IntegrationAccount9207", + "IntegrationAccountAgreement8993", + "IntegrationAccountAgreement5372", + "IntegrationAccountAgreement7262" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json index 9612d8caba98..730f0b7c7cf7 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzc3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4960?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDk2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "7b273170-27b4-47de-98f7-bb05627835ee" + "0f646afc-ea22-4e93-b083-aeac0c03e08e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776\",\r\n \"name\": \"IntegrationAccount3776\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4960\",\r\n \"name\": \"IntegrationAccount4960\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:00 GMT" + "Wed, 01 Mar 2017 21:57:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bf06edb4-a1f2-4705-aca7-198b2a4bcc7b" + "westus:096f30c2-f8c2-4744-af06-6e96b59b1cf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "208c1395-a35b-437e-81cd-c9658005c9f4" + "89698452-7405-47a3-aca6-0b425fd67c18" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205000Z:208c1395-a35b-437e-81cd-c9658005c9f4" + "WESTUS2:20170301T215740Z:89698452-7405-47a3-aca6-0b425fd67c18" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776/certificates/IntegrationAccountCertificate9836?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzc3Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU5ODM2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4960/certificates/IntegrationAccountCertificate9352?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDk2MC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU5MzUyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,18 +75,18 @@ "1088" ], "x-ms-client-request-id": [ - "072a40ed-8cf8-4074-9c80-0fc19e7238c3" + "0e3c252c-550f-47ea-8350-2689c3a6d7a0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:50:00.8661144Z\",\r\n \"changedTime\": \"2017-03-01T20:50:00.8663366Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776/certificates/IntegrationAccountCertificate9836\",\r\n \"name\": \"IntegrationAccountCertificate9836\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:40.7372974Z\",\r\n \"changedTime\": \"2017-03-01T21:57:40.7379025Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4960/certificates/IntegrationAccountCertificate9352\",\r\n \"name\": \"IntegrationAccountCertificate9352\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1434" @@ -101,44 +101,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:00 GMT" + "Wed, 01 Mar 2017 21:57:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8395d36f-0cac-4a35-9c9e-b43b0114a4bc" + "westus:e00a62fc-722a-470c-8965-0bea665bc2ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "3d49b1a4-9eb2-4219-94b4-be6ab611e04b" + "d29881ab-0fa9-48dd-ac76-f6300e4c820c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205000Z:3d49b1a4-9eb2-4219-94b4-be6ab611e04b" + "WESTUS2:20170301T215740Z:d29881ab-0fa9-48dd-ac76-f6300e4c820c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776/certificates/IntegrationAccountCertificate9836?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzc3Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU5ODM2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4960/certificates/IntegrationAccountCertificate9352?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDk2MC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU5MzUyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a0250b2-4b62-496f-baba-5fdf19bf361b" + "943bc6c0-2750-492e-a888-16ec067a11b8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -153,44 +153,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:01 GMT" + "Wed, 01 Mar 2017 21:57:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9882d8a0-c1cd-4d38-8be1-91c083cfe45a" + "westus:8944de0d-a79f-4d46-ae73-3178fe3f1926" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "3785dd82-0355-4da1-b302-85cff7c83199" + "f0d4dc20-19d2-4ba7-9847-009f831230f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205001Z:3785dd82-0355-4da1-b302-85cff7c83199" + "WESTUS2:20170301T215740Z:f0d4dc20-19d2-4ba7-9847-009f831230f5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3776?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzc3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4960?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDk2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0b5495a-839d-4995-9f1e-a373fbcaa765" + "5855db2d-fde9-4433-9cef-10f39324b073" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -205,25 +205,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:01 GMT" + "Wed, 01 Mar 2017 21:57:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:180542e5-442a-4768-895a-e657b5a6ab6e" + "westus:1063b35a-9849-4412-88cd-333141a655eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "98795897-d2d0-446a-b1d7-968d81af3828" + "9b5aa0c2-2699-400a-a8d3-52da41048c48" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205001Z:98795897-d2d0-446a-b1d7-968d81af3828" + "WESTUS2:20170301T215741Z:9b5aa0c2-2699-400a-a8d3-52da41048c48" ] }, "StatusCode": 200 @@ -231,8 +231,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountCertificate": [ - "IntegrationAccount3776", - "IntegrationAccountCertificate9836" + "IntegrationAccount4960", + "IntegrationAccountCertificate9352" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json index 5117be50976e..4c2ce38d021a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8629?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODYyOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "55f89c56-d3c2-4998-acf4-44b57fd258b1" + "6baf5bbc-0e46-424b-a927-ceea3c943b3c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937\",\r\n \"name\": \"IntegrationAccount3937\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8629\",\r\n \"name\": \"IntegrationAccount8629\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:39 GMT" + "Wed, 01 Mar 2017 21:57:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:262b003c-0bf6-4421-9d1e-2f95d5699933" + "westus:e19757cd-1cfe-4cc5-b064-0e7aa73045b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1186" ], "x-ms-correlation-request-id": [ - "77088a3e-752e-429c-a8df-e5efefd5077b" + "2b5eab27-02d3-467d-9437-c9785ab8a9a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204939Z:77088a3e-752e-429c-a8df-e5efefd5077b" + "WESTUS2:20170301T215728Z:2b5eab27-02d3-467d-9437-c9785ab8a9a2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937/certificates/IntegrationAccountCertificate8031?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkzNy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU4MDMxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8629/certificates/IntegrationAccountCertificate4793?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODYyOS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0NzkzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,18 +75,18 @@ "1088" ], "x-ms-client-request-id": [ - "4f17c058-c863-41f6-9340-34b5a6de3929" + "b80f9203-bbbf-4274-acc0-0dcc4c6a07b3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:40.5348271Z\",\r\n \"changedTime\": \"2017-03-01T20:49:40.5354168Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937/certificates/IntegrationAccountCertificate8031\",\r\n \"name\": \"IntegrationAccountCertificate8031\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:28.9498567Z\",\r\n \"changedTime\": \"2017-03-01T21:57:28.9500506Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8629/certificates/IntegrationAccountCertificate4793\",\r\n \"name\": \"IntegrationAccountCertificate4793\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1434" @@ -101,48 +101,48 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:39 GMT" + "Wed, 01 Mar 2017 21:57:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2a15d763-3af1-4633-a9b8-16fa2b81ba66" + "westus:a752f910-e47b-43b0-98a7-f854acb853a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1185" ], "x-ms-correlation-request-id": [ - "57516f96-1bd3-4bc5-adaf-6fc6fd1c1b88" + "ae308c53-4467-4358-a5ab-42bebde64577" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204940Z:57516f96-1bd3-4bc5-adaf-6fc6fd1c1b88" + "WESTUS2:20170301T215728Z:ae308c53-4467-4358-a5ab-42bebde64577" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937/certificates/IntegrationAccountCertificate8031?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkzNy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU4MDMxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8629/certificates/IntegrationAccountCertificate4793?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODYyOS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0NzkzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0b7ef1f-f473-4877-bb7e-e1736f355381" + "d74fa1f4-7718-46d7-b427-05fcb9148e99" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:40.5348271Z\",\r\n \"changedTime\": \"2017-03-01T20:49:40.5354168Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937/certificates/IntegrationAccountCertificate8031\",\r\n \"name\": \"IntegrationAccountCertificate8031\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:28.9498567Z\",\r\n \"changedTime\": \"2017-03-01T21:57:28.9500506Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8629/certificates/IntegrationAccountCertificate4793\",\r\n \"name\": \"IntegrationAccountCertificate4793\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:40 GMT" + "Wed, 01 Mar 2017 21:57:28 GMT" ], "Pragma": [ "no-cache" @@ -167,38 +167,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f2b99121-006b-4cd6-b5cd-df0b8657f943" + "westus:ceba4388-98fe-4c46-aaa8-959badf1e1f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14795" ], "x-ms-correlation-request-id": [ - "99478f5b-690c-46ce-9f73-21e5f46807f8" + "c173fe56-d7fb-4778-a1dc-23040f1be56c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204940Z:99478f5b-690c-46ce-9f73-21e5f46807f8" + "WESTUS2:20170301T215729Z:c173fe56-d7fb-4778-a1dc-23040f1be56c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3937?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8629?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODYyOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b39666ff-07a4-481a-aa41-0958da69f44a" + "a6498cee-bf57-4592-8caf-0276f1a1c2c5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -213,25 +213,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:40 GMT" + "Wed, 01 Mar 2017 21:57:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:98fc76dd-56d7-41ac-9406-ee4cbff6b202" + "westus:23268186-51ee-4a28-850a-837f2ac36c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1184" ], "x-ms-correlation-request-id": [ - "33714e00-f1d5-4b2c-94f1-bbf150ee8e40" + "0b0d6042-14cb-421e-974a-287d1195005b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204941Z:33714e00-f1d5-4b2c-94f1-bbf150ee8e40" + "WESTUS2:20170301T215729Z:0b0d6042-14cb-421e-974a-287d1195005b" ] }, "StatusCode": 200 @@ -239,8 +239,8 @@ ], "Names": { "CreateAndGetIntegrationAccountCertificate": [ - "IntegrationAccount3937", - "IntegrationAccountCertificate8031" + "IntegrationAccount8629", + "IntegrationAccountCertificate4793" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json index cddff9d7bc3c..bfa3977a7bc3 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDAzMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "ab898c28-de52-42ba-ba60-dce4bf9f442a" + "bedef134-808d-4704-ad77-5b909f832aca" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112\",\r\n \"name\": \"IntegrationAccount8112\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032\",\r\n \"name\": \"IntegrationAccount4032\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:47 GMT" + "Wed, 01 Mar 2017 21:57:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7b3d81da-c2c3-4181-8670-fc52cedd3d07" + "westus:559755db-2159-46d9-bd1d-47cd78a6a221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "cb3388f5-d827-44d5-9aad-d053feed3b86" + "a669a8df-134e-4773-ac7c-7cc313491ad7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204948Z:cb3388f5-d827-44d5-9aad-d053feed3b86" + "WESTUS2:20170301T215734Z:a669a8df-134e-4773-ac7c-7cc313491ad7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MDc5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032/certificates/IntegrationAccountCertificate1394?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDAzMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxMzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,18 +75,18 @@ "1088" ], "x-ms-client-request-id": [ - "fc46abd7-37d6-4c7f-b6f3-49b601f44716" + "46e77f65-c0e4-4801-b149-e0dfa9279091" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:49.2218676Z\",\r\n \"changedTime\": \"2017-03-01T20:49:49.2228598Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079\",\r\n \"name\": \"IntegrationAccountCertificate4079\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:34.8645201Z\",\r\n \"changedTime\": \"2017-03-01T21:57:34.8651747Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032/certificates/IntegrationAccountCertificate1394\",\r\n \"name\": \"IntegrationAccountCertificate1394\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1434" @@ -101,32 +101,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:48 GMT" + "Wed, 01 Mar 2017 21:57:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0dcf87c2-ac00-4d82-972b-d0992cc2a778" + "westus:115e9349-0428-4841-b328-1c3bdad609ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "76c4df9a-68b0-4770-a031-ebce93b075c0" + "ba59f4f9-a0c2-49c7-b07c-47b0ba5b3e2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204949Z:76c4df9a-68b0-4770-a031-ebce93b075c0" + "WESTUS2:20170301T215734Z:ba59f4f9-a0c2-49c7-b07c-47b0ba5b3e2d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MDc5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032/certificates/IntegrationAccountCertificate1394?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDAzMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxMzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -138,18 +138,18 @@ "1088" ], "x-ms-client-request-id": [ - "caa65cdc-82e7-43b0-ba43-c4177b14a9bd" + "a3d957f9-6b43-4db5-b9ef-3c97b334989e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:49.2218676Z\",\r\n \"changedTime\": \"2017-03-01T20:49:49.4971086Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079\",\r\n \"name\": \"IntegrationAccountCertificate4079\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:34.8645201Z\",\r\n \"changedTime\": \"2017-03-01T21:57:35.0018785Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032/certificates/IntegrationAccountCertificate1394\",\r\n \"name\": \"IntegrationAccountCertificate1394\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -161,7 +161,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:48 GMT" + "Wed, 01 Mar 2017 21:57:34 GMT" ], "Pragma": [ "no-cache" @@ -174,42 +174,42 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:955090c6-5b61-4611-84da-10ad6a5417ba" + "westus:94938444-dc8a-4e0b-bb52-e201fee706d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-correlation-request-id": [ - "f8b8644f-4488-4f28-840a-46d996229ac7" + "f51ed7b1-24b3-4943-8208-baac5ec3b9ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204949Z:f8b8644f-4488-4f28-840a-46d996229ac7" + "WESTUS2:20170301T215734Z:f51ed7b1-24b3-4943-8208-baac5ec3b9ec" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MDc5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032/certificates/IntegrationAccountCertificate1394?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDAzMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxMzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4b5f1bf-3082-46ea-a690-80d46a515a67" + "3902633e-38d6-4346-b21e-5d3d5d9e6497" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:49.2218676Z\",\r\n \"changedTime\": \"2017-03-01T20:49:49.4971086Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112/certificates/IntegrationAccountCertificate4079\",\r\n \"name\": \"IntegrationAccountCertificate4079\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:34.8645201Z\",\r\n \"changedTime\": \"2017-03-01T21:57:35.0018785Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032/certificates/IntegrationAccountCertificate1394\",\r\n \"name\": \"IntegrationAccountCertificate1394\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:48 GMT" + "Wed, 01 Mar 2017 21:57:34 GMT" ], "Pragma": [ "no-cache" @@ -234,38 +234,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4f5398de-8882-4503-b9de-fc4fb29082fb" + "westus:3d614e6f-7cdf-460b-b6fc-a731e051602c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14801" ], "x-ms-correlation-request-id": [ - "f6d15c3b-9572-47f9-8f2b-6512b16c81b8" + "69d99cea-c07c-4635-beec-990fe2c71197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204949Z:f6d15c3b-9572-47f9-8f2b-6512b16c81b8" + "WESTUS2:20170301T215735Z:69d99cea-c07c-4635-beec-990fe2c71197" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8112?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODExMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4032?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDAzMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b79bdb14-507a-4720-9621-fe8bdb63e7f6" + "fe2f234d-4946-4387-9b7d-d0e14574a1f6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -280,25 +280,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:49 GMT" + "Wed, 01 Mar 2017 21:57:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c9a6400e-ba4f-43aa-b636-ff80b298d983" + "westus:568fd098-217b-400b-8f1e-b3e9aec8e295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "f7e1e33c-9388-4a05-9889-e3d6c2f06bcd" + "a686e05b-3f11-4b3a-9e5e-55718c08554d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204950Z:f7e1e33c-9388-4a05-9889-e3d6c2f06bcd" + "WESTUS2:20170301T215735Z:a686e05b-3f11-4b3a-9e5e-55718c08554d" ] }, "StatusCode": 200 @@ -306,8 +306,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountCertificate": [ - "IntegrationAccount8112", - "IntegrationAccountCertificate4079" + "IntegrationAccount4032", + "IntegrationAccountCertificate1394" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json index fce9d953d3ee..be03705d86d2 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1854?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "d599c050-17cf-44c3-a23e-b156ec9a384b" + "6b59b20d-3ed2-4192-bd91-c03a60d37e22" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392\",\r\n \"name\": \"IntegrationAccount5392\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1854\",\r\n \"name\": \"IntegrationAccount1854\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:05 GMT" + "Wed, 01 Mar 2017 21:57:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bbccf6fa-9df3-4506-821c-2e1a85b778fa" + "westus:d495098f-6d79-45a2-a9c0-297b96d4645b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "d818fad5-3649-41d9-b405-5e0ebf19491a" + "b7a7ca63-b548-4783-a18d-4f593daa54cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205006Z:d818fad5-3649-41d9-b405-5e0ebf19491a" + "WESTUS2:20170301T215743Z:b7a7ca63-b548-4783-a18d-4f593daa54cf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392/certificates/IntegrationAccountCertificate6612?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM5Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NjEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1854/certificates/IntegrationAccountCertificate3099?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg1NC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUzMDk5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n }\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "346" ], "x-ms-client-request-id": [ - "37540ad0-3e51-428b-9536-fc9ad406d603" + "63424568-b823-4235-b2e3-f4cc296e6748" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:06.635352Z\",\r\n \"changedTime\": \"2017-03-01T20:50:06.6357671Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392/certificates/IntegrationAccountCertificate6612\",\r\n \"name\": \"IntegrationAccountCertificate6612\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"createdTime\": \"2017-03-01T21:57:43.7046679Z\",\r\n \"changedTime\": \"2017-03-01T21:57:43.7053686Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1854/certificates/IntegrationAccountCertificate3099\",\r\n \"name\": \"IntegrationAccountCertificate3099\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "698" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,44 +101,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:06 GMT" + "Wed, 01 Mar 2017 21:57:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:729f19b2-d3a5-4349-9391-4dfc060f0bb3" + "westus:b8ced6d1-6ae6-45b3-b744-83cd91f9cee2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "deee8b71-ea5c-4a4e-8851-59d087fb2d22" + "fb63834d-9727-4657-b94b-2a9f5e57a471" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205006Z:deee8b71-ea5c-4a4e-8851-59d087fb2d22" + "WESTUS2:20170301T215743Z:fb63834d-9727-4657-b94b-2a9f5e57a471" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392/certificates/IntegrationAccountCertificate6612?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM5Mi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NjEyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1854/certificates/IntegrationAccountCertificate3099?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg1NC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUzMDk5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58ef3879-adf5-4f2e-97f4-1898012f55f6" + "d77095ba-7e64-4af5-9dd3-5603ba4fa401" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -153,44 +153,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:06 GMT" + "Wed, 01 Mar 2017 21:57:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0903800f-821b-4e9e-9654-a132ffc361f1" + "westus:6b98d570-70ff-4d5d-b7e5-28ffd966993e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "3f35400e-41c2-4c57-b5d0-74e507fc8b56" + "73302a96-5989-4003-9924-a9d423fb8f11" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205006Z:3f35400e-41c2-4c57-b5d0-74e507fc8b56" + "WESTUS2:20170301T215743Z:73302a96-5989-4003-9924-a9d423fb8f11" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5392?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM5Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1854?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdea9d10-47a6-4c13-a8c6-36207fc4fe85" + "4eb3ca50-b8a1-4828-89f5-1d90150e6349" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -205,25 +205,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:07 GMT" + "Wed, 01 Mar 2017 21:57:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0a336f0c-a75f-4986-acce-e6e09f43b41d" + "westus:ad123123-6f98-4cc8-90db-ae868951ba3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "4fc844aa-4fcc-4358-81d6-b23f844fc69a" + "6ae5b3d4-c4ad-4c4b-bb42-052234a820fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205007Z:4fc844aa-4fcc-4358-81d6-b23f844fc69a" + "WESTUS2:20170301T215744Z:6ae5b3d4-c4ad-4c4b-bb42-052234a820fd" ] }, "StatusCode": 200 @@ -231,8 +231,8 @@ ], "Names": { "CreateIntegrationAccountCertificateWithPrivateKey": [ - "IntegrationAccount5392", - "IntegrationAccountCertificate6612" + "IntegrationAccount1854", + "IntegrationAccountCertificate3099" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json index b78471803315..9df846271e6d 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDUwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1871?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "b833dada-392d-4220-a69d-e211b7f812df" + "f4b9fc7b-2d2a-4327-92f1-500aa212823e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505\",\r\n \"name\": \"IntegrationAccount4505\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1871\",\r\n \"name\": \"IntegrationAccount1871\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:35 GMT" + "Wed, 01 Mar 2017 21:57:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c6896f54-324d-4d81-892f-9b113ffd7075" + "westus:e9e0c9ab-0351-4633-82fb-d8d61ba62429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-correlation-request-id": [ - "227fc976-5e0e-43fb-9e4f-eec2477949ef" + "8a016d17-dd83-4500-b8fc-d692b1ceeeab" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204935Z:227fc976-5e0e-43fb-9e4f-eec2477949ef" + "WESTUS2:20170301T215726Z:8a016d17-dd83-4500-b8fc-d692b1ceeeab" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505/certificates/IntegrationAccountCertificate7877?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDUwNS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3ODc3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1871/certificates/IntegrationAccountCertificate1271?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxMjcxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "799" ], "x-ms-client-request-id": [ - "2f6df939-8d5f-4a7f-99cf-81c0638ac9df" + "429366ff-8990-4e62-a7f8-44478e5e6186" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:36.3084513Z\",\r\n \"changedTime\": \"2017-03-01T20:49:36.3086732Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505/certificates/IntegrationAccountCertificate7877\",\r\n \"name\": \"IntegrationAccountCertificate7877\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:26.6833864Z\",\r\n \"changedTime\": \"2017-03-01T21:57:26.683582Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1871/certificates/IntegrationAccountCertificate1271\",\r\n \"name\": \"IntegrationAccountCertificate1271\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1139" + "1138" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,44 +101,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:36 GMT" + "Wed, 01 Mar 2017 21:57:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d7376690-d116-4054-90aa-5ec2113d0906" + "westus:f53ad484-1648-40b7-9d4d-dbeb38667268" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "84a9e5b2-8e9f-4f09-b884-1c502f03661d" + "070d3097-81ea-4925-bb3e-f0201efb0945" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204936Z:84a9e5b2-8e9f-4f09-b884-1c502f03661d" + "WESTUS2:20170301T215726Z:070d3097-81ea-4925-bb3e-f0201efb0945" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505/certificates/IntegrationAccountCertificate7877?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDUwNS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3ODc3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1871/certificates/IntegrationAccountCertificate1271?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg3MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxMjcxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6016b0c7-14f5-42d1-b549-9e8f5ced2aa8" + "de09e850-22fa-4be7-b9a9-aca45c7b0fdc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -153,44 +153,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:36 GMT" + "Wed, 01 Mar 2017 21:57:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8e2c4c4c-e468-4242-8fc6-f517adf44aeb" + "westus:314c604e-edb0-48c4-af2f-ec804d14afd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "eade3c79-0468-4902-a79a-bade3489feb3" + "7dbf00c3-0723-4b2e-b3d3-293fb2c190d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204936Z:eade3c79-0468-4902-a79a-bade3489feb3" + "WESTUS2:20170301T215726Z:7dbf00c3-0723-4b2e-b3d3-293fb2c190d0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4505?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDUwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1871?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45870e57-d2e2-4dc8-b24b-2abc340a1dce" + "2761f16f-25a9-427c-a10e-4e6aa8f4df59" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -205,25 +205,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:36 GMT" + "Wed, 01 Mar 2017 21:57:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:32ddb626-fb69-4e0f-8194-b98a259a7281" + "westus:176fc1d5-a3cd-4b7a-809c-5addc58845b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "6da67337-fea8-48c8-a8b1-18b5d3c9e30d" + "b8fe04c9-faea-49f8-a7a1-cb6b9efe1881" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204936Z:6da67337-fea8-48c8-a8b1-18b5d3c9e30d" + "WESTUS2:20170301T215727Z:b8fe04c9-faea-49f8-a7a1-cb6b9efe1881" ] }, "StatusCode": 200 @@ -231,8 +231,8 @@ ], "Names": { "CreateIntegrationAccountCertificateWithPublicKey": [ - "IntegrationAccount4505", - "IntegrationAccountCertificate7877" + "IntegrationAccount1871", + "IntegrationAccountCertificate1271" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json index 6cbf1ba996a0..973c277a310e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7602?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "cbf08c5a-05e0-4922-8a82-76ccb48af169" + "826cdf12-a31a-4469-9e7b-5a785cc38418" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546\",\r\n \"name\": \"IntegrationAccount4546\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7602\",\r\n \"name\": \"IntegrationAccount7602\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:42 GMT" + "Wed, 01 Mar 2017 21:57:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a1914999-8d9b-4ace-86e3-7341df6ee818" + "westus:16ed32c3-56af-4fed-b940-10198565b55b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1184" ], "x-ms-correlation-request-id": [ - "7f7a168d-107b-473f-9d14-9bd4445f2d39" + "481b9ed8-8828-4e8b-8857-c4e3d642efbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204943Z:7f7a168d-107b-473f-9d14-9bd4445f2d39" + "WESTUS2:20170301T215731Z:481b9ed8-8828-4e8b-8857-c4e3d642efbb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546/certificates/IntegrationAccountCertificate6742?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU0Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NzQyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7602/certificates/IntegrationAccountCertificate4331?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MzMxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "1088" ], "x-ms-client-request-id": [ - "6b02e357-0c04-4270-b40e-4b4680011b44" + "56a95595-de2e-4f90-a365-eb12c0e9e039" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:44.6013822Z\",\r\n \"changedTime\": \"2017-03-01T20:49:44.6015625Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546/certificates/IntegrationAccountCertificate6742\",\r\n \"name\": \"IntegrationAccountCertificate6742\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:32.0419028Z\",\r\n \"changedTime\": \"2017-03-01T21:57:32.042166Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7602/certificates/IntegrationAccountCertificate4331\",\r\n \"name\": \"IntegrationAccountCertificate4331\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1434" + "1433" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,44 +101,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:43 GMT" + "Wed, 01 Mar 2017 21:57:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:848e6abb-4b15-4161-9d5e-52d5163b6704" + "westus:e56857ef-423a-4f1f-b257-2f330288108e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1183" ], "x-ms-correlation-request-id": [ - "22f61394-06fe-492a-8080-5c8f206293bf" + "111d9e5f-fee2-4dcc-9402-8ddbe817708c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204944Z:22f61394-06fe-492a-8080-5c8f206293bf" + "WESTUS2:20170301T215732Z:111d9e5f-fee2-4dcc-9402-8ddbe817708c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7602?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd10a78-a6f7-4ab4-b013-33c9d4e0dc20" + "074d57a9-2d12-4430-83cc-ec3304fdd3ce" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -153,47 +153,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:44 GMT" + "Wed, 01 Mar 2017 21:57:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e51e508c-2b6f-4750-a1df-b996f6bf63ec" + "westus:e5f65e41-f7db-45ca-a783-f2a5dd0bf4a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1182" ], "x-ms-correlation-request-id": [ - "ac43b883-baf0-42a3-af5c-bb904cc0fc8d" + "4a4f7f45-9ce4-4056-85e7-ac1f9aaad4dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204945Z:ac43b883-baf0-42a3-af5c-bb904cc0fc8d" + "WESTUS2:20170301T215732Z:4a4f7f45-9ce4-4056-85e7-ac1f9aaad4dc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4546/certificates/IntegrationAccountCertificate6742?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU0Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NzQyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7602/certificates/IntegrationAccountCertificate4331?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzYwMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0MzMxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94d9ccd7-18eb-4ef6-bc3c-930b21e90ba0" + "fa6945fa-83a7-4169-92fe-912b290e67dd" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount4546' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7602' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -208,7 +208,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:44 GMT" + "Wed, 01 Mar 2017 21:57:32 GMT" ], "Pragma": [ "no-cache" @@ -217,13 +217,13 @@ "gateway" ], "x-ms-request-id": [ - "1e6001c6-3a62-41d6-b238-b78b2a0e06ea" + "7221504e-4922-4b33-aa43-a6535746ff19" ], "x-ms-correlation-request-id": [ - "1e6001c6-3a62-41d6-b238-b78b2a0e06ea" + "7221504e-4922-4b33-aa43-a6535746ff19" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T204945Z:1e6001c6-3a62-41d6-b238-b78b2a0e06ea" + "WESTUS2:20170301T215732Z:7221504e-4922-4b33-aa43-a6535746ff19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,8 +234,8 @@ ], "Names": { "DeleteIntegrationAccountCertificateOnAccountDeletion": [ - "IntegrationAccount4546", - "IntegrationAccountCertificate6742" + "IntegrationAccount7602", + "IntegrationAccountCertificate4331" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json index a731e976ec4f..c823f822638b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM4OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount163?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTYzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "148d4164-38b6-407e-b064-fd19b8bd3e59" + "427264c3-7993-4e85-aac8-ef7c071ad419" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389\",\r\n \"name\": \"IntegrationAccount7389\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount163\",\r\n \"name\": \"IntegrationAccount163\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:53 GMT" + "Wed, 01 Mar 2017 21:57:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:41056cee-e5d5-469d-8f72-ed131270e62c" + "westus:1b9d6888-e8ba-4a1c-8f9a-4b65b5572956" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "81186a78-c43b-4d6c-9c0f-f680c1c718a5" + "2490317e-96e5-4635-88ed-77b3e35f661e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204954Z:81186a78-c43b-4d6c-9c0f-f680c1c718a5" + "WESTUS2:20170301T215736Z:2490317e-96e5-4635-88ed-77b3e35f661e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389/certificates/IntegrationAccountCertificate674?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM4OS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2NzQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount163/certificates/IntegrationAccountCertificate8356?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTYzL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTgzNTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", @@ -75,21 +75,21 @@ "1088" ], "x-ms-client-request-id": [ - "7f3299ee-7e2c-40c2-8a04-17a1aba1cbfb" + "f816e07a-c942-42dc-a8f9-9018d964e49d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:55.2080312Z\",\r\n \"changedTime\": \"2017-03-01T20:49:55.208769Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389/certificates/IntegrationAccountCertificate674\",\r\n \"name\": \"IntegrationAccountCertificate674\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:37.107029Z\",\r\n \"changedTime\": \"2017-03-01T21:57:37.1072587Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount163/certificates/IntegrationAccountCertificate8356\",\r\n \"name\": \"IntegrationAccountCertificate8356\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1431" + "1432" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,48 +101,48 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:54 GMT" + "Wed, 01 Mar 2017 21:57:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2286149d-3a0a-4933-b76a-197aae405fcc" + "westus:c4696d1b-041d-43fb-9b52-6d8e244301ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "a0067896-c039-4710-ac20-41ce740f50c2" + "56116235-4b68-408b-9c01-8cdbc3b4283f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204955Z:a0067896-c039-4710-ac20-41ce740f50c2" + "WESTUS2:20170301T215737Z:56116235-4b68-408b-9c01-8cdbc3b4283f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389/certificates?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM4OS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount163/certificates?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTYzL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fc66e62-ca74-438f-884c-8148916c959d" + "e91da30a-c3ef-4103-90a9-3c7ce58cb464" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T20:49:55.2080312Z\",\r\n \"changedTime\": \"2017-03-01T20:49:55.208769Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389/certificates/IntegrationAccountCertificate674\",\r\n \"name\": \"IntegrationAccountCertificate674\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-03-01T21:57:37.107029Z\",\r\n \"changedTime\": \"2017-03-01T21:57:37.1072587Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount163/certificates/IntegrationAccountCertificate8356\",\r\n \"name\": \"IntegrationAccountCertificate8356\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:54 GMT" + "Wed, 01 Mar 2017 21:57:37 GMT" ], "Pragma": [ "no-cache" @@ -167,38 +167,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:05a1e63c-1b42-421f-9935-9f5239b0205a" + "westus:f241c4cd-32b1-4c39-b5cc-b147d41d84a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14495" ], "x-ms-correlation-request-id": [ - "8e6f0ed7-1f13-41bc-80bb-1fbe725b01d1" + "8c9a07fd-fa24-453a-aa67-11d62cf62d90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204955Z:8e6f0ed7-1f13-41bc-80bb-1fbe725b01d1" + "WESTUS2:20170301T215737Z:8c9a07fd-fa24-453a-aa67-11d62cf62d90" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7389?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM4OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount163?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTYzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5a0ec80-4080-400d-8cff-a2801ca1ce8a" + "da15c63e-e192-4696-8d66-ce182fbf881e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -213,25 +213,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:49:55 GMT" + "Wed, 01 Mar 2017 21:57:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3ccf3816-bcd5-46b8-9ce1-14885cdcd73f" + "westus:56100de9-ca34-480f-bc25-e03f98f9f563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "a2c8fdf1-d6e3-4bcf-a601-bf28a1339017" + "28c354b4-d7ae-49aa-81df-d283eff11220" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T204956Z:a2c8fdf1-d6e3-4bcf-a601-bf28a1339017" + "WESTUS2:20170301T215737Z:28c354b4-d7ae-49aa-81df-d283eff11220" ] }, "StatusCode": 200 @@ -239,8 +239,8 @@ ], "Names": { "ListIntegrationAccountCertificates": [ - "IntegrationAccount7389", - "IntegrationAccountCertificate674" + "IntegrationAccount163", + "IntegrationAccountCertificate8356" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json index 57791ff648eb..1de316e168f1 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5886?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg4Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "02e68653-6f07-4250-9b49-43bc7293ba60" + "29d27916-36dc-4245-a985-46c997310429" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784\",\r\n \"name\": \"IntegrationAccount9784\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5886\",\r\n \"name\": \"IntegrationAccount5886\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,56 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:57 GMT" + "Wed, 01 Mar 2017 21:58:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8d4fccf8-430f-4a0b-b7f5-c9935a75fc60" + "westus:7339a66f-e0f3-496e-8d74-7141215f1f44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "54a83b57-664b-4c64-9084-8b0e8ea0afca" + "e368f20d-3e0b-4b01-8dd1-cea904b4f02c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205057Z:54a83b57-664b-4c64-9084-8b0e8ea0afca" + "WESTUS2:20170301T215817Z:e368f20d-3e0b-4b01-8dd1-cea904b4f02c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784/maps/IntegrationAccountMap880?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDg4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5886/maps/IntegrationAccountMap1839?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg4Ni9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDE4Mzk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap880\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap880\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap1839\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap1839\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3512" + "3514" ], "x-ms-client-request-id": [ - "cc0b0e1f-6bec-432f-b6c4-2b1de6d2a838" + "85d177e9-c8cf-4d8b-8abb-0ef5e4745c73" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccountsdc08429a22a24167b89a572e6c40f698/99D1E_XSLT_INTEGRATIONACCOUNTMAP880-11172EFA4ED949C2BEA4BB0EE252F0DC?sv=2016-05-31&sr=b&sig=vH7WLj6zvY%2Bbwh1ILc39g0KzT4ZeH0sEh4OWn6VfTkA%3D&se=2017-03-02T00%3A50%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A97AAF04\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:58.0853203Z\",\r\n \"changedTime\": \"2017-03-01T20:50:58.08561Z\",\r\n \"metadata\": \"IntegrationAccountMap880\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784/maps/IntegrationAccountMap880\",\r\n \"name\": \"IntegrationAccountMap880\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu24by01.blob.core.windows.net/integrationaccounts751ce794eda349c7b83b7a1bef197283/99D1E_XSLT_INTEGRATIONACCOUNTMAP1839-3B3C7852A5B44ACA9AFD8A333D747190?sv=2016-05-31&sr=b&sig=FjS%2FoBHo3uHjZNBdwvbrRU%2BfuMmbDvLi1cqiqo1TsWg%3D&se=2017-03-02T01%3A58%3A17Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE1163FA9B\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:17.7619529Z\",\r\n \"changedTime\": \"2017-03-01T21:58:17.7623224Z\",\r\n \"metadata\": \"IntegrationAccountMap1839\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5886/maps/IntegrationAccountMap1839\",\r\n \"name\": \"IntegrationAccountMap1839\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "849" + "857" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:57 GMT" + "Wed, 01 Mar 2017 21:58:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2826f7d4-4d21-4e8f-b436-8b03b5f1c6d4" + "westus:78d320eb-bb5f-4b9b-aba7-965c9fd42a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "ceda8d64-6d82-4ea2-96ed-9c2b4b9aa193" + "37672ae1-e707-4310-93f5-4a99cdc9b1e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205058Z:ceda8d64-6d82-4ea2-96ed-9c2b4b9aa193" + "WESTUS2:20170301T215817Z:37672ae1-e707-4310-93f5-4a99cdc9b1e6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784/maps/IntegrationAccountMap880?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDg4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5886/maps/IntegrationAccountMap1839?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg4Ni9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDE4Mzk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b065cce-9023-4150-83e5-83572b8247f9" + "dec70e39-7be7-4eda-9cad-314c2df25301" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,44 +151,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:58 GMT" + "Wed, 01 Mar 2017 21:58:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6a80a4cc-5ac1-4a2d-8875-5b3c356d9dd9" + "westus:fc7f632c-5449-409f-a538-8041fd3895c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "54725351-92e4-4966-9538-b4020d53199e" + "a640cf29-2491-4721-8813-4c9e252b6bed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205058Z:54725351-92e4-4966-9538-b4020d53199e" + "WESTUS2:20170301T215817Z:a640cf29-2491-4721-8813-4c9e252b6bed" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9784?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5886?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTg4Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e966bea-1b27-42a8-b4b0-594d6d8a6b81" + "84e4da92-fa06-44b6-9c6e-7d5ab500bdc6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -203,25 +203,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:59 GMT" + "Wed, 01 Mar 2017 21:58:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:42c0125f-dd26-4e7a-b8a4-0c56f0b0dca5" + "westus:11911bb0-1647-49b4-8592-3e34e089ff6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "9763b4d2-58d0-4a45-9019-6189c38c968b" + "0e36d1e7-d3d3-4b88-889b-5825f7b4baa8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205059Z:9763b4d2-58d0-4a45-9019-6189c38c968b" + "WESTUS2:20170301T215818Z:0e36d1e7-d3d3-4b88-889b-5825f7b4baa8" ] }, "StatusCode": 200 @@ -229,8 +229,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountMap": [ - "IntegrationAccount9784", - "IntegrationAccountMap880" + "IntegrationAccount5886", + "IntegrationAccountMap1839" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json index 1838086eda76..c433008f5a62 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1655?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTY1NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "2ccb6add-f9f6-4804-ad5e-571609ae3ad3" + "83768a9c-92a9-4408-a562-88b9d5dcc7ba" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772\",\r\n \"name\": \"IntegrationAccount6772\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1655\",\r\n \"name\": \"IntegrationAccount1655\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:07 GMT" + "Wed, 01 Mar 2017 21:58:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f520c487-6d43-4469-989a-bf90eaab409e" + "westus:f5ebb381-1242-40f5-ac74-353ba6e30398" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "59a2f3ce-3636-43b8-933b-ec11050d3775" + "90537705-4865-4be1-9388-2eaf8fe2f7c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205108Z:59a2f3ce-3636-43b8-933b-ec11050d3775" + "CENTRALUS:20170301T215827Z:90537705-4865-4be1-9388-2eaf8fe2f7c6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772/maps/IntegrationAccountMap2686?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc3Mi9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDI2ODY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1655/maps/IntegrationAccountMap9146?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTY1NS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDkxNDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap2686\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap2686\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap9146\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap9146\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "3514" ], "x-ms-client-request-id": [ - "adb26e6b-bc60-4e7c-88c4-9fcac64231c0" + "429e85af-708f-418d-bf6f-3cfd1caf0bab" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccountsa3f4b5b6398c48bab330a34e04f93768/99D1E_XSLT_INTEGRATIONACCOUNTMAP2686-F5593CB6356B408D92F6F71BC268CE4E?sv=2016-05-31&sr=b&sig=Fq13Js6U2zGEMqpZlP7TpqhoRA5Y89xJlTl75aTWWtY%3D&se=2017-03-02T00%3A51%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4AF9FF81F\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:08.3962646Z\",\r\n \"changedTime\": \"2017-03-01T20:51:08.3965514Z\",\r\n \"metadata\": \"IntegrationAccountMap2686\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772/maps/IntegrationAccountMap2686\",\r\n \"name\": \"IntegrationAccountMap2686\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccounts5950624d0c864afb86ca4fd38ba74bec/99D1E_XSLT_INTEGRATIONACCOUNTMAP9146-E371432942204EDCB872C98BC1B3445A?sv=2016-05-31&sr=b&sig=2GN45W6NpiU32mV4VH4WuvkUPMQIFWeLs1XTF7LUV0w%3D&se=2017-03-02T01%3A58%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE17FB971D\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:28.4738225Z\",\r\n \"changedTime\": \"2017-03-01T21:58:28.4742472Z\",\r\n \"metadata\": \"IntegrationAccountMap9146\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1655/maps/IntegrationAccountMap9146\",\r\n \"name\": \"IntegrationAccountMap9146\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ "853" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:07 GMT" + "Wed, 01 Mar 2017 21:58:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e50cd4ed-8f71-4600-85c3-43d5f4cd01b3" + "westus:ec7b8213-37db-4a8a-9f92-c665120f9c6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "55a82f33-ae97-4594-ac45-c56918a5b09e" + "20447585-c4cf-407f-a67e-a5a105780713" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205108Z:55a82f33-ae97-4594-ac45-c56918a5b09e" + "CENTRALUS:20170301T215828Z:20447585-c4cf-407f-a67e-a5a105780713" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772/maps/IntegrationAccountMap2686?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc3Mi9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDI2ODY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1655/maps/IntegrationAccountMap9146?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTY1NS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDkxNDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9dd7032-ed9f-405e-9fa2-ddf0a65f90c4" + "520aea54-90be-49e0-ae0e-9342315981ae" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccountsa3f4b5b6398c48bab330a34e04f93768/99D1E_XSLT_INTEGRATIONACCOUNTMAP2686-F5593CB6356B408D92F6F71BC268CE4E?sv=2016-05-31&sr=b&sig=Fq13Js6U2zGEMqpZlP7TpqhoRA5Y89xJlTl75aTWWtY%3D&se=2017-03-02T00%3A51%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4AF9FF81F\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:08.3962646Z\",\r\n \"changedTime\": \"2017-03-01T20:51:08.3965514Z\",\r\n \"metadata\": \"IntegrationAccountMap2686\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772/maps/IntegrationAccountMap2686\",\r\n \"name\": \"IntegrationAccountMap2686\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccounts5950624d0c864afb86ca4fd38ba74bec/99D1E_XSLT_INTEGRATIONACCOUNTMAP9146-E371432942204EDCB872C98BC1B3445A?sv=2016-05-31&sr=b&sig=2GN45W6NpiU32mV4VH4WuvkUPMQIFWeLs1XTF7LUV0w%3D&se=2017-03-02T01%3A58%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE17FB971D\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:28.4738225Z\",\r\n \"changedTime\": \"2017-03-01T21:58:28.4742472Z\",\r\n \"metadata\": \"IntegrationAccountMap9146\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1655/maps/IntegrationAccountMap9146\",\r\n \"name\": \"IntegrationAccountMap9146\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:07 GMT" + "Wed, 01 Mar 2017 21:58:27 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:259dca06-f7cb-42fa-84d9-80040d009119" + "westus:5e1c1fbf-84dc-4889-bdae-79f7dd6ac9f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14922" ], "x-ms-correlation-request-id": [ - "b8595cc4-91b5-4037-80b0-7f19f50e556f" + "1577fc45-66c8-4647-9d64-be651ee6ef3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205108Z:b8595cc4-91b5-4037-80b0-7f19f50e556f" + "CENTRALUS:20170301T215828Z:1577fc45-66c8-4647-9d64-be651ee6ef3a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6772?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1655?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTY1NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "155689e5-f7c5-4cee-acf6-e6a3e6b6ecfe" + "b127d1ea-2010-4774-8c18-d1a02e7334c4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:08 GMT" + "Wed, 01 Mar 2017 21:58:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2683f539-a734-42cc-9013-990cbb5b3667" + "westus:7983cf24-b90f-413d-ac7a-f1a4d2431a99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "f37b171a-815b-4c86-97b4-669fe5a8e37d" + "ef80b3b4-1fdd-4435-9bf4-1a649103c57d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205109Z:f37b171a-815b-4c86-97b4-669fe5a8e37d" + "CENTRALUS:20170301T215829Z:ef80b3b4-1fdd-4435-9bf4-1a649103c57d" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountMap": [ - "IntegrationAccount6772", - "IntegrationAccountMap2686" + "IntegrationAccount1655", + "IntegrationAccountMap9146" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json index 72d71efe2b84..a3c71988170b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjgyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "e3900dc6-47e3-41a3-9083-2578bc83f3e0" + "f5817f26-2bcc-45c9-afdc-f054256ed890" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704\",\r\n \"name\": \"IntegrationAccount4704\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682\",\r\n \"name\": \"IntegrationAccount682\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:44 GMT" + "Wed, 01 Mar 2017 21:58:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f3420a51-5cce-4546-81cf-815de78ec4f3" + "westus:a271a5d9-c95c-4aa6-9a2f-9a544c4237d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "a933481e-ffd3-4bea-b7cf-86ddaaf06075" + "d515a2a8-23aa-40a7-9f01-97f5cfaf9960" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205045Z:a933481e-ffd3-4bea-b7cf-86ddaaf06075" + "WESTUS2:20170301T215811Z:d515a2a8-23aa-40a7-9f01-97f5cfaf9960" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwNC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIyNzA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682/maps/IntegrationAccountMap9506?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjgyL21hcHMvSW50ZWdyYXRpb25BY2NvdW50TWFwOTUwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap2270\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap2270\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap9506\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap9506\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "3514" ], "x-ms-client-request-id": [ - "9357ecd2-30cf-483a-bccf-4131dbbf24a1" + "edbfed00-1761-4cd3-9b3d-83cbda1b260d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccountseb3eeef0bb7643a3ae9e67a2a194d988/99D1E_XSLT_INTEGRATIONACCOUNTMAP2270-12FDD829CEDC4C17B7741AA03DB943C7?sv=2016-05-31&sr=b&sig=%2FhEMqnXs3%2FkvkM3sQcYaKcWkZEmTdlKYBYe1cfpUhgc%3D&se=2017-03-02T00%3A50%3A45Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A278A302\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:45.8695637Z\",\r\n \"changedTime\": \"2017-03-01T20:50:45.8700337Z\",\r\n \"metadata\": \"IntegrationAccountMap2270\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270\",\r\n \"name\": \"IntegrationAccountMap2270\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu02by01.blob.core.windows.net/integrationaccountsbe15343620194450bdd61ddfb246db11/99D1E_XSLT_INTEGRATIONACCOUNTMAP9506-AC093AB1C1CF426FA10E411CCAAFF767?sv=2016-05-31&sr=b&sig=tB%2FrBQgR7XCZi8ap6bYaNs47B2L3CYxu9R%2BQYtJUzmw%3D&se=2017-03-02T01%3A58%3A11Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE0E0A287F\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:11.9542071Z\",\r\n \"changedTime\": \"2017-03-01T21:58:11.9545806Z\",\r\n \"metadata\": \"IntegrationAccountMap9506\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682/maps/IntegrationAccountMap9506\",\r\n \"name\": \"IntegrationAccountMap9506\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "857" + "856" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:44 GMT" + "Wed, 01 Mar 2017 21:58:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d9c389e1-5116-4e51-abd1-129291a6ab56" + "westus:9f7d1879-2adf-4130-9694-8b08cf1ac478" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "aad8bbad-fb7c-4793-a5e6-05b6d9d53323" + "c76d9342-93a5-4812-a346-ecf6b4e66f71" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205045Z:aad8bbad-fb7c-4793-a5e6-05b6d9d53323" + "WESTUS2:20170301T215812Z:c76d9342-93a5-4812-a346-ecf6b4e66f71" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwNC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIyNzA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682/maps/IntegrationAccountMap9506?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjgyL21hcHMvSW50ZWdyYXRpb25BY2NvdW50TWFwOTUwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "3417" ], "x-ms-client-request-id": [ - "90b7fbcc-7c99-4b6d-895f-765e95e65aea" + "7cfc70ea-0e14-47ca-96fe-1e40e079cc30" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccountseb3eeef0bb7643a3ae9e67a2a194d988/99D1E_XSLT_INTEGRATIONACCOUNTMAP2270-236FE59B54034240BA221167780C4069?sv=2016-05-31&sr=b&sig=yH3D%2FHkdJNfgPtKVTiWTNdkb7hJH0kcotlKIA6OTjBM%3D&se=2017-03-02T00%3A50%3A46Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A2A4E3E7\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:45.8695637Z\",\r\n \"changedTime\": \"2017-03-01T20:50:46.169407Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270\",\r\n \"name\": \"IntegrationAccountMap2270\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu02by01.blob.core.windows.net/integrationaccountsbe15343620194450bdd61ddfb246db11/99D1E_XSLT_INTEGRATIONACCOUNTMAP9506-1335153155114E71BAD2EA39C2841858?sv=2016-05-31&sr=b&sig=YpszeZ7LGO05JnW%2BsjVJY1927oxsdoRO%2BikbtFCsop8%3D&se=2017-03-02T01%3A58%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE0E2074FB\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:11.9542071Z\",\r\n \"changedTime\": \"2017-03-01T21:58:12.1100208Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682/maps/IntegrationAccountMap9506\",\r\n \"name\": \"IntegrationAccountMap9506\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:45 GMT" + "Wed, 01 Mar 2017 21:58:11 GMT" ], "Pragma": [ "no-cache" @@ -170,41 +170,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a7891f64-ba8b-44a9-823e-8d906ef08c4a" + "westus:09393750-30cc-4090-b0c2-d670e43a33ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "7d48fa11-4d86-40a6-8be2-2d06dc1a629e" + "0afb053b-b0d3-4ab8-8fcf-09f4503f8e1b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205046Z:7d48fa11-4d86-40a6-8be2-2d06dc1a629e" + "WESTUS2:20170301T215812Z:0afb053b-b0d3-4ab8-8fcf-09f4503f8e1b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwNC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIyNzA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682/maps/IntegrationAccountMap9506?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjgyL21hcHMvSW50ZWdyYXRpb25BY2NvdW50TWFwOTUwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80f2799-0d28-477a-bbcd-96ca742d4c08" + "dfe630bf-c045-4f38-a7a9-ee4339d96ab4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccountseb3eeef0bb7643a3ae9e67a2a194d988/99D1E_XSLT_INTEGRATIONACCOUNTMAP2270-236FE59B54034240BA221167780C4069?sv=2016-05-31&sr=b&sig=yH3D%2FHkdJNfgPtKVTiWTNdkb7hJH0kcotlKIA6OTjBM%3D&se=2017-03-02T00%3A50%3A46Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A2A4E3E7\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:45.8695637Z\",\r\n \"changedTime\": \"2017-03-01T20:50:46.169407Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704/maps/IntegrationAccountMap2270\",\r\n \"name\": \"IntegrationAccountMap2270\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu02by01.blob.core.windows.net/integrationaccountsbe15343620194450bdd61ddfb246db11/99D1E_XSLT_INTEGRATIONACCOUNTMAP9506-1335153155114E71BAD2EA39C2841858?sv=2016-05-31&sr=b&sig=YpszeZ7LGO05JnW%2BsjVJY1927oxsdoRO%2BikbtFCsop8%3D&se=2017-03-02T01%3A58%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE0E2074FB\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:11.9542071Z\",\r\n \"changedTime\": \"2017-03-01T21:58:12.1100208Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682/maps/IntegrationAccountMap9506\",\r\n \"name\": \"IntegrationAccountMap9506\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:45 GMT" + "Wed, 01 Mar 2017 21:58:11 GMT" ], "Pragma": [ "no-cache" @@ -229,38 +229,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4d98bd08-b14a-45e7-a4c0-8e8e534b62b8" + "westus:08271de6-7b14-4b13-aa71-2fb268c334b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14626" ], "x-ms-correlation-request-id": [ - "7986b75d-53c3-4f06-84f4-48055e38c43b" + "c1b5399f-1fa9-49c2-bf78-8c945333f711" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205046Z:7986b75d-53c3-4f06-84f4-48055e38c43b" + "WESTUS2:20170301T215812Z:c1b5399f-1fa9-49c2-bf78-8c945333f711" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4704?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount682?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjgyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2858542-9e43-427e-9aea-1f107aea858c" + "77b01b39-5d00-4478-a0be-3f6a8f07e9de" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -275,25 +275,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:46 GMT" + "Wed, 01 Mar 2017 21:58:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5af2affe-d6c8-4fae-83b1-732d53ffcae0" + "westus:a1ee5e7a-e841-4fc6-83e1-6f732d14c35f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "347f6fd7-8059-4ffe-a129-0d388847db5d" + "882b79ea-dd55-4132-bb1e-7138a465ab47" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205047Z:347f6fd7-8059-4ffe-a129-0d388847db5d" + "WESTUS2:20170301T215812Z:882b79ea-dd55-4132-bb1e-7138a465ab47" ] }, "StatusCode": 200 @@ -301,8 +301,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountMap": [ - "IntegrationAccount4704", - "IntegrationAccountMap2270" + "IntegrationAccount682", + "IntegrationAccountMap9506" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json index 08ed9261bcbe..e9287cc0efdd 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4944?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDk0ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "a1499db8-229e-4b9b-abc8-fdcf1dfd08f6" + "5bf26166-eee1-4ed6-9d43-1b7b5ce9866a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807\",\r\n \"name\": \"IntegrationAccount8807\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4944\",\r\n \"name\": \"IntegrationAccount4944\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:01 GMT" + "Wed, 01 Mar 2017 21:58:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:24d3cdfa-eabe-4c66-98cc-3ebbaa063466" + "westus:e9153688-4e2a-41a0-b249-c8b6a14cd5c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "ba45213b-8603-43ac-a9d8-edb952e83c67" + "b377c5c3-84ea-49be-96b0-00d1bf83b9a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205102Z:ba45213b-8603-43ac-a9d8-edb952e83c67" + "WESTUS2:20170301T215819Z:b377c5c3-84ea-49be-96b0-00d1bf83b9a3" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807/maps/IntegrationAccountMap6972?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwNy9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDY5NzI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4944/maps/IntegrationAccountMap2100?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDk0NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIxMDA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap6972\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap6972\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap2100\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap2100\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "3514" ], "x-ms-client-request-id": [ - "1aaeff28-3747-4a3b-ad80-b8aa4ba8ef71" + "3b15f232-7f3f-404a-942c-b01147e0900c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu12by01.blob.core.windows.net/integrationaccountscbe787376c834dd69872ca97c6b7c9ee/99D1E_XSLT_INTEGRATIONACCOUNTMAP6972-D3035240F0DD41D4B26C9C03E88BAC07?sv=2016-05-31&sr=b&sig=HSMu7rQyyHivZuF3c5L6q0GBZ6EGTaPmY9iZzCraEus%3D&se=2017-03-02T00%3A51%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4ACBBDFA7\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:02.9480794Z\",\r\n \"changedTime\": \"2017-03-01T20:51:02.9484125Z\",\r\n \"metadata\": \"IntegrationAccountMap6972\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807/maps/IntegrationAccountMap6972\",\r\n \"name\": \"IntegrationAccountMap6972\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu14by01.blob.core.windows.net/integrationaccounts0c72345004544d62b5e529dc8578052b/99D1E_XSLT_INTEGRATIONACCOUNTMAP2100-009A56DABA8B4E0EB43CC74E2554C805?sv=2016-05-31&sr=b&sig=IruJa%2FkLGLb66gBRv0GDtkvmXSx9OLipOfXkNgfne8k%3D&se=2017-03-02T01%3A58%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE1281B9D0\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:20.4014506Z\",\r\n \"changedTime\": \"2017-03-01T21:58:20.4024335Z\",\r\n \"metadata\": \"IntegrationAccountMap2100\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4944/maps/IntegrationAccountMap2100\",\r\n \"name\": \"IntegrationAccountMap2100\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "853" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:02 GMT" + "Wed, 01 Mar 2017 21:58:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ec4e1065-292c-45f8-82ea-2a4a0acde86f" + "westus:9efdac90-266b-4dc3-b8a9-7a01c8aa6755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "c4537dbb-ec68-4b11-90a0-3987e2757901" + "601fd22a-65f5-4f16-98d3-5c70c285d961" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205103Z:c4537dbb-ec68-4b11-90a0-3987e2757901" + "WESTUS2:20170301T215820Z:601fd22a-65f5-4f16-98d3-5c70c285d961" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4944?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDk0ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8c4771e-192b-4730-a93f-741b5bfda51a" + "3b992393-d7e6-442e-a618-7e000650ed43" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:03 GMT" + "Wed, 01 Mar 2017 21:58:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:10aae9eb-ca92-4d22-a186-7c623cfb38a6" + "westus:4a614f27-2528-49cc-8edc-3747f8b92d5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1192" ], "x-ms-correlation-request-id": [ - "18350120-dda1-4212-9d17-1169e2060f65" + "aa0b53d1-17a7-456c-a68e-8488559a7dc8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205103Z:18350120-dda1-4212-9d17-1169e2060f65" + "WESTUS2:20170301T215820Z:aa0b53d1-17a7-456c-a68e-8488559a7dc8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8807/maps/IntegrationAccountMap6972?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwNy9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDY5NzI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4944/maps/IntegrationAccountMap2100?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDk0NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDIxMDA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "763786d0-2161-483a-99d5-fdb309204d93" + "d1da1339-3221-42df-a7bb-b9eb56f2e3ef" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount8807' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount4944' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:03 GMT" + "Wed, 01 Mar 2017 21:58:20 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "653cc2d5-9dc8-4fe2-a981-10b5ff55d2d3" + "43b62041-26e6-4e4e-b2f9-4f0f933f627e" ], "x-ms-correlation-request-id": [ - "653cc2d5-9dc8-4fe2-a981-10b5ff55d2d3" + "43b62041-26e6-4e4e-b2f9-4f0f933f627e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205104Z:653cc2d5-9dc8-4fe2-a981-10b5ff55d2d3" + "WESTUS2:20170301T215820Z:43b62041-26e6-4e4e-b2f9-4f0f933f627e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountMapOnAccountDeletion": [ - "IntegrationAccount8807", - "IntegrationAccountMap6972" + "IntegrationAccount4944", + "IntegrationAccountMap2100" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json index 5b4a8a9ddf3e..b1eb9d2423cb 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1254?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "811faea9-540f-4b5f-87b6-4cc565ed71de" + "3c2adaaf-4d6a-48d5-8838-e422ab710430" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435\",\r\n \"name\": \"IntegrationAccount3435\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1254\",\r\n \"name\": \"IntegrationAccount1254\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:51 GMT" + "Wed, 01 Mar 2017 21:58:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5e72499f-43f3-46f1-8987-69bc01d78565" + "westus:2958dc3c-f3b5-4f1c-ace3-711256f28614" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1187" ], "x-ms-correlation-request-id": [ - "07b604cb-fa89-4f5c-9633-508c7e483375" + "28856011-914f-414f-8084-607495d488de" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205051Z:07b604cb-fa89-4f5c-9633-508c7e483375" + "WESTUS2:20170301T215813Z:28856011-914f-414f-8084-607495d488de" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435/maps/IntegrationAccountMap6921?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQzNS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDY5MjE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1254/maps/IntegrationAccountMap3946?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI1NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDM5NDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap6921\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap6921\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap3946\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap3946\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "3514" ], "x-ms-client-request-id": [ - "aa10cd01-fadc-434b-8542-07020c6a851d" + "d7f529b6-8e18-4521-a35c-27c6b4664e76" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccountsd3508a35bcfe4b3abed50340dc650440/99D1E_XSLT_INTEGRATIONACCOUNTMAP6921-B47FC4EE3B9641BD914C49304766FCBF?sv=2016-05-31&sr=b&sig=j3seO%2Fl65emkbCJe%2BbROGNDbiFJohuJ45c82bB8MleQ%3D&se=2017-03-02T00%3A50%3A52Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A6795ED9\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:52.587217Z\",\r\n \"changedTime\": \"2017-03-01T20:50:52.5875122Z\",\r\n \"metadata\": \"IntegrationAccountMap6921\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435/maps/IntegrationAccountMap6921\",\r\n \"name\": \"IntegrationAccountMap6921\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu13by01.blob.core.windows.net/integrationaccounts240f11e9101f4686ba42a9399cc63078/99D1E_XSLT_INTEGRATIONACCOUNTMAP3946-BE89E7BD0D4C432EB15C508AC60EDE87?sv=2016-05-31&sr=b&sig=aqrf5PJqQ45ojZO0%2FcBrZdKEH%2FEgxYKGr%2FDQoZcHCK8%3D&se=2017-03-02T01%3A58%3A14Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE0F588ED4\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:14.274301Z\",\r\n \"changedTime\": \"2017-03-01T21:58:14.2752027Z\",\r\n \"metadata\": \"IntegrationAccountMap3946\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1254/maps/IntegrationAccountMap3946\",\r\n \"name\": \"IntegrationAccountMap3946\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "856" + "858" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:51 GMT" + "Wed, 01 Mar 2017 21:58:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:96c9e374-c4e9-4cbb-b75a-296c1afa61b3" + "westus:b2b41172-322e-4901-bce9-709c2b90ed77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1186" ], "x-ms-correlation-request-id": [ - "08be20e8-2bf3-4784-b216-f8c05634b942" + "6eefbd67-3dfc-46bc-b54b-6444ebae4f9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205052Z:08be20e8-2bf3-4784-b216-f8c05634b942" + "WESTUS2:20170301T215814Z:6eefbd67-3dfc-46bc-b54b-6444ebae4f9e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435/maps?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQzNS9tYXBzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1254/maps?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI1NC9tYXBzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c7e5d82-6346-4294-88d2-515efa57230e" + "1cd60f03-ac6d-4907-bada-5d90caa27e2a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccountsd3508a35bcfe4b3abed50340dc650440/99D1E_XSLT_INTEGRATIONACCOUNTMAP6921-B47FC4EE3B9641BD914C49304766FCBF?sv=2016-05-31&sr=b&sig=j3seO%2Fl65emkbCJe%2BbROGNDbiFJohuJ45c82bB8MleQ%3D&se=2017-03-02T00%3A50%3A52Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4A6795ED9\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:50:52.587217Z\",\r\n \"changedTime\": \"2017-03-01T20:50:52.5875122Z\",\r\n \"metadata\": \"IntegrationAccountMap6921\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435/maps/IntegrationAccountMap6921\",\r\n \"name\": \"IntegrationAccountMap6921\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu13by01.blob.core.windows.net/integrationaccounts240f11e9101f4686ba42a9399cc63078/99D1E_XSLT_INTEGRATIONACCOUNTMAP3946-BE89E7BD0D4C432EB15C508AC60EDE87?sv=2016-05-31&sr=b&sig=aqrf5PJqQ45ojZO0%2FcBrZdKEH%2FEgxYKGr%2FDQoZcHCK8%3D&se=2017-03-02T01%3A58%3A14Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EE0F588ED4\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:58:14.274301Z\",\r\n \"changedTime\": \"2017-03-01T21:58:14.2752027Z\",\r\n \"metadata\": \"IntegrationAccountMap3946\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1254/maps/IntegrationAccountMap3946\",\r\n \"name\": \"IntegrationAccountMap3946\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:51 GMT" + "Wed, 01 Mar 2017 21:58:13 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4a89e752-d73a-4070-95ce-6a6a684d6874" + "westus:0d348f3c-e867-4565-8cb4-2a8a40da78d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" + "14487" ], "x-ms-correlation-request-id": [ - "40457577-4cf0-48b6-a8b9-31dbb91de2a6" + "02d661b8-b17a-4f61-a1c4-17266a38f3d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205052Z:40457577-4cf0-48b6-a8b9-31dbb91de2a6" + "WESTUS2:20170301T215814Z:02d661b8-b17a-4f61-a1c4-17266a38f3d4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3435?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQzNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1254?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08331244-3524-4ea7-9f7c-3911f362617d" + "0fec0261-2c52-4128-9a38-938e6342fffc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:52 GMT" + "Wed, 01 Mar 2017 21:58:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6c10ad9a-1b28-45e9-90b6-a8fd33ed1fc6" + "westus:51a93497-c1ed-4b7e-943a-57f37b98d405" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1185" ], "x-ms-correlation-request-id": [ - "704e132a-3ef3-4b38-8618-43ecb3a315b6" + "849fc378-ff08-4a03-afb2-f40a2c32b2cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205053Z:704e132a-3ef3-4b38-8618-43ecb3a315b6" + "WESTUS2:20170301T215814Z:849fc378-ff08-4a03-afb2-f40a2c32b2cc" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountMaps": [ - "IntegrationAccount3435", - "IntegrationAccountMap6921" + "IntegrationAccount1254", + "IntegrationAccountMap3946" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json index d99cbe364239..2ad7aed00ad1 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9430?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTQzMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "198cc2b5-44c0-4bee-ade2-097cec474139" + "695367f0-40ec-4080-a6b8-630cb6b10556" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616\",\r\n \"name\": \"IntegrationAccount616\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9430\",\r\n \"name\": \"IntegrationAccount9430\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:20 GMT" + "Wed, 01 Mar 2017 21:56:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ea4da016-3106-43c1-be36-f15e52e98032" + "westus:7212b6aa-61c8-4269-8f99-0230757825b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "47b165f2-5923-407b-b0d8-39052c2c9a48" + "b283ee55-0f2c-49f5-a0db-e034d1cc45cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205220Z:47b165f2-5923-407b-b0d8-39052c2c9a48" + "CENTRALUS:20170301T215656Z:b283ee55-0f2c-49f5-a0db-e034d1cc45cc" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616/partners/IntegrationAccountPartner7986?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2L3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI3OTg2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9430/partners/IntegrationAccountPartner9548?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTQzMC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTU0OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7986\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7986\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner9548\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner9548\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "398" ], "x-ms-client-request-id": [ - "a3ed1edf-7863-40c8-98d1-c10e412c75c0" + "73e26683-eeb0-4b7e-b3b5-8d5c9cd8538a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:20.8143559Z\",\r\n \"changedTime\": \"2017-03-01T20:52:20.8146874Z\",\r\n \"metadata\": \"IntegrationAccountPartner7986\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616/partners/IntegrationAccountPartner7986\",\r\n \"name\": \"IntegrationAccountPartner7986\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:56.5927585Z\",\r\n \"changedTime\": \"2017-03-01T21:56:56.5933353Z\",\r\n \"metadata\": \"IntegrationAccountPartner9548\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9430/partners/IntegrationAccountPartner9548\",\r\n \"name\": \"IntegrationAccountPartner9548\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "525" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:20 GMT" + "Wed, 01 Mar 2017 21:56:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:34d18f4a-8527-414b-b00a-72635b917de7" + "westus:ad1cef63-e842-42dd-b5b2-565df17dafd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "46acc9f6-b12d-4bae-ae10-431daf1766b2" + "1c9d4bf4-8799-43f4-b61f-3a4d1699cfaa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205220Z:46acc9f6-b12d-4bae-ae10-431daf1766b2" + "CENTRALUS:20170301T215656Z:1c9d4bf4-8799-43f4-b61f-3a4d1699cfaa" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616/partners/IntegrationAccountPartner7986?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2L3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI3OTg2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9430/partners/IntegrationAccountPartner9548?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTQzMC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTU0OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f379bec-a4c5-4742-8340-62b5e8c54623" + "67112f19-240a-4cde-af0f-9b34593eadfc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,44 +151,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:20 GMT" + "Wed, 01 Mar 2017 21:56:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0369b7e4-a70d-4423-94b7-00aff04b4e53" + "westus:0fc9dde8-634d-4e30-a0e5-32196b5bd1bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "ca1d2a8c-5e76-4756-9cb4-6362e63913ba" + "f1c68a89-f3da-4245-97f5-ce346ddfb64d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205221Z:ca1d2a8c-5e76-4756-9cb4-6362e63913ba" + "CENTRALUS:20170301T215656Z:f1c68a89-f3da-4245-97f5-ce346ddfb64d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount616?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9430?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTQzMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43024522-e812-4dfe-ac98-17532c98b497" + "67235353-dd0d-45fb-a2aa-dcb5f99e8508" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -203,25 +203,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:21 GMT" + "Wed, 01 Mar 2017 21:56:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8aa52713-5722-4bb5-8f91-b803c8f81224" + "westus:2566eef4-7a4a-4581-a0d9-962bdc4575a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "2cc81a06-2c50-435d-8cb2-563aa0daa7c1" + "437b6a6b-2bed-47c5-8504-a27d68b3a387" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205221Z:2cc81a06-2c50-435d-8cb2-563aa0daa7c1" + "CENTRALUS:20170301T215657Z:437b6a6b-2bed-47c5-8504-a27d68b3a387" ] }, "StatusCode": 200 @@ -229,8 +229,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountPartner": [ - "IntegrationAccount616", - "IntegrationAccountPartner7986" + "IntegrationAccount9430", + "IntegrationAccountPartner9548" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json index b7b24c16eda0..67a5ecb3fba7 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1319?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "64d27154-a233-468e-9601-75e61d43c822" + "b238c6a4-7ee2-4f15-ab58-a21dd45e2b36" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761\",\r\n \"name\": \"IntegrationAccount4761\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1319\",\r\n \"name\": \"IntegrationAccount1319\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:12 GMT" + "Wed, 01 Mar 2017 21:56:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8eeb87f3-8d0d-4555-b9bf-b25dd1eb83fc" + "westus:2ac91626-4346-4bd6-8f38-e57d2b9125cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,19 +53,19 @@ "1194" ], "x-ms-correlation-request-id": [ - "4353d11e-6094-4b4b-a101-79b31168f722" + "47603e7a-cefe-4a18-89f6-8bb63295868c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205212Z:4353d11e-6094-4b4b-a101-79b31168f722" + "WESTUS2:20170301T215649Z:47603e7a-cefe-4a18-89f6-8bb63295868c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761/partners/IntegrationAccountPartner5862?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1319/partners/IntegrationAccountPartner5584?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxOS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTU4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner5862\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner5862\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner5584\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner5584\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "9452f819-0260-47ec-969c-41d1242d55ce" + "d75ea8ae-5d85-4bd0-8d09-ae4723d78b37" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:13.0903558Z\",\r\n \"changedTime\": \"2017-03-01T20:52:13.0910468Z\",\r\n \"metadata\": \"IntegrationAccountPartner5862\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761/partners/IntegrationAccountPartner5862\",\r\n \"name\": \"IntegrationAccountPartner5862\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:49.8289231Z\",\r\n \"changedTime\": \"2017-03-01T21:56:49.8293549Z\",\r\n \"metadata\": \"IntegrationAccountPartner5584\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1319/partners/IntegrationAccountPartner5584\",\r\n \"name\": \"IntegrationAccountPartner5584\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -99,13 +99,13 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:12 GMT" + "Wed, 01 Mar 2017 21:56:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:691d35c9-8b54-4cc1-99bf-1a293d7f2e1a" + "westus:ae080bea-5c2e-41c0-979e-8020a9493e85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,32 +114,32 @@ "1193" ], "x-ms-correlation-request-id": [ - "d98b8e04-0867-41f3-9805-8be7dcf4e71b" + "742af732-c944-46ba-9e36-41400032e1bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205213Z:d98b8e04-0867-41f3-9805-8be7dcf4e71b" + "WESTUS2:20170301T215649Z:742af732-c944-46ba-9e36-41400032e1bc" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761/partners/IntegrationAccountPartner5862?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1319/partners/IntegrationAccountPartner5584?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxOS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTU4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e843c77c-85e7-46d4-96ec-83b96bdde6cf" + "156ae8ae-8a62-44b6-ae76-b27771a7b4e3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:13.0903558Z\",\r\n \"changedTime\": \"2017-03-01T20:52:13.0910468Z\",\r\n \"metadata\": \"IntegrationAccountPartner5862\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761/partners/IntegrationAccountPartner5862\",\r\n \"name\": \"IntegrationAccountPartner5862\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:49.8289231Z\",\r\n \"changedTime\": \"2017-03-01T21:56:49.8293549Z\",\r\n \"metadata\": \"IntegrationAccountPartner5584\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1319/partners/IntegrationAccountPartner5584\",\r\n \"name\": \"IntegrationAccountPartner5584\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:13 GMT" + "Wed, 01 Mar 2017 21:56:49 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:c543d50b-e17d-4090-8c73-5f2705d1f41d" + "westus:037dfb32-4497-4d70-8fc0-2ca997eb9c10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14800" ], "x-ms-correlation-request-id": [ - "2d828e88-b06a-41fd-8a00-6db458dfd54c" + "0544e3bc-2800-4cb4-8d0d-742b8d5c2af9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205213Z:2d828e88-b06a-41fd-8a00-6db458dfd54c" + "WESTUS2:20170301T215649Z:0544e3bc-2800-4cb4-8d0d-742b8d5c2af9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4761?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1319?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTMxOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b578d964-8bf9-4a4a-8244-607b3c631b39" + "c4c22293-c176-4842-a7af-94e5bdafcd6c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,13 +210,13 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:13 GMT" + "Wed, 01 Mar 2017 21:56:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a105a1c2-ab86-4876-99e9-6148c84bced3" + "westus:4da575b5-d5ea-443f-a8ee-de561d3c59a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,10 +225,10 @@ "1192" ], "x-ms-correlation-request-id": [ - "28134808-3a00-41ff-882e-74363bcf92e1" + "8fd0c862-211f-4484-b741-132cd315d23c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205214Z:28134808-3a00-41ff-882e-74363bcf92e1" + "WESTUS2:20170301T215650Z:8fd0c862-211f-4484-b741-132cd315d23c" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountPartner": [ - "IntegrationAccount4761", - "IntegrationAccountPartner5862" + "IntegrationAccount1319", + "IntegrationAccountPartner5584" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json index 88017ffe86e1..c1836e912e3a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5217?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIxNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "db172147-d6b1-4941-b584-666a80b5dace" + "f3fef8a4-d4ce-4f66-ab2f-066fbc829279" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222\",\r\n \"name\": \"IntegrationAccount9222\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5217\",\r\n \"name\": \"IntegrationAccount5217\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:23 GMT" + "Wed, 01 Mar 2017 21:57:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8f10e79c-559f-41f6-a57d-5d24a2cf831e" + "westus:ce6eb7f0-6fd4-48b6-a5d7-63a8d44c8070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "fedac1c6-fbad-4aa6-a3a9-243f8ad845b7" + "7a1ca5b3-b194-496f-adf4-7bfec8aee2f8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205224Z:fedac1c6-fbad-4aa6-a3a9-243f8ad845b7" + "CENTRALUS:20170301T215701Z:7a1ca5b3-b194-496f-adf4-7bfec8aee2f8" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222/partners/IntegrationAccountPartner2327?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyMi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjMyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5217/partners/IntegrationAccountPartner9925?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIxNy9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTkyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner2327\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner2327\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner9925\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner9925\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "400b7683-1c43-47e7-a647-60b6300b2ce9" + "6d75954e-a2d9-43be-bb13-69baebda0490" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:24.2515726Z\",\r\n \"changedTime\": \"2017-03-01T20:52:24.2517783Z\",\r\n \"metadata\": \"IntegrationAccountPartner2327\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222/partners/IntegrationAccountPartner2327\",\r\n \"name\": \"IntegrationAccountPartner2327\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:57:02.1679865Z\",\r\n \"changedTime\": \"2017-03-01T21:57:02.1681744Z\",\r\n \"metadata\": \"IntegrationAccountPartner9925\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5217/partners/IntegrationAccountPartner9925\",\r\n \"name\": \"IntegrationAccountPartner9925\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:24 GMT" + "Wed, 01 Mar 2017 21:57:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:928cdced-c042-40e7-9e26-3a5f086d0bef" + "westus:99d2e6d6-c6f4-4776-ac78-ca818541cdfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "171dfa6b-f658-4cf2-b279-62043ecbe468" + "87b6acd5-1e6b-444c-90e8-2f24344c6466" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205224Z:171dfa6b-f658-4cf2-b279-62043ecbe468" + "CENTRALUS:20170301T215702Z:87b6acd5-1e6b-444c-90e8-2f24344c6466" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222/partners/IntegrationAccountPartner2327?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyMi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjMyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5217/partners/IntegrationAccountPartner9925?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIxNy9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTkyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"updated\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "373" ], "x-ms-client-request-id": [ - "761b62e6-41d4-44e3-b016-3d982c2254ac" + "d33354ec-4d01-4b6f-9cf4-5b2874b1bb85" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:24.2515726Z\",\r\n \"changedTime\": \"2017-03-01T20:52:24.4158216Z\",\r\n \"metadata\": \"updated\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222/partners/IntegrationAccountPartner2327\",\r\n \"name\": \"IntegrationAccountPartner2327\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:57:02.1679865Z\",\r\n \"changedTime\": \"2017-03-01T21:57:02.3561075Z\",\r\n \"metadata\": \"updated\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5217/partners/IntegrationAccountPartner9925\",\r\n \"name\": \"IntegrationAccountPartner9925\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:24 GMT" + "Wed, 01 Mar 2017 21:57:01 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:7df3c60c-1c72-4103-8f9c-4173b577f8de" + "westus:66311ab5-f151-44c2-96e5-ee9d40dd17fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "607b41ac-0f4b-4603-af5b-04040df50053" + "6e01555e-54ed-4656-8923-19395c02521f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205224Z:607b41ac-0f4b-4603-af5b-04040df50053" + "CENTRALUS:20170301T215702Z:6e01555e-54ed-4656-8923-19395c02521f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9222?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTIyMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5217?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIxNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae51a643-444e-4f73-9ea6-d4dc9fd8701a" + "017ec4b7-40f3-462a-bad6-31fc8b51f3fc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:24 GMT" + "Wed, 01 Mar 2017 21:57:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:33baec1b-8144-4c32-b748-01a5532a4f64" + "westus:da40a343-f931-43c7-a668-8081d427e3d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1195" ], "x-ms-correlation-request-id": [ - "e83d2e92-73df-49e8-b6ae-e71d5387daf2" + "409e5b91-4b18-4085-8a43-42755ce3ee4c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205225Z:e83d2e92-73df-49e8-b6ae-e71d5387daf2" + "CENTRALUS:20170301T215703Z:409e5b91-4b18-4085-8a43-42755ce3ee4c" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountPartner": [ - "IntegrationAccount9222", - "IntegrationAccountPartner2327" + "IntegrationAccount5217", + "IntegrationAccountPartner9925" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json index b552bbf655ac..f4e393fd17d3 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTcwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6295?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjI5NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "18433953-ec7f-45e5-8bb4-0cbbaff1a066" + "0a1dba91-8aa7-43a7-8955-eb1ddd6f0aa1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709\",\r\n \"name\": \"IntegrationAccount9709\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6295\",\r\n \"name\": \"IntegrationAccount6295\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:27 GMT" + "Wed, 01 Mar 2017 21:57:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3c3344e2-e801-46aa-a082-d0c54a512a11" + "westus:6ba14f04-dac1-4570-9f54-8b40f8a8f901" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1193" ], "x-ms-correlation-request-id": [ - "e21b8785-c140-440b-affc-ccc863729646" + "828c4f05-1aa2-412f-997c-2e63d898a871" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205227Z:e21b8785-c140-440b-affc-ccc863729646" + "CENTRALUS:20170301T215707Z:828c4f05-1aa2-412f-997c-2e63d898a871" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709/partners/IntegrationAccountPartner2606?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTcwOS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjYwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6295/partners/IntegrationAccountPartner4603?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjI5NS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNDYwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner2606\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner2606\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner4603\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner4603\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "398" ], "x-ms-client-request-id": [ - "6c259b74-ba7b-4b8b-ba35-549c027f2641" + "438b3442-6970-4f49-a9af-e11cf1bc9fd4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:27.9871379Z\",\r\n \"changedTime\": \"2017-03-01T20:52:27.987329Z\",\r\n \"metadata\": \"IntegrationAccountPartner2606\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709/partners/IntegrationAccountPartner2606\",\r\n \"name\": \"IntegrationAccountPartner2606\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:57:07.6025483Z\",\r\n \"changedTime\": \"2017-03-01T21:57:07.6027591Z\",\r\n \"metadata\": \"IntegrationAccountPartner4603\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6295/partners/IntegrationAccountPartner4603\",\r\n \"name\": \"IntegrationAccountPartner4603\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "525" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:27 GMT" + "Wed, 01 Mar 2017 21:57:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a34ffa8c-b8f7-47fd-897c-4507d8c6a48b" + "westus:e7b464b5-0de5-4560-8e30-4d0fa0d054c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1192" ], "x-ms-correlation-request-id": [ - "bdf0a19d-6752-4a9f-8e71-a1dad9dca922" + "f849b071-3a1a-44de-ad56-631d30cb0add" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205227Z:bdf0a19d-6752-4a9f-8e71-a1dad9dca922" + "CENTRALUS:20170301T215707Z:f849b071-3a1a-44de-ad56-631d30cb0add" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTcwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6295?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjI5NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bd5052c-9f9a-4c67-9375-7f21cb29b0e2" + "ee1661ef-7b5a-48a7-9649-a5cde90748ea" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:28 GMT" + "Wed, 01 Mar 2017 21:57:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b61ea3dc-1f19-46e7-8db3-7219fc921167" + "westus:8112eaba-a630-434a-a849-e890a23257bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1191" ], "x-ms-correlation-request-id": [ - "9f57e885-1bc0-4d49-9208-f1bc4f85c0b9" + "ade1759b-fa4b-4e54-97d3-14dee98079ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205228Z:9f57e885-1bc0-4d49-9208-f1bc4f85c0b9" + "CENTRALUS:20170301T215708Z:ade1759b-fa4b-4e54-97d3-14dee98079ca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9709/partners/IntegrationAccountPartner2606?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTcwOS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjYwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6295/partners/IntegrationAccountPartner4603?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjI5NS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNDYwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "991c6a69-7ae7-4dad-b4c8-6d57afe34a0c" + "012878d4-bf6e-4b50-8210-58d2a95a203f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount9709' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount6295' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:28 GMT" + "Wed, 01 Mar 2017 21:57:10 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "8b64dfd7-0c11-4ed0-8b4a-7a3a51ddb026" + "4120592b-f721-4e6b-b5a3-1447f6aaa9e4" ], "x-ms-correlation-request-id": [ - "8b64dfd7-0c11-4ed0-8b4a-7a3a51ddb026" + "4120592b-f721-4e6b-b5a3-1447f6aaa9e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205228Z:8b64dfd7-0c11-4ed0-8b4a-7a3a51ddb026" + "CENTRALUS:20170301T215710Z:4120592b-f721-4e6b-b5a3-1447f6aaa9e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountPartnerOnAccountDeletion": [ - "IntegrationAccount9709", - "IntegrationAccountPartner2606" + "IntegrationAccount6295", + "IntegrationAccountPartner4603" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json index b9dad96b3a29..ba1081395c9b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTMwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5509?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "eeef63c7-dbdf-4684-9658-85fbe70a01c2" + "20f71077-db55-450d-bb51-5b64e1cfc09a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303\",\r\n \"name\": \"IntegrationAccount9303\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5509\",\r\n \"name\": \"IntegrationAccount5509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:15 GMT" + "Wed, 01 Mar 2017 21:56:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d9ab0a0f-615b-4cc9-bd8c-868917e973d1" + "westus:859c0b01-c399-4cb3-bde2-eae3471086b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1193" ], "x-ms-correlation-request-id": [ - "dc7ece4e-22fa-4ac6-890c-1f5760d05e7c" + "57b9612e-c1f8-4280-b9a1-6963e0344501" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205216Z:dc7ece4e-22fa-4ac6-890c-1f5760d05e7c" + "WESTUS2:20170301T215651Z:57b9612e-c1f8-4280-b9a1-6963e0344501" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303/partners/IntegrationAccountPartner7106?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTMwMy9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzEwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5509/partners/IntegrationAccountPartner4610?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUwOS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNDYxMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7106\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7106\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner4610\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner4610\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "398" ], "x-ms-client-request-id": [ - "15236129-b6f9-45d7-a839-77f6f2257a8b" + "fc38788f-28c5-44ba-aedc-67a3cf765f86" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:16.5315897Z\",\r\n \"changedTime\": \"2017-03-01T20:52:16.5321851Z\",\r\n \"metadata\": \"IntegrationAccountPartner7106\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303/partners/IntegrationAccountPartner7106\",\r\n \"name\": \"IntegrationAccountPartner7106\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:52.1748578Z\",\r\n \"changedTime\": \"2017-03-01T21:56:52.1758302Z\",\r\n \"metadata\": \"IntegrationAccountPartner4610\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5509/partners/IntegrationAccountPartner4610\",\r\n \"name\": \"IntegrationAccountPartner4610\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:15 GMT" + "Wed, 01 Mar 2017 21:56:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5f286fdf-9de9-4c71-80fb-93977c40f6d0" + "westus:9738509e-8fcf-4f6c-95e3-5fd3151b5838" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1192" ], "x-ms-correlation-request-id": [ - "2a81b7d6-98b0-44fd-879d-79757884e28e" + "eb67ed29-06b0-419f-8f79-846086ac1458" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205216Z:2a81b7d6-98b0-44fd-879d-79757884e28e" + "WESTUS2:20170301T215652Z:eb67ed29-06b0-419f-8f79-846086ac1458" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303/partners?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTMwMy9wYXJ0bmVycz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5509/partners?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUwOS9wYXJ0bmVycz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7de1a484-6f45-413a-8331-bdf1df730ee0" + "ecae91fb-07d3-4251-bc4a-16341374a72b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:52:16.5315897Z\",\r\n \"changedTime\": \"2017-03-01T20:52:16.5321851Z\",\r\n \"metadata\": \"IntegrationAccountPartner7106\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303/partners/IntegrationAccountPartner7106\",\r\n \"name\": \"IntegrationAccountPartner7106\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:52.1748578Z\",\r\n \"changedTime\": \"2017-03-01T21:56:52.1758302Z\",\r\n \"metadata\": \"IntegrationAccountPartner4610\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5509/partners/IntegrationAccountPartner4610\",\r\n \"name\": \"IntegrationAccountPartner4610\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:16 GMT" + "Wed, 01 Mar 2017 21:56:52 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:101dcb4a-33e7-46c8-aa10-bd125ec28475" + "westus:0f91f955-e832-49c9-90cb-1cee53db431b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14805" ], "x-ms-correlation-request-id": [ - "85875b05-2c8e-4a8f-a7aa-c28b3c5c0dff" + "d632b00a-72ed-4362-b13e-0af824c560c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205216Z:85875b05-2c8e-4a8f-a7aa-c28b3c5c0dff" + "WESTUS2:20170301T215652Z:d632b00a-72ed-4362-b13e-0af824c560c8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9303?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTMwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5509?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUwOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26a58877-a191-4e8b-860b-3e975c4a5d70" + "87e0f425-04d6-41a4-8059-33cdeaf4029c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:16 GMT" + "Wed, 01 Mar 2017 21:56:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:57a1a8e9-aa98-4ddb-a918-c53635ab98a5" + "westus:06120590-ecef-47f9-bd08-3ec607e0cdcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1191" ], "x-ms-correlation-request-id": [ - "4b2133d7-009f-4c56-b285-ec6d419eea85" + "6b87b6e2-39fd-4b40-9a4c-398c67ab08c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205217Z:4b2133d7-009f-4c56-b285-ec6d419eea85" + "WESTUS2:20170301T215652Z:6b87b6e2-39fd-4b40-9a4c-398c67ab08c4" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountPartners": [ - "IntegrationAccount9303", - "IntegrationAccountPartner7106" + "IntegrationAccount5509", + "IntegrationAccountPartner4610" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json index b479dc94a295..5b1f325a3183 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9123?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8693?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY5Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "119208f1-8b9f-48bf-a852-e7e6b4d0f391" + "2945176b-d3b5-4a09-9ce3-7c3a220a0940" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9123\",\r\n \"name\": \"IntegrationAccount9123\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8693\",\r\n \"name\": \"IntegrationAccount8693\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,44 +38,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:15 GMT" + "Wed, 01 Mar 2017 21:57:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e19d1da8-4edb-40c1-a948-4c93a7f453af" + "westus:e8d04f55-8399-46ab-b26d-956d0c7512ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "8126b594-ed9c-4e14-b1ec-c22501eb44b7" + "bf1c1ef1-34c0-40e9-b3e7-28aa7a53212f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205016Z:8126b594-ed9c-4e14-b1ec-c22501eb44b7" + "WESTUS2:20170301T215750Z:bf1c1ef1-34c0-40e9-b3e7-28aa7a53212f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9123?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTEyMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8693?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY5Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9cb2c9d-5063-4384-9550-a8e7b30149ca" + "3e1d0ddc-ede4-48e0-8258-3546b1dcf505" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -90,25 +90,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:16 GMT" + "Wed, 01 Mar 2017 21:57:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:976048c9-76e0-4fa2-b041-d20a38534dbe" + "westus:53fa3077-123e-4dd6-abd0-5637ad9e9906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "de913303-8365-4b69-b70a-51997fee863b" + "000435fe-79b4-4aef-ad53-31eb4a2eeaaf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205017Z:de913303-8365-4b69-b70a-51997fee863b" + "WESTUS2:20170301T215751Z:000435fe-79b4-4aef-ad53-31eb4a2eeaaf" ] }, "StatusCode": 200 @@ -116,7 +116,7 @@ ], "Names": { "CreateAndDeleteIntegrationAccount": [ - "IntegrationAccount9123" + "IntegrationAccount8693" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json index 0379b55fd214..95319dd6ec0a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7263?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzI2Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "1e530280-7f04-4f69-acad-1c039962c559" + "932b190c-205f-4897-bf1a-d93e8ff3a9c6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945\",\r\n \"name\": \"IntegrationAccount6945\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7263\",\r\n \"name\": \"IntegrationAccount7263\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:35 GMT" + "Wed, 01 Mar 2017 21:58:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:885903c6-a261-4362-b396-8e4278cea65f" + "westus:1e154e9a-e50d-4826-8f33-ab6d28daedf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,32 +53,32 @@ "1199" ], "x-ms-correlation-request-id": [ - "46ce8d1b-e57d-48ef-9081-b4becb2f9403" + "23c94965-b795-47c0-a8d3-78a34bec961d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205036Z:46ce8d1b-e57d-48ef-9081-b4becb2f9403" + "WESTUS2:20170301T215805Z:23c94965-b795-47c0-a8d3-78a34bec961d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7263?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzI2Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ba89c39-7be9-4731-9b28-c83495059a01" + "b5a75f8b-1118-400b-b2d6-45facdb241b1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945\",\r\n \"name\": \"IntegrationAccount6945\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7263\",\r\n \"name\": \"IntegrationAccount7263\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:35 GMT" + "Wed, 01 Mar 2017 21:58:04 GMT" ], "Pragma": [ "no-cache" @@ -103,38 +103,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1c6da8bf-5afe-4d16-a37c-59fe93d0cd2d" + "westus:e3489441-f609-4741-bfb9-4786f754714a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14792" ], "x-ms-correlation-request-id": [ - "e8ddddf3-8e64-47da-9dc0-e5533aa7b0d0" + "44cec1a9-d17d-45c9-8241-98c830f2ae0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205036Z:e8ddddf3-8e64-47da-9dc0-e5533aa7b0d0" + "WESTUS2:20170301T215805Z:44cec1a9-d17d-45c9-8241-98c830f2ae0d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6945?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7263?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzI2Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a3f2bfb-a556-45b1-8bb0-0df8f9fa1456" + "7e937470-e961-4d9d-9d45-aa1db2c1adff" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -149,13 +149,13 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:36 GMT" + "Wed, 01 Mar 2017 21:58:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:1129fae1-13a4-407a-a1fc-c57ef768ebc3" + "westus:89c15695-f905-4b3a-97cc-8f1fe5f09cb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -164,10 +164,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "2336c96d-d32e-4143-9670-cca46939d48f" + "2806ef13-5646-4a5e-be07-65ccd24ba12b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205037Z:2336c96d-d32e-4143-9670-cca46939d48f" + "WESTUS2:20170301T215805Z:2806ef13-5646-4a5e-be07-65ccd24ba12b" ] }, "StatusCode": 200 @@ -175,7 +175,7 @@ ], "Names": { "CreateAndGetIntegrationAccountByName": [ - "IntegrationAccount6945" + "IntegrationAccount7263" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json index 61c87988e0a1..8ebefda236a0 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkyOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8780?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "71dcafd9-4ec1-4ed2-8039-c936dfda9fd8" + "c58e7d64-6da4-4f51-bdf1-8f3be6742085" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929\",\r\n \"name\": \"IntegrationAccount2929\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8780\",\r\n \"name\": \"IntegrationAccount8780\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:31 GMT" + "Wed, 01 Mar 2017 21:58:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:afbc469d-0d85-47d8-ab15-6be2b2bff00d" + "westus:020f98e4-5bc3-4ad6-8a28-b1b184d7ae17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "08f2a652-b527-4595-b10e-6b3c7a8cd6a9" + "c4d37ec1-881b-477a-aa34-e9f29d979b98" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205031Z:08f2a652-b527-4595-b10e-6b3c7a8cd6a9" + "WESTUS2:20170301T215801Z:c4d37ec1-881b-477a-aa34-e9f29d979b98" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkyOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8780?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -74,17 +74,17 @@ "91" ], "x-ms-client-request-id": [ - "12ba5efb-aa35-4705-a9b4-5600e6ab8e28" + "487046b7-0e88-48a8-b0a3-e0b38a98ff66" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929\",\r\n \"name\": \"IntegrationAccount2929\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8780\",\r\n \"name\": \"IntegrationAccount8780\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:31 GMT" + "Wed, 01 Mar 2017 21:58:01 GMT" ], "Pragma": [ "no-cache" @@ -109,38 +109,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:772267e9-a451-43f9-bc93-8f4c44b4611c" + "westus:b4227b86-03d5-406e-bb2b-7c7d9644e698" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "162d7171-4ec5-4e49-af77-c89fb1c9fd38" + "a13c0c57-aa4b-41e2-bbb3-324f63193d99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205032Z:162d7171-4ec5-4e49-af77-c89fb1c9fd38" + "WESTUS2:20170301T215801Z:a13c0c57-aa4b-41e2-bbb3-324f63193d99" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2929?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkyOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8780?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODc4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "667c000f-6788-4de3-b54f-92f088203396" + "7e56b9f5-cf46-4dbc-ada8-8c74b3a27539" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -155,25 +155,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:32 GMT" + "Wed, 01 Mar 2017 21:58:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b554e294-791f-4310-a03d-efd2fa7283fa" + "westus:d3c80c09-d825-44ff-aebe-ef8b89e86911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "3d4c9bf7-1b61-4a58-9406-9ee334b8db09" + "6446e1d5-8341-4b39-813e-b52120342c13" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205032Z:3d4c9bf7-1b61-4a58-9406-9ee334b8db09" + "WESTUS2:20170301T215802Z:6446e1d5-8341-4b39-813e-b52120342c13" ] }, "StatusCode": 200 @@ -181,7 +181,7 @@ ], "Names": { "CreateAndUpdateIntegrationAccount": [ - "IntegrationAccount2929" + "IntegrationAccount8780" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json index 5f6402b48714..ca7a95797253 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3483?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ4Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6238?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjIzOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "ac8b036a-e551-492d-9376-05d7cd3f879c" + "042e3322-c225-46a8-8096-70ed16b610cc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3483\",\r\n \"name\": \"IntegrationAccount3483\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6238\",\r\n \"name\": \"IntegrationAccount6238\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,13 +38,13 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:27 GMT" + "Wed, 01 Mar 2017 21:57:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5be57dad-0d1f-447c-a291-8f850d325912" + "westus:d674a336-01a3-44f1-828a-6f90b6fa3bc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,10 +53,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "8760c941-75a2-4c26-8542-da018e0b04d7" + "bfb08677-3308-44f7-b914-ad164b523912" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205027Z:8760c941-75a2-4c26-8542-da018e0b04d7" + "WESTUS2:20170301T215758Z:bfb08677-3308-44f7-b914-ad164b523912" ] }, "StatusCode": 201 @@ -68,17 +68,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d3e945f-b05b-4634-9cf7-88a5a514e33e" + "1d203b64-4c99-4ff8-a054-c5dc5bf4d5f0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3483\",\r\n \"name\": \"IntegrationAccount3483\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6900\",\r\n \"name\": \"IntegrationAccount6900\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6238\",\r\n \"name\": \"IntegrationAccount6238\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6900\",\r\n \"name\": \"IntegrationAccount6900\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:27 GMT" + "Wed, 01 Mar 2017 21:57:58 GMT" ], "Pragma": [ "no-cache" @@ -103,38 +103,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:942e87fc-6f79-443f-9e84-b40d81c06bb2" + "westus:4b9465ab-76c4-49b2-9ab9-6e8760b09adf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14556" ], "x-ms-correlation-request-id": [ - "2967083d-75db-4a51-ae59-6b9624c1408c" + "a6d61be9-43fa-4952-8639-cfa023756aea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205027Z:2967083d-75db-4a51-ae59-6b9624c1408c" + "WESTUS2:20170301T215758Z:a6d61be9-43fa-4952-8639-cfa023756aea" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3483?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ4Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6238?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjIzOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90bca94a-9d3a-4c24-9e37-4c28dadcb879" + "fcd4b438-445d-4b5e-8dd2-2f14269c5df1" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -149,13 +149,13 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:28 GMT" + "Wed, 01 Mar 2017 21:57:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b35e91a3-af72-4b28-b405-6cbfa5660c87" + "westus:bf08cd4c-c69f-4ca5-97e5-857a74653fa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -164,10 +164,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "975da95d-e69e-4ac7-9c63-6430ccbd0e6c" + "74fc6428-7e09-4446-9931-f23282301c2e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205028Z:975da95d-e69e-4ac7-9c63-6430ccbd0e6c" + "WESTUS2:20170301T215759Z:74fc6428-7e09-4446-9931-f23282301c2e" ] }, "StatusCode": 200 @@ -175,7 +175,7 @@ ], "Names": { "ListIntegrationAccountByResourceGroup": [ - "IntegrationAccount3483" + "IntegrationAccount6238" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json index cfcb54e6488e..9889109262e7 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1201?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTIwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6666?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "2b70e734-fb91-4876-a770-342fec6b00d0" + "1cccec9c-11c9-4d03-be86-35dcca2ff4e6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1201\",\r\n \"name\": \"IntegrationAccount1201\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6666\",\r\n \"name\": \"IntegrationAccount6666\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,25 +38,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:20 GMT" + "Wed, 01 Mar 2017 21:57:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3165c116-98ed-4194-b7c4-33be2bb527b3" + "westus:ba453734-442c-43cf-a5d8-94535928d1ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "239bac90-4892-4d2d-89f5-37af3cc904d0" + "dca9c693-de01-4fad-86c9-a81c594c2b2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205021Z:239bac90-4892-4d2d-89f5-37af3cc904d0" + "WESTUS2:20170301T215752Z:dca9c693-de01-4fad-86c9-a81c594c2b2d" ] }, "StatusCode": 201 @@ -68,17 +68,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c25c4159-120e-486b-b7e7-4a103ab42db6" + "239c839f-b9cd-4972-b3a5-35f0b51ab5ed" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIAFabrikam\",\r\n \"name\": \"daviburgIAFabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIANC\",\r\n \"name\": \"daviburgIANC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/DONOTDELETE-TrackingResourceGroupNorthCentralUS/providers/Microsoft.Logic/integrationAccounts/DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"name\": \"DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/testbatchtracking\",\r\n \"name\": \"testbatchtracking\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIANCUS\",\r\n \"name\": \"JavIANCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/sapdemo2\",\r\n \"name\": \"sapdemo2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/klamRG/providers/Microsoft.Logic/integrationAccounts/klamIntegrationAccount\",\r\n \"name\": \"klamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PaginationTestRG/providers/Microsoft.Logic/integrationAccounts/PaginationIA\",\r\n \"name\": \"PaginationIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIA2\",\r\n \"name\": \"sumikumIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIAt1\",\r\n \"name\": \"sumikumIAt1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccountDemo\",\r\n \"name\": \"ContosoIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccountDemo\",\r\n \"name\": \"FabrikamIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccountDemo\",\r\n \"name\": \"IntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsCentralUSAccount\",\r\n \"name\": \"JonsCentralUSAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsIntAcc\",\r\n \"name\": \"JonsIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsDemos\",\r\n \"name\": \"JonsDemos\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsigniteintacc\",\r\n \"name\": \"jonsigniteintacc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccCentralUS\",\r\n \"name\": \"JonsIntAccCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TrackingAPI\",\r\n \"name\": \"TrackingAPI\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padintegrationaccountdiagnostics/providers/Microsoft.Logic/integrationAccounts/testdiagnostics\",\r\n \"name\": \"testdiagnostics\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuducentralusrg/providers/Microsoft.Logic/integrationAccounts/rarayuducentralusia\",\r\n \"name\": \"rarayuducentralusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinay-central-ua/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/VETERaccount\",\r\n \"name\": \"VETERaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/HL7\",\r\n \"name\": \"HL7\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ramacfar-test/providers/Microsoft.Logic/integrationAccounts/ramacfar_south_central\",\r\n \"name\": \"ramacfar_south_central\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia1\",\r\n \"name\": \"rarayuduscusperfia1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia2\",\r\n \"name\": \"rarayuduscusperfia2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2rg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaSCUS\",\r\n \"name\": \"rarayuduiaSCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JAV-RG-NorthEurope2/providers/Microsoft.Logic/integrationAccounts/Jav-IA-NorthEurope\",\r\n \"name\": \"Jav-IA-NorthEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestnortheuroperg/providers/Microsoft.Logic/integrationAccounts/rarayudutestnortheuropeia\",\r\n \"name\": \"rarayudutestnortheuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuestIA\",\r\n \"name\": \"TrackingTipGuestIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipHostIA\",\r\n \"name\": \"TrackingTipHostIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinayvsrg/providers/Microsoft.Logic/integrationAccounts/NorthEuropeTesting\",\r\n \"name\": \"NorthEuropeTesting\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRG-WestEurope2/providers/Microsoft.Logic/integrationAccounts/JavIA-WestEurope\",\r\n \"name\": \"JavIA-WestEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TestFreeAccount\",\r\n \"name\": \"TestFreeAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/X12WestEurope/providers/Microsoft.Logic/integrationAccounts/westeuropeia\",\r\n \"name\": \"westeuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/apsethRG/providers/Microsoft.Logic/integrationAccounts/APATEST\",\r\n \"name\": \"APATEST\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount-1.618\",\r\n \"name\": \"IntegrationAccount-1.618\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1890\",\r\n \"name\": \"IntegrationAccount1890\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2342\",\r\n \"name\": \"IntegrationAccount2342\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2800\",\r\n \"name\": \"IntegrationAccount2800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6287\",\r\n \"name\": \"IntegrationAccount6287\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6364\",\r\n \"name\": \"IntegrationAccount6364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9648\",\r\n \"name\": \"IntegrationAccount9648\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9789\",\r\n \"name\": \"IntegrationAccount9789\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Default-Web-WestUS/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/EIPIntegration\",\r\n \"name\": \"EIPIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1201\",\r\n \"name\": \"IntegrationAccount1201\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6900\",\r\n \"name\": \"IntegrationAccount6900\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIABTS\",\r\n \"name\": \"JavIABTS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS4/providers/Microsoft.Logic/integrationAccounts/Jav-BrazilUSIA\",\r\n \"name\": \"Jav-BrazilUSIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsB2Baccount\",\r\n \"name\": \"JonsB2Baccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/AS2IntegrationAccount\",\r\n \"name\": \"AS2IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/myRGname/providers/Microsoft.Logic/integrationAccounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PadmaCSADemo/providers/Microsoft.Logic/integrationAccounts/padintegrationdemo\",\r\n \"name\": \"padintegrationdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PrimaryRegionRG/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestas2westusia\",\r\n \"name\": \"rarayudutestas2westusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestdiagnosticsia\",\r\n \"name\": \"rarayudutestdiagnosticsia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestintegration\",\r\n \"name\": \"rarayudutestintegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testvetr/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonnewia\",\r\n \"name\": \"jonnewia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudueastusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaeastus\",\r\n \"name\": \"rarayuduiaeastus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/SecondaryRegionRG/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/yisha-brazilus/providers/Microsoft.Logic/integrationAccounts/yisha-guest\",\r\n \"name\": \"yisha-guest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayudutestsignencryptis\",\r\n \"name\": \"rarayudutestsignencryptis\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Axrunz/providers/Microsoft.Logic/integrationAccounts/x12TestIntegrationAccount\",\r\n \"name\": \"x12TestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/BizTalkConnectorDemoRG/providers/Microsoft.Logic/integrationAccounts/BtsLogicAppTestIntAcc\",\r\n \"name\": \"BtsLogicAppTestIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/brazilsouth1/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/ContosoIntegration\",\r\n \"name\": \"ContosoIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS\",\r\n \"name\": \"daviburgIA_BS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS_Fabrikam\",\r\n \"name\": \"daviburgIA_BS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1267\",\r\n \"name\": \"onesdk1267\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1325\",\r\n \"name\": \"onesdk1325\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1407\",\r\n \"name\": \"onesdk1407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk167\",\r\n \"name\": \"onesdk167\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk2649\",\r\n \"name\": \"onesdk2649\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5451\",\r\n \"name\": \"onesdk5451\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5768\",\r\n \"name\": \"onesdk5768\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5806\",\r\n \"name\": \"onesdk5806\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6122\",\r\n \"name\": \"onesdk6122\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6160\",\r\n \"name\": \"onesdk6160\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6275\",\r\n \"name\": \"onesdk6275\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6407\",\r\n \"name\": \"onesdk6407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6924\",\r\n \"name\": \"onesdk6924\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7137\",\r\n \"name\": \"onesdk7137\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7767\",\r\n \"name\": \"onesdk7767\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk8952\",\r\n \"name\": \"onesdk8952\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9015\",\r\n \"name\": \"onesdk9015\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9526\",\r\n \"name\": \"onesdk9526\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9731\",\r\n \"name\": \"onesdk9731\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/Test\",\r\n \"name\": \"Test\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/CanaryIA\",\r\n \"name\": \"CanaryIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/msftconnectaccount\",\r\n \"name\": \"msftconnectaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/B2BEndToEndTracking/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuest\",\r\n \"name\": \"TrackingTipGuest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Contoso\",\r\n \"name\": \"daviburgWCUS_Contoso\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Fabrikam\",\r\n \"name\": \"daviburgWCUS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiatestwestcentralus\",\r\n \"name\": \"rarayuduiatestwestcentralus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTipRG/providers/Microsoft.Logic/integrationAccounts/TrackingTip\",\r\n \"name\": \"TrackingTip\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/westcentralus-rg/providers/Microsoft.Logic/integrationAccounts/westcentralus-ia\",\r\n \"name\": \"westcentralus-ia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01&%24skiptoken=5VHbbqMwFPwXpO7TptgEqqZStQobO0suZGN8jiPeuDgNxVwK5NJW%2ffel37HSeZoZzRzNfFq1vg2boi576%2bnTUiySEFlP1mkY2v7JtqukTl50pevhPvk4d%2fo%2bayq7P6d91hXtUDR1bx%2bnbuo4yXTiOMSZuMeUTlLikgmdTp00nzmP2aNrt11zKXLd9fa2yLqmb47D%2faZ5KTK7qAf90iXfXvMsa8710P9K2mJyGcUj9uwQ%2bjAh49Efd47bl2NsU%2br6Wb%2bvzvHhRGDJ3%2fOlIYmanSMHveC1KbYRcwNkVyXDKDFsCIprkVbo5nx1yclgdBQ8BK%2fstJXBqFu9SemLpDQeoAg10Lf9wewEtguJuMqJx%2faHU6hL6oEaRDjyCRN%2fBV9VyMADvr2h4Vs0KwmIO8lDDOGkBMaAZbwWBq47jDEh3hJe%2bRp4rPYHoUTZ%2fgbpk8iILuYYYekhUKBjJMY8FKPfGhdzujfsKo2vcHwmqMndNLd%2bWr6Yx8Em2oH889%2bMtZPBCao23HL%2bFh2MQEY9qVpfg8dVGYYIZipL4WtGH%2bTIJ5TRkW8EmzGoYhDS7OGDK4AbZtyHlHlrwHgdsRumbPY9WIBqWCKGuIOZQPAYLriSNPY3ESmO%2b7H77%2fq%2fvv4B\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIAFabrikam\",\r\n \"name\": \"daviburgIAFabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIANC\",\r\n \"name\": \"daviburgIANC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/DONOTDELETE-TrackingResourceGroupNorthCentralUS/providers/Microsoft.Logic/integrationAccounts/DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"name\": \"DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/testbatchtracking\",\r\n \"name\": \"testbatchtracking\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIANCUS\",\r\n \"name\": \"JavIANCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/sapdemo2\",\r\n \"name\": \"sapdemo2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/klamRG/providers/Microsoft.Logic/integrationAccounts/klamIntegrationAccount\",\r\n \"name\": \"klamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PaginationTestRG/providers/Microsoft.Logic/integrationAccounts/PaginationIA\",\r\n \"name\": \"PaginationIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIA2\",\r\n \"name\": \"sumikumIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIAt1\",\r\n \"name\": \"sumikumIAt1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccountDemo\",\r\n \"name\": \"ContosoIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccountDemo\",\r\n \"name\": \"FabrikamIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccountDemo\",\r\n \"name\": \"IntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsCentralUSAccount\",\r\n \"name\": \"JonsCentralUSAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsIntAcc\",\r\n \"name\": \"JonsIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsDemos\",\r\n \"name\": \"JonsDemos\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsigniteintacc\",\r\n \"name\": \"jonsigniteintacc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccCentralUS\",\r\n \"name\": \"JonsIntAccCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TrackingAPI\",\r\n \"name\": \"TrackingAPI\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padintegrationaccountdiagnostics/providers/Microsoft.Logic/integrationAccounts/testdiagnostics\",\r\n \"name\": \"testdiagnostics\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuducentralusrg/providers/Microsoft.Logic/integrationAccounts/rarayuducentralusia\",\r\n \"name\": \"rarayuducentralusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinay-central-ua/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/VETERaccount\",\r\n \"name\": \"VETERaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/HL7\",\r\n \"name\": \"HL7\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ramacfar-test/providers/Microsoft.Logic/integrationAccounts/ramacfar_south_central\",\r\n \"name\": \"ramacfar_south_central\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia1\",\r\n \"name\": \"rarayuduscusperfia1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduscusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduscusperfia2\",\r\n \"name\": \"rarayuduscusperfia2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2rg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaSCUS\",\r\n \"name\": \"rarayuduiaSCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JAV-RG-NorthEurope2/providers/Microsoft.Logic/integrationAccounts/Jav-IA-NorthEurope\",\r\n \"name\": \"Jav-IA-NorthEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestnortheuroperg/providers/Microsoft.Logic/integrationAccounts/rarayudutestnortheuropeia\",\r\n \"name\": \"rarayudutestnortheuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuestIA\",\r\n \"name\": \"TrackingTipGuestIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipHostIA\",\r\n \"name\": \"TrackingTipHostIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinayvsrg/providers/Microsoft.Logic/integrationAccounts/NorthEuropeTesting\",\r\n \"name\": \"NorthEuropeTesting\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRG-WestEurope2/providers/Microsoft.Logic/integrationAccounts/JavIA-WestEurope\",\r\n \"name\": \"JavIA-WestEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TestFreeAccount\",\r\n \"name\": \"TestFreeAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/X12WestEurope/providers/Microsoft.Logic/integrationAccounts/westeuropeia\",\r\n \"name\": \"westeuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/apsethRG/providers/Microsoft.Logic/integrationAccounts/APATEST\",\r\n \"name\": \"APATEST\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount-1.618\",\r\n \"name\": \"IntegrationAccount-1.618\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1890\",\r\n \"name\": \"IntegrationAccount1890\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2342\",\r\n \"name\": \"IntegrationAccount2342\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2800\",\r\n \"name\": \"IntegrationAccount2800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6287\",\r\n \"name\": \"IntegrationAccount6287\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6364\",\r\n \"name\": \"IntegrationAccount6364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9648\",\r\n \"name\": \"IntegrationAccount9648\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9789\",\r\n \"name\": \"IntegrationAccount9789\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Default-Web-WestUS/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/EIPIntegration\",\r\n \"name\": \"EIPIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6666\",\r\n \"name\": \"IntegrationAccount6666\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6900\",\r\n \"name\": \"IntegrationAccount6900\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount846\",\r\n \"name\": \"IntegrationAccount846\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9020\",\r\n \"name\": \"IntegrationAccount9020\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIABTS\",\r\n \"name\": \"JavIABTS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS4/providers/Microsoft.Logic/integrationAccounts/Jav-BrazilUSIA\",\r\n \"name\": \"Jav-BrazilUSIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsB2Baccount\",\r\n \"name\": \"JonsB2Baccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/AS2IntegrationAccount\",\r\n \"name\": \"AS2IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/myRGname/providers/Microsoft.Logic/integrationAccounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PadmaCSADemo/providers/Microsoft.Logic/integrationAccounts/padintegrationdemo\",\r\n \"name\": \"padintegrationdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PrimaryRegionRG/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestas2westusia\",\r\n \"name\": \"rarayudutestas2westusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestdiagnosticsia\",\r\n \"name\": \"rarayudutestdiagnosticsia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestintegration\",\r\n \"name\": \"rarayudutestintegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testvetr/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonnewia\",\r\n \"name\": \"jonnewia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudueastusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaeastus\",\r\n \"name\": \"rarayuduiaeastus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/SecondaryRegionRG/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/yisha-brazilus/providers/Microsoft.Logic/integrationAccounts/yisha-guest\",\r\n \"name\": \"yisha-guest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayudutestsignencryptis\",\r\n \"name\": \"rarayudutestsignencryptis\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Axrunz/providers/Microsoft.Logic/integrationAccounts/x12TestIntegrationAccount\",\r\n \"name\": \"x12TestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/BizTalkConnectorDemoRG/providers/Microsoft.Logic/integrationAccounts/BtsLogicAppTestIntAcc\",\r\n \"name\": \"BtsLogicAppTestIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/brazilsouth1/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/ContosoIntegration\",\r\n \"name\": \"ContosoIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS\",\r\n \"name\": \"daviburgIA_BS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS_Fabrikam\",\r\n \"name\": \"daviburgIA_BS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1267\",\r\n \"name\": \"onesdk1267\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1325\",\r\n \"name\": \"onesdk1325\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1407\",\r\n \"name\": \"onesdk1407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk167\",\r\n \"name\": \"onesdk167\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk2649\",\r\n \"name\": \"onesdk2649\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5451\",\r\n \"name\": \"onesdk5451\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5768\",\r\n \"name\": \"onesdk5768\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5806\",\r\n \"name\": \"onesdk5806\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6122\",\r\n \"name\": \"onesdk6122\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6160\",\r\n \"name\": \"onesdk6160\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6275\",\r\n \"name\": \"onesdk6275\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6407\",\r\n \"name\": \"onesdk6407\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk6924\",\r\n \"name\": \"onesdk6924\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7137\",\r\n \"name\": \"onesdk7137\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7767\",\r\n \"name\": \"onesdk7767\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk8952\",\r\n \"name\": \"onesdk8952\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9015\",\r\n \"name\": \"onesdk9015\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9526\",\r\n \"name\": \"onesdk9526\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9731\",\r\n \"name\": \"onesdk9731\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/Test\",\r\n \"name\": \"Test\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/CanaryIA\",\r\n \"name\": \"CanaryIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/msftconnectaccount\",\r\n \"name\": \"msftconnectaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/B2BEndToEndTracking/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuest\",\r\n \"name\": \"TrackingTipGuest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Contoso\",\r\n \"name\": \"daviburgWCUS_Contoso\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Fabrikam\",\r\n \"name\": \"daviburgWCUS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiatestwestcentralus\",\r\n \"name\": \"rarayuduiatestwestcentralus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTipRG/providers/Microsoft.Logic/integrationAccounts/TrackingTip\",\r\n \"name\": \"TrackingTip\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/westcentralus-rg/providers/Microsoft.Logic/integrationAccounts/westcentralus-ia\",\r\n \"name\": \"westcentralus-ia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01&%24skiptoken=5VHbbqMwFPwXpO7TptgEqqZStQobO0suZGN8jiPeuDgNxVwK5NJW%2ffel37HSeZoZzRzNfFq1vg2boi576%2bnTUiySEFlP1mkY2v7JtqukTl50pevhPvk4d%2fo%2bayq7P6d91hXtUDR1bx%2bnbuo4yXTiOMSZuMeUTlLikgmdTp00nzmP2aNrt11zKXLd9fa2yLqmb47D%2faZ5KTK7qAf90iXfXvMsa8710P9K2mJyGcUj9uwQ%2bjAh49Efd47bl2NsU%2br6Wb%2bvzvHhRGDJ3%2fOlIYmanSMHveC1KbYRcwNkVyXDKDFsCIprkVbo5nx1yclgdBQ8BK%2fstJXBqFu9SemLpDQeoAg10Lf9wewEtguJuMqJx%2faHU6hL6oEaRDjyCRN%2fBV9VyMADvr2h4Vs0KwmIO8lDDOGkBMaAZbwWBq47jDEh3hJe%2bRp4rPYHoUTZ%2fgbpk8iILuYYYekhUKBjJMY8FKPfGhdzujfsKo2vcHwmqMndNLd%2bWr6Yx8Em2oH889%2bMtZPBCao23HL%2bFh2MQEY9qVpfg8dVGYYIZipL4WtGH%2bTIJ5TRkW8EmzGoYhDS7OGDK4AbZtyHlHlrwHgdsRumbPY9WIBqWCKGuIOZQPAYLriSNPY3ESmO%2b7H77%2fq%2fvv4B\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:22 GMT" + "Wed, 01 Mar 2017 21:57:52 GMT" ], "Pragma": [ "no-cache" @@ -99,29 +99,29 @@ "Accept-Encoding" ], "x-ms-original-request-ids": [ - "northcentralus:f0b490a3-d246-4d61-adf8-9b0c00d4365c", - "centralus:6e8528b3-5d2a-47da-9fbc-c310bb162403", - "southcentralus:b0d9cd7e-92c4-4d07-a4bb-7656ea6e7d70", - "northeurope:131f3694-7c1a-434e-a4bb-94944c305bd1", - "westeurope:dba36f14-fd00-4d3f-b1a8-85b13eba2f56", - "westus:a5ff6125-7e92-49f5-97a2-04f5b8e0e816", - "eastus:c7d119ed-dde4-4e42-a650-167069019eee", - "eastus2:7718660d-2b07-4269-a43c-c7eea79e3350", - "brazilsouth:d5f990ef-ebb1-4ac6-a3b1-e4dcc302524c", - "westus2:ac355b33-b07a-44be-b36c-b568849e6870", - "westcentralus:64e1f449-f1a5-4f24-9300-c70d163be9b8" + "northcentralus:bdcb56f8-e733-47f5-9cfb-3c8b0a266e88", + "centralus:e4c48aa0-a206-4e8d-86b7-4756514f8863", + "southcentralus:1ed94ffe-6104-4806-9df3-4aa3ce983b90", + "northeurope:7b861552-31b0-4d90-962a-617880b22f48", + "westeurope:eb3e1137-f80e-47f8-aeb4-0af01fd32a18", + "westus:d6eb3eb0-6f87-4430-a0ae-5d899d38ad6d", + "eastus:46acda01-b14a-4398-8162-9e217d8586b4", + "eastus2:554da72d-542c-4f17-9c42-d200ae1c2ce5", + "brazilsouth:8fce043b-d1b4-4f14-8ae0-5e92d8924968", + "westus2:6e7b61fb-9ecf-4b80-94eb-edecc537bca9", + "westcentralus:7fc483e6-b167-4a35-8f9f-8879b55fea09" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14714" ], "x-ms-request-id": [ - "62e3bcb9-88a3-4bd4-87c8-08ee06366e54" + "48b47400-1727-4f3d-bcb1-4fb04510f190" ], "x-ms-correlation-request-id": [ - "62e3bcb9-88a3-4bd4-87c8-08ee06366e54" + "48b47400-1727-4f3d-bcb1-4fb04510f190" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205022Z:62e3bcb9-88a3-4bd4-87c8-08ee06366e54" + "WESTUS2:20170301T215753Z:48b47400-1727-4f3d-bcb1-4fb04510f190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,20 +130,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1201?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTIwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6666?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjY2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37a3393-2d3d-4613-b3a3-676f929b0954" + "7abf0798-669c-4b92-aa06-ff0b263ccb01" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -158,25 +158,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:22 GMT" + "Wed, 01 Mar 2017 21:57:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:671fed48-9e79-4e12-9b95-89bc31f992ed" + "westus:5430a40b-0972-4952-aba7-4444899eadc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "2dd09f0d-7de1-49d6-89e8-310b952f1a72" + "020cdd26-2ef2-44d2-b65c-422eb70b1c70" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205023Z:2dd09f0d-7de1-49d6-89e8-310b952f1a72" + "WESTUS2:20170301T215754Z:020cdd26-2ef2-44d2-b65c-422eb70b1c70" ] }, "StatusCode": 200 @@ -184,7 +184,7 @@ ], "Names": { "ListIntegrationAccountBySubscription": [ - "IntegrationAccount1201" + "IntegrationAccount6666" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json index 58aa9e9c9600..8a9170520a74 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3396?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzM5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "257ea4a8-b744-4630-bf3b-d7f516a9995f" + "bbdd935b-a40e-43e1-bb15-37b342fd093b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173\",\r\n \"name\": \"IntegrationAccount3173\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3396\",\r\n \"name\": \"IntegrationAccount3396\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,32 +38,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:11 GMT" + "Wed, 01 Mar 2017 21:57:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4368d7b7-67eb-4ae7-b641-ba6786aaec66" + "westus:22530e86-875a-45f1-9e4c-915b5acad13a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "4cf0ca3a-fd69-44e4-9b2a-f8af95145a17" + "c5cd9c1d-b110-40f6-ae87-196db4607ae0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205011Z:4cf0ca3a-fd69-44e4-9b2a-f8af95145a17" + "WESTUS2:20170301T215747Z:c5cd9c1d-b110-40f6-ae87-196db4607ae0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3396/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzM5Ni9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -74,17 +74,17 @@ "2" ], "x-ms-client-request-id": [ - "b633263c-e2e5-44f0-aa01-b92297242f69" + "e2e50d95-8d11-4fca-b6ea-c4d1b2b2c1d3" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=qWXzkQXOUlz7f6-Rbd77jkpeejbQrWW-_ub53g5rhnI\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-02.westus.logic.azure.com:443/integrationAccounts/1163c1aec3df452f8156123d4dea6acf?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=OM1sWv75OViE4HgBgFR699Vc8KHSWRK1DWHmcnh2MWY\",\r\n \"basePath\": \"https://prod-02.westus.logic.azure.com/integrationAccounts/1163c1aec3df452f8156123d4dea6acf\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:11 GMT" + "Wed, 01 Mar 2017 21:57:46 GMT" ], "Pragma": [ "no-cache" @@ -109,26 +109,26 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1f4c4f9a-58ce-417d-9885-69fea3d7ceec" + "westus:0321f1ce-2357-486a-a866-c737a4bed27b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "317882a3-2ac2-4ac3-9e2b-a89d285aca57" + "20d9dec1-7b34-493d-aed3-074ff4fa8be0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205011Z:317882a3-2ac2-4ac3-9e2b-a89d285aca57" + "WESTUS2:20170301T215747Z:20d9dec1-7b34-493d-aed3-074ff4fa8be0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3396/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzM5Ni9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -139,17 +139,17 @@ "2" ], "x-ms-client-request-id": [ - "1e3541ba-c1d3-4b4f-a095-e4ec322acf3b" + "a41c13c8-38db-4536-abce-383795a29be9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=qWXzkQXOUlz7f6-Rbd77jkpeejbQrWW-_ub53g5rhnI\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-02.westus.logic.azure.com:443/integrationAccounts/1163c1aec3df452f8156123d4dea6acf?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=OM1sWv75OViE4HgBgFR699Vc8KHSWRK1DWHmcnh2MWY\",\r\n \"basePath\": \"https://prod-02.westus.logic.azure.com/integrationAccounts/1163c1aec3df452f8156123d4dea6acf\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -161,7 +161,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:11 GMT" + "Wed, 01 Mar 2017 21:57:46 GMT" ], "Pragma": [ "no-cache" @@ -174,26 +174,26 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:fe1ad7e6-1775-4588-8800-051ef23c5755" + "westus:51731047-1d26-4a6b-b81d-28f17fbcf379" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "13f7c21b-4930-46e0-8c0f-84b5141b3f5a" + "b936d86a-b433-4bb9-9569-8ecf128c088a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205011Z:13f7c21b-4930-46e0-8c0f-84b5141b3f5a" + "WESTUS2:20170301T215747Z:b936d86a-b433-4bb9-9569-8ecf128c088a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3396/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzM5Ni9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"notAfter\": \"2017-03-11T08:00:00Z\",\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -204,17 +204,17 @@ "67" ], "x-ms-client-request-id": [ - "7171bab3-1aaf-4d60-807f-3b35177e7446" + "cef27347-b3cc-4eee-9050-793198b840ad" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&se=2017-03-11T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=NuHrY3K4e6rcjaye4Tztjku9-7YRGSLPjbhjO4CYoxo\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-02.westus.logic.azure.com:443/integrationAccounts/1163c1aec3df452f8156123d4dea6acf?api-version=2015-08-01-preview&se=2017-03-11T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=iBnPxqFtGAHNld0zOqiOKZpUP2Z-XJ4Pq_ofKtiQjwM\",\r\n \"basePath\": \"https://prod-02.westus.logic.azure.com/integrationAccounts/1163c1aec3df452f8156123d4dea6acf\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +226,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:11 GMT" + "Wed, 01 Mar 2017 21:57:47 GMT" ], "Pragma": [ "no-cache" @@ -239,26 +239,26 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f214abf4-07c9-4b13-bc32-52555b84b068" + "westus:679420d6-4baf-43c1-89ed-6435cfb15018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "fc8f334a-5ccd-4456-ab36-61b4c40037a8" + "c9efaf60-4414-49fc-a754-72e07440b6f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205011Z:fc8f334a-5ccd-4456-ab36-61b4c40037a8" + "WESTUS2:20170301T215747Z:c9efaf60-4414-49fc-a754-72e07440b6f5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3396/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzM5Ni9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -269,17 +269,17 @@ "28" ], "x-ms-client-request-id": [ - "e98ec41e-0e5e-406e-a234-c11583051fe6" + "46dc2426-48a7-430e-90ed-965c1b8f34e9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=qWXzkQXOUlz7f6-Rbd77jkpeejbQrWW-_ub53g5rhnI\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-02.westus.logic.azure.com:443/integrationAccounts/1163c1aec3df452f8156123d4dea6acf?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=OM1sWv75OViE4HgBgFR699Vc8KHSWRK1DWHmcnh2MWY\",\r\n \"basePath\": \"https://prod-02.westus.logic.azure.com/integrationAccounts/1163c1aec3df452f8156123d4dea6acf\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -291,7 +291,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:12 GMT" + "Wed, 01 Mar 2017 21:57:47 GMT" ], "Pragma": [ "no-cache" @@ -304,26 +304,26 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:03bcd810-28a7-49f7-b2e6-8dd64217d327" + "westus:d56d0d1c-ee38-4c83-8ebd-f6a87f60b4ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "62f8be73-a758-4d54-8fba-a4d8153cc323" + "5d9cefd8-f87e-48cb-a1ee-5e1aa5c9e4bd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205012Z:62f8be73-a758-4d54-8fba-a4d8153cc323" + "WESTUS2:20170301T215747Z:5d9cefd8-f87e-48cb-a1ee-5e1aa5c9e4bd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173/listCallbackUrl?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3My9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3396/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzM5Ni9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"notAfter\": \"2017-03-11T08:00:00Z\"\r\n}", "RequestHeaders": { @@ -334,17 +334,17 @@ "42" ], "x-ms-client-request-id": [ - "3b77c106-3678-414a-968b-4b0a33aadde1" + "1cb4e725-0bad-42eb-8269-09028c75e513" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be?api-version=2015-08-01-preview&se=2017-03-11T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=NuHrY3K4e6rcjaye4Tztjku9-7YRGSLPjbhjO4CYoxo\",\r\n \"basePath\": \"https://prod-01.westus.logic.azure.com/integrationAccounts/24d61d55906b49a9a4f8e5be70f8d2be\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-02.westus.logic.azure.com:443/integrationAccounts/1163c1aec3df452f8156123d4dea6acf?api-version=2015-08-01-preview&se=2017-03-11T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=iBnPxqFtGAHNld0zOqiOKZpUP2Z-XJ4Pq_ofKtiQjwM\",\r\n \"basePath\": \"https://prod-02.westus.logic.azure.com/integrationAccounts/1163c1aec3df452f8156123d4dea6acf\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -356,7 +356,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:12 GMT" + "Wed, 01 Mar 2017 21:57:47 GMT" ], "Pragma": [ "no-cache" @@ -369,38 +369,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:6101f186-5e76-4d24-bda4-1adb675730c2" + "westus:1bc7035e-8fc5-41a3-87a5-21be7a2b7062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "2b62504f-58ba-4933-ad5d-0171bc52a3d1" + "ce236b3b-3b41-4d12-85b9-ccab0ceda38c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205012Z:2b62504f-58ba-4933-ad5d-0171bc52a3d1" + "WESTUS2:20170301T215747Z:ce236b3b-3b41-4d12-85b9-ccab0ceda38c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3173?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3396?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzM5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0218b623-9b0e-41ee-ba00-bf2984d191ff" + "dcdf3e3f-30fc-4452-90dd-91ff38640bec" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -415,25 +415,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:12 GMT" + "Wed, 01 Mar 2017 21:57:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bdbdf947-6cd4-4f68-8430-e0434c895c74" + "westus:14a4e443-e26c-4561-84d0-b41d063cc425" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-correlation-request-id": [ - "f4203630-828e-432e-9284-ce664f130070" + "a4cd9cf2-8376-4f69-986b-64616bd75efc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205012Z:f4203630-828e-432e-9284-ce664f130070" + "WESTUS2:20170301T215747Z:a4cd9cf2-8376-4f69-986b-64616bd75efc" ] }, "StatusCode": 200 @@ -441,7 +441,7 @@ ], "Names": { "ListIntegrationAccountCallbackUrl": [ - "IntegrationAccount3173" + "IntegrationAccount3396" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json index f7b433c5b2fb..b5477de2eaa9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8602?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODYwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "4824e513-5131-4215-998e-f91d2c6b2f82" + "daa130cf-8206-4610-bfe6-4b985406e4fe" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821\",\r\n \"name\": \"IntegrationAccount1821\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8602\",\r\n \"name\": \"IntegrationAccount8602\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:39 GMT" + "Wed, 01 Mar 2017 21:58:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:adedf1ed-50ef-4de0-b7f0-3aa5ad1123de" + "westus:29f88511-a275-40ba-952a-957db83432f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "ae823108-8237-43eb-a3d9-eeafb8f0e882" + "43b00749-b5b3-466f-b987-c39a988c1b3c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205039Z:ae823108-8237-43eb-a3d9-eeafb8f0e882" + "WESTUS2:20170301T215808Z:43b00749-b5b3-466f-b987-c39a988c1b3c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8602?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODYwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount1821\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount8602\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "74" ], "x-ms-client-request-id": [ - "6f803aca-f680-45d9-9cfe-3619bd175061" + "cfce8dad-0e6f-4847-913f-e1c30c9bdec6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821\",\r\n \"name\": \"IntegrationAccount1821\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount1821\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8602\",\r\n \"name\": \"IntegrationAccount8602\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount8602\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:40 GMT" + "Wed, 01 Mar 2017 21:58:08 GMT" ], "Pragma": [ "no-cache" @@ -109,38 +109,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:d64eb947-7219-4f98-b0e7-ac595a7bad99" + "westus:ecae708f-cf74-4995-bc06-0dcb5215224f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-correlation-request-id": [ - "a49a3d54-23f1-497c-b2e9-690151edea1d" + "705ee645-6ed6-4091-a813-41600898cfef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205040Z:a49a3d54-23f1-497c-b2e9-690151edea1d" + "WESTUS2:20170301T215809Z:705ee645-6ed6-4091-a813-41600898cfef" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1821?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgyMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8602?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODYwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "183e6d2f-8b3e-440e-8f91-77bb48b85a72" + "fdd24e87-d814-4359-b992-f6caf26de68e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -155,25 +155,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:50:41 GMT" + "Wed, 01 Mar 2017 21:58:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c5f3b535-6abb-4818-9b0a-99e844b8201b" + "westus:784ce5c1-6e09-4f26-945f-ad3f23965602" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-correlation-request-id": [ - "800d759a-60ea-4c66-abf5-6f057186f4d6" + "29ca7e70-65bb-4762-84bd-e17cc219c322" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205041Z:800d759a-60ea-4c66-abf5-6f057186f4d6" + "WESTUS2:20170301T215809Z:29ca7e70-65bb-4762-84bd-e17cc219c322" ] }, "StatusCode": 200 @@ -181,7 +181,7 @@ ], "Names": { "UpdateIntegrationAccount": [ - "IntegrationAccount1821" + "IntegrationAccount8602" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json index 4bc4d95207e9..4d6d485e5fe3 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8656?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "bab8a445-44c5-4ad3-9e02-13fd94443b17" + "cbdf178b-9895-49da-b619-737a3f2c6bb2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807\",\r\n \"name\": \"IntegrationAccount807\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8656\",\r\n \"name\": \"IntegrationAccount8656\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:26 GMT" + "Wed, 01 Mar 2017 21:56:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5f313a55-f326-4eef-be63-08260d80078e" + "westus:145dcdfd-4649-4ec8-8255-d9a7591a05fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "78680e32-eae2-4214-b71f-d489834e6f7b" + "fd9d52e4-54c7-464b-b7a6-6102fe0a5431" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205127Z:78680e32-eae2-4214-b71f-d489834e6f7b" + "WESTUS2:20170301T215619Z:fd9d52e4-54c7-464b-b7a6-6102fe0a5431" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807/schemas/IntegrationAccountSchema4884?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hNDg4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8656/schemas/IntegrationAccountSchema1482?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE0ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema4884\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema4884\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema1482\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema1482\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "ea39e1f3-f5da-4f69-b132-8bdabd1f91a5" + "368ef3ad-80d0-4d27-b29a-8f8623dee108" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/integrationaccounts105c17fcea274df6ab8a2841185c326a/3839E_XML_INTEGRATIONACCOUNTSCHEMA4884-259295F6EDE1430DAA59F2F52AD77184?sv=2016-05-31&sr=b&sig=J15FEfWSRzbyb36UdnYJoDUKTnzpFrr6ZcDrCTIXjxo%3D&se=2017-03-02T00%3A51%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4BC28C9F1\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:28.0740167Z\",\r\n \"changedTime\": \"2017-03-01T20:51:28.0748202Z\",\r\n \"metadata\": \"IntegrationAccountSchema4884\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807/schemas/IntegrationAccountSchema4884\",\r\n \"name\": \"IntegrationAccountSchema4884\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccounts55f6571c10b04df4aa3148d08e48ad74/3839E_XML_INTEGRATIONACCOUNTSCHEMA1482-AD9B5E45AE46494B932FAE4EE673B8DF?sv=2016-05-31&sr=b&sig=sNHYF4gq7PEG%2FuQHe48uw54NAczDb6iYyvLd1ajJTV4%3D&se=2017-03-02T01%3A56%3A19Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EDCAFD5978\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:19.8178527Z\",\r\n \"changedTime\": \"2017-03-01T21:56:19.8181529Z\",\r\n \"metadata\": \"IntegrationAccountSchema1482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8656/schemas/IntegrationAccountSchema1482\",\r\n \"name\": \"IntegrationAccountSchema1482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "947" + "950" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:27 GMT" + "Wed, 01 Mar 2017 21:56:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7ca7cc38-9b01-4335-b190-a2836ecf0ebe" + "westus:1054d125-5a24-4d68-abd3-b8fe6cdff451" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "0b2496ef-f032-446b-82be-9390f59d72a5" + "795f4af5-d3f7-4dbc-a18b-5ed1a59266b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205128Z:0b2496ef-f032-446b-82be-9390f59d72a5" + "WESTUS2:20170301T215619Z:795f4af5-d3f7-4dbc-a18b-5ed1a59266b7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807/schemas/IntegrationAccountSchema4884?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hNDg4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8656/schemas/IntegrationAccountSchema1482?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE0ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13feff68-9f0a-430b-9e29-ee2e1afa08b9" + "b3a1546a-3e2d-4a70-aff2-575769c45c1f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,50 +151,50 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:28 GMT" + "Wed, 01 Mar 2017 21:56:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:dcbef311-0b6b-4932-ae26-df9608aa723a" + "westus:8101b822-0014-43c2-b19e-9383fe86c889" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "31c267d2-d3a5-4ec7-bfab-b962a55ef022" + "7f578ac5-62b1-44c9-a0f9-21d74962c08f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205128Z:31c267d2-d3a5-4ec7-bfab-b962a55ef022" + "WESTUS2:20170301T215620Z:7f578ac5-62b1-44c9-a0f9-21d74962c08f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807/schemas/IntegrationAccountSchema4884?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hNDg4ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8656/schemas/IntegrationAccountSchema1482?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE0ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9890cc5-7272-4f1d-8df8-385925108501" + "df1855c5-778e-4395-81c7-94036e98e8da" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SchemaNotFound\",\r\n \"message\": \"The schema 'IntegrationAccountSchema4884' could not be found in integration account 'IntegrationAccount807'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SchemaNotFound\",\r\n \"message\": \"The schema 'IntegrationAccountSchema1482' could not be found in integration account 'IntegrationAccount8656'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "156" + "157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -206,44 +206,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:28 GMT" + "Wed, 01 Mar 2017 21:56:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5a31cffc-229a-4ae6-adc8-4eb9f09ac025" + "westus:14d3269d-63bd-4cd0-85da-0050136e754a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14742" ], "x-ms-correlation-request-id": [ - "04b0d668-ad4f-48d2-9887-2302c78e23cf" + "900f38b0-4684-4dc8-9c6b-260221fea587" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205129Z:04b0d668-ad4f-48d2-9887-2302c78e23cf" + "WESTUS2:20170301T215620Z:900f38b0-4684-4dc8-9c6b-260221fea587" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount807?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODA3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8656?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78b33d67-199e-4324-b603-9b15786e8881" + "7f30222d-88ce-45cf-8950-e1d20df9bac0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -258,25 +258,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:28 GMT" + "Wed, 01 Mar 2017 21:56:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b928c9f4-8e34-472e-8c20-ca213b68a04c" + "westus:4378ae6c-0e66-4485-aa86-85518a64ef49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "4fc5f83e-1790-43cc-9318-a9e52c64e349" + "55cbdb26-ef81-405a-9a18-af11b0665efc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205129Z:4fc5f83e-1790-43cc-9318-a9e52c64e349" + "WESTUS2:20170301T215620Z:55cbdb26-ef81-405a-9a18-af11b0665efc" ] }, "StatusCode": 200 @@ -284,8 +284,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountSchema": [ - "IntegrationAccount807", - "IntegrationAccountSchema4884" + "IntegrationAccount8656", + "IntegrationAccountSchema1482" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json index 4dd682668d00..8d15c9e9866a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTY4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2919?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkxOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "defbd6bf-cc2d-413b-a1f9-217da315032e" + "449f1905-6b62-4014-8686-9970fdf5a546" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681\",\r\n \"name\": \"IntegrationAccount5681\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2919\",\r\n \"name\": \"IntegrationAccount2919\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:17 GMT" + "Wed, 01 Mar 2017 21:56:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:06a65dce-a7b5-466e-af20-5cddcd326f49" + "westus:ad2bbd8a-d861-4c3d-97f8-8e96cb4b485f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "5fc50bda-d3aa-49fa-a81b-ad12a603f41b" + "0ed1c6fe-0a9a-462c-8341-b1834f079fe2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205117Z:5fc50bda-d3aa-49fa-a81b-ad12a603f41b" + "WESTUS2:20170301T215610Z:0ed1c6fe-0a9a-462c-8341-b1834f079fe2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681/schemas/IntegrationAccountSchema4005?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTY4MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTQwMDU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2919/schemas/IntegrationAccountSchema6810?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkxOS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTY4MTA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema4005\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema4005\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema6810\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema6810\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "31462a11-e75a-4442-8482-c4b34c495e20" + "34a1deaf-d490-4b7c-a31a-84314bd4fa08" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccountsdabba557a6754cdea0516c0a7334a6bb/3839E_XML_INTEGRATIONACCOUNTSCHEMA4005-5B1408D270FD4EBBB9EB3AF8D31AFD4E?sv=2016-05-31&sr=b&sig=04%2FZ8P0BtYvBKJnlZ0ceaFwEdzL3UQWVBNPt20sSmUk%3D&se=2017-03-02T00%3A51%3A18Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B5C5D50B\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:18.2533897Z\",\r\n \"changedTime\": \"2017-03-01T20:51:18.2538929Z\",\r\n \"metadata\": \"IntegrationAccountSchema4005\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681/schemas/IntegrationAccountSchema4005\",\r\n \"name\": \"IntegrationAccountSchema4005\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu27by01.blob.core.windows.net/integrationaccounts98df03340ab748fcb70672b1a4dc60bd/3839E_XML_INTEGRATIONACCOUNTSCHEMA6810-2515BF24D9534DB2907D3A00FAAFFB50?sv=2016-05-31&sr=b&sig=%2FmIVFTZLDf%2FYRchkR%2FahDPqmUdCUprWUxhgpdx2Vcic%3D&se=2017-03-02T01%3A56%3A11Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EDC5BEBEEA\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:11.0258827Z\",\r\n \"changedTime\": \"2017-03-01T21:56:11.0263552Z\",\r\n \"metadata\": \"IntegrationAccountSchema6810\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2919/schemas/IntegrationAccountSchema6810\",\r\n \"name\": \"IntegrationAccountSchema6810\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "950" + "954" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:17 GMT" + "Wed, 01 Mar 2017 21:56:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f7c3e2b1-b645-492d-98ff-b50a1b0ce0c1" + "westus:e1515f0f-4f4e-411d-baea-bbc28311ae2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "612a473a-443e-4bec-a3e9-f86dcaedca53" + "bfd202c4-79fd-4018-ba50-fa3c8ac2039c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205118Z:612a473a-443e-4bec-a3e9-f86dcaedca53" + "WESTUS2:20170301T215611Z:bfd202c4-79fd-4018-ba50-fa3c8ac2039c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681/schemas/IntegrationAccountSchema4005?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTY4MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTQwMDU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2919/schemas/IntegrationAccountSchema6810?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkxOS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTY4MTA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "772ec556-0c76-41d0-8841-7a22ca017d2d" + "431b2e4e-444a-4ef4-8dcb-b6f5893935ca" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccountsdabba557a6754cdea0516c0a7334a6bb/3839E_XML_INTEGRATIONACCOUNTSCHEMA4005-5B1408D270FD4EBBB9EB3AF8D31AFD4E?sv=2016-05-31&sr=b&sig=04%2FZ8P0BtYvBKJnlZ0ceaFwEdzL3UQWVBNPt20sSmUk%3D&se=2017-03-02T00%3A51%3A18Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B5C5D50B\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:18.2533897Z\",\r\n \"changedTime\": \"2017-03-01T20:51:18.2538929Z\",\r\n \"metadata\": \"IntegrationAccountSchema4005\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681/schemas/IntegrationAccountSchema4005\",\r\n \"name\": \"IntegrationAccountSchema4005\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu27by01.blob.core.windows.net/integrationaccounts98df03340ab748fcb70672b1a4dc60bd/3839E_XML_INTEGRATIONACCOUNTSCHEMA6810-2515BF24D9534DB2907D3A00FAAFFB50?sv=2016-05-31&sr=b&sig=%2FmIVFTZLDf%2FYRchkR%2FahDPqmUdCUprWUxhgpdx2Vcic%3D&se=2017-03-02T01%3A56%3A11Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EDC5BEBEEA\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:11.0258827Z\",\r\n \"changedTime\": \"2017-03-01T21:56:11.0263552Z\",\r\n \"metadata\": \"IntegrationAccountSchema6810\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2919/schemas/IntegrationAccountSchema6810\",\r\n \"name\": \"IntegrationAccountSchema6810\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:18 GMT" + "Wed, 01 Mar 2017 21:56:10 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:9b2c2714-e05b-4426-898a-2aec2afab454" + "westus:0f7efc64-4311-4178-ac7a-5841e003e358" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14503" ], "x-ms-correlation-request-id": [ - "9165c6ef-a484-4734-a40c-1ff0eddc3022" + "e8ea07ca-7e0e-44c2-a8c5-ebca43128cf7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205118Z:9165c6ef-a484-4734-a40c-1ff0eddc3022" + "WESTUS2:20170301T215611Z:e8ea07ca-7e0e-44c2-a8c5-ebca43128cf7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5681?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTY4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2919?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkxOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2503772a-d4e6-4d26-8b01-61f2f24b3e18" + "4c3ed060-91e9-44a1-b65b-1f7ad6ae13be" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:18 GMT" + "Wed, 01 Mar 2017 21:56:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:37a60f1d-1928-4908-befe-34faff673463" + "westus:f95f4294-e5fb-4a84-8929-26e690d5cd09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "7980a3f7-fd45-4a82-a807-a7da21ab99f9" + "4224f843-cdd9-40df-a2fd-bdd2f6737f6d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205119Z:7980a3f7-fd45-4a82-a807-a7da21ab99f9" + "WESTUS2:20170301T215611Z:4224f843-cdd9-40df-a2fd-bdd2f6737f6d" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "CreateAndGetIntegrationAccountSchema": [ - "IntegrationAccount5681", - "IntegrationAccountSchema4005" + "IntegrationAccount2919", + "IntegrationAccountSchema6810" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json index 5d23b1d01da4..de4a8b5da42e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3325?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzMyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "15af5f71-6765-4d18-a00a-987eb4b26ce0" + "982c850c-08e7-460f-b009-65c025700705" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996\",\r\n \"name\": \"IntegrationAccount9996\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3325\",\r\n \"name\": \"IntegrationAccount3325\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:22 GMT" + "Wed, 01 Mar 2017 21:56:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:61c8c254-556f-4a0f-94a6-4c8922feeb1a" + "westus:33af48c4-07cb-4ba9-8675-76f4927a3600" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "5e3c31ad-791b-4d24-9473-dfc7b2dba241" + "c60149d3-9df2-4a65-9a74-eaf757dba9b2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205123Z:5e3c31ad-791b-4d24-9473-dfc7b2dba241" + "WESTUS2:20170301T215614Z:c60149d3-9df2-4a65-9a74-eaf757dba9b2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996/schemas/IntegrationAccountSchema1515?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk5Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE1MTU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3325/schemas/IntegrationAccountSchema9405?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzMyNS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTk0MDU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema1515\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema1515\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema9405\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema9405\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "8700" ], "x-ms-client-request-id": [ - "1ee54b8c-d8e1-4b7b-b7b9-ce82f8426ad2" + "50cd317c-b961-409b-827b-d72654f39d55" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu30by01.blob.core.windows.net/integrationaccounts13ce8b72606549598f66a6cb7ce27b6d/3839E_XML_INTEGRATIONACCOUNTSCHEMA1515-5D0479D2EB7647A9811A64953F4F12B7?sv=2016-05-31&sr=b&sig=Tx6vgUr3ledG%2Fh%2FZNjPDNQ67PMIGZMbntJI%2BYA5m3Oo%3D&se=2017-03-02T00%3A51%3A23Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B8E3E4A3\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:23.8397218Z\",\r\n \"changedTime\": \"2017-03-01T20:51:23.840386Z\",\r\n \"metadata\": \"IntegrationAccountSchema1515\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996/schemas/IntegrationAccountSchema1515\",\r\n \"name\": \"IntegrationAccountSchema1515\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu10by01.blob.core.windows.net/integrationaccounts203057516dec490fb125ec581acd2bfb/3839E_XML_INTEGRATIONACCOUNTSCHEMA9405-CC7B1E381A8F43B38AF7DB535FB4644A?sv=2016-05-31&sr=b&sig=2YNwT55voVkGrG41d48fGNa4F%2BweX643%2B6Y1%2FTutLOw%3D&se=2017-03-02T01%3A56%3A15Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EDC742E1CC\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:15.0524269Z\",\r\n \"changedTime\": \"2017-03-01T21:56:15.053413Z\",\r\n \"metadata\": \"IntegrationAccountSchema9405\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3325/schemas/IntegrationAccountSchema9405\",\r\n \"name\": \"IntegrationAccountSchema9405\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ "953" @@ -99,32 +99,32 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:23 GMT" + "Wed, 01 Mar 2017 21:56:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bd237cb3-22cf-4a5d-bd95-65957f2f1e67" + "westus:53050b7a-b841-41b3-9425-169ea0d9ae6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "ad54c417-cf3f-4291-9455-32a68f27410d" + "94126b9d-ef79-4139-82e9-698c1892253b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205123Z:ad54c417-cf3f-4291-9455-32a68f27410d" + "WESTUS2:20170301T215615Z:94126b9d-ef79-4139-82e9-698c1892253b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996/schemas/IntegrationAccountSchema1515?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk5Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE1MTU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3325/schemas/IntegrationAccountSchema9405?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzMyNS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTk0MDU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -135,17 +135,17 @@ "8564" ], "x-ms-client-request-id": [ - "896478a0-4da2-45db-9495-503b3c15f598" + "0966c932-aa3f-4b92-b8e1-9e4a31019c48" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu30by01.blob.core.windows.net/integrationaccounts13ce8b72606549598f66a6cb7ce27b6d/3839E_XML_INTEGRATIONACCOUNTSCHEMA1515-5D5A44DB111B4EA7A516D45EBDA9347C?sv=2016-05-31&sr=b&sig=Aal5I0uVTIyETz4s%2FEk4%2Fb5ECS434Q3SpXuh1TodHuI%3D&se=2017-03-02T00%3A51%3A24Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B906B782\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:23.8397218Z\",\r\n \"changedTime\": \"2017-03-01T20:51:24.0780066Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996/schemas/IntegrationAccountSchema1515\",\r\n \"name\": \"IntegrationAccountSchema1515\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu10by01.blob.core.windows.net/integrationaccounts203057516dec490fb125ec581acd2bfb/3839E_XML_INTEGRATIONACCOUNTSCHEMA9405-1844BD7EC20D44C5B9B6CA2E5C6856C6?sv=2016-05-31&sr=b&sig=q27bX9pgV2j6GJNJPuPDYWtKKyvL7E%2BrqfYsISqcMFQ%3D&se=2017-03-02T01%3A56%3A15Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EDC7570B07\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:15.0524269Z\",\r\n \"changedTime\": \"2017-03-01T21:56:15.1914858Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3325/schemas/IntegrationAccountSchema9405\",\r\n \"name\": \"IntegrationAccountSchema9405\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +157,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:23 GMT" + "Wed, 01 Mar 2017 21:56:14 GMT" ], "Pragma": [ "no-cache" @@ -170,38 +170,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:43ab57c8-4023-4d96-89a5-68d243220e7e" + "westus:55be607f-c4c7-4f9f-bea2-c0b0cca998a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "fe2fab77-d4a3-4ade-8d84-36d455cdbfad" + "9788c3ab-fa31-4ca8-ac02-7db936fa6190" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205124Z:fe2fab77-d4a3-4ade-8d84-36d455cdbfad" + "WESTUS2:20170301T215615Z:9788c3ab-fa31-4ca8-ac02-7db936fa6190" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9996?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTk5Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3325?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzMyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea2ffe11-48dc-472b-98c4-8186a98143e7" + "e08ad3f6-a788-4508-9c6e-b39257c1fe75" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:24 GMT" + "Wed, 01 Mar 2017 21:56:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:19b38c8a-8640-480e-801b-22fcff83359d" + "westus:f698afd5-d93c-49f8-8e44-bcc80a9c643a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "f4cfed59-12eb-44a5-876d-617c4174b0e8" + "55b82cc1-0179-4d9d-89f9-0c0419fe7be6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205124Z:f4cfed59-12eb-44a5-876d-617c4174b0e8" + "WESTUS2:20170301T215616Z:55b82cc1-0179-4d9d-89f9-0c0419fe7be6" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountSchema": [ - "IntegrationAccount9996", - "IntegrationAccountSchema1515" + "IntegrationAccount3325", + "IntegrationAccountSchema9405" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json index a673a9b5974d..77be5ca71308 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzc2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3941?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzk0MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "b48d5c15-96ce-4fc8-aa2a-4c8a6db4a999" + "785fdc75-c8e7-46d1-bcdb-7161f5b2f544" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761\",\r\n \"name\": \"IntegrationAccount7761\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3941\",\r\n \"name\": \"IntegrationAccount3941\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,56 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:32 GMT" + "Wed, 01 Mar 2017 21:56:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:633479d8-9fe7-45d7-a785-2a2e8b9c4837" + "westus:8ba8a5d8-81e6-46c6-b5dc-ef4ac17b55a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "832ba513-de07-445c-92ff-df61a191fffa" + "9c2ba9ba-67d8-4b82-9ea6-bc59c95c5605" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205132Z:832ba513-de07-445c-92ff-df61a191fffa" + "WESTUS2:20170301T215623Z:9c2ba9ba-67d8-4b82-9ea6-bc59c95c5605" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761/schemas/IntegrationAccountSchema5800?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzc2MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTU4MDA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3941/schemas/IntegrationAccountSchema470?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzk0MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTQ3MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema5800\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema5800\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema470\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema470\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8700" + "8698" ], "x-ms-client-request-id": [ - "75f4cf2c-fe8f-4755-8083-22998ca8b2d8" + "3c81b3ca-418b-460e-9e8a-739574edc1b6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu19by01.blob.core.windows.net/integrationaccounts08fea963b3ec4c78b2bb15147d7ed88e/3839E_XML_INTEGRATIONACCOUNTSCHEMA5800-34E6EAC8156147408F1EE7FC5090E206?sv=2016-05-31&sr=b&sig=HA%2BRuFASKIzx1vJvnocP8STspXEaxVdYW5%2FlTyeFUNg%3D&se=2017-03-02T00%3A51%3A33Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4BE9442E9\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:33.1232826Z\",\r\n \"changedTime\": \"2017-03-01T20:51:33.1241503Z\",\r\n \"metadata\": \"IntegrationAccountSchema5800\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761/schemas/IntegrationAccountSchema5800\",\r\n \"name\": \"IntegrationAccountSchema5800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu31by01.blob.core.windows.net/integrationaccounts95c50c15af974023b22c9b4612b2f335/3839E_XML_INTEGRATIONACCOUNTSCHEMA470-0E624D12BD6F4F58B8A6BC7235D9B885?sv=2016-05-31&sr=b&sig=b6IcMx%2B3mMWTZSdxbKlWbDGmU%2FJBU9BcHFMQsKmQeTQ%3D&se=2017-03-02T01%3A56%3A24Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EDCD7804C8\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:23.9808393Z\",\r\n \"changedTime\": \"2017-03-01T21:56:23.9810562Z\",\r\n \"metadata\": \"IntegrationAccountSchema470\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3941/schemas/IntegrationAccountSchema470\",\r\n \"name\": \"IntegrationAccountSchema470\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "952" + "948" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,44 +99,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:32 GMT" + "Wed, 01 Mar 2017 21:56:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2d057c18-5826-479d-bfb3-c0b02fcd550a" + "westus:ad50be85-a414-4dc5-915a-ea21886d1d01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "c1f6b07b-5920-4793-b0c7-fd0ef83048f9" + "867a8123-2591-48d2-8f61-2ee03b4d999d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205133Z:c1f6b07b-5920-4793-b0c7-fd0ef83048f9" + "WESTUS2:20170301T215623Z:867a8123-2591-48d2-8f61-2ee03b4d999d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzc2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3941?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzk0MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a38138a1-0a4e-46ad-8629-0d8c01643bc5" + "dce23229-2831-47b7-9a67-8d2b6aab3dc6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -151,47 +151,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:33 GMT" + "Wed, 01 Mar 2017 21:56:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:71a77ad3-930a-45b6-93bd-776e2e6b3f39" + "westus:f1dcf43d-5155-41b1-b1f4-3a1d8245440c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "ba224a1d-f747-4b5a-898f-86fad5e288cc" + "6edcd60d-d306-470b-be50-7d8e39d18222" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205134Z:ba224a1d-f747-4b5a-898f-86fad5e288cc" + "WESTUS2:20170301T215624Z:6edcd60d-d306-470b-be50-7d8e39d18222" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7761/schemas/IntegrationAccountSchema5800?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Nzc2MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTU4MDA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3941/schemas/IntegrationAccountSchema470?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Mzk0MS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTQ3MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70819099-6be8-4eb9-af79-743c76a39c6f" + "c9171080-f441-4b82-86ba-7b89d58d90af" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7761' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount3941' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -206,7 +206,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:33 GMT" + "Wed, 01 Mar 2017 21:56:24 GMT" ], "Pragma": [ "no-cache" @@ -215,13 +215,13 @@ "gateway" ], "x-ms-request-id": [ - "ab306de3-6949-4105-af6c-34ceceb0ab18" + "344f45e8-648b-48dd-8467-45e596136de2" ], "x-ms-correlation-request-id": [ - "ab306de3-6949-4105-af6c-34ceceb0ab18" + "344f45e8-648b-48dd-8467-45e596136de2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205134Z:ab306de3-6949-4105-af6c-34ceceb0ab18" + "WESTUS2:20170301T215624Z:344f45e8-648b-48dd-8467-45e596136de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,8 +232,8 @@ ], "Names": { "DeleteIntegrationAccountSchemaOnAccountDeletion": [ - "IntegrationAccount7761", - "IntegrationAccountSchema5800" + "IntegrationAccount3941", + "IntegrationAccountSchema470" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json index 4f3dd8822807..43a0107ef561 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount954?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTU0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "8804d8f2-65d8-4f07-945a-3b0371b0fba9" + "20ce8fa7-f8f4-4c01-a5ee-e0cf95ac0a46" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553\",\r\n \"name\": \"IntegrationAccount4553\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount954\",\r\n \"name\": \"IntegrationAccount954\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:11 GMT" + "Wed, 01 Mar 2017 21:56:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4d09f9a4-c540-4078-b0cc-626b09c10da9" + "westus:a499028e-9b2f-42e8-8eaf-51b7974eaa98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "3ff06193-e28c-413e-836d-894bcd6012d4" + "a2ff63e6-4119-4cc2-a0d1-3b380d1b35b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205112Z:3ff06193-e28c-413e-836d-894bcd6012d4" + "WESTUS2:20170301T215605Z:a2ff63e6-4119-4cc2-a0d1-3b380d1b35b6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553/schemas/IntegrationAccountSchema7509?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1My9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTc1MDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount954/schemas/IntegrationAccountSchema3772?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTU0L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hMzc3Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema7509\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema7509\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema3772\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema3772\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "8700" ], "x-ms-client-request-id": [ - "1d4a0692-dcd5-4d7f-88c1-064d0dbfd757" + "f0037ac6-7b27-4699-b742-fc18c45a65d7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu11by01.blob.core.windows.net/integrationaccountse055c66eb07f4ea5b33a10fbd0d1e022/3839E_XML_INTEGRATIONACCOUNTSCHEMA7509-6C61A6FE10C947D1B69EE0DBD9E3FE66?sv=2016-05-31&sr=b&sig=GyTvESUA83ZEr4Jx8D8BubdxiJFbFpEShp8pdxiEBoM%3D&se=2017-03-02T00%3A51%3A13Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B29C6EAD\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:13.1657734Z\",\r\n \"changedTime\": \"2017-03-01T20:51:13.1666837Z\",\r\n \"metadata\": \"IntegrationAccountSchema7509\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553/schemas/IntegrationAccountSchema7509\",\r\n \"name\": \"IntegrationAccountSchema7509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu23by01.blob.core.windows.net/integrationaccounts35605b121781450ea00e6c3b8f6d9d04/3839E_XML_INTEGRATIONACCOUNTSCHEMA3772-E47C3B155DB24B0D9EEA3B3F38C9425D?sv=2016-05-31&sr=b&sig=un8ngmmFIvroFCYotJyvrikAAJeciuI%2B8C9nK%2FZObvA%3D&se=2017-03-02T01%3A56%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EDC3598ECC\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:06.5532477Z\",\r\n \"changedTime\": \"2017-03-01T21:56:06.5539697Z\",\r\n \"metadata\": \"IntegrationAccountSchema3772\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount954/schemas/IntegrationAccountSchema3772\",\r\n \"name\": \"IntegrationAccountSchema3772\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "948" + "951" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:12 GMT" + "Wed, 01 Mar 2017 21:56:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3ed7b343-099c-4050-8078-f454ab418756" + "westus:558c979c-3ab0-4a18-8eec-9d22e37c7ad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "da2da47e-f573-410f-b8c4-064f975f2be6" + "afec3f5d-ffb4-4cc4-a56e-bd7bb60afc1a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205113Z:da2da47e-f573-410f-b8c4-064f975f2be6" + "WESTUS2:20170301T215606Z:afec3f5d-ffb4-4cc4-a56e-bd7bb60afc1a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553/schemas?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1My9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount954/schemas?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTU0L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49ffc947-7fcf-4b0a-b5c5-0f1335575e91" + "419604ef-2d3c-4577-9b8d-258cf6787c86" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu11by01.blob.core.windows.net/integrationaccountse055c66eb07f4ea5b33a10fbd0d1e022/3839E_XML_INTEGRATIONACCOUNTSCHEMA7509-6C61A6FE10C947D1B69EE0DBD9E3FE66?sv=2016-05-31&sr=b&sig=GyTvESUA83ZEr4Jx8D8BubdxiJFbFpEShp8pdxiEBoM%3D&se=2017-03-02T00%3A51%3A13Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460E4B29C6EAD\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T20:51:13.1657734Z\",\r\n \"changedTime\": \"2017-03-01T20:51:13.1666837Z\",\r\n \"metadata\": \"IntegrationAccountSchema7509\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553/schemas/IntegrationAccountSchema7509\",\r\n \"name\": \"IntegrationAccountSchema7509\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu23by01.blob.core.windows.net/integrationaccounts35605b121781450ea00e6c3b8f6d9d04/3839E_XML_INTEGRATIONACCOUNTSCHEMA3772-E47C3B155DB24B0D9EEA3B3F38C9425D?sv=2016-05-31&sr=b&sig=un8ngmmFIvroFCYotJyvrikAAJeciuI%2B8C9nK%2FZObvA%3D&se=2017-03-02T01%3A56%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D460EDC3598ECC\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-03-01T21:56:06.5532477Z\",\r\n \"changedTime\": \"2017-03-01T21:56:06.5539697Z\",\r\n \"metadata\": \"IntegrationAccountSchema3772\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount954/schemas/IntegrationAccountSchema3772\",\r\n \"name\": \"IntegrationAccountSchema3772\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:12 GMT" + "Wed, 01 Mar 2017 21:56:06 GMT" ], "Pragma": [ "no-cache" @@ -164,38 +164,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4d5d95d1-67ae-4f49-a4c6-54592a56d804" + "westus:3dfe38ac-7dc9-4bc0-9c15-f0da324f89f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14804" ], "x-ms-correlation-request-id": [ - "97ed230f-bfab-42eb-a26f-7df34d4a24a4" + "bf2ed57e-5ff5-4048-8787-2906e35f2266" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205113Z:97ed230f-bfab-42eb-a26f-7df34d4a24a4" + "WESTUS2:20170301T215606Z:bf2ed57e-5ff5-4048-8787-2906e35f2266" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4553?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDU1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount954?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTU0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76da35b1-25c6-4287-a04d-3178e78811c8" + "6bbd5fde-6f69-47b4-ad67-6c67e3c2cd1c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -210,25 +210,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:51:13 GMT" + "Wed, 01 Mar 2017 21:56:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:961e6d9a-4d49-4f95-9278-15f5a47548f9" + "westus:f639dccf-f659-4de9-a0ad-7ecd466bf875" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "c3349da5-06dd-4503-acd4-30fdcf71cc07" + "520386a0-1d4e-432b-a39b-4ca1a93b2640" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170301T205114Z:c3349da5-06dd-4503-acd4-30fdcf71cc07" + "WESTUS2:20170301T215607Z:520386a0-1d4e-432b-a39b-4ca1a93b2640" ] }, "StatusCode": 200 @@ -236,8 +236,8 @@ ], "Names": { "ListIntegrationAccountSchemas": [ - "IntegrationAccount4553", - "IntegrationAccountSchema7509" + "IntegrationAccount954", + "IntegrationAccountSchema3772" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json index 2870f1114332..50d769305871 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndDeleteIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzE1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "c75b3adf-fe40-4820-a1bd-7319c8b5dad6" + "c71d15ed-4f9d-4bc2-bf30-d42c8a3f8ffc" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904\",\r\n \"name\": \"IntegrationAccount3904\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153\",\r\n \"name\": \"IntegrationAccount7153\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:40 GMT" + "Wed, 01 Mar 2017 21:57:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3d8419d7-cdc3-4b15-bbbe-5fc4d8e4e949" + "westus:493735c6-afd7-447a-80d6-cc6f9afee409" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "b07f08d8-9146-41c0-83d1-775b54625724" + "73f8ec4f-4efc-4d90-af06-c7e6a263887c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205240Z:b07f08d8-9146-41c0-83d1-775b54625724" + "WESTUS2:20170301T215719Z:73f8ec4f-4efc-4d90-af06-c7e6a263887c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153/sessions/IntegrationAccountSession428?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDI4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession405\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession428\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "134" ], "x-ms-client-request-id": [ - "5d66739e-d080-4d86-b570-f6950fd6971f" + "2e491bff-ad81-449f-ad4b-17271005bc8f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:41.113661Z\",\r\n \"changedTime\": \"2017-03-01T20:52:41.113661Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405\",\r\n \"name\": \"IntegrationAccountSession405\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053243639064\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:19.2506685Z\",\r\n \"changedTime\": \"2017-03-01T21:57:19.2506685Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153/sessions/IntegrationAccountSession428\",\r\n \"name\": \"IntegrationAccountSession428\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014462268985\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "434" + "436" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,50 +99,50 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:40 GMT" + "Wed, 01 Mar 2017 21:57:18 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053243639064\"" + "\"08587132014462268985\"" ], "x-ms-request-id": [ - "westus:b8570caa-709d-46ec-8d99-6b0165081b85" + "westus:3a5ea567-4f3c-4410-9f3b-df0c1d766fa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "6e297279-b1e3-45ae-8fc1-54301d7a0bc6" + "dc461088-2607-4f1a-9cb3-8991d2fc7cb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205241Z:6e297279-b1e3-45ae-8fc1-54301d7a0bc6" + "WESTUS2:20170301T215719Z:dc461088-2607-4f1a-9cb3-8991d2fc7cb5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153/sessions/IntegrationAccountSession428?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDI4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15920a48-8b9d-4594-b0af-773af40156a9" + "91ba3255-7f7d-4717-a383-0ba3ca19e72e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:41.113661Z\",\r\n \"changedTime\": \"2017-03-01T20:52:41.114208Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405\",\r\n \"name\": \"IntegrationAccountSession405\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053243639064\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:19.2506685Z\",\r\n \"changedTime\": \"2017-03-01T21:57:19.2508969Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153/sessions/IntegrationAccountSession428\",\r\n \"name\": \"IntegrationAccountSession428\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014462268985\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:40 GMT" + "Wed, 01 Mar 2017 21:57:18 GMT" ], "Pragma": [ "no-cache" @@ -163,48 +163,48 @@ "chunked" ], "ETag": [ - "\"08587132053243639064\"" + "\"08587132014462268985\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:ca281927-c850-4b77-b117-e9d80eb81122" + "westus:53425ec6-8fb3-4f86-8180-876f1913228d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14497" ], "x-ms-correlation-request-id": [ - "f24c32af-7647-40dd-b10f-fc7cd1468d01" + "29edb736-2e64-4e57-be3d-c1aac2218645" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205241Z:f24c32af-7647-40dd-b10f-fc7cd1468d01" + "WESTUS2:20170301T215719Z:29edb736-2e64-4e57-be3d-c1aac2218645" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153/sessions/IntegrationAccountSession428?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDI4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1203151-78f7-4886-bd08-337e2fd136a4" + "0cc7018a-9664-4c86-ad0f-5e0cb3e494c5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SessionNotFound\",\r\n \"message\": \"The session 'IntegrationAccountSession405' could not be found in integration account 'IntegrationAccount3904'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SessionNotFound\",\r\n \"message\": \"The session 'IntegrationAccountSession428' could not be found in integration account 'IntegrationAccount7153'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "159" @@ -219,44 +219,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:40 GMT" + "Wed, 01 Mar 2017 21:57:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2591c1d1-bde3-45cd-9119-e4a0666d00b3" + "westus:b265ece1-1614-4328-ad3d-929f1761e7d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14496" ], "x-ms-correlation-request-id": [ - "d2fef199-1ef1-4f8f-940a-57490dc7b0f0" + "f9ce87e9-9a0c-448f-8828-687692a419c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205241Z:d2fef199-1ef1-4f8f-940a-57490dc7b0f0" + "WESTUS2:20170301T215719Z:f9ce87e9-9a0c-448f-8828-687692a419c9" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153/sessions/IntegrationAccountSession428?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDI4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a73367ea-3609-4ae0-84d6-005b647ef364" + "f5d52999-2f17-4319-bca4-97494bba1171" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -271,44 +271,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:40 GMT" + "Wed, 01 Mar 2017 21:57:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ed1cb779-c0a1-49c3-870c-e419e7b78dbc" + "westus:207766c6-4f36-4bf1-a1c1-52097f60b651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "ad1471a0-20d1-4b5f-8370-d6612de981ef" + "47e73e5c-e8c9-4123-b9e9-e13a4d3d77cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205241Z:ad1471a0-20d1-4b5f-8370-d6612de981ef" + "WESTUS2:20170301T215719Z:47e73e5c-e8c9-4123-b9e9-e13a4d3d77cf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904/sessions/IntegrationAccountSession405?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDA1P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153/sessions/IntegrationAccountSession428?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDI4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4dd2245-8ff3-4d00-83a5-f1731029a7f9" + "3e289707-0ea2-4b53-b3f0-dfc14fe102ad" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -323,44 +323,44 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:40 GMT" + "Wed, 01 Mar 2017 21:57:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f1de37cf-ee09-4e1e-9eeb-1941c1e9f01e" + "westus:a3cf478b-5f33-42f3-9405-cf8f5d2cf69a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "70f58145-c2cb-4960-b7ff-7823f6349a2c" + "cdd07026-4946-49d3-8bd5-28c956277f28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205241Z:70f58145-c2cb-4960-b7ff-7823f6349a2c" + "WESTUS2:20170301T215719Z:cdd07026-4946-49d3-8bd5-28c956277f28" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3904?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzkwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7153?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzE1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "221c5ec5-904f-4b06-9dc8-a8ed4710b3d4" + "9a938eba-5bc9-4e8f-a4b0-b903bc2d552d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -375,25 +375,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:41 GMT" + "Wed, 01 Mar 2017 21:57:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:cb517cb6-1baa-4303-8187-ac2bdd51afee" + "westus:257193dd-3acf-4e17-9843-3f95260a2ac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-correlation-request-id": [ - "ca0f8f21-ff0f-47a4-9927-d299014f0817" + "a0c6f627-c595-48f8-bd28-6ce937e46362" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205242Z:ca0f8f21-ff0f-47a4-9927-d299014f0817" + "WESTUS2:20170301T215720Z:a0c6f627-c595-48f8-bd28-6ce937e46362" ] }, "StatusCode": 200 @@ -401,8 +401,8 @@ ], "Names": { "CreateAndDeleteIntegrationAccountSession": [ - "IntegrationAccount3904", - "IntegrationAccountSession405" + "IntegrationAccount7153", + "IntegrationAccountSession428" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json index 2d6685ef93a9..ea4adc95b14c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndGetIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDA2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4764?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "88daef49-3683-4bcd-834a-5c71f5ada9dc" + "f5321e07-cf08-4321-a4e6-1ba753e2a453" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066\",\r\n \"name\": \"IntegrationAccount4066\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4764\",\r\n \"name\": \"IntegrationAccount4764\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,56 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:47 GMT" + "Wed, 01 Mar 2017 21:57:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ecd64db3-ae10-4931-a7a2-bb84d24bb33b" + "westus:31fff566-1635-4049-aef8-df9c20c65557" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "e9a4898f-0ad2-4ad1-a1de-371a1d900e17" + "c6000d0a-b426-4ab1-8651-c50e315dbc1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205248Z:e9a4898f-0ad2-4ad1-a1de-371a1d900e17" + "WESTUS2:20170301T215724Z:c6000d0a-b426-4ab1-8651-c50e315dbc1d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066/sessions/IntegrationAccountSession8475?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDA2Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODQ3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4764/sessions/IntegrationAccountSession103?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2NC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTAzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession8475\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"256\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession103\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "135" + "134" ], "x-ms-client-request-id": [ - "3f3f8de4-a3d1-4ad5-93d6-9bfe5b926c45" + "20bb528b-2d52-4dc1-b78f-c99ef41e1431" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:48.3196053Z\",\r\n \"changedTime\": \"2017-03-01T20:52:48.3196053Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066/sessions/IntegrationAccountSession8475\",\r\n \"name\": \"IntegrationAccountSession8475\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053171579640\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:24.6384773Z\",\r\n \"changedTime\": \"2017-03-01T21:57:24.6384773Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4764/sessions/IntegrationAccountSession103\",\r\n \"name\": \"IntegrationAccountSession103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014408390925\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "438" + "436" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,50 +99,50 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:48 GMT" + "Wed, 01 Mar 2017 21:57:24 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053171579640\"" + "\"08587132014408390925\"" ], "x-ms-request-id": [ - "westus:90928d9c-812e-4806-a318-80c10904803d" + "westus:925c1a04-b422-49f1-97a5-e61c7faef26f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1189" ], "x-ms-correlation-request-id": [ - "36d44d31-0c30-42fb-bd47-6cdfdd69e4f0" + "84a69aa5-faed-4dec-ac3f-52a55ac53d26" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205248Z:36d44d31-0c30-42fb-bd47-6cdfdd69e4f0" + "WESTUS2:20170301T215724Z:84a69aa5-faed-4dec-ac3f-52a55ac53d26" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066/sessions/IntegrationAccountSession8475?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDA2Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODQ3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4764/sessions/IntegrationAccountSession103?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2NC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTAzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57ba6393-7142-48ed-8596-b3cc8243706e" + "9e25b3ed-cfaf-4459-97c2-9b55bcbc8511" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:48.3196053Z\",\r\n \"changedTime\": \"2017-03-01T20:52:48.319843Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066/sessions/IntegrationAccountSession8475\",\r\n \"name\": \"IntegrationAccountSession8475\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053171579640\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:24.6384773Z\",\r\n \"changedTime\": \"2017-03-01T21:57:24.6386912Z\",\r\n \"content\": \"256\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4764/sessions/IntegrationAccountSession103\",\r\n \"name\": \"IntegrationAccountSession103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014408390925\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:48 GMT" + "Wed, 01 Mar 2017 21:57:24 GMT" ], "Pragma": [ "no-cache" @@ -163,45 +163,45 @@ "chunked" ], "ETag": [ - "\"08587132053171579640\"" + "\"08587132014408390925\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:94396afd-deec-4a0c-a81e-4ed2eb72e84a" + "westus:a3b59556-e2a0-4bea-93eb-3b09e56d30dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "14729" ], "x-ms-correlation-request-id": [ - "be2a26a1-025f-43c7-bc66-abf90f6e1b8e" + "5acc5805-b09b-4ce0-9f59-1035534b4fc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205248Z:be2a26a1-025f-43c7-bc66-abf90f6e1b8e" + "WESTUS2:20170301T215724Z:5acc5805-b09b-4ce0-9f59-1035534b4fc0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4066?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDA2Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4764?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDc2ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e60ce10-9f22-4e04-b21e-58c9452bd7d5" + "34a9fe8f-f7f4-4a71-84c8-276e8deb5b2b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -216,25 +216,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:48 GMT" + "Wed, 01 Mar 2017 21:57:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:3d4d3c70-4b78-4c83-b788-df5e5fa1c2a3" + "westus:3a9d804f-2813-4a94-bbc7-3c1d02983a38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1188" ], "x-ms-correlation-request-id": [ - "8bac4b24-87d9-4ea8-9ebe-afb40b0878f3" + "8bc27cdd-eedd-4da7-a5ae-6095164a66f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205249Z:8bac4b24-87d9-4ea8-9ebe-afb40b0878f3" + "WESTUS2:20170301T215725Z:8bc27cdd-eedd-4da7-a5ae-6095164a66f3" ] }, "StatusCode": 200 @@ -242,8 +242,8 @@ ], "Names": { "CreateAndGetIntegrationAccountSession": [ - "IntegrationAccount4066", - "IntegrationAccountSession8475" + "IntegrationAccount4764", + "IntegrationAccountSession103" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json index 6b388b6d759e..aef0504a7c32 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateAndUpdateIntegrationAccountSession.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount176?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,20 +13,20 @@ "91" ], "x-ms-client-request-id": [ - "ba279465-ad41-4f80-9f64-f4e97e9f2852" + "3a622bf3-81e9-4d3b-be35-851543bfc0ea" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167\",\r\n \"name\": \"IntegrationAccount5167\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount176\",\r\n \"name\": \"IntegrationAccount176\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:33 GMT" + "Wed, 01 Mar 2017 21:57:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4e1e2fad-6d37-4bfa-8925-60aecfdcb9b6" + "westus:f2eb3709-0ccd-47db-9ede-aea27223b84f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1190" ], "x-ms-correlation-request-id": [ - "d18a397a-3506-4242-83e3-015aea995b94" + "4e5014e0-8072-437f-acff-26933b772e99" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205234Z:d18a397a-3506-4242-83e3-015aea995b94" + "WESTUS2:20170301T215714Z:4e5014e0-8072-437f-acff-26933b772e99" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167/sessions/IntegrationAccountSession1145?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2Ny9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTE0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount176/sessions/IntegrationAccountSession3887?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc2L3Nlc3Npb25zL0ludGVncmF0aW9uQWNjb3VudFNlc3Npb24zODg3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1145\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession3887\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,20 +74,20 @@ "135" ], "x-ms-client-request-id": [ - "0dd4c90b-d287-4d61-9653-38492e8f049a" + "dd7aaaab-a639-4e50-981c-0f46333dbfac" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:35.0039729Z\",\r\n \"changedTime\": \"2017-03-01T20:52:35.0039729Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167/sessions/IntegrationAccountSession1145\",\r\n \"name\": \"IntegrationAccountSession1145\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053304735945\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:14.4714322Z\",\r\n \"changedTime\": \"2017-03-01T21:57:14.4714322Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount176/sessions/IntegrationAccountSession3887\",\r\n \"name\": \"IntegrationAccountSession3887\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014510061368\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "438" + "437" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,37 +99,37 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:34 GMT" + "Wed, 01 Mar 2017 21:57:14 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053304735945\"" + "\"08587132014510061368\"" ], "x-ms-request-id": [ - "westus:57d87e93-d040-4f8b-bab6-a10e7cc7bb58" + "westus:5175b988-22e2-40f6-8ede-e887e5e88902" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1189" ], "x-ms-correlation-request-id": [ - "e74f6e76-cec1-4d36-b2e3-88969bff1ab2" + "f8f17080-c178-4ddd-af39-482edc081387" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205234Z:e74f6e76-cec1-4d36-b2e3-88969bff1ab2" + "WESTUS2:20170301T215714Z:f8f17080-c178-4ddd-af39-482edc081387" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167/sessions/IntegrationAccountSession1145?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2Ny9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTE0NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount176/sessions/IntegrationAccountSession3887?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc2L3Nlc3Npb25zL0ludGVncmF0aW9uQWNjb3VudFNlc3Npb24zODg3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"foobar_update\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1145\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"foobar_update\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession3887\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -138,17 +138,17 @@ "145" ], "x-ms-client-request-id": [ - "64912c1a-8d91-4f02-879e-4fc6f4f744f6" + "5a7e03f6-7252-4374-975b-73d4ce2408c8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:35.0039729Z\",\r\n \"changedTime\": \"2017-03-01T20:52:35.0042Z\",\r\n \"content\": \"foobar_update\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167/sessions/IntegrationAccountSession1145\",\r\n \"name\": \"IntegrationAccountSession1145\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053303494410\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:14.4714322Z\",\r\n \"changedTime\": \"2017-03-01T21:57:14.4716522Z\",\r\n \"content\": \"foobar_update\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount176/sessions/IntegrationAccountSession3887\",\r\n \"name\": \"IntegrationAccountSession3887\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014509054417\\\"\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -160,7 +160,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:34 GMT" + "Wed, 01 Mar 2017 21:57:14 GMT" ], "Pragma": [ "no-cache" @@ -169,45 +169,45 @@ "chunked" ], "ETag": [ - "\"08587132053303494410\"" + "\"08587132014509054417\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:37340a66-2001-4beb-a9c2-684313647fb3" + "westus:ce173ed6-83e2-4f22-8e82-a6bbfec10352" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1188" ], "x-ms-correlation-request-id": [ - "18522fe1-2ba2-4717-925e-cbcf97f85057" + "b72f2b86-ac93-4883-b16a-90e19e2a7110" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205235Z:18522fe1-2ba2-4717-925e-cbcf97f85057" + "WESTUS2:20170301T215714Z:b72f2b86-ac93-4883-b16a-90e19e2a7110" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5167?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount176?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTc2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab7c6d10-e2c3-480b-af19-96cb67a81ac1" + "43c40693-35c1-42eb-9fc0-327c6006c63b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -222,25 +222,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:34 GMT" + "Wed, 01 Mar 2017 21:57:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:14757427-00a1-4865-8399-208454dfb641" + "westus:18dcbb28-7645-4d13-9539-f56751efe1e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1187" ], "x-ms-correlation-request-id": [ - "42e43d1a-f9c6-4fd2-93ab-6e6354dabb1e" + "e3417f1a-d2bf-4982-9e0a-75498fae794f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205235Z:42e43d1a-f9c6-4fd2-93ab-6e6354dabb1e" + "WESTUS2:20170301T215715Z:e3417f1a-d2bf-4982-9e0a-75498fae794f" ] }, "StatusCode": 200 @@ -248,8 +248,8 @@ ], "Names": { "CreateAndUpdateIntegrationAccountSession": [ - "IntegrationAccount5167", - "IntegrationAccountSession1145" + "IntegrationAccount176", + "IntegrationAccountSession3887" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json index 839059352d0f..1ae43f5beaa6 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/CreateIntegrationAccountSessionUsingFile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "43e5195f-2e7c-4486-9f36-8d1873375687" + "dea19837-7076-49f1-9c90-889ce7344d18" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176\",\r\n \"name\": \"IntegrationAccount3176\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650\",\r\n \"name\": \"IntegrationAccount8650\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:30 GMT" + "Wed, 01 Mar 2017 21:57:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a3ab3965-4c67-4cfb-9a33-f37353007495" + "westus:d855df9c-72db-458e-841d-f5ddda4085ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "643746fa-d904-412e-bb64-31dd0bed7220" + "da89053a-c1f6-4b55-81b0-09861bd81f8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205231Z:643746fa-d904-412e-bb64-31dd0bed7220" + "WESTUS2:20170301T215711Z:da89053a-c1f6-4b55-81b0-09861bd81f8e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession7607?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzYwNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650/sessions/IntegrationAccountSession9748?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1MC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uOTc0OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7607\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession9748\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "160" ], "x-ms-client-request-id": [ - "28b885f1-da7d-4fce-bec8-e1e5a9d38975" + "21ad1d80-fc09-4306-8db8-8fcec1275072" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:32.0626584Z\",\r\n \"changedTime\": \"2017-03-01T20:52:32.0626584Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession7607\",\r\n \"name\": \"IntegrationAccountSession7607\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053334149114\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:12.0003723Z\",\r\n \"changedTime\": \"2017-03-01T21:57:12.0003723Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650/sessions/IntegrationAccountSession9748\",\r\n \"name\": \"IntegrationAccountSession9748\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014534771921\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,37 +99,37 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:31 GMT" + "Wed, 01 Mar 2017 21:57:11 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053334149114\"" + "\"08587132014534771921\"" ], "x-ms-request-id": [ - "westus:04c3e6d6-82fc-4cec-bc2f-9c7bf60d174a" + "westus:fb4bc551-7004-4248-ae93-8f3860c7de47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1190" ], "x-ms-correlation-request-id": [ - "0cb67b53-8c95-4858-a403-131f28fd0cbc" + "22d38c08-7d09-4beb-aaaf-63fd15958800" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205232Z:0cb67b53-8c95-4858-a403-131f28fd0cbc" + "WESTUS2:20170301T215712Z:22d38c08-7d09-4beb-aaaf-63fd15958800" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession8598?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uODU5OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650/sessions/IntegrationAccountSession4354?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1MC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNDM1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession8598\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession4354\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -138,17 +138,17 @@ "160" ], "x-ms-client-request-id": [ - "b1148574-166b-41e9-8dc8-523c55921be5" + "1efad639-eb1d-4f10-9c88-fe861c0e07c9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:32.1653756Z\",\r\n \"changedTime\": \"2017-03-01T20:52:32.1653756Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession8598\",\r\n \"name\": \"IntegrationAccountSession8598\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053333121933\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:12.0887759Z\",\r\n \"changedTime\": \"2017-03-01T21:57:12.0887759Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650/sessions/IntegrationAccountSession4354\",\r\n \"name\": \"IntegrationAccountSession4354\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014533887950\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -163,59 +163,59 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:31 GMT" + "Wed, 01 Mar 2017 21:57:11 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053333121933\"" + "\"08587132014533887950\"" ], "x-ms-request-id": [ - "westus:550ca232-2a20-4bfc-84bb-c0317fd6989c" + "westus:e538b99c-ce7e-449e-ad7b-9b3f4f3cce2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1189" ], "x-ms-correlation-request-id": [ - "5cd2c8f4-46d9-48ec-a3cd-86b30f76b434" + "479610ea-9cd3-4b66-bc9f-167aa6dcd0cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205232Z:5cd2c8f4-46d9-48ec-a3cd-86b30f76b434" + "WESTUS2:20170301T215712Z:479610ea-9cd3-4b66-bc9f-167aa6dcd0cd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession394?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Ni9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMzk0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650/sessions/IntegrationAccountSession1198?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1MC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMTE5OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession394\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"456\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession1198\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "159" + "160" ], "x-ms-client-request-id": [ - "1e85fe91-ae20-4241-a12e-a4ecdcc1833a" + "f6b47106-1ee8-40fd-b138-4f3a62f67a66" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:32.2384136Z\",\r\n \"changedTime\": \"2017-03-01T20:52:32.2384136Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176/sessions/IntegrationAccountSession394\",\r\n \"name\": \"IntegrationAccountSession394\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053332391570\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:12.1701762Z\",\r\n \"changedTime\": \"2017-03-01T21:57:12.1701762Z\",\r\n \"content\": \"456\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650/sessions/IntegrationAccountSession1198\",\r\n \"name\": \"IntegrationAccountSession1198\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014533073950\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "436" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -227,47 +227,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:31 GMT" + "Wed, 01 Mar 2017 21:57:11 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053332391570\"" + "\"08587132014533073950\"" ], "x-ms-request-id": [ - "westus:1bd75adc-73fc-4968-8eda-ac8c40d55995" + "westus:498b9f93-2697-4777-a04f-2d1d27d23503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1188" ], "x-ms-correlation-request-id": [ - "ae8c82aa-a4c9-4dcb-8ea1-c54d0ef563d7" + "54d51dfd-9be9-47d8-a9d9-699be6a2ca05" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205232Z:ae8c82aa-a4c9-4dcb-8ea1-c54d0ef563d7" + "WESTUS2:20170301T215712Z:54d51dfd-9be9-47d8-a9d9-699be6a2ca05" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3176?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8650?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6374928-ed3d-46da-a29f-3aad6dfd069c" + "076268d0-eeb0-4009-b187-d5c026539097" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -282,25 +282,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:31 GMT" + "Wed, 01 Mar 2017 21:57:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c8f2de9e-c11d-4b28-b0b4-b814484351a8" + "westus:f41e8454-a0d6-49c4-bc65-242d0b79eb45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1187" ], "x-ms-correlation-request-id": [ - "c29f03c2-74d9-440d-99e9-01eddd62c7b2" + "4a3a47d3-6dc2-4029-869d-b5b7a08e5e5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205232Z:c29f03c2-74d9-440d-99e9-01eddd62c7b2" + "WESTUS2:20170301T215712Z:4a3a47d3-6dc2-4029-869d-b5b7a08e5e5e" ] }, "StatusCode": 200 @@ -308,10 +308,10 @@ ], "Names": { "CreateIntegrationAccountSessionUsingFile": [ - "IntegrationAccount3176", - "IntegrationAccountSession7607", - "IntegrationAccountSession394", - "IntegrationAccountSession8598" + "IntegrationAccount8650", + "IntegrationAccountSession9748", + "IntegrationAccountSession1198", + "IntegrationAccountSession4354" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json index f549025d2d09..9aebbf8db271 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/DeleteIntegrationAccountSessionOnAccountDeletion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4177?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDE3Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "4ca93b14-2543-41ea-b67a-a98291bbb7d1" + "f26a8862-91b5-4257-b462-46229264f2be" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134\",\r\n \"name\": \"IntegrationAccount4134\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4177\",\r\n \"name\": \"IntegrationAccount4177\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:37 GMT" + "Wed, 01 Mar 2017 21:57:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:1b58ab60-aacc-4862-b54b-a8536971e470" + "westus:9dc67d8d-9b56-43f3-bdd0-f92a1825b785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1187" ], "x-ms-correlation-request-id": [ - "2ec8e2cd-476d-4f00-9050-14374a8cad6e" + "eadc3ee8-ec42-488e-99a8-0e8f67a78a2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205237Z:2ec8e2cd-476d-4f00-9050-14374a8cad6e" + "WESTUS2:20170301T215716Z:eadc3ee8-ec42-488e-99a8-0e8f67a78a2a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134/sessions/IntegrationAccountSession6259?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjI1OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4177/sessions/IntegrationAccountSession3321?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDE3Ny9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMzMyMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession6259\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession3321\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "135" ], "x-ms-client-request-id": [ - "e05e566d-261a-4938-b362-c1caddce849c" + "6bdbcf38-e293-48c0-a330-4b602ba6cff5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:38.2703949Z\",\r\n \"changedTime\": \"2017-03-01T20:52:38.2703949Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134/sessions/IntegrationAccountSession6259\",\r\n \"name\": \"IntegrationAccountSession6259\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053272071711\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:16.6928771Z\",\r\n \"changedTime\": \"2017-03-01T21:57:16.6928771Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4177/sessions/IntegrationAccountSession3321\",\r\n \"name\": \"IntegrationAccountSession3321\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014487846823\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,47 +99,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:37 GMT" + "Wed, 01 Mar 2017 21:57:15 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053272071711\"" + "\"08587132014487846823\"" ], "x-ms-request-id": [ - "westus:5495305b-31ca-4843-b9b3-2063d8b907ab" + "westus:0da4b4ed-f3fd-48fe-8bf1-d45169cbfd6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1186" ], "x-ms-correlation-request-id": [ - "b1166cdd-7c13-4ad6-b2f8-e0212ecfb223" + "d2f5fb78-7185-4f7f-9a54-36221e27b0b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205238Z:b1166cdd-7c13-4ad6-b2f8-e0212ecfb223" + "WESTUS2:20170301T215716Z:d2f5fb78-7185-4f7f-9a54-36221e27b0b3" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEzND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4177?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDE3Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7abed20e-af49-4860-99d2-733fc0c2fa77" + "aa7472aa-44bf-4a0d-874d-f6d879a33dd0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -154,47 +154,47 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:38 GMT" + "Wed, 01 Mar 2017 21:57:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5fe246e1-afef-4df4-a080-8a9151358f4d" + "westus:10f8718b-4791-4c16-9b12-35cdcb9350a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1185" ], "x-ms-correlation-request-id": [ - "13cefc2d-3dd2-4ac8-811a-68a6911c9cc6" + "782bc223-c5a1-4011-9f48-11d35105202e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205238Z:13cefc2d-3dd2-4ac8-811a-68a6911c9cc6" + "WESTUS2:20170301T215717Z:782bc223-c5a1-4011-9f48-11d35105202e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4134/sessions/IntegrationAccountSession6259?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDEzNC9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjI1OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4177/sessions/IntegrationAccountSession3321?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDE3Ny9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMzMyMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f30974a2-5acc-48f6-9d64-7aa21451a68b" + "240bae32-6576-4114-80eb-ee656e8b3d38" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount4134' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount4177' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -209,7 +209,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:38 GMT" + "Wed, 01 Mar 2017 21:57:16 GMT" ], "Pragma": [ "no-cache" @@ -218,13 +218,13 @@ "gateway" ], "x-ms-request-id": [ - "ba0b801f-1d10-4359-9448-946b6bbfd111" + "57d29661-8da8-449e-bab5-a30dddb0949c" ], "x-ms-correlation-request-id": [ - "ba0b801f-1d10-4359-9448-946b6bbfd111" + "57d29661-8da8-449e-bab5-a30dddb0949c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205238Z:ba0b801f-1d10-4359-9448-946b6bbfd111" + "WESTUS2:20170301T215717Z:57d29661-8da8-449e-bab5-a30dddb0949c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,8 +235,8 @@ ], "Names": { "DeleteIntegrationAccountSessionOnAccountDeletion": [ - "IntegrationAccount4134", - "IntegrationAccountSession6259" + "IntegrationAccount4177", + "IntegrationAccountSession3321" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json index 85530ade7a7b..c05019309432 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSessionScenarioTests/ListIntegrationAccountSessions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -13,17 +13,17 @@ "91" ], "x-ms-client-request-id": [ - "a32eda93-c6c9-4bcc-8bd0-990e7eecee8d" + "d8543539-4dc0-4777-8f82-87a103917f79" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153\",\r\n \"name\": \"IntegrationAccount6153\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161\",\r\n \"name\": \"IntegrationAccount5161\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -38,34 +38,34 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:44 GMT" + "Wed, 01 Mar 2017 21:57:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:50325dca-9aca-475b-be39-badc3562737b" + "westus:a7989ad1-5c72-41a3-9401-9c17876c7a79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "1c9d2e66-4050-4012-b2d6-1c0c5d5d1a16" + "79380a47-a6d8-4aa9-a9cb-c278a61c2ee7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205244Z:1c9d2e66-4050-4012-b2d6-1c0c5d5d1a16" + "WESTUS2:20170301T215721Z:79380a47-a6d8-4aa9-a9cb-c278a61c2ee7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession9437?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uOTQzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession9663?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uOTY2Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession9437\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession9663\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "135" ], "x-ms-client-request-id": [ - "8d744b98-9466-4460-a128-2aa5afb9b44d" + "c1590848-fa4e-4f2b-91d1-e78eba3523d0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.7399524Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.7399524Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession9437\",\r\n \"name\": \"IntegrationAccountSession9437\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053207376064\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:21.8642439Z\",\r\n \"changedTime\": \"2017-03-01T21:57:21.8642439Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession9663\",\r\n \"name\": \"IntegrationAccountSession9663\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014436133226\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -99,37 +99,37 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:44 GMT" + "Wed, 01 Mar 2017 21:57:21 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053207376064\"" + "\"08587132014436133226\"" ], "x-ms-request-id": [ - "westus:86e29bd3-1ee4-44c7-9783-e4035eb3727e" + "westus:86df8b7d-6654-4293-88ee-25776fcfd2b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-correlation-request-id": [ - "a68e9961-5f79-4bde-b665-f04ab7f1813f" + "a552c2af-630c-4125-b2bf-478497c48fb3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205244Z:a68e9961-5f79-4bde-b665-f04ab7f1813f" + "WESTUS2:20170301T215721Z:a552c2af-630c-4125-b2bf-478497c48fb3" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7148?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzE0OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession6437?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNjQzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7148\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession6437\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -138,17 +138,17 @@ "135" ], "x-ms-client-request-id": [ - "8edab64d-808d-4af1-9c55-71999dbbe071" + "ea06b9cc-19d1-409b-a7f3-e5ee0e5d3913" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.8237327Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.8237327Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7148\",\r\n \"name\": \"IntegrationAccountSession7148\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053206538375\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:22.0199793Z\",\r\n \"changedTime\": \"2017-03-01T21:57:22.0199793Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession6437\",\r\n \"name\": \"IntegrationAccountSession6437\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014434575868\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -163,37 +163,37 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:44 GMT" + "Wed, 01 Mar 2017 21:57:21 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053206538375\"" + "\"08587132014434575868\"" ], "x-ms-request-id": [ - "westus:5f70540c-28fc-40d4-ba63-e466406d6593" + "westus:22b7f9d6-ab5d-4b8b-9f4f-d41a114a2665" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-correlation-request-id": [ - "4131964e-8520-49ef-9b8e-3589c0fed845" + "04b1d3cd-4cd3-46c7-b7b6-78b627753f14" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205244Z:4131964e-8520-49ef-9b8e-3589c0fed845" + "WESTUS2:20170301T215721Z:04b1d3cd-4cd3-46c7-b7b6-78b627753f14" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7012?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1My9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uNzAxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession3603?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2MS9zZXNzaW9ucy9JbnRlZ3JhdGlvbkFjY291bnRTZXNzaW9uMzYwMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession7012\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"content\": \"123\"\r\n },\r\n \"tags\": {\r\n \"IntegrationAccountSession\": \"IntegrationAccountSession3603\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -202,17 +202,17 @@ "135" ], "x-ms-client-request-id": [ - "b623f13b-093c-4e8a-bfbd-8427cc448cf4" + "f60e0ca8-b9b0-4351-b7fe-32b77981784f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.8939418Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.8939418Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7012\",\r\n \"name\": \"IntegrationAccountSession7012\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053205836282\\\"\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:22.2130969Z\",\r\n \"changedTime\": \"2017-03-01T21:57:22.2130969Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession3603\",\r\n \"name\": \"IntegrationAccountSession3603\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014432644715\\\"\"\r\n}", "ResponseHeaders": { "Content-Length": [ "438" @@ -227,50 +227,50 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:44 GMT" + "Wed, 01 Mar 2017 21:57:21 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"08587132053205836282\"" + "\"08587132014432644715\"" ], "x-ms-request-id": [ - "westus:50faa815-a061-43c9-b668-5b85b2ab7cc0" + "westus:12389f5d-9057-44ca-994d-1f3d981ada5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1189" ], "x-ms-correlation-request-id": [ - "a212e58e-0161-49d8-addf-22f0c05f2c22" + "f7f763a8-3f1b-4a6b-aebc-d1d2275e7ebe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205244Z:a212e58e-0161-49d8-addf-22f0c05f2c22" + "WESTUS2:20170301T215722Z:f7f763a8-3f1b-4a6b-aebc-d1d2275e7ebe" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1My9zZXNzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2MS9zZXNzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb2bd4ee-be05-4581-9380-dd66fcf2d327" + "4a7a4d16-f1ee-4343-a2e9-973b6605ab97" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.8939418Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.8948715Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7012\",\r\n \"name\": \"IntegrationAccountSession7012\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053205836282\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.8237327Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.8244216Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession7148\",\r\n \"name\": \"IntegrationAccountSession7148\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053206538375\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T20:52:44.7399524Z\",\r\n \"changedTime\": \"2017-03-01T20:52:44.7403009Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153/sessions/IntegrationAccountSession9437\",\r\n \"name\": \"IntegrationAccountSession9437\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132053207376064\\\"\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:22.2130969Z\",\r\n \"changedTime\": \"2017-03-01T21:57:22.2133574Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession3603\",\r\n \"name\": \"IntegrationAccountSession3603\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014432644715\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:22.0199793Z\",\r\n \"changedTime\": \"2017-03-01T21:57:22.0208027Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession6437\",\r\n \"name\": \"IntegrationAccountSession6437\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014434575868\\\"\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2017-03-01T21:57:21.8642439Z\",\r\n \"changedTime\": \"2017-03-01T21:57:21.864496Z\",\r\n \"content\": \"123\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161/sessions/IntegrationAccountSession9663\",\r\n \"name\": \"IntegrationAccountSession9663\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/sessions\",\r\n \"etag\": \"\\\"08587132014436133226\\\"\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -282,7 +282,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:44 GMT" + "Wed, 01 Mar 2017 21:57:21 GMT" ], "Pragma": [ "no-cache" @@ -295,38 +295,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:86a19de5-8b25-4202-abb6-5d35f6115461" + "westus:3017f67e-1f11-498f-9bc3-4bdf727ec6c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14660" ], "x-ms-correlation-request-id": [ - "e2eb2f51-5cfa-4bb6-9e77-4b37fa668364" + "9ed97e57-fb37-479c-8592-9cae2a19489e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205245Z:e2eb2f51-5cfa-4bb6-9e77-4b37fa668364" + "WESTUS2:20170301T215722Z:9ed97e57-fb37-479c-8592-9cae2a19489e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6153?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE1Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5161?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e580cd4-d570-477b-bf9e-d76047a40eac" + "647c6b0a-6491-432f-920e-a65c74ff3d0c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Logic.LogicManagementClient/2.0.0" + "Microsoft.Azure.Management.Logic.LogicManagementClient/2.1.0" ] }, "ResponseBody": "", @@ -341,25 +341,25 @@ "no-cache" ], "Date": [ - "Wed, 01 Mar 2017 20:52:45 GMT" + "Wed, 01 Mar 2017 21:57:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2aa5e746-7fa2-45b3-bda7-cae0c37b70c0" + "westus:f5b199a3-54d4-4be1-9da5-9a0627edbef8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1188" ], "x-ms-correlation-request-id": [ - "4b91fa09-dc99-4e1e-9abd-029ca71e8f29" + "b61284d2-9eb2-4401-8278-b65c6db79b0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170301T205245Z:4b91fa09-dc99-4e1e-9abd-029ca71e8f29" + "WESTUS2:20170301T215723Z:b61284d2-9eb2-4401-8278-b65c6db79b0b" ] }, "StatusCode": 200 @@ -367,10 +367,10 @@ ], "Names": { "ListIntegrationAccountSessions": [ - "IntegrationAccount6153", - "IntegrationAccountSession9437", - "IntegrationAccountSession7148", - "IntegrationAccountSession7012" + "IntegrationAccount5161", + "IntegrationAccountSession9663", + "IntegrationAccountSession6437", + "IntegrationAccountSession3603" ] }, "Variables": { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json index addd2cd03cb1..d8d115627e5a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json @@ -1,5 +1,5 @@ { - "version": "2.0.0", + "version": "2.1.0", "description": "Microsoft Azure LogicApps Management Library", "authors": [ "Microsoft" ], From 5c352323e45479cd9a7d2192303783ee669b83c6 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Wed, 1 Mar 2017 15:25:55 -0800 Subject: [PATCH 062/137] Updating missing IconUrl for PowerBI package, it defaults to nuget Icon, while all other sdkg package Microsoft Icon --- .../project.json | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json index 0574cc086571..32e3ce3a410c 100644 --- a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json +++ b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json @@ -4,19 +4,20 @@ "authors": [ "Microsoft" ], - "packOptions": { - "tags": [ - "Microsoft Azure Power BI Embedded management", - "Power BI Embedded", - "Power BI Embedded management", - "REST HTTP client", - "windowsazureofficial", - "netcore451511" - ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true - }, + "packOptions": { + "tags": [ + "Microsoft Azure Power BI Embedded management", + "Power BI Embedded", + "Power BI Embedded management", + "REST HTTP client", + "windowsazureofficial", + "netcore451511" + ], + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", + "requireLicenseAcceptance": true + }, "buildOptions": { "delaySign": true, "publicSign": false, From 68d74a41c120659401b2549d965a302e6a7cc853 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Wed, 1 Mar 2017 18:23:13 -0800 Subject: [PATCH 063/137] adding updates to CustomerInsights package --- .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 30 +++++++++++-------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/Properties/AssemblyInfo.cs b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/Properties/AssemblyInfo.cs index eba9e08ca9bc..df9e1b35a369 100644 --- a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("Microsoft Azure CustomerInsights Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure CustomerInsights management functions for managing the Microsoft Azure CustomerInsights service.")] -[assembly: AssemblyVersion("0.1.0.0")] +[assembly: AssemblyVersion("0.9.0.0")] [assembly: AssemblyFileVersion("0.1.0.0")] [assembly: AssemblyConfiguration("")] diff --git a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json index 982218b4d086..1fe3eb632101 100644 --- a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json +++ b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json @@ -6,7 +6,7 @@ "packOptions": { "summary": "Provides developers with libraries to create and manage Namespaces ans manage Authorization Rules at both the resource levels. Note: This client library is for CustomerInsights under Azure Resource Manager.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure CustomerInsights Management", "CustomerInsights", "CustomerInsights management", "REST HTTP client", "windowsazureofficial" ], + "tags": [ "Microsoft Azure CustomerInsights Management", "CustomerInsights", "CustomerInsights management", "REST HTTP client", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -19,7 +19,8 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -30,24 +31,27 @@ "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Collections": "4.0.11", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Net.Http": "4.1.0", + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1" } } From a04dc100209e40352b9e0688007c58c9905ed4ca Mon Sep 17 00:00:00 2001 From: matthchr Date: Thu, 2 Mar 2017 10:48:16 -0800 Subject: [PATCH 064/137] Update Batch netcore dependencies and package version --- src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs | 4 ++-- src/Batch/Client/Src/Azure.Batch/project.json | 6 ++---- .../Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs index c6f14c005099..79ad48f0ab73 100644 --- a/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs +++ b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs @@ -20,8 +20,8 @@ [assembly: AssemblyTitle("Microsoft.Azure.Batch")] [assembly: AssemblyDescription("Client library for interacting with the Azure Batch service.")] -[assembly: AssemblyVersion("6.0.1.0")] -[assembly: AssemblyFileVersion("6.0.1.0")] +[assembly: AssemblyVersion("6.1.0.0")] +[assembly: AssemblyFileVersion("6.1.0.0")] [assembly: AssemblyCompany("Microsoft Corporation")] [assembly: AssemblyProduct("Microsoft Azure")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation. All rights reserved.")] diff --git a/src/Batch/Client/Src/Azure.Batch/project.json b/src/Batch/Client/Src/Azure.Batch/project.json index 739b0b2440d8..e240d64439d3 100644 --- a/src/Batch/Client/Src/Azure.Batch/project.json +++ b/src/Batch/Client/Src/Azure.Batch/project.json @@ -1,5 +1,5 @@ { - "version": "6.0.1", + "version": "6.1.0", "name": "Azure.Batch", "description": "This client library provides access to the Microsoft Azure Batch service.", "authors": [ "Microsoft" ], @@ -42,9 +42,7 @@ "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.AspNetCore.WebUtilities": "1.0.0", "System.Diagnostics.Tools": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Threading.Tasks": "4.3.0" + "NETStandard.Library": "1.6.1" } } } diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json index 389912829d13..a8abe7ce6e63 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/project.json @@ -26,7 +26,7 @@ "dotnet-test-xunit": "2.2.0-preview2-build1029", "Azure.Batch": { "target": "project", - "version": "6.0.1" + "version": "6.1.0" }, "Common": "1.0.0" } From b677207902425ec25001629ca18e4d3b9b875c3c Mon Sep 17 00:00:00 2001 From: matthchr Date: Thu, 2 Mar 2017 15:36:19 -0800 Subject: [PATCH 065/137] Remove two files which were accidentally readded - These two credentials files were removed but accidentally brought back during an earlier merge. --- .../Azure.Batch/Protocol/BatchCredentials.cs | 76 ------------------- .../Protocol/BatchTokenCredential.cs | 74 ------------------ 2 files changed, 150 deletions(-) delete mode 100644 src/Batch/Client/Src/Azure.Batch/Protocol/BatchCredentials.cs delete mode 100644 src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenCredential.cs diff --git a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchCredentials.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchCredentials.cs deleted file mode 100644 index f51a456f2b2f..000000000000 --- a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchCredentials.cs +++ /dev/null @@ -1,76 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. - -// - -namespace Microsoft.Azure.Batch.Protocol -{ - using System; - using System.Linq; - using System.Threading.Tasks; - using System.Net.Http; - using System.Threading; - using System.Globalization; - using System.Collections.Generic; - using System.Security.Cryptography; - using System.Text; - using System.Net.Http.Headers; - using Rest; - - /// - /// Base class for credentials used to authenticate a HTTP request to Azure Batch. - /// - public abstract class BatchCredentials : ServiceClientCredentials - { - /// - /// Signs a HTTP request with the current . - /// - /// The HTTP request to be signed. - /// A for the request. - /// A representing the asynchronous signing operation. - public abstract Task SignRequestAsync(HttpRequestMessage httpRequest, CancellationToken cancellationToken); - } - - /// - /// A that adds authentication to outgoing requests using a . - /// - public class BatchAuthenticationDelegatingHandler : DelegatingHandler - { - private readonly BatchCredentials credential; - - /// - /// Initializes a new instance of the class. - /// - /// The to be used for authenticating requests made through this handler. - public BatchAuthenticationDelegatingHandler(BatchCredentials credential) - { - this.credential = credential; - } - - /// - /// Adds authentication to a HTTP request then sends it to the inner handler to send to the server - /// as an asynchronous operation. - /// - /// The HTTP request message to send to the server. - /// A cancellation token to cancel the operation. - /// The response to the HTTP request - protected override async Task SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - { - await credential.SignRequestAsync(request, cancellationToken).ConfigureAwait(false); - - return await base.SendAsync(request, cancellationToken).ConfigureAwait(false); - } - } -} \ No newline at end of file diff --git a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenCredential.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenCredential.cs deleted file mode 100644 index 28da833d8516..000000000000 --- a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenCredential.cs +++ /dev/null @@ -1,74 +0,0 @@ -// -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. - -// - -// Warning: This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if the -// code is regenerated. - -namespace Microsoft.Azure.Batch.Protocol -{ - using Microsoft.Azure.Batch.Utils; - using Microsoft.Rest; - using System; - using System.Collections.Generic; - using System.Linq; - using System.Net.Http; - using System.Net.Http.Headers; - using System.Text; - using System.Threading.Tasks; - - /// - /// BatchCredentials which implement Azure AD auth - /// - internal class BatchTokenCredential : BatchCredentials - { - /// - /// The default authorization scheme. - /// - private const string DefaultAuthorizationScheme = "Bearer"; - - /// - /// Auth token - /// - public string Token { get; private set; } - - /// - /// Constructor - /// - /// The OAuth authentication token. - public BatchTokenCredential(string token) - { - this.Token = token; - } - - /// - /// Sign request - /// - /// The HTTP request to be signed. - /// A for the request. - /// A representing the asynchronous signing operation. - public override Task SignRequestAsync(HttpRequestMessage httpRequest, System.Threading.CancellationToken cancellationToken) - { - if (httpRequest != null) - { - httpRequest.Headers.Authorization = new AuthenticationHeaderValue(DefaultAuthorizationScheme, this.Token); - } - return Async.CompletedTask; - } - } -} From f81d849aff55a29f384badb4487965e7c4c6d4fd Mon Sep 17 00:00:00 2001 From: Nathan Fan Date: Thu, 2 Mar 2017 17:55:46 -0800 Subject: [PATCH 066/137] Import export tests --- .../Generated/DatabasesOperations.cs | 506 ++++- .../DatabasesOperationsExtensions.cs | 224 +- .../Generated/ElasticPoolsOperations.cs | 4 +- .../ElasticPoolsOperationsExtensions.cs | 8 +- .../Generated/IDatabasesOperations.cs | 136 +- .../Generated/IElasticPoolsOperations.cs | 4 +- .../Generated/IImportExportOperations.cs | 119 + .../IRecommendedElasticPoolsOperations.cs | 2 +- .../Generated/IServersOperations.cs | 62 +- .../Generated/ISqlManagementClient.cs | 5 + .../Generated/ImportExportOperations.cs | 654 ++++++ .../ImportExportOperationsExtensions.cs | 174 ++ .../Generated/Models/AuthenticationType.cs | 31 + .../Models/ExportRequestParameters.cs | 119 + .../Models/ImportExportOperationResponse.cs | 141 ++ ...tExportOperationResponsePropertiesModel.cs | 114 + .../ImportExtensionRequestParameters.cs | 153 ++ .../Models/ImportRequestParameters.cs | 113 + .../Generated/Models/StorageKeyType.cs | 31 + .../RecommendedElasticPoolsOperations.cs | 2 +- ...mmendedElasticPoolsOperationsExtensions.cs | 4 +- .../Generated/ServersOperations.cs | 239 +- .../Generated/ServersOperationsExtensions.cs | 100 +- .../Generated/SqlManagementClient.cs | 6 + .../Sql.Tests/ImportExportScenarioTests.cs | 226 ++ .../TestExportImportNewDatabase.json | 1871 ++++++++++++++++ ...estImportExistingDatabaseGetOperation.json | 1926 +++++++++++++++++ .../SqlManagement/Sql.Tests/project.json | 2 +- 28 files changed, 6955 insertions(+), 21 deletions(-) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestExportImportNewDatabase.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportExistingDatabaseGetOperation.json diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs index 5c49da7dcad5..92363832961e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs @@ -50,6 +50,65 @@ internal DatabasesOperations(SqlManagementClient client) /// public SqlManagementClient Client { get; private set; } + /// + /// Imports a bacpac into an existing database. The existing database must be + /// empty. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Exports a database to a bacpac. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Deletes a database replication link. Cannot be done during failover. /// @@ -1374,7 +1433,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Returns a list of databases by server. + /// Returns a list of databases in a server. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -2830,6 +2889,451 @@ internal DatabasesOperations(SqlManagementClient client) return _result; } + /// + /// Imports a bacpac into an existing database. The existing database must be + /// empty. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + if (parameters == null) + { + parameters = new ImportExtensionRequestParameters(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginImport", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/extensions/import").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Exports a database to a bacpac. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginExport", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Failover the database replication link. /// diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs index 184c3c20eb7c..a4ac85caca0e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs @@ -23,6 +23,116 @@ namespace Microsoft.Azure.Management.Sql /// public static partial class DatabasesOperationsExtensions { + /// + /// Imports a bacpac into an existing database. The existing database must be + /// empty. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + public static ImportExportOperationResponse Import(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters) + { + return operations.ImportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Imports a bacpac into an existing database. The existing database must be + /// empty. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The cancellation token. + /// + public static async Task ImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Exports a database to a bacpac. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + public static ImportExportOperationResponse Export(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters) + { + return operations.ExportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Exports a database to a bacpac. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + /// + /// The cancellation token. + /// + public static async Task ExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Deletes a database replication link. Cannot be done during failover. /// @@ -578,7 +688,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG } /// - /// Returns a list of databases by server. + /// Returns a list of databases in a server. /// /// /// The operations group for this extension method. @@ -599,7 +709,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG } /// - /// Returns a list of databases by server. + /// Returns a list of databases in a server. /// /// /// The operations group for this extension method. @@ -929,6 +1039,116 @@ public static IEnumerable ListTransparentData } } + /// + /// Imports a bacpac into an existing database. The existing database must be + /// empty. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + public static ImportExportOperationResponse BeginImport(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters) + { + return operations.BeginImportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Imports a bacpac into an existing database. The existing database must be + /// empty. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The cancellation token. + /// + public static async Task BeginImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Exports a database to a bacpac. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + public static ImportExportOperationResponse BeginExport(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters) + { + return operations.BeginExportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Exports a database to a bacpac. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + /// + /// The cancellation token. + /// + public static async Task BeginExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Failover the database replication link. /// diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs index 183f287aac94..b13ca86960b2 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs @@ -455,7 +455,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) } /// - /// Returns elastic pools. + /// Returns a list of elastic pools in a server. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -1263,7 +1263,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) } /// - /// Returns a database inside of an elastic pool. + /// Returns a list of databases in an elastic pool. /// /// /// The name of the resource group that contains the resource. You can obtain diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs index 7456de6e6220..032d79fb0997 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs @@ -171,7 +171,7 @@ public static ElasticPool Get(this IElasticPoolsOperations operations, string re } /// - /// Returns elastic pools. + /// Returns a list of elastic pools in a server. /// /// /// The operations group for this extension method. @@ -189,7 +189,7 @@ public static IEnumerable ListByServer(this IElasticPoolsOperations } /// - /// Returns elastic pools. + /// Returns a list of elastic pools in a server. /// /// /// The operations group for this extension method. @@ -363,7 +363,7 @@ public static Database GetDatabase(this IElasticPoolsOperations operations, stri } /// - /// Returns a database inside of an elastic pool. + /// Returns a list of databases in an elastic pool. /// /// /// The operations group for this extension method. @@ -384,7 +384,7 @@ public static IEnumerable ListDatabases(this IElasticPoolsOperations o } /// - /// Returns a database inside of an elastic pool. + /// Returns a list of databases in an elastic pool. /// /// /// The operations group for this extension method. diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs index d53dddb15acf..dbf23eee5e6a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs @@ -23,6 +23,73 @@ namespace Microsoft.Azure.Management.Sql /// public partial interface IDatabasesOperations { + /// + /// Imports a bacpac into an existing database. The existing database + /// must be empty. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports a database to a bacpac. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a database replication link. Cannot be done during /// failover. @@ -364,7 +431,7 @@ public partial interface IDatabasesOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns a list of databases by server. + /// Returns a list of databases in a server. /// /// /// The name of the resource group that contains the resource. You can @@ -586,6 +653,73 @@ public partial interface IDatabasesOperations /// Task>> ListTransparentDataEncryptionActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Imports a bacpac into an existing database. The existing database + /// must be empty. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports a database to a bacpac. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Failover the database replication link. /// /// diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs index 2e4f382c73d7..59eb6694f9cc 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs @@ -115,7 +115,7 @@ public partial interface IElasticPoolsOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns elastic pools. + /// Returns a list of elastic pools in a server. /// /// /// The name of the resource group that contains the resource. You can @@ -235,7 +235,7 @@ public partial interface IElasticPoolsOperations /// Task> GetDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns a database inside of an elastic pool. + /// Returns a list of databases in an elastic pool. /// /// /// The name of the resource group that contains the resource. You can diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs new file mode 100644 index 000000000000..fd5e4d8b4204 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs @@ -0,0 +1,119 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ImportExportOperations operations. + /// + public partial interface IImportExportOperations + { + /// + /// The status of an import operation given the operation ID. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The of an import operation given the operation ID. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The operation ID associated with the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The status of an import or export operation on a database given the + /// operation ID. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database + /// + /// + /// The operation ID associated with the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs index fdd4850634a0..ec15efa53477 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs @@ -114,7 +114,7 @@ public partial interface IRecommendedElasticPoolsOperations /// Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns a database inside of a recommented elastic pool. + /// Returns a list of databases inside a recommented elastic pool. /// /// /// The name of the resource group that contains the resource. You can diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs index 05b9ef58a465..a10ece32416b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs @@ -141,6 +141,36 @@ public partial interface IServersOperations /// Task>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Returns a list of servers. /// /// @@ -241,7 +271,7 @@ public partial interface IServersOperations /// Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Returns a server. + /// Returns a list of servers in a resource group. /// /// /// The name of the resource group that contains the resource. You can @@ -348,6 +378,36 @@ public partial interface IServersOperations /// Thrown when a required parameter is null /// Task>> ListServiceObjectivesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs index 4263d5c0d75a..4a84ce395ad8 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs @@ -80,6 +80,11 @@ public partial interface ISqlManagementClient : System.IDisposable /// IDatabasesOperations Databases { get; } + /// + /// Gets the IImportExportOperations. + /// + IImportExportOperations ImportExportOperations { get; } + /// /// Gets the IElasticPoolsOperations. /// diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs new file mode 100644 index 000000000000..9f4bc0efd326 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs @@ -0,0 +1,654 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ImportExportOperations operations. + /// + internal partial class ImportExportOperations : IServiceOperations, IImportExportOperations + { + /// + /// Initializes a new instance of the ImportExportOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ImportExportOperations(SqlManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the SqlManagementClient + /// + public SqlManagementClient Client { get; private set; } + + /// + /// The status of an import operation given the operation ID. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/importExportOperationResults").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// The of an import operation given the operation ID. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The operation ID associated with the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("operationId", operationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetByServer", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/importExportOperationResults/{operationId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(operationId, Client.SerializationSettings).Trim('"'))); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// The status of an import or export operation on a database given the + /// operation ID. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database + /// + /// + /// The operation ID associated with the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("operationId", operationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetByDatabase", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/importExportOperationResults/{operationId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(operationId, Client.SerializationSettings).Trim('"'))); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs new file mode 100644 index 000000000000..aebe5e1d9166 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs @@ -0,0 +1,174 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ImportExportOperations. + /// + public static partial class ImportExportOperationsExtensions + { + /// + /// The status of an import operation given the operation ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + public static IEnumerable ListByServer(this IImportExportOperations operations, string resourceGroupName, string serverName) + { + return operations.ListByServerAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); + } + + /// + /// The status of an import operation given the operation ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByServerAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// The of an import operation given the operation ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The operation ID associated with the operation. + /// + public static ImportExportOperationResponse GetByServer(this IImportExportOperations operations, string resourceGroupName, string serverName, System.Guid operationId) + { + return operations.GetByServerAsync(resourceGroupName, serverName, operationId).GetAwaiter().GetResult(); + } + + /// + /// The of an import operation given the operation ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The operation ID associated with the operation. + /// + /// + /// The cancellation token. + /// + public static async Task GetByServerAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, System.Guid operationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetByServerWithHttpMessagesAsync(resourceGroupName, serverName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// The status of an import or export operation on a database given the + /// operation ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database + /// + /// + /// The operation ID associated with the operation. + /// + public static ImportExportOperationResponse GetByDatabase(this IImportExportOperations operations, string resourceGroupName, string serverName, string databaseName, System.Guid operationId) + { + return operations.GetByDatabaseAsync(resourceGroupName, serverName, databaseName, operationId).GetAwaiter().GetResult(); + } + + /// + /// The status of an import or export operation on a database given the + /// operation ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database + /// + /// + /// The operation ID associated with the operation. + /// + /// + /// The cancellation token. + /// + public static async Task GetByDatabaseAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, string databaseName, System.Guid operationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetByDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs new file mode 100644 index 000000000000..f3d71bbe3f4e --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for AuthenticationType. + /// + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum AuthenticationType + { + [EnumMember(Value = "SQL")] + SQL, + [EnumMember(Value = "ADPassword")] + ADPassword + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs new file mode 100644 index 000000000000..53db0bb7ec6d --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs @@ -0,0 +1,119 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Export database parameters. + /// + public partial class ExportRequestParameters + { + /// + /// Initializes a new instance of the ExportRequestParameters class. + /// + public ExportRequestParameters() { } + + /// + /// Initializes a new instance of the ExportRequestParameters class. + /// + /// The type of the storage key to use. + /// Valid values are StorageAccessKey and SharedAccessKey. Possible + /// values include: 'StorageAccessKey', 'SharedAccessKey' + /// The storage key to use. + /// The storage uri to use. + /// The name of the SQL + /// administrator. + /// The password of the SQL + /// administrator. + /// The authentication type - if not + /// specified, will default to SQL. Possible values include: 'SQL', + /// 'ADPassword' + public ExportRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, AuthenticationType? authenticationType = default(AuthenticationType?)) + { + StorageKeyType = storageKeyType; + StorageKey = storageKey; + StorageUri = storageUri; + AdministratorLogin = administratorLogin; + AdministratorLoginPassword = administratorLoginPassword; + AuthenticationType = authenticationType; + } + + /// + /// Gets or sets the type of the storage key to use. Valid values are + /// StorageAccessKey and SharedAccessKey. Possible values include: + /// 'StorageAccessKey', 'SharedAccessKey' + /// + [JsonProperty(PropertyName = "storageKeyType")] + public StorageKeyType StorageKeyType { get; set; } + + /// + /// Gets or sets the storage key to use. + /// + [JsonProperty(PropertyName = "storageKey")] + public string StorageKey { get; set; } + + /// + /// Gets or sets the storage uri to use. + /// + [JsonProperty(PropertyName = "storageUri")] + public string StorageUri { get; set; } + + /// + /// Gets or sets the name of the SQL administrator. + /// + [JsonProperty(PropertyName = "administratorLogin")] + public string AdministratorLogin { get; set; } + + /// + /// Gets or sets the password of the SQL administrator. + /// + [JsonProperty(PropertyName = "administratorLoginPassword")] + public string AdministratorLoginPassword { get; set; } + + /// + /// Gets or sets the authentication type - if not specified, will + /// default to SQL. Possible values include: 'SQL', 'ADPassword' + /// + [JsonProperty(PropertyName = "authenticationType")] + public AuthenticationType? AuthenticationType { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StorageKey == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageKey"); + } + if (StorageUri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageUri"); + } + if (AdministratorLogin == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AdministratorLogin"); + } + if (AdministratorLoginPassword == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AdministratorLoginPassword"); + } + } + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs new file mode 100644 index 000000000000..68d3b5554d72 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs @@ -0,0 +1,141 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Response for Import/Export Get operation. + /// + [JsonTransformation] + public partial class ImportExportOperationResponse + { + /// + /// Initializes a new instance of the ImportExportOperationResponse + /// class. + /// + public ImportExportOperationResponse() { } + + /// + /// Initializes a new instance of the ImportExportOperationResponse + /// class. + /// + /// The id returned from the server. + /// The name returned from the server. + /// The type returned from the server. + /// The request type of the + /// operation. + /// The request type of the operation. + /// The name of the server. + /// The name of the database. + /// The status message returned from the + /// server. + /// The operation status last modified + /// time. + /// The operation queued time. + /// The blob uri. + /// The error message returned from the + /// server. + public ImportExportOperationResponse(string id = default(string), string name = default(string), string type = default(string), string requestType = default(string), System.Guid? requestId = default(System.Guid?), string serverName = default(string), string databaseName = default(string), string status = default(string), string lastModifiedTime = default(string), string queuedTime = default(string), string blobUri = default(string), string errorMessage = default(string)) + { + Id = id; + Name = name; + Type = type; + RequestType = requestType; + RequestId = requestId; + ServerName = serverName; + DatabaseName = databaseName; + Status = status; + LastModifiedTime = lastModifiedTime; + QueuedTime = queuedTime; + BlobUri = blobUri; + ErrorMessage = errorMessage; + } + + /// + /// Gets the id returned from the server. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; protected set; } + + /// + /// Gets the name returned from the server. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } + + /// + /// Gets the type returned from the server. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } + + /// + /// Gets the request type of the operation. + /// + [JsonProperty(PropertyName = "properties.requestType")] + public string RequestType { get; protected set; } + + /// + /// Gets the request type of the operation. + /// + [JsonProperty(PropertyName = "properties.requestId")] + public System.Guid? RequestId { get; protected set; } + + /// + /// Gets the name of the server. + /// + [JsonProperty(PropertyName = "properties.serverName")] + public string ServerName { get; protected set; } + + /// + /// Gets the name of the database. + /// + [JsonProperty(PropertyName = "properties.databaseName")] + public string DatabaseName { get; protected set; } + + /// + /// Gets the status message returned from the server. + /// + [JsonProperty(PropertyName = "properties.status")] + public string Status { get; protected set; } + + /// + /// Gets the operation status last modified time. + /// + [JsonProperty(PropertyName = "properties.lastModifiedTime")] + public string LastModifiedTime { get; protected set; } + + /// + /// Gets the operation queued time. + /// + [JsonProperty(PropertyName = "properties.queuedTime")] + public string QueuedTime { get; protected set; } + + /// + /// Gets the blob uri. + /// + [JsonProperty(PropertyName = "properties.blobUri")] + public string BlobUri { get; protected set; } + + /// + /// Gets the error message returned from the server. + /// + [JsonProperty(PropertyName = "properties.errorMessage")] + public string ErrorMessage { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs new file mode 100644 index 000000000000..8d9cef4e18a9 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Response for Import/Export Status operation. + /// + public partial class ImportExportOperationResponsePropertiesModel + { + /// + /// Initializes a new instance of the + /// ImportExportOperationResponsePropertiesModel class. + /// + public ImportExportOperationResponsePropertiesModel() { } + + /// + /// Initializes a new instance of the + /// ImportExportOperationResponsePropertiesModel class. + /// + /// The request type of the + /// operation. + /// The request type of the operation. + /// The name of the server. + /// The name of the database. + /// The status message returned from the + /// server. + /// The operation status last modified + /// time. + /// The operation queued time. + /// The blob uri. + /// The error message returned from the + /// server. + public ImportExportOperationResponsePropertiesModel(string requestType = default(string), System.Guid? requestId = default(System.Guid?), string serverName = default(string), string databaseName = default(string), string status = default(string), string lastModifiedTime = default(string), string queuedTime = default(string), string blobUri = default(string), string errorMessage = default(string)) + { + RequestType = requestType; + RequestId = requestId; + ServerName = serverName; + DatabaseName = databaseName; + Status = status; + LastModifiedTime = lastModifiedTime; + QueuedTime = queuedTime; + BlobUri = blobUri; + ErrorMessage = errorMessage; + } + + /// + /// Gets the request type of the operation. + /// + [JsonProperty(PropertyName = "requestType")] + public string RequestType { get; protected set; } + + /// + /// Gets the request type of the operation. + /// + [JsonProperty(PropertyName = "requestId")] + public System.Guid? RequestId { get; protected set; } + + /// + /// Gets the name of the server. + /// + [JsonProperty(PropertyName = "serverName")] + public string ServerName { get; protected set; } + + /// + /// Gets the name of the database. + /// + [JsonProperty(PropertyName = "databaseName")] + public string DatabaseName { get; protected set; } + + /// + /// Gets the status message returned from the server. + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; protected set; } + + /// + /// Gets the operation status last modified time. + /// + [JsonProperty(PropertyName = "lastModifiedTime")] + public string LastModifiedTime { get; protected set; } + + /// + /// Gets the operation queued time. + /// + [JsonProperty(PropertyName = "queuedTime")] + public string QueuedTime { get; protected set; } + + /// + /// Gets the blob uri. + /// + [JsonProperty(PropertyName = "blobUri")] + public string BlobUri { get; protected set; } + + /// + /// Gets the error message returned from the server. + /// + [JsonProperty(PropertyName = "errorMessage")] + public string ErrorMessage { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs new file mode 100644 index 000000000000..d3fea5fad863 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs @@ -0,0 +1,153 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Import database parameters. + /// + [JsonTransformation] + public partial class ImportExtensionRequestParameters + { + /// + /// Initializes a new instance of the ImportExtensionRequestParameters + /// class. + /// + public ImportExtensionRequestParameters() { } + + /// + /// Initializes a new instance of the ImportExtensionRequestParameters + /// class. + /// + /// The type of the storage key to use. + /// Valid values are StorageAccessKey and SharedAccessKey. Possible + /// values include: 'StorageAccessKey', 'SharedAccessKey' + /// The storage key to use. + /// The storage uri to use. + /// The name of the SQL + /// administrator. + /// The password of the SQL + /// administrator. + /// The name of the extension. + /// The type of the extension. + /// The authentication type - if not + /// specified, will default to SQL. Possible values include: 'SQL', + /// 'ADPassword' + public ImportExtensionRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string name = default(string), string type = default(string), AuthenticationType? authenticationType = default(AuthenticationType?)) + { + Name = name; + Type = type; + StorageKeyType = storageKeyType; + StorageKey = storageKey; + StorageUri = storageUri; + AdministratorLogin = administratorLogin; + AdministratorLoginPassword = administratorLoginPassword; + AuthenticationType = authenticationType; + } + /// + /// Static constructor for ImportExtensionRequestParameters class. + /// + static ImportExtensionRequestParameters() + { + OperationMode = "Import"; + } + + /// + /// Gets or sets the name of the extension. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the type of the extension. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the type of the storage key to use. Valid values are + /// StorageAccessKey and SharedAccessKey. Possible values include: + /// 'StorageAccessKey', 'SharedAccessKey' + /// + [JsonProperty(PropertyName = "properties.storageKeyType")] + public StorageKeyType StorageKeyType { get; set; } + + /// + /// Gets or sets the storage key to use. + /// + [JsonProperty(PropertyName = "properties.storageKey")] + public string StorageKey { get; set; } + + /// + /// Gets or sets the storage uri to use. + /// + [JsonProperty(PropertyName = "properties.storageUri")] + public string StorageUri { get; set; } + + /// + /// Gets or sets the name of the SQL administrator. + /// + [JsonProperty(PropertyName = "properties.administratorLogin")] + public string AdministratorLogin { get; set; } + + /// + /// Gets or sets the password of the SQL administrator. + /// + [JsonProperty(PropertyName = "properties.administratorLoginPassword")] + public string AdministratorLoginPassword { get; set; } + + /// + /// Gets or sets the authentication type - if not specified, will + /// default to SQL. Possible values include: 'SQL', 'ADPassword' + /// + [JsonProperty(PropertyName = "properties.authenticationType")] + public AuthenticationType? AuthenticationType { get; set; } + + /// + /// The type of Import/Export operation being performed. This is + /// always Import. + /// + [JsonProperty(PropertyName = "properties.operationMode")] + public static string OperationMode { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StorageKey == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageKey"); + } + if (StorageUri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageUri"); + } + if (AdministratorLogin == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AdministratorLogin"); + } + if (AdministratorLoginPassword == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AdministratorLoginPassword"); + } + } + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs new file mode 100644 index 000000000000..49bea5820b3d --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs @@ -0,0 +1,113 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Import database parameters. + /// + public partial class ImportRequestParameters : ExportRequestParameters + { + /// + /// Initializes a new instance of the ImportRequestParameters class. + /// + public ImportRequestParameters() { } + + /// + /// Initializes a new instance of the ImportRequestParameters class. + /// + /// The type of the storage key to use. + /// Valid values are StorageAccessKey and SharedAccessKey. Possible + /// values include: 'StorageAccessKey', 'SharedAccessKey' + /// The storage key to use. + /// The storage uri to use. + /// The name of the SQL + /// administrator. + /// The password of the SQL + /// administrator. + /// The name of the database to + /// import. + /// The edition for the database being + /// created. + /// The name of the service + /// objective to assign to the database. + /// The maximum size for the newly imported + /// database. + /// The authentication type - if not + /// specified, will default to SQL. Possible values include: 'SQL', + /// 'ADPassword' + public ImportRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string databaseName, string edition, string serviceObjectiveName, string maxSizeBytes, AuthenticationType? authenticationType = default(AuthenticationType?)) + : base(storageKeyType, storageKey, storageUri, administratorLogin, administratorLoginPassword, authenticationType) + { + DatabaseName = databaseName; + Edition = edition; + ServiceObjectiveName = serviceObjectiveName; + MaxSizeBytes = maxSizeBytes; + } + + /// + /// Gets or sets the name of the database to import. + /// + [JsonProperty(PropertyName = "databaseName")] + public string DatabaseName { get; set; } + + /// + /// Gets or sets the edition for the database being created. + /// + [JsonProperty(PropertyName = "edition")] + public string Edition { get; set; } + + /// + /// Gets or sets the name of the service objective to assign to the + /// database. + /// + [JsonProperty(PropertyName = "serviceObjectiveName")] + public string ServiceObjectiveName { get; set; } + + /// + /// Gets or sets the maximum size for the newly imported database. + /// + [JsonProperty(PropertyName = "maxSizeBytes")] + public string MaxSizeBytes { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (DatabaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "DatabaseName"); + } + if (Edition == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Edition"); + } + if (ServiceObjectiveName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ServiceObjectiveName"); + } + if (MaxSizeBytes == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MaxSizeBytes"); + } + } + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs new file mode 100644 index 000000000000..0f6972c3ea42 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Azure; + using Management; + using Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for StorageKeyType. + /// + [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + public enum StorageKeyType + { + [EnumMember(Value = "StorageAccessKey")] + StorageAccessKey, + [EnumMember(Value = "SharedAccessKey")] + SharedAccessKey + } +} + diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs index d533e5e9cd1a..193e5e01070e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs @@ -657,7 +657,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } /// - /// Returns a database inside of a recommented elastic pool. + /// Returns a list of databases inside a recommented elastic pool. /// /// /// The name of the resource group that contains the resource. You can obtain diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs index 6e67b54ebf77..2808c1b03aeb 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs @@ -168,7 +168,7 @@ public static IEnumerable List(this IRecommendedElasticP } /// - /// Returns a database inside of a recommented elastic pool. + /// Returns a list of databases inside a recommented elastic pool. /// /// /// The operations group for this extension method. @@ -189,7 +189,7 @@ public static IEnumerable ListDatabases(this IRecommendedElasticPoolsO } /// - /// Returns a database inside of a recommented elastic pool. + /// Returns a list of databases inside a recommented elastic pool. /// /// /// The operations group for this extension method. diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs index 5c749df4c98f..64b56154b5fa 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs @@ -856,6 +856,32 @@ internal ServersOperations(SqlManagementClient client) return _result; } + /// + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> ImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Returns a list of servers. /// @@ -1617,7 +1643,7 @@ internal ServersOperations(SqlManagementClient client) } /// - /// Returns a server. + /// Returns a list of servers in a resource group. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -2388,6 +2414,217 @@ internal ServersOperations(SqlManagementClient client) return _result; } + /// + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginImportDatabase", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs index 9e3cfead0e78..542c38da904e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs @@ -212,6 +212,54 @@ public static IEnumerable ListFirewallRules(this IServersOpe } } + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + public static ImportExportOperationResponse ImportDatabase(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters) + { + return operations.ImportDatabaseAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The cancellation token. + /// + public static async Task ImportDatabaseAsync(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Returns a list of servers. /// @@ -370,7 +418,7 @@ public static Server GetByResourceGroup(this IServersOperations operations, stri } /// - /// Returns a server. + /// Returns a list of servers in a resource group. /// /// /// The operations group for this extension method. @@ -385,7 +433,7 @@ public static IEnumerable ListByResourceGroup(this IServersOperations op } /// - /// Returns a server. + /// Returns a list of servers in a resource group. /// /// /// The operations group for this extension method. @@ -537,6 +585,54 @@ public static IEnumerable ListServiceObjectives(this IServersO } } + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + public static ImportExportOperationResponse BeginImportDatabase(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters) + { + return operations.BeginImportDatabaseAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The cancellation token. + /// + public static async Task BeginImportDatabaseAsync(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs index 70097e6d1096..f258532d2230 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs @@ -83,6 +83,11 @@ public partial class SqlManagementClient : ServiceClient, I /// public virtual IDatabasesOperations Databases { get; private set; } + /// + /// Gets the IImportExportOperations. + /// + public virtual IImportExportOperations ImportExportOperations { get; private set; } + /// /// Gets the IElasticPoolsOperations. /// @@ -296,6 +301,7 @@ private void Initialize() { Servers = new ServersOperations(this); Databases = new DatabasesOperations(this); + ImportExportOperations = new ImportExportOperations(this); ElasticPools = new ElasticPoolsOperations(this); RecommendedElasticPools = new RecommendedElasticPoolsOperations(this); BaseUri = new System.Uri("https://management.azure.com"); diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs new file mode 100644 index 000000000000..e94edf9fe8f4 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs @@ -0,0 +1,226 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.Azure.Test.HttpRecorder; +using System; +using System.Linq; +using System.Collections.Generic; +using System.Globalization; +using Xunit; + +namespace Sql.Tests +{ + public class ImportExportScenarioTests + { + [Fact] + public void TestImportExistingDatabaseGetOperation() + { + string testPrefix = "sqlcrudtest-"; + string suiteName = this.GetType().FullName; + string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + string dbName2 = SqlManagementTestUtilities.GenerateName(testPrefix); + string storageAccountName = SqlManagementTestUtilities.GenerateName("sqlcrudstorage"); + SqlManagementTestUtilities.RunTestInNewResourceGroup(suiteName, "TestImportExistingDatabaseGetOperation", testPrefix, (resClient, sqlClient, resourceGroup) => + { + string serverNameV12 = SqlManagementTestUtilities.GenerateName(testPrefix); + string login = "dummylogin"; + string password = "Un53cuRE!"; + string version12 = "12.0"; + Dictionary tags = new Dictionary() + { + { "tagKey1", "TagValue1" } + }; + + // Create server and set firewall rule + var server = sqlClient.Servers.CreateOrUpdate(resourceGroup.Name, serverNameV12, new Server() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + Version = version12, + Tags = tags, + Location = SqlManagementTestUtilities.DefaultLocation, + }); + SqlManagementTestUtilities.ValidateServer(server, serverNameV12, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); + + sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, SqlManagementTestUtilities.GenerateName(testPrefix), new ServerFirewallRule() + { + StartIpAddress = "0.0.0.0", + EndIpAddress = "255.255.255.255" + }); + + // Create 2 databases + sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, new Database() + { + Location = server.Location + }); + sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName2, new Database() + { + Location = server.Location + }); + + // Get Storage container credentials + string testMode = HttpMockServer.GetCurrentMode().ToString(); + string storageKey = "StorageKey"; + string storageKeyType = "StorageAccessKey"; + string exportBacpacLink = string.Format(CultureInfo.InvariantCulture, "http://test.blob.core.windows.net/databases/{0}.bacpac", dbName); + + if (testMode == "Record") + { + string importBacpacContainer = Environment.GetEnvironmentVariable("TEST_IMPORT_CONTAINER"); + storageKey = Environment.GetEnvironmentVariable("TEST_STORAGE_KEY"); + exportBacpacLink = string.Format(CultureInfo.InvariantCulture, "{0}/{1}.bacpac", importBacpacContainer, dbName); + + Assert.False(string.IsNullOrWhiteSpace(storageKey), "Environment variable TEST_STORAGE_KEY has not been set. Set it to storage account key."); + Assert.False(string.IsNullOrWhiteSpace(importBacpacContainer), "Environment variable TEST_IMPORT_CONTAINER has not been set. Set it to a valid storage container URL."); + } + + // Export database to bacpac + sqlClient.Databases.Export(resourceGroup.Name, server.Name, dbName, new ExportRequestParameters() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + AuthenticationType = AuthenticationType.SQL, + StorageKey = storageKey, + StorageKeyType = StorageKeyType.StorageAccessKey, + StorageUri = exportBacpacLink + }); + + // Import bacpac to existing database + ImportExportOperationResponse importResponse = sqlClient.Databases.Import(resourceGroup.Name, server.Name, dbName2, new ImportExtensionRequestParameters() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + AuthenticationType = AuthenticationType.SQL, + StorageKey = storageKey, + StorageKeyType = StorageKeyType.StorageAccessKey, + StorageUri = exportBacpacLink + }); + + // Get Database import/export operation + ImportExportOperationResponse importStatusResponse = sqlClient.ImportExportOperations.GetByDatabase(resourceGroup.Name, server.Name, dbName2, importResponse.RequestId.Value); + + // List Server import/export operations + IEnumerable listOperationResponse = sqlClient.ImportExportOperations.ListByServer(resourceGroup.Name, server.Name); + Assert.Equal(2, listOperationResponse.Count()); + Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Export") && o.DatabaseName.Equals(dbName))); + Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Import") && o.DatabaseName.Equals(dbName2))); + + // Get Server import/export operation + foreach(ImportExportOperationResponse operation in listOperationResponse) + { + ImportExportOperationResponse getOperationResponse = sqlClient.ImportExportOperations.GetByServer(resourceGroup.Name, server.Name, operation.RequestId.Value); + Assert.NotNull(getOperationResponse); + } + }); + } + + [Fact] + public void TestExportImportNewDatabaseGetOperation() + { + string testPrefix = "sqlcrudtest-"; + string suiteName = this.GetType().FullName; + string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + string dbName2 = SqlManagementTestUtilities.GenerateName(testPrefix); + string storageAccountName = SqlManagementTestUtilities.GenerateName("sqlcrudstorage"); + SqlManagementTestUtilities.RunTestInNewResourceGroup(suiteName, "TestExportImportNewDatabase", testPrefix, (resClient, sqlClient, resourceGroup) => + { + string serverNameV12 = SqlManagementTestUtilities.GenerateName(testPrefix); + string login = "dummylogin"; + string password = "Un53cuRE!"; + string version12 = "12.0"; + Dictionary tags = new Dictionary() + { + { "tagKey1", "TagValue1" } + }; + + // Create server and set firewall rule + var server = sqlClient.Servers.CreateOrUpdate(resourceGroup.Name, serverNameV12, new Server() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + Version = version12, + Tags = tags, + Location = SqlManagementTestUtilities.DefaultLocation, + }); + SqlManagementTestUtilities.ValidateServer(server, serverNameV12, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); + + sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, SqlManagementTestUtilities.GenerateName(testPrefix), new ServerFirewallRule() + { + StartIpAddress = "0.0.0.0", + EndIpAddress = "255.255.255.255" + }); + + // Create 2 databases + sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, new Database() + { + Location = server.Location + }); + sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName2, new Database() + { + Location = server.Location + }); + + // Get Storage container credentials + string testMode = HttpMockServer.GetCurrentMode().ToString(); + string storageKey = "StorageKey"; + string storageKeyType = "StorageAccessKey"; + string exportBacpacLink = string.Format(CultureInfo.InvariantCulture, "http://test.blob.core.windows.net/databases/{0}.bacpac", dbName); + + if (testMode == "Record") + { + string importBacpacContainer = Environment.GetEnvironmentVariable("TEST_IMPORT_CONTAINER"); + storageKey = Environment.GetEnvironmentVariable("TEST_STORAGE_KEY"); + exportBacpacLink = string.Format(CultureInfo.InvariantCulture, "{0}/{1}.bacpac", importBacpacContainer, dbName); + + Assert.False(string.IsNullOrWhiteSpace(storageKey), "Environment variable TEST_STORAGE_KEY has not been set. Set it to storage account key."); + Assert.False(string.IsNullOrWhiteSpace(importBacpacContainer), "Environment variable TEST_IMPORT_CONTAINER has not been set. Set it to a valid storage container URL."); + } + + // Export database to bacpac + sqlClient.Databases.Export(resourceGroup.Name, server.Name, dbName, new ExportRequestParameters() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + AuthenticationType = AuthenticationType.SQL, + StorageKey = storageKey, + StorageKeyType = StorageKeyType.StorageAccessKey, + StorageUri = exportBacpacLink + }); + + // Import bacpac to new database + sqlClient.Servers.ImportDatabase(resourceGroup.Name, server.Name, new ImportRequestParameters() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + AuthenticationType = AuthenticationType.SQL, + StorageKey = storageKey, + StorageKeyType = StorageKeyType.StorageAccessKey, + StorageUri = exportBacpacLink, + DatabaseName = dbName2, + Edition = SqlTestConstants.DefaultDatabaseEdition, + ServiceObjectiveName = ServiceObjectiveName.Basic, + MaxSizeBytes = (2 * 1024L * 1024L * 1024L).ToString(), + }); + + // Verify existence of new database + Assert.NotNull(sqlClient.Databases.Get(resourceGroup.Name, server.Name, dbName2)); + + // List Server import/export operations + IEnumerable listOperationResponse = sqlClient.ImportExportOperations.ListByServer(resourceGroup.Name, server.Name); + Assert.Equal(2, listOperationResponse.Count()); + Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Export") && o.DatabaseName.Equals(dbName))); + Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Import") && o.DatabaseName.Equals(dbName2))); + + // Get Server import/export operation + foreach (ImportExportOperationResponse operation in listOperationResponse) + { + ImportExportOperationResponse getOperationResponse = sqlClient.ImportExportOperations.GetByServer(resourceGroup.Name, server.Name, operation.RequestId.Value); + Assert.NotNull(getOperationResponse); + } + }); + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestExportImportNewDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestExportImportNewDatabase.json new file mode 100644 index 000000000000..a763e2f1f9b3 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestExportImportNewDatabase.json @@ -0,0 +1,1871 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-2342?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTIzNDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-2342\": \"2017-03-02 22:38:19Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "36c4f377-6010-4e9e-ae21-e0409e7573d5" + ], + "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/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342\",\r\n \"name\": \"sqlcrudtest-2342\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-2342\": \"2017-03-02 22:38:19Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:38:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5f7904fe-9298-4735-9753-a1aeff6dc823" + ], + "x-ms-correlation-request-id": [ + "5f7904fe-9298-4735-9753-a1aeff6dc823" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T223821Z:5f7904fe-9298-4735-9753-a1aeff6dc823" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "ca389fe1-4af5-4248-9424-59d2a3d450d0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797\",\r\n \"name\": \"sqlcrudtest-2797\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-2797.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:39:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "14fa6fb0-8e06-418c-a7e7-315c5113b174" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "18441ab3-ef95-4b58-9118-ac6d6a54d53f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T223904Z:18441ab3-ef95-4b58-9118-ac6d6a54d53f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/firewallRules/sqlcrudtest-8695?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ZpcmV3YWxsUnVsZXMvc3FsY3J1ZHRlc3QtODY5NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ], + "x-ms-client-request-id": [ + "19d0e02d-47e8-46ff-8a1e-772d8d04ab2a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/firewallRules/sqlcrudtest-8695\",\r\n \"name\": \"sqlcrudtest-8695\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "357" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:39:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "785eabf3-bd27-47c5-b1c2-3aedcbe6e75e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "c57dcc86-ca44-4629-90b1-d39f1da9f48b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T223906Z:c57dcc86-ca44-4629-90b1-d39f1da9f48b" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "701025c8-2683-4332-b4f6-f1aa46af3211" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-02T14:39:06.762-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:39:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/operationResults/079170c9-76b0-4569-bd6f-f4edcad57514?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "079170c9-76b0-4569-bd6f-f4edcad57514" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/azureAsyncOperation/079170c9-76b0-4569-bd6f-f4edcad57514?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "5f485c21-fdc9-47cf-a326-0a9cf53f8f84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T223907Z:5f485c21-fdc9-47cf-a326-0a9cf53f8f84" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/azureAsyncOperation/079170c9-76b0-4569-bd6f-f4edcad57514?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2L2F6dXJlQXN5bmNPcGVyYXRpb24vMDc5MTcwYzktNzZiMC00NTY5LWJkNmYtZjRlZGNhZDU3NTE0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"079170c9-76b0-4569-bd6f-f4edcad57514\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:39:38 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e1cc72bd-e863-4f2c-8a49-fbc1a464468f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/azureAsyncOperation/079170c9-76b0-4569-bd6f-f4edcad57514?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "759ce862-4499-4c92-b0ed-dea63c2d2ecb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T223938Z:759ce862-4499-4c92-b0ed-dea63c2d2ecb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/azureAsyncOperation/079170c9-76b0-4569-bd6f-f4edcad57514?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2L2F6dXJlQXN5bmNPcGVyYXRpb24vMDc5MTcwYzktNzZiMC00NTY5LWJkNmYtZjRlZGNhZDU3NTE0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"079170c9-76b0-4569-bd6f-f4edcad57514\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:40:08 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dc9c1f99-0e41-4a04-bcb9-55da95e6a474" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/azureAsyncOperation/079170c9-76b0-4569-bd6f-f4edcad57514?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "42f4a76e-d063-48d4-a687-4828472a6945" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T224009Z:42f4a76e-d063-48d4-a687-4828472a6945" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816\",\r\n \"name\": \"sqlcrudtest-8816\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"bf55d64e-6e61-47d3-b702-d6dc0e5ac1ad\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-02T22:39:07.027Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-02T22:49:50.087Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:40:09 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "062681d4-219f-4fb3-8a3f-60b23cea4455" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "f69640fd-ed68-4268-b073-1a7f2af99c30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T224010Z:f69640fd-ed68-4268-b073-1a7f2af99c30" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05NDEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "4e3503d1-100e-47c9-9018-b49427e5678d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-02T14:40:12.105-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:40:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413/operationResults/73dad851-e476-4797-8696-f15d8fd24ab3?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "73dad851-e476-4797-8696-f15d8fd24ab3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413/azureAsyncOperation/73dad851-e476-4797-8696-f15d8fd24ab3?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a9073291-7f9f-488f-b9a5-c218c351d9aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T224012Z:a9073291-7f9f-488f-b9a5-c218c351d9aa" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413/azureAsyncOperation/73dad851-e476-4797-8696-f15d8fd24ab3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05NDEzL2F6dXJlQXN5bmNPcGVyYXRpb24vNzNkYWQ4NTEtZTQ3Ni00Nzk3LTg2OTYtZjE1ZDhmZDI0YWIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"73dad851-e476-4797-8696-f15d8fd24ab3\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:40:43 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a5ac0721-ba8e-4dd3-8128-e8979dd5d3ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413/azureAsyncOperation/73dad851-e476-4797-8696-f15d8fd24ab3?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "5378afea-47be-41bd-9ae8-0f71723d2a38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T224043Z:5378afea-47be-41bd-9ae8-0f71723d2a38" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413/azureAsyncOperation/73dad851-e476-4797-8696-f15d8fd24ab3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05NDEzL2F6dXJlQXN5bmNPcGVyYXRpb24vNzNkYWQ4NTEtZTQ3Ni00Nzk3LTg2OTYtZjE1ZDhmZDI0YWIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"73dad851-e476-4797-8696-f15d8fd24ab3\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:41:14 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e9882bc1-9f8a-4696-86f8-4ab96a77e885" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413/azureAsyncOperation/73dad851-e476-4797-8696-f15d8fd24ab3?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "8a1ce322-986a-4a79-b26d-e7b2651b9478" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224114Z:8a1ce322-986a-4a79-b26d-e7b2651b9478" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05NDEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413\",\r\n \"name\": \"sqlcrudtest-9413\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"29761847-8b3e-4c80-8b17-89cbbe918b2f\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-02T22:40:12.37Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-02T22:51:05.213Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:41:15 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "33ae31f3-04e3-4bf2-9e10-3febbd3116de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "39de923c-a7d9-4c65-84b8-d34f6c85c18b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224115Z:39de923c-a7d9-4c65-84b8-d34f6c85c18b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC05NDEzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "540d1f36-e0cf-4250-9895-7435642de1d0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-9413\",\r\n \"name\": \"sqlcrudtest-9413\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"29761847-8b3e-4c80-8b17-89cbbe918b2f\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-02T22:40:12.37Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-02T22:51:05.213Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:46:02 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0f1ef637-fdd6-447c-87ad-ac7225fbaf48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "c17d9db6-8def-48fd-b468-c3d83441c4ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224603Z:c17d9db6-8def-48fd-b468-c3d83441c4ff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/export?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2L2V4cG9ydD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"u1ubkKFZz+dSdcFZRVWQx8rEgRehgSwy5iBE64CxdbepO7Q0zEb7nRjFCWPuG71n3tKeHBOxhPZX44qlw/4YRQ==\",\r\n \"storageUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"authenticationType\": \"SQL\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "362" + ], + "x-ms-client-request-id": [ + "fb602a9a-c696-4dd7-9a4b-01f79b2cdc21" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Export\",\r\n \"startTime\": \"2017-03-02T22:41:19.003Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "60" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:41:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "82f4bb9e-678c-4f41-a2ed-36bae48fd0aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "27afa6d6-9377-40ad-829d-7a74615b546c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224118Z:27afa6d6-9377-40ad-829d-7a74615b546c" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWMzNWYzZjktNjAwZS00MWI2LWI1NjctZGQ1ZThjYjI5NjQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-8816\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 10:41:17 PM\",\r\n \"queuedTime\": \"3/2/2017 10:41:16 PM\",\r\n \"requestId\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-2797.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:41:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "086ff71c-1d21-4f22-a4ad-475df9a6f4e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "a5a15799-1901-4ca2-906a-6e2a82a71ba5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224150Z:a5a15799-1901-4ca2-906a-6e2a82a71ba5" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWMzNWYzZjktNjAwZS00MWI2LWI1NjctZGQ1ZThjYjI5NjQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-8816\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 10:41:17 PM\",\r\n \"queuedTime\": \"3/2/2017 10:41:16 PM\",\r\n \"requestId\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-2797.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:42:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "454884e6-0085-4353-ba98-9d9945ee8294" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "62b57a58-dec3-42f4-8012-60913a3945a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224221Z:62b57a58-dec3-42f4-8012-60913a3945a1" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWMzNWYzZjktNjAwZS00MWI2LWI1NjctZGQ1ZThjYjI5NjQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-8816\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 10:41:17 PM\",\r\n \"queuedTime\": \"3/2/2017 10:41:16 PM\",\r\n \"requestId\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-2797.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:42:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8b273614-8bf4-4270-a8d9-01cfa7901ced" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "f134dec2-f0f1-4031-b640-ae1e293c1557" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224252Z:f134dec2-f0f1-4031-b640-ae1e293c1557" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWMzNWYzZjktNjAwZS00MWI2LWI1NjctZGQ1ZThjYjI5NjQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-8816\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 10:41:17 PM\",\r\n \"queuedTime\": \"3/2/2017 10:41:16 PM\",\r\n \"requestId\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-2797.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:43:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "97cbf3aa-3572-44e9-be98-6980a0a786fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "0c0f39bb-19fe-40b6-85ec-a30f043cead4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224323Z:0c0f39bb-19fe-40b6-85ec-a30f043cead4" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC04ODE2L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWMzNWYzZjktNjAwZS00MWI2LWI1NjctZGQ1ZThjYjI5NjQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/databases/sqlcrudtest-8816/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"name\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/2/2017 10:41:16 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 10:43:44 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"serverName\": \"sqlcrudtest-2797\",\r\n \"databaseName\": \"sqlcrudtest-8816\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:43:54 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4c482f20-d91c-44a0-a437-d910261e74ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "854acbf7-1ed4-44d1-afeb-f8f900f86994" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224355Z:854acbf7-1ed4-44d1-afeb-f8f900f86994" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/import?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ltcG9ydD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"databaseName\": \"sqlcrudtest-9413\",\r\n \"edition\": \"Basic\",\r\n \"serviceObjectiveName\": \"Basic\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"u1ubkKFZz+dSdcFZRVWQx8rEgRehgSwy5iBE64CxdbepO7Q0zEb7nRjFCWPuG71n3tKeHBOxhPZX44qlw/4YRQ==\",\r\n \"storageUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"authenticationType\": \"SQL\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "493" + ], + "x-ms-client-request-id": [ + "caac59b0-523a-4966-b2f3-03fc4ab31721" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Import\",\r\n \"startTime\": \"2017-03-02T22:43:57.478Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "60" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:43:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "23b606c8-8c69-46c9-aa1a-8122bdb382d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8418fb7a-0b31-42d5-b65e-49f89d5a5635" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224357Z:8418fb7a-0b31-42d5-b65e-49f89d5a5635" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvNmZkOTQyYjktN2MwNy00MmE5LWJiYTktYTAyZjlkMGQ0N2NmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-9413\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"queuedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"requestId\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-2797.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:44:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f1f112b5-04a6-4158-b6b9-6bfd2aba1367" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "53213f66-9631-4c05-ac8a-fdb4f1e4aeb0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224428Z:53213f66-9631-4c05-ac8a-fdb4f1e4aeb0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvNmZkOTQyYjktN2MwNy00MmE5LWJiYTktYTAyZjlkMGQ0N2NmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-9413\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"queuedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"requestId\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-2797.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:44:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a1ae6810-c3a9-4f9e-8734-44ec0e998440" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "defa1abb-da00-4031-a7b0-99b1e03580f3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224500Z:defa1abb-da00-4031-a7b0-99b1e03580f3" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvNmZkOTQyYjktN2MwNy00MmE5LWJiYTktYTAyZjlkMGQ0N2NmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-9413\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"queuedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"requestId\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-2797.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:45:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "660d4c94-31ec-48ce-8a1b-d47f4f862372" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "12281279-1392-4495-9518-6972abc9d792" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224531Z:12281279-1392-4495-9518-6972abc9d792" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvNmZkOTQyYjktN2MwNy00MmE5LWJiYTktYTAyZjlkMGQ0N2NmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResult/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"name\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 10:45:59 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"serverName\": \"sqlcrudtest-2797\",\r\n \"databaseName\": \"sqlcrudtest-9413\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:46:01 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bb9af9f3-74e7-4ec3-996b-26315dea5bc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "bfd4dd33-7463-4010-bda6-f5c78dfd34e2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224602Z:bfd4dd33-7463-4010-bda6-f5c78dfd34e2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0979666-4713-4eb9-a596-1294e3d4a8e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResult/1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"name\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/2/2017 10:41:16 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 10:43:44 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"serverName\": \"sqlcrudtest-2797\",\r\n \"databaseName\": \"sqlcrudtest-8816\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResult/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"name\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 10:45:59 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"serverName\": \"sqlcrudtest-2797\",\r\n \"databaseName\": \"sqlcrudtest-9413\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:46:04 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0a3c955b-f209-4e46-b88c-496affee52bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "f8fe9186-a3fa-4813-909f-dd2a8ecbc77c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224604Z:f8fe9186-a3fa-4813-909f-dd2a8ecbc77c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/1c35f3f9-600e-41b6-b567-dd5e8cb29647?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWMzNWYzZjktNjAwZS00MWI2LWI1NjctZGQ1ZThjYjI5NjQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a12652c7-3bbd-49d0-b63b-e8c10edb0669" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResult/1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"name\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"1c35f3f9-600e-41b6-b567-dd5e8cb29647\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/2/2017 10:41:16 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 10:43:44 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"serverName\": \"sqlcrudtest-2797\",\r\n \"databaseName\": \"sqlcrudtest-8816\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:46:05 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "df81d4f3-e879-4d5e-bb0b-b2074cd562f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "224a9934-8b9a-4843-b0cd-51e65314783f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224606Z:224a9934-8b9a-4843-b0cd-51e65314783f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResults/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0yNzk3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvNmZkOTQyYjktN2MwNy00MmE5LWJiYTktYTAyZjlkMGQ0N2NmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d3e87f9-ce96-4be1-aa24-836a6076e663" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2342/providers/Microsoft.Sql/servers/sqlcrudtest-2797/importExportOperationResult/6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"name\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"6fd942b9-7c07-42a9-bba9-a02f9d0d47cf\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/2/2017 10:43:59 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 10:45:59 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-8816.bacpac\",\r\n \"serverName\": \"sqlcrudtest-2797\",\r\n \"databaseName\": \"sqlcrudtest-9413\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:46:06 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ba900231-0a4d-46e3-b240-8055275b490f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "835bd25e-2650-440f-9b8a-5eb5cdb23738" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224607Z:835bd25e-2650-440f-9b8a-5eb5cdb23738" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-2342?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTIzNDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0191ace-8ad8-4944-b578-600a0ec16da8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:46:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "27df7378-bca4-4c7f-94e4-bf1af953ff48" + ], + "x-ms-correlation-request-id": [ + "27df7378-bca4-4c7f-94e4-bf1af953ff48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224610Z:27df7378-bca4-4c7f-94e4-bf1af953ff48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXpOREl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:46:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "0445f880-16ea-4916-add1-724977707f0e" + ], + "x-ms-correlation-request-id": [ + "0445f880-16ea-4916-add1-724977707f0e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224640Z:0445f880-16ea-4916-add1-724977707f0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXpOREl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:47:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "757029d6-ee18-427f-8c51-ac90537829a0" + ], + "x-ms-correlation-request-id": [ + "757029d6-ee18-427f-8c51-ac90537829a0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224711Z:757029d6-ee18-427f-8c51-ac90537829a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXpOREl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:47:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "8383a273-cc57-4220-aaf6-404e19525ed6" + ], + "x-ms-correlation-request-id": [ + "8383a273-cc57-4220-aaf6-404e19525ed6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224742Z:8383a273-cc57-4220-aaf6-404e19525ed6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDIzNDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESXpOREl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 22:48:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "bf67d407-1428-47c4-bbfd-e12b2c071879" + ], + "x-ms-correlation-request-id": [ + "bf67d407-1428-47c4-bbfd-e12b2c071879" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T224812Z:bf67d407-1428-47c4-bbfd-e12b2c071879" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroupWithStorage": [ + "sqlcrudtest-2342" + ], + "TestExportImportNewDatabaseGetOperation": [ + "sqlcrudtest-2797", + "sqlcrudtest-8695" + ] + }, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportExistingDatabaseGetOperation.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportExistingDatabaseGetOperation.json new file mode 100644 index 000000000000..347fa315debe --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportExistingDatabaseGetOperation.json @@ -0,0 +1,1926 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-8056?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgwNTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-8056\": \"2017-03-02 23:08:38Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "6c0c3230-e79f-45db-b532-1773f73f9e8a" + ], + "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/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056\",\r\n \"name\": \"sqlcrudtest-8056\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-8056\": \"2017-03-02 23:08:38Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:08:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "b1118776-43a0-45ca-bbce-faa5fe8aeada" + ], + "x-ms-correlation-request-id": [ + "b1118776-43a0-45ca-bbce-faa5fe8aeada" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T230840Z:b1118776-43a0-45ca-bbce-faa5fe8aeada" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "d8807616-fd85-4c47-8b6e-63153451b79f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767\",\r\n \"name\": \"sqlcrudtest-8767\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:09:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ca043b9e-cc26-4e15-80c5-2336e6f17e3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "36b02f8a-ccdc-4f44-a511-b9d0308ea8aa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T230913Z:36b02f8a-ccdc-4f44-a511-b9d0308ea8aa" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/firewallRules/sqlcrudtest-27?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2ZpcmV3YWxsUnVsZXMvc3FsY3J1ZHRlc3QtMjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ], + "x-ms-client-request-id": [ + "40c93a0e-6919-488a-b8a5-704d18821cc6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/firewallRules/sqlcrudtest-27\",\r\n \"name\": \"sqlcrudtest-27\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "353" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:09:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "267bf262-1056-475b-a8d2-73abc9f7afa0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3101f8e3-067d-4732-981b-f6c021666964" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T230915Z:3101f8e3-067d-4732-981b-f6c021666964" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "91acd100-fa2f-47a3-8b9f-c74911e55cd6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-02T15:09:16.719-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:09:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/operationResults/b1ba2476-aeb1-4f57-b1d2-325c68d27116?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b1ba2476-aeb1-4f57-b1d2-325c68d27116" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/azureAsyncOperation/b1ba2476-aeb1-4f57-b1d2-325c68d27116?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "1476cbeb-ad46-4205-b49a-9b6328cfbf52" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T230917Z:1476cbeb-ad46-4205-b49a-9b6328cfbf52" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/azureAsyncOperation/b1ba2476-aeb1-4f57-b1d2-325c68d27116?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyL2F6dXJlQXN5bmNPcGVyYXRpb24vYjFiYTI0NzYtYWViMS00ZjU3LWIxZDItMzI1YzY4ZDI3MTE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b1ba2476-aeb1-4f57-b1d2-325c68d27116\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:09:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8892a10f-edcf-4e9e-94b7-7390c026a1b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/azureAsyncOperation/b1ba2476-aeb1-4f57-b1d2-325c68d27116?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "1a7e91dd-6659-4598-a0e5-e3a3e076b893" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T230948Z:1a7e91dd-6659-4598-a0e5-e3a3e076b893" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/azureAsyncOperation/b1ba2476-aeb1-4f57-b1d2-325c68d27116?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyL2F6dXJlQXN5bmNPcGVyYXRpb24vYjFiYTI0NzYtYWViMS00ZjU3LWIxZDItMzI1YzY4ZDI3MTE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b1ba2476-aeb1-4f57-b1d2-325c68d27116\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:10:18 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "96c7f6eb-16aa-4278-a1a8-eefffb689a0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/azureAsyncOperation/b1ba2476-aeb1-4f57-b1d2-325c68d27116?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "3f99a1b0-7741-41da-aac6-717c981b16d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231019Z:3f99a1b0-7741-41da-aac6-717c981b16d8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872\",\r\n \"name\": \"sqlcrudtest-2872\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"777970a5-8763-4a59-a51e-3d39e5c6e090\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-02T23:09:17.017Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-02T23:20:00.663Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:10:19 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bd863b19-a674-4bdc-9a14-aec2bbddd10d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "c8fe732c-00b0-4bdb-a58f-c57b853ff191" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231020Z:c8fe732c-00b0-4bdb-a58f-c57b853ff191" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "67b2a0bc-a875-43b9-b62a-56ab79c07ff4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-02T15:10:24.022-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:10:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/operationResults/01a18184-1592-4860-88b7-628b9d4875d8?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "01a18184-1592-4860-88b7-628b9d4875d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/azureAsyncOperation/01a18184-1592-4860-88b7-628b9d4875d8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "39f39a3f-1197-4ef6-989f-d91b22c2fe87" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231023Z:39f39a3f-1197-4ef6-989f-d91b22c2fe87" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/azureAsyncOperation/01a18184-1592-4860-88b7-628b9d4875d8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2F6dXJlQXN5bmNPcGVyYXRpb24vMDFhMTgxODQtMTU5Mi00ODYwLTg4YjctNjI4YjlkNDg3NWQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01a18184-1592-4860-88b7-628b9d4875d8\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:10:54 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ffc57e88-768b-430e-8c3d-3ba54960ec88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/azureAsyncOperation/01a18184-1592-4860-88b7-628b9d4875d8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "bbc235b4-ef0f-47eb-820c-ff676a1ce003" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231054Z:bbc235b4-ef0f-47eb-820c-ff676a1ce003" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/azureAsyncOperation/01a18184-1592-4860-88b7-628b9d4875d8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2F6dXJlQXN5bmNPcGVyYXRpb24vMDFhMTgxODQtMTU5Mi00ODYwLTg4YjctNjI4YjlkNDg3NWQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01a18184-1592-4860-88b7-628b9d4875d8\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:11:26 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0c18dc33-c890-4cf7-bb25-e7f67a946938" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/azureAsyncOperation/01a18184-1592-4860-88b7-628b9d4875d8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "86ba396b-4d10-402c-ac8e-6028ec2e342d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231126Z:86ba396b-4d10-402c-ac8e-6028ec2e342d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776\",\r\n \"name\": \"sqlcrudtest-3776\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"5a90f8b5-1fe8-4460-919a-bdf1cc819dec\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-02T23:10:24.303Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-02T23:21:02.93Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:11:27 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1b98b103-e751-45d9-8481-f4e6fcff7e1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "c7f8a581-04c7-409d-879c-613f440feb76" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231127Z:c7f8a581-04c7-409d-879c-613f440feb76" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/export?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyL2V4cG9ydD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"u1ubkKFZz+dSdcFZRVWQx8rEgRehgSwy5iBE64CxdbepO7Q0zEb7nRjFCWPuG71n3tKeHBOxhPZX44qlw/4YRQ==\",\r\n \"storageUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"authenticationType\": \"SQL\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "362" + ], + "x-ms-client-request-id": [ + "a58c0246-4c35-4372-ad7e-75c1794d5b29" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Export\",\r\n \"startTime\": \"2017-03-02T23:11:31.894Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "60" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:11:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "50f74c71-bddc-4e1b-8b72-39b1852aa3b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b27e5fbc-11af-428f-b70d-85a0a3390f57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231131Z:b27e5fbc-11af-428f-b70d-85a0a3390f57" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMDU4ZTU3NWYtOGFmYi00ZjY3LTgxY2QtZTc1NGIzMDQzNTU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-2872\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 11:11:30 PM\",\r\n \"queuedTime\": \"3/2/2017 11:11:33 PM\",\r\n \"requestId\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:12:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "6f5c093a-c354-45fd-a9fe-2e52ba3f27f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "0a88dabc-98f0-4640-8df8-f9309f46daca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231203Z:0a88dabc-98f0-4640-8df8-f9309f46daca" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMDU4ZTU3NWYtOGFmYi00ZjY3LTgxY2QtZTc1NGIzMDQzNTU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-2872\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 11:11:30 PM\",\r\n \"queuedTime\": \"3/2/2017 11:11:33 PM\",\r\n \"requestId\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:12:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "51ac8b0c-2871-4105-8bce-9f7b8e883d37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "f27b46eb-7a91-437d-a36f-01d13c015b7e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231234Z:f27b46eb-7a91-437d-a36f-01d13c015b7e" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMDU4ZTU3NWYtOGFmYi00ZjY3LTgxY2QtZTc1NGIzMDQzNTU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-2872\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 11:11:30 PM\",\r\n \"queuedTime\": \"3/2/2017 11:11:33 PM\",\r\n \"requestId\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:13:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ac971fb5-4972-4441-a875-c701c268852a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "b1be9cac-3313-4318-84b5-a8413ba06e90" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231305Z:b1be9cac-3313-4318-84b5-a8413ba06e90" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMDU4ZTU3NWYtOGFmYi00ZjY3LTgxY2QtZTc1NGIzMDQzNTU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-2872\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 11:11:30 PM\",\r\n \"queuedTime\": \"3/2/2017 11:11:33 PM\",\r\n \"requestId\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:13:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e97a6062-b0cd-485b-9d05-5d0d1eb8eb48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "b1954da9-e1dd-47df-a266-4616b3969e81" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231337Z:b1954da9-e1dd-47df-a266-4616b3969e81" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0yODcyL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMDU4ZTU3NWYtOGFmYi00ZjY3LTgxY2QtZTc1NGIzMDQzNTU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-2872/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"name\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/2/2017 11:11:33 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 11:14:02 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"serverName\": \"sqlcrudtest-8767\",\r\n \"databaseName\": \"sqlcrudtest-2872\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:14:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e6fcd004-e574-4d6e-9328-3a8ebd958bd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "575877e9-2097-4f5f-908c-14d24bee34e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231408Z:575877e9-2097-4f5f-908c-14d24bee34e1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2V4dGVuc2lvbnMvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"u1ubkKFZz+dSdcFZRVWQx8rEgRehgSwy5iBE64CxdbepO7Q0zEb7nRjFCWPuG71n3tKeHBOxhPZX44qlw/4YRQ==\",\r\n \"storageUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"authenticationType\": \"SQL\",\r\n \"operationMode\": \"Import\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "430" + ], + "x-ms-client-request-id": [ + "73f45814-3b7d-458b-8595-766466c253d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Import\",\r\n \"startTime\": \"2017-03-02T23:14:12.487Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "60" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:14:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b919ca0b-9efd-42f7-a783-bd152237dbe8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "fca20ee3-c0cb-45b3-90ef-a56a9d796964" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231413Z:fca20ee3-c0cb-45b3-90ef-a56a9d796964" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMzQxNTk5NWYtNjZiZS00NTI5LTlkYTUtM2I2ZmFkM2I2OWQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-3776\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 11:14:15 PM\",\r\n \"queuedTime\": \"3/2/2017 11:14:14 PM\",\r\n \"requestId\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:14:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ecd80d43-29d2-4486-965d-d6ea1b50e927" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "21c46fae-d6a8-4f75-be76-3a9843bc39b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T231444Z:21c46fae-d6a8-4f75-be76-3a9843bc39b7" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMzQxNTk5NWYtNjZiZS00NTI5LTlkYTUtM2I2ZmFkM2I2OWQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-3776\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 11:14:15 PM\",\r\n \"queuedTime\": \"3/2/2017 11:14:14 PM\",\r\n \"requestId\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:15:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c2eee659-2996-4d71-bc09-d73389991712" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "195bb4e7-a159-4c78-a83d-be35f7f1a121" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231515Z:195bb4e7-a159-4c78-a83d-be35f7f1a121" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMzQxNTk5NWYtNjZiZS00NTI5LTlkYTUtM2I2ZmFkM2I2OWQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-3776\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 11:14:15 PM\",\r\n \"queuedTime\": \"3/2/2017 11:14:14 PM\",\r\n \"requestId\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:15:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c1a24094-42fa-4649-99e5-6ee04d5a1d42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "7c927248-effd-4bc0-99cd-b47a070196fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231546Z:7c927248-effd-4bc0-99cd-b47a070196fd" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMzQxNTk5NWYtNjZiZS00NTI5LTlkYTUtM2I2ZmFkM2I2OWQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-3776\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/2/2017 11:14:15 PM\",\r\n \"queuedTime\": \"3/2/2017 11:14:14 PM\",\r\n \"requestId\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-8767.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:16:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8856f61a-509b-4bab-ab1f-2979cb394e76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "3721d005-643c-4120-8f96-943c06d47a5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231617Z:3721d005-643c-4120-8f96-943c06d47a5f" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import/importExtensionOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMzQxNTk5NWYtNjZiZS00NTI5LTlkYTUtM2I2ZmFkM2I2OWQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/extensions/import\",\r\n \"name\": \"import\",\r\n \"type\": \"Microsoft.Sql/servers/databases/extensions\",\r\n \"properties\": {\r\n \"requestId\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/2/2017 11:14:14 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 11:16:19 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"serverName\": \"sqlcrudtest-8767\",\r\n \"databaseName\": \"sqlcrudtest-3776\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "612" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:16:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c24d60aa-2fa8-4b7d-87b6-e30aa8b71277" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "46769777-d162-47e0-80a5-805b80cef3f1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231648Z:46769777-d162-47e0-80a5-805b80cef3f1" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/importExportOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC0zNzc2L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMzQxNTk5NWYtNjZiZS00NTI5LTlkYTUtM2I2ZmFkM2I2OWQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a627f5cd-3b17-45e1-a040-a580eefba628" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/databases/sqlcrudtest-3776/importExportOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"name\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/2/2017 11:14:14 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 11:16:19 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"serverName\": \"sqlcrudtest-8767\",\r\n \"databaseName\": \"sqlcrudtest-3776\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:16:49 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9f499de7-4888-4c21-afaa-a13e8a836a37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "9608b1d4-62f3-4636-8e72-ab7a0e505884" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231650Z:9608b1d4-62f3-4636-8e72-ab7a0e505884" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/importExportOperationResults?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfcb6daf-b8b4-433d-a904-b579a050dd34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/importExportOperationResult/058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"name\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/2/2017 11:11:33 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 11:14:02 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"serverName\": \"sqlcrudtest-8767\",\r\n \"databaseName\": \"sqlcrudtest-2872\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/importExportOperationResult/3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"name\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/2/2017 11:14:14 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 11:16:19 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"serverName\": \"sqlcrudtest-8767\",\r\n \"databaseName\": \"sqlcrudtest-3776\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:16:50 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e97ddbd5-68ad-42de-914d-0be94072783c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "fe840d93-6975-4fcc-b57e-078ab4689534" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231651Z:fe840d93-6975-4fcc-b57e-078ab4689534" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/importExportOperationResults/058e575f-8afb-4f67-81cd-e754b3043555?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMDU4ZTU3NWYtOGFmYi00ZjY3LTgxY2QtZTc1NGIzMDQzNTU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab5f9a73-78c4-4846-bbdc-2d4146f6c4c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/importExportOperationResult/058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"name\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"058e575f-8afb-4f67-81cd-e754b3043555\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/2/2017 11:11:33 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 11:14:02 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"serverName\": \"sqlcrudtest-8767\",\r\n \"databaseName\": \"sqlcrudtest-2872\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:16:51 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1f20fa12-224c-4b4a-a1f6-e483ec4f7da7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "6e71b907-ac05-45ba-9f34-475b3d8da408" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231652Z:6e71b907-ac05-45ba-9f34-475b3d8da408" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/importExportOperationResults/3415995f-66be-4529-9da5-3b6fad3b69d2?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTgwNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzY3L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMzQxNTk5NWYtNjZiZS00NTI5LTlkYTUtM2I2ZmFkM2I2OWQyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73d36793-1047-46c7-aaa5-b9d9276b31b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-8056/providers/Microsoft.Sql/servers/sqlcrudtest-8767/importExportOperationResult/3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"name\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"3415995f-66be-4529-9da5-3b6fad3b69d2\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/2/2017 11:14:14 PM\",\r\n \"lastModifiedTime\": \"3/2/2017 11:16:19 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-2872.bacpac\",\r\n \"serverName\": \"sqlcrudtest-8767\",\r\n \"databaseName\": \"sqlcrudtest-3776\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:16:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c17183d2-e1b4-4b6a-9634-213ef734ae7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "bb896087-4e5f-4340-b203-42772141a2c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231653Z:bb896087-4e5f-4340-b203-42772141a2c6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-8056?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTgwNTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee20897a-4a46-4f8c-8c1f-106d6334c1fc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:16:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgwNTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "b920251c-03f8-4412-85fc-8a82e157f99c" + ], + "x-ms-correlation-request-id": [ + "b920251c-03f8-4412-85fc-8a82e157f99c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231656Z:b920251c-03f8-4412-85fc-8a82e157f99c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgwNTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3dOVFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:17:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgwNTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "a61de66c-5ac2-421b-b133-89cf2df936c5" + ], + "x-ms-correlation-request-id": [ + "a61de66c-5ac2-421b-b133-89cf2df936c5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231727Z:a61de66c-5ac2-421b-b133-89cf2df936c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgwNTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3dOVFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:17:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgwNTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "da15cad6-a7b8-44a2-a5f0-a1376681150e" + ], + "x-ms-correlation-request-id": [ + "da15cad6-a7b8-44a2-a5f0-a1376681150e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170302T231757Z:da15cad6-a7b8-44a2-a5f0-a1376681150e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgwNTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3dOVFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:18:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgwNTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "87edcaf4-cc4d-4cfa-8961-9e28e9b0d405" + ], + "x-ms-correlation-request-id": [ + "87edcaf4-cc4d-4cfa-8961-9e28e9b0d405" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231828Z:87edcaf4-cc4d-4cfa-8961-9e28e9b0d405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDgwNTYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEZ3dOVFl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 02 Mar 2017 23:18:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "9ee2018a-00f6-4afb-9c7c-6ba700fc3704" + ], + "x-ms-correlation-request-id": [ + "9ee2018a-00f6-4afb-9c7c-6ba700fc3704" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170302T231858Z:9ee2018a-00f6-4afb-9c7c-6ba700fc3704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroupWithStorage": [ + "sqlcrudtest-8056" + ], + "TestImportExistingDatabaseGetOperation": [ + "sqlcrudtest-8767", + "sqlcrudtest-27" + ] + }, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/project.json b/src/ResourceManagement/SqlManagement/Sql.Tests/project.json index 520aad34ce0f..ae325e7be625 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/project.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/project.json @@ -1,4 +1,4 @@ -{ +{ "version": "1.0.0-preview", "buildOptions": { From a6d31ea3ced3d9ba3f45db8a8441931c6065d40e Mon Sep 17 00:00:00 2001 From: Abhijeet Date: Thu, 2 Mar 2017 20:32:33 -0800 Subject: [PATCH 067/137] Updates for Monitor, Operational Insights and condition check for hanlding zero non net core projects during build within a scope (#2890) --- .../Microsoft.Azure.Monitor/project.json | 21 ++++++++------ .../project.json | 16 +++++++---- .../FilterOutAutoRestLibraries.cs | 28 +++++++++---------- 3 files changed, 36 insertions(+), 29 deletions(-) diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json index 7bcd8cd35745..988598f3748e 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json @@ -1,5 +1,5 @@ { - "version": "0.15.0-preview", + "version": "0.16.0-preview", "description": "Microsoft Azure Monitor Library", "authors": [ "Microsoft" ], @@ -8,7 +8,7 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft", "Microsoft Azure", "Azure", "Monitor", "monitoring", "monitoring services", "metrics", "alerts", "autoscale", "activityLogs", "events", "operations", "logs", "REST", "HTTP", "client", "azureofficial", "windowsazureofficial", "management services", "diagnostics", "telemetry", "analytics" ], + "tags": [ "Microsoft", "Microsoft Azure", "Azure", "Monitor", "monitoring", "monitoring services", "metrics", "alerts", "autoscale", "activityLogs", "events", "operations", "logs", "REST", "HTTP", "client", "azureofficial", "windowsazureofficial", "management services", "diagnostics", "telemetry", "analytics", "netcore451511" ], "requireLicenseAcceptance": false }, @@ -18,8 +18,8 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.3,3.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -32,18 +32,21 @@ "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Net.Http": "4.1.0" + "System.Net.Http": "4.3.0" } } } diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json index a6e4b36266e1..0a23195c1b8c 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json @@ -6,7 +6,7 @@ "packOptions": { "summary": "Provides Microsoft Azure Operational Insights management operations", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure OperationalInsights", "OperationalInsights", "REST HTTP client", "azureofficial", "windowsazureofficial" ], + "tags": [ "Microsoft Azure OperationalInsights", "OperationalInsights", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true @@ -18,7 +18,8 @@ "keyFile": "../../../../tools/MSSharedLibKey.snk" }, "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, "frameworks": { @@ -27,16 +28,19 @@ "netstandard1.5": { "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Tools": "4.0.1", - "System.Net.Http": "4.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.0.11" + "System.Threading.Tasks": "4.3.0" } }, "netstandard1.1": { "imports": ["dnxcore50"], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", "System.Runtime.Serialization.Primitives": "4.1.1" } } diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs index 56cbd6384e8a..4b134d236b37 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs @@ -109,25 +109,25 @@ public override bool Execute() { solution.SetMetadata("NugetProj", nugetProjects[0]); solution.SetMetadata("PackageName", Path.GetFileNameWithoutExtension(nugetProjects[0])); - } - if (nPkgsList != null) - { - //We need to filter out projects from the final output to build and publish limited set of projects - //Here we need to get to the name of the nuget.proj file with .nuget.proj - string nugetProjName = Path.GetFileName(nugetProjects[0]); - string projNameWithoutExt = Path.GetFileNameWithoutExtension(nugetProjName); - projNameWithoutExt = Path.GetFileNameWithoutExtension(projNameWithoutExt); - string match = nPkgsList.Find((pn) => pn.Equals(projNameWithoutExt, System.StringComparison.OrdinalIgnoreCase)); - if (!string.IsNullOrEmpty(match)) + if (nPkgsList != null) + { + //We need to filter out projects from the final output to build and publish limited set of projects + //Here we need to get to the name of the nuget.proj file with .nuget.proj + string nugetProjName = Path.GetFileName(nugetProjects[0]); + string projNameWithoutExt = Path.GetFileNameWithoutExtension(nugetProjName); + projNameWithoutExt = Path.GetFileNameWithoutExtension(projNameWithoutExt); + string match = nPkgsList.Find((pn) => pn.Equals(projNameWithoutExt, System.StringComparison.OrdinalIgnoreCase)); + if (!string.IsNullOrEmpty(match)) + { + nonNetCoreAutoRestLibraries.Add(solution); + } + } + else { nonNetCoreAutoRestLibraries.Add(solution); } } - else - { - nonNetCoreAutoRestLibraries.Add(solution); - } } else { From 9020d6f656c7f6d91ce37606f6404f66c558aa30 Mon Sep 17 00:00:00 2001 From: dihan0604 Date: Thu, 2 Mar 2017 22:26:35 -0800 Subject: [PATCH 068/137] Update property name (#2891) * rename parameters * update version * update version * update version * update version --- .../Generated/Models/BGPCommunity.cs | 12 ++++++------ .../Generated/Models/BgpServiceCommunity.cs | 19 ++++++++++++++----- .../Properties/AssemblyInfo.cs | 4 ++-- .../project.json | 2 +- 4 files changed, 23 insertions(+), 14 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BGPCommunity.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BGPCommunity.cs index adc48998fd71..1f7ad83bdaac 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BGPCommunity.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BGPCommunity.cs @@ -30,8 +30,8 @@ public BGPCommunity() { } /// /// Initializes a new instance of the BGPCommunity class. /// - /// The region which the service support. e.g. For - /// O365, region is Global. + /// The region which the service + /// support. e.g. For O365, region is Global. /// The name of the bgp community. e.g. /// Skype. /// The value of the bgp community. For @@ -39,9 +39,9 @@ public BGPCommunity() { } /// https://docs.microsoft.com/en-us/azure/expressroute/expressroute-routing. /// The prefixes that the bgp community /// contains. - public BGPCommunity(string region = default(string), string communityName = default(string), string communityValue = default(string), IList communityPrefixes = default(IList)) + public BGPCommunity(string serviceSupportedRegion = default(string), string communityName = default(string), string communityValue = default(string), IList communityPrefixes = default(IList)) { - Region = region; + ServiceSupportedRegion = serviceSupportedRegion; CommunityName = communityName; CommunityValue = communityValue; CommunityPrefixes = communityPrefixes; @@ -51,8 +51,8 @@ public BGPCommunity() { } /// Gets or sets the region which the service support. e.g. For O365, /// region is Global. /// - [JsonProperty(PropertyName = "region")] - public string Region { get; set; } + [JsonProperty(PropertyName = "serviceSupportedRegion")] + public string ServiceSupportedRegion { get; set; } /// /// Gets or sets the name of the bgp community. e.g. Skype. diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpServiceCommunity.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpServiceCommunity.cs index 39b984a192ce..cee4a2621a3c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpServiceCommunity.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpServiceCommunity.cs @@ -37,18 +37,27 @@ public BgpServiceCommunity() { } /// Resource type. /// Resource location. /// Resource tags. - /// Get a list of bgp communities. - public BgpServiceCommunity(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IList communities = default(IList)) + /// The name of the bgp community. e.g. + /// Skype. + /// Get a list of bgp communities. + public BgpServiceCommunity(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string serviceName = default(string), IList bgpCommunities = default(IList)) : base(id, name, type, location, tags) { - Communities = communities; + ServiceName = serviceName; + BgpCommunities = bgpCommunities; } + /// + /// Gets or sets the name of the bgp community. e.g. Skype. + /// + [JsonProperty(PropertyName = "properties.serviceName")] + public string ServiceName { get; set; } + /// /// Gets or sets get a list of bgp communities. /// - [JsonProperty(PropertyName = "properties.communities")] - public IList Communities { get; set; } + [JsonProperty(PropertyName = "properties.bgpCommunities")] + public IList BgpCommunities { get; set; } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 05d3cdb99148..f75d13d01597 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("8.4.0.0")] -[assembly: AssemblyFileVersion("8.4.0.0")] +[assembly: AssemblyVersion("9.0.0.0")] +[assembly: AssemblyFileVersion("9.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index 6ce3877c545d..754f8e3b65be 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,5 +1,5 @@ { - "version": "8.4.0-preview", + "version": "9.0.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From 2ac9658b8a946414c5c10ffea2edadbec1ae51aa Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Thu, 2 Mar 2017 22:34:46 -0800 Subject: [PATCH 069/137] updating delay sign key file --- .../project.json | 74 ++++++++++--------- 1 file changed, 38 insertions(+), 36 deletions(-) diff --git a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json index 5f30ecef5e6d..4b1e6c5ecd97 100644 --- a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json +++ b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json @@ -13,45 +13,47 @@ }, "buildOptions": { - "keyFile": "../keyfile.snk" + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk" }, - "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" - }, - - "frameworks": { - "net45": { - "dependencies": { - } + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" }, - "netstandard1.5": { - "imports": [ "dnxcore50" ], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "Microsoft.CSharp": "4.0.1", - "System.Threading.Thread": "4.0.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Collections": "4.3.0", - "System.Linq": "4.3.0", - "System.Runtime": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1" - } - }, - "netstandard1.1": { - "imports": [ "dnxcore50" ], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Runtime.Serialization.Primitives": "4.1.1" + + "frameworks": { + "net45": { + "dependencies": { + } + }, + "netstandard1.5": { + "imports": [ "dnxcore50" ], + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "Microsoft.CSharp": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Collections": "4.3.0", + "System.Linq": "4.3.0", + "System.Runtime": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.1.1" + } + }, + "netstandard1.1": { + "imports": [ "dnxcore50" ], + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" + } } } } -} From 5540affa75c6f71599fa361e053543acdb6111ce Mon Sep 17 00:00:00 2001 From: matthchr Date: Thu, 2 Mar 2017 15:57:12 -0800 Subject: [PATCH 070/137] Update Batch changelog --- src/Batch/Client/changelog.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Batch/Client/changelog.md b/src/Batch/Client/changelog.md index bd5c68b8ce50..f7009532a53b 100644 --- a/src/Batch/Client/changelog.md +++ b/src/Batch/Client/changelog.md @@ -1,16 +1,23 @@ ## Azure.Batch release notes +### Changes in 6.1.0 +#### REST API version +This version of the Batch .NET client library targets version 2017-01-01.4.0 of the Azure Batch REST API. + +#### Packaging +- The client library is now supported on .NET Core. The package now includes a `netstandard1.5` assembly in addition to the `net45` assembly. + ### Changes in 6.0.0 #### REST API version This version of the Batch .NET client library targets version 2017-01-01.4.0 of the Azure Batch REST API. #### Features +- Moved `FileToStage` implementation to the [Azure.Batch.FileStaging](https://www.nuget.org/packages/Azure.Batch.FileStaging) NuGet package and removed the dependency on `WindowsAzure.Storage` from the `Azure.Batch` package. This gives more flexibility on what version of `WindowsAzure.Storage` to use for users who do not use the `FileToStage` features. - Added support for running a task under a configurable user identity via the `UserIdentity` property on all task objects (`CloudTask`, `JobPreparationTask`, `StartTask`, etc). `UserIdentity` replaces `RunElevated`. `UserIdentity` supports running a task as a predefined named user (via `UserIdentity.UserName`) or an automatically created user. The `AutoUserSpecification` specifies an automatically created user account under which to run the task. To translate existing code, change `RunElevated = true` to `UserIdentity = new UserIdentity(new AutoUserSpecification(elevationLevel: ElevationLevel.Admin))` and `RunElevated = false` to `UserIdentity = new UserIdentity(new AutoUserSpecification(elevationLevel: ElevationLevel.NonAdmin))`. - Added support for defining pool-wide users, via the `UserAccounts` property on `CloudPool` and `PoolSpecification`. You can run a task as such a user using the `UserIdentity` constructor that takes a user name. - Added support for requesting the Batch service provide an authentication token to the task when it runs. This is done using the `AuthenticationTokenSettings` on `CloudTask` and `JobManagerTask`. This avoids the need to pass Batch account keys to the task in order to issue requests to the Batch service. - Added support for specifying an action to take on a task's dependencies if the task fails using the `DependencyAction` property of `ExitOptions`. - Added support for deploying nodes using custom VHDs, via the `OSDisk` property of `VirtualMachineConfiguration`. Note that the Batch account being used must have been created with `PoolAllocationMode = UserSubscription` to allow this. -- Moved `FileToStage` implementation to Azure.Batch.FileStaging NuGet package. - Added support for Azure Active Directory based authentication. Use `BatchClient.Open/OpenAsync(BatchTokenCredentials)` to use this form of authentication. This is mandatory for accounts with `PoolAllocationMode = UserSubscription`. #### Package dependencies From 833b169b17285ffe54636278734f8caadf7756e7 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 3 Mar 2017 15:26:09 -0800 Subject: [PATCH 071/137] #ConnectionDraining Increased Version number. --- .../Properties/AssemblyInfo.cs | 4 ++-- .../Network/Microsoft.Azure.Management.Network/project.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 05d3cdb99148..18cf91748b11 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("8.4.0.0")] -[assembly: AssemblyFileVersion("8.4.0.0")] +[assembly: AssemblyVersion("8.5.0.0")] +[assembly: AssemblyFileVersion("8.5.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index 485c9fbe5581..d198e5202bf3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,5 +1,5 @@ { - "version": "8.4.0-preview", + "version": "8.5.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From d2f1376c66fbb21e640fceffa82a7f680b18efcc Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 3 Mar 2017 15:53:14 -0800 Subject: [PATCH 072/137] #ConnectionDraining Remove files from PR with only EndOfFile Changes. --- .../Compute.Tests.AvailabilitySetTests/TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json | 2 +- .../Compute.Tests.ExtImgTests/TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index c90d66618049..41d56c39d77b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 0d03fdb6250b..9f1f1e8233ad 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index bd443a53e6ff..e8045406bdd2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index 2c1a98ed6570..fc3756c3a85c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index 2343de8f650a..abc449435cb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index bfb318f6ef31..d76a89158bb8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index bc9057da8c35..a164c1a3195c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index 7bc95fedbe54..e90bf7aad7ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file From 25a45fa0c48e247a134f8a751430c68902c28052 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 3 Mar 2017 16:26:42 -0800 Subject: [PATCH 073/137] #ConnectionDraining undo changes that were created automatically for ExpressRouteCircuitPeering. --- .../Models/ExpressRouteCircuitPeering.cs | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs index 6fa656fae80b..d886ee1287cf 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs @@ -57,14 +57,14 @@ public ExpressRouteCircuitPeering() { } /// The GatewayManager Etag. /// Gets whether the provider or the /// customer last modified the peering. - /// The reference of the RouteFilter - /// resource. /// Gets name of the resource that is unique within /// a resource group. This name can be used to access the /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), RouteFilter routeFilter = default(RouteFilter), string name = default(string), string etag = default(string)) + /// The reference of the RouteFilter + /// resource. + public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), string name = default(string), string etag = default(string), RouteFilter routeFilter = default(RouteFilter)) : base(id) { PeeringType = peeringType; @@ -82,9 +82,9 @@ public ExpressRouteCircuitPeering() { } ProvisioningState = provisioningState; GatewayManagerEtag = gatewayManagerEtag; LastModifiedBy = lastModifiedBy; - RouteFilter = routeFilter; Name = name; Etag = etag; + RouteFilter = routeFilter; } /// @@ -183,12 +183,6 @@ public ExpressRouteCircuitPeering() { } [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; set; } - /// - /// Gets or sets the reference of the RouteFilter resource. - /// - [JsonProperty(PropertyName = "properties.routeFilter")] - public RouteFilter RouteFilter { get; set; } - /// /// Gets name of the resource that is unique within a resource group. /// This name can be used to access the resource. @@ -202,7 +196,11 @@ public ExpressRouteCircuitPeering() { } /// [JsonProperty(PropertyName = "etag")] public string Etag { get; protected set; } - + + /// + /// Gets or sets the reference of the RouteFilter resource. + /// + [JsonProperty(PropertyName = "properties.routeFilter")] + public RouteFilter RouteFilter { get; set; } } -} - +} \ No newline at end of file From c90ec25f7437fac1f2230f86b5a56ec6b0fb0479 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 3 Mar 2017 17:14:58 -0800 Subject: [PATCH 074/137] #ConnectionDraining Removed unnecessary reference in Network project.json. --- .../Network/Microsoft.Azure.Management.Network/project.json | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index 873bb94a8042..d8484bf93b04 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -27,7 +27,6 @@ "frameworks": { "net45": { "dependencies": { - "System.Net.Http": "4.3.1" } }, "netstandard1.5": { From 91fdaafd08594a10ed7634c5e506002a39906d8b Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Sat, 4 Mar 2017 14:45:41 -0800 Subject: [PATCH 075/137] Adding Interactive login for environment that still supports it. Adding support for Custom environment, this will enable targeting any environment as long as your provide all endpoints in the connection string. Adding live tests for interactive login. Updates for VS2017 compatible. --- .../project.json | 7 +- .../ConnectionString.cs | 14 +- .../ConnectionStringKeys.cs | 24 +++- .../TestEndpoints.cs | 94 +++++++++++--- .../TestEnvironment.cs | 120 ++++++++++++++---- .../project.json | 12 +- .../Properties/AssemblyInfo.cs | 36 ++++++ .../TestEnvironment/TestEnvTests.cs | 101 +++++++++++++++ .../TestFramework.Net45Tests.csproj | 118 +++++++++++++++++ .../TestFramework.Net45Tests/packages.config | 12 ++ .../TestEnvironment/TestEnvironmentTests.cs | 50 ++++++-- .../TestFramework.Tests/project.json | 5 +- src/TestFramework/TestRecordAndFramework.sln | 18 +++ src/TestFramework/nuget.config | 6 + 14 files changed, 546 insertions(+), 71 deletions(-) create mode 100644 src/TestFramework/TestFramework.Net45Tests/Properties/AssemblyInfo.cs create mode 100644 src/TestFramework/TestFramework.Net45Tests/TestEnvironment/TestEnvTests.cs create mode 100644 src/TestFramework/TestFramework.Net45Tests/TestFramework.Net45Tests.csproj create mode 100644 src/TestFramework/TestFramework.Net45Tests/packages.config create mode 100644 src/TestFramework/nuget.config diff --git a/src/TestFramework/Microsoft.Azure.Test.HttpRecorder/project.json b/src/TestFramework/Microsoft.Azure.Test.HttpRecorder/project.json index 8e3782220726..c7fd82ef0183 100644 --- a/src/TestFramework/Microsoft.Azure.Test.HttpRecorder/project.json +++ b/src/TestFramework/Microsoft.Azure.Test.HttpRecorder/project.json @@ -1,5 +1,5 @@ { - "version": "1.6.9", + "version": "1.7.0", "copyright": "Copyright (c) Microsoft Corporation", "title": "HttpRecorder Library for recording Clinet/Server communication in Azure", "description": "Microsoft.Azure.Test.HttpRecorder", @@ -10,8 +10,8 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft AutoRest ClientRuntime HttpRecorder REST" ], - "requireLicenseAcceptance": true, + "tags": [ "Microsoft AutoRest ClientRuntime HttpRecorder REST", "netCore451511" ], + "requireLicenseAcceptance": true }, "buildOptions": { @@ -40,6 +40,7 @@ "imports": [ "dnxcore50" ], "dependencies": { "NETStandard.Library": "1.6.1", + "Microsoft.NETCore.Platforms": "1.1.0", "Newtonsoft.Json": "[9.0.1,10.0)", "System.AppDomain": "2.0.11" } diff --git a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ConnectionString.cs b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ConnectionString.cs index de00b3c92d6c..201b82d81453 100644 --- a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ConnectionString.cs +++ b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ConnectionString.cs @@ -173,7 +173,7 @@ private string FirstNonNullUriInConnectionString() var nonEmptyUriList = KeyValuePairs.Where(item => { return ((item.Key.Contains("uri") || - (item.Key.Equals(ConnectionStringKeys.AADAuthenticationEndpointKey))) && (!string.IsNullOrEmpty(item.Value))); + (item.Key.Equals(ConnectionStringKeys.AADAuthUriKey))) && (!string.IsNullOrEmpty(item.Value))); }); if(nonEmptyUriList.IsAny>()) @@ -207,7 +207,17 @@ private bool IsEnvironmentSet() return envSet; } - + + internal bool HasNonEmptyValue(string connStrKey) + { + string keyValue = string.Empty; + KeyValuePairs.TryGetValue(connStrKey, out keyValue); + + if (string.IsNullOrEmpty(keyValue)) return false; + + return true; + } + #endregion #region Public Functions diff --git a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ConnectionStringKeys.cs b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ConnectionStringKeys.cs index b8e9ae20df0b..c2706af6cd2b 100644 --- a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ConnectionStringKeys.cs +++ b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ConnectionStringKeys.cs @@ -81,6 +81,11 @@ public class ConnectionStringKeys /// public const string AADTokenAudienceUriKey = "AADTokenAudienceUri"; + /// + /// + /// + public const string GraphTokenAudienceUriKey = "GraphTokenAudienceUri"; + /// /// The key inside the connection string for the base management URI /// @@ -104,7 +109,7 @@ public class ConnectionStringKeys /// /// The key inside the connection string for the RDFE Portal URI /// - //public const string RdfePortalUriKey = "RdfePortalUri"; + public const string RdfePortalUriKey = "RdfePortalUri"; /// /// The key inside the connection string for the DataLake FileSystem URI suffix @@ -119,9 +124,22 @@ public class ConnectionStringKeys /// /// Endpoint to use for AAD authentication /// - public const string AADAuthenticationEndpointKey = "AADAuthEndpoint"; + public const string AADAuthUriKey = "AADAuthUri"; //Most probably ActiveDirectoryAuthority - public const string GraphTokenAudienceUriKey = "GraphTokenAudienceUri"; + /// + /// Publishsettings endpoint + /// + public const string PublishSettingsFileUriKey = "PublishSettingsFileUri"; + + /// + /// Service Management endpoint + /// + public const string ServiceManagementUriKey = "ServiceManagementUri"; + + /// + /// Resource Management endpoint + /// + public const string ResourceManagementUriKey = "ResourceManagementUri"; #endregion } diff --git a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEndpoints.cs b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEndpoints.cs index 1d2883661578..164fc46a76bd 100644 --- a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEndpoints.cs +++ b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEndpoints.cs @@ -9,7 +9,8 @@ public enum EnvironmentNames Prod, Dogfood, Next, - Current + Current, + Custom } public class TestEndpoints @@ -17,7 +18,7 @@ public class TestEndpoints /// /// /// - internal TestEndpoints() { } + private TestEndpoints() { } internal TestEndpoints(EnvironmentNames testEnvName) { #region environment switch @@ -98,6 +99,14 @@ internal TestEndpoints(EnvironmentNames testEnvName) break; #endregion } + + case EnvironmentNames.Custom: + { + #region + Name = EnvironmentNames.Custom; + break; + #endregion + } } #endregion } @@ -120,6 +129,7 @@ private TestEndpoints(TestEndpoints testEndpoint) DataLakeAnalyticsJobAndCatalogServiceUri = testEndpoint.DataLakeAnalyticsJobAndCatalogServiceUri; AADTokenAudienceUri = testEndpoint.AADTokenAudienceUri; GraphTokenAudienceUri = testEndpoint.GraphTokenAudienceUri; + PublishingSettingsFileUri = testEndpoint.PublishingSettingsFileUri; } /// @@ -127,53 +137,91 @@ private TestEndpoints(TestEndpoints testEndpoint) /// /// endPoint that needs to be updated according to connection string /// User provided connection string - internal TestEndpoints(TestEndpoints testEndpoint, ConnectionString connString): this(testEndpoint) + internal TestEndpoints(TestEndpoints testEndpoint, ConnectionString connStr) : this(testEndpoint) + { + UpdateEnvironmentEndpoint(connStr); + } + + /// + /// Constructor updates endpoint URI that matches Environment names with supplied URI's in connection string + /// + /// EnvironmentName + /// ConnectionString object + internal TestEndpoints(EnvironmentNames envName, ConnectionString connStr) : this(envName) { - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.BaseUriKey))) + UpdateEnvironmentEndpoint(connStr); + } + + /// + /// This function will update the URI keyvalue pairs passed into connection string and update accordingly + /// E.g. You want to use Prod environment, but would like to use a custom ResourceManagementUri URI in prod env. + /// So instead of the hard coded prod ResourceManagementUri https://management.core.windows.net, you would like to use + /// https://brazilus.management.azure.com + /// + /// ConnectionString object + private void UpdateEnvironmentEndpoint(ConnectionString connStr) + { + #region + if (connStr.HasNonEmptyValue(ConnectionStringKeys.AADTokenAudienceUriKey)) { - ResourceManagementUri = new Uri(connString.GetValue(ConnectionStringKeys.BaseUriKey)); + AADTokenAudienceUri = new Uri(connStr.GetValue(ConnectionStringKeys.AADTokenAudienceUriKey)); } - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.GraphUriKey))) + if (connStr.HasNonEmptyValue(ConnectionStringKeys.GraphTokenAudienceUriKey)) { - GraphUri = new Uri(connString.GetValue(ConnectionStringKeys.GraphUriKey)); + GraphTokenAudienceUri = new Uri(connStr.GetValue(ConnectionStringKeys.GraphTokenAudienceUriKey)); } - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.GalleryUriKey))) + if (connStr.HasNonEmptyValue(ConnectionStringKeys.GraphUriKey)) { - GalleryUri = new Uri(connString.GetValue(ConnectionStringKeys.GalleryUriKey)); + GraphUri = new Uri(connStr.GetValue(ConnectionStringKeys.GraphUriKey)); } - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.AADAuthenticationEndpointKey))) + if (connStr.HasNonEmptyValue(ConnectionStringKeys.GalleryUriKey)) { - AADAuthUri = new Uri(connString.GetValue(ConnectionStringKeys.AADAuthenticationEndpointKey)); + GalleryUri = new Uri(connStr.GetValue(ConnectionStringKeys.GalleryUriKey)); } - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.IbizaPortalUriKey))) + if (connStr.HasNonEmptyValue(ConnectionStringKeys.IbizaPortalUriKey)) { - IbizaPortalUri = new Uri(connString.GetValue(ConnectionStringKeys.IbizaPortalUriKey)); + IbizaPortalUri = new Uri(connStr.GetValue(ConnectionStringKeys.IbizaPortalUriKey)); } - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.DataLakeStoreServiceUriKey))) + if (connStr.HasNonEmptyValue(ConnectionStringKeys.RdfePortalUriKey)) { - DataLakeStoreServiceUri = new Uri(connString.GetValue(ConnectionStringKeys.DataLakeStoreServiceUriKey)); + RdfePortalUri = new Uri(connStr.GetValue(ConnectionStringKeys.RdfePortalUriKey)); } - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.DataLakeAnalyticsJobAndCatalogServiceUriKey))) + if (connStr.HasNonEmptyValue(ConnectionStringKeys.DataLakeStoreServiceUriKey)) { - DataLakeAnalyticsJobAndCatalogServiceUri = new Uri(connString.GetValue(ConnectionStringKeys.DataLakeAnalyticsJobAndCatalogServiceUriKey)); + DataLakeStoreServiceUri = new Uri(connStr.GetValue(ConnectionStringKeys.DataLakeStoreServiceUriKey)); } - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.AADTokenAudienceUriKey))) + if (connStr.HasNonEmptyValue(ConnectionStringKeys.DataLakeAnalyticsJobAndCatalogServiceUriKey)) { - AADTokenAudienceUri = new Uri(connString.GetValue(ConnectionStringKeys.AADTokenAudienceUriKey)); + DataLakeAnalyticsJobAndCatalogServiceUri = new Uri(connStr.GetValue(ConnectionStringKeys.DataLakeAnalyticsJobAndCatalogServiceUriKey)); } - if (!string.IsNullOrEmpty(connString.GetValue(ConnectionStringKeys.GraphTokenAudienceUriKey))) + if (connStr.HasNonEmptyValue(ConnectionStringKeys.AADAuthUriKey)) { - GraphTokenAudienceUri = new Uri(connString.GetValue(ConnectionStringKeys.GraphTokenAudienceUriKey)); + AADAuthUri = new Uri(connStr.GetValue(ConnectionStringKeys.AADAuthUriKey)); } + if (connStr.HasNonEmptyValue(ConnectionStringKeys.PublishSettingsFileUriKey)) + { + PublishingSettingsFileUri = new Uri(connStr.GetValue(ConnectionStringKeys.PublishSettingsFileUriKey)); + } + + if (connStr.HasNonEmptyValue(ConnectionStringKeys.ServiceManagementUriKey)) + { + ServiceManagementUri = new Uri(connStr.GetValue(ConnectionStringKeys.ServiceManagementUriKey)); + } + + if (connStr.HasNonEmptyValue(ConnectionStringKeys.ResourceManagementUriKey)) + { + ResourceManagementUri = new Uri(connStr.GetValue(ConnectionStringKeys.ResourceManagementUriKey)); + } + #endregion } //TestEnvironment Name @@ -212,5 +260,9 @@ internal TestEndpoints(TestEndpoints testEndpoint, ConnectionString connString): // Graph Token Audience public Uri GraphTokenAudienceUri { get; set; } + public Uri PublishingSettingsFileUri { get; set; } + + //public Uri AADServiceUri { get; set; } + } } diff --git a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEnvironment.cs b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEnvironment.cs index dd1b308859ef..0c5097fc40d2 100644 --- a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEnvironment.cs +++ b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEnvironment.cs @@ -24,6 +24,11 @@ public class TestEnvironment /// const string TestCSMOrgIdConnectionStringKey = "TEST_CSM_ORGID_AUTHENTICATION"; + /// + /// Environment variable that can also be used to set HttpRecorder mode + /// + const string AZURE_TEST_MODE_ENVKEY = "AZURE_TEST_MODE"; + /// /// Connection string used by Test Environment /// @@ -150,6 +155,7 @@ private void LoadDefaultEnvironmentEndpoints() EnvEndpoints.Add(EnvironmentNames.Dogfood, new TestEndpoints(EnvironmentNames.Dogfood)); EnvEndpoints.Add(EnvironmentNames.Next, new TestEndpoints(EnvironmentNames.Next)); EnvEndpoints.Add(EnvironmentNames.Current, new TestEndpoints(EnvironmentNames.Current)); + EnvEndpoints.Add(EnvironmentNames.Custom, new TestEndpoints(EnvironmentNames.Custom)); } } @@ -158,7 +164,7 @@ private void LoadDefaultEnvironmentEndpoints() /// private void SetupHttpRecorderMode() { - string testMode = Environment.GetEnvironmentVariable("AZURE_TEST_MODE"); + string testMode = Environment.GetEnvironmentVariable(AZURE_TEST_MODE_ENVKEY); if (string.IsNullOrEmpty(testMode)) { @@ -209,7 +215,6 @@ private void RecorderModeSettings() { HttpMockServer.Variables.Add(ConnectionStringKeys.SubscriptionIdKey, this.SubscriptionId); } - //We are not going to support custom key-value pairs in CustomeEnvValues //If users wants to add new keyValue pairs, they can do it by using this.ConnectionString.KeyValuePairs.Add("foo", "bar"); @@ -244,6 +249,7 @@ private void Login() 3) Interactive Login (where user will be presented with prompt to login) */ #region Login + #region aadSettings ActiveDirectoryServiceSettings aadServiceSettings = new ActiveDirectoryServiceSettings() { AuthenticationEndpoint = new Uri(this.Endpoints.AADAuthUri.ToString() + this.ConnectionString.GetValue(ConnectionStringKeys.AADTenantKey)), @@ -254,6 +260,7 @@ private void Login() AuthenticationEndpoint = new Uri(this.Endpoints.AADAuthUri.ToString() + this.ConnectionString.GetValue(ConnectionStringKeys.AADTenantKey)), TokenAudience = this.Endpoints.GraphTokenAudienceUri }; + #endregion if ((!string.IsNullOrEmpty(spnClientId)) && (!string.IsNullOrEmpty(spnSecret))) { @@ -276,7 +283,8 @@ private void Login() else { #if NET45 - InteractiveLogin(this.Tenant, aadServiceSettings, graphAADServiceSettings); + InteractiveLogin(this.Tenant, PowerShellClientId, + aadServiceSettings, graphAADServiceSettings); #else throw new NotSupportedException("Interactive Login is supported only in NET45 projects"); #endif @@ -290,24 +298,42 @@ private void Login() /// /// /// - private void InteractiveLogin(string tenant, ActiveDirectoryServiceSettings aadServiceSettings, ActiveDirectoryServiceSettings graphAADServiceSettings) + private void InteractiveLogin(string tenant, string PsClientId, + ActiveDirectoryServiceSettings aadServiceSettings, + ActiveDirectoryServiceSettings graphAADServiceSettings) { -#if NET45 +#if NET45 ActiveDirectoryClientSettings clientSettings = new ActiveDirectoryClientSettings() { - ClientId = this.ConnectionString.GetValue(ConnectionStringKeys.ServicePrincipalKey), + ClientId = PsClientId, ClientRedirectUri = new Uri("urn:ietf:wg:oauth:2.0:oob"), - PromptBehavior = PromptBehavior.Auto + PromptBehavior = PromptBehavior.Always }; - Task mgmAuthResult = Task.Run(async () => (TokenCredentials)await UserTokenProvider - .LoginWithPromptAsync(this.Tenant, clientSettings, aadServiceSettings).ConfigureAwait(continueOnCapturedContext: false)); + TaskScheduler scheduler; + if (SynchronizationContext.Current != null) + { + scheduler = TaskScheduler.FromCurrentSynchronizationContext(); + } + else + { + scheduler = TaskScheduler.Current; + } + + Task mgmAuthResult = Task.Run(async () => (TokenCredentials)await UserTokenProvider + .LoginWithPromptAsync(this.Tenant, + clientSettings, + aadServiceSettings, () => { return scheduler; }).ConfigureAwait(continueOnCapturedContext: false)); + this.TokenInfo[TokenAudience.Management] = mgmAuthResult.Result; + this.ConnectionString.KeyValuePairs[ConnectionStringKeys.UserIdKey] = this.TokenInfo[TokenAudience.Management].CallerId; try - { + { Task graphAuthResult = Task.Run(async () => (TokenCredentials)await UserTokenProvider - .LoginWithPromptAsync(this.Tenant, clientSettings, graphAADServiceSettings).ConfigureAwait(continueOnCapturedContext: true)); + .LoginWithPromptAsync(this.Tenant, + clientSettings, + graphAADServiceSettings, () => { return scheduler; }).ConfigureAwait(continueOnCapturedContext: true)); this.TokenInfo[TokenAudience.Graph] = graphAuthResult.Result; } catch @@ -322,29 +348,70 @@ private void InteractiveLogin(string tenant, ActiveDirectoryServiceSettings aadS /// private void VerifySubscription() { -#region - if (!(string.IsNullOrEmpty(this.SubscriptionId)) || (this.SubscriptionId.Equals("None", StringComparison.OrdinalIgnoreCase))) + #region + string matchedSubscriptionId = string.Empty; + StringBuilder sb = new StringBuilder(); + string callerId = string.Empty; + string subs = string.Empty; + + if (this.TokenInfo[TokenAudience.Management] != null) { - //TokenCredentials cred = this.TokenInfo[TokenAudience.Management]; + try { callerId = this.TokenInfo[TokenAudience.Management].CallerId; } catch { } + } - List subscriptionList = ListSubscriptions(this.BaseUri.ToString(), this.TokenInfo[TokenAudience.Management]); - string subscriptionId = subscriptionList.Where((sub) => sub.SubscriptionId.Equals(this.SubscriptionId, StringComparison.OrdinalIgnoreCase)).FirstOrDefault().SubscriptionId; + List subscriptionList = ListSubscriptions(this.BaseUri.ToString(), this.TokenInfo[TokenAudience.Management]); - if (string.IsNullOrEmpty(subscriptionId)) + if (!(string.IsNullOrEmpty(this.SubscriptionId)) && !(this.SubscriptionId.Equals("None", StringComparison.OrdinalIgnoreCase))) + { + if (subscriptionList.Any()) { - StringBuilder sb = new StringBuilder("List of subscriptions retrieved:\r\n"); - foreach (SubscriptionInfo subInfo in subscriptionList) + var matchedSubs = subscriptionList.Where((sub) => sub.SubscriptionId.Equals(this.SubscriptionId, StringComparison.OrdinalIgnoreCase)); + if (matchedSubs.IsAny()) + { + matchedSubscriptionId = matchedSubs.FirstOrDefault().SubscriptionId; + } + else { - sb.AppendLine(subInfo.SubscriptionId); + foreach (SubscriptionInfo subInfo in subscriptionList) + { + subs += subInfo.SubscriptionId + ","; + } } + } - //TODO: Find a way to get userId that is being used to retrive subscriptions - //Currently if there occurs a situation, the subscription list retrieved does not match the supplied subscriptionIds - //There is not way to let the user know as to for what user the subscription list was retrieved. - string exceptionString = string.Format("Either no subscription was provided in connection string (e.g. TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId= or " + - "The provided SubscriptionId in connections string - '{0}' does not match the list of subscriptions associated with the account \r\n {1}", this.SubscriptionId, sb.ToString()); + if (string.IsNullOrEmpty(matchedSubscriptionId)) + { + sb.AppendLine(string.Format("SubscriptionList:'{0}' retrieved for the user/spn id '{1}', do not match with the provided subscriptionId '{2}' in connection string", + subs, callerId, this.SubscriptionId)); - throw new Exception(exceptionString); + throw new Exception(sb.ToString()); + } + } + else + { + // The idea is in case if no match was found, we check if subscription Id was provided in connection string, if not + // we then check if the retrieved subscription list has exactly 1 subscription, if yes we will just use that one. + if (string.IsNullOrEmpty(this.SubscriptionId)) + { + if (subscriptionList.Count() == 1) + { + this.ConnectionString.KeyValuePairs[ConnectionStringKeys.SubscriptionIdKey] = subscriptionList.First().SubscriptionId; + } + else + { + if (string.IsNullOrEmpty(this.SubscriptionId)) + { + sb.AppendLine("Retrieved subscription list has more than 1 subscription. Connection string has no subscription provided. Provide SubcriptionId info in connection string"); + throw new Exception(sb.ToString()); + } + } + } + else if(this.SubscriptionId.Equals("None", StringComparison.OrdinalIgnoreCase)) + { + sb.AppendLine(string.Format("'{0}': connection string contains subscriptionId as '{1}'", + TestCSMOrgIdConnectionStringKey, this.SubscriptionId)); + sb.AppendLine("Provide valid SubcriptionId info in connection string"); + throw new Exception(sb.ToString()); } } #endregion @@ -421,7 +488,6 @@ private string GetKeyValue(string connectionStringKeyName) return keyValue; } - #endregion } } \ No newline at end of file diff --git a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/project.json b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/project.json index 32f08b3cb115..289d886fb5b6 100644 --- a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/project.json +++ b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/project.json @@ -1,5 +1,5 @@ { - "version": "1.5.3", + "version": "1.6.0", "copyright": "Copyright (c) Microsoft Corporation", "title": "Test framework for Microsoft AutoRest Generated Clients", "description": "Microsoft.Rest.ClientRuntime.Azure.TestFramework", @@ -10,8 +10,8 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft AutoRest ClientRuntime REST" ], - "requireLicenseAcceptance": true, + "tags": [ "Microsoft AutoRest ClientRuntime REST", "netCore451511" ], + "requireLicenseAcceptance": true }, "buildOptions": { @@ -32,6 +32,7 @@ }, "imports": [ "dnxcore50" ], "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", "NETStandard.Library": "1.6.1", "System.Threading": "4.3.0", "System.Threading.Thread": "4.3.0" @@ -39,8 +40,9 @@ } }, "dependencies": { - "Microsoft.Azure.Test.HttpRecorder": "[1.6.9,2.0.0)", + "Microsoft.Azure.Test.HttpRecorder": "[1.7.0,2.0.0)", "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.Authentication": "[2.2.10,3.0.0)" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.Authentication": "[2.2.12,3.0.0)" } } diff --git a/src/TestFramework/TestFramework.Net45Tests/Properties/AssemblyInfo.cs b/src/TestFramework/TestFramework.Net45Tests/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..a3abd42e97b1 --- /dev/null +++ b/src/TestFramework/TestFramework.Net45Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Net45Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Net45Tests")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("2541f589-7a92-4890-9678-e7d313e27c47")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/TestFramework/TestFramework.Net45Tests/TestEnvironment/TestEnvTests.cs b/src/TestFramework/TestFramework.Net45Tests/TestEnvironment/TestEnvTests.cs new file mode 100644 index 000000000000..34557b48d083 --- /dev/null +++ b/src/TestFramework/TestFramework.Net45Tests/TestEnvironment/TestEnvTests.cs @@ -0,0 +1,101 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +namespace TestFramework.Net45Tests +{ + using Microsoft.Azure.Test.HttpRecorder; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using System; + using Xunit; + + public class TestEnvTests + { + [Theory(Skip = "Interactive Tests, needs to be run manually")] + [InlineData("AADTenant=")] + [InlineData("AADTenant=;SubscriptionId=None;Environment=Prod")] //Test this with None as the SubId + public void InteractiveLoginForCSP(string connStr) + { + // Use this test case to set connection string without username and password, which will prompt you to enter UserName and password + // use CSP username/pwd that we have. This account has no subscription associated, hence throws exception. + // TestEnv checks if the logged in user has the subscription that is provided in the connection string + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", connStr); + HttpMockServer.Mode = HttpRecorderMode.Record; + try + { + // If you use azpowershellpartner username, as it is not associated with any subscription, it throws + TestEnvironment env = TestEnvironmentFactory.GetTestEnvironment(); + } + catch(Exception ex) + { + Assert.True(true); + } + } + + + [Theory(Skip = "Interactive Tests, needs to be run manually")] + [InlineData("AADTenant=;SubscriptionId=;Environment=Prod")] + public void InteractiveLoginKnownUserName(string connStr) + { + // Log in for this test case using your alias + // the idea is to initiate auth even on 2FA tenant (in this case msft) + // have a valid tenant id and subscription your alias has access to. + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", connStr); + HttpMockServer.Mode = HttpRecorderMode.Record; + TestEnvironment env = TestEnvironmentFactory.GetTestEnvironment(); + string userId = env.ConnectionString.KeyValuePairs[ConnectionStringKeys.UserIdKey]; + Assert.EndsWith("microsoft.com", userId); + Assert.False(string.IsNullOrEmpty(userId)); + } + + // Please update the connection string with the right information and then run the test + [Theory(Skip = "Interactive Tests, needs to be run manually")] + [InlineData("SubscriptionId=;" + + "AADTenant=;" + + "HttpRecorderMode=Record;" + + "Environment=Custom;" + + "ResourceManagementUri=https://management.microsoftazure.de/;" + + "ServiceManagementUri=https://management.core.cloudapi.de/;" + + "GalleryUri=https://gallery.cloudapi.de/;" + + "GraphUri=https://graph.cloudapi.de/;" + + "AADAuthUri=https://login.microsoftonline.de/;" + + "IbizaPortalUri=http://portal.microsoftazure.de/;" + + "RdfePortalUri=https://management.core.cloudapi.de/;" + + "GraphTokenAudienceUri=https://graph.cloudapi.de/;" + + "AADTokenAudienceUri=https://management.core.cloudapi.de/" + )] + public void InteractiveLoginGermanCloud(string connStr) + { + // Log in for this test case using your alias + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", connStr); + HttpMockServer.Mode = HttpRecorderMode.Record; + TestEnvironment env = TestEnvironmentFactory.GetTestEnvironment(); + string userId = env.ConnectionString.KeyValuePairs[ConnectionStringKeys.UserIdKey]; + Assert.EndsWith(".onmicrosoft.de", userId); + Assert.False(string.IsNullOrEmpty(userId)); + } + + // Please update the connection string with the right information and then run the test, do not provide subscription Id + [Theory(Skip = "Interactive Tests, needs to be run manually")] + [InlineData("AADTenant=;" + + "HttpRecorderMode=Record;" + + "Environment=Custom;" + + "ResourceManagementUri=https://management.microsoftazure.de/;" + + "ServiceManagementUri=https://management.core.cloudapi.de/;" + + "GalleryUri=https://gallery.cloudapi.de/;" + + "GraphUri=https://graph.cloudapi.de/;" + + "AADAuthUri=https://login.microsoftonline.de/;" + + "IbizaPortalUri=http://portal.microsoftazure.de/;" + + "RdfePortalUri=https://management.core.cloudapi.de/;" + + "GraphTokenAudienceUri=https://graph.cloudapi.de/;" + + "AADTokenAudienceUri=https://management.core.cloudapi.de/" + )] + public void InteractiveGermanLoginNoSubscription(string connStr) + { + // Log in for this test case using your alias + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", connStr); + HttpMockServer.Mode = HttpRecorderMode.Record; + TestEnvironment env = TestEnvironmentFactory.GetTestEnvironment(); + string subscriptionId = env.ConnectionString.KeyValuePairs[ConnectionStringKeys.SubscriptionIdKey]; + Assert.False(string.IsNullOrEmpty(subscriptionId)); + } + } +} diff --git a/src/TestFramework/TestFramework.Net45Tests/TestFramework.Net45Tests.csproj b/src/TestFramework/TestFramework.Net45Tests/TestFramework.Net45Tests.csproj new file mode 100644 index 000000000000..43f190f1577a --- /dev/null +++ b/src/TestFramework/TestFramework.Net45Tests/TestFramework.Net45Tests.csproj @@ -0,0 +1,118 @@ + + + + + + Debug + AnyCPU + {2541F589-7A92-4890-9678-E7D313E27C47} + Library + Properties + Net45Tests + Net45Tests + v4.5 + 512 + $(ProjectDir)..\.. + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.28.3\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + True + + + ..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.28.3\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + True + + + + + + $(SrcDir)\TestFramework\Microsoft.Azure.Test.HttpRecorder\bin\$(Configuration)\net45\Microsoft.Azure.Test.HttpRecorder.dll + True + + + $(SrcDir)\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\bin\$(Configuration)\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll + True + + + $(SrcDir)\ClientRuntime\Microsoft.Rest.ClientRuntime\bin\$(Configuration)\net45\Microsoft.Rest.ClientRuntime.dll + True + + + $(SrcDir)\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure\bin\$(Configuration)\net45\Microsoft.Rest.ClientRuntime.Azure.dll + True + + + $(SrcDir)\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure.Authentication\bin\$(Configuration)\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + True + + + ..\..\..\..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll + True + + + ..\..\..\..\packages\xunit.assert.2.1.0\lib\dotnet\xunit.assert.dll + True + + + ..\..\..\..\packages\xunit.extensibility.core.2.1.0\lib\dotnet\xunit.core.dll + True + + + ..\..\..\..\packages\xunit.extensibility.execution.2.1.0\lib\net45\xunit.execution.desktop.dll + True + + + + + DisableTestRunParallel.cs + + + + + + + + + + {c4c4e1c8-b99d-4d90-8c27-6d0c0a268ba5} + TestFramework + + + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + \ No newline at end of file diff --git a/src/TestFramework/TestFramework.Net45Tests/packages.config b/src/TestFramework/TestFramework.Net45Tests/packages.config new file mode 100644 index 000000000000..8eaf474f1756 --- /dev/null +++ b/src/TestFramework/TestFramework.Net45Tests/packages.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/TestFramework/TestFramework.Tests/TestEnvironment/TestEnvironmentTests.cs b/src/TestFramework/TestFramework.Tests/TestEnvironment/TestEnvironmentTests.cs index 21f44ccd6aad..eb507c75988a 100644 --- a/src/TestFramework/TestFramework.Tests/TestEnvironment/TestEnvironmentTests.cs +++ b/src/TestFramework/TestFramework.Tests/TestEnvironment/TestEnvironmentTests.cs @@ -14,13 +14,13 @@ public class TestEnvironmentTests public void EmptyTestEnvironment() { TestEnvironment env = new TestEnvironment(); - Assert.Equal(4, env.EnvEndpoints.Count); + Assert.Equal(5, env.EnvEndpoints.Count); } [Fact] public void DefaultTenantInTestEnvironment() { - Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", "SubscriptionId=2c224e7e-57b-e71f4662e3a6;ServicePrincipal=4c9b80e8e4-7c2233383b4e;ServicePrincipalSecret=kzSj3+tSXIdRsX8mxuQe7yZY=;Environment=Prod"); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", "SubscriptionId=2c224e7e-57b-4662e3a6;ServicePrincipal=4c9b80e8e4-73383b4e;ServicePrincipalSecret=kzSjRsX8uQe7yZY=;Environment=Prod"); HttpMockServer.Mode = HttpRecorderMode.Playback; TestEnvironment env = TestEnvironmentFactory.GetTestEnvironment(); string tenantId = env.ConnectionString.KeyValuePairs[ConnectionStringKeys.AADTenantKey]; @@ -28,14 +28,48 @@ public void DefaultTenantInTestEnvironment() Assert.Equal("72f988bf-86f1-41af-91ab-2d7cd011db47", tenantId); } - [Fact(Skip = "environmentsetting string needs to be set using credentials from keyvault for domain that still have userName/Password and 2FA disabled")] - public void LoginUsnPwd() + [Fact] + public void LoadCustomEnvironment() { - //This environmentsetting string needs to be set from credentials from keyvault for domain that still have userName/Password and 2factor Auth is disabled - HttpMockServer.Mode = HttpRecorderMode.Record; + string cnnStr = @"SubscriptionId=18b0dcf-550319fa5eac;" + + "AADTenant=72f988bf-2d7cd011db47;" + + "HttpRecorderMode=Playback;" + + "Environment=Custom;" + + "ResourceManagementUri=https://brazilus.management.azure.com/;" + + "ServiceManagementUri=https://brazilus.management.azure.com/"; + + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", cnnStr); + HttpMockServer.Mode = HttpRecorderMode.Playback; TestEnvironment env = TestEnvironmentFactory.GetTestEnvironment(); - string userName = env.ConnectionString.KeyValuePairs[ConnectionStringKeys.UserIdKey]; - Assert.False(string.IsNullOrEmpty(userName)); + string resMgrUri = env.ConnectionString.KeyValuePairs[ConnectionStringKeys.ResourceManagementUriKey]; + string SvcMgrUri = env.ConnectionString.KeyValuePairs[ConnectionStringKeys.ServiceManagementUriKey]; + string ibizaUri = env.ConnectionString.KeyValuePairs[ConnectionStringKeys.IbizaPortalUriKey]; + + Assert.Equal("https://brazilus.management.azure.com/", resMgrUri); + Assert.Equal("https://brazilus.management.azure.com/", SvcMgrUri); + Assert.Equal("", ibizaUri); + } + + [Theory] + [InlineData("SubscriptionId=18b0dcf-550319fa5eac;" + + "AADTenant=72f988bf-2d7cd011db47;" + + "HttpRecorderMode=Playback;" + + "Environment=Prod;" + + "ResourceManagementUri=https://brazilus.management.azure.com/;" + + "ServiceManagementUri=https://brazilus.management.azure.com/")] + + public void UpdateExistingEnvironmentUri(string connStr) + { + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", connStr); + HttpMockServer.Mode = HttpRecorderMode.Playback; + TestEnvironment env = TestEnvironmentFactory.GetTestEnvironment(); + string resMgrUri = env.Endpoints.ResourceManagementUri.AbsoluteUri; + string SvcMgrUri = env.Endpoints.ServiceManagementUri.AbsoluteUri; + string ibizaUri = env.Endpoints.IbizaPortalUri.AbsoluteUri; + + Assert.Equal("https://brazilus.management.azure.com/", resMgrUri); + Assert.Equal("https://brazilus.management.azure.com/", SvcMgrUri); + Assert.Equal("https://portal.azure.com/", ibizaUri); } } } diff --git a/src/TestFramework/TestFramework.Tests/project.json b/src/TestFramework/TestFramework.Tests/project.json index 9b4f706f1e6f..6f7f9da07651 100644 --- a/src/TestFramework/TestFramework.Tests/project.json +++ b/src/TestFramework/TestFramework.Tests/project.json @@ -30,9 +30,10 @@ "type": "platform", "version": "1.0.0" }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.9,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.3,2.0.0)", + "Microsoft.Azure.Test.HttpRecorder": "[1.7.0,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.6.0,2.0.0)", "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0)", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", "xunit": "2.2.0-beta4-build3444", "dotnet-test-xunit": "2.2.0-preview2-build1029" }, diff --git a/src/TestFramework/TestRecordAndFramework.sln b/src/TestFramework/TestRecordAndFramework.sln index 770647368370..e984b2c2c6d0 100644 --- a/src/TestFramework/TestRecordAndFramework.sln +++ b/src/TestFramework/TestRecordAndFramework.sln @@ -17,6 +17,8 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntim EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure", "..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure\Microsoft.Rest.ClientRuntime.Azure.xproj", "{D5296EAB-C13E-4A88-9532-BD0677D18EC9}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestFramework.Net45Tests", "TestFramework.Net45Tests\TestFramework.Net45Tests.csproj", "{2541F589-7A92-4890-9678-E7D313E27C47}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -141,6 +143,22 @@ Global {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Portable-Release|Any CPU.Build.0 = Release|Any CPU {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.ActiveCfg = Release|Any CPU {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.Build.0 = Release|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Net40-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Net40-Debug|Any CPU.Build.0 = Debug|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Net40-Release|Any CPU.ActiveCfg = Release|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Net40-Release|Any CPU.Build.0 = Release|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Net45-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Net45-Debug|Any CPU.Build.0 = Debug|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Net45-Release|Any CPU.ActiveCfg = Release|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Net45-Release|Any CPU.Build.0 = Release|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Portable-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Portable-Debug|Any CPU.Build.0 = Debug|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Portable-Release|Any CPU.ActiveCfg = Release|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Portable-Release|Any CPU.Build.0 = Release|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2541F589-7A92-4890-9678-E7D313E27C47}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/TestFramework/nuget.config b/src/TestFramework/nuget.config new file mode 100644 index 000000000000..4bfada9cf5df --- /dev/null +++ b/src/TestFramework/nuget.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From 5a5c24441a4b0da9080577a1efbda7a1c8093a55 Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 6 Mar 2017 13:33:08 +0000 Subject: [PATCH 076/137] Support for version 2017-03-01 of Azure Traffic Manager REST API. Geographic profiles --- .../Generated/EndpointsOperations.cs | 27 ++- .../EndpointsOperationsExtensions.cs | 8 +- .../GeographicHierarchiesOperations.cs | 209 ++++++++++++++++++ ...ographicHierarchiesOperationsExtensions.cs | 52 +++++ .../Generated/IEndpointsOperations.cs | 8 +- .../IGeographicHierarchiesOperations.cs | 33 +++ .../Generated/IProfilesOperations.cs | 8 +- .../ITrafficManagerManagementClient.cs | 13 +- ...erRelativeDnsNameAvailabilityParameters.cs | 8 +- .../Generated/Models/DnsConfig.cs | 8 +- .../Generated/Models/Endpoint.cs | 32 ++- .../Generated/Models/MonitorConfig.cs | 8 +- .../Generated/Models/Page.cs | 8 +- .../Generated/Models/Profile.cs | 12 +- .../Generated/Models/Region.cs | 56 +++++ .../Generated/Models/Resource.cs | 8 +- .../TrafficManagerGeographicHierarchy.cs | 46 ++++ .../Models/TrafficManagerNameAvailability.cs | 8 +- .../Generated/ProfilesOperations.cs | 36 +-- .../Generated/ProfilesOperationsExtensions.cs | 8 +- .../TrafficManagerManagementClient.cs | 16 +- .../Properties/AssemblyInfo.cs | 4 +- .../project.json | 2 +- .../Helpers/TrafficManagerHelper.cs | 47 ++-- .../ScenarioTests/EndpointScenarioTests.cs | 70 ++++++ .../GeographicHierarchyScenarioTests.cs | 48 ++++ .../ScenarioTests/ProfileScenarioTests.cs | 24 +- 27 files changed, 670 insertions(+), 137 deletions(-) create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs create mode 100644 src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/EndpointScenarioTests.cs create mode 100644 src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/GeographicHierarchyScenarioTests.cs diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs index 0a5f41545ada..c11f29de1795 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { @@ -169,9 +167,12 @@ internal EndpointsOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -582,9 +583,12 @@ internal EndpointsOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -827,6 +831,7 @@ internal EndpointsOperations(TrafficManagerManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs index c282af716474..fcff44526e2b 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs new file mode 100644 index 000000000000..74f6b248548b --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs @@ -0,0 +1,209 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager +{ + using System; + using System.Linq; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using Microsoft.Rest.Azure; + using Models; + + /// + /// GeographicHierarchiesOperations operations. + /// + internal partial class GeographicHierarchiesOperations : IServiceOperations, IGeographicHierarchiesOperations + { + /// + /// Initializes a new instance of the GeographicHierarchiesOperations class. + /// + /// + /// Reference to the service client. + /// + internal GeographicHierarchiesOperations(TrafficManagerManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the TrafficManagerManagementClient + /// + public TrafficManagerManagementClient Client { get; private set; } + + /// + /// Gets the default Geographic Hierarchy used by the Geographic traffic + /// routing method. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetDefaultWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetDefault", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Network/trafficManagerGeographicHierarchies/default").ToString(); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs new file mode 100644 index 000000000000..fa40ac3d21de --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs @@ -0,0 +1,52 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for GeographicHierarchiesOperations. + /// + public static partial class GeographicHierarchiesOperationsExtensions + { + /// + /// Gets the default Geographic Hierarchy used by the Geographic traffic + /// routing method. + /// + /// + /// The operations group for this extension method. + /// + public static TrafficManagerGeographicHierarchy GetDefault(this IGeographicHierarchiesOperations operations) + { + return Task.Factory.StartNew(s => ((IGeographicHierarchiesOperations)s).GetDefaultAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the default Geographic Hierarchy used by the Geographic traffic + /// routing method. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetDefaultAsync(this IGeographicHierarchiesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDefaultWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs index 148a9e18b085..81d802f0d2ab 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs new file mode 100644 index 000000000000..242794ab4a4b --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs @@ -0,0 +1,33 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// GeographicHierarchiesOperations operations. + /// + public partial interface IGeographicHierarchiesOperations + { + /// + /// Gets the default Geographic Hierarchy used by the Geographic + /// traffic routing method. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetDefaultWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs index 4283fa93cef1..f74a6a50f7e7 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs index e7b2a5376a43..0545a707b497 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { @@ -80,5 +78,10 @@ public partial interface ITrafficManagerManagementClient : IDisposable /// IProfilesOperations Profiles { get; } + /// + /// Gets the IGeographicHierarchiesOperations. + /// + IGeographicHierarchiesOperations GeographicHierarchies { get; } + } } diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs index 2d2174fcdf59..8559c2416911 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs index 57080f1e1904..652ba02ae779 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs index c743b9cffe21..c5c4e8f94561 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { @@ -15,7 +13,7 @@ namespace Microsoft.Azure.Management.TrafficManager.Models using Microsoft.Rest.Azure; /// - /// Class respresenting a Traffic Manager endpoint. + /// Class representing a Traffic Manager endpoint. /// [JsonTransformation] public partial class Endpoint @@ -28,7 +26,7 @@ public Endpoint() { } /// /// Initializes a new instance of the Endpoint class. /// - public Endpoint(string id = default(string), string name = default(string), string type = default(string), string targetResourceId = default(string), string target = default(string), string endpointStatus = default(string), long? weight = default(long?), long? priority = default(long?), string endpointLocation = default(string), string endpointMonitorStatus = default(string), long? minChildEndpoints = default(long?)) + public Endpoint(string id = default(string), string name = default(string), string type = default(string), string targetResourceId = default(string), string target = default(string), string endpointStatus = default(string), long? weight = default(long?), long? priority = default(long?), string endpointLocation = default(string), string endpointMonitorStatus = default(string), long? minChildEndpoints = default(long?), IList geoMapping = default(IList)) { Id = id; Name = name; @@ -41,6 +39,7 @@ public Endpoint() { } EndpointLocation = endpointLocation; EndpointMonitorStatus = endpointMonitorStatus; MinChildEndpoints = minChildEndpoints; + GeoMapping = geoMapping; } /// @@ -94,17 +93,17 @@ public Endpoint() { } /// /// Gets or sets the priority of this endpoint when using the - /// ‘Priority’ traffic routing method. Possible values are from 1 - /// to 1000, lower values represent higher priority. This is an - /// optional parameter. If specified, it must be specified on all - /// endpoints, and no two endpoints can share the same priority value. + /// ‘Priority’ traffic routing method. Possible values are from 1 to + /// 1000, lower values represent higher priority. This is an optional + /// parameter. If specified, it must be specified on all endpoints, + /// and no two endpoints can share the same priority value. /// [JsonProperty(PropertyName = "properties.priority")] public long? Priority { get; set; } /// /// Specifies the location of the external or nested endpoints when - /// using the ‘Performance’ traffic routing method. + /// using the ‘Performance’ traffic routing method. /// [JsonProperty(PropertyName = "properties.endpointLocation")] public string EndpointLocation { get; set; } @@ -124,5 +123,14 @@ public Endpoint() { } [JsonProperty(PropertyName = "properties.minChildEndpoints")] public long? MinChildEndpoints { get; set; } + /// + /// Gets or sets the list of countries/regions mapped to this endpoint + /// when using the ‘Geographic’ traffic routing method. Please + /// consult Traffic Manager Geographic documentation for a full list + /// of accepted values. + /// + [JsonProperty(PropertyName = "properties.geoMapping")] + public IList GeoMapping { get; set; } + } } diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs index 392d917f3cb1..7b8a5a27e85c 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs index 886378427cee..4fc398a563b6 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs index 27e2702c56dc..4a2fb9819f6d 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { @@ -47,8 +45,8 @@ public Profile() { } /// /// Gets or sets the traffic routing method of the Traffic Manager - /// profile. Possible values are 'Performance', 'Weighted', or - /// 'Priority'. + /// profile. Possible values are 'Performance', 'Weighted', + /// 'Priority' or 'Geographic'. /// [JsonProperty(PropertyName = "properties.trafficRoutingMethod")] public string TrafficRoutingMethod { get; set; } diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs new file mode 100644 index 000000000000..f537f31c3cc4 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs @@ -0,0 +1,56 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Class representing a region in the Geographic hierarchy used with the + /// Geographic traffic routing method. + /// + public partial class Region + { + /// + /// Initializes a new instance of the Region class. + /// + public Region() { } + + /// + /// Initializes a new instance of the Region class. + /// + public Region(string code = default(string), string name = default(string), IList regions = default(IList)) + { + Code = code; + Name = name; + Regions = regions; + } + + /// + /// The code of the region + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// The name of the region + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// The list of Regions grouped under this Region in the Geographic + /// Hierarchy. + /// + [JsonProperty(PropertyName = "regions")] + public IList Regions { get; set; } + + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs index acc9f414d7fe..75c174eaa7a4 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs new file mode 100644 index 000000000000..8ed009bdb424 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs @@ -0,0 +1,46 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Class representing the Geographic hierarchy used with the Geographic + /// traffic routing method. + /// + [JsonTransformation] + public partial class TrafficManagerGeographicHierarchy : Resource + { + /// + /// Initializes a new instance of the + /// TrafficManagerGeographicHierarchy class. + /// + public TrafficManagerGeographicHierarchy() { } + + /// + /// Initializes a new instance of the + /// TrafficManagerGeographicHierarchy class. + /// + public TrafficManagerGeographicHierarchy(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), Region geographicHierarchy = default(Region)) + : base(id, name, type, location, tags) + { + GeographicHierarchy = geographicHierarchy; + } + + /// + /// The region at the root of the hierarchy from all the regions in + /// the hierarchy can be retrieved. + /// + [JsonProperty(PropertyName = "properties.geographicHierarchy")] + public Region GeographicHierarchy { get; set; } + + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs index e54df47c9167..d22f5a70d2ab 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs index 40dd2fd887f7..1c2034b0ee73 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { @@ -133,9 +131,12 @@ internal ProfilesOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -847,9 +848,12 @@ internal ProfilesOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -1074,6 +1078,7 @@ internal ProfilesOperations(TrafficManagerManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1209,9 +1214,12 @@ internal ProfilesOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs index a7c71cecaf8d..00e1632c484b 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs index 5b105dc326d6..6e3c792f3453 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs @@ -1,8 +1,6 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { @@ -84,6 +82,11 @@ public partial class TrafficManagerManagementClient : ServiceClient public virtual IProfilesOperations Profiles { get; private set; } + /// + /// Gets the IGeographicHierarchiesOperations. + /// + public virtual IGeographicHierarchiesOperations GeographicHierarchies { get; private set; } + /// /// Initializes a new instance of the TrafficManagerManagementClient class. /// @@ -265,8 +268,9 @@ private void Initialize() { this.Endpoints = new EndpointsOperations(this); this.Profiles = new ProfilesOperations(this); + this.GeographicHierarchies = new GeographicHierarchiesOperations(this); this.BaseUri = new Uri("https://management.azure.com"); - this.ApiVersion = "2015-11-01"; + this.ApiVersion = "2017-03-01"; this.AcceptLanguage = "en-US"; this.LongRunningOperationRetryTimeout = 30; this.GenerateClientRequestId = true; diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs index 46cff83775f0..08c52ec8195a 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Traffic Manager Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Traffic Manager management functions for managing the Microsoft Azure Traffic Manager service.")] -[assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyVersion("2.2.0.0")] +[assembly: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json index c7183cfbc6c4..759b945a1c87 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0-preview", + "version": "2.2.0-preview", "description": "Microsoft Azure Management TrafficManager Library", "authors": [ "Microsoft" ], diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/Helpers/TrafficManagerHelper.cs b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/Helpers/TrafficManagerHelper.cs index 8685a204432d..b1d3b40bd457 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/Helpers/TrafficManagerHelper.cs +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/Helpers/TrafficManagerHelper.cs @@ -36,7 +36,27 @@ public static Profile BuildProfile(string id, string name, string type, string l endpoints: endpoints); } - public static Profile GenerateDefaultProfile(string profileName) + public static Profile GenerateDefaultProfileWithExternalEndpoint(string profileName, string trafficRoutingMethod = "Performance") + { + Profile defaultProfile = GenerateDefaultEmptyProfile(profileName, trafficRoutingMethod); + defaultProfile.Endpoints = new[] + { + new Endpoint + { + Id = null, + Name = "My external endpoint", + Type = "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", + TargetResourceId = null, + Target = "foobar.contoso.com", + EndpointLocation = "North Europe", + EndpointStatus = "Enabled" + } + }; + + return defaultProfile; + } + + public static Profile GenerateDefaultEmptyProfile(string profileName, string trafficRoutingMethod = "Performance") { return TrafficManagerHelper.BuildProfile( id: null, @@ -45,31 +65,24 @@ public static Profile GenerateDefaultProfile(string profileName) location: "global", tags: null, profileStatus: "Enabled", - trafficRoutingMethod: "Performance", + trafficRoutingMethod: trafficRoutingMethod, dnsConfig: new DnsConfig { RelativeName = profileName, Ttl = 35 - }, + }, monitorConfig: new MonitorConfig { Protocol = "http", Port = 80, Path = "/testpath.aspx" - }, - endpoints: new [] - { - new Endpoint - { - Id = null, - Name = "My external endpoint", - Type = "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", - TargetResourceId = null, - Target = "foobar.contoso.com", - EndpointLocation = "North Europe", - EndpointStatus = "Enabled" - } - }); + }, + endpoints: null); + } + + public static string GenerateName() + { + return TestUtilities.GenerateName("azuresdkfornetautoresttrafficmanager"); } } } diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/EndpointScenarioTests.cs b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/EndpointScenarioTests.cs new file mode 100644 index 000000000000..73d00658c445 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/EndpointScenarioTests.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests +{ + using System.Collections.Generic; + using System.Linq; + using global::TrafficManager.Tests.Helpers; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.TrafficManager.Models; + using Microsoft.Azure.Management.TrafficManager.Testing.Helpers; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + + public class EndpointScenarioTests : TestBase + { + [Fact] + public void CrudEndpointGeographicProfile() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); + + string resourceGroupName = TrafficManagerHelper.GenerateName(); + string profileName = TrafficManagerHelper.GenerateName(); + ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); + + // Create the profile + Profile profile = trafficManagerClient.Profiles.CreateOrUpdate( + resourceGroup.Name, + profileName, + TrafficManagerHelper.GenerateDefaultEmptyProfile(profileName, "Geographic")); + + Assert.Equal("Geographic", profile.TrafficRoutingMethod); + + Endpoint endpoint = new Endpoint + { + Id = null, + Name = "My external endpoint", + Type = "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", + TargetResourceId = null, + Target = "foobar.contoso.com", + EndpointStatus = "Enabled", + GeoMapping = new[] { "GEO-AS", "GEO-AF" }, + }; + + // Create the endpoint + Endpoint createEndpointResponse = trafficManagerClient.Endpoints.CreateOrUpdate( + resourceGroup.Name, + profileName, + "ExternalEndpoints", + endpoint.Name, + endpoint); + + Assert.Equal("GEO-AS", createEndpointResponse.GeoMapping[0]); + Assert.Equal("GEO-AF", createEndpointResponse.GeoMapping[1]); + + // Get the endpoint + Endpoint endpointGetResponse = trafficManagerClient.Endpoints.Get( + resourceGroup.Name, + profileName, + "ExternalEndpoints", + endpoint.Name); + + Assert.Equal("GEO-AS", endpointGetResponse.GeoMapping[0]); + Assert.Equal("GEO-AF", endpointGetResponse.GeoMapping[1]); + } + } + } +} diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/GeographicHierarchyScenarioTests.cs b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/GeographicHierarchyScenarioTests.cs new file mode 100644 index 000000000000..6c6126382d67 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/GeographicHierarchyScenarioTests.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests +{ + using System.Collections.Generic; + using System.Linq; + using global::TrafficManager.Tests.Helpers; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.TrafficManager.Models; + using Microsoft.Azure.Management.TrafficManager.Testing.Helpers; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + + public class GeographicHierarchyScenarioTests : TestBase + { + [Fact] + public void GetDefaultGeographicHierarchy() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); + + TrafficManagerGeographicHierarchy getHierarchyResponse = trafficManagerClient.GeographicHierarchies.GetDefault(); + Assert.NotNull(getHierarchyResponse); + Assert.Equal("/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default", getHierarchyResponse.Id); + Assert.Equal("Microsoft.Network/trafficManagerGeographicHierarchies", getHierarchyResponse.Type); + Assert.Equal("default", getHierarchyResponse.Name); + + Assert.NotNull(getHierarchyResponse.GeographicHierarchy); + Region root = getHierarchyResponse.GeographicHierarchy; + + Assert.Equal("WORLD", root.Code); + Assert.Equal("World", root.Name); + Assert.NotEmpty(root.Regions); + + foreach (var grouping in root.Regions) + { + Assert.NotNull(grouping.Code); + Assert.NotEmpty(grouping.Code); + Assert.NotNull(grouping.Name); + Assert.NotEmpty(grouping.Name); + Assert.NotEmpty(grouping.Regions); + } + } + } + } +} diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/ProfileScenarioTests.cs b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/ProfileScenarioTests.cs index ca10837da2d5..10e5c12fdf1f 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/ProfileScenarioTests.cs +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/ProfileScenarioTests.cs @@ -21,15 +21,15 @@ public void CrudProfileFullCycle() { TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); - string resourceGroupName = TestUtilities.GenerateName("resourcegroup"); - string profileName = TestUtilities.GenerateName("atmprofile"); + string resourceGroupName = TrafficManagerHelper.GenerateName(); + string profileName = TrafficManagerHelper.GenerateName(); ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); // Create the profile trafficManagerClient.Profiles.CreateOrUpdate( resourceGroup.Name, profileName, - TrafficManagerHelper.GenerateDefaultProfile(profileName)); + TrafficManagerHelper.GenerateDefaultProfileWithExternalEndpoint(profileName)); // Get the profile trafficManagerClient.Profiles.Get( @@ -50,11 +50,11 @@ public void CrudProfileWithoutEndpoints_ThenUpdate() { TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); - string resourceGroupName = TestUtilities.GenerateName("resourcegroup"); - string profileName = TestUtilities.GenerateName("atmprofile"); + string resourceGroupName = TrafficManagerHelper.GenerateName(); + string profileName = TrafficManagerHelper.GenerateName(); ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); - Profile profile = TrafficManagerHelper.GenerateDefaultProfile(profileName); + Profile profile = TrafficManagerHelper.GenerateDefaultProfileWithExternalEndpoint(profileName); profile.Endpoints = null; // Create the profile @@ -94,17 +94,17 @@ public void ListProfilesByResourceGroup() { TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); - string resourceGroupName = TestUtilities.GenerateName("resourcegroup"); + string resourceGroupName = TrafficManagerHelper.GenerateName(); ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); for (int i = 0; i < 5; ++i) { - string profileName = TestUtilities.GenerateName("atmprofile"); + string profileName = TrafficManagerHelper.GenerateName(); trafficManagerClient.Profiles.CreateOrUpdate( resourceGroup.Name, profileName, - TrafficManagerHelper.GenerateDefaultProfile(profileName)); + TrafficManagerHelper.GenerateDefaultProfileWithExternalEndpoint(profileName)); } List listResponse = trafficManagerClient.Profiles.ListAllInResourceGroup(resourceGroup.Name).ToList(); @@ -122,17 +122,17 @@ public void ListAllProfiles() { TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); - string resourceGroupName = TestUtilities.GenerateName("resourcegroup"); + string resourceGroupName = TrafficManagerHelper.GenerateName(); ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); for (int i = 0; i < 5; ++i) { - string profileName = TestUtilities.GenerateName("atmprofile"); + string profileName = TrafficManagerHelper.GenerateName(); trafficManagerClient.Profiles.CreateOrUpdate( resourceGroup.Name, profileName, - TrafficManagerHelper.GenerateDefaultProfile(profileName)); + TrafficManagerHelper.GenerateDefaultProfileWithExternalEndpoint(profileName)); } IEnumerable listResponse = trafficManagerClient.Profiles.ListAll(); From 49c3cb12fb80e768d0e4c3c55e31665dbf3e34dc Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 6 Mar 2017 13:33:49 +0000 Subject: [PATCH 077/137] Update test recordings for version 2017-03-01 --- .../CrudEndpointGeographicProfile.json | 272 ++++++++++++++ .../GetDefaultGeographicHierarchy.json | 72 ++++ .../CrudProfileFullCycle.json | 169 +++++---- ...rudProfileWithoutEndpoints_ThenUpdate.json | 186 ++++----- .../ListAllProfiles.json | 354 ++++++++---------- .../ListProfilesByResourceGroup.json | 324 ++++++++-------- 6 files changed, 854 insertions(+), 523 deletions(-) create mode 100644 src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.EndpointScenarioTests/CrudEndpointGeographicProfile.json create mode 100644 src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.GeographicHierarchyScenarioTests/GetDefaultGeographicHierarchy.json diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.EndpointScenarioTests/CrudEndpointGeographicProfile.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.EndpointScenarioTests/CrudEndpointGeographicProfile.json new file mode 100644 index 000000000000..4a38e3773fd2 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.EndpointScenarioTests/CrudEndpointGeographicProfile.json @@ -0,0 +1,272 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager2156?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjIxNTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "e774d201-abcd-4c13-a414-a36c718ea2aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager2156\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "cc059b15-046a-486e-8724-b22d345beee1" + ], + "x-ms-correlation-request-id": [ + "cc059b15-046a-486e-8724-b22d345beee1" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121934Z:cc059b15-046a-486e-8724-b22d345beee1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager2930?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjIxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMjkzMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Geographic\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2930\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "350" + ], + "x-ms-client-request-id": [ + "94ebb1f4-68aa-4909-8ac9-9a2ac66ad08f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2930\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager2930\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Geographic\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2930\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager2930.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"Inactive\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "699" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94ebb1f4-68aa-4909-8ac9-9a2ac66ad08f" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10791" + ], + "x-ms-correlation-request-id": [ + "a3a3484c-2ed4-4ef5-abe4-a7324dd3c258" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121938Z:a3a3484c-2ed4-4ef5-abe4-a7324dd3c258" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager2930/ExternalEndpoints/My%20external%20endpoint?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjIxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMjkzMC9FeHRlcm5hbEVuZHBvaW50cy9NeSUyMGV4dGVybmFsJTIwZW5kcG9pbnQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"geoMapping\": [\r\n \"GEO-AS\",\r\n \"GEO-AF\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "268" + ], + "x-ms-client-request-id": [ + "25656fd6-e16e-42f5-ac3f-90fcca3fd82b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2930/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": null,\r\n \"geoMapping\": [\r\n \"GEO-AS\",\r\n \"GEO-AF\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "25656fd6-e16e-42f5-ac3f-90fcca3fd82b" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "f06c0348-1558-4aab-a7be-9109a5b3596f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121939Z:f06c0348-1558-4aab-a7be-9109a5b3596f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager2930/ExternalEndpoints/My%20external%20endpoint?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjIxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMjkzMC9FeHRlcm5hbEVuZHBvaW50cy9NeSUyMGV4dGVybmFsJTIwZW5kcG9pbnQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0696e79-93d8-425a-b387-1c8ed386da81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2930/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": null,\r\n \"geoMapping\": [\r\n \"GEO-AS\",\r\n \"GEO-AF\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:39 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f0696e79-93d8-425a-b387-1c8ed386da81" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "e55ef049-51e8-4936-879f-625386fa92ca" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121939Z:e55ef049-51e8-4936-879f-625386fa92ca" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager2156", + "azuresdkfornetautoresttrafficmanager2930" + ] + }, + "Variables": { + "SubscriptionId": "e68d4145-c9ae-4667-925d-c51c8d88ad73" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.GeographicHierarchyScenarioTests/GetDefaultGeographicHierarchy.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.GeographicHierarchyScenarioTests/GetDefaultGeographicHierarchy.json new file mode 100644 index 000000000000..4765de3c1cda --- /dev/null +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.GeographicHierarchyScenarioTests/GetDefaultGeographicHierarchy.json @@ -0,0 +1,72 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default?api-version=2017-03-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljTWFuYWdlckdlb2dyYXBoaWNIaWVyYXJjaGllcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "953da237-9711-4447-b221-4b718a21a15b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Network/trafficManagerGeographicHierarchies\",\r\n \"properties\": {\r\n \"geographicHierarchy\": {\r\n \"code\": \"WORLD\",\r\n \"name\": \"World\",\r\n \"regions\": [\r\n {\r\n \"code\": \"GEO-EU\",\r\n \"name\": \"Europe\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AD\",\r\n \"name\": \"Andorra\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AL\",\r\n \"name\": \"Albania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AT\",\r\n \"name\": \"Austria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AX\",\r\n \"name\": \"Åland Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BA\",\r\n \"name\": \"Bosnia and Herzegovina\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BE\",\r\n \"name\": \"Belgium\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BG\",\r\n \"name\": \"Bulgaria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BY\",\r\n \"name\": \"Belarus\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CH\",\r\n \"name\": \"Switzerland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CY\",\r\n \"name\": \"Cyprus\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CZ\",\r\n \"name\": \"Czech Republic\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DE\",\r\n \"name\": \"Germany\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DK\",\r\n \"name\": \"Denmark\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"EE\",\r\n \"name\": \"Estonia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ES\",\r\n \"name\": \"Spain\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FI\",\r\n \"name\": \"Finland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FO\",\r\n \"name\": \"Faroe Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FR\",\r\n \"name\": \"France\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GB\",\r\n \"name\": \"United Kingdom\",\r\n \"regions\": [\r\n {\r\n \"code\": \"GB-ENG\",\r\n \"name\": \"England\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GB-NIR\",\r\n \"name\": \"Northern Ireland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GB-SCT\",\r\n \"name\": \"Scotland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GB-WLS\",\r\n \"name\": \"Wales\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GG\",\r\n \"name\": \"Guernsey\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GI\",\r\n \"name\": \"Gibraltar\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GR\",\r\n \"name\": \"Greece\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HR\",\r\n \"name\": \"Croatia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HU\",\r\n \"name\": \"Hungary\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IE\",\r\n \"name\": \"Ireland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IM\",\r\n \"name\": \"Isle of Man\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IS\",\r\n \"name\": \"Iceland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IT\",\r\n \"name\": \"Italy\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"JE\",\r\n \"name\": \"Jersey\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LI\",\r\n \"name\": \"Liechtenstein\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LT\",\r\n \"name\": \"Lithuania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LU\",\r\n \"name\": \"Luxembourg\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LV\",\r\n \"name\": \"Latvia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MC\",\r\n \"name\": \"Monaco\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MD\",\r\n \"name\": \"Moldova\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ME\",\r\n \"name\": \"Montenegro\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MK\",\r\n \"name\": \"Macedonia, FYRO\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MT\",\r\n \"name\": \"Malta\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NL\",\r\n \"name\": \"Netherlands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NO\",\r\n \"name\": \"Norway\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PL\",\r\n \"name\": \"Poland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PT\",\r\n \"name\": \"Portugal\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RO\",\r\n \"name\": \"Romania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RS\",\r\n \"name\": \"Serbia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RU\",\r\n \"name\": \"Russia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SE\",\r\n \"name\": \"Sweden\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SI\",\r\n \"name\": \"Slovenia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SJ\",\r\n \"name\": \"Svalbard\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SK\",\r\n \"name\": \"Slovakia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SM\",\r\n \"name\": \"San Marino\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UA\",\r\n \"name\": \"Ukraine\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VA\",\r\n \"name\": \"Vatican City\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"XJ\",\r\n \"name\": \"Jan Mayen\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"XK\",\r\n \"name\": \"Kosovo\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-ME\",\r\n \"name\": \"Middle East\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AE\",\r\n \"name\": \"United Arab Emirates\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BH\",\r\n \"name\": \"Bahrain\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IL\",\r\n \"name\": \"Israel\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IQ\",\r\n \"name\": \"Iraq\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IR\",\r\n \"name\": \"Iran\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"JO\",\r\n \"name\": \"Jordan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KW\",\r\n \"name\": \"Kuwait\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LB\",\r\n \"name\": \"Lebanon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"OM\",\r\n \"name\": \"Oman\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PS\",\r\n \"name\": \"Palestinian Authority\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"QA\",\r\n \"name\": \"Qatar\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SY\",\r\n \"name\": \"Syria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SA\",\r\n \"name\": \"Saudi Arabia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TR\",\r\n \"name\": \"Turkey\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"YE\",\r\n \"name\": \"Yemen\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-NA\",\r\n \"name\": \"North America / Central America / Caribbean\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AG\",\r\n \"name\": \"Antigua and Barbuda\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AI\",\r\n \"name\": \"Anguilla\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AW\",\r\n \"name\": \"Aruba\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BB\",\r\n \"name\": \"Barbados\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BL\",\r\n \"name\": \"Saint Barthélemy\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BM\",\r\n \"name\": \"Bermuda\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BQ\",\r\n \"name\": \"Bonaire\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BS\",\r\n \"name\": \"Bahamas\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BZ\",\r\n \"name\": \"Belize\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA\",\r\n \"name\": \"Canada\",\r\n \"regions\": [\r\n {\r\n \"code\": \"CA-AB\",\r\n \"name\": \"Alberta\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-BC\",\r\n \"name\": \"British Columbia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-MB\",\r\n \"name\": \"Manitoba\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NB\",\r\n \"name\": \"New Brunswick\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NL\",\r\n \"name\": \"Newfoundland and Labrador\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NS\",\r\n \"name\": \"Nova Scotia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NT\",\r\n \"name\": \"Northwest Territories\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NU\",\r\n \"name\": \"Nunavut\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-ON\",\r\n \"name\": \"Ontario\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-PE\",\r\n \"name\": \"Prince Edward Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-QC\",\r\n \"name\": \"Québec\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-SK\",\r\n \"name\": \"Saskatchewan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-YT\",\r\n \"name\": \"Yukon Territory\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"CR\",\r\n \"name\": \"Costa Rica\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CU\",\r\n \"name\": \"Cuba\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CW\",\r\n \"name\": \"Curaçao\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DM\",\r\n \"name\": \"Dominica\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DO\",\r\n \"name\": \"Dominican Republic\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GD\",\r\n \"name\": \"Grenada\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GL\",\r\n \"name\": \"Greenland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GP\",\r\n \"name\": \"Guadeloupe\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GT\",\r\n \"name\": \"Guatemala\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HN\",\r\n \"name\": \"Honduras\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HT\",\r\n \"name\": \"Haiti\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"JM\",\r\n \"name\": \"Jamaica\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KN\",\r\n \"name\": \"Saint Kitts and Nevis\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KY\",\r\n \"name\": \"Cayman Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LC\",\r\n \"name\": \"Saint Lucia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MF\",\r\n \"name\": \"Saint Martin\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MQ\",\r\n \"name\": \"Martinique\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MS\",\r\n \"name\": \"Montserrat\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MX\",\r\n \"name\": \"Mexico\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NI\",\r\n \"name\": \"Nicaragua\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PA\",\r\n \"name\": \"Panama\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PM\",\r\n \"name\": \"Saint Pierre and Miquelon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PR\",\r\n \"name\": \"Puerto Rico\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SV\",\r\n \"name\": \"El Salvador\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SX\",\r\n \"name\": \"Sint Maarten\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TC\",\r\n \"name\": \"Turks and Caicos Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TT\",\r\n \"name\": \"Trinidad and Tobago\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UM\",\r\n \"name\": \"U.S. Outlying Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US\",\r\n \"name\": \"United States\",\r\n \"regions\": [\r\n {\r\n \"code\": \"US-AK\",\r\n \"name\": \"Alaska\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-AL\",\r\n \"name\": \"Alabama\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-AR\",\r\n \"name\": \"Arkansas\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-AZ\",\r\n \"name\": \"Arizona\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-CA\",\r\n \"name\": \"California\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-CO\",\r\n \"name\": \"Colorado\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-CT\",\r\n \"name\": \"Connecticut\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-DC\",\r\n \"name\": \"District of Columbia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-DE\",\r\n \"name\": \"Delaware\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-FL\",\r\n \"name\": \"Florida\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-GA\",\r\n \"name\": \"Georgia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-HI\",\r\n \"name\": \"Hawaii\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-IA\",\r\n \"name\": \"Iowa\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-ID\",\r\n \"name\": \"Idaho\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-IL\",\r\n \"name\": \"Illinois\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-IN\",\r\n \"name\": \"Indiana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-KS\",\r\n \"name\": \"Kansas\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-KY\",\r\n \"name\": \"Kentucky\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-LA\",\r\n \"name\": \"Louisiana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MA\",\r\n \"name\": \"Massachusetts\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MD\",\r\n \"name\": \"Maryland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-ME\",\r\n \"name\": \"Maine\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MI\",\r\n \"name\": \"Michigan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MN\",\r\n \"name\": \"Minnesota\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MO\",\r\n \"name\": \"Missouri\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MS\",\r\n \"name\": \"Mississippi\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MT\",\r\n \"name\": \"Montana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NC\",\r\n \"name\": \"North Carolina\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-ND\",\r\n \"name\": \"North Dakota\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NE\",\r\n \"name\": \"Nebraska\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NH\",\r\n \"name\": \"New Hampshire\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NJ\",\r\n \"name\": \"New Jersey\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NM\",\r\n \"name\": \"New Mexico\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NV\",\r\n \"name\": \"Nevada\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NY\",\r\n \"name\": \"New York\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-OH\",\r\n \"name\": \"Ohio\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-OK\",\r\n \"name\": \"Oklahoma\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-OR\",\r\n \"name\": \"Oregon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-PA\",\r\n \"name\": \"Pennsylvania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-RI\",\r\n \"name\": \"Rhode Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-SC\",\r\n \"name\": \"South Carolina\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-SD\",\r\n \"name\": \"South Dakota\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-TN\",\r\n \"name\": \"Tennessee\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-TX\",\r\n \"name\": \"Texas\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-UT\",\r\n \"name\": \"Utah\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-VA\",\r\n \"name\": \"Virginia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-VT\",\r\n \"name\": \"Vermont\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-WA\",\r\n \"name\": \"Washington\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-WI\",\r\n \"name\": \"Wisconsin\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-WV\",\r\n \"name\": \"West Virginia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-WY\",\r\n \"name\": \"Wyoming\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"VC\",\r\n \"name\": \"Saint Vincent and the Grenadines\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VG\",\r\n \"name\": \"British Virgin Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VI\",\r\n \"name\": \"U.S. Virgin Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"XE\",\r\n \"name\": \"Sint Eustatius\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"XS\",\r\n \"name\": \"Saba\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-AS\",\r\n \"name\": \"Asia\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AF\",\r\n \"name\": \"Afghanistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AM\",\r\n \"name\": \"Armenia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AZ\",\r\n \"name\": \"Azerbaijan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BD\",\r\n \"name\": \"Bangladesh\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BN\",\r\n \"name\": \"Brunei\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BT\",\r\n \"name\": \"Bhutan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CC\",\r\n \"name\": \"Cocos (Keeling) Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CN\",\r\n \"name\": \"China\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CX\",\r\n \"name\": \"Christmas Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GE\",\r\n \"name\": \"Georgia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HK\",\r\n \"name\": \"Hong Kong SAR\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ID\",\r\n \"name\": \"Indonesia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IN\",\r\n \"name\": \"India\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IO\",\r\n \"name\": \"British Indian Ocean Territory\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"JP\",\r\n \"name\": \"Japan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KG\",\r\n \"name\": \"Kyrgyzstan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KH\",\r\n \"name\": \"Cambodia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KP\",\r\n \"name\": \"North Korea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KR\",\r\n \"name\": \"Korea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KZ\",\r\n \"name\": \"Kazakhstan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LA\",\r\n \"name\": \"Laos\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LK\",\r\n \"name\": \"Sri Lanka\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MM\",\r\n \"name\": \"Myanmar\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MN\",\r\n \"name\": \"Mongolia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MO\",\r\n \"name\": \"Macao SAR\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MV\",\r\n \"name\": \"Maldives\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MY\",\r\n \"name\": \"Malaysia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NP\",\r\n \"name\": \"Nepal\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PH\",\r\n \"name\": \"Philippines\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PK\",\r\n \"name\": \"Pakistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SG\",\r\n \"name\": \"Singapore\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TH\",\r\n \"name\": \"Thailand\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TJ\",\r\n \"name\": \"Tajikistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TL\",\r\n \"name\": \"Timor_Leste\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TM\",\r\n \"name\": \"Turkmenistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TW\",\r\n \"name\": \"Taiwan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UZ\",\r\n \"name\": \"Uzbekistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VN\",\r\n \"name\": \"Vietnam\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-AF\",\r\n \"name\": \"Africa\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AO\",\r\n \"name\": \"Angola\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BF\",\r\n \"name\": \"Burkina Faso\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BI\",\r\n \"name\": \"Burundi\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BJ\",\r\n \"name\": \"Benin\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BV\",\r\n \"name\": \"Bouvet Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BW\",\r\n \"name\": \"Botswana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CD\",\r\n \"name\": \"Congo (DRC)\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CF\",\r\n \"name\": \"Central African Republic\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CG\",\r\n \"name\": \"Congo\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CI\",\r\n \"name\": \"Côte d’Ivoire\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CM\",\r\n \"name\": \"Cameroon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CV\",\r\n \"name\": \"Cabo Verde\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DJ\",\r\n \"name\": \"Djibouti\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DZ\",\r\n \"name\": \"Algeria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"EG\",\r\n \"name\": \"Egypt\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ER\",\r\n \"name\": \"Eritrea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ET\",\r\n \"name\": \"Ethiopia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GA\",\r\n \"name\": \"Gabon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GH\",\r\n \"name\": \"Ghana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GM\",\r\n \"name\": \"Gambia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GN\",\r\n \"name\": \"Guinea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GQ\",\r\n \"name\": \"Equatorial Guinea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GW\",\r\n \"name\": \"Guinea_Bissau\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KE\",\r\n \"name\": \"Kenya\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KM\",\r\n \"name\": \"Comoros\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LR\",\r\n \"name\": \"Liberia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LS\",\r\n \"name\": \"Lesotho\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LY\",\r\n \"name\": \"Libya\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MA\",\r\n \"name\": \"Morocco\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MG\",\r\n \"name\": \"Madagascar\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ML\",\r\n \"name\": \"Mali\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MR\",\r\n \"name\": \"Mauritania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MU\",\r\n \"name\": \"Mauritius\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MW\",\r\n \"name\": \"Malawi\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MZ\",\r\n \"name\": \"Mozambique\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NA\",\r\n \"name\": \"Namibia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NE\",\r\n \"name\": \"Niger\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NG\",\r\n \"name\": \"Nigeria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RE\",\r\n \"name\": \"Réunion\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RW\",\r\n \"name\": \"Rwanda\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SC\",\r\n \"name\": \"Seychelles\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SD\",\r\n \"name\": \"Sudan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SH\",\r\n \"name\": \"St Helena, Ascension, Tristan da Cunha\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SL\",\r\n \"name\": \"Sierra Leone\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SN\",\r\n \"name\": \"Senegal\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SO\",\r\n \"name\": \"Somalia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SS\",\r\n \"name\": \"South Sudan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ST\",\r\n \"name\": \"São Tomé and Príncipe\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SZ\",\r\n \"name\": \"Swaziland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TD\",\r\n \"name\": \"Chad\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TF\",\r\n \"name\": \"French Southern Territories\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TG\",\r\n \"name\": \"Togo\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TN\",\r\n \"name\": \"Tunisia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TZ\",\r\n \"name\": \"Tanzania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UG\",\r\n \"name\": \"Uganda\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"YT\",\r\n \"name\": \"Mayotte\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ZA\",\r\n \"name\": \"South Africa\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ZM\",\r\n \"name\": \"Zambia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ZW\",\r\n \"name\": \"Zimbabwe\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-AN\",\r\n \"name\": \"Antarctica\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AQ\",\r\n \"name\": \"Antarctica\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-SA\",\r\n \"name\": \"South America\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AR\",\r\n \"name\": \"Argentina\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BO\",\r\n \"name\": \"Bolivia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BR\",\r\n \"name\": \"Brazil\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CL\",\r\n \"name\": \"Chile\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CO\",\r\n \"name\": \"Colombia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"EC\",\r\n \"name\": \"Ecuador\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FK\",\r\n \"name\": \"Falkland Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GF\",\r\n \"name\": \"French Guiana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GS\",\r\n \"name\": \"South Georgia and South Sandwich Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GY\",\r\n \"name\": \"Guyana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PE\",\r\n \"name\": \"Peru\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PY\",\r\n \"name\": \"Paraguay\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SR\",\r\n \"name\": \"Suriname\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UY\",\r\n \"name\": \"Uruguay\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VE\",\r\n \"name\": \"Venezuela\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-AP\",\r\n \"name\": \"Australia / Pacific\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AS\",\r\n \"name\": \"American Samoa\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU\",\r\n \"name\": \"Australia\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AU-ACT\",\r\n \"name\": \"Australian Capital Territory\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-NSW\",\r\n \"name\": \"New South Wales\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-NT\",\r\n \"name\": \"Northern Territory\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-QLD\",\r\n \"name\": \"Queensland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-SA\",\r\n \"name\": \"South Australia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-TAS\",\r\n \"name\": \"Tasmania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-VIC\",\r\n \"name\": \"Victoria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-WA\",\r\n \"name\": \"Western Australia\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"CK\",\r\n \"name\": \"Cook Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FJ\",\r\n \"name\": \"Fiji\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FM\",\r\n \"name\": \"Micronesia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GU\",\r\n \"name\": \"Guam\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HM\",\r\n \"name\": \"Heard Island and McDonald Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KI\",\r\n \"name\": \"Kiribati\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MH\",\r\n \"name\": \"Marshall Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MP\",\r\n \"name\": \"Northern Mariana Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NC\",\r\n \"name\": \"New Caledonia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NF\",\r\n \"name\": \"Norfolk Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NR\",\r\n \"name\": \"Nauru\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NU\",\r\n \"name\": \"Niue\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NZ\",\r\n \"name\": \"New Zealand\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PF\",\r\n \"name\": \"French Polynesia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PG\",\r\n \"name\": \"Papua New Guinea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PN\",\r\n \"name\": \"Pitcairn Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PW\",\r\n \"name\": \"Palau\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SB\",\r\n \"name\": \"Solomon Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TK\",\r\n \"name\": \"Tokelau\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TO\",\r\n \"name\": \"Tonga\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TV\",\r\n \"name\": \"Tuvalu\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VU\",\r\n \"name\": \"Vanuatu\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"WF\",\r\n \"name\": \"Wallis and Futuna\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"WS\",\r\n \"name\": \"Samoa\",\r\n \"regions\": []\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:46 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "953da237-9711-4447-b221-4b718a21a15b" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "b844d6e4-73c3-4979-9486-baa14d4d767d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121946Z:b844d6e4-73c3-4979-9486-baa14d4d767d" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "e68d4145-c9ae-4667-925d-c51c8d88ad73" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileFullCycle.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileFullCycle.json index 5c37145b5963..0d4e053fd99b 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileFullCycle.json +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileFullCycle.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup9988?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager6377?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "32" ], "x-ms-client-request-id": [ - "c4fce9a3-15e5-42cd-9d7a-3aa899c0be9a" + "81493a1e-c071-463d-aee2-dd1d7cc8a991" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988\",\r\n \"name\": \"resourcegroup9988\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager6377\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:37:50 GMT" + "Mon, 06 Mar 2017 12:18:14 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "1190" ], "x-ms-request-id": [ - "ffa372fc-1e5d-4ecc-b44e-d05f9cb8ff00" + "18adcfdb-d6f1-40f3-830e-0781520d6b22" ], "x-ms-correlation-request-id": [ - "ffa372fc-1e5d-4ecc-b44e-d05f9cb8ff00" + "18adcfdb-d6f1-40f3-830e-0781520d6b22" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133751Z:ffa372fc-1e5d-4ecc-b44e-d05f9cb8ff00" + "NORTHEUROPE:20170306T121814Z:18adcfdb-d6f1-40f3-830e-0781520d6b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,31 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile1206?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUxMjA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager9662?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyOTY2Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile1206\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "d725d29a-8ecb-426e-bbb1-33f8ccbdc57d" + "dbedded4-86c3-4ea9-aace-7a8175c2017f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficManagerProfiles/atmprofile1206\",\r\n \"name\": \"atmprofile1206\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile1206\",\r\n \"fqdn\": \"atmprofile1206.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficManagerProfiles/atmprofile1206/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9662\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager9662.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9662/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,7 +96,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:37:52 GMT" + "Mon, 06 Mar 2017 12:18:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -102,8 +104,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "d725d29a-8ecb-426e-bbb1-33f8ccbdc57d" + "dbedded4-86c3-4ea9-aace-7a8175c2017f" ], "X-AspNet-Version": [ "4.0.30319" @@ -112,37 +117,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10785" + "10793" ], "x-ms-correlation-request-id": [ - "f0f05a01-cb64-441a-bec5-73c45512eb83" + "8dba7bf8-fd00-4c73-81d7-e76149951f87" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133753Z:f0f05a01-cb64-441a-bec5-73c45512eb83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121818Z:8dba7bf8-fd00-4c73-81d7-e76149951f87" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile1206?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUxMjA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager9662?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyOTY2Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "359767fc-6e95-4d76-b4ca-a55a4fd1f445" + "9ec2cdb4-9b74-40dc-a1ff-681283b9fb77" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficManagerProfiles/atmprofile1206\",\r\n \"name\": \"atmprofile1206\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile1206\",\r\n \"fqdn\": \"atmprofile1206.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficManagerProfiles/atmprofile1206/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9662\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager9662.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9662/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +154,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:37:52 GMT" + "Mon, 06 Mar 2017 12:18:18 GMT" ], "Transfer-Encoding": [ "chunked" @@ -165,8 +168,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "359767fc-6e95-4d76-b4ca-a55a4fd1f445" + "9ec2cdb4-9b74-40dc-a1ff-681283b9fb77" ], "X-AspNet-Version": [ "4.0.30319" @@ -175,34 +181,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10795" + "10798" ], "x-ms-correlation-request-id": [ - "cc130f76-1bb1-4a33-a2e4-f9e901f3bc7c" + "1aa901b2-8fb8-41c0-9ebc-520f3d2926f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133753Z:cc130f76-1bb1-4a33-a2e4-f9e901f3bc7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121818Z:1aa901b2-8fb8-41c0-9ebc-520f3d2926f3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile1206?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUxMjA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager9662?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyOTY2Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f625af16-a3d1-4b6b-8b92-e184d4cf4ca4" + "ade26343-1ebc-428f-9b7f-04284861051c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, "ResponseBody": "", @@ -214,7 +218,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:37:54 GMT" + "Mon, 06 Mar 2017 12:18:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -222,8 +226,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "f625af16-a3d1-4b6b-8b92-e184d4cf4ca4" + "ade26343-1ebc-428f-9b7f-04284861051c" ], "X-AspNet-Version": [ "4.0.30319" @@ -232,34 +239,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10797" + "10799" ], "x-ms-correlation-request-id": [ - "781f035a-8843-45d5-b321-745012c99c19" + "2c167f71-cecf-4fbe-b1b9-86fd87eca7a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133755Z:781f035a-8843-45d5-b321-745012c99c19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121820Z:2c167f71-cecf-4fbe-b1b9-86fd87eca7a3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup9988?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager6377?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0bf3498-932a-4146-a2db-beb22587ef0a" + "90e3248c-e524-46bd-9018-9efba07a82a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -274,28 +279,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:37:56 GMT" + "Mon, 06 Mar 2017 12:18:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTk4OC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI2Mzc3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1189" ], "x-ms-request-id": [ - "0b063c10-1bc9-4660-ba34-8f4f4e50bf77" + "6d09de00-c9f0-4255-8d31-91052dc66f96" ], "x-ms-correlation-request-id": [ - "0b063c10-1bc9-4660-ba34-8f4f4e50bf77" + "6d09de00-c9f0-4255-8d31-91052dc66f96" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133757Z:0b063c10-1bc9-4660-ba34-8f4f4e50bf77" + "NORTHEUROPE:20170306T121825Z:6d09de00-c9f0-4255-8d31-91052dc66f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,13 +309,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTk4OC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9UazRPQzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI2Mzc3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkyTXpjM0xVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -325,28 +331,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:38:27 GMT" + "Mon, 06 Mar 2017 12:18:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTk4OC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI2Mzc3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14976" ], "x-ms-request-id": [ - "3bbab205-1f2f-44c4-8341-2d1216c7f72e" + "23f717fc-1dff-4dae-83ac-775594494f40" ], "x-ms-correlation-request-id": [ - "3bbab205-1f2f-44c4-8341-2d1216c7f72e" + "23f717fc-1dff-4dae-83ac-775594494f40" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133827Z:3bbab205-1f2f-44c4-8341-2d1216c7f72e" + "NORTHEUROPE:20170306T121856Z:23f717fc-1dff-4dae-83ac-775594494f40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -355,13 +361,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTk4OC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9UazRPQzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI2Mzc3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkyTXpjM0xVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -376,22 +383,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:38:56 GMT" + "Mon, 06 Mar 2017 12:19:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14975" ], "x-ms-request-id": [ - "95641cb0-53f3-4a0d-ad0a-a05f83356e8e" + "63515475-7c5a-4ef3-81e6-c1830b1f4284" ], "x-ms-correlation-request-id": [ - "95641cb0-53f3-4a0d-ad0a-a05f83356e8e" + "63515475-7c5a-4ef3-81e6-c1830b1f4284" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133857Z:95641cb0-53f3-4a0d-ad0a-a05f83356e8e" + "NORTHEUROPE:20170306T121926Z:63515475-7c5a-4ef3-81e6-c1830b1f4284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,9 +408,9 @@ } ], "Names": { - "CrudProfileFullCycle": [ - "resourcegroup9988", - "atmprofile1206" + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager6377", + "azuresdkfornetautoresttrafficmanager9662" ] }, "Variables": { diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileWithoutEndpoints_ThenUpdate.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileWithoutEndpoints_ThenUpdate.json index ba51c98b7a39..4137461bc129 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileWithoutEndpoints_ThenUpdate.json +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileWithoutEndpoints_ThenUpdate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup9299?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXA5Mjk5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager8493?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg0OTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "32" ], "x-ms-client-request-id": [ - "e1779858-1171-49bb-ba10-1ffdf6158c38" + "592c9585-dca2-45d5-b47d-487ca66cc308" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299\",\r\n \"name\": \"resourcegroup9299\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8493\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:33:22 GMT" + "Mon, 06 Mar 2017 12:11:23 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "1194" ], "x-ms-request-id": [ - "789a3600-8b41-4555-9cc0-d0e672bdb725" + "490ff072-5a9a-4bbd-bf48-6edf1df6a916" ], "x-ms-correlation-request-id": [ - "789a3600-8b41-4555-9cc0-d0e672bdb725" + "490ff072-5a9a-4bbd-bf48-6edf1df6a916" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133323Z:789a3600-8b41-4555-9cc0-d0e672bdb725" + "NORTHEUROPE:20170306T121123Z:490ff072-5a9a-4bbd-bf48-6edf1df6a916" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,31 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile6872?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU2ODcyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager4939?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNDkzOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile6872\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "325" + "351" ], "x-ms-client-request-id": [ - "d9fe5c0c-fcdc-4928-af88-e57cb8feafbc" + "291b4b15-c860-4f18-a1a1-9468f25fff24" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficManagerProfiles/atmprofile6872\",\r\n \"name\": \"atmprofile6872\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile6872\",\r\n \"fqdn\": \"atmprofile6872.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"Inactive\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager4939\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager4939.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"Inactive\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "573" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,7 +96,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:33:25 GMT" + "Mon, 06 Mar 2017 12:11:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -102,8 +104,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "d9fe5c0c-fcdc-4928-af88-e57cb8feafbc" + "291b4b15-c860-4f18-a1a1-9468f25fff24" ], "X-AspNet-Version": [ "4.0.30319" @@ -112,43 +117,41 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10797" + "10798" ], "x-ms-correlation-request-id": [ - "a5cbfbef-b826-42f9-904b-caaede4c7489" + "c8d865a9-eeb3-465b-82c3-b5fe887541b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133325Z:a5cbfbef-b826-42f9-904b-caaede4c7489" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121129Z:c8d865a9-eeb3-465b-82c3-b5fe887541b7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile6872?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU2ODcyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager4939?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNDkzOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile6872\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "372eebbe-0f6e-4d84-8773-a8cf3d7209af" + "017480e5-1ead-420e-9a97-5ff6ba191b23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficManagerProfiles/atmprofile6872\",\r\n \"name\": \"atmprofile6872\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile6872\",\r\n \"fqdn\": \"atmprofile6872.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficManagerProfiles/atmprofile6872/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager4939\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager4939.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager4939/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +160,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:33:26 GMT" + "Mon, 06 Mar 2017 12:11:29 GMT" ], "Transfer-Encoding": [ "chunked" @@ -171,8 +174,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "372eebbe-0f6e-4d84-8773-a8cf3d7209af" + "017480e5-1ead-420e-9a97-5ff6ba191b23" ], "X-AspNet-Version": [ "4.0.30319" @@ -181,34 +187,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10796" + "10797" ], "x-ms-correlation-request-id": [ - "3cf25a9f-bfd0-454e-ac77-64023b2f314e" + "f615ebf5-4801-4210-b5bb-cb0100d4ac0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133326Z:3cf25a9f-bfd0-454e-ac77-64023b2f314e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121130Z:f615ebf5-4801-4210-b5bb-cb0100d4ac0f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup9299?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXA5Mjk5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager8493?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg0OTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99b82787-f353-435a-95ab-ed8c45608146" + "457dd3cb-6556-4301-81d5-14b8ec38c0e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -223,28 +227,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:33:27 GMT" + "Mon, 06 Mar 2017 12:11:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "64b21e74-06b7-465f-abbc-b3e097a4f29d" + "1ebe1f27-c33e-4637-b411-38d9e6f98dd5" ], "x-ms-correlation-request-id": [ - "64b21e74-06b7-465f-abbc-b3e097a4f29d" + "1ebe1f27-c33e-4637-b411-38d9e6f98dd5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133327Z:64b21e74-06b7-465f-abbc-b3e097a4f29d" + "NORTHEUROPE:20170306T121135Z:1ebe1f27-c33e-4637-b411-38d9e6f98dd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,13 +257,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9USTVPUzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TkRrekxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -274,28 +279,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:33:57 GMT" + "Mon, 06 Mar 2017 12:12:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-request-id": [ - "e5eacdda-327e-40c5-af8f-06f2ddb139b4" + "8ed06ecc-7733-40cc-9723-3d9aa7998aa4" ], "x-ms-correlation-request-id": [ - "e5eacdda-327e-40c5-af8f-06f2ddb139b4" + "8ed06ecc-7733-40cc-9723-3d9aa7998aa4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133357Z:e5eacdda-327e-40c5-af8f-06f2ddb139b4" + "NORTHEUROPE:20170306T121206Z:8ed06ecc-7733-40cc-9723-3d9aa7998aa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,13 +309,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9USTVPUzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TkRrekxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -325,28 +331,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:34:27 GMT" + "Mon, 06 Mar 2017 12:12:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14986" ], "x-ms-request-id": [ - "0211f6cf-fb15-4c6e-b1ef-b26c1a8ae381" + "97b7d879-0bcb-487d-97f3-8480aa091209" ], "x-ms-correlation-request-id": [ - "0211f6cf-fb15-4c6e-b1ef-b26c1a8ae381" + "97b7d879-0bcb-487d-97f3-8480aa091209" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133427Z:0211f6cf-fb15-4c6e-b1ef-b26c1a8ae381" + "NORTHEUROPE:20170306T121237Z:97b7d879-0bcb-487d-97f3-8480aa091209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -355,13 +361,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9USTVPUzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TkRrekxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -376,28 +383,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:34:57 GMT" + "Mon, 06 Mar 2017 12:13:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14985" ], "x-ms-request-id": [ - "b0624c57-b9c7-45ca-8134-4d1d9525336d" + "12bec955-0c70-41fd-9369-b8514eb315fc" ], "x-ms-correlation-request-id": [ - "b0624c57-b9c7-45ca-8134-4d1d9525336d" + "12bec955-0c70-41fd-9369-b8514eb315fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133458Z:b0624c57-b9c7-45ca-8134-4d1d9525336d" + "NORTHEUROPE:20170306T121307Z:12bec955-0c70-41fd-9369-b8514eb315fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,13 +413,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9USTVPUzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TkRrekxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -427,22 +435,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:35:27 GMT" + "Mon, 06 Mar 2017 12:13:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-request-id": [ - "434b33a6-d860-4b75-a7c5-cf041ca2fc59" + "99f3f762-30e9-4494-9c10-7e44d4771089" ], "x-ms-correlation-request-id": [ - "434b33a6-d860-4b75-a7c5-cf041ca2fc59" + "99f3f762-30e9-4494-9c10-7e44d4771089" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133528Z:434b33a6-d860-4b75-a7c5-cf041ca2fc59" + "NORTHEUROPE:20170306T121338Z:99f3f762-30e9-4494-9c10-7e44d4771089" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -452,9 +460,9 @@ } ], "Names": { - "CrudProfileWithoutEndpoints_ThenUpdate": [ - "resourcegroup9299", - "atmprofile6872" + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager8493", + "azuresdkfornetautoresttrafficmanager4939" ] }, "Variables": { diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListAllProfiles.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListAllProfiles.json index 88d29a5cb0b1..b46c7b7e51c7 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListAllProfiles.json +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListAllProfiles.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup1622?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager4665?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "32" ], "x-ms-client-request-id": [ - "ffc1ba9f-3435-4640-9f7f-067a572e42b7" + "144cf0e1-22af-4a1b-9e34-85648aaa2f8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622\",\r\n \"name\": \"resourcegroup1622\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager4665\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,22 +38,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:40:58 GMT" + "Mon, 06 Mar 2017 12:13:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "b6e3b3bb-c777-43b0-ad8f-8dba5ebdce79" + "2d0b7c0c-140b-42da-bf86-e815de38bfbc" ], "x-ms-correlation-request-id": [ - "b6e3b3bb-c777-43b0-ad8f-8dba5ebdce79" + "2d0b7c0c-140b-42da-bf86-e815de38bfbc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134058Z:b6e3b3bb-c777-43b0-ad8f-8dba5ebdce79" + "NORTHEUROPE:20170306T121346Z:2d0b7c0c-140b-42da-bf86-e815de38bfbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,31 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile942?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU5NDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager3481?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMzQ4MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile942\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "655" + "682" ], "x-ms-client-request-id": [ - "edbabcd8-d5d5-411e-991f-25aab01cf98c" + "ce21293a-b3c2-4b92-b82c-420356c051cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile942\",\r\n \"name\": \"atmprofile942\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile942\",\r\n \"fqdn\": \"atmprofile942.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile942/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3481\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager3481.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3481/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1058" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,7 +96,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:00 GMT" + "Mon, 06 Mar 2017 12:13:51 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -102,8 +104,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "edbabcd8-d5d5-411e-991f-25aab01cf98c" + "ce21293a-b3c2-4b92-b82c-420356c051cc" ], "X-AspNet-Version": [ "4.0.30319" @@ -112,46 +117,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10797" + "10798" ], "x-ms-correlation-request-id": [ - "da369905-2baf-4a6a-a8a5-0c849731e9b3" + "60277f85-eea5-4e09-94bd-a564c4c79fcf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134100Z:da369905-2baf-4a6a-a8a5-0c849731e9b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121351Z:60277f85-eea5-4e09-94bd-a564c4c79fcf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile3967?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUzOTY3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager8306?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyODMwNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3967\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "380bcd2c-8b89-443c-85b8-30be1644d652" + "02c40879-8890-4d65-9831-02717d86b459" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3967\",\r\n \"name\": \"atmprofile3967\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3967\",\r\n \"fqdn\": \"atmprofile3967.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3967/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8306\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager8306.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8306/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,7 +163,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:02 GMT" + "Mon, 06 Mar 2017 12:13:53 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -168,8 +171,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "380bcd2c-8b89-443c-85b8-30be1644d652" + "02c40879-8890-4d65-9831-02717d86b459" ], "X-AspNet-Version": [ "4.0.30319" @@ -178,46 +184,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10796" + "10797" ], "x-ms-correlation-request-id": [ - "1aec6b27-4007-40e7-b605-5224f6d0164f" + "d56f6026-6975-4070-a7e8-697c9f8f5df5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134103Z:1aec6b27-4007-40e7-b605-5224f6d0164f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121353Z:d56f6026-6975-4070-a7e8-697c9f8f5df5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile7802?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU3ODAyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager9108?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyOTEwOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7802\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "a0b2a82d-b45e-4ab7-9652-2a4e31c7c0eb" + "f954512b-9617-4861-aa16-32ad18a1dae3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7802\",\r\n \"name\": \"atmprofile7802\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7802\",\r\n \"fqdn\": \"atmprofile7802.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7802/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9108\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager9108.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9108/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:03 GMT" + "Mon, 06 Mar 2017 12:13:55 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -234,8 +238,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "a0b2a82d-b45e-4ab7-9652-2a4e31c7c0eb" + "f954512b-9617-4861-aa16-32ad18a1dae3" ], "X-AspNet-Version": [ "4.0.30319" @@ -244,46 +251,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10795" + "10796" ], "x-ms-correlation-request-id": [ - "966afb47-8541-49a6-abb9-e2ff064c87f0" + "9cda0057-e734-4009-9563-95634ee19d26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134104Z:966afb47-8541-49a6-abb9-e2ff064c87f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121355Z:9cda0057-e734-4009-9563-95634ee19d26" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile7460?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU3NDYwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager5207?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNTIwNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7460\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "0be4d495-128d-4b39-9b64-ee9fb448ac7a" + "ac783c5a-4339-4efd-8cf5-dfe361f51c74" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7460\",\r\n \"name\": \"atmprofile7460\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7460\",\r\n \"fqdn\": \"atmprofile7460.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7460/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager5207\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager5207.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager5207/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -292,7 +297,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:05 GMT" + "Mon, 06 Mar 2017 12:13:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -300,8 +305,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "0be4d495-128d-4b39-9b64-ee9fb448ac7a" + "ac783c5a-4339-4efd-8cf5-dfe361f51c74" ], "X-AspNet-Version": [ "4.0.30319" @@ -310,46 +318,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10794" + "10795" ], "x-ms-correlation-request-id": [ - "9abb6099-7491-4ebc-ad8f-b95c533449a1" + "d20c769b-fb39-43e3-9c55-a610e1553e9a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134106Z:9abb6099-7491-4ebc-ad8f-b95c533449a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121356Z:d20c769b-fb39-43e3-9c55-a610e1553e9a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile8009?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU4MDA5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager3179?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMzE3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8009\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "a93b8933-46b9-4aac-a8c8-c19e79aa735c" + "a9d23706-b875-44ce-bc60-128ef9d64570" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8009\",\r\n \"name\": \"atmprofile8009\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8009\",\r\n \"fqdn\": \"atmprofile8009.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8009/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3179\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager3179.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3179/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,7 +364,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:06 GMT" + "Mon, 06 Mar 2017 12:13:58 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -366,8 +372,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "a93b8933-46b9-4aac-a8c8-c19e79aa735c" + "a9d23706-b875-44ce-bc60-128ef9d64570" ], "X-AspNet-Version": [ "4.0.30319" @@ -376,37 +385,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10793" + "10794" ], "x-ms-correlation-request-id": [ - "b4ce7cc1-4c1d-49f1-9b1c-6f862f921d9f" + "7a82ea7e-9d9c-4774-8758-afd22add8d76" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134107Z:b4ce7cc1-4c1d-49f1-9b1c-6f862f921d9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121358Z:7a82ea7e-9d9c-4774-8758-afd22add8d76" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab7c39a0-d4a6-4cce-9a61-3142c1107539" + "fbc29e84-a51a-42d7-83f9-57fb1da38cf3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg6713/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile6953\",\r\n \"name\": \"hydratestwatmv2profile6953\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename6857\",\r\n \"fqdn\": \"foohydratestrelativename6857.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg6713/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile6953/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg7258/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile5063\",\r\n \"name\": \"hydratestwatmv2profile5063\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename8172\",\r\n \"fqdn\": \"foohydratestrelativename8172.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg7258/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile5063/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg7258/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile7779\",\r\n \"name\": \"hydratestwatmv2profile7779\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename2266\",\r\n \"fqdn\": \"foohydratestrelativename2266.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg7258/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile7779/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg8525/providers/Microsoft.Network/trafficManagerProfiles/watmv2profilehydratest1333\",\r\n \"name\": \"watmv2profilehydratest1333\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename9680\",\r\n \"fqdn\": \"foohydratestrelativename9680.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg8525/providers/Microsoft.Network/trafficManagerProfiles/watmv2profilehydratest1333/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg8525/providers/Microsoft.Network/trafficManagerProfiles/watmv2profilehydratest9950\",\r\n \"name\": \"watmv2profilehydratest9950\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename122\",\r\n \"fqdn\": \"foohydratestrelativename122.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg8525/providers/Microsoft.Network/trafficManagerProfiles/watmv2profilehydratest9950/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3967\",\r\n \"name\": \"atmprofile3967\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3967\",\r\n \"fqdn\": \"atmprofile3967.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3967/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7460\",\r\n \"name\": \"atmprofile7460\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7460\",\r\n \"fqdn\": \"atmprofile7460.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7460/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7802\",\r\n \"name\": \"atmprofile7802\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7802\",\r\n \"fqdn\": \"atmprofile7802.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7802/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8009\",\r\n \"name\": \"atmprofile8009\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8009\",\r\n \"fqdn\": \"atmprofile8009.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8009/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile942\",\r\n \"name\": \"atmprofile942\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile942\",\r\n \"fqdn\": \"atmprofile942.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile942/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup880/providers/Microsoft.Network/trafficManagerProfiles/atmprofile681\",\r\n \"name\": \"atmprofile681\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile681\",\r\n \"fqdn\": \"atmprofile681.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup880/providers/Microsoft.Network/trafficManagerProfiles/atmprofile681/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3179\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager3179.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3179/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3481\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager3481.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3481/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager5207\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager5207.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager5207/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8306\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager8306.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8306/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9108\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager9108.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9108/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -415,7 +422,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:07 GMT" + "Mon, 06 Mar 2017 12:14:00 GMT" ], "Transfer-Encoding": [ "chunked" @@ -429,8 +436,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "ab7c39a0-d4a6-4cce-9a61-3142c1107539" + "fbc29e84-a51a-42d7-83f9-57fb1da38cf3" ], "X-AspNet-Version": [ "4.0.30319" @@ -442,31 +452,29 @@ "10799" ], "x-ms-correlation-request-id": [ - "429b0014-1e08-42f9-8479-e2eae3368050" + "242623b8-0095-426f-b168-c2288419b4e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134108Z:429b0014-1e08-42f9-8479-e2eae3368050" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121400Z:242623b8-0095-426f-b168-c2288419b4e1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup1622?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager4665?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b85270f-3cf8-4abe-8bfe-34b5a8b4cf72" + "43b74856-9a12-4da9-96e7-09932697ad2a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -481,79 +489,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:41:09 GMT" + "Mon, 06 Mar 2017 12:14:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "a64f8b87-8a4f-4e4a-8fc6-ccb7ffb18981" - ], - "x-ms-correlation-request-id": [ - "a64f8b87-8a4f-4e4a-8fc6-ccb7ffb18981" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134109Z:a64f8b87-8a4f-4e4a-8fc6-ccb7ffb18981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1UWXlNaTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 12 Apr 2016 13:41:38 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "1197" ], "x-ms-request-id": [ - "8f571498-511a-448e-9fc8-8b70f954f7d0" + "1c289307-6334-4e2d-8764-96f2bb5383ec" ], "x-ms-correlation-request-id": [ - "8f571498-511a-448e-9fc8-8b70f954f7d0" + "1c289307-6334-4e2d-8764-96f2bb5383ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134139Z:8f571498-511a-448e-9fc8-8b70f954f7d0" + "NORTHEUROPE:20170306T121405Z:1c289307-6334-4e2d-8764-96f2bb5383ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,13 +519,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1UWXlNaTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkwTmpZMUxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -583,28 +541,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:42:08 GMT" + "Mon, 06 Mar 2017 12:14:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14983" ], "x-ms-request-id": [ - "a4b81117-367b-40b7-b414-c49c4e8bf02f" + "86785626-4e7a-428a-8426-4a7edef0f6c4" ], "x-ms-correlation-request-id": [ - "a4b81117-367b-40b7-b414-c49c4e8bf02f" + "86785626-4e7a-428a-8426-4a7edef0f6c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134209Z:a4b81117-367b-40b7-b414-c49c4e8bf02f" + "NORTHEUROPE:20170306T121435Z:86785626-4e7a-428a-8426-4a7edef0f6c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -613,13 +571,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1UWXlNaTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkwTmpZMUxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -634,28 +593,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:42:39 GMT" + "Mon, 06 Mar 2017 12:15:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14982" ], "x-ms-request-id": [ - "9d70683a-7885-485d-a269-2fddd7a38a29" + "70720d29-42fb-43a9-b950-0733f3da1489" ], "x-ms-correlation-request-id": [ - "9d70683a-7885-485d-a269-2fddd7a38a29" + "70720d29-42fb-43a9-b950-0733f3da1489" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134239Z:9d70683a-7885-485d-a269-2fddd7a38a29" + "NORTHEUROPE:20170306T121506Z:70720d29-42fb-43a9-b950-0733f3da1489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +623,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1UWXlNaTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkwTmpZMUxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -685,22 +645,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:43:09 GMT" + "Mon, 06 Mar 2017 12:15:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14981" ], "x-ms-request-id": [ - "17a722b1-7d09-4334-a639-d923d1725d14" + "c0de4025-4da0-4b62-9606-8f3047936436" ], "x-ms-correlation-request-id": [ - "17a722b1-7d09-4334-a639-d923d1725d14" + "c0de4025-4da0-4b62-9606-8f3047936436" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134309Z:17a722b1-7d09-4334-a639-d923d1725d14" + "NORTHEUROPE:20170306T121536Z:c0de4025-4da0-4b62-9606-8f3047936436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,13 +670,13 @@ } ], "Names": { - "ListAllProfiles": [ - "resourcegroup1622", - "atmprofile942", - "atmprofile3967", - "atmprofile7802", - "atmprofile7460", - "atmprofile8009" + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager4665", + "azuresdkfornetautoresttrafficmanager3481", + "azuresdkfornetautoresttrafficmanager8306", + "azuresdkfornetautoresttrafficmanager9108", + "azuresdkfornetautoresttrafficmanager5207", + "azuresdkfornetautoresttrafficmanager3179" ] }, "Variables": { diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListProfilesByResourceGroup.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListProfilesByResourceGroup.json index a8a78b34900f..de9ec1932100 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListProfilesByResourceGroup.json +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListProfilesByResourceGroup.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup2153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager8578?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1Nzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "32" ], "x-ms-client-request-id": [ - "1c425389-b8d6-4d49-a8f2-d373abc5f5fb" + "df645b13-49c3-4150-9ac4-91a1a32c0960" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153\",\r\n \"name\": \"resourcegroup2153\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8578\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,22 +38,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:35:40 GMT" + "Mon, 06 Mar 2017 12:15:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-request-id": [ - "655c4009-7983-47dc-bbcf-8da467ee53d5" + "69affbdb-ec00-4bfd-bc62-1b0a84ea7362" ], "x-ms-correlation-request-id": [ - "655c4009-7983-47dc-bbcf-8da467ee53d5" + "69affbdb-ec00-4bfd-bc62-1b0a84ea7362" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133540Z:655c4009-7983-47dc-bbcf-8da467ee53d5" + "NORTHEUROPE:20170306T121544Z:69affbdb-ec00-4bfd-bc62-1b0a84ea7362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,31 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile544?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU1NDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager6246?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNjI0Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile544\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "655" + "682" ], "x-ms-client-request-id": [ - "b2edb37f-043f-4e1f-9ab4-6240be3355e7" + "a2c516fe-81f5-4353-a84f-3eb48c0b5264" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile544\",\r\n \"name\": \"atmprofile544\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile544\",\r\n \"fqdn\": \"atmprofile544.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile544/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6246\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager6246.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6246/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1058" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,7 +96,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:40 GMT" + "Mon, 06 Mar 2017 12:15:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -102,8 +104,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "b2edb37f-043f-4e1f-9ab4-6240be3355e7" + "a2c516fe-81f5-4353-a84f-3eb48c0b5264" ], "X-AspNet-Version": [ "4.0.30319" @@ -112,46 +117,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10794" + "10796" ], "x-ms-correlation-request-id": [ - "3c3533d9-991e-4ac9-af98-5aed8c836f90" + "e89db59f-47eb-4b7d-ab67-f95bea12c8db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133541Z:3c3533d9-991e-4ac9-af98-5aed8c836f90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121549Z:e89db59f-47eb-4b7d-ab67-f95bea12c8db" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile320?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUzMjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager1638?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMTYzOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile320\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "655" + "682" ], "x-ms-client-request-id": [ - "ed51da86-0bb1-441c-b22f-e2a710e5e711" + "c600d918-4ae8-47a1-ae2b-db082999baeb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile320\",\r\n \"name\": \"atmprofile320\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile320\",\r\n \"fqdn\": \"atmprofile320.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile320/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager1638\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager1638.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager1638/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1058" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,7 +163,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:42 GMT" + "Mon, 06 Mar 2017 12:15:51 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -168,8 +171,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "ed51da86-0bb1-441c-b22f-e2a710e5e711" + "c600d918-4ae8-47a1-ae2b-db082999baeb" ], "X-AspNet-Version": [ "4.0.30319" @@ -178,46 +184,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10793" + "10795" ], "x-ms-correlation-request-id": [ - "fcf0afce-ee3c-46c3-b904-d61edf2fd9fa" + "35ef7ec3-f3a2-4b41-8645-f0c24ab7375e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133542Z:fcf0afce-ee3c-46c3-b904-d61edf2fd9fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121551Z:35ef7ec3-f3a2-4b41-8645-f0c24ab7375e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile3894?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUzODk0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager2225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMjIyNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3894\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "4c09836a-fa17-4051-a611-6bf2fd54fde6" + "368b1707-80b6-4641-ac73-18dc1bc07d2d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3894\",\r\n \"name\": \"atmprofile3894\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3894\",\r\n \"fqdn\": \"atmprofile3894.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3894/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2225\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager2225.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2225/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:43 GMT" + "Mon, 06 Mar 2017 12:15:53 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -234,8 +238,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "4c09836a-fa17-4051-a611-6bf2fd54fde6" + "368b1707-80b6-4641-ac73-18dc1bc07d2d" ], "X-AspNet-Version": [ "4.0.30319" @@ -244,46 +251,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10792" + "10794" ], "x-ms-correlation-request-id": [ - "73ad634c-a5b0-48fc-bb88-7cba22f1e78d" + "8f3fdc62-ee1d-4d62-a8b2-0cdf9813555a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133544Z:73ad634c-a5b0-48fc-bb88-7cba22f1e78d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121553Z:8f3fdc62-ee1d-4d62-a8b2-0cdf9813555a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile8204?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU4MjA0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager7242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNzI0Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8204\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "0eabf33d-de6c-44e4-a0c5-4ace7c70658c" + "b75e5baf-4b9c-4be6-a9af-c79bc3e842c6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8204\",\r\n \"name\": \"atmprofile8204\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8204\",\r\n \"fqdn\": \"atmprofile8204.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8204/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager7242\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager7242.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager7242/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -292,7 +297,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:44 GMT" + "Mon, 06 Mar 2017 12:15:54 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -300,8 +305,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "0eabf33d-de6c-44e4-a0c5-4ace7c70658c" + "b75e5baf-4b9c-4be6-a9af-c79bc3e842c6" ], "X-AspNet-Version": [ "4.0.30319" @@ -310,46 +318,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10791" + "10793" ], "x-ms-correlation-request-id": [ - "a3e4a341-fc95-45ee-90a2-16624ade96af" + "8fba0996-c66a-43ec-abac-0daf6cfd8915" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133544Z:a3e4a341-fc95-45ee-90a2-16624ade96af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121554Z:8fba0996-c66a-43ec-abac-0daf6cfd8915" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile9979?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU5OTc5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager8217?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyODIxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile9979\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "9df971e7-ffd6-4606-9b3d-4353272ff46a" + "bf2dfd02-b09b-4295-b424-91c7bb82888c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile9979\",\r\n \"name\": \"atmprofile9979\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile9979\",\r\n \"fqdn\": \"atmprofile9979.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile9979/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8217\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager8217.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8217/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,7 +364,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:45 GMT" + "Mon, 06 Mar 2017 12:15:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -366,8 +372,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "9df971e7-ffd6-4606-9b3d-4353272ff46a" + "bf2dfd02-b09b-4295-b424-91c7bb82888c" ], "X-AspNet-Version": [ "4.0.30319" @@ -376,37 +385,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10790" + "10792" ], "x-ms-correlation-request-id": [ - "48700dba-a70c-4100-a790-cfb0f1c528c8" + "dfab6927-fd9a-40bd-9b7c-426fb2aef68b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133546Z:48700dba-a70c-4100-a790-cfb0f1c528c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121556Z:dfab6927-fd9a-40bd-9b7c-426fb2aef68b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aeca3e24-377e-461e-817b-7d1142e16a0f" + "1bd54eca-0b95-4fa1-ad91-419ae1bd59cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile320\",\r\n \"name\": \"atmprofile320\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile320\",\r\n \"fqdn\": \"atmprofile320.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile320/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3894\",\r\n \"name\": \"atmprofile3894\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3894\",\r\n \"fqdn\": \"atmprofile3894.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3894/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile544\",\r\n \"name\": \"atmprofile544\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile544\",\r\n \"fqdn\": \"atmprofile544.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile544/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8204\",\r\n \"name\": \"atmprofile8204\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8204\",\r\n \"fqdn\": \"atmprofile8204.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8204/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile9979\",\r\n \"name\": \"atmprofile9979\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile9979\",\r\n \"fqdn\": \"atmprofile9979.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile9979/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager1638\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager1638.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager1638/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2225\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager2225.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2225/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6246\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager6246.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6246/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager7242\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager7242.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager7242/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8217\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager8217.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8217/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -415,7 +422,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:45 GMT" + "Mon, 06 Mar 2017 12:15:57 GMT" ], "Transfer-Encoding": [ "chunked" @@ -429,8 +436,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "aeca3e24-377e-461e-817b-7d1142e16a0f" + "1bd54eca-0b95-4fa1-ad91-419ae1bd59cd" ], "X-AspNet-Version": [ "4.0.30319" @@ -439,34 +449,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10798" + "10799" ], "x-ms-correlation-request-id": [ - "5e46dc3d-099e-4951-8841-5a4c675b2987" + "04816165-331d-43d0-93f2-677ab37d8b27" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133546Z:5e46dc3d-099e-4951-8841-5a4c675b2987" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121557Z:04816165-331d-43d0-93f2-677ab37d8b27" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup2153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager8578?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1Nzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56cb8a1d-74a2-43e7-9339-068a8f45a021" + "a81bdd6e-6421-4fe8-9c48-25d43554950c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -481,28 +489,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:35:47 GMT" + "Mon, 06 Mar 2017 12:16:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-request-id": [ - "e595093f-5746-4c87-be86-e68464f87623" + "d677fad4-8050-440d-b91b-a852fcca4b53" ], "x-ms-correlation-request-id": [ - "e595093f-5746-4c87-be86-e68464f87623" + "d677fad4-8050-440d-b91b-a852fcca4b53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133548Z:e595093f-5746-4c87-be86-e68464f87623" + "NORTHEUROPE:20170306T121602Z:d677fad4-8050-440d-b91b-a852fcca4b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,13 +519,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1qRTFNeTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TlRjNExVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -532,28 +541,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:36:17 GMT" + "Mon, 06 Mar 2017 12:16:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14979" ], "x-ms-request-id": [ - "c923c2ad-df0f-467e-8ca5-b6794a69ceae" + "616fb49c-4112-499a-86b6-ec63875a25f2" ], "x-ms-correlation-request-id": [ - "c923c2ad-df0f-467e-8ca5-b6794a69ceae" + "616fb49c-4112-499a-86b6-ec63875a25f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133618Z:c923c2ad-df0f-467e-8ca5-b6794a69ceae" + "NORTHEUROPE:20170306T121633Z:616fb49c-4112-499a-86b6-ec63875a25f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,13 +571,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1qRTFNeTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TlRjNExVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -583,28 +593,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:36:48 GMT" + "Mon, 06 Mar 2017 12:17:03 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14978" ], "x-ms-request-id": [ - "21b0a5b3-5557-4ac8-a6b2-e1b57c19806d" + "5816c78e-594e-4304-8ec1-cf87c8d544a8" ], "x-ms-correlation-request-id": [ - "21b0a5b3-5557-4ac8-a6b2-e1b57c19806d" + "5816c78e-594e-4304-8ec1-cf87c8d544a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133648Z:21b0a5b3-5557-4ac8-a6b2-e1b57c19806d" + "NORTHEUROPE:20170306T121704Z:5816c78e-594e-4304-8ec1-cf87c8d544a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -613,13 +623,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1qRTFNeTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TlRjNExVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -634,28 +645,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:37:18 GMT" + "Mon, 06 Mar 2017 12:17:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14977" ], "x-ms-request-id": [ - "390b414a-7c92-4753-a040-be5184b37418" + "af18c54e-c1b6-4d48-b2d7-8762bf2d9f96" ], "x-ms-correlation-request-id": [ - "390b414a-7c92-4753-a040-be5184b37418" + "af18c54e-c1b6-4d48-b2d7-8762bf2d9f96" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133718Z:390b414a-7c92-4753-a040-be5184b37418" + "NORTHEUROPE:20170306T121734Z:af18c54e-c1b6-4d48-b2d7-8762bf2d9f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1qRTFNeTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TlRjNExVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -685,22 +697,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:37:48 GMT" + "Mon, 06 Mar 2017 12:18:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14976" ], "x-ms-request-id": [ - "2f4cf5a6-3c6d-4f83-8cd5-e2aa706b6614" + "a7b492e7-d8f2-48f2-a6f0-5f328fd33e0f" ], "x-ms-correlation-request-id": [ - "2f4cf5a6-3c6d-4f83-8cd5-e2aa706b6614" + "a7b492e7-d8f2-48f2-a6f0-5f328fd33e0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133748Z:2f4cf5a6-3c6d-4f83-8cd5-e2aa706b6614" + "NORTHEUROPE:20170306T121805Z:a7b492e7-d8f2-48f2-a6f0-5f328fd33e0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,13 +722,13 @@ } ], "Names": { - "ListProfilesByResourceGroup": [ - "resourcegroup2153", - "atmprofile544", - "atmprofile320", - "atmprofile3894", - "atmprofile8204", - "atmprofile9979" + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager8578", + "azuresdkfornetautoresttrafficmanager6246", + "azuresdkfornetautoresttrafficmanager1638", + "azuresdkfornetautoresttrafficmanager2225", + "azuresdkfornetautoresttrafficmanager7242", + "azuresdkfornetautoresttrafficmanager8217" ] }, "Variables": { From ae73640a8d7ada24fbd0447e168b13886b22b510 Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 6 Mar 2017 13:49:31 +0000 Subject: [PATCH 078/137] Update generated.cmd --- .../Microsoft.Azure.Management.TrafficManager/generate.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd index 100da7f0c7f0..f634c924c690 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd @@ -4,9 +4,9 @@ :: @echo off -set autoRestVersion=0.14.0-Nightly20160125 +set autoRestVersion=0.16.0 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-trafficmanager/2015-11-01/swagger/trafficmanager.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-trafficmanager/2017-03-01/swagger/trafficmanager.json" ) else ( set specFile="%1" ) From 6516299a471c6f265cdd9b05174c941e6e134ceb Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Mon, 6 Mar 2017 16:55:03 -0800 Subject: [PATCH 079/137] removing commented line --- .../TestEndpoints.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEndpoints.cs b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEndpoints.cs index 164fc46a76bd..387fda8c2eb5 100644 --- a/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEndpoints.cs +++ b/src/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework/TestEndpoints.cs @@ -261,8 +261,5 @@ private void UpdateEnvironmentEndpoint(ConnectionString connStr) public Uri GraphTokenAudienceUri { get; set; } public Uri PublishingSettingsFileUri { get; set; } - - //public Uri AADServiceUri { get; set; } - } } From 990f07d17fa962593f1f05958058b204ac8cc428 Mon Sep 17 00:00:00 2001 From: Aaron Roney Date: Tue, 7 Mar 2017 11:02:00 -1000 Subject: [PATCH 080/137] Update README.md --- Documentation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/README.md b/Documentation/README.md index 98895a87abeb..d7a0919bd9af 100644 --- a/Documentation/README.md +++ b/Documentation/README.md @@ -49,7 +49,7 @@ These SDKs depend on Microsoft.Rest.ClientRuntime.Azure | PowerBI | Microsoft.Azure.Management.PowerBIEmbedded | | Redis Cache | Microsoft.Azure.Management.Redis | | Resource Manager (ARM) | Microsoft.Azure.Management.ResourceManager | -| Scheduler | Microsoft.WindowsAzure.Management.Scheduler | +| Scheduler | Microsoft.Azure.Management.Scheduler | | Search | Microsoft.Azure.Search | | Storage | Microsoft.Azure.Management.Storage | | Traffic Manager | Microsoft.Azure.Management.TrafficManager | From 6f212d8a5a4570d3a10db76f4d6c8b14268ce5ec Mon Sep 17 00:00:00 2001 From: Nathan Fan Date: Tue, 7 Mar 2017 13:15:33 -0800 Subject: [PATCH 081/137] Re-record tests, re-factor i/e tests, re-name testName to suiteName, re-sponded to comments --- .../Sql.Tests/DatabaseCopyScenarioTests.cs | 4 +- .../Sql.Tests/DatabaseCrudScenarioTests.cs | 16 +- .../Sql.Tests/DatabaseRestoreScenarioTests.cs | 4 +- .../ElasticPoolActivityScenarioTests.cs | 12 +- .../Sql.Tests/ElasticPoolCrudScenarioTests.cs | 12 +- .../FirewallRuleCrudScenarioTests.cs | 12 +- .../Sql.Tests/ImportExportScenarioTests.cs | 197 +- .../TestImportExistingDatabase.json | 2054 +++++++++++++++++ .../TestImportNewDatabase.json | 1749 ++++++++++++++ .../Sql.Tests/UsageScenarioTests.cs | 4 +- 10 files changed, 3896 insertions(+), 168 deletions(-) create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportExistingDatabase.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportNewDatabase.json diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCopyScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCopyScenarioTests.cs index cf2ca34337f4..474f08f6e55f 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCopyScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCopyScenarioTests.cs @@ -20,9 +20,9 @@ public void TestCopyDatabase() string databaseName = "testdb"; string testPrefix = "sqlcrudtest-"; Dictionary tags = new Dictionary(); - string testName = this.GetType().FullName; + string suiteName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewResourceGroup(testName, "TestCopyDatabase", testPrefix, (resClient, sqlClient, resourceGroup) => + SqlManagementTestUtilities.RunTestInNewResourceGroup(suiteName, "TestCopyDatabase", testPrefix, (resClient, sqlClient, resourceGroup) => { //Create two servers string serverName = SqlManagementTestUtilities.GenerateName(testPrefix); diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs index a92cf8a6849c..ff570d344ca7 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs @@ -18,8 +18,8 @@ public class DatabaseCrudScenarioTests public void TestCreateDropDatabase() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestCreateDropDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestCreateDropDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary tags = new Dictionary() { @@ -105,8 +105,8 @@ public void TestCreateDropDatabase() public void TestUpdateDatabase() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestUpdateDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestUpdateDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary tags = new Dictionary() { @@ -190,8 +190,8 @@ public void TestUpdateDatabase() public void TestGetAndListDatabase() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestGetAndListDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestGetAndListDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => { // Begin creating some small databases to run the get/List tests on. // @@ -249,8 +249,8 @@ public void TestGetAndListDatabase() public void TestRemoveDatabaseFromPool() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestRemoveDatabaseFromPool", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestRemoveDatabaseFromPool", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary tags = new Dictionary() { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs index e84ce404676e..656df842052a 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs @@ -17,8 +17,8 @@ public void TestDatabasePointInTimeRestore() // Warning: This test takes around 20 minutes to run in record mode. string testPrefix = "sqlrestoretest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestDatabasePointInTimeRestore", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestDatabasePointInTimeRestore", testPrefix, (resClient, sqlClient, resourceGroup, server) => { // Create database only required parameters // diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolActivityScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolActivityScenarioTests.cs index 252f5751dd82..0f3f14b76c88 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolActivityScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolActivityScenarioTests.cs @@ -17,8 +17,8 @@ public class ElasticPoolActivityScenarioTests public void TestListElasticPoolDatabaseActivity() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestListElasticPoolDatabaseActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestListElasticPoolDatabaseActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary tags = new Dictionary() { @@ -70,8 +70,8 @@ public void TestListElasticPoolDatabaseActivity() public void TestListElasticPoolActivity() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestListElasticPoolActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestListElasticPoolActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary tags = new Dictionary() { @@ -105,8 +105,8 @@ public void TestListElasticPoolActivity() public void TestMoveBetweenPoolsAndGetActivity() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestMoveBetweenPoolsAndGetActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestMoveBetweenPoolsAndGetActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary tags = new Dictionary() { diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs index 14bc72d52990..5c05498cd522 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs @@ -17,8 +17,8 @@ public class ElasticPoolCrudScenarioTests public void TestCreateDropElasticPool() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestCreateDropElasticPool", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestCreateDropElasticPool", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary tags = new Dictionary() { @@ -69,8 +69,8 @@ public void TestCreateDropElasticPool() public void TestUpdateElasticPoolAndListActivity() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestUpdateElasticPoolAndListActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestUpdateElasticPoolAndListActivity", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary tags = new Dictionary() { @@ -147,8 +147,8 @@ public void TestUpdateElasticPoolAndListActivity() public void TestGetAndListElasticPool() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestGetAndListElasticPool", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestGetAndListElasticPool", testPrefix, (resClient, sqlClient, resourceGroup, server) => { Dictionary inputs = new Dictionary(); diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs index c2af8c3e3a27..83e6c13eaf12 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs @@ -17,8 +17,8 @@ public class FirewallRuleCrudScenarioTests public void TestGetAndListFirewallRule() { string testPrefix = "firewallrulecrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestGetAndListFirewallRule", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestGetAndListFirewallRule", testPrefix, (resClient, sqlClient, resourceGroup, server) => { // Create Firewall Rules // @@ -61,8 +61,8 @@ public void TestGetAndListFirewallRule() public void TestCreateAndDropFirewallRule() { string testPrefix = "firewallrulecrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestCreateUpdateDropFirewallRule", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestCreateUpdateDropFirewallRule", testPrefix, (resClient, sqlClient, resourceGroup, server) => { // Create and validate Firewall Rule // @@ -108,8 +108,8 @@ public void TestCreateAndDropFirewallRule() public void TestCreateAndUpdateFirewallRule() { string testPrefix = "firewallrulecrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestCreateAndUpdateFirewallRule", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestCreateAndUpdateFirewallRule", testPrefix, (resClient, sqlClient, resourceGroup, server) => { // Create Firewall Rule and Validate // diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs index e94edf9fe8f4..31b125a44e8a 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs @@ -16,160 +16,67 @@ namespace Sql.Tests public class ImportExportScenarioTests { [Fact] - public void TestImportExistingDatabaseGetOperation() + public void TestImportExistingDatabase() { string testPrefix = "sqlcrudtest-"; - string suiteName = this.GetType().FullName; - string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); - string dbName2 = SqlManagementTestUtilities.GenerateName(testPrefix); - string storageAccountName = SqlManagementTestUtilities.GenerateName("sqlcrudstorage"); - SqlManagementTestUtilities.RunTestInNewResourceGroup(suiteName, "TestImportExistingDatabaseGetOperation", testPrefix, (resClient, sqlClient, resourceGroup) => - { - string serverNameV12 = SqlManagementTestUtilities.GenerateName(testPrefix); - string login = "dummylogin"; - string password = "Un53cuRE!"; - string version12 = "12.0"; - Dictionary tags = new Dictionary() - { - { "tagKey1", "TagValue1" } - }; - - // Create server and set firewall rule - var server = sqlClient.Servers.CreateOrUpdate(resourceGroup.Name, serverNameV12, new Server() - { - AdministratorLogin = login, - AdministratorLoginPassword = password, - Version = version12, - Tags = tags, - Location = SqlManagementTestUtilities.DefaultLocation, - }); - SqlManagementTestUtilities.ValidateServer(server, serverNameV12, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); - - sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, SqlManagementTestUtilities.GenerateName(testPrefix), new ServerFirewallRule() - { - StartIpAddress = "0.0.0.0", - EndIpAddress = "255.255.255.255" - }); - - // Create 2 databases - sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, new Database() - { - Location = server.Location - }); - sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName2, new Database() - { - Location = server.Location - }); - - // Get Storage container credentials - string testMode = HttpMockServer.GetCurrentMode().ToString(); - string storageKey = "StorageKey"; - string storageKeyType = "StorageAccessKey"; - string exportBacpacLink = string.Format(CultureInfo.InvariantCulture, "http://test.blob.core.windows.net/databases/{0}.bacpac", dbName); - - if (testMode == "Record") - { - string importBacpacContainer = Environment.GetEnvironmentVariable("TEST_IMPORT_CONTAINER"); - storageKey = Environment.GetEnvironmentVariable("TEST_STORAGE_KEY"); - exportBacpacLink = string.Format(CultureInfo.InvariantCulture, "{0}/{1}.bacpac", importBacpacContainer, dbName); - - Assert.False(string.IsNullOrWhiteSpace(storageKey), "Environment variable TEST_STORAGE_KEY has not been set. Set it to storage account key."); - Assert.False(string.IsNullOrWhiteSpace(importBacpacContainer), "Environment variable TEST_IMPORT_CONTAINER has not been set. Set it to a valid storage container URL."); - } - - // Export database to bacpac - sqlClient.Databases.Export(resourceGroup.Name, server.Name, dbName, new ExportRequestParameters() - { - AdministratorLogin = login, - AdministratorLoginPassword = password, - AuthenticationType = AuthenticationType.SQL, - StorageKey = storageKey, - StorageKeyType = StorageKeyType.StorageAccessKey, - StorageUri = exportBacpacLink - }); - - // Import bacpac to existing database - ImportExportOperationResponse importResponse = sqlClient.Databases.Import(resourceGroup.Name, server.Name, dbName2, new ImportExtensionRequestParameters() - { - AdministratorLogin = login, - AdministratorLoginPassword = password, - AuthenticationType = AuthenticationType.SQL, - StorageKey = storageKey, - StorageKeyType = StorageKeyType.StorageAccessKey, - StorageUri = exportBacpacLink - }); - - // Get Database import/export operation - ImportExportOperationResponse importStatusResponse = sqlClient.ImportExportOperations.GetByDatabase(resourceGroup.Name, server.Name, dbName2, importResponse.RequestId.Value); - - // List Server import/export operations - IEnumerable listOperationResponse = sqlClient.ImportExportOperations.ListByServer(resourceGroup.Name, server.Name); - Assert.Equal(2, listOperationResponse.Count()); - Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Export") && o.DatabaseName.Equals(dbName))); - Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Import") && o.DatabaseName.Equals(dbName2))); - - // Get Server import/export operation - foreach(ImportExportOperationResponse operation in listOperationResponse) - { - ImportExportOperationResponse getOperationResponse = sqlClient.ImportExportOperations.GetByServer(resourceGroup.Name, server.Name, operation.RequestId.Value); - Assert.NotNull(getOperationResponse); - } - }); + TestImportExport(true, testPrefix, "TestImportExistingDatabase"); } [Fact] - public void TestExportImportNewDatabaseGetOperation() + public void TestImportNewDatabase() { string testPrefix = "sqlcrudtest-"; + TestImportExport(false, testPrefix, "TestImportNewDatabase"); + } + + public void TestImportExport(bool preexistingDatabase, string testPrefix, string testName) + { string suiteName = this.GetType().FullName; - string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); - string dbName2 = SqlManagementTestUtilities.GenerateName(testPrefix); - string storageAccountName = SqlManagementTestUtilities.GenerateName("sqlcrudstorage"); - SqlManagementTestUtilities.RunTestInNewResourceGroup(suiteName, "TestExportImportNewDatabase", testPrefix, (resClient, sqlClient, resourceGroup) => + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, testName, testPrefix, (resClient, sqlClient, resourceGroup, server) => { string serverNameV12 = SqlManagementTestUtilities.GenerateName(testPrefix); string login = "dummylogin"; string password = "Un53cuRE!"; string version12 = "12.0"; + string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + string dbName2 = SqlManagementTestUtilities.GenerateName(testPrefix); + string storageAccountName = SqlManagementTestUtilities.GenerateName("sqlcrudstorage"); Dictionary tags = new Dictionary() { { "tagKey1", "TagValue1" } }; - // Create server and set firewall rule - var server = sqlClient.Servers.CreateOrUpdate(resourceGroup.Name, serverNameV12, new Server() - { - AdministratorLogin = login, - AdministratorLoginPassword = password, - Version = version12, - Tags = tags, - Location = SqlManagementTestUtilities.DefaultLocation, - }); - SqlManagementTestUtilities.ValidateServer(server, serverNameV12, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); - + // set server firewall rule sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, SqlManagementTestUtilities.GenerateName(testPrefix), new ServerFirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "255.255.255.255" }); - // Create 2 databases + // Create 1 or 2 databases sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, new Database() { Location = server.Location }); - sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName2, new Database() + + if (preexistingDatabase) { - Location = server.Location - }); + sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName2, new Database() + { + Location = server.Location + }); + + // Verify existence of new database + Assert.NotNull(sqlClient.Databases.Get(resourceGroup.Name, server.Name, dbName2)); + } // Get Storage container credentials - string testMode = HttpMockServer.GetCurrentMode().ToString(); + HttpRecorderMode testMode = HttpMockServer.GetCurrentMode(); string storageKey = "StorageKey"; string storageKeyType = "StorageAccessKey"; string exportBacpacLink = string.Format(CultureInfo.InvariantCulture, "http://test.blob.core.windows.net/databases/{0}.bacpac", dbName); - if (testMode == "Record") + if (testMode == HttpRecorderMode.Record) { string importBacpacContainer = Environment.GetEnvironmentVariable("TEST_IMPORT_CONTAINER"); storageKey = Environment.GetEnvironmentVariable("TEST_STORAGE_KEY"); @@ -190,24 +97,37 @@ public void TestExportImportNewDatabaseGetOperation() StorageUri = exportBacpacLink }); - // Import bacpac to new database - sqlClient.Servers.ImportDatabase(resourceGroup.Name, server.Name, new ImportRequestParameters() + // Import bacpac to new/existing database + if (preexistingDatabase) { - AdministratorLogin = login, - AdministratorLoginPassword = password, - AuthenticationType = AuthenticationType.SQL, - StorageKey = storageKey, - StorageKeyType = StorageKeyType.StorageAccessKey, - StorageUri = exportBacpacLink, - DatabaseName = dbName2, - Edition = SqlTestConstants.DefaultDatabaseEdition, - ServiceObjectiveName = ServiceObjectiveName.Basic, - MaxSizeBytes = (2 * 1024L * 1024L * 1024L).ToString(), - }); + // Import bacpac to existing database + sqlClient.Databases.Import(resourceGroup.Name, server.Name, dbName2, new ImportExtensionRequestParameters() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + AuthenticationType = AuthenticationType.SQL, + StorageKey = storageKey, + StorageKeyType = StorageKeyType.StorageAccessKey, + StorageUri = exportBacpacLink + }); + } + else + { + sqlClient.Servers.ImportDatabase(resourceGroup.Name, server.Name, new ImportRequestParameters() + { + AdministratorLogin = login, + AdministratorLoginPassword = password, + AuthenticationType = AuthenticationType.SQL, + StorageKey = storageKey, + StorageKeyType = StorageKeyType.StorageAccessKey, + StorageUri = exportBacpacLink, + DatabaseName = dbName2, + Edition = SqlTestConstants.DefaultDatabaseEdition, + ServiceObjectiveName = ServiceObjectiveName.Basic, + MaxSizeBytes = (2 * 1024L * 1024L * 1024L).ToString(), + }); + } - // Verify existence of new database - Assert.NotNull(sqlClient.Databases.Get(resourceGroup.Name, server.Name, dbName2)); - // List Server import/export operations IEnumerable listOperationResponse = sqlClient.ImportExportOperations.ListByServer(resourceGroup.Name, server.Name); Assert.Equal(2, listOperationResponse.Count()); @@ -217,8 +137,13 @@ public void TestExportImportNewDatabaseGetOperation() // Get Server import/export operation foreach (ImportExportOperationResponse operation in listOperationResponse) { - ImportExportOperationResponse getOperationResponse = sqlClient.ImportExportOperations.GetByServer(resourceGroup.Name, server.Name, operation.RequestId.Value); + ImportExportOperationResponse getOperationResponse = sqlClient.ImportExportOperations.GetByServer(resourceGroup.Name, server.Name, + operation.RequestId.Value); Assert.NotNull(getOperationResponse); + + ImportExportOperationResponse getByDbResponse = sqlClient.ImportExportOperations.GetByDatabase(resourceGroup.Name, server.Name, + getOperationResponse.DatabaseName, operation.RequestId.Value); + Assert.NotNull(getByDbResponse); } }); } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportExistingDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportExistingDatabase.json new file mode 100644 index 000000000000..e9e9949d5d41 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportExistingDatabase.json @@ -0,0 +1,2054 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-7873?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTc4NzM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-7873\": \"2017-03-07 20:33:09Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "94431355-44ff-4e8d-bab3-0a207e76069d" + ], + "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/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873\",\r\n \"name\": \"sqlcrudtest-7873\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-7873\": \"2017-03-07 20:33:09Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:33:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2c29c60b-bf04-4016-a27b-571889a43bf3" + ], + "x-ms-correlation-request-id": [ + "2c29c60b-bf04-4016-a27b-571889a43bf3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T203311Z:2c29c60b-bf04-4016-a27b-571889a43bf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "0b9a30bf-3048-4181-b42f-f4bbea70e0fd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315\",\r\n \"name\": \"sqlcrudtest-6315\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:34:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ff4c1c95-fae0-4ada-8d1a-33a3ef5f63a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "a145471f-8bd9-4097-90c5-b61e659de1d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T203402Z:a145471f-8bd9-4097-90c5-b61e659de1d1" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/firewallRules/sqlcrudtest-6400?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2ZpcmV3YWxsUnVsZXMvc3FsY3J1ZHRlc3QtNjQwMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ], + "x-ms-client-request-id": [ + "d7ea29a5-d84a-4610-9973-b53500f8c906" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/firewallRules/sqlcrudtest-6400\",\r\n \"name\": \"sqlcrudtest-6400\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "357" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:34:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c15ebad7-c47c-4902-8d62-99b38cc0c4e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "11f1f01d-37ca-4fad-aa0e-5cfeb85ba3e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T203404Z:11f1f01d-37ca-4fad-aa0e-5cfeb85ba3e0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "6b6f0f5c-8fd7-4924-8706-3c88fab9057d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-07T12:34:06.516-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:34:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/operationResults/42764449-b3ce-49cd-b3b9-e1e8d423043d?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "42764449-b3ce-49cd-b3b9-e1e8d423043d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/azureAsyncOperation/42764449-b3ce-49cd-b3b9-e1e8d423043d?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "e5cc952a-8415-4a6a-8b4e-29429dc74b57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T203406Z:e5cc952a-8415-4a6a-8b4e-29429dc74b57" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/azureAsyncOperation/42764449-b3ce-49cd-b3b9-e1e8d423043d?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2F6dXJlQXN5bmNPcGVyYXRpb24vNDI3NjQ0NDktYjNjZS00OWNkLWIzYjktZTFlOGQ0MjMwNDNkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"42764449-b3ce-49cd-b3b9-e1e8d423043d\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:34:36 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "12bcbb8f-15a7-469e-91de-b4702581df85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/azureAsyncOperation/42764449-b3ce-49cd-b3b9-e1e8d423043d?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "f8ad791b-da0d-4f62-ae95-580c31ddc568" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203437Z:f8ad791b-da0d-4f62-ae95-580c31ddc568" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/azureAsyncOperation/42764449-b3ce-49cd-b3b9-e1e8d423043d?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2F6dXJlQXN5bmNPcGVyYXRpb24vNDI3NjQ0NDktYjNjZS00OWNkLWIzYjktZTFlOGQ0MjMwNDNkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"42764449-b3ce-49cd-b3b9-e1e8d423043d\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:35:08 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fe3f7d1f-8f7e-48ed-85a1-8c376cdc08ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/azureAsyncOperation/42764449-b3ce-49cd-b3b9-e1e8d423043d?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "16fb72e9-55e2-45c8-ab96-71850e2b11a9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T203508Z:16fb72e9-55e2-45c8-ab96-71850e2b11a9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404\",\r\n \"name\": \"sqlcrudtest-6404\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e4d4b560-f2e7-4b90-8fbb-5a5623c5775b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-07T20:34:07.093Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-07T20:44:52.137Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:35:09 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "072d2e6d-aeb9-4a2c-8102-39e8acaff9a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "cc946bc4-d7fe-4005-a485-8cf73651b133" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T203509Z:cc946bc4-d7fe-4005-a485-8cf73651b133" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "5d6d8d09-6e22-49ab-ae52-f4dc65e1c22b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-07T12:35:12.646-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:35:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/operationResults/8c6c1a0c-4755-4809-b4f8-562525773fa9?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8c6c1a0c-4755-4809-b4f8-562525773fa9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/azureAsyncOperation/8c6c1a0c-4755-4809-b4f8-562525773fa9?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "bfa95ce5-d61b-45b1-8273-1b289211f5db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T203512Z:bfa95ce5-d61b-45b1-8273-1b289211f5db" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/azureAsyncOperation/8c6c1a0c-4755-4809-b4f8-562525773fa9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2F6dXJlQXN5bmNPcGVyYXRpb24vOGM2YzFhMGMtNDc1NS00ODA5LWI0ZjgtNTYyNTI1NzczZmE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"8c6c1a0c-4755-4809-b4f8-562525773fa9\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:35:42 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c7cc0ac2-4c89-4e23-a27e-8fa94796cfcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/azureAsyncOperation/8c6c1a0c-4755-4809-b4f8-562525773fa9?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "32cb1e41-20dc-42c2-a7b6-777340d50733" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203543Z:32cb1e41-20dc-42c2-a7b6-777340d50733" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/azureAsyncOperation/8c6c1a0c-4755-4809-b4f8-562525773fa9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2F6dXJlQXN5bmNPcGVyYXRpb24vOGM2YzFhMGMtNDc1NS00ODA5LWI0ZjgtNTYyNTI1NzczZmE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"8c6c1a0c-4755-4809-b4f8-562525773fa9\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:36:12 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6c702fdf-f843-4bcc-bf60-43317f9d0236" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/azureAsyncOperation/8c6c1a0c-4755-4809-b4f8-562525773fa9?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "06ded162-d2d6-418c-a01a-405849fd0558" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203613Z:06ded162-d2d6-418c-a01a-405849fd0558" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324\",\r\n \"name\": \"sqlcrudtest-5324\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"90228845-999f-48a1-9c53-324e764d0577\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-07T20:35:13.037Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-07T20:46:00.213Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:36:13 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d939aea7-1fe0-4ff0-a12f-0f65620c1462" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "a52a0b01-52b4-4d93-87b9-f121c5916512" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203614Z:a52a0b01-52b4-4d93-87b9-f121c5916512" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff59ef32-3f53-458d-9aa7-6c8bd3884f74" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324\",\r\n \"name\": \"sqlcrudtest-5324\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"90228845-999f-48a1-9c53-324e764d0577\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-07T20:35:13.037Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-07T20:46:00.213Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:36:14 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "241e3995-ac75-4de5-b6a3-116a1b02faae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "62391e5a-bf48-458b-9d75-299c8db9aa46" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203615Z:62391e5a-bf48-458b-9d75-299c8db9aa46" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/export?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2V4cG9ydD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"u1ubkKFZz+dSdcFZRVWQx8rEgRehgSwy5iBE64CxdbepO7Q0zEb7nRjFCWPuG71n3tKeHBOxhPZX44qlw/4YRQ==\",\r\n \"storageUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"authenticationType\": \"SQL\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "362" + ], + "x-ms-client-request-id": [ + "be8751cd-b0c6-4c85-8749-d3002f0fc82f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Export\",\r\n \"startTime\": \"2017-03-07T20:36:18.853Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "60" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:36:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "94237b6f-f0f4-456b-be07-37415d409719" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f0a56e41-230b-458f-8f20-b0889df41b30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203617Z:f0a56e41-230b-458f-8f20-b0889df41b30" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvODg4N2NlODUtOThkYi00YWQ4LTg1OTMtY2I5NjZkOTNmOTlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6404\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:36:19 PM\",\r\n \"queuedTime\": \"3/7/2017 8:36:18 PM\",\r\n \"requestId\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:36:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1cb3179b-ab60-4f97-959c-e6305d3492ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "bb0fc0c9-3126-4bcd-88d2-f1f06233593a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203648Z:bb0fc0c9-3126-4bcd-88d2-f1f06233593a" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvODg4N2NlODUtOThkYi00YWQ4LTg1OTMtY2I5NjZkOTNmOTlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6404\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:36:19 PM\",\r\n \"queuedTime\": \"3/7/2017 8:36:18 PM\",\r\n \"requestId\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:37:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "75484427-66cb-465b-a041-abf468acde29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "68cdd386-b126-43bd-8a96-2bf2dcee47b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203719Z:68cdd386-b126-43bd-8a96-2bf2dcee47b3" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvODg4N2NlODUtOThkYi00YWQ4LTg1OTMtY2I5NjZkOTNmOTlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6404\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:36:19 PM\",\r\n \"queuedTime\": \"3/7/2017 8:36:18 PM\",\r\n \"requestId\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:37:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3f89ce8a-5cb4-4e20-ad04-67d900ed7827" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "67c623ea-ccb9-468f-91bd-b23815bfcd51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203750Z:67c623ea-ccb9-468f-91bd-b23815bfcd51" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvODg4N2NlODUtOThkYi00YWQ4LTg1OTMtY2I5NjZkOTNmOTlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6404\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:36:19 PM\",\r\n \"queuedTime\": \"3/7/2017 8:36:18 PM\",\r\n \"requestId\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:38:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "022c7332-96a6-4a81-9e70-72cb776ed20c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "5981ede3-770b-4f69-aa33-a061142214b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203821Z:5981ede3-770b-4f69-aa33-a061142214b4" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvODg4N2NlODUtOThkYi00YWQ4LTg1OTMtY2I5NjZkOTNmOTlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"name\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/7/2017 8:36:18 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:38:51 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"serverName\": \"sqlcrudtest-6315\",\r\n \"databaseName\": \"sqlcrudtest-6404\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:38:51 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b0029e40-fde6-432c-b42d-18f8f969cdeb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "899f85d4-9fb4-427e-97e2-4704c9492519" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203852Z:899f85d4-9fb4-427e-97e2-4704c9492519" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2V4dGVuc2lvbnMvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"u1ubkKFZz+dSdcFZRVWQx8rEgRehgSwy5iBE64CxdbepO7Q0zEb7nRjFCWPuG71n3tKeHBOxhPZX44qlw/4YRQ==\",\r\n \"storageUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"authenticationType\": \"SQL\",\r\n \"operationMode\": \"Import\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "430" + ], + "x-ms-client-request-id": [ + "1129b0ea-f3d3-46c9-8249-aab211cf91fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Import\",\r\n \"startTime\": \"2017-03-07T20:38:56.201Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "60" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:38:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "dd11e31a-b73e-43e4-aa88-068279e24a1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "cdc5d4f2-5316-469a-b77c-f102d4b90e9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203856Z:cdc5d4f2-5316-469a-b77c-f102d4b90e9a" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMGYwNjA1NzctMjI4ZC00MDU3LWIxYjItYzYxMWUyYjhlNjBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-5324\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:38:56 PM\",\r\n \"queuedTime\": \"3/7/2017 8:38:55 PM\",\r\n \"requestId\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "388" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:39:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "fe2d905c-7608-4cc9-8651-5cd09f05f495" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "3ad56b55-220b-412f-9f93-ad48f2583b04" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T203929Z:3ad56b55-220b-412f-9f93-ad48f2583b04" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMGYwNjA1NzctMjI4ZC00MDU3LWIxYjItYzYxMWUyYjhlNjBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-5324\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:38:56 PM\",\r\n \"queuedTime\": \"3/7/2017 8:38:55 PM\",\r\n \"requestId\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "388" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:40:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "355636b2-398d-44c8-99db-ba2751e732e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "0ac12543-6a92-4157-bc46-8c333a2f3a42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204000Z:0ac12543-6a92-4157-bc46-8c333a2f3a42" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMGYwNjA1NzctMjI4ZC00MDU3LWIxYjItYzYxMWUyYjhlNjBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-5324\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:38:56 PM\",\r\n \"queuedTime\": \"3/7/2017 8:38:55 PM\",\r\n \"requestId\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "388" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:40:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a2717eba-bb06-4136-b8dd-06fe7309d1e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "f2b9ca6e-1137-46f2-9389-d0545a4ca0a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204031Z:f2b9ca6e-1137-46f2-9389-d0545a4ca0a6" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMGYwNjA1NzctMjI4ZC00MDU3LWIxYjItYzYxMWUyYjhlNjBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-5324\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:38:56 PM\",\r\n \"queuedTime\": \"3/7/2017 8:38:55 PM\",\r\n \"requestId\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-6315.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "388" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:41:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "73ae00f3-7887-42ec-a4ff-7f0c03feb858" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "2a2ca1f6-2ac8-48fd-ba2f-61254f01b5a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204102Z:2a2ca1f6-2ac8-48fd-ba2f-61254f01b5a7" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import/importExtensionOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2V4dGVuc2lvbnMvaW1wb3J0L2ltcG9ydEV4dGVuc2lvbk9wZXJhdGlvblJlc3VsdHMvMGYwNjA1NzctMjI4ZC00MDU3LWIxYjItYzYxMWUyYjhlNjBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/extensions/import\",\r\n \"name\": \"import\",\r\n \"type\": \"Microsoft.Sql/servers/databases/extensions\",\r\n \"properties\": {\r\n \"requestId\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/7/2017 8:38:55 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:41:01 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"serverName\": \"sqlcrudtest-6315\",\r\n \"databaseName\": \"sqlcrudtest-5324\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "610" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:41:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "de52c392-0253-421d-9898-bbf45a1e126b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "a07a0f3f-b194-4131-9f0e-f62d6737edda" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204133Z:a07a0f3f-b194-4131-9f0e-f62d6737edda" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/importExportOperationResults?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8964c413-1329-49b0-b9a6-6a09c3160869" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/importExportOperationResult/8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"name\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/7/2017 8:36:18 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:38:51 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"serverName\": \"sqlcrudtest-6315\",\r\n \"databaseName\": \"sqlcrudtest-6404\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/importExportOperationResult/0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"name\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/7/2017 8:38:55 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:41:01 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"serverName\": \"sqlcrudtest-6315\",\r\n \"databaseName\": \"sqlcrudtest-5324\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:41:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "12493c12-d88c-4829-83c3-756455f54def" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "554d5fa6-1d64-441e-8e2b-1e63cb40e7dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204134Z:554d5fa6-1d64-441e-8e2b-1e63cb40e7dc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvODg4N2NlODUtOThkYi00YWQ4LTg1OTMtY2I5NjZkOTNmOTlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffd601c7-00b8-4d4c-8d86-c5dd954560db" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/importExportOperationResult/8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"name\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/7/2017 8:36:18 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:38:51 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"serverName\": \"sqlcrudtest-6315\",\r\n \"databaseName\": \"sqlcrudtest-6404\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:41:34 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "adaa336b-a57c-433b-a92b-6075ed32cf31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "38c03be4-c57e-4f6b-bbd2-487bc6258b1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204135Z:38c03be4-c57e-4f6b-bbd2-487bc6258b1e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02NDA0L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvODg4N2NlODUtOThkYi00YWQ4LTg1OTMtY2I5NjZkOTNmOTlhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "270dfc24-b4e4-4a17-ad88-55febbec12b3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-6404/importExportOperationResults/8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"name\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"8887ce85-98db-4ad8-8593-cb966d93f99a\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/7/2017 8:36:18 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:38:51 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"serverName\": \"sqlcrudtest-6315\",\r\n \"databaseName\": \"sqlcrudtest-6404\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:41:35 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "890ae73a-c6d3-42ad-9c40-c8466071d711" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "a057ca29-8ad8-491e-b4c0-443e106eb041" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204136Z:a057ca29-8ad8-491e-b4c0-443e106eb041" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/importExportOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMGYwNjA1NzctMjI4ZC00MDU3LWIxYjItYzYxMWUyYjhlNjBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a816ece-233a-4de7-8856-51a00b5d1d68" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/importExportOperationResult/0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"name\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/7/2017 8:38:55 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:41:01 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"serverName\": \"sqlcrudtest-6315\",\r\n \"databaseName\": \"sqlcrudtest-5324\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:41:36 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4a91c37b-4aa8-4231-9b36-37b06ed907f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "58620add-3f5a-46fc-866e-e18f558e8980" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204136Z:58620add-3f5a-46fc-866e-e18f558e8980" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/importExportOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTc4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC02MzE1L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC01MzI0L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMGYwNjA1NzctMjI4ZC00MDU3LWIxYjItYzYxMWUyYjhlNjBmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec26e664-7184-42b3-8b13-b49ac0cf765f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-7873/providers/Microsoft.Sql/servers/sqlcrudtest-6315/databases/sqlcrudtest-5324/importExportOperationResults/0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"name\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"0f060577-228d-4057-b1b2-c611e2b8e60f\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/7/2017 8:38:55 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:41:01 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6404.bacpac\",\r\n \"serverName\": \"sqlcrudtest-6315\",\r\n \"databaseName\": \"sqlcrudtest-5324\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:41:37 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "69c2dbfd-550a-4821-88a9-417f23b2350d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "dae1a54a-755b-45ad-9e6f-35dd239007b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204137Z:dae1a54a-755b-45ad-9e6f-35dd239007b0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-7873?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTc4NzM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d784cee8-107c-4de7-9d7f-e8b8f26e70b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:41:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc4NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a7ed1010-6f02-4436-b433-f402ce96ac8b" + ], + "x-ms-correlation-request-id": [ + "a7ed1010-6f02-4436-b433-f402ce96ac8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204140Z:a7ed1010-6f02-4436-b433-f402ce96ac8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc4NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzROek10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:42:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc4NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "fbf63ddb-7836-4e55-9d9d-e7ac226904be" + ], + "x-ms-correlation-request-id": [ + "fbf63ddb-7836-4e55-9d9d-e7ac226904be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204210Z:fbf63ddb-7836-4e55-9d9d-e7ac226904be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc4NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzROek10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:42:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc4NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "0ae03ef3-fa12-498c-8ab2-45a6d5b2fcaf" + ], + "x-ms-correlation-request-id": [ + "0ae03ef3-fa12-498c-8ab2-45a6d5b2fcaf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204241Z:0ae03ef3-fa12-498c-8ab2-45a6d5b2fcaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc4NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzROek10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:43:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc4NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "656461f0-3ba3-4752-88f9-5ce338c5dc4d" + ], + "x-ms-correlation-request-id": [ + "656461f0-3ba3-4752-88f9-5ce338c5dc4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204311Z:656461f0-3ba3-4752-88f9-5ce338c5dc4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDc4NzMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEYzROek10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:43:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "6da3a1a5-790c-4a67-aa36-471906b7ca6d" + ], + "x-ms-correlation-request-id": [ + "6da3a1a5-790c-4a67-aa36-471906b7ca6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204342Z:6da3a1a5-790c-4a67-aa36-471906b7ca6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "sqlcrudtest-7873" + ], + "RunTestInNewV12Server": [ + "sqlcrudtest-6315" + ], + "TestImportExport": [ + "sqlcrudtest-7637", + "sqlcrudtest-6404", + "sqlcrudtest-5324", + "sqlcrudstorage7567", + "sqlcrudtest-6400" + ] + }, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportNewDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportNewDatabase.json new file mode 100644 index 000000000000..954e98be9c97 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ImportExportScenarioTests/TestImportNewDatabase.json @@ -0,0 +1,1749 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-2842?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTI4NDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-2842\": \"2017-03-07 20:43:59Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "fe4127f7-384a-403c-a34b-9d7988366672" + ], + "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/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842\",\r\n \"name\": \"sqlcrudtest-2842\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-2842\": \"2017-03-07 20:43:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:44:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "fa39cb57-3f84-49ce-ae59-50d851444b17" + ], + "x-ms-correlation-request-id": [ + "fa39cb57-3f84-49ce-ae59-50d851444b17" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204401Z:fa39cb57-3f84-49ce-ae59-50d851444b17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "157f732f-cfe2-423c-8bf9-266b1aff9ca9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888\",\r\n \"name\": \"sqlcrudtest-4888\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:44:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "1fabd44a-5db6-4bb9-b284-513369fbfeba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "b1ac2424-9ec1-4087-a2b1-60ab0822d2f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204439Z:b1ac2424-9ec1-4087-a2b1-60ab0822d2f0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/firewallRules/sqlcrudtest-7505?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ZpcmV3YWxsUnVsZXMvc3FsY3J1ZHRlc3QtNzUwNT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ], + "x-ms-client-request-id": [ + "de9ccbb1-91c8-4e26-9a9b-a50833aa8e51" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/firewallRules/sqlcrudtest-7505\",\r\n \"name\": \"sqlcrudtest-7505\",\r\n \"type\": \"Microsoft.Sql/servers/firewallRules\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "357" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:44:40 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bfedb4b2-d102-4782-9f7c-4cf43c8e8b4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "80c35c2d-5153-4424-b8f4-c7034e079abb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204441Z:80c35c2d-5153-4424-b8f4-c7034e079abb" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "02903d43-0932-4ad0-9cf2-c0270a6f43eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-07T12:44:41.764-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:44:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/operationResults/9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/azureAsyncOperation/9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "50185b71-2af9-4d4c-b9ea-074d837e2b85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204442Z:50185b71-2af9-4d4c-b9ea-074d837e2b85" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/azureAsyncOperation/9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2F6dXJlQXN5bmNPcGVyYXRpb24vOWRkZmY4Y2YtZDZjNC00YjY2LWJkYTItOGU1ZmIxYjM0ZjYwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:45:13 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e0e66c59-bf7a-473e-bb84-0fc85edb8930" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/azureAsyncOperation/9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "cf802b0b-a6ad-4acc-8a4b-78eac37637ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204513Z:cf802b0b-a6ad-4acc-8a4b-78eac37637ef" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/azureAsyncOperation/9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2F6dXJlQXN5bmNPcGVyYXRpb24vOWRkZmY4Y2YtZDZjNC00YjY2LWJkYTItOGU1ZmIxYjM0ZjYwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:45:44 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c3ba4cf7-d774-4936-880d-7af2ac24574d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/azureAsyncOperation/9ddff8cf-d6c4-4b66-bda2-8e5fb1b34f60?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "be3db38e-8fd3-4124-87ff-ec0754d7f38a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204544Z:be3db38e-8fd3-4124-87ff-ec0754d7f38a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273\",\r\n \"name\": \"sqlcrudtest-6273\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8f0b2f80-4067-43af-91b9-64b8265ea272\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-07T20:44:42.013Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-07T20:55:32.053Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:45:44 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8d128fe8-c3e8-4e1d-88a3-7b14ca1e18a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "a5e93116-ce6f-4f23-96a3-8514c5cac8d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204545Z:a5e93116-ce6f-4f23-96a3-8514c5cac8d5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/export?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2V4cG9ydD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"u1ubkKFZz+dSdcFZRVWQx8rEgRehgSwy5iBE64CxdbepO7Q0zEb7nRjFCWPuG71n3tKeHBOxhPZX44qlw/4YRQ==\",\r\n \"storageUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"authenticationType\": \"SQL\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "362" + ], + "x-ms-client-request-id": [ + "28148ce4-2727-411f-a7cb-b64ee0be37d9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Export\",\r\n \"startTime\": \"2017-03-07T20:45:48.638Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "60" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:45:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "094aaf33-53ac-4b41-9d64-634f24c352ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "de49e78a-7522-4b6e-8549-e1a8b05fbe6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204547Z:de49e78a-7522-4b6e-8549-e1a8b05fbe6d" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvZDE2MWEwNGYtYzIzMy00MjgxLWI4MGQtN2U0MTRhN2QyYWFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:45:47 PM\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:46:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ce50d0ac-714d-4768-9267-e92cde94ddf5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "0338e5cb-48ec-43a4-9688-c4889db645ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204619Z:0338e5cb-48ec-43a4-9688-c4889db645ef" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvZDE2MWEwNGYtYzIzMy00MjgxLWI4MGQtN2U0MTRhN2QyYWFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:45:47 PM\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:46:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "74d08c53-a05a-4f13-bc1f-a251488208d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "a84e030d-cc71-4448-81d1-7915b9fea51a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204650Z:a84e030d-cc71-4448-81d1-7915b9fea51a" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvZDE2MWEwNGYtYzIzMy00MjgxLWI4MGQtN2U0MTRhN2QyYWFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:45:47 PM\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:47:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "55e6d010-eb5f-4707-b696-56ec85dd8cdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "7b4e037e-e089-4329-ba34-b7e4eb0e27e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204721Z:7b4e037e-e089-4329-ba34-b7e4eb0e27e4" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvZDE2MWEwNGYtYzIzMy00MjgxLWI4MGQtN2U0MTRhN2QyYWFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:45:47 PM\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:47:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "23ceef59-ad2a-4d47-81da-c90d8ef97e8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "86471c45-fa4c-4b62-b830-40debd9433b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204751Z:86471c45-fa4c-4b62-b830-40debd9433b1" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvZDE2MWEwNGYtYzIzMy00MjgxLWI4MGQtN2U0MTRhN2QyYWFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:45:47 PM\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"serverName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"status\": \"Running, Progress = 0%\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:48:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "338d4c31-6a1e-4beb-b900-9ed4d4f2d465" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "a3fa13f6-dd88-442c-a9e4-73cc77c93e77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204822Z:a3fa13f6-dd88-442c-a9e4-73cc77c93e77" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvZDE2MWEwNGYtYzIzMy00MjgxLWI4MGQtN2U0MTRhN2QyYWFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"name\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:48:28 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"serverName\": \"sqlcrudtest-4888\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:48:53 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3f133371-d39f-40ff-a79b-ee7ec6bc6c1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "1e56b667-0dad-4c52-b29d-ff62557db01e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204853Z:1e56b667-0dad-4c52-b29d-ff62557db01e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/import?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ltcG9ydD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"databaseName\": \"sqlcrudtest-6832\",\r\n \"edition\": \"Basic\",\r\n \"serviceObjectiveName\": \"Basic\",\r\n \"maxSizeBytes\": \"2147483648\",\r\n \"storageKeyType\": \"StorageAccessKey\",\r\n \"storageKey\": \"u1ubkKFZz+dSdcFZRVWQx8rEgRehgSwy5iBE64CxdbepO7Q0zEb7nRjFCWPuG71n3tKeHBOxhPZX44qlw/4YRQ==\",\r\n \"storageUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"authenticationType\": \"SQL\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "493" + ], + "x-ms-client-request-id": [ + "76a01914-2412-46d5-98e1-07339c0d8899" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"Import\",\r\n \"startTime\": \"2017-03-07T20:48:55.805Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "60" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:48:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "add2dc1d-fa38-497f-b36c-44c6c21c64d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "8d865bb8-880d-413e-9a67-abeb1f79c732" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204855Z:8d865bb8-880d-413e-9a67-abeb1f79c732" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWZkMDE5NjUtODQ1Ny00MjhmLWI5NjktY2Y4NWFlMWY3OTliP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6832\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:48:57 PM\",\r\n \"queuedTime\": \"3/7/2017 8:48:56 PM\",\r\n \"requestId\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "388" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:49:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "de547e93-ef7e-44ad-96ae-6c6c613ba54e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "3b61432c-ff8e-4c4b-a2cb-da98242c23de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204926Z:3b61432c-ff8e-4c4b-a2cb-da98242c23de" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWZkMDE5NjUtODQ1Ny00MjhmLWI5NjktY2Y4NWFlMWY3OTliP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6832\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:48:57 PM\",\r\n \"queuedTime\": \"3/7/2017 8:48:56 PM\",\r\n \"requestId\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "388" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:49:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "6446bd00-97b1-433e-9d6f-08c0cf3fb82a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "1ee74346-90e3-44ce-8ccb-60041a8d0565" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T204957Z:1ee74346-90e3-44ce-8ccb-60041a8d0565" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWZkMDE5NjUtODQ1Ny00MjhmLWI5NjktY2Y4NWFlMWY3OTliP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"databaseName\": \"sqlcrudtest-6832\",\r\n \"errorMessage\": null,\r\n \"lastModifiedTime\": \"3/7/2017 8:48:57 PM\",\r\n \"queuedTime\": \"3/7/2017 8:48:56 PM\",\r\n \"requestId\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"requestType\": \"Import\",\r\n \"serverName\": \"sqlcrudtest-4888.database.windows.net\",\r\n \"status\": \"Running, Progress = 5.00 %\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "388" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:50:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c245c525-d810-4f6d-b167-60408beeb6f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "dd8ee0d9-23ee-4e6c-ada1-b93799e9b194" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205028Z:dd8ee0d9-23ee-4e6c-ada1-b93799e9b194" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWZkMDE5NjUtODQ1Ny00MjhmLWI5NjktY2Y4NWFlMWY3OTliP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResult/1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"name\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/7/2017 8:48:56 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:50:33 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"serverName\": \"sqlcrudtest-4888\",\r\n \"databaseName\": \"sqlcrudtest-6832\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:50:58 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4b1c8ef1-9aa1-445a-97fa-ab4f71486328" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "57e0b0c9-16d6-458e-ac71-0847cdec4324" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205059Z:57e0b0c9-16d6-458e-ac71-0847cdec4324" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "773fb6ed-ee03-4059-89a5-991ea65f7853" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResult/d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"name\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:48:28 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"serverName\": \"sqlcrudtest-4888\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResult/1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"name\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/7/2017 8:48:56 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:50:33 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"serverName\": \"sqlcrudtest-4888\",\r\n \"databaseName\": \"sqlcrudtest-6832\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:50:59 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "253e6183-9841-4445-ab0a-897249bc4cbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "7eed2dbc-0818-4774-bf04-78c962453607" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205100Z:7eed2dbc-0818-4774-bf04-78c962453607" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvZDE2MWEwNGYtYzIzMy00MjgxLWI4MGQtN2U0MTRhN2QyYWFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcab822-5b48-4761-908d-e145e058829f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResult/d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"name\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:48:28 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"serverName\": \"sqlcrudtest-4888\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:51:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c0f72d96-4de0-4ad3-b4af-03e32cc34980" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "198707b0-f736-4d9a-89bf-e2e2822adfa2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205100Z:198707b0-f736-4d9a-89bf-e2e2822adfa2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MjczL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvZDE2MWEwNGYtYzIzMy00MjgxLWI4MGQtN2U0MTRhN2QyYWFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d624a57b-7fb2-4097-902c-25c9c2eb5224" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6273/importExportOperationResults/d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"name\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"d161a04f-c233-4281-b80d-7e414a7d2aac\",\r\n \"requestType\": \"Export\",\r\n \"queuedTime\": \"3/7/2017 8:45:46 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:48:28 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"serverName\": \"sqlcrudtest-4888\",\r\n \"databaseName\": \"sqlcrudtest-6273\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:51:01 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fa4690ea-6da6-40d9-9ea2-48add8331e32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "61124175-c574-49a3-ac63-7c2339ee03e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205101Z:61124175-c574-49a3-ac63-7c2339ee03e8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWZkMDE5NjUtODQ1Ny00MjhmLWI5NjktY2Y4NWFlMWY3OTliP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5f03edf-e556-4f13-8541-7a3e38059331" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/importExportOperationResult/1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"name\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"type\": \"Microsoft.Sql/servers/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/7/2017 8:48:56 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:50:33 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"serverName\": \"sqlcrudtest-4888\",\r\n \"databaseName\": \"sqlcrudtest-6832\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:51:01 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2c16ecfd-c7fe-4e5e-9e3b-9ecc184dfe12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "b37d3149-4c0c-45fb-b264-5c1523dc6152" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205102Z:b37d3149-4c0c-45fb-b264-5c1523dc6152" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6832/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTI4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC00ODg4L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02ODMyL2ltcG9ydEV4cG9ydE9wZXJhdGlvblJlc3VsdHMvMWZkMDE5NjUtODQ1Ny00MjhmLWI5NjktY2Y4NWFlMWY3OTliP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab282f09-5fd2-4c66-9e30-f9c1640cdff2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-2842/providers/Microsoft.Sql/servers/sqlcrudtest-4888/databases/sqlcrudtest-6832/importExportOperationResults/1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"name\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/importExportOperationResults\",\r\n \"properties\": {\r\n \"requestId\": \"1fd01965-8457-428f-b969-cf85ae1f799b\",\r\n \"requestType\": \"Import\",\r\n \"queuedTime\": \"3/7/2017 8:48:56 PM\",\r\n \"lastModifiedTime\": \"3/7/2017 8:50:33 PM\",\r\n \"blobUri\": \"https://nafantest.blob.core.windows.net/bacpacs/sqlcrudtest-6273.bacpac\",\r\n \"serverName\": \"sqlcrudtest-4888\",\r\n \"databaseName\": \"sqlcrudtest-6832\",\r\n \"status\": \"Completed\",\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:51:02 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "269c59be-0f45-4a74-ac30-2e5de96c9662" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "d8c6ebaf-00f5-4ab8-8020-c512015382b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205103Z:d8c6ebaf-00f5-4ab8-8020-c512015382b2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-2842?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTI4NDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "405ca387-1f6c-4eca-94ee-a5b53ca92d87" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:51:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI4NDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "960a5f26-7b33-43c6-93dd-b0773a22004b" + ], + "x-ms-correlation-request-id": [ + "960a5f26-7b33-43c6-93dd-b0773a22004b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205106Z:960a5f26-7b33-43c6-93dd-b0773a22004b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI4NDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESTROREl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:51:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI4NDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "311aa71f-f600-4410-83df-3e38791c23b6" + ], + "x-ms-correlation-request-id": [ + "311aa71f-f600-4410-83df-3e38791c23b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205136Z:311aa71f-f600-4410-83df-3e38791c23b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI4NDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESTROREl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:52:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI4NDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-request-id": [ + "220017a2-616f-41de-a170-f3ba5b830719" + ], + "x-ms-correlation-request-id": [ + "220017a2-616f-41de-a170-f3ba5b830719" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205207Z:220017a2-616f-41de-a170-f3ba5b830719" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI4NDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESTROREl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:52:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI4NDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "7195294d-294f-48d0-b642-54a36dfe3cb3" + ], + "x-ms-correlation-request-id": [ + "7195294d-294f-48d0-b642-54a36dfe3cb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205237Z:7195294d-294f-48d0-b642-54a36dfe3cb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDI4NDItSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJESTROREl0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 20:53:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "8e55e97c-3de9-43d9-9449-4d5ae4d77133" + ], + "x-ms-correlation-request-id": [ + "8e55e97c-3de9-43d9-9449-4d5ae4d77133" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T205308Z:8e55e97c-3de9-43d9-9449-4d5ae4d77133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "sqlcrudtest-2842" + ], + "RunTestInNewV12Server": [ + "sqlcrudtest-4888" + ], + "TestImportExport": [ + "sqlcrudtest-2680", + "sqlcrudtest-6273", + "sqlcrudtest-6832", + "sqlcrudstorage466", + "sqlcrudtest-7505" + ] + }, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/UsageScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/UsageScenarioTests.cs index 5fcd750bcefc..4919727511fa 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/UsageScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/UsageScenarioTests.cs @@ -17,8 +17,8 @@ public class UsageScenarioTests public void TestGetUsageData() { string testPrefix = "sqlcrudtest-"; - string testName = this.GetType().FullName; - SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestGetUsageData", testPrefix, (resClient, sqlClient, resourceGroup, server) => + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestGetUsageData", testPrefix, (resClient, sqlClient, resourceGroup, server) => { // Get server metrics IEnumerable serverMetrics = sqlClient.Servers.ListUsages(resourceGroup.Name, server.Name); From ee16098ca70004eb68aee514fe2123f81903dc13 Mon Sep 17 00:00:00 2001 From: David Burg Date: Tue, 7 Mar 2017 14:18:55 -0800 Subject: [PATCH 082/137] Logic IA Session fix error response --- ...ntegrationAccountAgreementInMemoryTests.cs | 3 +- .../IntegrationAccountSessionInMemoryTests.cs | 17 +--- ...egrationAccountAgreements.ScenarioTests.cs | 16 ++-- ...ntegrationAccountSessions.ScenarioTests.cs | 33 +++---- .../Generated/ISessionsOperations.cs | 12 +-- .../Generated/Models/AgreementContent.cs | 6 +- .../Models/EdifactValidationOverride.cs | 18 ++-- .../Models/EdifactValidationSettings.cs | 18 ++-- .../Generated/Models/X12ValidationOverride.cs | 18 ++-- .../Generated/Models/X12ValidationSettings.cs | 18 ++-- .../Generated/SessionsOperations.cs | 89 ++++++------------- .../Generated/SessionsOperationsExtensions.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../generate.cmd | 2 +- .../project.json | 2 +- 15 files changed, 104 insertions(+), 156 deletions(-) diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs index 6f69e52a4bea..8cf42270b08a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs @@ -41,8 +41,7 @@ public void IntegrationAccountAgreement_ListByResourceGroup_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws( - () => client.Agreements.ListByIntegrationAccounts(null, "IntegrationAccount")); + Assert.Throws(() => client.Agreements.ListByIntegrationAccounts(null, "IntegrationAccount")); Assert.Throws(() => client.Agreements.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); } diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs index 20d3ef604219..bc96e38531c9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSessionInMemoryTests.cs @@ -41,7 +41,7 @@ public void IntegrationAccountSession_ListByResourceGroup_Exception() }; Assert.Throws(() => client.Sessions.ListByIntegrationAccounts(null, "IntegrationAccount")); - Assert.Throws(() => client.Sessions.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); + Assert.Throws(() => client.Sessions.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); } [Fact] @@ -77,7 +77,7 @@ public void IntegrationAccountSession_ListByResourceGroupNext_Exception() }; Assert.Throws(() => client.Sessions.ListByIntegrationAccountsNext(nextPageLink: null)); - Assert.Throws(() => client.Sessions.ListByIntegrationAccountsNext(nextPageLink: Constants.NextPageLink)); + Assert.Throws(() => client.Sessions.ListByIntegrationAccountsNext(nextPageLink: Constants.NextPageLink)); } [Fact] @@ -132,7 +132,7 @@ public void IntegrationAccountSession_CreateOrUpdate_Exception() integrationAccountName: "IntegrationAccountName", sessionName: "SessionName", session: null)); - Assert.Throws(() => client.Sessions.CreateOrUpdate( + Assert.Throws(() => client.Sessions.CreateOrUpdate( resourceGroupName: ResourceGroupName, integrationAccountName: "IntegrationAccountName", sessionName: "SessionName", @@ -193,11 +193,6 @@ public void IntegrationAccountSession_Delete_Exception() var handler = new RecordedDelegatingHandler(); var client = this.CreateIntegrationAccountClient(handler); - handler.Response = new HttpResponseMessage - { - StatusCode = HttpStatusCode.NotFound - }; - Assert.Throws(() => client.Sessions.Delete( resourceGroupName: null, integrationAccountName: "IntegrationAccountName", @@ -210,10 +205,6 @@ public void IntegrationAccountSession_Delete_Exception() resourceGroupName: ResourceGroupName, integrationAccountName: "IntegrationAccountName", sessionName: null)); - Assert.Throws(() => client.Sessions.Delete( - resourceGroupName: ResourceGroupName, - integrationAccountName: "IntegrationAccountName", - sessionName: "SessionName")); } [Fact] @@ -296,7 +287,7 @@ public void IntegrationAccountSession_Get_OK() handler.Request.ValidateAuthorizationHeader(); handler.Request.ValidateMethod(HttpMethod.Get); - this.ValidateSession(result as IntegrationAccountSession); + this.ValidateSession(result); } private void ValidateSessionList(IPage result) diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs index 3a5412e090de..041e6a0f0e45 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs @@ -502,8 +502,8 @@ private AgreementContent X12AgreementContent InterchangeControlNumberValidityDays = 30, CheckDuplicateGroupControlNumber = false, CheckDuplicateTransactionSetControlNumber = false, - ValidateEDITypes = true, - ValidateXSDTypes = false, + ValidateEdiTypes = true, + ValidateXsdTypes = false, AllowLeadingAndTrailingSpacesAndZeroes = false, TrimLeadingAndTrailingSpacesAndZeroes = false, TrailingSeparatorPolicy = TrailingSeparatorPolicy.NotAllowed @@ -603,8 +603,8 @@ private AgreementContent X12AgreementContent InterchangeControlNumberValidityDays = 30, CheckDuplicateGroupControlNumber = false, CheckDuplicateTransactionSetControlNumber = false, - ValidateEDITypes = true, - ValidateXSDTypes = false, + ValidateEdiTypes = true, + ValidateXsdTypes = false, AllowLeadingAndTrailingSpacesAndZeroes = false, TrimLeadingAndTrailingSpacesAndZeroes = false, TrailingSeparatorPolicy = TrailingSeparatorPolicy.NotAllowed @@ -748,8 +748,8 @@ private AgreementContent EDIFACTAgreementContent InterchangeControlNumberValidityDays = 30, TrailingSeparatorPolicy = TrailingSeparatorPolicy.Optional, TrimLeadingAndTrailingSpacesAndZeroes = true, - ValidateEDITypes = true, - ValidateXSDTypes = true + ValidateEdiTypes = true, + ValidateXsdTypes = true }, SchemaReferences = new EdifactSchemaReference[0] @@ -861,8 +861,8 @@ private AgreementContent EDIFACTAgreementContent InterchangeControlNumberValidityDays = 30, TrailingSeparatorPolicy = TrailingSeparatorPolicy.Optional, TrimLeadingAndTrailingSpacesAndZeroes = true, - ValidateEDITypes = true, - ValidateXSDTypes = true + ValidateEdiTypes = true, + ValidateXsdTypes = true }, SchemaReferences = new EdifactSchemaReference[0] diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs index 10e11d78b23f..f967a5a87de7 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSessions.ScenarioTests.cs @@ -49,7 +49,7 @@ public void CreateAndDeleteIntegrationAccountSession() var getSession = client.Sessions.Get( resourceGroupName: Constants.DefaultResourceGroup, integrationAccountName: integrationAccountName, - sessionName: integrationAccountSessionName) as IntegrationAccountSession; + sessionName: integrationAccountSessionName); Assert.Equal(expected: integrationAccountSessionName, actual: getSession.Name); Assert.Equal(expected: "256", actual: getSession.Content); @@ -66,15 +66,12 @@ public void CreateAndDeleteIntegrationAccountSession() integrationAccountName: integrationAccountName, sessionName: integrationAccountSessionName); - // Getting an absent record should not throw, RP returns 404 and error response - var errorResponse = client.Sessions.Get( - resourceGroupName: Constants.DefaultResourceGroup, - integrationAccountName: integrationAccountName, - sessionName: integrationAccountSessionName) as ErrorResponse; - Assert.NotNull(errorResponse); - Assert.NotNull(errorResponse.Error); - Assert.Equal(expected: "SessionNotFound", actual: errorResponse.Error.Code); - Assert.Contains(expectedSubstring: "could not be found in integration account", actualString: errorResponse.Error.Message); + // Getting an absent record should throw, RP returns 404 and error response + Assert.Throws(() => client.Sessions + .Get( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName)); // Clean-up the integration account. client.IntegrationAccounts.Delete( @@ -161,7 +158,7 @@ public void CreateAndGetIntegrationAccountSession() var getSession = client.Sessions.Get( resourceGroupName: Constants.DefaultResourceGroup, integrationAccountName: integrationAccountName, - sessionName: integrationAccountSessionName) as IntegrationAccountSession; + sessionName: integrationAccountSessionName); Assert.Equal(session.Name, getSession.Name); Assert.Equal(session.Content, "256"); @@ -259,15 +256,11 @@ public void DeleteIntegrationAccountSessionOnAccountDeletion() client.IntegrationAccounts.Delete( resourceGroupName: Constants.DefaultResourceGroup, integrationAccountName: integrationAccountName); - var errorResponse = client.Sessions - .Get( - resourceGroupName: Constants.DefaultResourceGroup, - integrationAccountName: integrationAccountName, - sessionName: integrationAccountSessionName) as ErrorResponse; - Assert.NotNull(errorResponse); - Assert.NotNull(errorResponse.Error); - Assert.Equal(expected: "ResourceNotFound", actual: errorResponse.Error.Code); - Assert.Contains(expectedSubstring: "under resource group 'flowrg' was not found.", actualString: errorResponse.Error.Message); + Assert.Throws(() => client.Sessions + .Get( + resourceGroupName: Constants.DefaultResourceGroup, + integrationAccountName: integrationAccountName, + sessionName: integrationAccountSessionName)); } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs index ce7c615d3536..19dadee3d97e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISessionsOperations.cs @@ -42,7 +42,7 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -70,7 +70,7 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -79,7 +79,7 @@ public partial interface ISessionsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates or updates an integration account session. /// @@ -101,7 +101,7 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -129,7 +129,7 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -148,7 +148,7 @@ public partial interface ISessionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs index 3c5851fac054..16e468d5f807 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs @@ -40,19 +40,19 @@ public AgreementContent() { } /// /// Gets or sets the AS2 agreement content. /// - [JsonProperty(PropertyName = "AS2")] + [JsonProperty(PropertyName = "aS2")] public AS2AgreementContent AS2 { get; set; } /// /// Gets or sets the X12 agreement content. /// - [JsonProperty(PropertyName = "X12")] + [JsonProperty(PropertyName = "x12")] public X12AgreementContent X12 { get; set; } /// /// Gets or sets the EDIFACT agreement content. /// - [JsonProperty(PropertyName = "Edifact")] + [JsonProperty(PropertyName = "edifact")] public EdifactAgreementContent Edifact { get; set; } /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs index 6797a6b022a2..e2dbc3e7898c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs @@ -32,9 +32,9 @@ public EdifactValidationOverride() { } /// settings has to be applied. /// The value indicating whether to /// validate character Set. - /// The value indicating whether to + /// The value indicating whether to /// validate EDI types. - /// The value indicating whether to + /// The value indicating whether to /// validate XSD types. /// The value /// indicating whether to allow leading and trailing spaces and @@ -45,12 +45,12 @@ public EdifactValidationOverride() { } /// The value /// indicating whether to trim leading and trailing spaces and /// zeroes. - public EdifactValidationOverride(string messageId, bool enforceCharacterSet, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy, bool trimLeadingAndTrailingSpacesAndZeroes) + public EdifactValidationOverride(string messageId, bool enforceCharacterSet, bool validateEdiTypes, bool validateXsdTypes, bool allowLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy, bool trimLeadingAndTrailingSpacesAndZeroes) { MessageId = messageId; EnforceCharacterSet = enforceCharacterSet; - ValidateEDITypes = validateEDITypes; - ValidateXSDTypes = validateXSDTypes; + ValidateEdiTypes = validateEdiTypes; + ValidateXsdTypes = validateXsdTypes; AllowLeadingAndTrailingSpacesAndZeroes = allowLeadingAndTrailingSpacesAndZeroes; TrailingSeparatorPolicy = trailingSeparatorPolicy; TrimLeadingAndTrailingSpacesAndZeroes = trimLeadingAndTrailingSpacesAndZeroes; @@ -73,14 +73,14 @@ public EdifactValidationOverride(string messageId, bool enforceCharacterSet, boo /// /// Gets or sets the value indicating whether to validate EDI types. /// - [JsonProperty(PropertyName = "validateEDITypes")] - public bool ValidateEDITypes { get; set; } + [JsonProperty(PropertyName = "validateEdiTypes")] + public bool ValidateEdiTypes { get; set; } /// /// Gets or sets the value indicating whether to validate XSD types. /// - [JsonProperty(PropertyName = "validateXSDTypes")] - public bool ValidateXSDTypes { get; set; } + [JsonProperty(PropertyName = "validateXsdTypes")] + public bool ValidateXsdTypes { get; set; } /// /// Gets or sets the value indicating whether to allow leading and diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs index f0c7cae9e56b..df872552502e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs @@ -39,9 +39,9 @@ public EdifactValidationSettings() { } /// The value /// indicating whether to check for duplicate transaction set control /// number. - /// The value indicating whether to + /// The value indicating whether to /// Whether to validate EDI types. - /// The value indicating whether to + /// The value indicating whether to /// Whether to validate XSD types. /// The value /// indicating whether to allow leading and trailing spaces and @@ -52,15 +52,15 @@ public EdifactValidationSettings() { } /// The trailing separator /// policy. Possible values include: 'NotSpecified', 'NotAllowed', /// 'Optional', 'Mandatory' - public EdifactValidationSettings(bool validateCharacterSet, bool checkDuplicateInterchangeControlNumber, int interchangeControlNumberValidityDays, bool checkDuplicateGroupControlNumber, bool checkDuplicateTransactionSetControlNumber, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) + public EdifactValidationSettings(bool validateCharacterSet, bool checkDuplicateInterchangeControlNumber, int interchangeControlNumberValidityDays, bool checkDuplicateGroupControlNumber, bool checkDuplicateTransactionSetControlNumber, bool validateEdiTypes, bool validateXsdTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { ValidateCharacterSet = validateCharacterSet; CheckDuplicateInterchangeControlNumber = checkDuplicateInterchangeControlNumber; InterchangeControlNumberValidityDays = interchangeControlNumberValidityDays; CheckDuplicateGroupControlNumber = checkDuplicateGroupControlNumber; CheckDuplicateTransactionSetControlNumber = checkDuplicateTransactionSetControlNumber; - ValidateEDITypes = validateEDITypes; - ValidateXSDTypes = validateXSDTypes; + ValidateEdiTypes = validateEdiTypes; + ValidateXsdTypes = validateXsdTypes; AllowLeadingAndTrailingSpacesAndZeroes = allowLeadingAndTrailingSpacesAndZeroes; TrimLeadingAndTrailingSpacesAndZeroes = trimLeadingAndTrailingSpacesAndZeroes; TrailingSeparatorPolicy = trailingSeparatorPolicy; @@ -104,15 +104,15 @@ public EdifactValidationSettings(bool validateCharacterSet, bool checkDuplicateI /// Gets or sets the value indicating whether to Whether to validate /// EDI types. /// - [JsonProperty(PropertyName = "validateEDITypes")] - public bool ValidateEDITypes { get; set; } + [JsonProperty(PropertyName = "validateEdiTypes")] + public bool ValidateEdiTypes { get; set; } /// /// Gets or sets the value indicating whether to Whether to validate /// XSD types. /// - [JsonProperty(PropertyName = "validateXSDTypes")] - public bool ValidateXSDTypes { get; set; } + [JsonProperty(PropertyName = "validateXsdTypes")] + public bool ValidateXsdTypes { get; set; } /// /// Gets or sets the value indicating whether to allow leading and diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs index 2922835dbee2..ccb0398c0901 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs @@ -30,9 +30,9 @@ public X12ValidationOverride() { } /// /// The message id on which the validation /// settings has to be applied. - /// The value indicating whether to + /// The value indicating whether to /// validate EDI types. - /// The value indicating whether to + /// The value indicating whether to /// validate XSD types. /// The value /// indicating whether to allow leading and trailing spaces and @@ -45,11 +45,11 @@ public X12ValidationOverride() { } /// The trailing separator /// policy. Possible values include: 'NotSpecified', 'NotAllowed', /// 'Optional', 'Mandatory' - public X12ValidationOverride(string messageId, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool validateCharacterSet, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) + public X12ValidationOverride(string messageId, bool validateEdiTypes, bool validateXsdTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool validateCharacterSet, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { MessageId = messageId; - ValidateEDITypes = validateEDITypes; - ValidateXSDTypes = validateXSDTypes; + ValidateEdiTypes = validateEdiTypes; + ValidateXsdTypes = validateXsdTypes; AllowLeadingAndTrailingSpacesAndZeroes = allowLeadingAndTrailingSpacesAndZeroes; ValidateCharacterSet = validateCharacterSet; TrimLeadingAndTrailingSpacesAndZeroes = trimLeadingAndTrailingSpacesAndZeroes; @@ -66,14 +66,14 @@ public X12ValidationOverride(string messageId, bool validateEDITypes, bool valid /// /// Gets or sets the value indicating whether to validate EDI types. /// - [JsonProperty(PropertyName = "validateEDITypes")] - public bool ValidateEDITypes { get; set; } + [JsonProperty(PropertyName = "validateEdiTypes")] + public bool ValidateEdiTypes { get; set; } /// /// Gets or sets the value indicating whether to validate XSD types. /// - [JsonProperty(PropertyName = "validateXSDTypes")] - public bool ValidateXSDTypes { get; set; } + [JsonProperty(PropertyName = "validateXsdTypes")] + public bool ValidateXsdTypes { get; set; } /// /// Gets or sets the value indicating whether to allow leading and diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs index cdcc6f39a0a6..8dd76566d974 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs @@ -39,9 +39,9 @@ public X12ValidationSettings() { } /// The value /// indicating whether to check for duplicate transaction set control /// number. - /// The value indicating whether to + /// The value indicating whether to /// Whether to validate EDI types. - /// The value indicating whether to + /// The value indicating whether to /// Whether to validate XSD types. /// The value /// indicating whether to allow leading and trailing spaces and @@ -52,15 +52,15 @@ public X12ValidationSettings() { } /// The trailing separator /// policy. Possible values include: 'NotSpecified', 'NotAllowed', /// 'Optional', 'Mandatory' - public X12ValidationSettings(bool validateCharacterSet, bool checkDuplicateInterchangeControlNumber, int interchangeControlNumberValidityDays, bool checkDuplicateGroupControlNumber, bool checkDuplicateTransactionSetControlNumber, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) + public X12ValidationSettings(bool validateCharacterSet, bool checkDuplicateInterchangeControlNumber, int interchangeControlNumberValidityDays, bool checkDuplicateGroupControlNumber, bool checkDuplicateTransactionSetControlNumber, bool validateEdiTypes, bool validateXsdTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { ValidateCharacterSet = validateCharacterSet; CheckDuplicateInterchangeControlNumber = checkDuplicateInterchangeControlNumber; InterchangeControlNumberValidityDays = interchangeControlNumberValidityDays; CheckDuplicateGroupControlNumber = checkDuplicateGroupControlNumber; CheckDuplicateTransactionSetControlNumber = checkDuplicateTransactionSetControlNumber; - ValidateEDITypes = validateEDITypes; - ValidateXSDTypes = validateXSDTypes; + ValidateEdiTypes = validateEdiTypes; + ValidateXsdTypes = validateXsdTypes; AllowLeadingAndTrailingSpacesAndZeroes = allowLeadingAndTrailingSpacesAndZeroes; TrimLeadingAndTrailingSpacesAndZeroes = trimLeadingAndTrailingSpacesAndZeroes; TrailingSeparatorPolicy = trailingSeparatorPolicy; @@ -104,15 +104,15 @@ public X12ValidationSettings(bool validateCharacterSet, bool checkDuplicateInter /// Gets or sets the value indicating whether to Whether to validate /// EDI types. /// - [JsonProperty(PropertyName = "validateEDITypes")] - public bool ValidateEDITypes { get; set; } + [JsonProperty(PropertyName = "validateEdiTypes")] + public bool ValidateEdiTypes { get; set; } /// /// Gets or sets the value indicating whether to Whether to validate /// XSD types. /// - [JsonProperty(PropertyName = "validateXSDTypes")] - public bool ValidateXSDTypes { get; set; } + [JsonProperty(PropertyName = "validateXsdTypes")] + public bool ValidateXsdTypes { get; set; } /// /// Gets or sets the value indicating whether to allow leading and diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs index cdd94dbec340..e2dbd70c67db 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperations.cs @@ -69,7 +69,7 @@ internal SessionsOperations(LogicManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -194,14 +194,13 @@ internal SessionsOperations(LogicManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -211,10 +210,6 @@ internal SessionsOperations(LogicManagementClient client) } 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); @@ -277,7 +272,7 @@ internal SessionsOperations(LogicManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -292,7 +287,7 @@ internal SessionsOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string sessionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -397,16 +392,15 @@ internal SessionsOperations(LogicManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -416,10 +410,6 @@ internal SessionsOperations(LogicManagementClient client) } 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); @@ -432,7 +422,7 @@ internal SessionsOperations(LogicManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -457,24 +447,6 @@ internal SessionsOperations(LogicManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 404) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -503,7 +475,7 @@ internal SessionsOperations(LogicManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -636,14 +608,13 @@ internal SessionsOperations(LogicManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -653,10 +624,6 @@ internal SessionsOperations(LogicManagementClient client) } 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); @@ -737,7 +704,7 @@ internal SessionsOperations(LogicManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -856,19 +823,22 @@ internal SessionsOperations(LogicManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + 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); @@ -907,7 +877,7 @@ internal SessionsOperations(LogicManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1003,14 +973,13 @@ internal SessionsOperations(LogicManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1020,10 +989,6 @@ internal SessionsOperations(LogicManagementClient client) } 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); diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs index fc40e1f7991a..ac828ee38ef4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SessionsOperationsExtensions.cs @@ -83,7 +83,7 @@ public static partial class SessionsOperationsExtensions /// /// The integration account session name. /// - public static object Get(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) + public static IntegrationAccountSession Get(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName) { return operations.GetAsync(resourceGroupName, integrationAccountName, sessionName).GetAwaiter().GetResult(); } @@ -106,7 +106,7 @@ public static object Get(this ISessionsOperations operations, string resourceGro /// /// The cancellation token. /// - public static async Task GetAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ISessionsOperations operations, string resourceGroupName, string integrationAccountName, string sessionName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, sessionName, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs index a2825861616c..bc9be976df61 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs @@ -10,8 +10,8 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] -[assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyVersion("3.0.0.0")] +[assembly: AssemblyFileVersion("3.0.0.0")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd index 1cb30ff6f511..39e6266a25f8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd @@ -6,7 +6,7 @@ @echo off set autoRestVersion=1.0.0-Nightly20170212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/84cf0b641e5fdc7dc88c209d79f60056a1dc863a/arm-logic/2016-06-01/swagger/logic.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/63df6aadf9c9d2d3e38617d67e86cb3373a97148/arm-logic/2016-06-01/swagger/logic.json" ) else ( set specFile="%1" ) diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json index d8d115627e5a..1a9bba9e3bb0 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0", + "version": "3.0.0", "description": "Microsoft Azure LogicApps Management Library", "authors": [ "Microsoft" ], From d5fa8ffb2f3dc87fe109057902259a481257fdf3 Mon Sep 17 00:00:00 2001 From: matthchr Date: Tue, 7 Mar 2017 10:03:28 -0800 Subject: [PATCH 083/137] Fix issue with Batch Account update - KeyVaultReference and PoolAllocationMode are not updatable - Update changelog - Update RegenerateBatch.cmd to be generate.cmd --- .../Models/BatchAccountUpdateParameters.cs | 34 +------------------ .../Properties/AssemblyInfo.cs | 2 +- .../project.json | 2 +- .../Batch/RegenerateBatch.cmd | 5 --- src/ResourceManagement/Batch/changelog.md | 5 ++- src/ResourceManagement/Batch/generate.cmd | 22 ++++++++++++ 6 files changed, 29 insertions(+), 41 deletions(-) delete mode 100644 src/ResourceManagement/Batch/RegenerateBatch.cmd create mode 100644 src/ResourceManagement/Batch/generate.cmd diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Generated/Models/BatchAccountUpdateParameters.cs b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Generated/Models/BatchAccountUpdateParameters.cs index d29b591de572..32b16fe1b3ac 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Generated/Models/BatchAccountUpdateParameters.cs +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Generated/Models/BatchAccountUpdateParameters.cs @@ -38,16 +38,10 @@ public BatchAccountUpdateParameters() { } /// account. /// The properties related to auto storage /// account. - /// The allocation mode to use for - /// creating pools in the Batch account. - /// A reference to the Azure key vault - /// associated with the Batch account. - public BatchAccountUpdateParameters(IDictionary tags = default(IDictionary), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties), PoolAllocationMode? poolAllocationMode = default(PoolAllocationMode?), KeyVaultReference keyVaultReference = default(KeyVaultReference)) + public BatchAccountUpdateParameters(IDictionary tags = default(IDictionary), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties)) { Tags = tags; AutoStorage = autoStorage; - PoolAllocationMode = poolAllocationMode; - KeyVaultReference = keyVaultReference; } /// @@ -62,28 +56,6 @@ public BatchAccountUpdateParameters() { } [JsonProperty(PropertyName = "properties.autoStorage")] public AutoStorageBaseProperties AutoStorage { get; set; } - /// - /// Gets or sets the allocation mode to use for creating pools in the - /// Batch account. - /// - /// - /// The pool allocation mode also affects how clients may authenticate - /// to the Batch Service API. If the mode is BatchService, clients may - /// authenticate using access keys or Azure Active Directory. If the - /// mode is UserSubscription, clients must use Azure Active Directory. - /// The default is BatchService. Possible values include: - /// 'BatchService', 'UserSubscription' - /// - [JsonProperty(PropertyName = "properties.poolAllocationMode")] - public PoolAllocationMode? PoolAllocationMode { get; set; } - - /// - /// Gets or sets a reference to the Azure key vault associated with the - /// Batch account. - /// - [JsonProperty(PropertyName = "properties.keyVaultReference")] - public KeyVaultReference KeyVaultReference { get; set; } - /// /// Validate the object. /// @@ -96,10 +68,6 @@ public virtual void Validate() { AutoStorage.Validate(); } - if (KeyVaultReference != null) - { - KeyVaultReference.Validate(); - } } } } diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Properties/AssemblyInfo.cs b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Properties/AssemblyInfo.cs index 0c5b74e63aaa..0e6fc18bc7c3 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides management functions for Microsoft Azure Batch services.")] [assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.1.0.0")] +[assembly: AssemblyFileVersion("4.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json index 20a4466f638e..dd5ecbeacfb2 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json @@ -1,5 +1,5 @@ { - "version": "4.1.0", + "version": "4.2.0", "title": "Microsoft Azure Batch Management Library", "description": "Provides management capabilities for Azure Batch service accounts.", "authors": [ "Microsoft" ], diff --git a/src/ResourceManagement/Batch/RegenerateBatch.cmd b/src/ResourceManagement/Batch/RegenerateBatch.cmd deleted file mode 100644 index 35c8a9b816eb..000000000000 --- a/src/ResourceManagement/Batch/RegenerateBatch.cmd +++ /dev/null @@ -1,5 +0,0 @@ -setlocal - -..\..\..\tools\autorest.gen.cmd %1 Microsoft.Azure.Management.Batch 1.0.0-Nightly20170129 ./Microsoft.Azure.Management.Batch/Generated MICROSOFT_MIT_NO_VERSION "-ft 1" - -endlocal \ No newline at end of file diff --git a/src/ResourceManagement/Batch/changelog.md b/src/ResourceManagement/Batch/changelog.md index ad1d6e5e7742..306d33889aa4 100644 --- a/src/ResourceManagement/Batch/changelog.md +++ b/src/ResourceManagement/Batch/changelog.md @@ -1,10 +1,13 @@ ## Microsoft.Azure.Management.Batch release notes -### Changes in 4.0.0 +### Changes in 4.2.0 - Added option to create a Batch account which allocates pool nodes in the user's subscription. This is done with `PoolAllocationMode = UserSubscription`. When using this mode, a `KeyVaultReference` must also be supplied. - Changed classes which appear only in responses to be immutable. - This version targets REST API version 2017-01-01. +### Changes in 4.1.0 +- This package version had an issue and was unlisted on NuGet immediately after shipping. This version **should not be used**. + ### Changes in 3.0.0 - Renamed `AccountResource` to `BatchAccount`. - Renamed `AccountOperations` to `BatchAccountOperations`. The `IBatchManagementClient.Account` property was also renamed to `IBatchManagementClient.BatchAccount`. diff --git a/src/ResourceManagement/Batch/generate.cmd b/src/ResourceManagement/Batch/generate.cmd new file mode 100644 index 000000000000..2dc1723d2099 --- /dev/null +++ b/src/ResourceManagement/Batch/generate.cmd @@ -0,0 +1,22 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: +setlocal +@echo off +set autoRestVersion=1.0.0-Nightly20170129 + +if "%1" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/4a42ab54af9ff7c733567a0ed7ea4da767e3b337/arm-batch/2017-01-01/swagger/BatchManagement.json" +) else ( + set specFile="%1" +) + +set repoRoot=%~dp0..\..\.. +set generateFolder=%~dp0Microsoft.Azure.Management.Batch\Generated + +if exist %generateFolder% rd /S /Q %generateFolder% + +call "%repoRoot%\tools\autorest.gen.cmd" %specFile% Microsoft.Azure.Management.Batch %autoRestVersion% %generateFolder% MICROSOFT_MIT_NO_VERSION "-ft 1" + +endlocal \ No newline at end of file From 6f30d3dbe2931d0e7d166daa995843141fa9c54b Mon Sep 17 00:00:00 2001 From: Nathan Fan Date: Wed, 8 Mar 2017 15:53:40 -0800 Subject: [PATCH 084/137] Updated version number, generate.cmd json reference --- .../Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs | 2 +- .../SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd | 2 +- .../SqlManagement/Microsoft.Azure.Management.Sql/project.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs index cda3cab82e86..49fe5852abb4 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Properties/AssemblyInfo.cs @@ -22,7 +22,7 @@ [assembly: AssemblyTitle("Microsoft Azure SQL Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure SQL.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.2.0.0")] diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd index 355fe2d814a0..ea5429eb4475 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd @@ -6,7 +6,7 @@ @echo off set autoRestVersion=1.0.0-Nightly20161212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-sql/compositeSql.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/b379c30fcb506b1bd643f6085b4bf318b8164b16/arm-sql/compositeSql.json" ) else ( set specFile="%1" ) diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json index 70bed11d0825..ea76ed113cfe 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json @@ -1,5 +1,5 @@ { - "version": "1.1.0-preview", + "version": "1.2.0-preview", "authors": [ "Microsoft" ], "packOptions": { From b3a8b0c4b00b058a9c6e6ff7e7a4e0106ced98a3 Mon Sep 17 00:00:00 2001 From: Abhijeet Date: Wed, 8 Mar 2017 16:51:51 -0800 Subject: [PATCH 085/137] Update README.md Updating link to .NET Core preview 2 tools --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6776f248c03c..e6c6b75f427c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ that take advantage of scalable cloud computing resources. * Netstandard 1.5, based on the NetCore framework ### Prerequisites: - Install .Net CoreCLR using [these steps](https://www.microsoft.com/net/core). + Install .Net CoreCLR Preview 2 using [these steps](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0-preview2-download.md). ### To build: @@ -126,4 +126,4 @@ Regarding the test project, one thing that's important is to name the test proje Much of the SDK code is generated from metadata specs about the REST APIs. Do not submit PRs that modify generated code. Instead, - File an issue describing the problem, - Refer to the the [AutoRest project](https://github.com/azure/autorest) to view and modify the generator, or - - Add additional methods, properties, and overloads to the SDK by adding classes in the 'Customizations' folder of a project \ No newline at end of file + - Add additional methods, properties, and overloads to the SDK by adding classes in the 'Customizations' folder of a project From a5e049f988cbd36682ec7581a340f374d9f18258 Mon Sep 17 00:00:00 2001 From: matthchr Date: Fri, 10 Mar 2017 14:21:45 -0800 Subject: [PATCH 086/137] Update Azure.Batch to MIT license. - Also updated readme.md and changelog.md in preparation for this to be released. - Includes update to the nuget package license as well. --- src/Batch/Client/README.md | 3 +++ src/Batch/Client/RegenerateBatch.cmd | 5 ----- .../AddTaskCollectionResultHandler.cs | 15 ++----------- .../Client/Src/Azure.Batch/AddTaskResult.cs | 15 ++----------- .../Azure.Batch/AddTasksWorkflowManager.cs | 15 ++----------- .../Src/Azure.Batch/ApplicationOperations.cs | 15 ++----------- .../Src/Azure.Batch/AssemblyAttributes.cs | 15 ++----------- .../AsyncApplicationSummariesEnumerator.cs | 15 ++----------- .../Src/Azure.Batch/AsyncListCertificates.cs | 15 ++----------- .../Src/Azure.Batch/AsyncListComputeNodes.cs | 15 ++----------- .../AsyncListJobPrepReleaseTaskStatus.cs | 15 ++----------- .../Src/Azure.Batch/AsyncListJobSchedules.cs | 15 ++----------- .../Client/Src/Azure.Batch/AsyncListJobs.cs | 15 ++----------- .../Src/Azure.Batch/AsyncListNodeAgentSkus.cs | 15 ++----------- .../Src/Azure.Batch/AsyncListNodeFiles.cs | 15 ++----------- .../Azure.Batch/AsyncListPoolUsageMetrics.cs | 15 ++----------- .../Client/Src/Azure.Batch/AsyncListPools.cs | 15 ++----------- .../Src/Azure.Batch/AsyncListSubtasks.cs | 15 ++----------- .../Src/Azure.Batch/AsyncListTaskFiles.cs | 15 ++----------- .../Client/Src/Azure.Batch/AsyncListTasks.cs | 15 ++----------- .../Auth/BatchSharedKeyCredentials.cs | 15 ++----------- .../Azure.Batch/Auth/BatchTokenCredentials.cs | 15 ++----------- .../Client/Src/Azure.Batch/Authorization.cs | 15 ++----------- .../Client/Src/Azure.Batch/BatchClient.cs | 15 ++----------- .../Src/Azure.Batch/BatchClientBehaviors.cs | 15 ++----------- .../Src/Azure.Batch/BatchClientExceptions.cs | 15 ++----------- .../Azure.Batch/BatchClientParallelOptions.cs | 15 ++----------- .../Src/Azure.Batch/BatchRequestTimeout.cs | 15 ++----------- .../Client/Src/Azure.Batch/BehaviorManager.cs | 15 ++----------- .../Client/Src/Azure.Batch/BindingState.cs | 15 ++----------- .../Client/Src/Azure.Batch/Certificate.cs | 15 ++----------- .../Src/Azure.Batch/CertificateOperations.cs | 15 ++----------- .../Src/Azure.Batch/CertificateReference.cs | 15 ++----------- .../Azure.Batch/ClientRequestIdProvider.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/CloudJob.cs | 15 ++----------- .../Src/Azure.Batch/CloudJobSchedule.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/CloudPool.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/CloudTask.cs | 15 ++----------- .../Common/BatchErrorCodeStrings.cs | 15 ++----------- .../Src/Azure.Batch/Common/BatchException.cs | 15 ++----------- .../Common/Enumerations/AccessScope.cs | 15 ++----------- .../Common/Enumerations/AddTaskStatus.cs | 15 ++----------- .../Common/Enumerations/AllocationState.cs | 15 ++----------- .../Common/Enumerations/AutoUserScope.cs | 15 ++----------- .../Common/Enumerations/CachingType.cs | 15 ++----------- .../Common/Enumerations/CertStoreLocation.cs | 15 ++----------- .../Common/Enumerations/CertificateFormat.cs | 15 ++----------- .../Common/Enumerations/CertificateState.cs | 15 ++----------- .../Enumerations/CertificateVisibility.cs | 15 ++----------- .../ComputeNodeDeallocationOption.cs | 15 ++----------- .../Enumerations/ComputeNodeFillType.cs | 15 ++----------- .../Enumerations/ComputeNodeRebootOption.cs | 15 ++----------- .../Enumerations/ComputeNodeReimageOption.cs | 15 ++----------- .../Common/Enumerations/ComputeNodeState.cs | 15 ++----------- .../Common/Enumerations/DependencyAction.cs | 15 ++----------- .../DisableComputeNodeSchedulingOption.cs | 15 ++----------- .../Common/Enumerations/DisableJobOption.cs | 15 ++----------- .../Common/Enumerations/ElevationLevel.cs | 15 ++----------- .../Common/Enumerations/JobAction.cs | 15 ++----------- .../Enumerations/JobPreparationTaskState.cs | 15 ++----------- .../Enumerations/JobReleaseTaskState.cs | 15 ++----------- .../Common/Enumerations/JobScheduleState.cs | 15 ++----------- .../Common/Enumerations/JobState.cs | 15 ++----------- .../Azure.Batch/Common/Enumerations/OSType.cs | 15 ++----------- .../Common/Enumerations/OnAllTasksComplete.cs | 15 ++----------- .../Common/Enumerations/OnTaskFailure.cs | 15 ++----------- .../Common/Enumerations/PoolLifetimeOption.cs | 15 ++----------- .../Common/Enumerations/PoolState.cs | 15 ++----------- .../Enumerations/SchedulingErrorCategory.cs | 15 ++----------- .../Common/Enumerations/SchedulingState.cs | 15 ++----------- .../Common/Enumerations/StartTaskState.cs | 15 ++----------- .../Common/Enumerations/SubtaskState.cs | 15 ++----------- .../Common/Enumerations/TaskState.cs | 15 ++----------- .../Azure.Batch/Common/ExponentialRetry.cs | 15 ++----------- .../Src/Azure.Batch/Common/IRetryPolicy.cs | 15 ++----------- .../Src/Azure.Batch/Common/LinearRetry.cs | 15 ++----------- .../Client/Src/Azure.Batch/Common/NoRetry.cs | 15 ++----------- .../Azure.Batch/Common/OperationContext.cs | 15 ++----------- .../Azure.Batch/Common/RequestInformation.cs | 15 ++----------- .../Src/Azure.Batch/Common/RequestResult.cs | 15 ++----------- .../Src/Azure.Batch/Common/RetryDecision.cs | 15 ++----------- .../Azure.Batch/Common/RetryPolicyCommon.cs | 15 ++----------- .../Client/Src/Azure.Batch/ComputeNode.cs | 15 ++----------- .../Client/Src/Azure.Batch/ComputeNodeFile.cs | 15 ++----------- .../Client/Src/Azure.Batch/ComputeNodeUser.cs | 15 ++----------- .../ConcurrentChangeTrackedList.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/Constants.cs | 15 ++----------- .../Client/Src/Azure.Batch/DetailLevel.cs | 15 ++----------- .../Src/Azure.Batch/FileStaging/Constants.cs | 15 ++----------- .../FileStaging/FileStagingUtils.cs | 15 ++----------- .../FileStaging/IFileStagingProvider.cs | 15 ++----------- .../Azure.Batch/Generated/AddTaskResult.cs | 15 ++----------- .../Generated/AffinityInformation.cs | 15 ++----------- .../Generated/ApplicationPackageReference.cs | 15 ++----------- .../Generated/ApplicationSummary.cs | 15 ++----------- .../Generated/AuthenticationTokenSettings.cs | 15 ++----------- .../Generated/AutoPoolSpecification.cs | 15 ++----------- .../Src/Azure.Batch/Generated/AutoScaleRun.cs | 15 ++----------- .../Generated/AutoScaleRunError.cs | 15 ++----------- .../Generated/AutoUserSpecification.cs | 15 ++----------- .../Src/Azure.Batch/Generated/BatchError.cs | 15 ++----------- .../Azure.Batch/Generated/BatchErrorDetail.cs | 15 ++----------- .../Src/Azure.Batch/Generated/Certificate.cs | 15 ++----------- .../Generated/CertificateReference.cs | 15 ++----------- .../Src/Azure.Batch/Generated/CloudJob.cs | 15 ++----------- .../Azure.Batch/Generated/CloudJobSchedule.cs | 15 ++----------- .../Src/Azure.Batch/Generated/CloudPool.cs | 15 ++----------- .../Generated/CloudServiceConfiguration.cs | 15 ++----------- .../Src/Azure.Batch/Generated/CloudTask.cs | 15 ++----------- .../Src/Azure.Batch/Generated/ComputeNode.cs | 15 ++----------- .../Azure.Batch/Generated/ComputeNodeError.cs | 15 ++----------- .../Generated/ComputeNodeInformation.cs | 15 ++----------- .../Azure.Batch/Generated/ComputeNodeUser.cs | 15 ++----------- .../Generated/DeleteCertificateError.cs | 15 ++----------- .../Generated/EnvironmentSetting.cs | 15 ++----------- .../Src/Azure.Batch/Generated/ErrorMessage.cs | 15 ++----------- .../Azure.Batch/Generated/ExitCodeMapping.cs | 15 ++----------- .../Generated/ExitCodeRangeMapping.cs | 15 ++----------- .../Azure.Batch/Generated/ExitConditions.cs | 15 ++----------- .../Src/Azure.Batch/Generated/ExitOptions.cs | 15 ++----------- .../Azure.Batch/Generated/FileProperties.cs | 15 ++----------- .../Azure.Batch/Generated/ImageReference.cs | 15 ++----------- .../Azure.Batch/Generated/JobConstraints.cs | 15 ++----------- .../Generated/JobExecutionInformation.cs | 15 ++----------- .../Azure.Batch/Generated/JobManagerTask.cs | 15 ++----------- ...ationAndReleaseTaskExecutionInformation.cs | 15 ++----------- .../Generated/JobPreparationTask.cs | 15 ++----------- .../JobPreparationTaskExecutionInformation.cs | 15 ++----------- .../Azure.Batch/Generated/JobReleaseTask.cs | 15 ++----------- .../JobReleaseTaskExecutionInformation.cs | 15 ++----------- .../JobScheduleExecutionInformation.cs | 15 ++----------- .../Generated/JobScheduleStatistics.cs | 15 ++----------- .../Generated/JobSchedulingError.cs | 15 ++----------- .../Azure.Batch/Generated/JobSpecification.cs | 15 ++----------- .../Azure.Batch/Generated/JobStatistics.cs | 15 ++----------- .../Src/Azure.Batch/Generated/MetadataItem.cs | 15 ++----------- .../Generated/MultiInstanceSettings.cs | 15 ++----------- .../Azure.Batch/Generated/NameValuePair.cs | 15 ++----------- .../Generated/NetworkConfiguration.cs | 15 ++----------- .../Src/Azure.Batch/Generated/NodeAgentSku.cs | 15 ++----------- .../Src/Azure.Batch/Generated/OSDisk.cs | 15 ++----------- .../Azure.Batch/Generated/PoolInformation.cs | 15 ++----------- .../Generated/PoolSpecification.cs | 15 ++----------- .../Azure.Batch/Generated/PoolStatistics.cs | 15 ++----------- .../Azure.Batch/Generated/PoolUsageMetrics.cs | 15 ++----------- .../Src/Azure.Batch/Generated/RecentJob.cs | 15 ++----------- .../Generated/RemoteLoginSettings.cs | 15 ++----------- .../Src/Azure.Batch/Generated/ResizeError.cs | 15 ++----------- .../Src/Azure.Batch/Generated/ResourceFile.cs | 15 ++----------- .../Generated/ResourceStatistics.cs | 15 ++----------- .../Src/Azure.Batch/Generated/Schedule.cs | 15 ++----------- .../Src/Azure.Batch/Generated/StartTask.cs | 15 ++----------- .../Generated/StartTaskInformation.cs | 15 ++----------- .../Generated/SubtaskInformation.cs | 15 ++----------- .../Azure.Batch/Generated/TaskConstraints.cs | 15 ++----------- .../Azure.Batch/Generated/TaskDependencies.cs | 15 ++----------- .../Generated/TaskExecutionInformation.cs | 15 ++----------- .../Src/Azure.Batch/Generated/TaskIdRange.cs | 15 ++----------- .../Azure.Batch/Generated/TaskInformation.cs | 15 ++----------- .../Generated/TaskSchedulingError.cs | 15 ++----------- .../Generated/TaskSchedulingPolicy.cs | 15 ++----------- .../Azure.Batch/Generated/TaskStatistics.cs | 15 ++----------- .../Azure.Batch/Generated/UsageStatistics.cs | 15 ++----------- .../Src/Azure.Batch/Generated/UserAccount.cs | 15 ++----------- .../Src/Azure.Batch/Generated/UserIdentity.cs | 15 ++----------- .../Generated/VirtualMachineConfiguration.cs | 15 ++----------- .../Generated/WindowsConfiguration.cs | 15 ++----------- .../GeneratedProtocol/AccountOperations.cs | 16 +++----------- .../AccountOperationsExtensions.cs | 16 +++----------- .../ApplicationOperations.cs | 16 +++----------- .../ApplicationOperationsExtensions.cs | 16 +++----------- .../GeneratedProtocol/BatchServiceClient.cs | 16 +++----------- .../CertificateOperations.cs | 16 +++----------- .../CertificateOperationsExtensions.cs | 16 +++----------- .../ComputeNodeOperations.cs | 16 +++----------- .../ComputeNodeOperationsExtensions.cs | 16 +++----------- .../GeneratedProtocol/FileOperations.cs | 16 +++----------- .../FileOperationsExtensions.cs | 16 +++----------- .../GeneratedProtocol/IAccountOperations.cs | 16 +++----------- .../IApplicationOperations.cs | 16 +++----------- .../GeneratedProtocol/IBatchServiceClient.cs | 16 +++----------- .../ICertificateOperations.cs | 16 +++----------- .../IComputeNodeOperations.cs | 16 +++----------- .../GeneratedProtocol/IFileOperations.cs | 16 +++----------- .../GeneratedProtocol/IJobOperations.cs | 16 +++----------- .../IJobScheduleOperations.cs | 16 +++----------- .../GeneratedProtocol/IPoolOperations.cs | 16 +++----------- .../GeneratedProtocol/ITaskOperations.cs | 16 +++----------- .../GeneratedProtocol/JobOperations.cs | 16 +++----------- .../JobOperationsExtensions.cs | 16 +++----------- .../JobScheduleOperations.cs | 16 +++----------- .../JobScheduleOperationsExtensions.cs | 16 +++----------- .../GeneratedProtocol/Models/AccessScope.cs | 16 +++----------- .../Models/AccountListNodeAgentSkusHeaders.cs | 16 +++----------- .../AccountListNodeAgentSkusNextOptions.cs | 16 +++----------- .../Models/AccountListNodeAgentSkusOptions.cs | 16 +++----------- .../Models/AffinityInformation.cs | 16 +++----------- .../Models/AllocationState.cs | 16 +++----------- .../Models/ApplicationGetHeaders.cs | 16 +++----------- .../Models/ApplicationGetOptions.cs | 16 +++----------- .../Models/ApplicationListHeaders.cs | 16 +++----------- .../Models/ApplicationListNextOptions.cs | 16 +++----------- .../Models/ApplicationListOptions.cs | 16 +++----------- .../Models/ApplicationPackageReference.cs | 16 +++----------- .../Models/ApplicationSummary.cs | 16 +++----------- .../Models/AuthenticationTokenSettings.cs | 16 +++----------- .../Models/AutoPoolSpecification.cs | 16 +++----------- .../GeneratedProtocol/Models/AutoScaleRun.cs | 16 +++----------- .../Models/AutoScaleRunError.cs | 16 +++----------- .../GeneratedProtocol/Models/AutoUserScope.cs | 16 +++----------- .../Models/AutoUserSpecification.cs | 16 +++----------- .../GeneratedProtocol/Models/BatchError.cs | 16 +++----------- .../Models/BatchErrorDetail.cs | 16 +++----------- .../Models/BatchErrorException.cs | 16 +++----------- .../GeneratedProtocol/Models/CachingType.cs | 16 +++----------- .../GeneratedProtocol/Models/Certificate.cs | 16 +++----------- .../Models/CertificateAddHeaders.cs | 16 +++----------- .../Models/CertificateAddOptions.cs | 16 +++----------- .../Models/CertificateAddParameter.cs | 16 +++----------- .../CertificateCancelDeletionHeaders.cs | 16 +++----------- .../CertificateCancelDeletionOptions.cs | 16 +++----------- .../Models/CertificateDeleteHeaders.cs | 16 +++----------- .../Models/CertificateDeleteOptions.cs | 16 +++----------- .../Models/CertificateFormat.cs | 16 +++----------- .../Models/CertificateGetHeaders.cs | 16 +++----------- .../Models/CertificateGetOptions.cs | 16 +++----------- .../Models/CertificateListHeaders.cs | 16 +++----------- .../Models/CertificateListNextOptions.cs | 16 +++----------- .../Models/CertificateListOptions.cs | 16 +++----------- .../Models/CertificateReference.cs | 16 +++----------- .../Models/CertificateState.cs | 16 +++----------- .../Models/CertificateStoreLocation.cs | 16 +++----------- .../Models/CertificateVisibility.cs | 16 +++----------- .../GeneratedProtocol/Models/CloudJob.cs | 16 +++----------- .../Models/CloudJobSchedule.cs | 16 +++----------- .../GeneratedProtocol/Models/CloudPool.cs | 16 +++----------- .../Models/CloudServiceConfiguration.cs | 16 +++----------- .../GeneratedProtocol/Models/CloudTask.cs | 16 +++----------- .../Models/CloudTaskListSubtasksResult.cs | 16 +++----------- .../GeneratedProtocol/Models/ComputeNode.cs | 16 +++----------- .../Models/ComputeNodeAddUserHeaders.cs | 16 +++----------- .../Models/ComputeNodeAddUserOptions.cs | 16 +++----------- .../Models/ComputeNodeDeallocationOption.cs | 16 +++----------- .../Models/ComputeNodeDeleteUserHeaders.cs | 16 +++----------- .../Models/ComputeNodeDeleteUserOptions.cs | 16 +++----------- .../ComputeNodeDisableSchedulingHeaders.cs | 16 +++----------- .../ComputeNodeDisableSchedulingOptions.cs | 16 +++----------- .../ComputeNodeEnableSchedulingHeaders.cs | 16 +++----------- .../ComputeNodeEnableSchedulingOptions.cs | 16 +++----------- .../Models/ComputeNodeError.cs | 16 +++----------- .../Models/ComputeNodeFillType.cs | 16 +++----------- .../Models/ComputeNodeGetHeaders.cs | 16 +++----------- .../Models/ComputeNodeGetOptions.cs | 16 +++----------- .../ComputeNodeGetRemoteDesktopHeaders.cs | 16 +++----------- .../ComputeNodeGetRemoteDesktopOptions.cs | 16 +++----------- ...omputeNodeGetRemoteLoginSettingsHeaders.cs | 16 +++----------- ...omputeNodeGetRemoteLoginSettingsOptions.cs | 16 +++----------- ...ComputeNodeGetRemoteLoginSettingsResult.cs | 16 +++----------- .../Models/ComputeNodeInformation.cs | 16 +++----------- .../Models/ComputeNodeListHeaders.cs | 16 +++----------- .../Models/ComputeNodeListNextOptions.cs | 16 +++----------- .../Models/ComputeNodeListOptions.cs | 16 +++----------- .../Models/ComputeNodeRebootHeaders.cs | 16 +++----------- .../Models/ComputeNodeRebootOption.cs | 16 +++----------- .../Models/ComputeNodeRebootOptions.cs | 16 +++----------- .../Models/ComputeNodeReimageHeaders.cs | 16 +++----------- .../Models/ComputeNodeReimageOption.cs | 16 +++----------- .../Models/ComputeNodeReimageOptions.cs | 16 +++----------- .../Models/ComputeNodeState.cs | 16 +++----------- .../Models/ComputeNodeUpdateUserHeaders.cs | 16 +++----------- .../Models/ComputeNodeUpdateUserOptions.cs | 16 +++----------- .../Models/ComputeNodeUser.cs | 16 +++----------- .../Models/DeleteCertificateError.cs | 16 +++----------- .../Models/DependencyAction.cs | 16 +++----------- .../DisableComputeNodeSchedulingOption.cs | 16 +++----------- .../Models/DisableJobOption.cs | 16 +++----------- .../Models/ElevationLevel.cs | 16 +++----------- .../Models/EnvironmentSetting.cs | 16 +++----------- .../GeneratedProtocol/Models/ErrorMessage.cs | 16 +++----------- .../Models/ExitCodeMapping.cs | 16 +++----------- .../Models/ExitCodeRangeMapping.cs | 16 +++----------- .../Models/ExitConditions.cs | 16 +++----------- .../GeneratedProtocol/Models/ExitOptions.cs | 16 +++----------- .../FileDeleteFromComputeNodeHeaders.cs | 16 +++----------- .../FileDeleteFromComputeNodeOptions.cs | 16 +++----------- .../Models/FileDeleteFromTaskHeaders.cs | 16 +++----------- .../Models/FileDeleteFromTaskOptions.cs | 16 +++----------- .../Models/FileGetFromComputeNodeHeaders.cs | 16 +++----------- .../Models/FileGetFromComputeNodeOptions.cs | 16 +++----------- .../Models/FileGetFromTaskHeaders.cs | 16 +++----------- .../Models/FileGetFromTaskOptions.cs | 16 +++----------- ...FileGetPropertiesFromComputeNodeHeaders.cs | 16 +++----------- ...FileGetPropertiesFromComputeNodeOptions.cs | 16 +++----------- .../FileGetPropertiesFromTaskHeaders.cs | 16 +++----------- .../FileGetPropertiesFromTaskOptions.cs | 16 +++----------- .../Models/FileListFromComputeNodeHeaders.cs | 16 +++----------- .../FileListFromComputeNodeNextOptions.cs | 16 +++----------- .../Models/FileListFromComputeNodeOptions.cs | 16 +++----------- .../Models/FileListFromTaskHeaders.cs | 16 +++----------- .../Models/FileListFromTaskNextOptions.cs | 16 +++----------- .../Models/FileListFromTaskOptions.cs | 16 +++----------- .../Models/FileProperties.cs | 16 +++----------- .../Models/ImageReference.cs | 16 +++----------- .../GeneratedProtocol/Models/JobAction.cs | 16 +++----------- .../GeneratedProtocol/Models/JobAddHeaders.cs | 16 +++----------- .../GeneratedProtocol/Models/JobAddOptions.cs | 16 +++----------- .../Models/JobAddParameter.cs | 16 +++----------- .../Models/JobConstraints.cs | 16 +++----------- .../Models/JobDeleteHeaders.cs | 16 +++----------- .../Models/JobDeleteOptions.cs | 16 +++----------- .../Models/JobDisableHeaders.cs | 16 +++----------- .../Models/JobDisableOptions.cs | 16 +++----------- .../Models/JobDisableParameter.cs | 16 +++----------- .../Models/JobEnableHeaders.cs | 16 +++----------- .../Models/JobEnableOptions.cs | 16 +++----------- .../Models/JobExecutionInformation.cs | 16 +++----------- .../JobGetAllLifetimeStatisticsHeaders.cs | 16 +++----------- .../JobGetAllLifetimeStatisticsOptions.cs | 16 +++----------- .../GeneratedProtocol/Models/JobGetHeaders.cs | 16 +++----------- .../GeneratedProtocol/Models/JobGetOptions.cs | 16 +++----------- .../Models/JobListFromJobScheduleHeaders.cs | 16 +++----------- .../JobListFromJobScheduleNextOptions.cs | 16 +++----------- .../Models/JobListFromJobScheduleOptions.cs | 16 +++----------- .../Models/JobListHeaders.cs | 16 +++----------- .../Models/JobListNextOptions.cs | 16 +++----------- .../Models/JobListOptions.cs | 16 +++----------- ...tPreparationAndReleaseTaskStatusHeaders.cs | 16 +++----------- ...parationAndReleaseTaskStatusNextOptions.cs | 16 +++----------- ...tPreparationAndReleaseTaskStatusOptions.cs | 16 +++----------- .../Models/JobManagerTask.cs | 16 +++----------- .../Models/JobPatchHeaders.cs | 16 +++----------- .../Models/JobPatchOptions.cs | 16 +++----------- .../Models/JobPatchParameter.cs | 16 +++----------- ...ationAndReleaseTaskExecutionInformation.cs | 16 +++----------- .../Models/JobPreparationTask.cs | 16 +++----------- .../JobPreparationTaskExecutionInformation.cs | 16 +++----------- .../Models/JobPreparationTaskState.cs | 16 +++----------- .../Models/JobReleaseTask.cs | 16 +++----------- .../JobReleaseTaskExecutionInformation.cs | 16 +++----------- .../Models/JobReleaseTaskState.cs | 16 +++----------- .../Models/JobScheduleAddHeaders.cs | 16 +++----------- .../Models/JobScheduleAddOptions.cs | 16 +++----------- .../Models/JobScheduleAddParameter.cs | 16 +++----------- .../Models/JobScheduleDeleteHeaders.cs | 16 +++----------- .../Models/JobScheduleDeleteOptions.cs | 16 +++----------- .../Models/JobScheduleDisableHeaders.cs | 16 +++----------- .../Models/JobScheduleDisableOptions.cs | 16 +++----------- .../Models/JobScheduleEnableHeaders.cs | 16 +++----------- .../Models/JobScheduleEnableOptions.cs | 16 +++----------- .../Models/JobScheduleExecutionInformation.cs | 16 +++----------- .../Models/JobScheduleExistsHeaders.cs | 16 +++----------- .../Models/JobScheduleExistsOptions.cs | 16 +++----------- .../Models/JobScheduleGetHeaders.cs | 16 +++----------- .../Models/JobScheduleGetOptions.cs | 16 +++----------- .../Models/JobScheduleListHeaders.cs | 16 +++----------- .../Models/JobScheduleListNextOptions.cs | 16 +++----------- .../Models/JobScheduleListOptions.cs | 16 +++----------- .../Models/JobSchedulePatchHeaders.cs | 16 +++----------- .../Models/JobSchedulePatchOptions.cs | 16 +++----------- .../Models/JobSchedulePatchParameter.cs | 16 +++----------- .../Models/JobScheduleState.cs | 16 +++----------- .../Models/JobScheduleStatistics.cs | 16 +++----------- .../Models/JobScheduleTerminateHeaders.cs | 16 +++----------- .../Models/JobScheduleTerminateOptions.cs | 16 +++----------- .../Models/JobScheduleUpdateHeaders.cs | 16 +++----------- .../Models/JobScheduleUpdateOptions.cs | 16 +++----------- .../Models/JobScheduleUpdateParameter.cs | 16 +++----------- .../Models/JobSchedulingError.cs | 16 +++----------- .../Models/JobSpecification.cs | 16 +++----------- .../GeneratedProtocol/Models/JobState.cs | 16 +++----------- .../GeneratedProtocol/Models/JobStatistics.cs | 16 +++----------- .../Models/JobTerminateHeaders.cs | 16 +++----------- .../Models/JobTerminateOptions.cs | 16 +++----------- .../Models/JobTerminateParameter.cs | 16 +++----------- .../Models/JobUpdateHeaders.cs | 16 +++----------- .../Models/JobUpdateOptions.cs | 16 +++----------- .../Models/JobUpdateParameter.cs | 16 +++----------- .../GeneratedProtocol/Models/MetadataItem.cs | 16 +++----------- .../Models/MultiInstanceSettings.cs | 16 +++----------- .../GeneratedProtocol/Models/NameValuePair.cs | 16 +++----------- .../Models/NetworkConfiguration.cs | 16 +++----------- .../GeneratedProtocol/Models/NodeAgentSku.cs | 16 +++----------- .../Models/NodeDisableSchedulingParameter.cs | 16 +++----------- .../GeneratedProtocol/Models/NodeFile.cs | 16 +++----------- .../Models/NodeRebootParameter.cs | 16 +++----------- .../Models/NodeReimageParameter.cs | 16 +++----------- .../Models/NodeRemoveParameter.cs | 16 +++----------- .../Models/NodeUpdateUserParameter.cs | 16 +++----------- .../GeneratedProtocol/Models/OSDisk.cs | 16 +++----------- .../GeneratedProtocol/Models/OSType.cs | 16 +++----------- .../Models/OnAllTasksComplete.cs | 16 +++----------- .../GeneratedProtocol/Models/OnTaskFailure.cs | 16 +++----------- .../GeneratedProtocol/Models/Page.cs | 16 +++----------- .../Models/PoolAddHeaders.cs | 16 +++----------- .../Models/PoolAddOptions.cs | 16 +++----------- .../Models/PoolAddParameter.cs | 16 +++----------- .../Models/PoolDeleteHeaders.cs | 16 +++----------- .../Models/PoolDeleteOptions.cs | 16 +++----------- .../Models/PoolDisableAutoScaleHeaders.cs | 16 +++----------- .../Models/PoolDisableAutoScaleOptions.cs | 16 +++----------- .../Models/PoolEnableAutoScaleHeaders.cs | 16 +++----------- .../Models/PoolEnableAutoScaleOptions.cs | 16 +++----------- .../Models/PoolEnableAutoScaleParameter.cs | 16 +++----------- .../Models/PoolEvaluateAutoScaleHeaders.cs | 16 +++----------- .../Models/PoolEvaluateAutoScaleOptions.cs | 16 +++----------- .../Models/PoolEvaluateAutoScaleParameter.cs | 16 +++----------- .../Models/PoolExistsHeaders.cs | 16 +++----------- .../Models/PoolExistsOptions.cs | 16 +++----------- .../PoolGetAllLifetimeStatisticsHeaders.cs | 16 +++----------- .../PoolGetAllLifetimeStatisticsOptions.cs | 16 +++----------- .../Models/PoolGetHeaders.cs | 16 +++----------- .../Models/PoolGetOptions.cs | 16 +++----------- .../Models/PoolInformation.cs | 16 +++----------- .../Models/PoolLifetimeOption.cs | 16 +++----------- .../Models/PoolListHeaders.cs | 16 +++----------- .../Models/PoolListNextOptions.cs | 16 +++----------- .../Models/PoolListOptions.cs | 16 +++----------- .../Models/PoolListUsageMetricsHeaders.cs | 16 +++----------- .../Models/PoolListUsageMetricsNextOptions.cs | 16 +++----------- .../Models/PoolListUsageMetricsOptions.cs | 16 +++----------- .../Models/PoolPatchHeaders.cs | 16 +++----------- .../Models/PoolPatchOptions.cs | 16 +++----------- .../Models/PoolPatchParameter.cs | 16 +++----------- .../Models/PoolRemoveNodesHeaders.cs | 16 +++----------- .../Models/PoolRemoveNodesOptions.cs | 16 +++----------- .../Models/PoolResizeHeaders.cs | 16 +++----------- .../Models/PoolResizeOptions.cs | 16 +++----------- .../Models/PoolResizeParameter.cs | 16 +++----------- .../Models/PoolSpecification.cs | 16 +++----------- .../GeneratedProtocol/Models/PoolState.cs | 16 +++----------- .../Models/PoolStatistics.cs | 16 +++----------- .../Models/PoolStopResizeHeaders.cs | 16 +++----------- .../Models/PoolStopResizeOptions.cs | 16 +++----------- .../Models/PoolUpdatePropertiesHeaders.cs | 16 +++----------- .../Models/PoolUpdatePropertiesOptions.cs | 16 +++----------- .../Models/PoolUpdatePropertiesParameter.cs | 16 +++----------- .../Models/PoolUpgradeOSHeaders.cs | 16 +++----------- .../Models/PoolUpgradeOSOptions.cs | 16 +++----------- .../Models/PoolUpgradeOSParameter.cs | 16 +++----------- .../Models/PoolUsageMetrics.cs | 16 +++----------- .../GeneratedProtocol/Models/RecentJob.cs | 16 +++----------- .../GeneratedProtocol/Models/ResizeError.cs | 16 +++----------- .../GeneratedProtocol/Models/ResourceFile.cs | 16 +++----------- .../Models/ResourceStatistics.cs | 16 +++----------- .../GeneratedProtocol/Models/Schedule.cs | 16 +++----------- .../Models/SchedulingErrorCategory.cs | 16 +++----------- .../Models/SchedulingState.cs | 16 +++----------- .../GeneratedProtocol/Models/StartTask.cs | 16 +++----------- .../Models/StartTaskInformation.cs | 16 +++----------- .../Models/StartTaskState.cs | 16 +++----------- .../Models/SubtaskInformation.cs | 16 +++----------- .../GeneratedProtocol/Models/SubtaskState.cs | 16 +++----------- .../Models/TaskAddCollectionHeaders.cs | 16 +++----------- .../Models/TaskAddCollectionOptions.cs | 16 +++----------- .../Models/TaskAddCollectionParameter.cs | 16 +++----------- .../Models/TaskAddCollectionResult.cs | 16 +++----------- .../Models/TaskAddHeaders.cs | 16 +++----------- .../Models/TaskAddOptions.cs | 16 +++----------- .../Models/TaskAddParameter.cs | 16 +++----------- .../GeneratedProtocol/Models/TaskAddResult.cs | 16 +++----------- .../GeneratedProtocol/Models/TaskAddStatus.cs | 16 +++----------- .../Models/TaskConstraints.cs | 16 +++----------- .../Models/TaskDeleteHeaders.cs | 16 +++----------- .../Models/TaskDeleteOptions.cs | 16 +++----------- .../Models/TaskDependencies.cs | 16 +++----------- .../Models/TaskExecutionInformation.cs | 16 +++----------- .../Models/TaskGetHeaders.cs | 16 +++----------- .../Models/TaskGetOptions.cs | 16 +++----------- .../GeneratedProtocol/Models/TaskIdRange.cs | 16 +++----------- .../Models/TaskInformation.cs | 16 +++----------- .../Models/TaskListHeaders.cs | 16 +++----------- .../Models/TaskListNextOptions.cs | 16 +++----------- .../Models/TaskListOptions.cs | 16 +++----------- .../Models/TaskListSubtasksHeaders.cs | 16 +++----------- .../Models/TaskListSubtasksOptions.cs | 16 +++----------- .../Models/TaskReactivateHeaders.cs | 16 +++----------- .../Models/TaskReactivateOptions.cs | 16 +++----------- .../Models/TaskSchedulingError.cs | 16 +++----------- .../Models/TaskSchedulingPolicy.cs | 16 +++----------- .../GeneratedProtocol/Models/TaskState.cs | 16 +++----------- .../Models/TaskStatistics.cs | 16 +++----------- .../Models/TaskTerminateHeaders.cs | 16 +++----------- .../Models/TaskTerminateOptions.cs | 16 +++----------- .../Models/TaskUpdateHeaders.cs | 16 +++----------- .../Models/TaskUpdateOptions.cs | 16 +++----------- .../Models/TaskUpdateParameter.cs | 16 +++----------- .../Models/UsageStatistics.cs | 16 +++----------- .../GeneratedProtocol/Models/UserAccount.cs | 16 +++----------- .../GeneratedProtocol/Models/UserIdentity.cs | 16 +++----------- .../Models/VirtualMachineConfiguration.cs | 16 +++----------- .../Models/WindowsConfiguration.cs | 16 +++----------- .../GeneratedProtocol/PoolOperations.cs | 16 +++----------- .../PoolOperationsExtensions.cs | 16 +++----------- .../GeneratedProtocol/TaskOperations.cs | 16 +++----------- .../TaskOperationsExtensions.cs | 16 +++----------- .../Azure.Batch/GetFileRequestByteRange.cs | 15 ++----------- .../Src/Azure.Batch/IFileStagingArtifact.cs | 15 ++----------- .../Src/Azure.Batch/IInheritedBehaviors.cs | 15 ++----------- .../Client/Src/Azure.Batch/IModifiable.cs | 15 ++----------- .../Src/Azure.Batch/IPagedEnumerable.cs | 15 ++----------- .../Src/Azure.Batch/IPagedEnumerator.cs | 15 ++----------- .../Src/Azure.Batch/IPropertyMetadata.cs | 15 ++----------- .../Client/Src/Azure.Batch/IProtocolLayer.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/IReadOnly.cs | 15 ++----------- .../Client/Src/Azure.Batch/IRefreshable.cs | 15 ++----------- .../Azure.Batch/ITransportObjectProvider.cs | 15 ++----------- .../Client/Src/Azure.Batch/JobManagerTask.cs | 15 ++----------- .../Client/Src/Azure.Batch/JobOperations.cs | 15 ++----------- .../Src/Azure.Batch/JobPreparationTask.cs | 15 ++----------- .../Client/Src/Azure.Batch/JobReleaseTask.cs | 15 ++----------- .../Src/Azure.Batch/JobScheduleOperations.cs | 15 ++----------- .../Src/Azure.Batch/JobSpecification.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/NodeFile.cs | 15 ++----------- .../Src/Azure.Batch/ODATADetailLevel.cs | 15 ++----------- .../Client/Src/Azure.Batch/ODATAMonitor.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/OSVersion.cs | 15 ++----------- .../Client/Src/Azure.Batch/PagedEnumerable.cs | 15 ++----------- .../Azure.Batch/PagedEnumerableExtensions.cs | 15 ++----------- .../Src/Azure.Batch/PagedEnumeratorBase.cs | 15 ++----------- .../Client/Src/Azure.Batch/PoolOperations.cs | 15 ++----------- .../Azure.Batch/PropertyAccessController.cs | 15 ++----------- .../Src/Azure.Batch/PropertyAccessor.cs | 15 ++----------- .../Src/Azure.Batch/PropertyCollection.cs | 15 ++----------- .../Protocol/BatchSharedKeyCredential.cs | 15 ++----------- .../Protocol/BatchTokenProvider.cs | 15 ++----------- .../Client/Src/Azure.Batch/ProtocolLayer.cs | 15 ++----------- .../Src/Azure.Batch/RetryPolicyProvider.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/StartTask.cs | 15 ++----------- .../SynchronousMethodExceptionBehavior.cs | 15 ++----------- .../Src/Azure.Batch/TaskDependencies.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/TaskFile.cs | 15 ++----------- .../Client/Src/Azure.Batch/TaskIdRange.cs | 15 ++----------- .../Src/Azure.Batch/TaskStateMonitor.cs | 15 ++----------- .../Client/Src/Azure.Batch/UserIdentity.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/Utilities.cs | 15 ++----------- .../Src/Azure.Batch/UtilitiesInternal.cs | 15 ++----------- .../VirtualMachineConfiguration.cs | 15 ++----------- src/Batch/Client/Src/Azure.Batch/project.json | 2 +- .../AddTaskCollectionUnitTests.cs | 15 ++----------- .../ApplicationPackageReferencesUnitTests.cs | 15 ++----------- .../ApplicationPackageUnitTests.cs | 15 ++----------- .../BatchClientUnitTest.cs | 15 ++----------- .../BatchRequestUnitTests.cs | 15 ++----------- .../BindingStateConstraintUnitTests.cs | 15 ++----------- .../ClientUnitTestCommon.cs | 15 ++----------- .../CommitAndRefreshUnitTests.cs | 15 ++----------- .../ComputeNodeUnitTests.cs | 15 ++----------- .../ConcurrentChangeTrackedListUnitTests.cs | 15 ++----------- .../Azure.Batch.Unit.Tests/EnumUnitTests.cs | 15 ++----------- .../ExceptionUnitTests.cs | 15 ++----------- .../Azure.Batch.Unit.Tests/FakeClient.cs | 15 ++----------- .../Azure.Batch.Unit.Tests/FileUnitTests.cs | 15 ++----------- .../GetFileRequestByteRangeTests.cs | 15 ++----------- .../InterceptorUnitTests.cs | 15 ++----------- .../JobAutoTerminationUnitTests.cs | 15 ++----------- .../Azure.Batch.Unit.Tests/ODataUnitTests.cs | 15 ++----------- .../OptionsUnitTests.cs | 15 ++----------- .../PagedCollectionUnitTests.cs | 15 ++----------- .../Azure.Batch.Unit.Tests/PatchUnitTests.cs | 15 ++----------- .../Azure.Batch.Unit.Tests/PoolUnitTests.cs | 15 ++----------- .../PropertyAccessorUnitTests.cs | 15 ++----------- .../PropertyManagementUnitTests.cs | 15 ++----------- .../PropertyUnitTests.cs | 15 ++----------- .../RetryPolicyUnitTests.cs | 15 ++----------- .../StaticAnalysisUnitTests.cs | 15 ++----------- .../Azure.Batch.Unit.Tests/StreamUnitTests.cs | 15 ++----------- ...hronousMethodExceptionBehaviorUnitTests.cs | 15 ++----------- .../TaskDependenciesUnitTests.cs | 15 ++----------- .../TaskIdRangeUnitTests.cs | 15 ++----------- .../TestUtilities/ComparerPropertyMapping.cs | 15 ++----------- .../TestUtilities/ComparisonRule.cs | 15 ++----------- .../TestUtilities/InterceptorFactory.cs | 15 ++----------- .../TestUtilities/ObjectComparer.cs | 15 ++----------- .../TestUtilities/ObjectFactory.cs | 15 ++----------- .../ObjectFactoryConstructionSpecification.cs | 15 ++----------- .../TestUtilities/ReflectionHelpers.cs | 15 ++----------- .../TestUtilities/SourceParser.cs | 15 ++----------- .../TestUtilities/SourceParserResult.cs | 15 ++----------- .../UtilitiesInternalUnitTests.cs | 15 ++----------- .../UtilitiesUnitTests.cs | 15 ++----------- .../AddTaskCollectionIntegrationTests.cs | 15 ++----------- .../ApplicationIntegrationCommon.cs | 15 ++----------- .../ApplicationManagementIntegrationTests.cs | 15 ++----------- .../Application/ApplicationPackageFixture.cs | 15 ++----------- .../ApplicationPackagesIntegrationTests.cs | 15 ++----------- ...ationPackagesReferencesIntegrationTests.cs | 15 ++----------- ...ckagesReferencesOnTasksIntegrationTests.cs | 15 ++----------- ...cationPackageReferencesIntegrationTests.cs | 15 ++----------- .../AutoScaleIntegrationTests.cs | 15 ++----------- .../BatchRequestIntegrationTests.cs | 15 ++----------- .../CertificateUnitTests.cs | 15 ++----------- .../CloudCertificateIntegrationTests.cs | 15 ++----------- .../CloudJobIntegrationTests.cs | 15 ++----------- .../CloudJobScheduleIntegrationTests.cs | 15 ++----------- .../CloudPoolIntegrationTests.cs | 15 ++----------- .../CloudTaskIntegrationTests.cs | 15 ++----------- .../ComputeNodeIntegrationTests.cs | 15 ++----------- .../EndToEndIntegrationTests.cs | 15 ++----------- .../Fixtures/IaasLinuxPoolFixture.cs | 15 ++----------- .../Fixtures/PaasWindowsPoolFixture.cs | 15 ++----------- .../Fixtures/PoolFixture.cs | 15 ++----------- .../FileUploadUtilities.cs | 15 ++----------- .../SynchronizationContextHelper.cs | 15 ++----------- .../IntegrationTestUtilities/TestUtilities.cs | 15 ++----------- .../JobPrepReleaseIntegrationTests.cs | 15 ++----------- .../NodeFileIntegrationTests.cs | 15 ++----------- .../ObjectModelFeatureIntegrationTests.cs | 15 ++----------- .../TaskDependencyIntegrationTests.cs | 15 ++----------- .../TestResources/Resources.cs | 15 ++----------- .../Tests/ObjectModel/Common/FakePage.cs | 15 ++----------- .../Tests/ObjectModel/Common/TestCommon.cs | 15 ++----------- .../Tests/ObjectModel/Common/TestTraits.cs | 15 ++----------- .../CertificateBuilder.cs | 15 ++----------- .../IntegrationTestCommon/CommonResources.cs | 15 ++----------- .../IntegrationTestCommon.cs | 15 ++----------- .../ApplicationPackageCommon.cs | 15 ++----------- ...ionJobApplicationPackageReferencesTests.cs | 15 ++----------- ...onPoolApplicationPackageReferencesTests.cs | 15 ++----------- .../TestUtilities.cs | 15 ++----------- .../ConfigureAwaitAnalyzerTests.cs | 15 ++----------- .../Helpers/DiagnosticResult.cs | 15 ++----------- .../Helpers/DiagnosticVerifier.Helper.cs | 15 ++----------- .../Verifiers/DiagnosticVerifier.cs | 15 ++----------- .../AssemblyAttributes.cs | 15 ++----------- .../DiagnosticAnalyzer.cs | 15 ++----------- .../CodeGenerationLibrary/BindingAccess.cs | 15 ++----------- .../CodeGenerationUtilities.cs | 15 ++----------- .../CodeGenerationLibrary/CommentUtilities.cs | 15 ++----------- .../ConstructorArgumentType.cs | 15 ++----------- .../CodeGenerationLibrary/FileReader.cs | 15 ++----------- .../CodeGenerationLibrary/Model.cs | 15 ++----------- .../ObjectModelTypeData.cs | 15 ++----------- .../CodeGenerationLibrary/PropertyData.cs | 15 ++----------- .../CodeGenerationLibrary/StringUtilities.cs | 15 ++----------- .../BatchModelPartial.cs | 15 ++----------- .../CollectionConversionSnippet.cs | 15 ++----------- .../CollectionConversionSnippetPartial.cs | 15 ++----------- .../GetTransportObjectSnippet.cs | 15 ++----------- .../GetTransportObjectSnippetPartial.cs | 15 ++----------- .../ModelClassTemplate.cs | 15 ++----------- .../ModelClassTemplate.tt | 15 ++----------- .../ModifiableClassTemplate.cs | 15 ++----------- .../ModifiableClassTemplatePartial.cs | 15 ++----------- .../NamedBatchRequests.cs | 15 ++----------- .../NamedBatchRequestsPartial.cs | 15 ++----------- .../ObjectModelCodeGenerator/Program.cs | 15 ++----------- .../StaticReadOnlyClassTemplate.cs | 15 ++----------- .../StaticReadOnlyClassTemplatePartial.cs | 15 ++----------- .../RoslynParser/BatchRequestGroup.cs | 15 ++----------- .../BatchRequestTemplateBuilder.cs | 15 ++----------- .../BatchRequestTypeGenerationInfo.cs | 15 ++----------- src/Batch/Client/changelog.md | 6 +++++ src/Batch/Client/generate.cmd | 22 +++++++++++++++++++ 653 files changed, 1656 insertions(+), 8430 deletions(-) delete mode 100644 src/Batch/Client/RegenerateBatch.cmd create mode 100644 src/Batch/Client/generate.cmd diff --git a/src/Batch/Client/README.md b/src/Batch/Client/README.md index 51dda0d81a78..d8b5400a9a68 100644 --- a/src/Batch/Client/README.md +++ b/src/Batch/Client/README.md @@ -1,3 +1,6 @@ +# License notes +The Azure Batch C# client is now under the MIT license. Prior to 3/10/2017 it was under the Apache 2.0 license. + # Azure Batch client developer guide Batch.sln is your one stop shop for all things related to the Azure Batch C# client library. This solution file contains all of the projects affiliated with the Azure Batch client (including testing and tooling). diff --git a/src/Batch/Client/RegenerateBatch.cmd b/src/Batch/Client/RegenerateBatch.cmd deleted file mode 100644 index 0eb3c2e64b4f..000000000000 --- a/src/Batch/Client/RegenerateBatch.cmd +++ /dev/null @@ -1,5 +0,0 @@ -setlocal - -..\..\..\tools\autorest.gen.cmd %1 Microsoft.Azure.Batch.Protocol 1.0.0-Nightly20170209 .\src\Azure.Batch\GeneratedProtocol MICROSOFT_APACHE_NO_VERSION "-ft 1 -disablesimplifier" - -endlocal \ No newline at end of file diff --git a/src/Batch/Client/Src/Azure.Batch/AddTaskCollectionResultHandler.cs b/src/Batch/Client/Src/Azure.Batch/AddTaskCollectionResultHandler.cs index 735cf0cb4fea..509668da1634 100644 --- a/src/Batch/Client/Src/Azure.Batch/AddTaskCollectionResultHandler.cs +++ b/src/Batch/Client/Src/Azure.Batch/AddTaskCollectionResultHandler.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Batch/Client/Src/Azure.Batch/AddTaskResult.cs b/src/Batch/Client/Src/Azure.Batch/AddTaskResult.cs index 914e9d3625bc..86316c3029a1 100644 --- a/src/Batch/Client/Src/Azure.Batch/AddTaskResult.cs +++ b/src/Batch/Client/Src/Azure.Batch/AddTaskResult.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AddTasksWorkflowManager.cs b/src/Batch/Client/Src/Azure.Batch/AddTasksWorkflowManager.cs index 7b037899111a..6a1f894f1316 100644 --- a/src/Batch/Client/Src/Azure.Batch/AddTasksWorkflowManager.cs +++ b/src/Batch/Client/Src/Azure.Batch/AddTasksWorkflowManager.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/ApplicationOperations.cs b/src/Batch/Client/Src/Azure.Batch/ApplicationOperations.cs index 3992802fc964..6716672369de 100644 --- a/src/Batch/Client/Src/Azure.Batch/ApplicationOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/ApplicationOperations.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs index 79ad48f0ab73..474cd45b5848 100644 --- a/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs +++ b/src/Batch/Client/Src/Azure.Batch/AssemblyAttributes.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Runtime.CompilerServices; diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncApplicationSummariesEnumerator.cs b/src/Batch/Client/Src/Azure.Batch/AsyncApplicationSummariesEnumerator.cs index 0cc42dcced1b..3da8a5e34d1d 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncApplicationSummariesEnumerator.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncApplicationSummariesEnumerator.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListCertificates.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListCertificates.cs index ffd1fe387b7b..dcf14fd7925b 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListCertificates.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListCertificates.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListComputeNodes.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListComputeNodes.cs index 5a422fb56243..13118c284146 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListComputeNodes.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListComputeNodes.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListJobPrepReleaseTaskStatus.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListJobPrepReleaseTaskStatus.cs index e1ed21f550a9..f249e488a1c9 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListJobPrepReleaseTaskStatus.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListJobPrepReleaseTaskStatus.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListJobSchedules.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListJobSchedules.cs index 5c6547bf3585..864761a2709e 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListJobSchedules.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListJobSchedules.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListJobs.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListJobs.cs index f77a44c79092..c301e0ef7ecf 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListJobs.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListJobs.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListNodeAgentSkus.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListNodeAgentSkus.cs index e1bfa2a384b3..8a85319d74ca 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListNodeAgentSkus.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListNodeAgentSkus.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListNodeFiles.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListNodeFiles.cs index bd09b148e9cc..ae502c0da09f 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListNodeFiles.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListNodeFiles.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListPoolUsageMetrics.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListPoolUsageMetrics.cs index 070ff0a9e7af..63bcdb9d0a1e 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListPoolUsageMetrics.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListPoolUsageMetrics.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListPools.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListPools.cs index e2776479e9d4..2fa926480939 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListPools.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListPools.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListSubtasks.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListSubtasks.cs index facbfd01b850..18b66cc8656e 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListSubtasks.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListSubtasks.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListTaskFiles.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListTaskFiles.cs index 1d8e52eb7f8d..badf38bc01d4 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListTaskFiles.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListTaskFiles.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/AsyncListTasks.cs b/src/Batch/Client/Src/Azure.Batch/AsyncListTasks.cs index 38d7ccbef312..6c0b7392f930 100644 --- a/src/Batch/Client/Src/Azure.Batch/AsyncListTasks.cs +++ b/src/Batch/Client/Src/Azure.Batch/AsyncListTasks.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/Auth/BatchSharedKeyCredentials.cs b/src/Batch/Client/Src/Azure.Batch/Auth/BatchSharedKeyCredentials.cs index b59f264a1d6b..5a085e20e96b 100644 --- a/src/Batch/Client/Src/Azure.Batch/Auth/BatchSharedKeyCredentials.cs +++ b/src/Batch/Client/Src/Azure.Batch/Auth/BatchSharedKeyCredentials.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Auth/BatchTokenCredentials.cs b/src/Batch/Client/Src/Azure.Batch/Auth/BatchTokenCredentials.cs index 97c914184abe..b5991d971ab6 100644 --- a/src/Batch/Client/Src/Azure.Batch/Auth/BatchTokenCredentials.cs +++ b/src/Batch/Client/Src/Azure.Batch/Auth/BatchTokenCredentials.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System.Net.Http; using System.Threading; diff --git a/src/Batch/Client/Src/Azure.Batch/Authorization.cs b/src/Batch/Client/Src/Azure.Batch/Authorization.cs index d77df31af464..5bc2bdbab96b 100644 --- a/src/Batch/Client/Src/Azure.Batch/Authorization.cs +++ b/src/Batch/Client/Src/Azure.Batch/Authorization.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/BatchClient.cs b/src/Batch/Client/Src/Azure.Batch/BatchClient.cs index 4c74f9d94557..b86adbaae67c 100644 --- a/src/Batch/Client/Src/Azure.Batch/BatchClient.cs +++ b/src/Batch/Client/Src/Azure.Batch/BatchClient.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/BatchClientBehaviors.cs b/src/Batch/Client/Src/Azure.Batch/BatchClientBehaviors.cs index dceb66379823..062f4dd95edf 100644 --- a/src/Batch/Client/Src/Azure.Batch/BatchClientBehaviors.cs +++ b/src/Batch/Client/Src/Azure.Batch/BatchClientBehaviors.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/BatchClientExceptions.cs b/src/Batch/Client/Src/Azure.Batch/BatchClientExceptions.cs index b4eac8d55f0a..404c7745826a 100644 --- a/src/Batch/Client/Src/Azure.Batch/BatchClientExceptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/BatchClientExceptions.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/BatchClientParallelOptions.cs b/src/Batch/Client/Src/Azure.Batch/BatchClientParallelOptions.cs index 6b9feb29df6a..d965d6b6c123 100644 --- a/src/Batch/Client/Src/Azure.Batch/BatchClientParallelOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/BatchClientParallelOptions.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Batch/Client/Src/Azure.Batch/BatchRequestTimeout.cs b/src/Batch/Client/Src/Azure.Batch/BatchRequestTimeout.cs index f7b2dec76a1c..d542bd6ffdcf 100644 --- a/src/Batch/Client/Src/Azure.Batch/BatchRequestTimeout.cs +++ b/src/Batch/Client/Src/Azure.Batch/BatchRequestTimeout.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/BehaviorManager.cs b/src/Batch/Client/Src/Azure.Batch/BehaviorManager.cs index 40fdba619d4b..52996bfe6fdd 100644 --- a/src/Batch/Client/Src/Azure.Batch/BehaviorManager.cs +++ b/src/Batch/Client/Src/Azure.Batch/BehaviorManager.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/BindingState.cs b/src/Batch/Client/Src/Azure.Batch/BindingState.cs index 7d58414d62b5..b4d949fbd628 100644 --- a/src/Batch/Client/Src/Azure.Batch/BindingState.cs +++ b/src/Batch/Client/Src/Azure.Batch/BindingState.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/Certificate.cs b/src/Batch/Client/Src/Azure.Batch/Certificate.cs index 7af4c32697c8..fbfbdf7bea28 100644 --- a/src/Batch/Client/Src/Azure.Batch/Certificate.cs +++ b/src/Batch/Client/Src/Azure.Batch/Certificate.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/CertificateOperations.cs b/src/Batch/Client/Src/Azure.Batch/CertificateOperations.cs index 4db0bdf2903d..777a222b4865 100644 --- a/src/Batch/Client/Src/Azure.Batch/CertificateOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/CertificateOperations.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/CertificateReference.cs b/src/Batch/Client/Src/Azure.Batch/CertificateReference.cs index 84dd993355fe..4600f1f04cd6 100644 --- a/src/Batch/Client/Src/Azure.Batch/CertificateReference.cs +++ b/src/Batch/Client/Src/Azure.Batch/CertificateReference.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/ClientRequestIdProvider.cs b/src/Batch/Client/Src/Azure.Batch/ClientRequestIdProvider.cs index dd748e22c57d..c0554fde1183 100644 --- a/src/Batch/Client/Src/Azure.Batch/ClientRequestIdProvider.cs +++ b/src/Batch/Client/Src/Azure.Batch/ClientRequestIdProvider.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/CloudJob.cs b/src/Batch/Client/Src/Azure.Batch/CloudJob.cs index 83b51f8a7e14..abb3c8241d69 100644 --- a/src/Batch/Client/Src/Azure.Batch/CloudJob.cs +++ b/src/Batch/Client/Src/Azure.Batch/CloudJob.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/CloudJobSchedule.cs b/src/Batch/Client/Src/Azure.Batch/CloudJobSchedule.cs index 994b1e7222e4..70bee4a20458 100644 --- a/src/Batch/Client/Src/Azure.Batch/CloudJobSchedule.cs +++ b/src/Batch/Client/Src/Azure.Batch/CloudJobSchedule.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/CloudPool.cs b/src/Batch/Client/Src/Azure.Batch/CloudPool.cs index 63024db9815b..1c040dffb8ef 100644 --- a/src/Batch/Client/Src/Azure.Batch/CloudPool.cs +++ b/src/Batch/Client/Src/Azure.Batch/CloudPool.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/CloudTask.cs b/src/Batch/Client/Src/Azure.Batch/CloudTask.cs index e76d9c23b3e5..b50c133565ac 100644 --- a/src/Batch/Client/Src/Azure.Batch/CloudTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/CloudTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/BatchErrorCodeStrings.cs b/src/Batch/Client/Src/Azure.Batch/Common/BatchErrorCodeStrings.cs index c1497edfdffa..19a5d1122e22 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/BatchErrorCodeStrings.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/BatchErrorCodeStrings.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // ----------------------------------------------------------------------------------------- // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/BatchException.cs b/src/Batch/Client/Src/Azure.Batch/Common/BatchException.cs index ffba84bed3f1..fab4b4d089c5 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/BatchException.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/BatchException.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AccessScope.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AccessScope.cs index 23073d9b391e..dba6ab30f637 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AccessScope.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AccessScope.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AddTaskStatus.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AddTaskStatus.cs index 2b2c304ebe07..aa216e5e8f6a 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AddTaskStatus.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AddTaskStatus.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AllocationState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AllocationState.cs index 84c6a52ec682..c383126dba01 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AllocationState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AllocationState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AutoUserScope.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AutoUserScope.cs index 7ca35863cd29..06882680334b 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AutoUserScope.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/AutoUserScope.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CachingType.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CachingType.cs index 270993bb4b8e..50178bf35ad5 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CachingType.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CachingType.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertStoreLocation.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertStoreLocation.cs index 81ccdef18355..115f0a0d774c 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertStoreLocation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertStoreLocation.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateFormat.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateFormat.cs index 1b66528836f5..17195e672fb2 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateFormat.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateFormat.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateState.cs index 9dc01574b682..a10739fc417e 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateVisibility.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateVisibility.cs index 69d2c625c2be..82c94abc1369 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateVisibility.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/CertificateVisibility.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeDeallocationOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeDeallocationOption.cs index 03f4576912d7..c6526e1dbdac 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeDeallocationOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeDeallocationOption.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeFillType.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeFillType.cs index 6f88047c9b9c..012a33add554 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeFillType.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeFillType.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeRebootOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeRebootOption.cs index 27973801851e..57ed901f4074 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeRebootOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeRebootOption.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeReimageOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeReimageOption.cs index 9d47e0df161d..94de0af9b7f1 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeReimageOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeReimageOption.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeState.cs index 084ab422a5c5..e2f1fbab00e2 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ComputeNodeState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DependencyAction.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DependencyAction.cs index 547fb1118856..397029a249b3 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DependencyAction.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DependencyAction.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableComputeNodeSchedulingOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableComputeNodeSchedulingOption.cs index ddd62b0ad183..5025ef27d699 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableComputeNodeSchedulingOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableComputeNodeSchedulingOption.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableJobOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableJobOption.cs index 03a20f3f58f1..6e456f2e8960 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableJobOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/DisableJobOption.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ElevationLevel.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ElevationLevel.cs index af4e6d2bb095..edda47d72058 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ElevationLevel.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/ElevationLevel.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobAction.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobAction.cs index 987e9c46901b..9ac7f42872d2 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobAction.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobAction.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobPreparationTaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobPreparationTaskState.cs index 7a11daeb6e21..97747d9bfab4 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobPreparationTaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobPreparationTaskState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobReleaseTaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobReleaseTaskState.cs index 1026be9334e5..3f61514e4a65 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobReleaseTaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobReleaseTaskState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobScheduleState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobScheduleState.cs index f4437cd4a918..79f38ce2e05e 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobScheduleState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobScheduleState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobState.cs index e5dd2e8d3712..9944d498e57d 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/JobState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OSType.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OSType.cs index 25d20731379a..f6862b8285cf 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OSType.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OSType.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnAllTasksComplete.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnAllTasksComplete.cs index dc2f0259bee7..33397287933f 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnAllTasksComplete.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnAllTasksComplete.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnTaskFailure.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnTaskFailure.cs index 03adec08ea7f..9a109a9ade9f 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnTaskFailure.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/OnTaskFailure.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolLifetimeOption.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolLifetimeOption.cs index fb29c6163b5c..2b17c3d33c3c 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolLifetimeOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolLifetimeOption.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolState.cs index b8330b0cb3b7..b903cc06b9ec 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/PoolState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingErrorCategory.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingErrorCategory.cs index 4287ccdcd98a..cb00abeecbf3 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingErrorCategory.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingErrorCategory.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingState.cs index 805f8ad7c707..6cfcd109a71c 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SchedulingState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/StartTaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/StartTaskState.cs index 22bd0b2ad0cc..a199f31a2f52 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/StartTaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/StartTaskState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SubtaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SubtaskState.cs index 72a760ff0e58..b3e18dac02da 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SubtaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/SubtaskState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/TaskState.cs b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/TaskState.cs index 5a0ee344eeaf..5c5c15cb9647 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/TaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/Enumerations/TaskState.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Common/ExponentialRetry.cs b/src/Batch/Client/Src/Azure.Batch/Common/ExponentialRetry.cs index a6247dafa029..249ce43ad43a 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/ExponentialRetry.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/ExponentialRetry.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/IRetryPolicy.cs b/src/Batch/Client/Src/Azure.Batch/Common/IRetryPolicy.cs index 6db4e8288f4a..e7ebdc0c3b36 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/IRetryPolicy.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/IRetryPolicy.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/LinearRetry.cs b/src/Batch/Client/Src/Azure.Batch/Common/LinearRetry.cs index c1b61ee72a15..a50b566fdf9f 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/LinearRetry.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/LinearRetry.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/NoRetry.cs b/src/Batch/Client/Src/Azure.Batch/Common/NoRetry.cs index f28d8e071a9f..b81799ec98f1 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/NoRetry.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/NoRetry.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/OperationContext.cs b/src/Batch/Client/Src/Azure.Batch/Common/OperationContext.cs index 941f48f64250..5be456ffa0e4 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/OperationContext.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/OperationContext.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/RequestInformation.cs b/src/Batch/Client/Src/Azure.Batch/Common/RequestInformation.cs index e9d93b9b1160..bebd7a3f47d1 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/RequestInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/RequestInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/RequestResult.cs b/src/Batch/Client/Src/Azure.Batch/Common/RequestResult.cs index 24cc2a30be39..a256f7df84f7 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/RequestResult.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/RequestResult.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/RetryDecision.cs b/src/Batch/Client/Src/Azure.Batch/Common/RetryDecision.cs index 0c9b1c6125a7..8966c49a1aab 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/RetryDecision.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/RetryDecision.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/Common/RetryPolicyCommon.cs b/src/Batch/Client/Src/Azure.Batch/Common/RetryPolicyCommon.cs index 6a53255a0de3..e0062b6659a9 100644 --- a/src/Batch/Client/Src/Azure.Batch/Common/RetryPolicyCommon.cs +++ b/src/Batch/Client/Src/Azure.Batch/Common/RetryPolicyCommon.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Common { diff --git a/src/Batch/Client/Src/Azure.Batch/ComputeNode.cs b/src/Batch/Client/Src/Azure.Batch/ComputeNode.cs index 88600ba4a901..300610d03f40 100644 --- a/src/Batch/Client/Src/Azure.Batch/ComputeNode.cs +++ b/src/Batch/Client/Src/Azure.Batch/ComputeNode.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/ComputeNodeFile.cs b/src/Batch/Client/Src/Azure.Batch/ComputeNodeFile.cs index 82d1a001e0ec..2b6f49ea25a1 100644 --- a/src/Batch/Client/Src/Azure.Batch/ComputeNodeFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/ComputeNodeFile.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System.Collections.Generic; using System.IO; diff --git a/src/Batch/Client/Src/Azure.Batch/ComputeNodeUser.cs b/src/Batch/Client/Src/Azure.Batch/ComputeNodeUser.cs index eee78284f22e..18b095f6d3e0 100644 --- a/src/Batch/Client/Src/Azure.Batch/ComputeNodeUser.cs +++ b/src/Batch/Client/Src/Azure.Batch/ComputeNodeUser.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/ConcurrentChangeTrackedList.cs b/src/Batch/Client/Src/Azure.Batch/ConcurrentChangeTrackedList.cs index 95d260154e46..d5435053589c 100644 --- a/src/Batch/Client/Src/Azure.Batch/ConcurrentChangeTrackedList.cs +++ b/src/Batch/Client/Src/Azure.Batch/ConcurrentChangeTrackedList.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Batch/Client/Src/Azure.Batch/Constants.cs b/src/Batch/Client/Src/Azure.Batch/Constants.cs index d5bcd2b6bef1..c7347b7859d2 100644 --- a/src/Batch/Client/Src/Azure.Batch/Constants.cs +++ b/src/Batch/Client/Src/Azure.Batch/Constants.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/DetailLevel.cs b/src/Batch/Client/Src/Azure.Batch/DetailLevel.cs index cbd3c554f385..7fe7ea1d7536 100644 --- a/src/Batch/Client/Src/Azure.Batch/DetailLevel.cs +++ b/src/Batch/Client/Src/Azure.Batch/DetailLevel.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; diff --git a/src/Batch/Client/Src/Azure.Batch/FileStaging/Constants.cs b/src/Batch/Client/Src/Azure.Batch/FileStaging/Constants.cs index a231a817412a..c449beb4337b 100644 --- a/src/Batch/Client/Src/Azure.Batch/FileStaging/Constants.cs +++ b/src/Batch/Client/Src/Azure.Batch/FileStaging/Constants.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/FileStaging/FileStagingUtils.cs b/src/Batch/Client/Src/Azure.Batch/FileStaging/FileStagingUtils.cs index 9d6fdcaa7b4f..7b64201c8160 100644 --- a/src/Batch/Client/Src/Azure.Batch/FileStaging/FileStagingUtils.cs +++ b/src/Batch/Client/Src/Azure.Batch/FileStaging/FileStagingUtils.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Concurrent; diff --git a/src/Batch/Client/Src/Azure.Batch/FileStaging/IFileStagingProvider.cs b/src/Batch/Client/Src/Azure.Batch/FileStaging/IFileStagingProvider.cs index 0ee34cda348b..48d6d4374570 100644 --- a/src/Batch/Client/Src/Azure.Batch/FileStaging/IFileStagingProvider.cs +++ b/src/Batch/Client/Src/Azure.Batch/FileStaging/IFileStagingProvider.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/AddTaskResult.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AddTaskResult.cs index cf288a6159c5..0d47cbd2c8bf 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/AddTaskResult.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/AddTaskResult.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/AffinityInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AffinityInformation.cs index fb99d1e94cff..97c3be7189a6 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/AffinityInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/AffinityInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationPackageReference.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationPackageReference.cs index cd729e124ef1..a48dee83cbf3 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationPackageReference.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationPackageReference.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationSummary.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationSummary.cs index 63073efe17d9..3a59f2e56da6 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationSummary.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ApplicationSummary.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/AuthenticationTokenSettings.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AuthenticationTokenSettings.cs index 1186f5a5a374..aea33aab3e58 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/AuthenticationTokenSettings.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/AuthenticationTokenSettings.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/AutoPoolSpecification.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AutoPoolSpecification.cs index 053b739fc16a..040ec8635650 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/AutoPoolSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/AutoPoolSpecification.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRun.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRun.cs index ddf270e5e977..2f0363365362 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRun.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRun.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRunError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRunError.cs index 07c3056bca63..80548ab18fe4 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRunError.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/AutoScaleRunError.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/AutoUserSpecification.cs b/src/Batch/Client/Src/Azure.Batch/Generated/AutoUserSpecification.cs index 8619843d0f73..083ebe121186 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/AutoUserSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/AutoUserSpecification.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/BatchError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/BatchError.cs index 3a7869aeecae..e7eedd2df46b 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/BatchError.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/BatchError.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/BatchErrorDetail.cs b/src/Batch/Client/Src/Azure.Batch/Generated/BatchErrorDetail.cs index a37179dd6bc3..dff6de97b225 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/BatchErrorDetail.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/BatchErrorDetail.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/Certificate.cs b/src/Batch/Client/Src/Azure.Batch/Generated/Certificate.cs index 72ced4113988..77f0beea166a 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/Certificate.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/Certificate.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/CertificateReference.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CertificateReference.cs index bad7774afb8d..8a0a57eb0cad 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/CertificateReference.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/CertificateReference.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/CloudJob.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudJob.cs index e9a8c85fddfe..19ca93890e43 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/CloudJob.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/CloudJob.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/CloudJobSchedule.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudJobSchedule.cs index 067d513cd004..8e59a6ca6a72 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/CloudJobSchedule.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/CloudJobSchedule.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/CloudPool.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudPool.cs index d066b0990e33..3541b9699618 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/CloudPool.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/CloudPool.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/CloudServiceConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudServiceConfiguration.cs index 1d4586f3f6df..c7edf7d69a07 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/CloudServiceConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/CloudServiceConfiguration.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/CloudTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/CloudTask.cs index 592096fca6f9..d4d9db400ad8 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/CloudTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/CloudTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNode.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNode.cs index 9f4643d69adb..0a1a5ac11cf3 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNode.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNode.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeError.cs index 27e451193264..60b1e4170526 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeError.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeError.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeInformation.cs index 4ad38f924a75..02b19a418fee 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeUser.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeUser.cs index 111e88ac6f6e..e1f69eb384f4 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeUser.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ComputeNodeUser.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/DeleteCertificateError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/DeleteCertificateError.cs index bd448f50c0fc..a7aa48d73b00 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/DeleteCertificateError.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/DeleteCertificateError.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/EnvironmentSetting.cs b/src/Batch/Client/Src/Azure.Batch/Generated/EnvironmentSetting.cs index 48abf7316d05..9bbe4aea94e7 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/EnvironmentSetting.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/EnvironmentSetting.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ErrorMessage.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ErrorMessage.cs index 5d967ecaa848..d9270cc73fa5 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ErrorMessage.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ErrorMessage.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeMapping.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeMapping.cs index a745cd8b704e..3e1ac00d28eb 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeMapping.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeMapping.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeRangeMapping.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeRangeMapping.cs index 0a9e4e66e992..be5c3fa901e0 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeRangeMapping.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ExitCodeRangeMapping.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ExitConditions.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ExitConditions.cs index 02f1b1fbb07c..b2970526bfe6 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ExitConditions.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ExitConditions.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ExitOptions.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ExitOptions.cs index 39d8ae82dead..29d11938d9af 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ExitOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ExitOptions.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/FileProperties.cs b/src/Batch/Client/Src/Azure.Batch/Generated/FileProperties.cs index 6c385fb5a1e4..169c94d3cbe4 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/FileProperties.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/FileProperties.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ImageReference.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ImageReference.cs index c937a9a7809e..ee4298695db9 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ImageReference.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ImageReference.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobConstraints.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobConstraints.cs index 9fe7c0dec625..f4eada6986ae 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobConstraints.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobConstraints.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobExecutionInformation.cs index bf1e18be7b51..c26c007e1201 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobExecutionInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobManagerTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobManagerTask.cs index 1c1b2add910e..5ac3248ebe4e 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobManagerTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobManagerTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs index 75891c2b3757..4cd1be31626b 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationAndReleaseTaskExecutionInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTask.cs index d5ca958bd0c4..cb52c30466b9 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTaskExecutionInformation.cs index ef51c074f672..4f879bbdf011 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTaskExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobPreparationTaskExecutionInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTask.cs index ef692123c188..16403d45e3aa 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTaskExecutionInformation.cs index d169056c5b62..5144c4359556 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTaskExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobReleaseTaskExecutionInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleExecutionInformation.cs index fbeb1c378c31..f653b09667c0 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleExecutionInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleStatistics.cs index 13e1f1171665..fd30ccd1a698 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobScheduleStatistics.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobSchedulingError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobSchedulingError.cs index 625a223068b1..5e04b4708668 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobSchedulingError.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobSchedulingError.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobSpecification.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobSpecification.cs index a4bfd93fcdfc..ce1d05423b53 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobSpecification.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/JobStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/JobStatistics.cs index 153a7c16edad..98793acb8357 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/JobStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/JobStatistics.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/MetadataItem.cs b/src/Batch/Client/Src/Azure.Batch/Generated/MetadataItem.cs index 7797d89bf0d0..34d0451ac31b 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/MetadataItem.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/MetadataItem.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/MultiInstanceSettings.cs b/src/Batch/Client/Src/Azure.Batch/Generated/MultiInstanceSettings.cs index 48be090438e8..bb5ba58908e3 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/MultiInstanceSettings.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/MultiInstanceSettings.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/NameValuePair.cs b/src/Batch/Client/Src/Azure.Batch/Generated/NameValuePair.cs index 03270ba2a6ba..1e641144de6d 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/NameValuePair.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/NameValuePair.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/NetworkConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/Generated/NetworkConfiguration.cs index 859be4aa4d52..60305701b13d 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/NetworkConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/NetworkConfiguration.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/NodeAgentSku.cs b/src/Batch/Client/Src/Azure.Batch/Generated/NodeAgentSku.cs index ed1658212556..9c99ebc50fbf 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/NodeAgentSku.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/NodeAgentSku.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/OSDisk.cs b/src/Batch/Client/Src/Azure.Batch/Generated/OSDisk.cs index e241fb0f97d0..07cd4d45d1a0 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/OSDisk.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/OSDisk.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/PoolInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/PoolInformation.cs index 863ce9c48c94..f69eba9f6081 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/PoolInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/PoolInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/PoolSpecification.cs b/src/Batch/Client/Src/Azure.Batch/Generated/PoolSpecification.cs index 84556c7f6bd9..d45fe4efb365 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/PoolSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/PoolSpecification.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/PoolStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/PoolStatistics.cs index 9bcc770a275b..bd50646dcf41 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/PoolStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/PoolStatistics.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/PoolUsageMetrics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/PoolUsageMetrics.cs index aaaa8c9089d5..ee972debc0c1 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/PoolUsageMetrics.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/PoolUsageMetrics.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/RecentJob.cs b/src/Batch/Client/Src/Azure.Batch/Generated/RecentJob.cs index e942b59015dd..79113bf58224 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/RecentJob.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/RecentJob.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/RemoteLoginSettings.cs b/src/Batch/Client/Src/Azure.Batch/Generated/RemoteLoginSettings.cs index 0287bc4e8d41..8199beee8082 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/RemoteLoginSettings.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/RemoteLoginSettings.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ResizeError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ResizeError.cs index c6c44e677122..a1c3c030a5fc 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ResizeError.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ResizeError.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ResourceFile.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ResourceFile.cs index e7cd8e33e618..51d7421b1676 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ResourceFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ResourceFile.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/ResourceStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/ResourceStatistics.cs index 8aa1ae581998..cc5016e32207 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/ResourceStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/ResourceStatistics.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/Schedule.cs b/src/Batch/Client/Src/Azure.Batch/Generated/Schedule.cs index ca4ece37b6d0..bd32146135fa 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/Schedule.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/Schedule.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/StartTask.cs b/src/Batch/Client/Src/Azure.Batch/Generated/StartTask.cs index 4a8a63d4cd93..b666d5682e7f 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/StartTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/StartTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/StartTaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/StartTaskInformation.cs index 9a2213468573..f5f700b72e70 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/StartTaskInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/StartTaskInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/SubtaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/SubtaskInformation.cs index ddcc6051d104..83b3bdb31552 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/SubtaskInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/SubtaskInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/TaskConstraints.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskConstraints.cs index 1c76d7ffef0c..a5c00d66b5cc 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/TaskConstraints.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/TaskConstraints.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/TaskDependencies.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskDependencies.cs index e4f4be7ca8ec..b6a07f1fea47 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/TaskDependencies.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/TaskDependencies.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/TaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskExecutionInformation.cs index d8014953f025..b13cd7c9dd37 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/TaskExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/TaskExecutionInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/TaskIdRange.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskIdRange.cs index 7029061f4c87..062c72ac7b18 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/TaskIdRange.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/TaskIdRange.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/TaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskInformation.cs index b7a5124d00a9..f4eb314243f4 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/TaskInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/TaskInformation.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingError.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingError.cs index e5a468c77f6e..1d68a6a6b1c4 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingError.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingError.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingPolicy.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingPolicy.cs index 778f06afce8c..e60d32aa2048 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingPolicy.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/TaskSchedulingPolicy.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/TaskStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/TaskStatistics.cs index b851de11bca1..e7ffd222e77e 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/TaskStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/TaskStatistics.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/UsageStatistics.cs b/src/Batch/Client/Src/Azure.Batch/Generated/UsageStatistics.cs index df5bc8c11194..0c71c3e929ca 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/UsageStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/UsageStatistics.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/UserAccount.cs b/src/Batch/Client/Src/Azure.Batch/Generated/UserAccount.cs index f5797a1480e0..236e8566c7aa 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/UserAccount.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/UserAccount.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/UserIdentity.cs b/src/Batch/Client/Src/Azure.Batch/Generated/UserIdentity.cs index 90f60143f0ca..0384ed9b1dba 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/UserIdentity.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/UserIdentity.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/VirtualMachineConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/Generated/VirtualMachineConfiguration.cs index 065be8a11b33..85f9478c08ae 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/VirtualMachineConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/VirtualMachineConfiguration.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Generated/WindowsConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/Generated/WindowsConfiguration.cs index db8501349fc8..324615daf354 100644 --- a/src/Batch/Client/Src/Azure.Batch/Generated/WindowsConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/Generated/WindowsConfiguration.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperations.cs index 954eb2c45d7a..b61df9eb177d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperationsExtensions.cs index ca2f0ba8650e..852c994ca611 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/AccountOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperations.cs index a4e33f5fa14a..925da95c2a4b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperationsExtensions.cs index b7eea430827d..10205aa84116 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ApplicationOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/BatchServiceClient.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/BatchServiceClient.cs index 463bc1f2c737..672aa0f6d736 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/BatchServiceClient.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/BatchServiceClient.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperations.cs index b41da972dc70..9b5d3d216941 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperationsExtensions.cs index d8e80870bfdf..6d2405e7d07a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/CertificateOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperations.cs index b19bd3c6e386..138c691ca069 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperationsExtensions.cs index b397648cae72..bffca4d3eebe 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ComputeNodeOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperations.cs index 70429033196e..ef3bdbb6bf4a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperationsExtensions.cs index d36012bdb42d..d5bebbaff192 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/FileOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IAccountOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IAccountOperations.cs index b8ded29a3849..0cb561f32a4e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IAccountOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IAccountOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IApplicationOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IApplicationOperations.cs index ac4b731ea419..7c35274999f8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IApplicationOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IApplicationOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IBatchServiceClient.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IBatchServiceClient.cs index 3aac13c3e17d..d70e6f1f4025 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IBatchServiceClient.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IBatchServiceClient.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ICertificateOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ICertificateOperations.cs index 322a588dc273..54b4ccca0999 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ICertificateOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ICertificateOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IComputeNodeOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IComputeNodeOperations.cs index 02bc7550104e..9edd2daf8c18 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IComputeNodeOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IComputeNodeOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IFileOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IFileOperations.cs index 427e89b6a4f5..6002293a9325 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IFileOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IFileOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobOperations.cs index d519a815ddf1..1d933dc7cdbb 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobScheduleOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobScheduleOperations.cs index ef94855253ae..4c7ffe210d5b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobScheduleOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IJobScheduleOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IPoolOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IPoolOperations.cs index ce403b191400..650ffcddfbbd 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IPoolOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/IPoolOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ITaskOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ITaskOperations.cs index 5e6ee3e0317d..f21a40c08f3f 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ITaskOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/ITaskOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperations.cs index 0af1d170c4e1..3d9295e3bbbf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperationsExtensions.cs index ca3387cbbc5d..29074b9e88f8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperations.cs index fec77796add5..6c1f736df873 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperationsExtensions.cs index a07be52e194e..0118572f5ab5 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/JobScheduleOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccessScope.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccessScope.cs index b0c8bc52dd6b..8f07f365b81e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccessScope.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccessScope.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs index 78899ce1ad57..087683d721f3 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs index c0f8a0795057..ceb1558bd3bb 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs index 2521d4a201a6..1ca366bd5d18 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AccountListNodeAgentSkusOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AffinityInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AffinityInformation.cs index cbbd107aa913..3e89630e825c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AffinityInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AffinityInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AllocationState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AllocationState.cs index 7d6dfa723e9f..61084084d9b9 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AllocationState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AllocationState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetHeaders.cs index 09c7ad07078a..03205fe8ec1d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetOptions.cs index e329d59de07a..fcf7867ec5be 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationGetOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListHeaders.cs index c9013d61c71d..33f9b3c3f063 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListNextOptions.cs index d196a52fc3e5..4907839c2e7c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListOptions.cs index 5acbc336ff00..7d3d7505c03e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationListOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationPackageReference.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationPackageReference.cs index 67f93aee8adb..a9a47633ac82 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationPackageReference.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationPackageReference.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationSummary.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationSummary.cs index aa00bfd16043..d49db1292e26 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationSummary.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ApplicationSummary.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AuthenticationTokenSettings.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AuthenticationTokenSettings.cs index 8e500b1539ba..97595157b0ef 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AuthenticationTokenSettings.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AuthenticationTokenSettings.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoPoolSpecification.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoPoolSpecification.cs index 9fe444d8799f..8984cf7d21d1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoPoolSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoPoolSpecification.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRun.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRun.cs index 79d72ca2d055..bb292ac6adc4 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRun.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRun.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRunError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRunError.cs index e4b2d078a884..a1ebd2c92af2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRunError.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoScaleRunError.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserScope.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserScope.cs index d18c54ef2a5c..04113024772a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserScope.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserScope.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserSpecification.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserSpecification.cs index 5af9746c3b30..9ef3c742b743 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/AutoUserSpecification.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchError.cs index 2497d041b6b0..c2607d925ecf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchError.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchError.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorDetail.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorDetail.cs index 5949e8a64f65..ae0a99f7d079 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorDetail.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorDetail.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorException.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorException.cs index 96f3902a0756..2ce944bd0d26 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorException.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/BatchErrorException.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CachingType.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CachingType.cs index 7112bc6b471c..2cfe1af97ab0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CachingType.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CachingType.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Certificate.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Certificate.cs index 743ad7a44eb1..36f1353860f6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Certificate.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Certificate.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddHeaders.cs index 37ed42c7ec42..d85b0797d32d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddOptions.cs index a6bbfece694f..cbbd4c096e9e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddParameter.cs index 3df158c77daf..f37c6b09e5a7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateAddParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs index 8df4b2607d7e..42e0189905e8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs index 8a9df3acbc75..e55268779673 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateCancelDeletionOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteHeaders.cs index 29f3f0157c5c..c662d98f65d2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteOptions.cs index e3fd0be652b4..a706f8b15fc0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateDeleteOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateFormat.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateFormat.cs index f64039beb6de..6f343465e513 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateFormat.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateFormat.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetHeaders.cs index 639f11a20a25..1b7299361f57 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetOptions.cs index 533ada52ecf4..06c835eddc70 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateGetOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListHeaders.cs index f7627eb735a3..10578b9024a0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListNextOptions.cs index 119a8e5379ed..6a4cce9cd864 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListOptions.cs index 1e856551c20e..73ad5ee70355 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateListOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateReference.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateReference.cs index 237428c12c48..018ddf916b6d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateReference.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateReference.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateState.cs index 4cc174b3d78e..4e8884cd6b75 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateStoreLocation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateStoreLocation.cs index 17aa42209238..9f8db0ee0aa1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateStoreLocation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateStoreLocation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateVisibility.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateVisibility.cs index 27e77bea733e..a7d735dac06a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateVisibility.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CertificateVisibility.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJob.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJob.cs index 0ebbcb983f55..d3d484d3dcae 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJob.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJob.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJobSchedule.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJobSchedule.cs index b3c3222b3ed4..d29a01200dab 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJobSchedule.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudJobSchedule.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudPool.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudPool.cs index 910dbb814bf5..66e166477505 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudPool.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudPool.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudServiceConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudServiceConfiguration.cs index c0ae35b21bdb..c86d565386a8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudServiceConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudServiceConfiguration.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTask.cs index 3c4c58dfc043..5c76db6dbe20 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTask.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs index 8240c61e47ba..0fde95359eb3 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/CloudTaskListSubtasksResult.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNode.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNode.cs index 82f98799f4a7..3357cc6d04d6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNode.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNode.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs index c0c308f05d51..1f9fdc6e10d6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs index ec109d8687ee..a32a74b27424 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeAddUserOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs index b09ef2649e7b..24905a0b3ec5 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeallocationOption.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs index 93eb345e9940..bd87acd4cdf5 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs index f7998922c4e4..9a37b69ea329 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDeleteUserOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs index 3a1eb6e5da7e..16eaa2bae6b1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs index 9dd81edec997..991723d79bd4 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeDisableSchedulingOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs index fd28f714d237..1547d13ae339 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs index 26cc200c661b..ca00a0f728e8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeEnableSchedulingOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeError.cs index faeb12eaea06..cb83fcebe447 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeError.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeError.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeFillType.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeFillType.cs index 4819ad5f0ccd..a725d1fed7b4 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeFillType.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeFillType.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs index 4d4fe4b0d937..72b5e260f659 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetOptions.cs index 7bb47596c3e6..15d3d6894ce6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs index 5df0f71c98f1..5041914b61c8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs index 1466f4b1c13a..6c5fafdbaf8c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteDesktopOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs index 188b8a73061a..f58df88a9e2d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs index 8cc416b716c9..51e941d56783 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs index 87d81b7860fe..23c5eb83068e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeGetRemoteLoginSettingsResult.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeInformation.cs index 406ac4a65763..c4cae7a52e3c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListHeaders.cs index bb0ab28ecb6a..6a2698188ac0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs index 6db8dbbdb46f..c96235643616 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListOptions.cs index fcdc3f6484e3..cabf14967f55 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeListOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs index e919ca4b3b28..39c1be866faf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOption.cs index 050c0199338b..68a6d6729a19 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOption.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs index 44cecb45b424..2ff4b064cd3d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeRebootOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs index 82c6749130ff..2dbb3f65f3b1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOption.cs index ec6735400269..375e287e0533 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOption.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs index 37538fdc44f1..47deb892f076 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeReimageOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeState.cs index 6dc33703fbca..51aefacb2c48 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs index c4a9ca0b1979..cf4fd99f3708 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs index c476a1a86051..8b1ba5a241e5 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUpdateUserOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUser.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUser.cs index 2c593e61b0c7..e5f5f4732de2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUser.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ComputeNodeUser.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DeleteCertificateError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DeleteCertificateError.cs index c0a67f20b830..54c930ac3f0e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DeleteCertificateError.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DeleteCertificateError.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DependencyAction.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DependencyAction.cs index df64bdbf563e..eaed9ab860e1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DependencyAction.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DependencyAction.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs index ba431adc2963..7ab53dbb0b4f 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableComputeNodeSchedulingOption.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableJobOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableJobOption.cs index 85b513ff0004..b51a7f28e0de 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableJobOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/DisableJobOption.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ElevationLevel.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ElevationLevel.cs index 52812cbfc6ff..9e8f0249fa38 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ElevationLevel.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ElevationLevel.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/EnvironmentSetting.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/EnvironmentSetting.cs index 3828a218e6c7..f166dfabcdce 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/EnvironmentSetting.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/EnvironmentSetting.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ErrorMessage.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ErrorMessage.cs index eb3e4199072c..9d4e0c4e8283 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ErrorMessage.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ErrorMessage.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeMapping.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeMapping.cs index a0bf3347bfc3..442f6d94fd50 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeMapping.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeMapping.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeRangeMapping.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeRangeMapping.cs index d0091bfa0c9b..13a06a609c21 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeRangeMapping.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitCodeRangeMapping.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitConditions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitConditions.cs index aad87ece4388..b6766c893a01 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitConditions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitConditions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitOptions.cs index fe62def7ab65..0aefe1af3f65 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ExitOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs index 030761e17954..69db7d39190e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs index 2e5e1c739321..5096bfb79473 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromComputeNodeOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs index 321a67bde978..736256fa3baf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs index 8e8ed25e4514..18dc034805ad 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileDeleteFromTaskOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs index 33ac788e598a..0aca948ad836 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs index 776a87e5e94c..6a8990d0610c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromComputeNodeOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs index 90b47eea86f2..101ee8949198 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskOptions.cs index 6aee3efae400..5748e5447cca 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetFromTaskOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs index 1ca40d508137..4b59373b3fcb 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs index 05b6b74bb9b6..ad6be267b740 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromComputeNodeOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs index 6085377d276f..0bd33756f818 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs index 49c03126a819..3d30887bce60 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileGetPropertiesFromTaskOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs index c6e7d08b111b..708a6fa0a6ea 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs index 5b6fa66a46b8..8ab548b4a8a2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs index d37b5017ff18..44547dd66faf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromComputeNodeOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskHeaders.cs index 29c2f75922eb..63b1d7b098b8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs index d6c9917f5f21..9b956d8f3851 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskOptions.cs index d749ea7bd552..4a33ee289fd4 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileListFromTaskOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileProperties.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileProperties.cs index 6a2180ab5f99..9fd05edf51e0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileProperties.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/FileProperties.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ImageReference.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ImageReference.cs index baaa8e1e0de8..6baa8478e2e6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ImageReference.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ImageReference.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAction.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAction.cs index 05182cc8ae30..96460ec7ec2a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAction.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAction.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddHeaders.cs index c57440a671eb..2fb581476fd1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddOptions.cs index 73912f2b1541..5be18b646c30 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddParameter.cs index 1ea4ba745a1b..397923f9cc2a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobAddParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobConstraints.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobConstraints.cs index 27a93e2627ef..8eb0fc0aec0b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobConstraints.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobConstraints.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteHeaders.cs index a4322a89cf18..1f87f0d73403 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteOptions.cs index 1b5bbc651742..7683933f5505 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDeleteOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableHeaders.cs index c1572e128a12..165eb851395e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableOptions.cs index 708bcc46e42a..b95e920fc0a2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableParameter.cs index d7afa1e4f274..2f152eec73bc 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobDisableParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableHeaders.cs index 4bd739849968..c322e5731962 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableOptions.cs index 3cec6fd7c76b..7f4025e33a46 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobEnableOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobExecutionInformation.cs index de9c22f942b8..94b9ccff5cd0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobExecutionInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs index 7e852df65ada..f8916f9966d3 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs index 8238def695c2..55546fa32147 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetAllLifetimeStatisticsOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetHeaders.cs index d9550d4eb48e..91b429755b35 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetOptions.cs index cbdc0f1583fa..769bcf2ab6ef 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobGetOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs index 6921379f519d..edccaafe96a2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs index d177c51b1ab7..cbc046a0c89b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs index cfd584ac3d32..ad29292e060f 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListFromJobScheduleOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListHeaders.cs index 4b30e5c5a83a..61657d5e4e36 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListNextOptions.cs index 0ca8be2ad862..da9f27eabbe9 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListOptions.cs index a89b23daa9bf..b1739bf1d868 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs index 5f4dc74bcb83..e525653eb8e3 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs index c2089b1b458e..bff2be612c69 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs index ef16f68e4c21..dcb1b17e1cee 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobListPreparationAndReleaseTaskStatusOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobManagerTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobManagerTask.cs index 39b99cbcfcf3..3b83dc41c04b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobManagerTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobManagerTask.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchHeaders.cs index 2f0a8796c1a1..77755b3f0e62 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchOptions.cs index ba45e2edc274..ea202547a368 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchParameter.cs index 9c54b28e9e35..0beced19fb10 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPatchParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs index c429a9a5596e..63efab5ed314 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationAndReleaseTaskExecutionInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTask.cs index e65cefd6d5e1..c30e0ab26c2f 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTask.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs index 3f3954f9b1b5..4331cd18be0a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskExecutionInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskState.cs index b08d3cabc6b6..375228d9bc99 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobPreparationTaskState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTask.cs index 2fcc27ec6feb..3ac99df0282e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTask.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs index 6b389f39038e..4fc8f1ad4fd2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskExecutionInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskState.cs index 02e9f9323105..ff32d1adca4a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobReleaseTaskState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddHeaders.cs index 998eb1f92002..6cd04cf6e350 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddOptions.cs index 30af7e0916e4..96aff6532851 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddParameter.cs index fb279414cdfa..8dd3b8bf8622 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleAddParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs index be23cf3af028..7b69ad74927f 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs index 1b6edc78d287..6cf0edc89ecd 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDeleteOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs index 379fd4a95ac0..a9920d1ad261 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableOptions.cs index b7bef37f0da7..f4f558ae508e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleDisableOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs index d035560e6c70..866ee6737eb5 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableOptions.cs index 7e8e32a0953b..b9975c14c0a6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleEnableOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs index 5ce289a35bc8..ea84d2df4a5b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExecutionInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs index 8d07c19ad737..f0a8f7d38df7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsOptions.cs index d6b102878200..f96040963a00 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleExistsOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetHeaders.cs index 7cf604a97cb1..d0ae706949f0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetOptions.cs index 77b1315df36c..0a2dc99416b2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleGetOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListHeaders.cs index 8444818b6188..5ae2651b9cc0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListNextOptions.cs index a6eb14f9cbc3..bf5d93af2b58 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListOptions.cs index 24e8e2c3cda9..c4cb5d0121b6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleListOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs index 8fb12e801b25..c99f7f1d667a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchOptions.cs index a102f9bf3f8a..e855e629787d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchParameter.cs index d7bd78fde8e9..3cd243637e00 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulePatchParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleState.cs index d53efce4652b..727379a9e243 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleStatistics.cs index 5d83e2a61893..c571bb9f47a7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleStatistics.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs index 16e836d85775..f1aa1b03514e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs index 50df40db9368..3956075d5f4e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleTerminateOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs index bc15bf2129f0..fafbb37b249a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs index 47932627216c..f70ed5232174 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs index 1b2e8f26ead3..297092b3aa64 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobScheduleUpdateParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulingError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulingError.cs index 66112eb548d1..8c8502ca1a39 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulingError.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSchedulingError.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSpecification.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSpecification.cs index ed835e627f80..7456a79d0cd2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobSpecification.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobState.cs index bcd180dcd07b..eb0383866ffd 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobStatistics.cs index 9d013ce314f8..fc3feb5cc910 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobStatistics.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateHeaders.cs index 4472a70289ee..74e0d88c1c77 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateOptions.cs index c3c2c690fe17..b572a721fc1e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateParameter.cs index 8eb0b75480c0..f3df3ab00112 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobTerminateParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateHeaders.cs index 3b9ca10cf16c..c4f58ab03c39 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateOptions.cs index ef2aeebacf78..2452195dcfd7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateParameter.cs index c1e4c2a319d9..64f5393f237e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/JobUpdateParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MetadataItem.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MetadataItem.cs index 67043535b7e3..637f4b816d53 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MetadataItem.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MetadataItem.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MultiInstanceSettings.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MultiInstanceSettings.cs index f5d37e2fab39..c2f17d478568 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MultiInstanceSettings.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/MultiInstanceSettings.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NameValuePair.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NameValuePair.cs index d22bd91837da..4ee79af87f90 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NameValuePair.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NameValuePair.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NetworkConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NetworkConfiguration.cs index 61cf72ebf536..ba39278c01e0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NetworkConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NetworkConfiguration.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeAgentSku.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeAgentSku.cs index 4705dbec8b13..ea0fe36d22f6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeAgentSku.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeAgentSku.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs index 789fdde7741a..7224b2133d3e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeDisableSchedulingParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeFile.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeFile.cs index e9e97cffeb5e..60cf16650a2b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeFile.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRebootParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRebootParameter.cs index 4d9ee68e3d5f..b3a07c267ace 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRebootParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRebootParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeReimageParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeReimageParameter.cs index c0c655e4c185..f649007d7be8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeReimageParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeReimageParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRemoveParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRemoveParameter.cs index 8af213b4981b..bd9ddc66ac52 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRemoveParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeRemoveParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeUpdateUserParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeUpdateUserParameter.cs index 5cc7c90af3f3..7c574f9f01cf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeUpdateUserParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/NodeUpdateUserParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSDisk.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSDisk.cs index 47ee5e305a12..0c7e427807f1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSDisk.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSDisk.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSType.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSType.cs index e5f9ee998820..129151c4ef28 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSType.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OSType.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnAllTasksComplete.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnAllTasksComplete.cs index a9e945c84043..361d1ec24c3d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnAllTasksComplete.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnAllTasksComplete.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnTaskFailure.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnTaskFailure.cs index 84974884f070..5d87f3f43a78 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnTaskFailure.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/OnTaskFailure.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Page.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Page.cs index 6a4602446f41..ba2742884f57 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Page.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Page.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddHeaders.cs index 26f67f5ccb0f..856b0dbc0847 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddOptions.cs index eb8657f919e0..9154757680c0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddParameter.cs index 56d88e8a488d..faf66732ac9a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolAddParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteHeaders.cs index 6d2bf7e99b71..502b8aa4bb79 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteOptions.cs index e4b5e267bdef..838ac7dc74cd 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDeleteOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs index 5014f6fdb162..5261c5388bee 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs index 8c3e62927c18..5a852e398ac2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolDisableAutoScaleOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs index 0394f9861b95..3e614be8d546 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs index 566cec89645b..73b1f3d43c81 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs index 0260c35cf6e7..cfcb2d6aba24 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEnableAutoScaleParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs index b6b07b870151..759c073ebf94 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs index 4e7fb9bc2b49..40dd1ab17e8a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs index 71e1d6942f73..59d4b157e0c1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolEvaluateAutoScaleParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsHeaders.cs index 5502c6b49b0f..beaac30b8be1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsOptions.cs index fa308b682e21..6a7d216d8bef 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolExistsOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs index fca02e8fb506..ce4766e9df5f 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs index 06e5627af812..a2b238766590 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetAllLifetimeStatisticsOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetHeaders.cs index 27ee55841fa9..c1debc60a5d4 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetOptions.cs index 7b611879f2c0..a1327e3ea5b7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolGetOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolInformation.cs index a9015adb5581..b102242484be 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolLifetimeOption.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolLifetimeOption.cs index 929964d1f9d6..5fc3af5a388c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolLifetimeOption.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolLifetimeOption.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListHeaders.cs index 2ae02a15f9ab..7aed35153d69 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListNextOptions.cs index 8f6702976c75..d0ce9e4ae9b7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListOptions.cs index af553912aea4..506e7c69e906 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs index f5a230c7520a..ab9ef8e5d28d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs index 07a76d37c8ee..7dedea1a3328 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs index e0fb9a88496c..6f3bc59bd07d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolListUsageMetricsOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchHeaders.cs index 09461df373a2..b914405ea7fc 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchOptions.cs index 16881e59c437..737a4ee6b719 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchParameter.cs index 52e795ce30da..123421ef6321 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolPatchParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs index adb1762e4843..3086e4c767e1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs index 78f96cad97a2..02e83319ed08 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolRemoveNodesOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeHeaders.cs index a0346330394c..a5a29be743b6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeOptions.cs index a8ab683c102f..c23cb51f4ac6 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeParameter.cs index 64f2c2df2231..3bcf3c13a02b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolResizeParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolSpecification.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolSpecification.cs index 8c1e569a51c3..22379afcb174 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolSpecification.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolState.cs index 299a3bcd827f..f1c9127286c7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStatistics.cs index cf349c3f840c..6b762eff7112 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStatistics.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeHeaders.cs index 70e0a5d2b4eb..7af01aceb013 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeOptions.cs index 37162d79b15d..20c49431e560 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolStopResizeOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs index 83b851d8d390..62cab62f49bd 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs index 924ca922ebda..9d2edcaf41f5 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs index a6e80f395393..16844dd1dd68 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpdatePropertiesParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs index 84275648aa0a..985588878a3c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs index 5e11c5a706c0..352e97fc7a6e 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs index 8b528dd34480..badd608f6edf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUpgradeOSParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUsageMetrics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUsageMetrics.cs index 6244238fb682..d1820e6db669 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUsageMetrics.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/PoolUsageMetrics.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/RecentJob.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/RecentJob.cs index 9ec478666a7d..d188ea37050d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/RecentJob.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/RecentJob.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResizeError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResizeError.cs index 36b977ed1343..c2738f91dfa1 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResizeError.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResizeError.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceFile.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceFile.cs index 54b3302fdb79..e7447c0474cf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceFile.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceStatistics.cs index 066f8b5afaa4..50c40174c029 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/ResourceStatistics.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Schedule.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Schedule.cs index 8846ded333c0..fc87b7e76237 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Schedule.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/Schedule.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingErrorCategory.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingErrorCategory.cs index 3622e6da0970..4f2df2d083ee 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingErrorCategory.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingErrorCategory.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingState.cs index 8642287a179c..ebfaff3241da 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SchedulingState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTask.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTask.cs index ac56e9f6b6a5..a7ccb59e86fb 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTask.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskInformation.cs index d51161603b00..bc81edb06e9d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskState.cs index 4aedfbb8df99..b75ba99cea94 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/StartTaskState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskInformation.cs index 1582443611c8..8641bbe5c414 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskState.cs index e5a5ec0b7b3b..39d7806eef0b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/SubtaskState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs index 3f8d2c03dd74..8a0432fd9474 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionOptions.cs index c87460d6c57b..3d72a133a342 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionParameter.cs index f16a161b2f1d..854e3d4106ff 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionResult.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionResult.cs index d8ace4c60c56..c6637e974c5b 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionResult.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddCollectionResult.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddHeaders.cs index 4386a41a4f34..7dc4f6e0f507 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddOptions.cs index d6c8b1a31a28..e10c41c49e8a 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddParameter.cs index d10637df90f2..ca12178aa2cf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddResult.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddResult.cs index 4ec0ced0225b..c434626513b5 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddResult.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddResult.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddStatus.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddStatus.cs index c384de65a977..edaacf7a872d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddStatus.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskAddStatus.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskConstraints.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskConstraints.cs index 9a2612eb3103..69fb6430ce51 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskConstraints.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskConstraints.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteHeaders.cs index 3b3d7026d282..1aa540eff8f2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteOptions.cs index b17640980970..34ff98b988e7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDeleteOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDependencies.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDependencies.cs index dfa073b26329..2ce53f252f60 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDependencies.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskDependencies.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskExecutionInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskExecutionInformation.cs index 25b4619b5200..dbb363356542 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskExecutionInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskExecutionInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetHeaders.cs index 5ba001297ff7..2e76d58bc886 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetOptions.cs index acaf1bc29365..7d4e1fd4b0a8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskGetOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskIdRange.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskIdRange.cs index fbc93be6cf94..d718d9d299c9 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskIdRange.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskIdRange.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskInformation.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskInformation.cs index f8d514005554..aa4984f2a994 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskInformation.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskInformation.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListHeaders.cs index 56a0c4277cda..4459629d9e37 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListNextOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListNextOptions.cs index 00b73c150a6f..fd8c6908cfb2 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListNextOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListNextOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListOptions.cs index 12f15c7afc7f..da321205f87c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs index c829dabef2c6..e326c32c284d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksOptions.cs index 07ebdadeb561..e40cd06b2e43 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskListSubtasksOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateHeaders.cs index 13c9d012183b..d346e1b6fd4d 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateOptions.cs index 032d14d0aa3b..0c142f714fc3 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskReactivateOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingError.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingError.cs index 800beb9dbb1c..1a7602daf8bf 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingError.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingError.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingPolicy.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingPolicy.cs index 2265bd355627..53c599762471 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingPolicy.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskSchedulingPolicy.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskState.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskState.cs index 8e98f57ea451..c43acc0e8f05 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskState.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskState.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskStatistics.cs index 044993b2e22a..eddb206f08c8 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskStatistics.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateHeaders.cs index 201e1af263dd..7d7e62e97194 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateOptions.cs index 0e631f0b28f8..515ac720f7b0 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskTerminateOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateHeaders.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateHeaders.cs index 103e4b8ea57d..96bfbbc9405f 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateHeaders.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateHeaders.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateOptions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateOptions.cs index 8d30bbf290f6..1820586e4446 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateOptions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateOptions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateParameter.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateParameter.cs index 669725c2ada5..f9ed9ca92317 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateParameter.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/TaskUpdateParameter.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UsageStatistics.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UsageStatistics.cs index f55cea90295c..668417e1757f 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UsageStatistics.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UsageStatistics.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserAccount.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserAccount.cs index 94dc402ce2f0..e13229d258cb 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserAccount.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserAccount.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserIdentity.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserIdentity.cs index d1b05840ffce..8b09bda9f6eb 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserIdentity.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/UserIdentity.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/VirtualMachineConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/VirtualMachineConfiguration.cs index 07ba7c42e212..4d86d746be4c 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/VirtualMachineConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/VirtualMachineConfiguration.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/WindowsConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/WindowsConfiguration.cs index ef47fefe2b92..5c0975bb9350 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/WindowsConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/Models/WindowsConfiguration.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperations.cs index 9072bbf62736..fee0da0b84ed 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperationsExtensions.cs index 85b529479d2e..ddc60bc92419 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/PoolOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperations.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperations.cs index c7a3e4969645..8740c3b00db7 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperations.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperationsExtensions.cs b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperationsExtensions.cs index f52c309f650b..bee1509edd20 100644 --- a/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperationsExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/GeneratedProtocol/TaskOperationsExtensions.cs @@ -1,16 +1,6 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/GetFileRequestByteRange.cs b/src/Batch/Client/Src/Azure.Batch/GetFileRequestByteRange.cs index db871a989da2..0808b0988ced 100644 --- a/src/Batch/Client/Src/Azure.Batch/GetFileRequestByteRange.cs +++ b/src/Batch/Client/Src/Azure.Batch/GetFileRequestByteRange.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/IFileStagingArtifact.cs b/src/Batch/Client/Src/Azure.Batch/IFileStagingArtifact.cs index 43864139f73b..35392bd70815 100644 --- a/src/Batch/Client/Src/Azure.Batch/IFileStagingArtifact.cs +++ b/src/Batch/Client/Src/Azure.Batch/IFileStagingArtifact.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/IInheritedBehaviors.cs b/src/Batch/Client/Src/Azure.Batch/IInheritedBehaviors.cs index 5dd79a384749..5e62fc1aeeb5 100644 --- a/src/Batch/Client/Src/Azure.Batch/IInheritedBehaviors.cs +++ b/src/Batch/Client/Src/Azure.Batch/IInheritedBehaviors.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/IModifiable.cs b/src/Batch/Client/Src/Azure.Batch/IModifiable.cs index d98d8376fba0..e3fd82422655 100644 --- a/src/Batch/Client/Src/Azure.Batch/IModifiable.cs +++ b/src/Batch/Client/Src/Azure.Batch/IModifiable.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/IPagedEnumerable.cs b/src/Batch/Client/Src/Azure.Batch/IPagedEnumerable.cs index 7b45cb062908..1dda4354ab29 100644 --- a/src/Batch/Client/Src/Azure.Batch/IPagedEnumerable.cs +++ b/src/Batch/Client/Src/Azure.Batch/IPagedEnumerable.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/IPagedEnumerator.cs b/src/Batch/Client/Src/Azure.Batch/IPagedEnumerator.cs index 020a8154f0ec..c098b06cebf5 100644 --- a/src/Batch/Client/Src/Azure.Batch/IPagedEnumerator.cs +++ b/src/Batch/Client/Src/Azure.Batch/IPagedEnumerator.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch diff --git a/src/Batch/Client/Src/Azure.Batch/IPropertyMetadata.cs b/src/Batch/Client/Src/Azure.Batch/IPropertyMetadata.cs index 5c73a2cf2804..a85517fd2a5a 100644 --- a/src/Batch/Client/Src/Azure.Batch/IPropertyMetadata.cs +++ b/src/Batch/Client/Src/Azure.Batch/IPropertyMetadata.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/IProtocolLayer.cs b/src/Batch/Client/Src/Azure.Batch/IProtocolLayer.cs index b75c20e9fbc0..3eba8cef0c9e 100644 --- a/src/Batch/Client/Src/Azure.Batch/IProtocolLayer.cs +++ b/src/Batch/Client/Src/Azure.Batch/IProtocolLayer.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using Microsoft.Rest.Azure; using System; diff --git a/src/Batch/Client/Src/Azure.Batch/IReadOnly.cs b/src/Batch/Client/Src/Azure.Batch/IReadOnly.cs index 312dacd69ad6..cd18944863b6 100644 --- a/src/Batch/Client/Src/Azure.Batch/IReadOnly.cs +++ b/src/Batch/Client/Src/Azure.Batch/IReadOnly.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/IRefreshable.cs b/src/Batch/Client/Src/Azure.Batch/IRefreshable.cs index f493c363010c..55315b092b47 100644 --- a/src/Batch/Client/Src/Azure.Batch/IRefreshable.cs +++ b/src/Batch/Client/Src/Azure.Batch/IRefreshable.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/ITransportObjectProvider.cs b/src/Batch/Client/Src/Azure.Batch/ITransportObjectProvider.cs index 300bd1c34c99..31b8b029e0b5 100644 --- a/src/Batch/Client/Src/Azure.Batch/ITransportObjectProvider.cs +++ b/src/Batch/Client/Src/Azure.Batch/ITransportObjectProvider.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/JobManagerTask.cs b/src/Batch/Client/Src/Azure.Batch/JobManagerTask.cs index 41fbe7591aa9..dfb2cbadf1f3 100644 --- a/src/Batch/Client/Src/Azure.Batch/JobManagerTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/JobManagerTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/JobOperations.cs b/src/Batch/Client/Src/Azure.Batch/JobOperations.cs index f6a447749aa7..cb4c6c3a5931 100644 --- a/src/Batch/Client/Src/Azure.Batch/JobOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/JobOperations.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/JobPreparationTask.cs b/src/Batch/Client/Src/Azure.Batch/JobPreparationTask.cs index 831706721356..ad4449c95833 100644 --- a/src/Batch/Client/Src/Azure.Batch/JobPreparationTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/JobPreparationTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/JobReleaseTask.cs b/src/Batch/Client/Src/Azure.Batch/JobReleaseTask.cs index bcd3a151e494..d689dbdb0f68 100644 --- a/src/Batch/Client/Src/Azure.Batch/JobReleaseTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/JobReleaseTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch diff --git a/src/Batch/Client/Src/Azure.Batch/JobScheduleOperations.cs b/src/Batch/Client/Src/Azure.Batch/JobScheduleOperations.cs index 5a9dfa0d41fd..d1b5e2b06599 100644 --- a/src/Batch/Client/Src/Azure.Batch/JobScheduleOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/JobScheduleOperations.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/JobSpecification.cs b/src/Batch/Client/Src/Azure.Batch/JobSpecification.cs index 44413e59ff75..c3ca62c873fb 100644 --- a/src/Batch/Client/Src/Azure.Batch/JobSpecification.cs +++ b/src/Batch/Client/Src/Azure.Batch/JobSpecification.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch diff --git a/src/Batch/Client/Src/Azure.Batch/NodeFile.cs b/src/Batch/Client/Src/Azure.Batch/NodeFile.cs index 13ab84bb326d..32a82e415bbc 100644 --- a/src/Batch/Client/Src/Azure.Batch/NodeFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/NodeFile.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/ODATADetailLevel.cs b/src/Batch/Client/Src/Azure.Batch/ODATADetailLevel.cs index 3d7d78e26874..340a2d91a599 100644 --- a/src/Batch/Client/Src/Azure.Batch/ODATADetailLevel.cs +++ b/src/Batch/Client/Src/Azure.Batch/ODATADetailLevel.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/ODATAMonitor.cs b/src/Batch/Client/Src/Azure.Batch/ODATAMonitor.cs index b09221ea420a..d3178f56f2cd 100644 --- a/src/Batch/Client/Src/Azure.Batch/ODATAMonitor.cs +++ b/src/Batch/Client/Src/Azure.Batch/ODATAMonitor.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/OSVersion.cs b/src/Batch/Client/Src/Azure.Batch/OSVersion.cs index 7a5dde02a623..a5965af5cef4 100644 --- a/src/Batch/Client/Src/Azure.Batch/OSVersion.cs +++ b/src/Batch/Client/Src/Azure.Batch/OSVersion.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/PagedEnumerable.cs b/src/Batch/Client/Src/Azure.Batch/PagedEnumerable.cs index 2dcd92aa5fa0..34ed9e67c723 100644 --- a/src/Batch/Client/Src/Azure.Batch/PagedEnumerable.cs +++ b/src/Batch/Client/Src/Azure.Batch/PagedEnumerable.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/PagedEnumerableExtensions.cs b/src/Batch/Client/Src/Azure.Batch/PagedEnumerableExtensions.cs index c3ebfc7a48c1..1bf773899282 100644 --- a/src/Batch/Client/Src/Azure.Batch/PagedEnumerableExtensions.cs +++ b/src/Batch/Client/Src/Azure.Batch/PagedEnumerableExtensions.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/PagedEnumeratorBase.cs b/src/Batch/Client/Src/Azure.Batch/PagedEnumeratorBase.cs index c1e18cebc756..72546a7a11cb 100644 --- a/src/Batch/Client/Src/Azure.Batch/PagedEnumeratorBase.cs +++ b/src/Batch/Client/Src/Azure.Batch/PagedEnumeratorBase.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using Microsoft.Azure.Batch.Utils; using System; diff --git a/src/Batch/Client/Src/Azure.Batch/PoolOperations.cs b/src/Batch/Client/Src/Azure.Batch/PoolOperations.cs index b0b2e3c8bd7d..bceff9c98335 100644 --- a/src/Batch/Client/Src/Azure.Batch/PoolOperations.cs +++ b/src/Batch/Client/Src/Azure.Batch/PoolOperations.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/PropertyAccessController.cs b/src/Batch/Client/Src/Azure.Batch/PropertyAccessController.cs index 251214d2c0fa..fb380b39f2ac 100644 --- a/src/Batch/Client/Src/Azure.Batch/PropertyAccessController.cs +++ b/src/Batch/Client/Src/Azure.Batch/PropertyAccessController.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/PropertyAccessor.cs b/src/Batch/Client/Src/Azure.Batch/PropertyAccessor.cs index 586cb0e44236..680bd96b3412 100644 --- a/src/Batch/Client/Src/Azure.Batch/PropertyAccessor.cs +++ b/src/Batch/Client/Src/Azure.Batch/PropertyAccessor.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/PropertyCollection.cs b/src/Batch/Client/Src/Azure.Batch/PropertyCollection.cs index 72d1f6a21e01..929dc5e47841 100644 --- a/src/Batch/Client/Src/Azure.Batch/PropertyCollection.cs +++ b/src/Batch/Client/Src/Azure.Batch/PropertyCollection.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchSharedKeyCredential.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchSharedKeyCredential.cs index 7dec8efd8658..e7bb8284d1e4 100644 --- a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchSharedKeyCredential.cs +++ b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchSharedKeyCredential.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // diff --git a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenProvider.cs b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenProvider.cs index d3fab454b356..803336e3c33a 100644 --- a/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenProvider.cs +++ b/src/Batch/Client/Src/Azure.Batch/Protocol/BatchTokenProvider.cs @@ -1,17 +1,6 @@ // -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch.Protocol { diff --git a/src/Batch/Client/Src/Azure.Batch/ProtocolLayer.cs b/src/Batch/Client/Src/Azure.Batch/ProtocolLayer.cs index fcb686145d9a..3458e8e86bf9 100644 --- a/src/Batch/Client/Src/Azure.Batch/ProtocolLayer.cs +++ b/src/Batch/Client/Src/Azure.Batch/ProtocolLayer.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/RetryPolicyProvider.cs b/src/Batch/Client/Src/Azure.Batch/RetryPolicyProvider.cs index 91c812adf5f6..a631ee269d14 100644 --- a/src/Batch/Client/Src/Azure.Batch/RetryPolicyProvider.cs +++ b/src/Batch/Client/Src/Azure.Batch/RetryPolicyProvider.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch diff --git a/src/Batch/Client/Src/Azure.Batch/StartTask.cs b/src/Batch/Client/Src/Azure.Batch/StartTask.cs index c21eac399da9..2fbc0610bbdb 100644 --- a/src/Batch/Client/Src/Azure.Batch/StartTask.cs +++ b/src/Batch/Client/Src/Azure.Batch/StartTask.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/SynchronousMethodExceptionBehavior.cs b/src/Batch/Client/Src/Azure.Batch/SynchronousMethodExceptionBehavior.cs index d27da40a075d..b1d6c487371e 100644 --- a/src/Batch/Client/Src/Azure.Batch/SynchronousMethodExceptionBehavior.cs +++ b/src/Batch/Client/Src/Azure.Batch/SynchronousMethodExceptionBehavior.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/TaskDependencies.cs b/src/Batch/Client/Src/Azure.Batch/TaskDependencies.cs index 9da66e2d60c4..bd915f3639c3 100644 --- a/src/Batch/Client/Src/Azure.Batch/TaskDependencies.cs +++ b/src/Batch/Client/Src/Azure.Batch/TaskDependencies.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/TaskFile.cs b/src/Batch/Client/Src/Azure.Batch/TaskFile.cs index 79537f78ad85..72cedea5296a 100644 --- a/src/Batch/Client/Src/Azure.Batch/TaskFile.cs +++ b/src/Batch/Client/Src/Azure.Batch/TaskFile.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/TaskIdRange.cs b/src/Batch/Client/Src/Azure.Batch/TaskIdRange.cs index 7dd7d5d06533..2e254f38a54f 100644 --- a/src/Batch/Client/Src/Azure.Batch/TaskIdRange.cs +++ b/src/Batch/Client/Src/Azure.Batch/TaskIdRange.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/TaskStateMonitor.cs b/src/Batch/Client/Src/Azure.Batch/TaskStateMonitor.cs index 1614c3b3dffb..8836ded3def1 100644 --- a/src/Batch/Client/Src/Azure.Batch/TaskStateMonitor.cs +++ b/src/Batch/Client/Src/Azure.Batch/TaskStateMonitor.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/UserIdentity.cs b/src/Batch/Client/Src/Azure.Batch/UserIdentity.cs index 48065d3e2fe3..a7ba22e7f9d5 100644 --- a/src/Batch/Client/Src/Azure.Batch/UserIdentity.cs +++ b/src/Batch/Client/Src/Azure.Batch/UserIdentity.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/Utilities.cs b/src/Batch/Client/Src/Azure.Batch/Utilities.cs index dd94efe3f7f5..d2cf28e46b9f 100644 --- a/src/Batch/Client/Src/Azure.Batch/Utilities.cs +++ b/src/Batch/Client/Src/Azure.Batch/Utilities.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Src/Azure.Batch/UtilitiesInternal.cs b/src/Batch/Client/Src/Azure.Batch/UtilitiesInternal.cs index e82722dba664..493d56c105ea 100644 --- a/src/Batch/Client/Src/Azure.Batch/UtilitiesInternal.cs +++ b/src/Batch/Client/Src/Azure.Batch/UtilitiesInternal.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// 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.Batch { diff --git a/src/Batch/Client/Src/Azure.Batch/VirtualMachineConfiguration.cs b/src/Batch/Client/Src/Azure.Batch/VirtualMachineConfiguration.cs index 7f2a0a22da67..b4fefdc53fe3 100644 --- a/src/Batch/Client/Src/Azure.Batch/VirtualMachineConfiguration.cs +++ b/src/Batch/Client/Src/Azure.Batch/VirtualMachineConfiguration.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Src/Azure.Batch/project.json b/src/Batch/Client/Src/Azure.Batch/project.json index e240d64439d3..e9146706ea05 100644 --- a/src/Batch/Client/Src/Azure.Batch/project.json +++ b/src/Batch/Client/Src/Azure.Batch/project.json @@ -8,7 +8,7 @@ "summary": "The client library for the Microsoft Azure Batch service.", "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "http://aka.ms/windowsazureapache2", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "tags": [ "Microsoft", "Azure", "Batch", "windowsazureofficial" ], "requireLicenseAcceptance": true, "releaseNotes": "See https://github.com/Azure/azure-sdk-for-net/blob/AutoRest/src/Batch/Client/changelog.md for release notes." diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/AddTaskCollectionUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/AddTaskCollectionUnitTests.cs index 0608eb995276..3ec0c0d3813f 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/AddTaskCollectionUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/AddTaskCollectionUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ApplicationPackageReferencesUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ApplicationPackageReferencesUnitTests.cs index bb1feb25b138..bcf093bab80e 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ApplicationPackageReferencesUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ApplicationPackageReferencesUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ApplicationPackageUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ApplicationPackageUnitTests.cs index 9d9d77d47f4f..7698ba172e7c 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ApplicationPackageUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ApplicationPackageUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information.  namespace Azure.Batch.Unit.Tests diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchClientUnitTest.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchClientUnitTest.cs index 553266d4c62d..ee92b1583833 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchClientUnitTest.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchClientUnitTest.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchRequestUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchRequestUnitTests.cs index f31ee7680edc..e2f2fbc719bf 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchRequestUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BatchRequestUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BindingStateConstraintUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BindingStateConstraintUnitTests.cs index 3630f814344d..cc86d5fe004a 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BindingStateConstraintUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/BindingStateConstraintUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information.  namespace Azure.Batch.Unit.Tests diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ClientUnitTestCommon.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ClientUnitTestCommon.cs index 252bc37e180e..4078f9c2d691 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ClientUnitTestCommon.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ClientUnitTestCommon.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CommitAndRefreshUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CommitAndRefreshUnitTests.cs index 9c2c1b4ba956..ed3f35a418e0 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CommitAndRefreshUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/CommitAndRefreshUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ComputeNodeUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ComputeNodeUnitTests.cs index 293be59ac890..4fe6fa058e32 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ComputeNodeUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ComputeNodeUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ConcurrentChangeTrackedListUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ConcurrentChangeTrackedListUnitTests.cs index 542a972a7120..7762ac3db20e 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ConcurrentChangeTrackedListUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ConcurrentChangeTrackedListUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/EnumUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/EnumUnitTests.cs index ceea5d01a182..a0f2d113353b 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/EnumUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/EnumUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ExceptionUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ExceptionUnitTests.cs index 06d154a12f8b..1f52e5848530 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ExceptionUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ExceptionUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/FakeClient.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/FakeClient.cs index e6a97e732a72..b4bb0a6602ce 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/FakeClient.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/FakeClient.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/FileUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/FileUnitTests.cs index d92832c520c1..6229c42e82b1 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/FileUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/FileUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/GetFileRequestByteRangeTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/GetFileRequestByteRangeTests.cs index ebc8a5fb5dc3..2a891662bd48 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/GetFileRequestByteRangeTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/GetFileRequestByteRangeTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/InterceptorUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/InterceptorUnitTests.cs index a75b21482cb2..f93ebe1ea321 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/InterceptorUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/InterceptorUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/JobAutoTerminationUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/JobAutoTerminationUnitTests.cs index c352b130b71b..060bbd4372f2 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/JobAutoTerminationUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/JobAutoTerminationUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information.  namespace Azure.Batch.Unit.Tests diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ODataUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ODataUnitTests.cs index a572ca8e4719..50d0d37a0955 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ODataUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/ODataUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/OptionsUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/OptionsUnitTests.cs index 870f2fab2a81..2097e7110446 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/OptionsUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/OptionsUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PagedCollectionUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PagedCollectionUnitTests.cs index d5fb89de0797..7533c0e5f4f4 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PagedCollectionUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PagedCollectionUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PatchUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PatchUnitTests.cs index d9a3fa439733..a4e1c9003caa 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PatchUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PatchUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PoolUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PoolUnitTests.cs index 07f38aba9399..b16c24019c20 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PoolUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PoolUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information.  namespace Azure.Batch.Unit.Tests diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyAccessorUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyAccessorUnitTests.cs index 7be6b1fe3679..8c35fb22e342 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyAccessorUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyAccessorUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyManagementUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyManagementUnitTests.cs index 1c9f734ad8a9..4c30abfe7ccb 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyManagementUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyManagementUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyUnitTests.cs index f93da1f13bc7..f37f7bbb0f2c 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/PropertyUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/RetryPolicyUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/RetryPolicyUnitTests.cs index f1ec09f5b5c0..a282a5cb1ae1 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/RetryPolicyUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/RetryPolicyUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs index 04e690ae60a8..9ee53ed46944 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StaticAnalysisUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StreamUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StreamUnitTests.cs index 4aa8d3b4c61f..cb88167a4173 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StreamUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/StreamUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/SynchronousMethodExceptionBehaviorUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/SynchronousMethodExceptionBehaviorUnitTests.cs index 86ce152c7900..602897907c3e 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/SynchronousMethodExceptionBehaviorUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/SynchronousMethodExceptionBehaviorUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TaskDependenciesUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TaskDependenciesUnitTests.cs index 3dac2ed0fe2f..6bfe331fd2e0 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TaskDependenciesUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TaskDependenciesUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TaskIdRangeUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TaskIdRangeUnitTests.cs index 56d84b889ea0..d3fae9945e00 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TaskIdRangeUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TaskIdRangeUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ComparerPropertyMapping.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ComparerPropertyMapping.cs index 929480cb4547..13862b851774 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ComparerPropertyMapping.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ComparerPropertyMapping.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ComparisonRule.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ComparisonRule.cs index 7a8999452586..1bc7af493a25 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ComparisonRule.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ComparisonRule.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/InterceptorFactory.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/InterceptorFactory.cs index 910fdb706557..cb811b37ea7b 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/InterceptorFactory.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/InterceptorFactory.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectComparer.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectComparer.cs index d64f6323117e..a8dbf67e073e 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectComparer.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectComparer.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactory.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactory.cs index beb42d93de9c..24f7a6a2b5e0 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactory.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactory.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactoryConstructionSpecification.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactoryConstructionSpecification.cs index c79fb51416ab..6d235e43827d 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactoryConstructionSpecification.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ObjectFactoryConstructionSpecification.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ReflectionHelpers.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ReflectionHelpers.cs index 1baaed7c8d79..8482f69f0554 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ReflectionHelpers.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/ReflectionHelpers.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/SourceParser.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/SourceParser.cs index 32675ae19bac..091c892f7919 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/SourceParser.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/SourceParser.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/SourceParserResult.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/SourceParserResult.cs index 8bbc240d6341..5e1e56cd5dc2 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/SourceParserResult.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/TestUtilities/SourceParserResult.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests.TestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/UtilitiesInternalUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/UtilitiesInternalUnitTests.cs index 4e993df7e168..8003cb7280e2 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/UtilitiesInternalUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/UtilitiesInternalUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/UtilitiesUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/UtilitiesUnitTests.cs index fd05fd9761d9..29dc3a7d3f53 100644 --- a/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/UtilitiesUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/Azure.Batch.Unit.Tests/UtilitiesUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Azure.Batch.Unit.Tests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AddTaskCollectionIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AddTaskCollectionIntegrationTests.cs index 1513cc67093f..037164634b33 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AddTaskCollectionIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AddTaskCollectionIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationIntegrationCommon.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationIntegrationCommon.cs index a142a30f826d..b485b9e0e6f6 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationIntegrationCommon.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationIntegrationCommon.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Application { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationManagementIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationManagementIntegrationTests.cs index 8add0e02d77e..05af3750faee 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationManagementIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationManagementIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Application { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackageFixture.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackageFixture.cs index b45fc3a968a2..61ed3f4ac773 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackageFixture.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackageFixture.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Application { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesIntegrationTests.cs index 5cc4a1987cb8..f28a667d1537 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Application { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesReferencesIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesReferencesIntegrationTests.cs index 41f8e392e65a..45bc9874f11f 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesReferencesIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesReferencesIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Application { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesReferencesOnTasksIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesReferencesOnTasksIntegrationTests.cs index 36f546dd402d..a09b31892674 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesReferencesOnTasksIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/ApplicationPackagesReferencesOnTasksIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Application { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/JobWithApplicationPackageReferencesIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/JobWithApplicationPackageReferencesIntegrationTests.cs index 09ced1e5ba42..f481390f9a73 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/JobWithApplicationPackageReferencesIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Application/JobWithApplicationPackageReferencesIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Application { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AutoScaleIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AutoScaleIntegrationTests.cs index ba5ee70b4772..17ad3c5cc9c2 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AutoScaleIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/AutoScaleIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchRequestIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchRequestIntegrationTests.cs index a83fb0d663ec..1e9e2d2fc5a5 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchRequestIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/BatchRequestIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CertificateUnitTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CertificateUnitTests.cs index 2ced2af02b75..b3d5d62b6c6f 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CertificateUnitTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CertificateUnitTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudCertificateIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudCertificateIntegrationTests.cs index e0e446c84506..11bb1876312f 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudCertificateIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudCertificateIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudJobIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudJobIntegrationTests.cs index 83d4b655dcb1..13d7c8a23f88 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudJobIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudJobIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudJobScheduleIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudJobScheduleIntegrationTests.cs index bb972325a74f..e3776c183e72 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudJobScheduleIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudJobScheduleIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudPoolIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudPoolIntegrationTests.cs index f369900ef392..aeb41fa02657 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudPoolIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudPoolIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudTaskIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudTaskIntegrationTests.cs index c040850b8fe9..9968e8124abb 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudTaskIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/CloudTaskIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/ComputeNodeIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/ComputeNodeIntegrationTests.cs index ad9c7671ea35..931e0bdb1ce8 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/ComputeNodeIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/ComputeNodeIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/EndToEndIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/EndToEndIntegrationTests.cs index f5895d279c34..cc30f8e956e3 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/EndToEndIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/EndToEndIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/IaasLinuxPoolFixture.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/IaasLinuxPoolFixture.cs index c9142c4daedc..dad6904da235 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/IaasLinuxPoolFixture.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/IaasLinuxPoolFixture.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Fixtures { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/PaasWindowsPoolFixture.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/PaasWindowsPoolFixture.cs index 9a506418c571..482b71069d09 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/PaasWindowsPoolFixture.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/PaasWindowsPoolFixture.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Fixtures { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/PoolFixture.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/PoolFixture.cs index ea80baaca9d7..19617a9184c1 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/PoolFixture.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/Fixtures/PoolFixture.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.Fixtures { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/FileUploadUtilities.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/FileUploadUtilities.cs index 3f653ef459e6..2e320386801c 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/FileUploadUtilities.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/FileUploadUtilities.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.FileStaging; diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/SynchronizationContextHelper.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/SynchronizationContextHelper.cs index 2e8689a9fbd0..615a128b4ced 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/SynchronizationContextHelper.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/SynchronizationContextHelper.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.IntegrationTestUtilities { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/TestUtilities.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/TestUtilities.cs index 532c0b343258..2723c6b92810 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/TestUtilities.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/IntegrationTestUtilities/TestUtilities.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information.  namespace BatchClientIntegrationTests.IntegrationTestUtilities diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/JobPrepReleaseIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/JobPrepReleaseIntegrationTests.cs index 949bcf6c199d..3570e004af09 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/JobPrepReleaseIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/JobPrepReleaseIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NodeFileIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NodeFileIntegrationTests.cs index 366111e7d364..c3271ee19458 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NodeFileIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/NodeFileIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/ObjectModelFeatureIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/ObjectModelFeatureIntegrationTests.cs index c65616f0e27f..a57b256cb357 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/ObjectModelFeatureIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/ObjectModelFeatureIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests { diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/TaskDependencyIntegrationTests.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/TaskDependencyIntegrationTests.cs index d4b62c61524e..bc72a21c155d 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/TaskDependencyIntegrationTests.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/TaskDependencyIntegrationTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/TestResources/Resources.cs b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/TestResources/Resources.cs index 0341ec9e6bec..1bddd2628431 100644 --- a/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/TestResources/Resources.cs +++ b/src/Batch/Client/Tests/ObjectModel/BatchClientIntegrationTests/TestResources/Resources.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchClientIntegrationTests.TestResources { diff --git a/src/Batch/Client/Tests/ObjectModel/Common/FakePage.cs b/src/Batch/Client/Tests/ObjectModel/Common/FakePage.cs index 8370c3f9082f..57376eea4baa 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/FakePage.cs +++ b/src/Batch/Client/Tests/ObjectModel/Common/FakePage.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchTestCommon { diff --git a/src/Batch/Client/Tests/ObjectModel/Common/TestCommon.cs b/src/Batch/Client/Tests/ObjectModel/Common/TestCommon.cs index fd27aa32e360..ad0f17f429d4 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/TestCommon.cs +++ b/src/Batch/Client/Tests/ObjectModel/Common/TestCommon.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchTestCommon { diff --git a/src/Batch/Client/Tests/ObjectModel/Common/TestTraits.cs b/src/Batch/Client/Tests/ObjectModel/Common/TestTraits.cs index a5f49d71fbf8..0310e441404b 100644 --- a/src/Batch/Client/Tests/ObjectModel/Common/TestTraits.cs +++ b/src/Batch/Client/Tests/ObjectModel/Common/TestTraits.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchTestCommon { diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CertificateBuilder.cs b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CertificateBuilder.cs index f8cf644215f5..c2cdd98747c0 100644 --- a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CertificateBuilder.cs +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CertificateBuilder.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace IntegrationTestCommon { diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CommonResources.cs b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CommonResources.cs index 06ec5a8d2bdc..f597fe897e1a 100644 --- a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CommonResources.cs +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/CommonResources.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace IntegrationTestCommon { diff --git a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs index 7909fc725c2a..dd9c6e6893ae 100644 --- a/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs +++ b/src/Batch/Client/Tests/ObjectModel/IntegrationTestCommon/IntegrationTestCommon.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace IntegrationTestCommon { diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs index 67f34e572436..7fcb7bcd696f 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/ApplicationPackageCommon.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchProxyIntegrationTests { diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs index 0315973a9bf4..e1bc8c8c98cd 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationJobApplicationPackageReferencesTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchProxyIntegrationTests { diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs index 9d2060fdfa7a..177df531a8b0 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/IntegrationPoolApplicationPackageReferencesTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchProxyIntegrationTests { diff --git a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/TestUtilities.cs b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/TestUtilities.cs index 2729d1c3bbda..5b942acd4862 100644 --- a/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/TestUtilities.cs +++ b/src/Batch/Client/Tests/ProtocolLayer/BatchProxyIntegrationTests/TestUtilities.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace BatchProxyIntegrationTests { diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzerTests.cs b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzerTests.cs index c935102c1b2a..359a08c306b0 100644 --- a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzerTests.cs +++ b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/ConfigureAwaitAnalyzerTests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ConfigureAwaitAnalyzerTests { diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Helpers/DiagnosticResult.cs b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Helpers/DiagnosticResult.cs index b0564992f30d..8a693e5e1054 100644 --- a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Helpers/DiagnosticResult.cs +++ b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Helpers/DiagnosticResult.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ConfigureAwaitAnalyzerTests.Helpers { diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Helpers/DiagnosticVerifier.Helper.cs b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Helpers/DiagnosticVerifier.Helper.cs index f9f4dd095544..d42454fa2ef5 100644 --- a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Helpers/DiagnosticVerifier.Helper.cs +++ b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Helpers/DiagnosticVerifier.Helper.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ConfigureAwaitAnalyzerTests { diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Verifiers/DiagnosticVerifier.cs b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Verifiers/DiagnosticVerifier.cs index 42784073f4e3..a926da7a3afe 100644 --- a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Verifiers/DiagnosticVerifier.cs +++ b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer.Tests/Verifiers/DiagnosticVerifier.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ConfigureAwaitAnalyzerTests { diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/AssemblyAttributes.cs b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/AssemblyAttributes.cs index f0e00f7194df..1326ccfb61e9 100644 --- a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/AssemblyAttributes.cs +++ b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/AssemblyAttributes.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. using System.Runtime.CompilerServices; diff --git a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/DiagnosticAnalyzer.cs b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/DiagnosticAnalyzer.cs index 8eac320da224..5dc0a18c38e5 100644 --- a/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/DiagnosticAnalyzer.cs +++ b/src/Batch/Client/Tools/ConfigureAwaitAnalyzer/ConfigureAwaitAnalyzer/DiagnosticAnalyzer.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ConfigureAwaitAnalyzer { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/BindingAccess.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/BindingAccess.cs index 44c0deb1d968..47fc4bf61709 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/BindingAccess.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/BindingAccess.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationUtilities.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationUtilities.cs index 3fbaa9c49000..de00ac73d85a 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationUtilities.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CodeGenerationUtilities.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CommentUtilities.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CommentUtilities.cs index ae659f8a90f4..63c3384277ae 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CommentUtilities.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/CommentUtilities.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/ConstructorArgumentType.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/ConstructorArgumentType.cs index 9eab6bafa378..bfb5f787ad9c 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/ConstructorArgumentType.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/ConstructorArgumentType.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/FileReader.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/FileReader.cs index af2fc12fad81..3478f5070b81 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/FileReader.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/FileReader.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/Model.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/Model.cs index 26f79b1ca4ff..031f33884794 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/Model.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/Model.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/ObjectModelTypeData.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/ObjectModelTypeData.cs index a2c99fc0d1ce..b70bf2d01fc7 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/ObjectModelTypeData.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/ObjectModelTypeData.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/PropertyData.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/PropertyData.cs index b314377f28f7..347a866fe010 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/PropertyData.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/PropertyData.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/StringUtilities.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/StringUtilities.cs index 3d3856c92dda..14abb9df7a64 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/StringUtilities.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/CodeGenerationLibrary/StringUtilities.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace CodeGenerationLibrary { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/BatchModelPartial.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/BatchModelPartial.cs index 87746643baa0..8f8ede798a95 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/BatchModelPartial.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/BatchModelPartial.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ObjectModelCodeGenerator { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/CollectionConversionSnippet.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/CollectionConversionSnippet.cs index 65da8296b204..ada66782903f 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/CollectionConversionSnippet.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/CollectionConversionSnippet.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // ------------------------------------------------------------------------------ // diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/CollectionConversionSnippetPartial.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/CollectionConversionSnippetPartial.cs index 305b06c63396..bb41900a3b3b 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/CollectionConversionSnippetPartial.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/CollectionConversionSnippetPartial.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ObjectModelCodeGenerator { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/GetTransportObjectSnippet.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/GetTransportObjectSnippet.cs index ed22ad8e0c17..3e7c0a86405e 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/GetTransportObjectSnippet.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/GetTransportObjectSnippet.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // ------------------------------------------------------------------------------ // diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/GetTransportObjectSnippetPartial.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/GetTransportObjectSnippetPartial.cs index fe389c78b89a..ca5536355983 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/GetTransportObjectSnippetPartial.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/GetTransportObjectSnippetPartial.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ObjectModelCodeGenerator { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModelClassTemplate.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModelClassTemplate.cs index a7419149e4f5..ea1bbadc48ae 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModelClassTemplate.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModelClassTemplate.cs @@ -28,19 +28,8 @@ public partial class ModelClassTemplate : ModelClassTemplateBase /// public virtual string TransformText() { - this.Write(@"// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the ""License""); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. + this.Write(@"// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModelClassTemplate.tt b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModelClassTemplate.tt index 7f7769f98c29..29daf8ea80df 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModelClassTemplate.tt +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModelClassTemplate.tt @@ -9,19 +9,8 @@ <#@ import namespace="CodeGenerationLibrary" #> <#@ parameter type="System.String" name="classContent" #> <#@ parameter type="CodeGenerationLibrary.ObjectModelTypeData" name="type" #> -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModifiableClassTemplate.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModifiableClassTemplate.cs index 57bfc1e494a4..5c414c885348 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModifiableClassTemplate.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModifiableClassTemplate.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // ------------------------------------------------------------------------------ // diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModifiableClassTemplatePartial.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModifiableClassTemplatePartial.cs index d91018a24971..3929be9ad57c 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModifiableClassTemplatePartial.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/ModifiableClassTemplatePartial.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ObjectModelCodeGenerator { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/NamedBatchRequests.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/NamedBatchRequests.cs index 1d343702c197..59aec98501be 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/NamedBatchRequests.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/NamedBatchRequests.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // ------------------------------------------------------------------------------ // diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/NamedBatchRequestsPartial.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/NamedBatchRequestsPartial.cs index 6799ba0e47e9..86356486550d 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/NamedBatchRequestsPartial.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/NamedBatchRequestsPartial.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ObjectModelCodeGenerator { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs index 45b72a19f1e1..bad46ae712ed 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/Program.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ObjectModelCodeGenerator { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/StaticReadOnlyClassTemplate.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/StaticReadOnlyClassTemplate.cs index 7b5ef4547e9a..0605fd7d0a99 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/StaticReadOnlyClassTemplate.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/StaticReadOnlyClassTemplate.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. // ------------------------------------------------------------------------------ // diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/StaticReadOnlyClassTemplatePartial.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/StaticReadOnlyClassTemplatePartial.cs index 3b83d880316a..a6ec837a6dd4 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/StaticReadOnlyClassTemplatePartial.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/ObjectModelCodeGenerator/StaticReadOnlyClassTemplatePartial.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ObjectModelCodeGenerator { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestGroup.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestGroup.cs index 7047adf42f86..63032f5fc2ef 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestGroup.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestGroup.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ProxyLayerParser { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestTemplateBuilder.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestTemplateBuilder.cs index bb207c6d39e9..170a6938cd87 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestTemplateBuilder.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestTemplateBuilder.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ProxyLayerParser { diff --git a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestTypeGenerationInfo.cs b/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestTypeGenerationInfo.cs index 3eb62d42ecd3..d644b958c95b 100644 --- a/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestTypeGenerationInfo.cs +++ b/src/Batch/Client/Tools/ObjectModelCodeGeneration/RoslynParser/BatchRequestTypeGenerationInfo.cs @@ -1,16 +1,5 @@ -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace ProxyLayerParser { diff --git a/src/Batch/Client/changelog.md b/src/Batch/Client/changelog.md index f7009532a53b..9980f073207e 100644 --- a/src/Batch/Client/changelog.md +++ b/src/Batch/Client/changelog.md @@ -1,5 +1,11 @@ ## Azure.Batch release notes +### Upcoming changes +These changes are planned but haven't been published yet. + +#### License +Moved source code and NuGet package from Apache 2.0 license to MIT license. This is more consistent with the other Azure SDKs as well as other open source projects from Microsoft such as DotNet. + ### Changes in 6.1.0 #### REST API version This version of the Batch .NET client library targets version 2017-01-01.4.0 of the Azure Batch REST API. diff --git a/src/Batch/Client/generate.cmd b/src/Batch/Client/generate.cmd new file mode 100644 index 000000000000..c763f2555ce7 --- /dev/null +++ b/src/Batch/Client/generate.cmd @@ -0,0 +1,22 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: +setlocal +@echo off +set autoRestVersion=1.0.0-Nightly20170209 + +if "%1" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/a722fd567a8baa665eff006cbb7f9d969441aba6/batch/2017-01-01.4.0/swagger/BatchService.json" +) else ( + set specFile="%1" +) + +set repoRoot=%~dp0..\..\.. +set generateFolder=%~dp0src\Azure.Batch\GeneratedProtocol + +if exist %generateFolder% rd /S /Q %generateFolder% + +call "%repoRoot%\tools\autorest.gen.cmd" %specFile% Microsoft.Azure.Batch.Protocol %autoRestVersion% %generateFolder% MICROSOFT_MIT_NO_VERSION "-ft 1 -disablesimplifier" + +endlocal \ No newline at end of file From ffefba73aedb72c6de1f7c5f458ec63409ca0b45 Mon Sep 17 00:00:00 2001 From: matthchr Date: Mon, 13 Mar 2017 09:50:09 -0700 Subject: [PATCH 087/137] Minor updates to Batch readme and changelog --- src/Batch/Client/README.md | 2 +- src/Batch/Client/changelog.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Batch/Client/README.md b/src/Batch/Client/README.md index d8b5400a9a68..efd13f94755f 100644 --- a/src/Batch/Client/README.md +++ b/src/Batch/Client/README.md @@ -1,5 +1,5 @@ # License notes -The Azure Batch C# client is now under the MIT license. Prior to 3/10/2017 it was under the Apache 2.0 license. +The Azure Batch C# client is now under the MIT license. Prior to March 10 2017 it was under the Apache 2.0 license. # Azure Batch client developer guide Batch.sln is your one stop shop for all things related to the Azure Batch C# client library. This solution file contains all of the projects affiliated with the Azure Batch client (including testing and tooling). diff --git a/src/Batch/Client/changelog.md b/src/Batch/Client/changelog.md index 9980f073207e..6a76870e9e01 100644 --- a/src/Batch/Client/changelog.md +++ b/src/Batch/Client/changelog.md @@ -4,7 +4,7 @@ These changes are planned but haven't been published yet. #### License -Moved source code and NuGet package from Apache 2.0 license to MIT license. This is more consistent with the other Azure SDKs as well as other open source projects from Microsoft such as DotNet. +Moved source code and NuGet package from Apache 2.0 license to MIT license. This is more consistent with the other Azure SDKs as well as other open source projects from Microsoft such as .NET. ### Changes in 6.1.0 #### REST API version From e642a8bc8fa12a9ccd1af30883627400ae2c1b7f Mon Sep 17 00:00:00 2001 From: Abhijeet Date: Mon, 13 Mar 2017 16:16:23 -0700 Subject: [PATCH 088/137] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6c6b75f427c..4030243f5007 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ that take advantage of scalable cloud computing resources. * Netstandard 1.5, based on the NetCore framework ### Prerequisites: - Install .Net CoreCLR Preview 2 using [these steps](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0-preview2-download.md). + Install .Net CoreCLR Preview 2 using [these steps](https://download.microsoft.com/download/A/3/8/A38489F3-9777-41DD-83F8-2CBDFAB2520C/DotNetCore.1.0.0-VS2015Tools.Preview2.exe). ### To build: From 3bfb9cc3973dab2d483355279cc221ee606c35c0 Mon Sep 17 00:00:00 2001 From: Deepak Shankargouda Date: Tue, 14 Mar 2017 12:42:18 -0700 Subject: [PATCH 089/137] Picking appropriate derived type when serializing/deserializing (#2855) * stashin g change * Fixing bug 1842 in AutoRest * Fixed comment * Fixed serialization logic * Add Serialization test --- .../JsonTransformationConverterTest.cs | 42 ++++++++++++++- .../PolymorphicJsonConverterTest/Pet.cs | 51 +++++++++++++++++++ .../Serialization/PolymorphicJsonConverter.cs | 5 +- .../PolymorphicSerializeJsonConverter.cs | 9 ++-- 4 files changed, 102 insertions(+), 5 deletions(-) create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Resources/PolymorphicJsonConverterTest/Pet.cs diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/JsonTransformationConverterTest.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/JsonTransformationConverterTest.cs index bf3603ee242d..afbfa4b173c6 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/JsonTransformationConverterTest.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/JsonTransformationConverterTest.cs @@ -6,6 +6,7 @@ using Newtonsoft.Json; using Xunit; using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Tests.Resources.PolymorphicJsonConverterTest; namespace Microsoft.Rest.ClientRuntime.Azure.Test { @@ -353,6 +354,45 @@ public void TestDeserializationOfResourceWithConflictingProperties() }"; var newJson = JsonConvert.SerializeObject(deserializedResource, deserializeSettings); Assert.Equal(expectedSerializedJson, newJson); - } + } + + [Fact] + public void TestPolymorphicJsonDeserializer() + { + var testJson = @"{ + ""speed"": 100, + ""name"": ""Chester"", + ""PetType"":""Horse"" + }"; + var deserializeSettings = new JsonSerializerSettings() + { + Formatting = Formatting.Indented, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver() + }; + deserializeSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("PetType")); + var pet = SafeJsonConvert.DeserializeObject(testJson, deserializeSettings); + Assert.Equal(pet.GetType().ToString(), "Microsoft.Rest.ClientRuntime.Tests.Resources.PolymorphicJsonConverterTest.Horse"); + + } + + [Fact] + public void TestPolymorphicJsonSerializer() + { + var horseyText = "{ \"PetType\": \"Horse\", \"speed\": 21, \"name\": \"Spike\"}"; + var horsey = new Horse() { Name="Spike", Speed=21 }; + var serializeSettings = new JsonSerializerSettings() + { + Formatting = Formatting.Indented, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver() + }; + serializeSettings.Converters.Add(new PolymorphicSerializeJsonConverter("PetType")); + var horseyJson = SafeJsonConvert.SerializeObject(horsey, serializeSettings); + Assert.Equal(horseyJson.Replace("\n", "").Replace("\r", ""), horseyText); + } + } } diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Resources/PolymorphicJsonConverterTest/Pet.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Resources/PolymorphicJsonConverterTest/Pet.cs new file mode 100644 index 000000000000..6b4984dabd12 --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Resources/PolymorphicJsonConverterTest/Pet.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Newtonsoft.Json; + +namespace Microsoft.Rest.ClientRuntime.Tests.Resources.PolymorphicJsonConverterTest +{ + [JsonObject("Pet")] + public class Pet + { + /// + /// Initializes a new instance of the Pet class. + /// + public Pet() { } + + /// + /// Initializes a new instance of the Pet class. + /// + public Pet(string name = default(string)) + { + Name = name; + } + + /// + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + } + public class Horse : Pet + { + /// + /// Initializes a new instance of the Horse class. + /// + public Horse() { } + + /// + /// Initializes a new instance of the Horse class. + /// + public Horse(string name = default(string), int? speed = default(int?)) + : base(name) + { + Speed = speed; + } + + /// + /// + [JsonProperty(PropertyName = "speed")] + public int? Speed { get; set; } + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/PolymorphicJsonConverter.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/PolymorphicJsonConverter.cs index aae83a26e921..57f46d6024c8 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/PolymorphicJsonConverter.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/PolymorphicJsonConverter.cs @@ -36,7 +36,10 @@ public static Type GetDerivedType(Type baseType, string name) string typeName = type.Name; if (type.GetCustomAttributes().Any()) { - typeName = type.GetCustomAttribute().Id; + // if the derived type json object attribute is same as that of the base then it is an inherited attribute + // hence ignore it and return the derived type as the name of the derived type class itself + var derivedTypeId = type.GetCustomAttribute()?.Id; + typeName = (string.IsNullOrEmpty(derivedTypeId) || derivedTypeId == baseType.GetTypeInfo().GetCustomAttribute()?.Id) ? type.Name : derivedTypeId; } if (typeName != null && typeName.Equals(name, StringComparison.OrdinalIgnoreCase)) { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/PolymorphicSerializeJsonConverter.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/PolymorphicSerializeJsonConverter.cs index 14887336c85f..be856464b101 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/PolymorphicSerializeJsonConverter.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/PolymorphicSerializeJsonConverter.cs @@ -84,11 +84,14 @@ public override void WriteJson(JsonWriter writer, } string typeName = value.GetType().Name; - if (value.GetType().GetTypeInfo().GetCustomAttributes().Any()) + // check if the jsonobject attribute was inherited from basetype, if yes, we don't want to use it to serialize the object + var baseTypeAttribute = value.GetType().GetTypeInfo().BaseType.GetTypeInfo().GetCustomAttribute()?.Id; + var derivedTypeAttribute = value.GetType().GetTypeInfo().GetCustomAttribute()?.Id; + if (!string.IsNullOrEmpty(derivedTypeAttribute) && derivedTypeAttribute!=baseTypeAttribute) { - typeName = value.GetType().GetTypeInfo().GetCustomAttribute().Id; + typeName = derivedTypeAttribute; } - + // Add discriminator field writer.WriteStartObject(); writer.WritePropertyName(Discriminator); From 708dd1e677079ea5ba60428f8f63459d214e56bf Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Wed, 15 Mar 2017 09:09:28 +0000 Subject: [PATCH 090/137] Update generate.cmd with the exact commit in the spec repository for Traffic Manager 2017-03-01 --- .../Microsoft.Azure.Management.TrafficManager/generate.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd index f634c924c690..6d1589716271 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd @@ -6,7 +6,7 @@ @echo off set autoRestVersion=0.16.0 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-trafficmanager/2017-03-01/swagger/trafficmanager.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/776baa315cfda36195fe4b7f38f56e6fa34f1819/arm-trafficmanager/2017-03-01/swagger/trafficmanager.json" ) else ( set specFile="%1" ) From 867fe9d5ac1c2bde7696d409981fcda905fb60c7 Mon Sep 17 00:00:00 2001 From: Johannes Bader Date: Wed, 15 Mar 2017 09:27:11 -0700 Subject: [PATCH 091/137] ClientRuntime: Don't serialize protected members. (#2915) * test case * applying fix * bump version * undo version bump --- .../JsonSerializationTests.cs | 7 +++++-- .../Microsoft.Rest.ClientRuntime.Tests/Resources/Animal.cs | 6 +++++- .../Serialization/ReadOnlyJsonContractResolver.cs | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/JsonSerializationTests.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/JsonSerializationTests.cs index c08bfa3866e9..e1534dbdefed 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/JsonSerializationTests.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/JsonSerializationTests.cs @@ -100,9 +100,12 @@ public void RawJsonIsSerialized() serializeSettings.ReferenceLoopHandling = ReferenceLoopHandling.Serialize; serializeSettings.ContractResolver = new ReadOnlyJsonContractResolver(); - var firstAlienJson = JsonConvert.SerializeObject(new Alien("green") { Name = "autorest", Planet = "Mars", Body = JObject.Parse(@"{ ""custom"" : ""json"" }") }, + var firstAlienJson = JsonConvert.SerializeObject(new Alien("green", "quite decent") { Name = "autorest", Planet = "Mars", Body = JObject.Parse(@"{ ""custom"" : ""json"" }") }, Formatting.Indented, serializeSettings); + Assert.DoesNotContain(@"""color""", firstAlienJson); + Assert.DoesNotContain(@"""smell""", firstAlienJson); + var firstAlien = JsonConvert.DeserializeObject(firstAlienJson, serializeSettings); string secondAlienJson = @"{ @@ -131,7 +134,7 @@ public void ReadOnlyPropertiesWorkStandalone() serializeSettings.ReferenceLoopHandling = ReferenceLoopHandling.Serialize; serializeSettings.ContractResolver = new ReadOnlyJsonContractResolver(); - var firstAlienJson = JsonConvert.SerializeObject(new Alien("green") { Name = "autorest", Planet = "Mars" }, + var firstAlienJson = JsonConvert.SerializeObject(new Alien("green", "quite decent") { Name = "autorest", Planet = "Mars" }, Formatting.Indented, serializeSettings); var firstAlien = JsonConvert.DeserializeObject(firstAlienJson, serializeSettings); diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Resources/Animal.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Resources/Animal.cs index d2f8f0c00586..153ec5de9a0f 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Resources/Animal.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Resources/Animal.cs @@ -52,9 +52,10 @@ public Alien() } - public Alien(string color) + public Alien(string color, string smell) { Color = color; + Smell = smell; } private string _planet; @@ -65,6 +66,9 @@ public Alien(string color) [JsonProperty("color")] public string Color { get; private set; } + [JsonProperty("smell")] + public string Smell { get; protected set; } + [JsonProperty("name")] public string Name { get; set; } diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/ReadOnlyJsonContractResolver.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/ReadOnlyJsonContractResolver.cs index 0569e4e9ec4f..b5320d95fba1 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/ReadOnlyJsonContractResolver.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/Serialization/ReadOnlyJsonContractResolver.cs @@ -28,7 +28,7 @@ protected override JsonProperty CreateProperty( if (propertyInfo != null) { jsonProperty.ShouldSerialize = t => - (propertyInfo.SetMethod != null && !propertyInfo.SetMethod.IsPrivate) || + (propertyInfo.SetMethod != null && !propertyInfo.SetMethod.IsPrivate && !propertyInfo.SetMethod.IsFamily) || (propertyInfo.GetMethod != null && propertyInfo.GetMethod.IsStatic); } From dd1bf6983cc61deda9c15c258f300d875e1b4db8 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Mon, 13 Mar 2017 16:05:35 -0700 Subject: [PATCH 092/137] Virtual Network Gateway Connection tests for Ipsec Policy Added virtual network gateway connection tests for ipsec policies Added VirtualNetworkGatewayConnection Ipsec Policies Test record Test Cases updated to use field names Connection Ipsec Policies Test session data Ipsec policies Test added for virtual network gateway connections --- ...atewayConnectionWithIpsecPoliciesTest.json | 5540 +++++++++++++++++ .../Tests/GatewayOperationsTests.cs | 235 + 2 files changed, 5775 insertions(+) create mode 100644 src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json new file mode 100644 index 000000000000..7568b934988f --- /dev/null +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json @@ -0,0 +1,5540 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b69926-2909-49a1-9458-9a3c781db181" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "8341394e-66d0-4d49-8631-29fc993b2ac4" + ], + "x-ms-correlation-request-id": [ + "8341394e-66d0-4d49-8631-29fc993b2ac4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033325Z:8341394e-66d0-4d49-8631-29fc993b2ac4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourcegroups/csmrg8555?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlZ3JvdXBzL2NzbXJnODU1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "c12e3e4a-ab80-4569-91a6-f7aa61865e2a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555\",\r\n \"name\": \"csmrg8555\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ec6cb7c3-9fbc-407f-9ef5-0cc1e5003be8" + ], + "x-ms-correlation-request-id": [ + "ec6cb7c3-9fbc-407f-9ef5-0cc1e5003be8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033326Z:ec6cb7c3-9fbc-407f-9ef5-0cc1e5003be8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDc0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "239" + ], + "x-ms-client-request-id": [ + "11308ef4-78cb-42a1-9fc7-08e638088a7c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet744\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"etag\": \"W/\\\"471cee44-2fa7-4375-9f4c-1f916f22d554\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "444015ed-da54-439d-adb1-76f0f5cdcd66" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/444015ed-da54-439d-adb1-76f0f5cdcd66?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b55b82f7-fb49-4b84-a35d-8ff4985715d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033329Z:b55b82f7-fb49-4b84-a35d-8ff4985715d9" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/444015ed-da54-439d-adb1-76f0f5cdcd66?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ0MDE1ZWQtZGE1NC00MzlkLWFkYjEtNzZmMGY1Y2RjZDY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "559a4cfb-1f8d-4483-aaad-b3c7a18a3571" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "07ee2b20-cecd-484d-ba5d-e86a84e3f77e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033359Z:07ee2b20-cecd-484d-ba5d-e86a84e3f77e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDc0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet744\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"f8b69d07-6555-4047-aca8-b83f6571bd31\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dedaff64-577e-42c6-9dd1-480bbe3cd0d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "1b77f96e-4d86-432a-b514-5244e2264d4e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033359Z:1b77f96e-4d86-432a-b514-5244e2264d4e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDc0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7809fa9-9939-40f8-9225-b0691d905597" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet744\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"f8b69d07-6555-4047-aca8-b83f6571bd31\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d2c5fae9-1f27-48e7-b30f-87ac7f46e3c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "73c0ad97-a96e-44e9-9e94-767e02cf101b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033359Z:73c0ad97-a96e-44e9-9e94-767e02cf101b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg5Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6862\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "206" + ], + "x-ms-client-request-id": [ + "d5ea4778-9161-4d82-899b-97c317f56bb5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8977\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\",\r\n \"etag\": \"W/\\\"34673da1-6865-4833-8e50-508b5fdd97e2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"890c450d-3607-4147-baf6-0f50c75756d5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6862\",\r\n \"fqdn\": \"azsmnet6862.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "711" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f6fe2ca2-a115-4d4c-a402-f56e4ea64214" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/f6fe2ca2-a115-4d4c-a402-f56e4ea64214?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d52c8700-4e5b-4419-be2f-1d0d2edeb59a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033401Z:d52c8700-4e5b-4419-be2f-1d0d2edeb59a" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/f6fe2ca2-a115-4d4c-a402-f56e4ea64214?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjZmZTJjYTItYTExNS00ZDRjLWE0MDItZjU2ZTRlYTY0MjE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5a660bcc-19bf-4093-a4f6-071fbf561c6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "ea0a3e64-2134-478c-b2fa-efe2e7537dd4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033431Z:ea0a3e64-2134-478c-b2fa-efe2e7537dd4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg5Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8977\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\",\r\n \"etag\": \"W/\\\"7bf02b8d-22a1-4d40-b34c-8c1e6f58c929\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"890c450d-3607-4147-baf6-0f50c75756d5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6862\",\r\n \"fqdn\": \"azsmnet6862.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"7bf02b8d-22a1-4d40-b34c-8c1e6f58c929\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fefc436f-dca2-4f3a-a2ed-2cff4ebb7dab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "e28a5825-22bb-43dc-b02d-c4c64ec34684" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033431Z:e28a5825-22bb-43dc-b02d-c4c64ec34684" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg5Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef9b2e69-f438-4c10-bed1-eea33a686856" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8977\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\",\r\n \"etag\": \"W/\\\"7bf02b8d-22a1-4d40-b34c-8c1e6f58c929\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"890c450d-3607-4147-baf6-0f50c75756d5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6862\",\r\n \"fqdn\": \"azsmnet6862.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"7bf02b8d-22a1-4d40-b34c-8c1e6f58c929\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "64fcde82-1902-4019-9d1b-a694b0e2fda0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "de2f96d2-29e8-4f53-97ee-da9de6c5608c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033431Z:de2f96d2-29e8-4f53-97ee-da9de6c5608c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4ODA4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "403" + ], + "x-ms-client-request-id": [ + "90b0d000-3370-465f-8492-bce7d4c2e609" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8808\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808\",\r\n \"etag\": \"W/\\\"7d1bb4c6-3ece-4bb1-97f0-798d151d3fe2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"de0cb1dc-77a5-4d30-9e94-22d8982970e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"7d1bb4c6-3ece-4bb1-97f0-798d151d3fe2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1092" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "107b7b58-b63f-4869-8308-bc50d2923e36" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/107b7b58-b63f-4869-8308-bc50d2923e36?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "27eda6cd-2e95-40b5-8192-29373d65d9ce" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033433Z:27eda6cd-2e95-40b5-8192-29373d65d9ce" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/107b7b58-b63f-4869-8308-bc50d2923e36?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTA3YjdiNTgtYjYzZi00ODY5LTgzMDgtYmM1MGQyOTIzZTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "942e0bfa-c21f-43be-bf5d-69e7b2c553b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "85283fb9-5625-41e2-9252-cc093e938e57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033504Z:85283fb9-5625-41e2-9252-cc093e938e57" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4ODA4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8808\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de0cb1dc-77a5-4d30-9e94-22d8982970e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a68a7b02-eabc-4f60-ae6b-4d78e29e27cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "15c7ffd5-c661-48b3-b30d-9f5537317b19" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033504Z:15c7ffd5-c661-48b3-b30d-9f5537317b19" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4ODA4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a3a1c6a-4e65-426e-8235-207bed945e1a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8808\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de0cb1dc-77a5-4d30-9e94-22d8982970e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a022024f-7115-400a-b35b-5d4452564f4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "32ed69e5-4697-4aa4-8550-5dac7c12593b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033505Z:32ed69e5-4697-4aa4-8550-5dac7c12593b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4ODA4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab363897-18df-4414-a615-26de6d80bdee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ef8bdae2-2ca2-4040-93c9-87f1f54b877d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "9ac4e1ea-23c4-4184-8b5e-29bc386e7d40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033505Z:9ac4e1ea-23c4-4184-8b5e-29bc386e7d40" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n }\r\n },\r\n \"name\": \"azsmnet1494\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "835" + ], + "x-ms-client-request-id": [ + "986e0d6e-5d19-473c-8d5a-218f588636f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8916\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"etag\": \"W/\\\"a64c9fbf-c152-4853-bbec-bd01cdd1cde3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1494\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\",\r\n \"etag\": \"W/\\\"a64c9fbf-c152-4853-bbec-bd01cdd1cde3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1690" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7cb8618d-c7d4-4591-a47f-0730d1e805de" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b0fbaf99-cbad-4304-99f4-8d9ae71048e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033506Z:b0fbaf99-cbad-4304-99f4-8d9ae71048e1" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "048b6fb8-8896-473e-a6f4-b3ac57d503cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "a017d308-5730-420a-9aee-65007a2f46cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033537Z:a017d308-5730-420a-9aee-65007a2f46cc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:36:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0aaf4b74-6c5e-4730-afdd-15dca7d25666" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "6fdfd28b-d2d7-461b-bcdd-c3d378c82f08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033608Z:6fdfd28b-d2d7-461b-bcdd-c3d378c82f08" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:36:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dcd10376-0cc6-4bd3-87d1-6cbaf1778958" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "26a9d1e6-8adb-4c89-a467-f17ae8807378" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033638Z:26a9d1e6-8adb-4c89-a467-f17ae8807378" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:37:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5e3e64c4-bd07-47c1-9419-8d35c2102b8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "88d026ad-2b49-42db-b438-1e6245f5a149" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033708Z:88d026ad-2b49-42db-b438-1e6245f5a149" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:37:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "762b6055-18ac-4321-8745-fe8f9b366114" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "0bbb62a3-b5d1-433a-8a4d-0fd486aab80d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033738Z:0bbb62a3-b5d1-433a-8a4d-0fd486aab80d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:38:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6c52822a-068b-4eae-bb81-ed87a8235bc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "e246e554-b4e4-4cea-a7be-22952c52dee5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033809Z:e246e554-b4e4-4cea-a7be-22952c52dee5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:38:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6c88a4d5-8e41-4173-8643-11b9cfcbcd6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "79891e15-bad3-491b-a213-43bf607d9b08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033839Z:79891e15-bad3-491b-a213-43bf607d9b08" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:39:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "86f92d28-460e-451c-a137-90443cf62726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "fce54e08-1951-4fc3-8947-cfcebb12a381" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033909Z:fce54e08-1951-4fc3-8947-cfcebb12a381" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:39:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "89640c51-925d-49bd-87cc-e8dd1315ac12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "6e4db0db-db57-4a8a-8041-33e4af246b78" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033939Z:6e4db0db-db57-4a8a-8041-33e4af246b78" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:40:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "30ead79a-28ec-45bb-806a-afa012b1b334" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "15f5b1e3-c3b0-4935-a00c-7575bfad8f36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034010Z:15f5b1e3-c3b0-4935-a00c-7575bfad8f36" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:40:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "228682ae-8338-4809-9762-86c42f0c40ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "770516b5-692c-4d25-a553-b96fc9774ece" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034040Z:770516b5-692c-4d25-a553-b96fc9774ece" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:41:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "234c09ff-e9cb-448b-987f-d13fa2414ea0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "823e4fd7-99de-4f14-a5fa-7957028e9bf0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034110Z:823e4fd7-99de-4f14-a5fa-7957028e9bf0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:41:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "445332a1-2472-453d-91b7-37eaa0442051" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "d9b59add-868f-4c6e-a7de-d2e5e06e8efd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034140Z:d9b59add-868f-4c6e-a7de-d2e5e06e8efd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:42:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8e1afd5a-8762-4c20-995c-d75c4dac7921" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "9029d989-f85e-4e50-b900-7ad7607b2698" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034210Z:9029d989-f85e-4e50-b900-7ad7607b2698" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:42:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "055660cd-c1c7-4008-88ad-0359730c82e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "eab7c447-5a1d-4846-82fb-1118037f7979" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034241Z:eab7c447-5a1d-4846-82fb-1118037f7979" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:43:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6cc0c7fe-8a23-4fc0-93d0-8df74e2fa6a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "9207cb16-a674-4c2f-ac9a-14ddb76967db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034311Z:9207cb16-a674-4c2f-ac9a-14ddb76967db" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:43:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f8427835-55aa-48ec-9bd1-e199605343c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "c148427d-1ea0-4d5f-8ff0-2e68e241d436" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034341Z:c148427d-1ea0-4d5f-8ff0-2e68e241d436" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:44:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "685121cb-7d44-45e5-a44b-1a5189c96db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "185d1b17-6b14-49b5-90f4-a434fc29adaf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034412Z:185d1b17-6b14-49b5-90f4-a434fc29adaf" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:44:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "546834f6-1838-477d-b172-695fa7dd5e7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "fbcafe25-fed7-4f78-bdaf-edb099c2eef1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034442Z:fbcafe25-fed7-4f78-bdaf-edb099c2eef1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:45:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "22445ffb-36ed-4b20-aba6-288ec3ac64be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "1230e508-dfeb-457d-b4ef-572caa5a5225" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034512Z:1230e508-dfeb-457d-b4ef-572caa5a5225" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:45:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "de0a4aff-a469-4081-981d-01bddbadcfe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "3b2ce778-6700-4461-9efc-35a4dc39eb19" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034542Z:3b2ce778-6700-4461-9efc-35a4dc39eb19" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:46:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b3a51b24-042d-4fd2-b58e-91934f7377ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "0a838121-dc41-447f-9c29-064ea38058ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034613Z:0a838121-dc41-447f-9c29-064ea38058ff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:46:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d31f0e87-0fed-455c-b3c9-d9b77b9cfb11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "10a2a643-0f57-4ba1-90d1-ffaceb686c77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034643Z:10a2a643-0f57-4ba1-90d1-ffaceb686c77" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:47:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0b7cb23c-032e-4bc1-ba45-39b2efc201f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "320b921b-402a-45b1-88cc-eb4521b95e01" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034713Z:320b921b-402a-45b1-88cc-eb4521b95e01" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:47:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5fa1c99f-9493-4c4d-8852-452b79435484" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "f675dc16-7b32-46a4-9bc0-c4639c7a98d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034743Z:f675dc16-7b32-46a4-9bc0-c4639c7a98d6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:48:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9ab2e470-4c89-4866-a627-0400eb4da0fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "2162173c-e302-4bbf-b06b-fe07f553fd71" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034814Z:2162173c-e302-4bbf-b06b-fe07f553fd71" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:48:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d74038ce-5cb9-46d4-b822-b3ba716082a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "a38302a5-0144-4ddd-ae6e-5c15bd23c9d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034844Z:a38302a5-0144-4ddd-ae6e-5c15bd23c9d9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:49:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5ffff3c8-4eb1-45dd-8054-5b6aaf835606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "e6ff3f95-0381-4c7e-9c9e-56e56b4f3de7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034914Z:e6ff3f95-0381-4c7e-9c9e-56e56b4f3de7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:49:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3e5aeaef-3a58-4c60-a1c1-f4c7ab10118a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "f71363c9-06de-4749-8bb8-6591d72d4e2c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034944Z:f71363c9-06de-4749-8bb8-6591d72d4e2c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:50:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "60a36b30-5671-497c-9d84-bca2f50db250" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "19390fe5-3e9f-45ae-9b11-c9a062467e57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035015Z:19390fe5-3e9f-45ae-9b11-c9a062467e57" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:50:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dd764670-f210-45b0-850f-2fb97108df3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "84ffab07-083d-42bf-aa71-e6ed4c9e6a5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035045Z:84ffab07-083d-42bf-aa71-e6ed4c9e6a5f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:51:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3349b1ec-37da-4538-9c98-e743fe52b770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "fc4e9234-e5a7-4e17-a219-0237e009b56d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035115Z:fc4e9234-e5a7-4e17-a219-0237e009b56d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:51:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3d462f4b-4337-43f4-a1bb-0725c431d6a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "4b894879-2a66-4cc8-a780-e4389c82a865" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035145Z:4b894879-2a66-4cc8-a780-e4389c82a865" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:52:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "feb7bdb5-f404-4c0d-ba5c-168f2f9fdf45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "795a1311-94ff-478e-8591-0d8ae21ce31a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035216Z:795a1311-94ff-478e-8591-0d8ae21ce31a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:52:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "36fccb15-8504-467b-b602-2cdc1dfde85d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "995b539e-3b55-4094-b433-17e4419916e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035246Z:995b539e-3b55-4094-b433-17e4419916e8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:53:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "94a1f13f-1c4b-4fed-b223-7058a296f8dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "db1a4f3b-c6e3-47cf-b905-3cff07ca8a7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035316Z:db1a4f3b-c6e3-47cf-b905-3cff07ca8a7c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:53:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "05f435c5-409a-43ed-9e6b-83e4fa1912a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "52daa015-8260-4ba4-b645-608ddcf28fca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035347Z:52daa015-8260-4ba4-b645-608ddcf28fca" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:54:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "62929577-8c76-4bb5-9088-4c6469892af7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "ab659113-1e82-4a5e-a6b9-085ccc84d694" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035417Z:ab659113-1e82-4a5e-a6b9-085ccc84d694" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:54:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9a08dadb-5d98-487e-9062-e57466c2cb02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "728fae6f-84dd-4726-88b3-783688a5c734" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035447Z:728fae6f-84dd-4726-88b3-783688a5c734" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:55:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2f0a9f5c-7d7e-4e67-83a2-579f4a36a13d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "f7cc410c-aff2-43e1-9f9d-c78ee253833a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035517Z:f7cc410c-aff2-43e1-9f9d-c78ee253833a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:55:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e8b778f7-e99a-4129-a92e-1630fedc27c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "b49c9578-608b-4221-9fa5-866a32c4581d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035547Z:b49c9578-608b-4221-9fa5-866a32c4581d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:56:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6f40fd48-7217-4071-a9fb-5b99abcf39a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "72703bc3-a1e1-46bc-8533-4a38af79a6c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035618Z:72703bc3-a1e1-46bc-8533-4a38af79a6c7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:56:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fc76b2e0-4f64-4645-91d4-127ac437a68d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "9a756b0f-1fa0-402b-9bf0-1723b3f0ac63" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035648Z:9a756b0f-1fa0-402b-9bf0-1723b3f0ac63" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:57:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "90e9e048-b8f2-4a8e-9f3d-481c0d53c714" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "ab9af4f6-60a0-45db-86aa-6498c4b1be01" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035718Z:ab9af4f6-60a0-45db-86aa-6498c4b1be01" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:57:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e939daae-f324-4403-bcc6-65f431d65163" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "90ae36d4-3462-491f-a2a1-00fa39d7acd7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035748Z:90ae36d4-3462-491f-a2a1-00fa39d7acd7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:58:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "848ddcb7-4fc4-40ac-8ea0-e8b09ed167bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "0c3feb58-6260-4c47-a69e-5c83207909ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035819Z:0c3feb58-6260-4c47-a69e-5c83207909ed" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:58:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8de0affb-2e74-486b-8d92-62e41ebafcba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "a05a791d-279a-4722-8795-de8961716d95" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035849Z:a05a791d-279a-4722-8795-de8961716d95" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:59:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c5094ac5-b6b4-450c-a30e-0c74380fb72e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "91791692-435b-4bf1-a52e-3c5830300362" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035919Z:91791692-435b-4bf1-a52e-3c5830300362" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:59:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "17700fe9-7b21-4e57-af40-8e7ed91b0a5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "4b8f5cd8-3cee-4788-bc8c-caf88cee8299" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035950Z:4b8f5cd8-3cee-4788-bc8c-caf88cee8299" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:00:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "20868b85-c732-4b0f-aad6-7b4275cbb79b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "6d0c7e94-9f35-4c42-b37d-dc8cd9e8a219" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040020Z:6d0c7e94-9f35-4c42-b37d-dc8cd9e8a219" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:00:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f8649bd9-1d1f-47f8-a219-31d741f479f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "082bc3fd-7ea2-4778-8267-4854e77ce49c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040051Z:082bc3fd-7ea2-4778-8267-4854e77ce49c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:01:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "814ea4a9-0a98-4f2d-ad12-a1b0515907b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "01e03ef9-bf94-4ae4-8905-4da756decb51" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040121Z:01e03ef9-bf94-4ae4-8905-4da756decb51" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:01:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4b40d0dc-9bfe-4d10-8d06-7265502d1d03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "f2dc27a0-5904-4e18-be53-f729585c1b10" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040151Z:f2dc27a0-5904-4e18-be53-f729585c1b10" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:02:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3b88adac-25b5-44db-bed8-b05fda35fee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "d504c4b7-51e6-4a7b-bc1a-ea07b7214560" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040221Z:d504c4b7-51e6-4a7b-bc1a-ea07b7214560" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:02:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8359fe66-c6a5-46c6-87a8-47610a310621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "836165df-482b-4a46-939b-0edbdb580818" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040252Z:836165df-482b-4a46-939b-0edbdb580818" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:03:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e732b8f3-cca2-4889-9c8e-d9aa23bae41b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "0b3bcb16-09cd-40b0-98b1-364d1ffa989a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040322Z:0b3bcb16-09cd-40b0-98b1-364d1ffa989a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:03:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4c405cac-6536-4d76-a18d-d80c5693f310" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "89ecdcb5-4031-4450-b6ce-de87ede73400" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040352Z:89ecdcb5-4031-4450-b6ce-de87ede73400" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "96bcfa34-fc34-4a35-a3a7-3a52e7f07096" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "88e83bd6-4191-46d0-9260-d65cfab96de4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040422Z:88e83bd6-4191-46d0-9260-d65cfab96de4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8916\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1494\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3d54c92f-5ccb-403d-bb28-e027d50bb8ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "b4a7fb03-b840-45c1-b881-9d4e9813c91a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040423Z:b4a7fb03-b840-45c1-b881-9d4e9813c91a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf580d-27e0-4afb-8bf2-9ff77b8bfe81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8916\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1494\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "68c77cdc-4745-4e42-8b7b-d3cec3977af7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "e2d51712-bee4-40da-a086-f834cb119c69" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040423Z:e2d51712-bee4-40da-a086-f834cb119c69" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"name\": \"azsmnet8916\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"name\": \"azsmnet744\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"usePolicyBasedTrafficSelectors\": true,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 300,\r\n \"saDataSizeKilobytes\": 1024,\r\n \"ipsecEncryption\": \"AES128\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES192\",\r\n \"ikeIntegrity\": \"SHA1\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS1\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3130" + ], + "x-ms-client-request-id": [ + "f296bc47-181c-46d3-9057-e59bb66e40cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"1f52c2c7-9575-45de-9602-27812dff1b50\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E021024D7E76585617DB24043672221D25170300D06092A864886F70D0101010500048201001ADFF190A1D163F3783D99A789BAACAABC19A6004095708607536DBAC0B122CBEBE991FFDA4A11C1688EA8031C6C402E4B115144D83473719E2D10D2B892D2C924FF65313BB9F4DC02C9DE632471AC1FB9CE1CF0DF6EBE4944C44E894A9C735E3C45B7C339B770ABD1301A6B5E047A101F886C154F36D74D54FDB849589055E2C1207901030B6B1D2BAA4815C9825A801244A8EE0504DDBCDA61ED544BD32B1782E6C1286ACF0A547D5D17737C9A9005D09F1D470F91496CD85159B299053656BA40E2ED29A0A0C1C911CD4C8D8A8DF00537F01569C134E91703F8AB89D0C58E64AEAF830090E771CC63A804E737752908BD302A43D76867B15C4A6F505DBD2E302B06092A864886F70D010701301406082A864886F70D03070408402BA5A5DB68D0AF8008AE196C01927FDEBC\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": true,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 300,\r\n \"saDataSizeKilobytes\": 1024,\r\n \"ipsecEncryption\": \"AES128\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES192\",\r\n \"ikeIntegrity\": \"SHA1\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS1\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bb183974-8d3b-4d8d-91ad-419989397d47" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/bb183974-8d3b-4d8d-91ad-419989397d47?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1afcb875-32ad-4be7-b636-1747fe04b5fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040425Z:1afcb875-32ad-4be7-b636-1747fe04b5fa" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"name\": \"azsmnet8916\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"name\": \"azsmnet744\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 600,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\": \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2048\",\r\n \"pfsGroup\": \"ECP384\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3144" + ], + "x-ms-client-request-id": [ + "8d7dca54-ba79-4261-8bfb-328bed363fb4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"f1c03e06-6cdc-4478-afe6-634633e54ef6\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E021024D7E76585617DB24043672221D25170300D06092A864886F70D010101050004820100487A15E112BE5DA70F0F83BCFB36F4BBAC64838CAA09F95588B566FC486188255E4F843200878AEC91777AD45176BCC598C2B99C9DFB24A2A0FC8FE021122333F18D6DFF0B552215B28C845E2EA7D9F6E6DBF51DC220F66565892F5C912013083DC240084661E24D86CB3332043649C2617FAF39CC07DF80C00EBA954763782E904FF6E34A302815D2B421F45BCAA261197DB6E24594D0CF7ECC546963E5DFCD949CA487751443DBF71CBD21074FE8589B309846A4C3584351D4F0AAC7DCF5E27E3A8C767CF1453373B4B8AD4B634D737877E43E7B1E3853B175FD4B1BFBE93F7ADE032C2561DEF5FF5CFFEA006EFBBDC92A770229965B57EAEC397D9295B583302B06092A864886F70D010701301406082A864886F70D03070408EEFAD0E45E1F78B58008F189543776C9CD10\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 600,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\": \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2048\",\r\n \"pfsGroup\": \"ECP384\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dc18cd3a-9221-4be4-9e20-07de49e13625" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/dc18cd3a-9221-4be4-9e20-07de49e13625?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "af57be05-87be-4b40-8e38-82a9787e3aad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040456Z:af57be05-87be-4b40-8e38-82a9787e3aad" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"name\": \"azsmnet8916\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"name\": \"azsmnet744\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"usePolicyBasedTrafficSelectors\": false\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2804" + ], + "x-ms-client-request-id": [ + "feb5e312-fcab-40b6-8d81-4c6e00d334ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"8b10a0d8-7ef4-4656-aef0-e319e77ec3be\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E021024D7E76585617DB24043672221D25170300D06092A864886F70D010101050004820100868C0E0306375349B6C40972D207E031B394348A2642EF827838965EAD3612048035304ADFD83B58EC2A010FF17E311644AA48E6ADA75F027EE07226661A93393D62F550F1488C7C8F61A6B34DB6281FDB10FC02FAA1EF1A1A8E32C1C993A5E8E616D45557553AF5B7F9282974A63D8698CE5662CC0B60E179649C342F839F515527F95FA707A91BACB60761CD6CA6576E6B43CDF0103E5050D234157101528082D340F36FADF7B3057CFEBA76F6096FC29DD0ABE1669446BA9E5A08798A4A2B2F9440E89601B5736D6CCAE5A2052D5490A22CC36E4BD897E456D0DA9B83C40AFA57EBF21E1589C994A31FBB9F02F56834B02C4CA9A006002CF16E8F953960D2302B06092A864886F70D010701301406082A864886F70D0307040868297E94AE8049C78008F81116FEAB9AD9E2\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2f0e4536-1fb5-4190-a94c-19730fb6cd4a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/2f0e4536-1fb5-4190-a94c-19730fb6cd4a?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "fb7ae196-2a52-44ba-8588-f50f49a665fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040528Z:fb7ae196-2a52-44ba-8588-f50f49a665fb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/bb183974-8d3b-4d8d-91ad-419989397d47?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmIxODM5NzQtOGQzYi00ZDhkLTkxYWQtNDE5OTg5Mzk3ZDQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d68b32e3-5a06-4b87-a568-4053fee6f3cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "6b5161fe-5ce6-4525-ac62-2033394f7a64" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040455Z:6b5161fe-5ce6-4525-ac62-2033394f7a64" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"64cea58c-51a0-42d0-9f70-2d569f16c1b0\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": true,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 300,\r\n \"saDataSizeKilobytes\": 1024,\r\n \"ipsecEncryption\": \"AES128\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES192\",\r\n \"ikeIntegrity\": \"SHA1\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS1\"\r\n }\r\n ],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5a9767d4-68f2-4d76-841d-4796d59b2d1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "76e5ce7a-9aa8-4294-ba6b-fcb7648ddb2b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040456Z:76e5ce7a-9aa8-4294-ba6b-fcb7648ddb2b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02d11ff5-60d4-4f57-9f6f-e26630eab7c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"64cea58c-51a0-42d0-9f70-2d569f16c1b0\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": true,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 300,\r\n \"saDataSizeKilobytes\": 1024,\r\n \"ipsecEncryption\": \"AES128\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES192\",\r\n \"ikeIntegrity\": \"SHA1\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS1\"\r\n }\r\n ],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b47b3d5d-a73a-4299-9c3b-0a725be4ae42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "47a3a616-6e0b-49b0-a6ba-adf849919b38" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040456Z:47a3a616-6e0b-49b0-a6ba-adf849919b38" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"213da857-656f-4662-8843-e5613bd9f0ba\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 600,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\": \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2048\",\r\n \"pfsGroup\": \"ECP384\"\r\n }\r\n ],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5bc758e5-3797-403f-984e-092807088ec2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "ada74ba7-a22f-4093-82e5-a16f23fb2f66" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040527Z:ada74ba7-a22f-4093-82e5-a16f23fb2f66" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f6208a5-f1f0-447e-b991-49af798801b0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"213da857-656f-4662-8843-e5613bd9f0ba\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 600,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\": \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2048\",\r\n \"pfsGroup\": \"ECP384\"\r\n }\r\n ],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5e69af9d-4837-4229-b2e2-7eb3b2397fe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "dddbcac7-1d2b-4af7-8600-cad7456c1c0f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040528Z:dddbcac7-1d2b-4af7-8600-cad7456c1c0f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"27552817-3de0-4524-a338-43923ae71c36\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "99a852d1-a97f-4eb5-ba80-a64a183403a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "ab6cea22-a45c-4978-b09d-ec0bb7122f42" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040559Z:ab6cea22-a45c-4978-b09d-ec0bb7122f42" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab10043c-9b8a-49f3-acb0-3a4ceae3df14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"27552817-3de0-4524-a338-43923ae71c36\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "039bf6c8-ab5e-415e-98f3-c19592116b8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "dbeccd35-659d-46d8-b86b-647e5464c65c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040559Z:dbeccd35-659d-46d8-b86b-647e5464c65c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/dc18cd3a-9221-4be4-9e20-07de49e13625?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGMxOGNkM2EtOTIyMS00YmU0LTllMjAtMDdkZTQ5ZTEzNjI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7d194d34-5651-429c-8e63-03885cab6c33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "b2956c39-206a-4f03-a453-516458556995" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040527Z:b2956c39-206a-4f03-a453-516458556995" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/2f0e4536-1fb5-4190-a94c-19730fb6cd4a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmYwZTQ1MzYtMWZiNS00MTkwLWE5NGMtMTk3MzBmYjZjZDRhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6e896fc4-8379-4ece-a403-ccf768bd39ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "8de35de6-746e-4818-84cf-cef1b70c7baa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040558Z:8de35de6-746e-4818-84cf-cef1b70c7baa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54fdd7a8-83fc-4b92-a07c-65d5b6b668bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"27552817-3de0-4524-a338-43923ae71c36\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7acf6bc3-2253-451e-b2ba-c2247e2025a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "5ee73504-ee66-43bc-a2d5-c6de142a6a55" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040600Z:5ee73504-ee66-43bc-a2d5-c6de142a6a55" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a7e76a1-9298-47ac-b6a6-231a57925c16" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:06:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "1cb8f6c0-457a-48e0-8b2c-5c034c977d94" + ], + "x-ms-correlation-request-id": [ + "1cb8f6c0-457a-48e0-8b2c-5c034c977d94" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040630Z:1cb8f6c0-457a-48e0-8b2c-5c034c977d94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4651e213-5d2f-436e-91cf-b45d84b6dcc0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:06:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operationResults/38f03a5b-469a-4631-82c8-df69062c23a7?api-version=2017-03-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "38f03a5b-469a-4631-82c8-df69062c23a7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/38f03a5b-469a-4631-82c8-df69062c23a7?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "4b0cdab3-22ff-4d6f-af0a-91f3e117266c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040600Z:4b0cdab3-22ff-4d6f-af0a-91f3e117266c" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/38f03a5b-469a-4631-82c8-df69062c23a7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzhmMDNhNWItNDY5YS00NjMxLTgyYzgtZGY2OTA2MmMyM2E3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:06:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "68abc899-83c0-4661-ba23-7c60365780c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "c11cde17-70e6-4a46-9307-253ce0b18f63" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040630Z:c11cde17-70e6-4a46-9307-253ce0b18f63" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "VirtualNetworkGatewayConnectionWithIpsecPoliciesTest": [ + "csmrg8555", + "azsmnet744", + "azsmnet8977", + "azsmnet6862", + "azsmnet8808", + "azsmnet8916", + "azsmnet1494", + "azsmnet6875" + ] + }, + "Variables": { + "SubscriptionId": "87a5ac72-534b-4d65-a553-b9b956d6b8d8" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs index 59a93286263e..43ba5b3d470a 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs @@ -423,6 +423,241 @@ public void VirtualNetworkGatewayConnectionWithBgpTest() } } + // Tests Resource:-VirtualNetworkGatewayConnection with Ipsec Policies + [Fact] + public void VirtualNetworkGatewayConnectionWithIpsecPoliciesTest() + { + var handler1 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; + var handler2 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(context, handler1); + var networkManagementClient = NetworkManagementTestUtilities.GetNetworkManagementClientWithHandler(context, handler2); + + var location = NetworkManagementTestUtilities.GetResourceLocation(resourcesClient, "Microsoft.Network/connections"); + + string resourceGroupName = TestUtilities.GenerateName("csmrg"); + resourcesClient.ResourceGroups.CreateOrUpdate(resourceGroupName, + new ResourceGroup + { + Location = location + }); + + // 1. CreateVirtualNetworkGatewayConnection API + + //A. Create LocalNetworkGateway2 + string localNetworkGatewayName = TestUtilities.GenerateName(); + string gatewayIp = "192.168.3.4"; + + var localNetworkGateway = new LocalNetworkGateway() + { + Location = location, + Tags = new Dictionary() + { + {"test","value"} + }, + GatewayIpAddress = gatewayIp, + LocalNetworkAddressSpace = new AddressSpace() + { + AddressPrefixes = new List() + { + "192.168.0.0/16", + } + } + }; + + var putLocalNetworkGatewayResponse = networkManagementClient.LocalNetworkGateways.CreateOrUpdate(resourceGroupName, localNetworkGatewayName, localNetworkGateway); + Assert.Equal("Succeeded", putLocalNetworkGatewayResponse.ProvisioningState); + var getLocalNetworkGatewayResponse = networkManagementClient.LocalNetworkGateways.Get(resourceGroupName, localNetworkGatewayName); + + // B. Prerequisite:- Create VirtualNetworkGateway1 + // a. Create PublicIPAddress(Gateway Ip) using Put PublicIPAddress API + string publicIpName = TestUtilities.GenerateName(); + string domainNameLabel = TestUtilities.GenerateName(); + + var nic1publicIp = TestHelper.CreateDefaultPublicIpAddress(publicIpName, resourceGroupName, domainNameLabel, location, networkManagementClient); + Console.WriteLine("PublicIPAddress(Gateway Ip) :{0}", nic1publicIp.Id); + + // b. Create Virtual Network using Put VirtualNetwork API + string vnetName = TestUtilities.GenerateName(); + string subnetName = "GatewaySubnet"; + + var virtualNetwork = TestHelper.CreateVirtualNetwork(vnetName, subnetName, resourceGroupName, location, networkManagementClient); + + var getSubnetResponse = networkManagementClient.Subnets.Get(resourceGroupName, vnetName, subnetName); + Console.WriteLine("Virtual Network GatewaySubnet Id: {0}", getSubnetResponse.Id); + + //c. CreateVirtualNetworkGateway API (Also, Set Default local network site) + string virtualNetworkGatewayName = TestUtilities.GenerateName(); + string ipConfigName = TestUtilities.GenerateName(); + + var virtualNetworkGateway = new VirtualNetworkGateway() + { + Location = location, + Tags = new Dictionary() + { + {"key","value"} + }, + EnableBgp = false, + GatewayType = VirtualNetworkGatewayType.Vpn, + VpnType = VpnType.RouteBased, + IpConfigurations = new List() + { + new VirtualNetworkGatewayIPConfiguration() + { + Name = ipConfigName, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + PublicIPAddress = new SubResource() + { + Id = nic1publicIp.Id + }, + Subnet = new SubResource() + { + Id = getSubnetResponse.Id + } + } + }, + Sku = new VirtualNetworkGatewaySku() + { + Name = VirtualNetworkGatewaySkuName.Standard, + Tier = VirtualNetworkGatewaySkuTier.Standard + } + }; + + var putVirtualNetworkGatewayResponse = networkManagementClient.VirtualNetworkGateways.CreateOrUpdate(resourceGroupName, virtualNetworkGatewayName, virtualNetworkGateway); + Assert.Equal("Succeeded", putVirtualNetworkGatewayResponse.ProvisioningState); + Console.WriteLine("Virtual Network Gateway is deployed successfully."); + var getVirtualNetworkGatewayResponse = networkManagementClient.VirtualNetworkGateways.Get(resourceGroupName, virtualNetworkGatewayName); + + // C. CreaetVirtualNetworkGatewayConnection API - Ipsec policy and policybased TS enabled + string VirtualNetworkGatewayConnectionName = TestUtilities.GenerateName(); + var virtualNetworkGatewayConnection = new VirtualNetworkGatewayConnection() + { + Location = location, + VirtualNetworkGateway1 = getVirtualNetworkGatewayResponse, + LocalNetworkGateway2 = getLocalNetworkGatewayResponse, + ConnectionType = VirtualNetworkGatewayConnectionType.IPsec, + RoutingWeight = 3, + SharedKey = "abc" + }; + + virtualNetworkGatewayConnection.IpsecPolicies = new List() + { + new IpsecPolicy() + { + IpsecEncryption = IpsecEncryption.AES128, + IpsecIntegrity = IpsecIntegrity.SHA256, + IkeEncryption = IkeEncryption.AES192, + IkeIntegrity = IkeIntegrity.SHA1, + DhGroup = DhGroup.DHGroup2, + PfsGroup = PfsGroup.PFS1, + SaDataSizeKilobytes = 1024, + SaLifeTimeSeconds = 300 + } + }; + virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors = true; + + var putVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.CreateOrUpdate(resourceGroupName, VirtualNetworkGatewayConnectionName, virtualNetworkGatewayConnection); + Assert.Equal("Succeeded", putVirtualNetworkGatewayConnectionResponse.ProvisioningState); + + // 2. GetVirtualNetworkGatewayConnection API + var getVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.Get(resourceGroupName, VirtualNetworkGatewayConnectionName); + Console.WriteLine("GatewayConnection details:- GatewayLocation: {0}, GatewayConnectionId:{1}, VirtualNetworkGateway1 name={2} & Id={3}, LocalNetworkGateway2 name={4} & Id={5}, " + + "IpsecPolicies Count={6}, UsePolicyBasedTS={7}", + getVirtualNetworkGatewayConnectionResponse.Location, getVirtualNetworkGatewayConnectionResponse.Id, + getVirtualNetworkGatewayConnectionResponse.Name, + getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Name, getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Id, + getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Name, getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Id, + getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + + Assert.Equal(VirtualNetworkGatewayConnectionType.IPsec, getVirtualNetworkGatewayConnectionResponse.ConnectionType); + Assert.Equal(virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IpsecEncryption, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IpsecEncryption); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IpsecIntegrity, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IpsecIntegrity); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IkeEncryption, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IkeEncryption); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IkeIntegrity, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IkeIntegrity); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].DhGroup, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].DhGroup); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].PfsGroup, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].PfsGroup); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].SaDataSizeKilobytes, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].SaDataSizeKilobytes); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].SaLifeTimeSeconds, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].SaLifeTimeSeconds); + + // 3A. UpdateVirtualNetworkGatewayConnection API : update ipsec policies and disable TS + virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors = false; + virtualNetworkGatewayConnection.IpsecPolicies = new List() + { + new IpsecPolicy() + { + IpsecEncryption = IpsecEncryption.GCMAES256, + IpsecIntegrity = IpsecIntegrity.GCMAES256, + IkeEncryption = IkeEncryption.AES256, + IkeIntegrity = IkeIntegrity.SHA384, + DhGroup = DhGroup.DHGroup2048, + PfsGroup = PfsGroup.ECP384, + SaDataSizeKilobytes = 2048, + SaLifeTimeSeconds = 600 + } + }; + + putVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.CreateOrUpdate(resourceGroupName, VirtualNetworkGatewayConnectionName, virtualNetworkGatewayConnection); + Assert.Equal("Succeeded", putVirtualNetworkGatewayConnectionResponse.ProvisioningState); + + // 3B. GetVirtualNetworkGatewayConnection API after Updating + getVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.Get(resourceGroupName, VirtualNetworkGatewayConnectionName); + Console.WriteLine("GatewayConnection details:- GatewayLocation: {0}, GatewayConnectionId:{1}, VirtualNetworkGateway1 name={2} & Id={3}, LocalNetworkGateway2 name={4} & Id={5}, " + + "IpsecPolicies Count={6}, UsePolicyBasedTS={7}", + getVirtualNetworkGatewayConnectionResponse.Location, getVirtualNetworkGatewayConnectionResponse.Id, + getVirtualNetworkGatewayConnectionResponse.Name, + getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Name, getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Id, + getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Name, getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Id, + getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + + Assert.Equal(virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IpsecEncryption, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IpsecEncryption); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IpsecIntegrity, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IpsecIntegrity); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IkeEncryption, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IkeEncryption); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IkeIntegrity, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IkeIntegrity); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].DhGroup, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].DhGroup); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].PfsGroup, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].PfsGroup); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].SaDataSizeKilobytes, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].SaDataSizeKilobytes); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].SaLifeTimeSeconds, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].SaLifeTimeSeconds); + + // 4A. UpdateVirtualNetworkGatewayConnection API : remove ipsec policies + virtualNetworkGatewayConnection.IpsecPolicies = null; + + putVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.CreateOrUpdate(resourceGroupName, VirtualNetworkGatewayConnectionName, virtualNetworkGatewayConnection); + Assert.Equal("Succeeded", putVirtualNetworkGatewayConnectionResponse.ProvisioningState); + + // 4B. GetVirtualNetworkGatewayConnection API after Updating + getVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.Get(resourceGroupName, VirtualNetworkGatewayConnectionName); + Console.WriteLine("GatewayConnection details:- GatewayLocation: {0}, GatewayConnectionId:{1}, VirtualNetworkGateway1 name={2} & Id={3}, LocalNetworkGateway2 name={4} & Id={5}, " + + "IpsecPolicies Count={6}, UsePolicyBasedTS={7}", + getVirtualNetworkGatewayConnectionResponse.Location, getVirtualNetworkGatewayConnectionResponse.Id, + getVirtualNetworkGatewayConnectionResponse.Name, + getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Name, getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Id, + getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Name, getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Id, + getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + + Assert.Equal(virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + Assert.Equal(0, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count); + + // 4. ListVitualNetworkGatewayConnections API + var listVirtualNetworkGatewayConectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.List(resourceGroupName); + Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Count()); + Assert.Equal(1, listVirtualNetworkGatewayConectionResponse.Count()); + + // 5A. DeleteVirtualNetworkGatewayConnection API + networkManagementClient.VirtualNetworkGatewayConnections.Delete(resourceGroupName, VirtualNetworkGatewayConnectionName); + + // 5B. ListVitualNetworkGatewayConnections API after DeleteVirtualNetworkGatewayConnection API called + listVirtualNetworkGatewayConectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.List(resourceGroupName); + Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Count()); + Assert.Equal(0, listVirtualNetworkGatewayConectionResponse.Count()); + } + } + // Tests Resource:-VirtualNetworkGatewayConnection 5 APIs & Set-Remove default site [Fact] public void VirtualNetworkGatewayConnectionOperationsApisTest() From af97a84d38f5836628c44c43fac5f762a514c110 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Thu, 16 Mar 2017 11:04:44 -0700 Subject: [PATCH 093/137] Generated code for network new 2017-03-01 api-version (only Ipsec Policies added compared to previous swagger) --- .../ApplicationGatewaysOperations.cs | 16 +- .../BgpServiceCommunitiesOperations.cs | 2 +- ...essRouteCircuitAuthorizationsOperations.cs | 8 +- .../ExpressRouteCircuitPeeringsOperations.cs | 8 +- .../ExpressRouteCircuitsOperations.cs | 20 +-- .../ExpressRouteServiceProvidersOperations.cs | 2 +- .../Generated/LoadBalancersOperations.cs | 10 +- .../LocalNetworkGatewaysOperations.cs | 8 +- .../Generated/Models/BgpPeerStatus.cs | 7 +- .../Generated/Models/BgpSettings.cs | 3 + .../Models/ConnectionResetSharedKey.cs | 3 + .../Generated/Models/DhGroup.cs | 30 ++++ .../Models/ExpressRouteCircuitPeering.cs | 24 +-- .../Generated/Models/GatewayRoute.cs | 3 + .../Generated/Models/IkeEncryption.cs | 27 +++ .../Generated/Models/IkeIntegrity.cs | 26 +++ .../Generated/Models/IpsecEncryption.cs | 31 ++++ .../Generated/Models/IpsecIntegrity.cs | 28 +++ .../Generated/Models/IpsecPolicy.cs | 160 ++++++++++++++++++ .../Generated/Models/PfsGroup.cs | 29 ++++ .../Generated/Models/VirtualNetworkGateway.cs | 12 +- .../Models/VirtualNetworkGatewayConnection.cs | 31 +++- .../Generated/Models/VpnClientParameters.cs | 4 +- .../Generated/NetworkInterfacesOperations.cs | 14 +- .../Generated/NetworkManagementClient.cs | 2 +- .../NetworkSecurityGroupsOperations.cs | 10 +- .../Generated/NetworkWatchersOperations.cs | 26 +-- .../Generated/PacketCapturesOperations.cs | 12 +- .../Generated/PublicIpAddressesOperations.cs | 10 +- .../Generated/RouteFilterRulesOperations.cs | 10 +- .../Generated/RouteFiltersOperations.cs | 12 +- .../Generated/RouteTablesOperations.cs | 10 +- .../Generated/RoutesOperations.cs | 8 +- .../Generated/SecurityRulesOperations.cs | 8 +- .../Generated/SubnetsOperations.cs | 8 +- .../Generated/UsagesOperations.cs | 2 +- ...tualNetworkGatewayConnectionsOperations.cs | 14 +- .../VirtualNetworkGatewaysOperations.cs | 18 +- .../VirtualNetworkPeeringsOperations.cs | 8 +- .../Generated/VirtualNetworksOperations.cs | 12 +- 40 files changed, 523 insertions(+), 153 deletions(-) create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/DhGroup.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeEncryption.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeIntegrity.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecEncryption.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecIntegrity.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/PfsGroup.cs diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index 1304539a2f17..eac66811a1e3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -116,7 +116,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -328,7 +328,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -506,7 +506,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -764,7 +764,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -943,7 +943,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1159,7 +1159,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1324,7 +1324,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1497,7 +1497,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs index fbf6072faf89..0f239babdefb 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs @@ -80,7 +80,7 @@ internal BgpServiceCommunitiesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs index 415877929d59..a7915b341560 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs @@ -127,7 +127,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -352,7 +352,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -551,7 +551,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs index 57bc445de11a..0bb703b7a23c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs @@ -126,7 +126,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs index 25af2d5fa863..6b52e1e9fb92 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs @@ -116,7 +116,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -423,7 +423,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -624,7 +624,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -813,7 +813,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -991,7 +991,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1178,7 +1178,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1354,7 +1354,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1588,7 +1588,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1801,7 +1801,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2014,7 +2014,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs index d14c8cb79dac..3fff7273ca3e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs @@ -80,7 +80,7 @@ internal ExpressRouteServiceProvidersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs index 13b32fbe0c2e..9204f6baaea7 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs @@ -119,7 +119,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 482a33ce2fcc..5b990240d851 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -533,7 +533,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -749,7 +749,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpPeerStatus.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpPeerStatus.cs index d1740a9d0c69..0287912e572c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpPeerStatus.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpPeerStatus.cs @@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// BGP peer status details + /// public partial class BgpPeerStatus { /// @@ -38,7 +41,7 @@ public BgpPeerStatus() { } /// The number of BGP messages sent /// The number of BGP messages /// received - public BgpPeerStatus(string localAddress = default(string), string neighbor = default(string), int? asn = default(int?), string state = default(string), string connectedDuration = default(string), long? routesReceived = default(long?), long? messagesSent = default(long?), int? messagesReceived = default(int?)) + public BgpPeerStatus(string localAddress = default(string), string neighbor = default(string), int? asn = default(int?), string state = default(string), string connectedDuration = default(string), long? routesReceived = default(long?), long? messagesSent = default(long?), long? messagesReceived = default(long?)) { LocalAddress = localAddress; Neighbor = neighbor; @@ -97,7 +100,7 @@ public BgpPeerStatus() { } /// Gets the number of BGP messages received /// [JsonProperty(PropertyName = "messagesReceived")] - public int? MessagesReceived { get; protected set; } + public long? MessagesReceived { get; protected set; } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpSettings.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpSettings.cs index fb3e207c9912..32351d78c568 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpSettings.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpSettings.cs @@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// BGP settings details + /// public partial class BgpSettings { /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ConnectionResetSharedKey.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ConnectionResetSharedKey.cs index a33a93984a01..343c7e38364e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ConnectionResetSharedKey.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ConnectionResetSharedKey.cs @@ -15,6 +15,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// The virtual network connection reset shared key + /// public partial class ConnectionResetSharedKey { /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/DhGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/DhGroup.cs new file mode 100644 index 000000000000..e6447e859e05 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/DhGroup.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for DhGroup. + /// + public static class DhGroup + { + public const string None = "None"; + public const string DHGroup1 = "DHGroup1"; + public const string DHGroup2 = "DHGroup2"; + public const string DHGroup14 = "DHGroup14"; + public const string DHGroup2048 = "DHGroup2048"; + public const string ECP256 = "ECP256"; + public const string ECP384 = "ECP384"; + public const string DHGroup24 = "DHGroup24"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs index d886ee1287cf..6fa656fae80b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs @@ -57,14 +57,14 @@ public ExpressRouteCircuitPeering() { } /// The GatewayManager Etag. /// Gets whether the provider or the /// customer last modified the peering. + /// The reference of the RouteFilter + /// resource. /// Gets name of the resource that is unique within /// a resource group. This name can be used to access the /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - /// The reference of the RouteFilter - /// resource. - public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), string name = default(string), string etag = default(string), RouteFilter routeFilter = default(RouteFilter)) + public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), RouteFilter routeFilter = default(RouteFilter), string name = default(string), string etag = default(string)) : base(id) { PeeringType = peeringType; @@ -82,9 +82,9 @@ public ExpressRouteCircuitPeering() { } ProvisioningState = provisioningState; GatewayManagerEtag = gatewayManagerEtag; LastModifiedBy = lastModifiedBy; + RouteFilter = routeFilter; Name = name; Etag = etag; - RouteFilter = routeFilter; } /// @@ -183,6 +183,12 @@ public ExpressRouteCircuitPeering() { } [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; set; } + /// + /// Gets or sets the reference of the RouteFilter resource. + /// + [JsonProperty(PropertyName = "properties.routeFilter")] + public RouteFilter RouteFilter { get; set; } + /// /// Gets name of the resource that is unique within a resource group. /// This name can be used to access the resource. @@ -196,11 +202,7 @@ public ExpressRouteCircuitPeering() { } /// [JsonProperty(PropertyName = "etag")] public string Etag { get; protected set; } - - /// - /// Gets or sets the reference of the RouteFilter resource. - /// - [JsonProperty(PropertyName = "properties.routeFilter")] - public RouteFilter RouteFilter { get; set; } + } -} \ No newline at end of file +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/GatewayRoute.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/GatewayRoute.cs index b096887596ef..087fd4c57b59 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/GatewayRoute.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/GatewayRoute.cs @@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// Gateway routing details + /// public partial class GatewayRoute { /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeEncryption.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeEncryption.cs new file mode 100644 index 000000000000..164f8d80f042 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeEncryption.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for IkeEncryption. + /// + public static class IkeEncryption + { + public const string DES = "DES"; + public const string DES3 = "DES3"; + public const string AES128 = "AES128"; + public const string AES192 = "AES192"; + public const string AES256 = "AES256"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeIntegrity.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeIntegrity.cs new file mode 100644 index 000000000000..1d2398dba89b --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeIntegrity.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for IkeIntegrity. + /// + public static class IkeIntegrity + { + public const string MD5 = "MD5"; + public const string SHA1 = "SHA1"; + public const string SHA256 = "SHA256"; + public const string SHA384 = "SHA384"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecEncryption.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecEncryption.cs new file mode 100644 index 000000000000..d82d5c236c92 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecEncryption.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for IpsecEncryption. + /// + public static class IpsecEncryption + { + public const string None = "None"; + public const string DES = "DES"; + public const string DES3 = "DES3"; + public const string AES128 = "AES128"; + public const string AES192 = "AES192"; + public const string AES256 = "AES256"; + public const string GCMAES128 = "GCMAES128"; + public const string GCMAES192 = "GCMAES192"; + public const string GCMAES256 = "GCMAES256"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecIntegrity.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecIntegrity.cs new file mode 100644 index 000000000000..4efb587d7a99 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecIntegrity.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for IpsecIntegrity. + /// + public static class IpsecIntegrity + { + public const string MD5 = "MD5"; + public const string SHA1 = "SHA1"; + public const string SHA256 = "SHA256"; + public const string GCMAES128 = "GCMAES128"; + public const string GCMAES192 = "GCMAES192"; + public const string GCMAES256 = "GCMAES256"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs new file mode 100644 index 000000000000..57a5642d7e47 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs @@ -0,0 +1,160 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// An IPSec Policy configuration for a virtual network gateway connection + /// + public partial class IpsecPolicy + { + /// + /// Initializes a new instance of the IpsecPolicy class. + /// + public IpsecPolicy() { } + + /// + /// Initializes a new instance of the IpsecPolicy class. + /// + /// The Security Association (SA) + /// lifetime in seconds for a site to site VPN tunnel. + /// The Security Association (SA) + /// payload size in KB for a site to site VPN tunnel. + /// The IPSec encryption algorithm (IKE + /// phase 2). Possible values include: 'None', 'DES', 'DES3', 'AES128', + /// 'AES192', 'AES256', 'GCMAES128', 'GCMAES192', 'GCMAES256' + /// The IPSec integrity algorithm (IKE + /// phase 2). Possible values include: 'MD5', 'SHA1', 'SHA256', + /// 'GCMAES128', 'GCMAES192', 'GCMAES256' + /// The IKE encryption algorithm (IKE phase + /// 1). Possible values include: 'DES', 'DES3', 'AES128', 'AES192', + /// 'AES256' + /// The IKE integrity algorithm (IKE phase + /// 1). Possible values include: 'MD5', 'SHA1', 'SHA256', + /// 'SHA384' + /// The DH Groups used in IKE Phase 1 for initial + /// SA. Possible values include: 'None', 'DHGroup1', 'DHGroup2', + /// 'DHGroup14', 'DHGroup2048', 'ECP256', 'ECP384', 'DHGroup24' + /// The DH Groups used in IKE Phase 2 for new + /// child SA. Possible values include: 'None', 'PFS1', 'PFS2', + /// 'PFS2048', 'ECP256', 'ECP384', 'PFS24' + public IpsecPolicy(int saLifeTimeSeconds, int saDataSizeKilobytes, string ipsecEncryption, string ipsecIntegrity, string ikeEncryption, string ikeIntegrity, string dhGroup, string pfsGroup) + { + SaLifeTimeSeconds = saLifeTimeSeconds; + SaDataSizeKilobytes = saDataSizeKilobytes; + IpsecEncryption = ipsecEncryption; + IpsecIntegrity = ipsecIntegrity; + IkeEncryption = ikeEncryption; + IkeIntegrity = ikeIntegrity; + DhGroup = dhGroup; + PfsGroup = pfsGroup; + } + + /// + /// Gets or sets the Security Association (SA) lifetime in seconds for + /// a site to site VPN tunnel. + /// + [JsonProperty(PropertyName = "saLifeTimeSeconds")] + public int SaLifeTimeSeconds { get; set; } + + /// + /// Gets or sets the Security Association (SA) payload size in KB for a + /// site to site VPN tunnel. + /// + [JsonProperty(PropertyName = "saDataSizeKilobytes")] + public int SaDataSizeKilobytes { get; set; } + + /// + /// Gets or sets the IPSec encryption algorithm (IKE phase 2). Possible + /// values include: 'None', 'DES', 'DES3', 'AES128', 'AES192', + /// 'AES256', 'GCMAES128', 'GCMAES192', 'GCMAES256' + /// + [JsonProperty(PropertyName = "ipsecEncryption")] + public string IpsecEncryption { get; set; } + + /// + /// Gets or sets the IPSec integrity algorithm (IKE phase 2). Possible + /// values include: 'MD5', 'SHA1', 'SHA256', 'GCMAES128', 'GCMAES192', + /// 'GCMAES256' + /// + [JsonProperty(PropertyName = "ipsecIntegrity")] + public string IpsecIntegrity { get; set; } + + /// + /// Gets or sets the IKE encryption algorithm (IKE phase 1). Possible + /// values include: 'DES', 'DES3', 'AES128', 'AES192', 'AES256' + /// + [JsonProperty(PropertyName = "ikeEncryption")] + public string IkeEncryption { get; set; } + + /// + /// Gets or sets the IKE integrity algorithm (IKE phase 1). Possible + /// values include: 'MD5', 'SHA1', 'SHA256', 'SHA384' + /// + [JsonProperty(PropertyName = "ikeIntegrity")] + public string IkeIntegrity { get; set; } + + /// + /// Gets or sets the DH Groups used in IKE Phase 1 for initial SA. + /// Possible values include: 'None', 'DHGroup1', 'DHGroup2', + /// 'DHGroup14', 'DHGroup2048', 'ECP256', 'ECP384', 'DHGroup24' + /// + [JsonProperty(PropertyName = "dhGroup")] + public string DhGroup { get; set; } + + /// + /// Gets or sets the DH Groups used in IKE Phase 2 for new child SA. + /// Possible values include: 'None', 'PFS1', 'PFS2', 'PFS2048', + /// 'ECP256', 'ECP384', 'PFS24' + /// + [JsonProperty(PropertyName = "pfsGroup")] + public string PfsGroup { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (IpsecEncryption == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IpsecEncryption"); + } + if (IpsecIntegrity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IpsecIntegrity"); + } + if (IkeEncryption == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IkeEncryption"); + } + if (IkeIntegrity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IkeIntegrity"); + } + if (DhGroup == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "DhGroup"); + } + if (PfsGroup == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "PfsGroup"); + } + } + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/PfsGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/PfsGroup.cs new file mode 100644 index 000000000000..aae064818f29 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/PfsGroup.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for PfsGroup. + /// + public static class PfsGroup + { + public const string None = "None"; + public const string PFS1 = "PFS1"; + public const string PFS2 = "PFS2"; + public const string PFS2048 = "PFS2048"; + public const string ECP256 = "ECP256"; + public const string ECP384 = "ECP384"; + public const string PFS24 = "PFS24"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs index ec6849f3713a..fd24da61dcb0 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs @@ -37,14 +37,14 @@ public VirtualNetworkGateway() { } /// The type of this virtual network gateway. /// Possible values are: 'Vpn' and 'ExpressRoute'. Possible values /// include: 'Vpn', 'ExpressRoute' - /// The type of this virtual network gateway. - /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible - /// values include: 'PolicyBased', 'RouteBased' /// Resource ID. /// Resource name. /// Resource type. /// Resource location. /// Resource tags. + /// The type of this virtual network gateway. + /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible + /// values include: 'PolicyBased', 'RouteBased' /// Whether BGP is enabled for this virtual /// network gateway or not. /// ActiveActive flag @@ -67,7 +67,7 @@ public VirtualNetworkGateway() { } /// 'Deleting', and 'Failed'. /// Gets a unique read-only string that changes /// whenever the resource is updated. - public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string vpnType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string vpnType = default(string), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { IpConfigurations = ipConfigurations; @@ -184,10 +184,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "GatewayType"); } - if (VpnType == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "VpnType"); - } if (IpConfigurations != null) { foreach (var element in IpConfigurations) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs index bc1fc82be665..f9a3f9166660 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs @@ -58,6 +58,10 @@ public VirtualNetworkGatewayConnection() { } /// in this connection. /// The reference to peerings resource. /// EnableBgp flag + /// Enable policy-based + /// traffic selectors. + /// The IPSec Policies to be considered by + /// this connection. /// The resource GUID property of the /// VirtualNetworkGatewayConnection resource. /// The provisioning state of the @@ -65,7 +69,7 @@ public VirtualNetworkGatewayConnection() { } /// 'Updating', 'Deleting', and 'Failed'. /// Gets a unique read-only string that changes /// whenever the resource is updated. - public VirtualNetworkGatewayConnection(VirtualNetworkGateway virtualNetworkGateway1, string connectionType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string authorizationKey = default(string), VirtualNetworkGateway virtualNetworkGateway2 = default(VirtualNetworkGateway), LocalNetworkGateway localNetworkGateway2 = default(LocalNetworkGateway), int? routingWeight = default(int?), string sharedKey = default(string), string connectionStatus = default(string), IList tunnelConnectionStatus = default(IList), long? egressBytesTransferred = default(long?), long? ingressBytesTransferred = default(long?), SubResource peer = default(SubResource), bool? enableBgp = default(bool?), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public VirtualNetworkGatewayConnection(VirtualNetworkGateway virtualNetworkGateway1, string connectionType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string authorizationKey = default(string), VirtualNetworkGateway virtualNetworkGateway2 = default(VirtualNetworkGateway), LocalNetworkGateway localNetworkGateway2 = default(LocalNetworkGateway), int? routingWeight = default(int?), string sharedKey = default(string), string connectionStatus = default(string), IList tunnelConnectionStatus = default(IList), long? egressBytesTransferred = default(long?), long? ingressBytesTransferred = default(long?), SubResource peer = default(SubResource), bool? enableBgp = default(bool?), bool? usePolicyBasedTrafficSelectors = default(bool?), IList ipsecPolicies = default(IList), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { AuthorizationKey = authorizationKey; @@ -81,6 +85,8 @@ public VirtualNetworkGatewayConnection() { } IngressBytesTransferred = ingressBytesTransferred; Peer = peer; EnableBgp = enableBgp; + UsePolicyBasedTrafficSelectors = usePolicyBasedTrafficSelectors; + IpsecPolicies = ipsecPolicies; ResourceGuid = resourceGuid; ProvisioningState = provisioningState; Etag = etag; @@ -166,6 +172,19 @@ public VirtualNetworkGatewayConnection() { } [JsonProperty(PropertyName = "properties.enableBgp")] public bool? EnableBgp { get; set; } + /// + /// Gets or sets enable policy-based traffic selectors. + /// + [JsonProperty(PropertyName = "properties.usePolicyBasedTrafficSelectors")] + public bool? UsePolicyBasedTrafficSelectors { get; set; } + + /// + /// Gets or sets the IPSec Policies to be considered by this + /// connection. + /// + [JsonProperty(PropertyName = "properties.ipsecPolicies")] + public IList IpsecPolicies { get; set; } + /// /// Gets or sets the resource GUID property of the /// VirtualNetworkGatewayConnection resource. @@ -216,6 +235,16 @@ public virtual void Validate() { LocalNetworkGateway2.Validate(); } + if (IpsecPolicies != null) + { + foreach (var element in IpsecPolicies) + { + if (element != null) + { + element.Validate(); + } + } + } } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VpnClientParameters.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VpnClientParameters.cs index 5fae80b65659..d3b300ff546f 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VpnClientParameters.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VpnClientParameters.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Linq; /// - /// VpnClientParameters + /// Vpn Client Parameters for package generation /// public partial class VpnClientParameters { @@ -40,7 +40,7 @@ public VpnClientParameters(string processorArchitecture) /// Gets or sets VPN client Processor Architecture. Possible values /// are: 'AMD64' and 'X86'. Possible values include: 'Amd64', 'X86' /// - [JsonProperty(PropertyName = "ProcessorArchitecture")] + [JsonProperty(PropertyName = "processorArchitecture")] public string ProcessorArchitecture { get; set; } /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs index 40a02eb86e16..525d96aceb34 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs @@ -119,7 +119,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1363,7 +1363,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1538,7 +1538,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1757,7 +1757,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1951,7 +1951,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs index c391afbcc5bb..d67a6eaf2fbd 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs @@ -492,7 +492,7 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs index aeca4d060053..e19347f56e70 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs @@ -119,7 +119,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -331,7 +331,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -703,7 +703,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -880,7 +880,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs index 070dc4e02b9e..9a5badd7b810 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs @@ -101,7 +101,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -320,7 +320,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -529,7 +529,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -908,7 +908,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1282,7 +1282,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1462,7 +1462,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1692,7 +1692,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1922,7 +1922,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2152,7 +2152,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2382,7 +2382,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2612,7 +2612,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2842,7 +2842,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs index d0991beed77d..f4c6230ac541 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs @@ -129,7 +129,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -400,7 +400,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -612,7 +612,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -819,7 +819,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -993,7 +993,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1170,7 +1170,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs index a7824035e5a0..b3c24481d2a9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs @@ -119,7 +119,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs index d0d79d3e759c..df48c96625a5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs @@ -126,7 +126,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -378,7 +378,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -576,7 +576,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -768,7 +768,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new RouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1007,7 +1007,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new PatchRouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs index 2e88eb338d9e..b1503a90165e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs @@ -119,7 +119,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -361,7 +361,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -539,7 +539,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -726,7 +726,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -901,7 +901,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1127,7 +1127,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs index cdf2aeeb916f..f932e1b31272 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs @@ -119,7 +119,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -336,7 +336,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs index 49913de1c6f5..3c1c572df681 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs @@ -126,7 +126,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -350,7 +350,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,7 +548,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs index 8fce4b56a92e..32f094919c35 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs @@ -126,7 +126,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +738,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs index e6ba2ddfeaac..011c231e0b09 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs @@ -129,7 +129,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -358,7 +358,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -740,7 +740,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs index 7565dd077bdd..51bf83fdccd5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs @@ -94,7 +94,7 @@ internal UsagesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs index c17abfa1ae4e..c0cfd3175707 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -121,7 +121,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -368,7 +368,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -790,7 +790,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1423,7 +1423,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index eb992e20de22..129061612af9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -561,7 +561,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1064,7 +1064,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1237,7 +1237,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1439,7 +1439,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1639,7 +1639,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1841,7 +1841,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs index e9249a583ea6..308efbfb5b0b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs @@ -126,7 +126,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs index 8dc887aadf03..b2fe8e257173 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs @@ -119,7 +119,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -903,7 +903,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; From 3e92d9137965d0414771ef8613563c0d88e3d4a5 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Thu, 16 Mar 2017 11:17:05 -0700 Subject: [PATCH 094/137] package version incremented --- .../Properties/AssemblyInfo.cs | 4 ++-- .../Network/Microsoft.Azure.Management.Network/project.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 31b13a51ad32..3a079d1447c2 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("9.1.0.0")] -[assembly: AssemblyFileVersion("9.1.0.0")] +[assembly: AssemblyVersion("9.2.0.0")] +[assembly: AssemblyFileVersion("9.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index d8484bf93b04..93058cacb507 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,6 +1,6 @@ { - "version": "9.1.0-preview", + "version": "9.2.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From 7a042f6314c143e43a7cef5af5398fd880f250c5 Mon Sep 17 00:00:00 2001 From: Abhijeet Date: Thu, 16 Mar 2017 13:25:13 -0700 Subject: [PATCH 095/137] Adding constructor that takes HttpClient (#2918) * Adding constructor that takes HttpClient. Adding tests. Fixing OperationalInisghts failing tests * Merging UserAgent info if provided by the passed in HttpClient. Restructured tests and added more tests * Incorporating feedback * making sure we are not initializing handlers unnecessarily when httpClient is passed in --- .../CustomClientWithHttpClientTests.cs | 164 ++++++++++++++++++ .../CustomClients/ContosoServiceClient.cs | 147 ++++++++++++++++ .../Fakes/FakeServiceClient.cs | 4 + .../Microsoft.Rest.ClientRuntime.Tests.xproj | 3 + .../ServiceClientTests.cs | 20 ++- .../ServiceClient.cs | 146 +++++++++++----- .../Microsoft.Rest.ClientRuntime/project.json | 2 +- .../OperationalInsights.Test/project.json | 9 +- 8 files changed, 447 insertions(+), 48 deletions(-) create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/CustomClientWithHttpClientTests.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/CustomClients/ContosoServiceClient.cs diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/CustomClientWithHttpClientTests.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/CustomClientWithHttpClientTests.cs new file mode 100644 index 000000000000..156f9748ec6a --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/CustomClientWithHttpClientTests.cs @@ -0,0 +1,164 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.Tests +{ + using Microsoft.Rest.ClientRuntime.Tests.CustomClients; + using System; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Threading; + using System.Threading.Tasks; + using Xunit; + + public class CustomClientWithHttpClientTests + { + const string MY_PRODUCT = "MyProduct"; + const string MY_VERSION = "MyVersion"; + const string DEFAULT_URI = "http://www.microsoft.com"; + + /// + /// Basic test to pass in simple HttpClient to the ServiceClient (Contoso) + /// + [Fact] + public void InitializeServiceClientWithHttpClient() + { + HttpClient hc = new HttpClient(); + ContosoServiceClient contosoClient = new ContosoServiceClient(hc); + HttpResponseMessage response = contosoClient.DoSyncWork(); + Assert.NotNull(response); + } + + /// + /// Pass in null HttpClient and get default HttpClient + /// Verify if baseClient httpClient has the default information + /// + [Fact] + public void GetBaseClassHttpClient() + { + string defaultProductName = "FxVersion"; + Version defaultProductVer; + + ContosoServiceClient contosoClient = new ContosoServiceClient(null); + HttpResponseMessage response = contosoClient.DoSyncWork(); + string cont = response.Content.ReadAsStringAsync().ConfigureAwait(false).GetAwaiter().GetResult(); + Assert.NotNull(response); + + HttpHeaderValueCollection userAgentValueCollection = contosoClient.HttpClient.DefaultRequestHeaders.UserAgent; + var dP = userAgentValueCollection.Where((p) => p.Product.Name.Equals(defaultProductName)).FirstOrDefault(); + Version.TryParse(dP.Product.Version, out defaultProductVer); + Assert.Equal(defaultProductName, dP.Product.Name); + Assert.NotNull(defaultProductVer); + } + + /// + /// Creates Constoso Client with it's own handler + /// + [Fact] + public void InitializeMessageHandlerPostContructor() + { + HttpClient hc = new HttpClient(new ContosoMessageHandler()); + ContosoServiceClient contosoClient = new ContosoServiceClient(hc); + HttpResponseMessage response = contosoClient.DoSyncWork(); + string cont = response.Content.ReadAsStringAsync().ConfigureAwait(false).GetAwaiter().GetResult(); + Assert.Equal("Contoso Rocks", cont); + } + + /// + /// This test will create contoso client with delayedHandler + /// + [Fact] + public void ProvideHttpClientAfterInitialization() + { + ContosoServiceClient contosoClient = new ContosoServiceClient(overRideDefaultHandler: true); + HttpResponseMessage response = contosoClient.DoSyncWork(); + string cont = response.Content.ReadAsStringAsync().ConfigureAwait(false).GetAwaiter().GetResult(); + Assert.Equal("Delayed User Provided HttpClient after initialization", cont); + } + + /// + /// The purpose of this test is to verify if we use httpClient prior to + /// creating service client, everything works as expected + /// Also verifies if any properties set prior to constructing ServiceClient + /// The provided httpClient will not change it's properties + /// + [Fact] + public void UseHttpClientBeforeConstructingServiceClient() + { + HttpClient hc = new HttpClient(new ContosoMessageHandler()); + hc.BaseAddress = new Uri(DEFAULT_URI); + HttpResponseMessage resMsg = SendAndReceiveResponse(hc); + Assert.Equal(HttpStatusCode.OK, resMsg.StatusCode); + + ContosoServiceClient contosoClient = new ContosoServiceClient(hc); + HttpResponseMessage response = contosoClient.DoSyncWork(); + string cont = response.Content.ReadAsStringAsync().ConfigureAwait(false).GetAwaiter().GetResult(); + Assert.Equal("Contoso Rocks", cont); + Assert.Equal(new Uri(DEFAULT_URI), contosoClient.HttpClient.BaseAddress); + } + + /// + /// THe HttpClient that is provided to ServiceClient will have it's own set of UserAgent information + /// inside default headers. This is to verify if we merge DefaultHeader information + /// + [Fact] + public void AddHeaderInformationToHttpClient() + { + Version defaultVersion = null; + HttpClient hc = new HttpClient(new ContosoMessageHandler()); + hc.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(MY_PRODUCT, MY_VERSION)); + ContosoServiceClient contosoClient = new ContosoServiceClient(hc); + HttpResponseMessage response = contosoClient.DoSyncWork(); + + HttpHeaderValueCollection userAgentValueCollection = contosoClient.HttpClient.DefaultRequestHeaders.UserAgent; + ProductInfoHeaderValue myProduct = userAgentValueCollection.Where((p) => p.Product.Name.Equals(MY_PRODUCT, StringComparison.OrdinalIgnoreCase)).First(); + Assert.Equal(MY_VERSION, myProduct.Product.Version); + + ProductInfoHeaderValue fxVer = userAgentValueCollection.Where((p) => p.Product.Name.Equals("FxVersion", StringComparison.OrdinalIgnoreCase)).First(); + Version.TryParse(fxVer.Product.Version, out defaultVersion); + Assert.NotNull(defaultVersion); + } + + /// + /// This is to verify if a HttpClient is passed, we still add default userAgent information + /// inside defaultheaders of the passed in HttpClient + /// + [Fact] + public void AddFxVersionHeaderInformation() + { + Version defaultVersion = null; + HttpClient hc = new HttpClient(new ContosoMessageHandler()); + hc.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue("FxVersion", "1.0.0.0")); + ContosoServiceClient contosoClient = new ContosoServiceClient(hc); + HttpResponseMessage response = contosoClient.DoSyncWork(); + + HttpHeaderValueCollection userAgentValueCollection = contosoClient.HttpClient.DefaultRequestHeaders.UserAgent; + ProductInfoHeaderValue fxVer = userAgentValueCollection.Where((p) => p.Product.Name.Equals("FxVersion", StringComparison.OrdinalIgnoreCase)).First(); + Version.TryParse(fxVer.Product.Version, out defaultVersion); + Assert.Equal(defaultVersion.ToString(), "1.0.0.0"); + } + + + private HttpResponseMessage SendAndReceiveResponse(HttpClient httpClient) + { + // Construct URL + //string url = "http://www.microsoft.com"; + + // Create HTTP transport objects + HttpRequestMessage _httpRequest = null; + + _httpRequest = new HttpRequestMessage(); + _httpRequest.Method = HttpMethod.Get; + _httpRequest.RequestUri = new Uri(DEFAULT_URI); + + // Set Headers + _httpRequest.Headers.Add("x-ms-version", "2013-11-01"); + + return Task.Run(async () => await httpClient.SendAsync(_httpRequest, new CancellationToken()).ConfigureAwait(false)).ConfigureAwait(false).GetAwaiter().GetResult(); + + } + + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/CustomClients/ContosoServiceClient.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/CustomClients/ContosoServiceClient.cs new file mode 100644 index 000000000000..5248bbe29a7b --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/CustomClients/ContosoServiceClient.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.Tests.CustomClients +{ + using System; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Customized client that emulates how partners will use Customized code to extend + /// generated client. + /// + public class ContosoServiceClient : ServiceClient + { + /// + /// Initializes with default contosomessage handler + /// + public ContosoServiceClient():base() + { + HttpClient = new HttpClient(new ContosoMessageHandler()); + } + + /// + /// Overrides default handler (ContosoMessageHandler) with DelayedHandler if specified + /// + /// + public ContosoServiceClient(bool overRideDefaultHandler) + { + if(overRideDefaultHandler) + { + HttpClient = new HttpClient(new DelayedHandler("Delayed User Provided HttpClient after initialization")); + } + else + { + HttpClient = new HttpClient(new ContosoMessageHandler()); + } + } + + /// + /// Constructor that accepts HttpClient + /// + /// + public ContosoServiceClient(HttpClient httpClient) : base (httpClient) + { + + } + + public ContosoServiceClient(HttpClientHandler rootHandler, DelegatingHandler[] handlers) + : base(rootHandler, handlers) + { } + + /// + /// Some task emulating getting response back + /// + /// + /// + public HttpResponseMessage DoSyncWork(string content = null) + { + return Task.Factory.StartNew(() => + { + return DoStuff(content); + }).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Creates request and sends + /// + /// string value + /// + private async Task DoStuff(string content = null) + { + // Construct URL + string url = "http://www.microsoft.com"; + + // Create HTTP transport objects + HttpRequestMessage _httpRequest = null; + + _httpRequest = new HttpRequestMessage(); + _httpRequest.Method = HttpMethod.Get; + _httpRequest.RequestUri = new Uri(url); + + // Set content + if (content != null) + { + _httpRequest.Content = new StringContent(content); + } + + // Set Headers + _httpRequest.Headers.Add("x-ms-version", "2013-11-01"); + + return await this.HttpClient.SendAsync(_httpRequest, new CancellationToken()).ConfigureAwait(false); + } + } + + /// + /// Custom message handler + /// + public class ContosoMessageHandler : DelegatingHandler + { + public ContosoMessageHandler() : base() + { + InnerHandler = new HttpClientHandler(); + } + + /// + /// Returns Contoso Rocks response + /// + /// HttpRequestMessage object + /// CancellationToken + /// + protected override async Task SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + { + StringContent contosoContent = new StringContent("Contoso Rocks"); + HttpResponseMessage response = new HttpResponseMessage(System.Net.HttpStatusCode.OK); + response.Content = contosoContent; + return await Task.Run(() => response); + } + } + + /// + /// Yet another delegating handler for tests + /// + public class DelayedHandler : DelegatingHandler + { + string _handlerData; + private DelayedHandler() : base() + { + InnerHandler = new HttpClientHandler(); + } + + public DelayedHandler(string handlerData) + : this() + { + _handlerData = handlerData; + } + + protected override async Task SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + { + StringContent contosoContent = new StringContent(_handlerData); + HttpResponseMessage response = new HttpResponseMessage(System.Net.HttpStatusCode.OK); + response.Content = contosoContent; + return await Task.Run(() => response); + } + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Fakes/FakeServiceClient.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Fakes/FakeServiceClient.cs index b745a789087a..95663a238dea 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Fakes/FakeServiceClient.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Fakes/FakeServiceClient.cs @@ -18,6 +18,10 @@ public FakeServiceClient() // Prevent base constructor from executing } + public FakeServiceClient(HttpClient httpClient) + : base(httpClient) + { } + public FakeServiceClient(HttpClientHandler httpMessageHandler, params DelegatingHandler[] handlers) : base(httpMessageHandler, handlers) { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.xproj b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.xproj index a00304d6ebbe..9ae90b04a0bf 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.xproj +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.xproj @@ -17,5 +17,8 @@ + + + \ No newline at end of file diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/ServiceClientTests.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/ServiceClientTests.cs index b083817db0ed..afe10e76f644 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/ServiceClientTests.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Tests/ServiceClientTests.cs @@ -1,15 +1,15 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. +using Microsoft.Rest.ClientRuntime.Tests.CustomClients; +using Microsoft.Rest.ClientRuntime.Tests.Fakes; +using Microsoft.Rest.TransientFaultHandling; using System; using System.Linq; using System.Net; using System.Net.Http; -using Microsoft.Rest.ClientRuntime.Tests.Fakes; -using Microsoft.Rest.TransientFaultHandling; -using Xunit; using System.Net.Http.Headers; -using System.Diagnostics; +using Xunit; namespace Microsoft.Rest.ClientRuntime.Tests { @@ -109,6 +109,16 @@ public void RetryHandlerRetriesWith500Errors() Assert.Equal(2, attemptsFailed); } + [Fact] + public void FakeSvcClientWithHttpClient() + { + HttpClient hc = new HttpClient(new ContosoMessageHandler()); + var fakeClient = new FakeServiceClient(hc); + HttpResponseMessage response = fakeClient.DoStuffSync(); + string responseContent = response.Content.ReadAsStringAsync().ConfigureAwait(false).GetAwaiter().GetResult(); + Assert.Equal("Contoso Rocks", responseContent); + } + [Fact] public void RetryHandlerRetriesWith500ErrorsAndSucceeds() { @@ -214,7 +224,7 @@ public void AddUserAgentInfoWithVersion() Assert.True(testProduct.Product.Name.Equals(testProductName)); Assert.True(testProduct.Product.Version.Equals(testProductVersion)); } - + #if NET451 [Fact] public void VerifyOsInfoInUserAgent() diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/ServiceClient.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/ServiceClient.cs index 35bdb9f55eb8..07f4c7ca7ddd 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/ServiceClient.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/ServiceClient.cs @@ -1,18 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Reflection; -using Microsoft.Rest.TransientFaultHandling; -#if NET45 -using Microsoft.Win32; -#endif namespace Microsoft.Rest { + using System; + using System.Collections.Generic; + using System.Linq; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Reflection; + using Microsoft.Rest.TransientFaultHandling; +#if NET45 + using Microsoft.Win32; +#endif + /// /// ServiceClient is the abstraction for accessing REST operations and their payload data types.. /// @@ -27,6 +28,11 @@ public abstract class ServiceClient : IDisposable private const string OSNAME = "OSName"; private const string OSVERSION = "OSVersion"; + /// + /// List of default UserAgent info that will be added to HttpClient instance + /// + private List _defaultUserAgentInfoList; + /// /// Indicates whether the ServiceClient has been disposed. /// @@ -42,6 +48,7 @@ public abstract class ServiceClient : IDisposable /// private string _fxVersion; + #region NET45 specific code #if NET45 /// /// Indicates OS Name @@ -114,6 +121,28 @@ private string ReadHKLMRegistry(string path, string key) catch { return ""; } } #endif + #endregion + + /// + /// List of default info that gets added to DefaultHeaders.UserAgent of HttpClient + /// + private List DefaultUserAgentInfoList + { + get + { + if(_defaultUserAgentInfoList == null) + { + _defaultUserAgentInfoList = new List(); + _defaultUserAgentInfoList.Add(new ProductInfoHeaderValue(FXVERSION, FrameworkVersion)); +#if NET45 + _defaultUserAgentInfoList.Add(new ProductInfoHeaderValue(OSNAME, OsName)); + _defaultUserAgentInfoList.Add(new ProductInfoHeaderValue(OSVERSION, OsVersion)); +#endif + } + + return _defaultUserAgentInfoList; + } + } /// /// Gets the AssemblyInformationalVersion if available @@ -196,7 +225,7 @@ private string FrameworkVersion /// pipeline). /// protected HttpClientHandler HttpClientHandler { get; set; } - + /// /// Initializes a new instance of the ServiceClient class. /// @@ -209,6 +238,19 @@ protected ServiceClient() { } + /// + /// Initializes a new instance of the ServiceClient class. + /// + /// HttpClient + [System.Diagnostics.CodeAnalysis.SuppressMessage( + "Microsoft.Reliability", + "CA2000:Dispose objects before losing scope", + Justification = "The created objects should be disposed on caller's side")] + protected ServiceClient(HttpClient httpClient) + { + InitializeHttpClient(httpClient, null); + } + /// /// Initializes a new instance of the ServiceClient class. /// @@ -345,31 +387,54 @@ protected virtual void Dispose(bool disposing) Justification = "We let HttpClient instance dispose")] protected void InitializeHttpClient(HttpClientHandler httpClientHandler, params DelegatingHandler[] handlers) { - HttpClientHandler = httpClientHandler; - DelegatingHandler currentHandler = new RetryDelegatingHandler(); - currentHandler.InnerHandler = HttpClientHandler; + InitializeHttpClient(null, httpClientHandler, handlers); + } - if (handlers != null) + /// + /// Initialize service client with provided HttpClient + /// + /// HttpClient + /// HttpClientHandler + /// List of handlers from top to bottom (outer handler is the first in the list) + protected void InitializeHttpClient(HttpClient httpClient, HttpClientHandler httpClientHandler, params DelegatingHandler[] handlers) + { + if (httpClient == null) { - for (int i = handlers.Length - 1; i >= 0; --i) + if(httpClientHandler == null) { - DelegatingHandler handler = handlers[i]; - // Non-delegating handlers are ignored since we always - // have RetryDelegatingHandler as the outer-most handler - while (handler.InnerHandler is DelegatingHandler) + httpClientHandler = CreateRootHandler(); + } + + HttpClientHandler = httpClientHandler; + DelegatingHandler currentHandler = new RetryDelegatingHandler(); + currentHandler.InnerHandler = HttpClientHandler; + + if (handlers != null) + { + for (int i = handlers.Length - 1; i >= 0; --i) { - handler = handler.InnerHandler as DelegatingHandler; + DelegatingHandler handler = handlers[i]; + // Non-delegating handlers are ignored since we always + // have RetryDelegatingHandler as the outer-most handler + while (handler.InnerHandler is DelegatingHandler) + { + handler = handler.InnerHandler as DelegatingHandler; + } + + handler.InnerHandler = currentHandler; + currentHandler = handlers[i]; } - handler.InnerHandler = currentHandler; - currentHandler = handlers[i]; } - } - var newClient = new HttpClient(currentHandler, false); - FirstMessageHandler = currentHandler; - HttpClient = newClient; - Type type = this.GetType(); - SetUserAgent(type.FullName, ClientVersion); + HttpClient = new HttpClient(currentHandler, false); + FirstMessageHandler = currentHandler; + } + else + { + HttpClient = httpClient; + } + + SetUserAgent(this.GetType().FullName, ClientVersion); } /// @@ -390,7 +455,7 @@ public bool SetUserAgent(string productName, string version) { if (!_disposed && HttpClient != null) { - SetDefaultUserAgentInfo(); + MergeUserAgentInfo(DefaultUserAgentInfoList); HttpClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(productName, version)); return true; } @@ -400,18 +465,21 @@ public bool SetUserAgent(string productName, string version) } /// - /// Set Default information in User Agent + /// Finds if default UserAgent info is already set in UserAgent collection, if not it will add it + /// We do this because, now we accept passed in HttpClient. + /// So for any reason the passed HttpClient has our default UserAgent info (based on key name), we will not verify and check the values and will honor those values /// - /// - private void SetDefaultUserAgentInfo() + private void MergeUserAgentInfo(List defaultUserAgentInfoList) { - HttpClient.DefaultRequestHeaders.UserAgent.Clear(); - HttpClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(FXVERSION, FrameworkVersion)); -#if NET45 // If you want to log ProductName in userAgent, it has to be without spaces - HttpClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(OSNAME, OsName)); - HttpClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(OSVERSION, OsVersion)); -#endif + + foreach(ProductInfoHeaderValue piHv in defaultUserAgentInfoList) + { + if(!HttpClient.DefaultRequestHeaders.UserAgent.Any((hv) => hv.Product.Name.Equals(piHv.Product.Name, StringComparison.OrdinalIgnoreCase))); + { + HttpClient.DefaultRequestHeaders.UserAgent.Add(piHv); + } + } } } } diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json index 0bb77c879192..37220fea58ea 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json @@ -1,5 +1,5 @@ { - "version": "2.3.5", + "version": "2.3.6", "copyright": "Copyright (c) Microsoft Corporation", "title": "Client Runtime Library for Microsoft AutoRest Generated Clients", "description": "Infrastructure for error handling, tracing, and HttpClient pipeline configuration. Required by client libraries generated using AutoRest. \nSupported Platforms:\n - Portable Class Libraries\n - .NET Framework 4.5\n - Windows 8\n - Windows Phone 8.1\n - DotNet Core", diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json index 9dfc405110a0..879405fd5bf7 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json @@ -22,7 +22,7 @@ "netcoreapp1.0": { "imports": ["dnxcore50", "portable-net45+win8"], "dependencies": { - "System.Diagnostics.Tracing": "4.1.0" + "System.Diagnostics.Tracing": "4.3.0" } } }, @@ -31,10 +31,13 @@ "type": "platform", "version": "1.0.0" }, - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.4.0-preview,2.0.0)", + "Microsoft.Azure.Management.OperationalInsights": { + "target": "project", + "type": "build" + }, + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.6.0,2.0.0)", "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)", "Microsoft.Azure.ResourceManager": "1.0.0-preview", - "Microsoft.Azure.Management.OperationalInsights": "[1.0.0-preview, 2.0.0)", "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029" } From 3179142769527e3904729cae26002231fb871773 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Thu, 16 Mar 2017 15:11:19 -0700 Subject: [PATCH 096/137] Adding E2E test for VM Put bug for protected members --- src/ClientRuntime/ClientRuntime.sln | 24 + ...crosoft.Rest.ClientRuntime.E2E.Tests.xproj | 22 + .../Properties/AssemblyInfo.cs | 19 + .../ScenarioTests/E2ETestBase.cs | 793 ++++ .../ScenarioTests/VMTests.cs | 88 + .../UpdateVM_DoNotSerializeProtected.json | 3601 +++++++++++++++++ .../TestAssets/ExtendingTypes.cs | 70 + .../TestAssets/RecordedDelegatingHandler.cs | 82 + .../project.json | 56 + src/ClientRuntime/global.json | 4 +- 10 files changed, 4756 insertions(+), 3 deletions(-) create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Microsoft.Rest.ClientRuntime.E2E.Tests.xproj create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Properties/AssemblyInfo.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/project.json diff --git a/src/ClientRuntime/ClientRuntime.sln b/src/ClientRuntime/ClientRuntime.sln index 7bb148f2ee43..26d514f45335 100644 --- a/src/ClientRuntime/ClientRuntime.sln +++ b/src/ClientRuntime/ClientRuntime.sln @@ -19,6 +19,14 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntim EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Tests", "Microsoft.Rest.ClientRuntime.Tests\Microsoft.Rest.ClientRuntime.Tests.xproj", "{24009A5E-85EC-4EF9-8C22-9F563DF6250F}" EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.E2E.Tests", "Microsoft.Rest.ClientRuntime.E2E.Tests\Microsoft.Rest.ClientRuntime.E2E.Tests.xproj", "{4E9AEB40-026F-4BA1-A2DB-C8E252305157}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\TestFramework\Microsoft.Azure.Test.HttpRecorder\HttpRecorder.xproj", "{5D12D45A-E55F-410E-B8AF-9DC90E81B237}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.Compute", "..\ResourceManagement\Compute\Microsoft.Azure.Management.Compute\Microsoft.Azure.Management.Compute.xproj", "{CBE97730-45F5-448E-88E9-55DF94D65B77}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -57,6 +65,22 @@ Global {24009A5E-85EC-4EF9-8C22-9F563DF6250F}.Debug|Any CPU.Build.0 = Debug|Any CPU {24009A5E-85EC-4EF9-8C22-9F563DF6250F}.Release|Any CPU.ActiveCfg = Release|Any CPU {24009A5E-85EC-4EF9-8C22-9F563DF6250F}.Release|Any CPU.Build.0 = Release|Any CPU + {4E9AEB40-026F-4BA1-A2DB-C8E252305157}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4E9AEB40-026F-4BA1-A2DB-C8E252305157}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4E9AEB40-026F-4BA1-A2DB-C8E252305157}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4E9AEB40-026F-4BA1-A2DB-C8E252305157}.Release|Any CPU.Build.0 = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.Build.0 = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU + {CBE97730-45F5-448E-88E9-55DF94D65B77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CBE97730-45F5-448E-88E9-55DF94D65B77}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CBE97730-45F5-448E-88E9-55DF94D65B77}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CBE97730-45F5-448E-88E9-55DF94D65B77}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Microsoft.Rest.ClientRuntime.E2E.Tests.xproj b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Microsoft.Rest.ClientRuntime.E2E.Tests.xproj new file mode 100644 index 000000000000..d2375757323d --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Microsoft.Rest.ClientRuntime.E2E.Tests.xproj @@ -0,0 +1,22 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 4e9aeb40-026f-4ba1-a2db-c8e252305157 + Microsoft.Rest.ClientRuntime.E2E.Tests + .\obj + .\bin\ + v4.6 + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Properties/AssemblyInfo.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..97bdb11d3c80 --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Microsoft.Rest.ClientRuntime.E2E.Tests")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("4e9aeb40-026f-4ba1-a2db-c8e252305157")] diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs new file mode 100644 index 000000000000..f6b9921e991f --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs @@ -0,0 +1,793 @@ +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests +{ + using Microsoft.Azure.Management.Compute; + using Microsoft.Azure.Management.Compute.Models; + using Microsoft.Azure.Management.Network; + using Microsoft.Azure.Management.Network.Models; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.Storage; + using Microsoft.Azure.Management.Storage.Models; + using Microsoft.Azure.Test.HttpRecorder; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets; + using System; + using System.Collections.Generic; + using System.Diagnostics; + using System.Linq; + using System.Net; + using System.Reflection; + using System.Threading.Tasks; + using Xunit; + + public class E2ETestBase + { + const string DEFAULT_LOCATION = "SoutheastAsia"; + + string TEST_PREFIX; + + MockContext _mockContext; + ResourceManagementClient _resourceClient; + //ComputeManagementClient _computeClient; + MyComputeClient _computeClient; + StorageManagementClient _storageClient; + NetworkManagementClient _networkClient; + + ImageReference m_windowsImageReference, m_linuxImageReference; + + public E2ETestBase(string testPrefix = "") + { + TEST_PREFIX = testPrefix; + } + + protected MockContext MockContext + { + get + { + return _mockContext; + + } + + set + { + _mockContext = value; + } + } + protected ResourceManagementClient ResourceClient + { + get + { + if(_resourceClient == null) + { + var handle = new RecordedDelegatingHandler + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }; + + _resourceClient = MockContext.GetServiceClient(handlers: handle); + } + + return _resourceClient; + } + } + + protected MyComputeClient ComputeClient + { + get + { + if(_computeClient == null) + { + var handle = new RecordedDelegatingHandler + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }; + _computeClient = MockContext.GetServiceClient(handlers: handle); + } + + return _computeClient; + } + } + + protected StorageManagementClient StorageClient + { + get + { + if (_storageClient == null) + { + var handle = new RecordedDelegatingHandler + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }; + + _storageClient = MockContext.GetServiceClient(handlers: handle); + } + + return _storageClient; + } + } + + protected NetworkManagementClient NetworkClient + { + get + { + if (_networkClient == null) + { + var handle = new RecordedDelegatingHandler + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }; + + _networkClient = MockContext.GetServiceClient(handlers: handle); + } + + return _networkClient; + } + } + + protected StorageAccount CreateStorageAccount(ResourceGroup resGroup, string storageAccountName) + { + StorageAccount storageAccountOutput = null; + string rgName = resGroup.Name; + + try + { + var storageAccountList = StorageClient.StorageAccounts.ListByResourceGroup(rgName); + if(storageAccountList.Any()) + { + storageAccountOutput = storageAccountList.Where((sa) => sa.Name.Equals(storageAccountName, StringComparison.OrdinalIgnoreCase)).FirstOrDefault(); + } + } + catch { } + + try + { + if(storageAccountOutput == null) + { + var stoInput = new StorageAccountCreateParameters + { + Location = DEFAULT_LOCATION, + AccountType = AccountType.StandardGRS + }; + + storageAccountOutput = StorageClient.StorageAccounts.Create(rgName, + storageAccountName, stoInput); + bool created = false; + while (!created) + { + System.Threading.Thread.Sleep(TimeSpan.FromSeconds(10)); + var stos = StorageClient.StorageAccounts.ListByResourceGroup(rgName); + created = + stos.Any( + t => + StringComparer.OrdinalIgnoreCase.Equals(t.Name, storageAccountName)); + } + + storageAccountOutput = StorageClient.StorageAccounts.GetProperties(rgName, storageAccountName); + } + + return storageAccountOutput; + } + catch + { + //ResourceClient.ResourceGroups.Delete(rgName); + throw; + } + } + + protected ResourceGroup CreateResourceGroup(string rgName) + { + ResourceGroup resourceGroup = null; + try + { + resourceGroup = ResourceClient.ResourceGroups.Get(rgName); + //ResourceClient.ResourceGroups.Delete(rgName); + } + catch { } + + try + { + if (resourceGroup == null) + { + resourceGroup = ResourceClient.ResourceGroups.CreateOrUpdate( + rgName, + new ResourceGroup + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() { { rgName, DateTime.UtcNow.ToString("u") } } + }); + } + } + catch + { + throw; + } + + return resourceGroup; + } + + public static string GenerateName(string prefix = null, + [System.Runtime.CompilerServices.CallerMemberName] + string methodName="GenerateName_failed") + { + return HttpMockServer.GetAssetName(methodName, prefix); + } + + protected ImageReference GetPlatformVMImage(bool useWindowsImage) + { + if (useWindowsImage) + { + if (m_windowsImageReference == null) + { + m_windowsImageReference = FindVMImage("MicrosoftWindowsServer", "WindowsServer", "2012-R2-Datacenter"); + } + return m_windowsImageReference; + } + + if (m_linuxImageReference == null) + { + // If this sku disappears, query latest with + // GET https://management.azure.com/subscriptions//providers/Microsoft.Compute/locations/SoutheastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus?api-version=2015-06-15 + m_linuxImageReference = FindVMImage("Canonical", "UbuntuServer", "15.10"); + } + return m_linuxImageReference; + } + + protected ImageReference FindVMImage(string publisher, string offer, string sku) + { + var query = new Microsoft.Rest.Azure.OData.ODataQuery(); + query.Top = 1; + var images = ComputeClient.VirtualMachineImages.List( + location: DEFAULT_LOCATION, publisherName: publisher, offer: offer, skus: sku, + odataQuery: query); + var image = images.First(); + return new ImageReference + { + Publisher = publisher, + Offer = offer, + Sku = sku, + Version = image.Name + }; + } + + protected VirtualMachine CreateVM_NoAsyncTracking( + string rgName, string vmName, string asName, StorageAccount storageAccount, ImageReference imageRef, + out VirtualMachine inputVM, + Action vmCustomizer = null, + bool createWithPublicIpAddress = false, + bool waitOperation = true, + bool hasManagedDisks = false) + { + return CreateVM_NoAsyncTracking(rgName, vmName, asName, storageAccount.Name, imageRef, out inputVM, vmCustomizer, + createWithPublicIpAddress, waitOperation, hasManagedDisks); + } + + protected VirtualMachine CreateVM_NoAsyncTracking( + string rgName, string vmName, string asName, string storageAccountName, ImageReference imageRef, + out VirtualMachine inputVM, + Action vmCustomizer = null, + bool createWithPublicIpAddress = false, + bool waitOperation = true, + bool hasManagedDisks = false) + { + + VirtualMachine vm = null; + try + { + vm = ComputeClient.VirtualMachines.Get(rgName, vmName); + } + catch(Exception ex) + { + Debug.WriteLine(ex.ToString()); + } + + try + { + if (vm == null) + { + // Create the resource Group, it might have been already created during StorageAccount creation. + var resourceGroup = ResourceClient.ResourceGroups.Get(rgName); + + PublicIPAddress getPublicIpAddressResponse = createWithPublicIpAddress ? null : CreatePublicIP(rgName); + + // Do not add Dns server for managed disks, as they cannot resolve managed disk url ( https://md-xyz ) without + // explicitly setting up the rules for resolution. The VMs upon booting would need to contact the + // DNS server to access the VMStatus agent blob. Without proper Dns resolution, The VMs cannot access the + // VMStatus agent blob and there by fail to boot. + bool addDnsServer = !hasManagedDisks; + Subnet subnetResponse = CreateVNET(rgName, addDnsServer); + + NetworkInterface nicResponse = CreateNIC( + rgName, + subnetResponse, + getPublicIpAddressResponse != null ? getPublicIpAddressResponse.IpAddress : null); + + string asetId = CreateAvailabilitySet(rgName, asName, hasManagedDisks); + + inputVM = CreateDefaultVMInput(rgName, vmName, storageAccountName, imageRef, asetId, nicResponse.Id, hasManagedDisks); + //if (vmCustomizer != null) + //{ + // vmCustomizer(inputVM); + //} + + string expectedVMReferenceId = GetVMReferenceId(ComputeClient.SubscriptionId, rgName, inputVM.Name); + + VirtualMachine createOrUpdateResponse = null; + if (waitOperation) + { + createOrUpdateResponse = ComputeClient.VirtualMachines.CreateOrUpdate(rgName, inputVM.Name, inputVM); + } + else + { + createOrUpdateResponse = ComputeClient.VirtualMachines.BeginCreateOrUpdate(rgName, inputVM.Name, inputVM); + } + + Assert.True(createOrUpdateResponse.Name == inputVM.Name); + Assert.True(createOrUpdateResponse.Location == inputVM.Location.ToLower().Replace(" ", "") || + createOrUpdateResponse.Location.ToLower() == inputVM.Location.ToLower()); + + Assert.True( + createOrUpdateResponse.AvailabilitySet.Id + .ToLowerInvariant() == asetId.ToLowerInvariant()); + //ValidateVM(inputVM, createOrUpdateResponse, expectedVMReferenceId, hasManagedDisks); + + // CONSIDER dropping this Get and ValidateVM call. Nothing changes in the VM model after it's accepted. + // There might have been intent to track the async operation to completion and then check the VM is + // still this and okay, but that's not what the code above does and still doesn't make much sense. + vm = ComputeClient.VirtualMachines.Get(rgName, inputVM.Name); + //ValidateVM(inputVM, vm, expectedVMReferenceId, hasManagedDisks); + } + + inputVM = vm; + } + catch + { + //ResourceClient.ResourceGroups.Delete(rgName); + throw; + } + + return vm; + } + + protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expectedVMReferenceId, bool hasManagedDisks = false) + { + Assert.True(vmOut.LicenseType == vm.LicenseType); + + Assert.True(!string.IsNullOrEmpty(vmOut.ProvisioningState)); + + Assert.True(vmOut.HardwareProfile.VmSize + == vm.HardwareProfile.VmSize); + + Assert.NotNull(vmOut.StorageProfile.OsDisk); + + if (vm.StorageProfile.OsDisk != null) + { + Assert.True(vmOut.StorageProfile.OsDisk.Name + == vm.StorageProfile.OsDisk.Name); + + Assert.True(vmOut.StorageProfile.OsDisk.Caching + == vm.StorageProfile.OsDisk.Caching); + + Assert.NotNull(vmOut.StorageProfile.OsDisk.Vhd); + Assert.Equal(vm.StorageProfile.OsDisk.Vhd.Uri, vmOut.StorageProfile.OsDisk.Vhd.Uri); + if (vm.StorageProfile.OsDisk.Image != null && vm.StorageProfile.OsDisk.Image.Uri != null) + { + Assert.Equal(vm.StorageProfile.OsDisk.Image.Uri, vmOut.StorageProfile.OsDisk.Image.Uri); + } + } + + if (vm.StorageProfile.DataDisks != null && + vm.StorageProfile.DataDisks.Any()) + { + foreach (var dataDisk in vm.StorageProfile.DataDisks) + { + var dataDiskOut = vmOut.StorageProfile.DataDisks.FirstOrDefault( + d => dataDisk.Lun == d.Lun); + + Assert.NotNull(dataDiskOut); + Assert.Equal(dataDiskOut.DiskSizeGB, dataDisk.DiskSizeGB); + Assert.Equal(dataDiskOut.CreateOption, dataDisk.CreateOption); + if (dataDisk.Caching != null) + { + Assert.Equal(dataDiskOut.Caching, dataDisk.Caching); + } + + if (dataDisk.Name != null) + { + Assert.Equal(dataDiskOut.Name, dataDisk.Name); + } + + // Disabling resharper null-ref check as it doesn't seem to understand the not-null assert above. + // ReSharper disable PossibleNullReferenceException + + + Assert.NotNull(dataDiskOut.Vhd); + Assert.NotNull(dataDiskOut.Vhd.Uri); + if (dataDisk.Image != null && dataDisk.Image.Uri != null) + { + Assert.NotNull(dataDiskOut.Image); + Assert.Equal(dataDisk.Image.Uri, dataDiskOut.Image.Uri); + } + // ReSharper enable PossibleNullReferenceException + } + } + } + + + protected PublicIPAddress CreatePublicIP(string rgName) + { + // Create publicIP + string publicIpName = "pip5913"; + string domainNameLabel = "dn5913"; + + PublicIPAddress publicIp = null; + + try + { + publicIp = NetworkClient.PublicIPAddresses.Get(rgName, publicIpName); + } + catch { } + + if(publicIp == null) + { + publicIp = new PublicIPAddress() + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() + { + {"key", "value"} + }, + PublicIPAllocationMethod = IPAllocationMethod.Dynamic, + DnsSettings = new PublicIPAddressDnsSettings() + { + DomainNameLabel = domainNameLabel + } + }; + + var putPublicIpAddressResponse = NetworkClient.PublicIPAddresses.CreateOrUpdate(rgName, publicIpName, publicIp); + var getPublicIpAddressResponse = NetworkClient.PublicIPAddresses.Get(rgName, publicIpName); + + publicIp = getPublicIpAddressResponse; + } + + return publicIp; + } + + protected string CreateAvailabilitySet(string rgName, string asName, bool hasManagedDisks = false) + { + // Setup availability set + AvailabilitySet inputAvailabilitySet = null; + + try + { + inputAvailabilitySet = ComputeClient.AvailabilitySets.Get(rgName, asName); + } + catch { } + + if(inputAvailabilitySet == null) + { + var aSet = new AvailabilitySet + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() + { + {"RG", "rg"}, + {"testTag", "1"} + }, + PlatformFaultDomainCount = hasManagedDisks ? 2 : 3, + PlatformUpdateDomainCount = 5, + }; + + // Create an Availability Set and then create a VM inside this availability set + var asCreateOrUpdateResponse = ComputeClient.AvailabilitySets.CreateOrUpdate( + rgName, + asName, + aSet + ); + + inputAvailabilitySet = asCreateOrUpdateResponse; + } + + var asetId = GetAvailabilitySetRef(ComputeClient.SubscriptionId, rgName, inputAvailabilitySet.Name); + return asetId; + } + + protected Subnet CreateVNET(string rgName, bool addDnsServer = true) + { + // Create Vnet + // Populate parameter for Put Vnet + string vnetName = "vn5913"; + string subnetName = "sn5913"; + + Subnet subnet = null; + + try + { + subnet = NetworkClient.Subnets.Get(rgName, vnetName, subnetName); + } + catch { } + + + if (subnet == null) + { + var vnet = new VirtualNetwork() + { + Location = DEFAULT_LOCATION, + AddressSpace = new AddressSpace() + { + AddressPrefixes = new List() + { + "10.0.0.0/16", + } + }, + DhcpOptions = !addDnsServer ? null : new DhcpOptions() + { + DnsServers = new List() + { + "10.1.1.1", + "10.1.2.4" + } + }, + Subnets = new List() + { + new Subnet() + { + Name = subnetName, + AddressPrefix = "10.0.0.0/24", + } + } + }; + var putVnetResponse = NetworkClient.VirtualNetworks.CreateOrUpdate(rgName, vnetName, vnet); + var getSubnetResponse = NetworkClient.Subnets.Get(rgName, vnetName, subnetName); + subnet = getSubnetResponse; + } + return subnet; + } + + protected VirtualNetwork CreateVNETWithSubnets(string rgName, int subnetCount = 2) + { + // Create Vnet + // Populate parameter for Put Vnet + string vnetName = GenerateName("vn"); + + var vnet = new VirtualNetwork() + { + Location = DEFAULT_LOCATION, + AddressSpace = new AddressSpace() + { + AddressPrefixes = new List() + { + "10.0.0.0/16", + } + }, + DhcpOptions = new DhcpOptions() + { + DnsServers = new List() + { + "10.1.1.1", + "10.1.2.4" + } + }, + }; + + vnet.Subnets = new List(); + for (int i = 1; i <= subnetCount; i++) + { + Subnet subnet = new Subnet() + { + Name = GenerateName("sn" + i), + AddressPrefix = "10.0." + i + ".0/24", + }; + vnet.Subnets.Add(subnet); + } + + var putVnetResponse = NetworkClient.VirtualNetworks.CreateOrUpdate(rgName, vnetName, vnet); + return putVnetResponse; + } + + protected NetworkSecurityGroup CreateNsg(string rgName, string nsgName = null) + { + nsgName = nsgName ?? GenerateName("nsg"); + var nsgParameters = new NetworkSecurityGroup() + { + Location = DEFAULT_LOCATION + }; + + var putNSgResponse = NetworkClient.NetworkSecurityGroups.CreateOrUpdate(rgName, nsgName, nsgParameters); + var getNsgResponse = NetworkClient.NetworkSecurityGroups.Get(rgName, nsgName); + + return getNsgResponse; + } + + protected NetworkInterface CreateNIC(string rgName, Subnet subnet, string publicIPaddress, string nicname = null, NetworkSecurityGroup nsg = null) + { + // Create Nic + nicname = "nic5913"; + string ipConfigName = "ip5913"; + NetworkInterface netInterface = null; + try + { + netInterface = NetworkClient.NetworkInterfaces.Get(rgName, nicname); + } + catch { } + + if(netInterface == null) + { + var nicParameters = new NetworkInterface() + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() + { + { "key" ,"value" } + }, + IpConfigurations = new List() + { + new NetworkInterfaceIPConfiguration() + { + Name = ipConfigName, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + Subnet = subnet, + } + }, + NetworkSecurityGroup = nsg + }; + + if (publicIPaddress != null) + { + nicParameters.IpConfigurations[0].PublicIPAddress = new Microsoft.Azure.Management.Network.Models.PublicIPAddress() { Id = publicIPaddress }; + } + + var putNicResponse = NetworkClient.NetworkInterfaces.CreateOrUpdate(rgName, nicname, nicParameters); + var getNicResponse = NetworkClient.NetworkInterfaces.Get(rgName, nicname); + netInterface = getNicResponse; + } + return netInterface; + } + + protected NetworkInterface CreateMultiIpConfigNIC(string rgName, Subnet subnet, string nicname) + { + // Create Nic + nicname = nicname ?? GenerateName("nic"); + + string ipConfigName = GenerateName("ip"); + string ipConfigName2 = GenerateName("ip2"); + + var nicParameters = new NetworkInterface() + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() + { + { "key" ,"value" } + }, + IpConfigurations = new List() + { + new NetworkInterfaceIPConfiguration() + { + Name = ipConfigName, + Primary = true, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + Subnet = subnet, + }, + + new NetworkInterfaceIPConfiguration() + { + Name = ipConfigName2, + Primary = false, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + Subnet = subnet, + } + } + }; + + var putNicResponse = NetworkClient.NetworkInterfaces.CreateOrUpdate(rgName, nicname, nicParameters); + var getNicResponse = NetworkClient.NetworkInterfaces.Get(rgName, nicname); + return getNicResponse; + } + + protected VirtualMachine CreateDefaultVMInput(string rgName, string vmName, string storageAccountName, ImageReference imageRef, string asetId, string nicId, bool hasManagedDisks = false) + { + // Generate Container name to hold disk VHds + string containerName = "cont5913"; + var vhdContainer = "https://" + storageAccountName + ".blob.core.windows.net/" + containerName; + var vhduri = vhdContainer + string.Format("/{0}.vhd", "vhd5913"); + var osVhduri = vhdContainer + string.Format("/os{0}.vhd", "vhdcont5913"); + + var vm = new VirtualMachine + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() { { "RG", "rg" }, { "testTag", "1" } }, + AvailabilitySet = new Microsoft.Azure.Management.Compute.Models.SubResource() { Id = asetId }, + HardwareProfile = new HardwareProfile + { + VmSize = VirtualMachineSizeTypes.StandardA0 + }, + StorageProfile = new StorageProfile + { + ImageReference = imageRef, + OsDisk = new OSDisk + { + Caching = CachingTypes.None, + CreateOption = DiskCreateOptionTypes.FromImage, + Name = "test", + Vhd = hasManagedDisks ? null : new VirtualHardDisk + { + Uri = osVhduri + } + } + //DataDisks = !hasManagedDisks ? null : new List() + //{ + // new DataDisk() + // { + // Caching = CachingTypes.None, + // CreateOption = DiskCreateOptionTypes.Empty, + // Lun = 0, + // DiskSizeGB = 30, + // ManagedDisk = new ManagedDiskParameters() + // { + // StorageAccountType = StorageAccountTypes.StandardLRS + // } + // } + //}, + }, + NetworkProfile = new NetworkProfile + { + NetworkInterfaces = new List + { + new NetworkInterfaceReference + { + Id = nicId + } + } + }, + OsProfile = new OSProfile + { + AdminUsername = "Foo12", + AdminPassword = "BaR@123" + rgName, + ComputerName = "test" + } + }; + + typeof(Microsoft.Azure.Management.Compute.Models.Resource).GetRuntimeProperty("Name").SetValue(vm, vmName); + typeof(Microsoft.Azure.Management.Compute.Models.Resource).GetRuntimeProperty("Type").SetValue(vm, GenerateName("Microsoft.Compute/virtualMachines")); + return vm; + } + + public static string GetVMReferenceId(string subId, string resourceGrpName, string vmName) + { + return GetEntityReferenceId(subId, resourceGrpName, ApiConstants.VirtualMachines, vmName); + } + + public static string GetAvailabilitySetRef(string subId, string resourceGrpName, string availabilitySetName) + { + return GetEntityReferenceId(subId, resourceGrpName, ApiConstants.AvailabilitySets, availabilitySetName); + } + + private static string GetEntityReferenceId(string subId, string resourceGrpName, string controllerName, string entityName) + { + return string.Format("/{0}/{1}/{2}/{3}/{4}/{5}/{6}/{7}", + ApiConstants.Subscriptions, subId, ApiConstants.ResourceGroups, resourceGrpName, + ApiConstants.Providers, ApiConstants.ResourceProviderNamespace, controllerName, + entityName); + } + + } + + public static class ApiConstants + { + public const string + Subscriptions = "subscriptions", + ResourceGroups = "resourceGroups", + Providers = "providers", + VirtualMachines = "virtualMachines", + AvailabilitySets = "availabilitySets", + ResourceProviderNamespace = "Microsoft.Compute"; + } + + public static class Constants + { + public const string StorageAccountBlobUriTemplate = "https://{0}.blob.core.windows.net/"; + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs new file mode 100644 index 000000000000..ee9b9185f04a --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs @@ -0,0 +1,88 @@ +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests +{ + using Microsoft.Azure.Management.Compute; + using Microsoft.Azure.Management.Compute.Models; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.Storage.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets; + using Rest.Azure; + using System.Net; + using Xunit; + using System.Threading.Tasks; + using System.Diagnostics; + using System; + using System.Net.Http; + + public class VMTests : E2ETestBase + { + const string prefix = "e2etests"; + const string resourcePrefix = "res"; + const string storagePrefix = "sto"; + const string networkPrefix = "net"; + const string vmPrefix = "vm"; + + /// + /// Constructor + /// + public VMTests() : base(prefix) + { + + } + + [Fact] + public void UpdateVM_DoNotSerializeProtected() + { + string guidString = "f978ade9"; //We need to be under 24 char for storage, so making it shorter for almost all names + string resourceGroupName = string.Format("{0}-{1}-{2}", prefix, resourcePrefix, guidString); + string storageName = string.Format("{0}{1}{2}", prefix, storagePrefix, guidString); + string vmName = string.Format("{0}-{1}-{2}", prefix, vmPrefix, guidString); + + VirtualMachine vm1; + ResourceGroup resGroup = null; + + using (base.MockContext = MockContext.Start(this.GetType().FullName)) + { + try + { + string newVmId = "5C6F1669-C183-4BFC-9BBB-138E0892E917"; + string asName = "as5913"; + resGroup = CreateResourceGroup(resourceGroupName); + StorageAccount storageAccount = CreateStorageAccount(resGroup, storageName); + ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); + VirtualMachine vm = CreateVM_NoAsyncTracking(resGroup.Name, vmName, asName, storageAccount, imageRef, out vm1); + + //Create a new VM and Update VmId protected Property + MyVm myNewVm = new MyVm(vm); + myNewVm.UpdateVm(newVmId); + VirtualMachine updatedVm = myNewVm as VirtualMachine; + + // Update VM + AzureOperationResponse res = Task>.Run(async () => + { + return await ComputeClient.VirtualMachines.BeginCreateOrUpdateWithHttpMessagesAsync(resGroup.Name, updatedVm.Name, updatedVm).ConfigureAwait(false); + }).GetAwaiter().GetResult(); + + //Get Request Content and verify it does not contain VmId property + string requestContentStr = ComputeClient.GetRequestContent(); + Assert.False(requestContentStr.Contains("VmId")); + + //Get VM Object + VirtualMachine getVm = res.Body; + + // Verify the vmPutResponse does not contain updated VmId + Assert.NotEqual(newVmId, getVm.VmId); + } + catch(Exception ex) + { + Debug.WriteLine(ex.ToString()); + } + finally + { + ResourceClient.ResourceGroups.Delete(resGroup.Name); + } + } + } + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json new file mode 100644 index 000000000000..a1df7c3f975f --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json @@ -0,0 +1,3601 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5954cea2-0adc-4ec3-bf29-553565f7efcb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'e2etests-res-f978ade9' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "113" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:33:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + ], + "x-ms-correlation-request-id": [ + "103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153329Z:103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "792b5bc8-bbb8-4975-9f09-f923d8396902" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + ], + "x-ms-correlation-request-id": [ + "b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153422Z:b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "107" + ], + "x-ms-client-request-id": [ + "2693c761-c7bd-41f0-be26-6cecd3a6d67a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "258" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:33:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d3c44c97-2eaf-4312-b5b1-850f55aaf200" + ], + "x-ms-correlation-request-id": [ + "d3c44c97-2eaf-4312-b5b1-850f55aaf200" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153332Z:d3c44c97-2eaf-4312-b5b1-850f55aaf200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac4e8e0d-fe2e-48bd-b82a-3b39327187d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:33:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3fcf20ac-11aa-45fb-b977-96432c983e8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "3fcf20ac-11aa-45fb-b977-96432c983e8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153334Z:3fcf20ac-11aa-45fb-b977-96432c983e8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4610d918-d3c6-4781-8e71-796a1c9cf744" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T15:33:37.2060922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1f7addc2-86e9-48de-aede-1c6432ecacd5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "1f7addc2-86e9-48de-aede-1c6432ecacd5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153418Z:1f7addc2-86e9-48de-aede-1c6432ecacd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2UyZXRlc3Rzc3RvZjk3OGFkZTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], + "x-ms-client-request-id": [ + "2a916740-2551-4705-8e18-1c480963194a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:33:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/0d1d1a0c-6124-429b-990d-2559bd9f83fd?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7301374d-633d-490a-8cec-9a5dbb23dbb5" + ], + "x-ms-correlation-request-id": [ + "7301374d-633d-490a-8cec-9a5dbb23dbb5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153337Z:7301374d-633d-490a-8cec-9a5dbb23dbb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/0d1d1a0c-6124-429b-990d-2559bd9f83fd?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBkMWQxYTBjLTYxMjQtNDI5Yi05OTBkLTI1NTliZDlmODNmZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4e392d2b-332f-460a-920f-0b66a12b4d3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "4e392d2b-332f-460a-920f-0b66a12b4d3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153408Z:4e392d2b-332f-460a-920f-0b66a12b4d3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2UyZXRlc3Rzc3RvZjk3OGFkZTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8825bfb5-d522-4e06-ab25-24c0376025a8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T15:33:37.2060922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "07196a4a-cf03-4d44-bc6b-cd9593240d21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "07196a4a-cf03-4d44-bc6b-cd9593240d21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153418Z:07196a4a-cf03-4d44-bc6b-cd9593240d21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bcf2cfd2-32dd-4b54-bcda-7887fda0a87b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20160617\",\r\n \"id\": \"/Subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20160617\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9fc414ea-410e-4600-9f7c-71bc36416f3f_131147224964182697" + ], + "x-ms-request-id": [ + "fc9bbf56-7a4f-49df-9468-35b1dcc92631" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "3f7c05ae-2909-4dc6-a354-85b4f557f865" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153421Z:3f7c05ae-2909-4dc6-a354-85b4f557f865" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd4c4b15-852f-4045-bf81-9f62f9e26de9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "20a78d0d-836d-4e37-b019-0adc476b1161" + ], + "x-ms-correlation-request-id": [ + "20a78d0d-836d-4e37-b019-0adc476b1161" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153422Z:20a78d0d-836d-4e37-b019-0adc476b1161" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "a039c1c1-3bad-4d74-adaa-1f5c178c0b59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "cc7aaff7-6eda-48b3-bcfe-1aac7b017696" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154424Z:cc7aaff7-6eda-48b3-bcfe-1aac7b017696" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0debd1f-1b6d-4f26-bbe3-09fc161cfd26" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "0759e33f-992d-4016-8ede-b50f976842fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "ff5c2e00-ff69-43be-be85-e54b8d27f3e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154424Z:ff5c2e00-ff69-43be-be85-e54b8d27f3e4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1fcce22-63cc-4af1-92aa-1196d66fd13e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pip5913' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "baf238f9-d309-4992-b3b8-19c301b15514" + ], + "x-ms-correlation-request-id": [ + "baf238f9-d309-4992-b3b8-19c301b15514" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153425Z:baf238f9-d309-4992-b3b8-19c301b15514" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"caeed610-eeef-44b4-a08a-95fbee2b11ca\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"caeed610-eeef-44b4-a08a-95fbee2b11ca\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "639adec6-5e9a-444c-ac04-b883931868b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "f84c8d73-45d8-4d0a-b5e0-82cde333892a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153502Z:f84c8d73-45d8-4d0a-b5e0-82cde333892a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0527fd56-c0bb-4a8c-949b-cf63a2876b64" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"caeed610-eeef-44b4-a08a-95fbee2b11ca\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"caeed610-eeef-44b4-a08a-95fbee2b11ca\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "83bddc95-be76-408b-bcbe-0f81f209180d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "a2a982a8-0c45-43ae-8916-7a9129e32c0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153502Z:a2a982a8-0c45-43ae-8916-7a9129e32c0c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "207" + ], + "x-ms-client-request-id": [ + "f18755ac-c196-4602-8304-777797768d7f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"f7626243-4e30-4757-a7e1-d222ea938c29\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "719" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8da38886-e9cd-47b4-b357-5fae8a3f0ed3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/8da38886-e9cd-47b4-b357-5fae8a3f0ed3?api-version=2016-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "1740ca82-fe1f-4350-abc7-017ef9d48b0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153431Z:1740ca82-fe1f-4350-abc7-017ef9d48b0c" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/8da38886-e9cd-47b4-b357-5fae8a3f0ed3?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhkYTM4ODg2LWU5Y2QtNDdiNC1iMzU3LTVmYWU4YTNmMGVkMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f1f55caa-a929-4beb-b58e-82a59cb60ba4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "e88c4b1c-769c-47d8-a1bf-299cb2b0ba9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153501Z:e88c4b1c-769c-47d8-a1bf-299cb2b0ba9c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNTkxMy9zdWJuZXRzL3NuNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7890c050-2a1b-4b30-8ddb-21a2fbacbe20" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vn5913' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9f8316ba-bdcb-42f1-a2e9-adc096379d32" + ], + "x-ms-correlation-request-id": [ + "9f8316ba-bdcb-42f1-a2e9-adc096379d32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153502Z:9f8316ba-bdcb-42f1-a2e9-adc096379d32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNTkxMy9zdWJuZXRzL3NuNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a53e297-dea7-48e0-a016-f711bc113589" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "81d5f5e3-1772-4b20-850b-9f62dbb40195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "6341deb3-f781-42e4-b679-df4c9bce09ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153536Z:6341deb3-f781-42e4-b679-df4c9bce09ba" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn5913\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "402" + ], + "x-ms-client-request-id": [ + "038a2f8e-f4c7-4bdd-b3b4-932d80d76796" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"ddab5f9b-96a4-4a5f-9719-10c450c4ad0b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6649a8b2-540c-4ad7-925d-65d64b5db865\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"ddab5f9b-96a4-4a5f-9719-10c450c4ad0b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ae38e65f-0430-488a-a145-b5de0e17f282" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/ae38e65f-0430-488a-a145-b5de0e17f282?api-version=2016-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3710b103-0229-43b0-8c9e-17ccfbbd6d15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153505Z:3710b103-0229-43b0-8c9e-17ccfbbd6d15" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/ae38e65f-0430-488a-a145-b5de0e17f282?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FlMzhlNjVmLTA0MzAtNDg4YS1hMTQ1LWI1ZGUwZTE3ZjI4Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "316fb40a-193a-4ee2-b0ac-d7eb6f6c4525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "aeb283ac-6083-4c92-ab28-b60e89555c2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153536Z:aeb283ac-6083-4c92-ab28-b60e89555c2c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6649a8b2-540c-4ad7-925d-65d64b5db865\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9d194060-5591-4d5c-8e48-e981833efdb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "0a078aca-adba-4af4-844a-640177b74ef0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153536Z:0a078aca-adba-4af4-844a-640177b74ef0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e8a88d6-acaf-4e10-ae74-5e10692f2b96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic5913' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + ], + "x-ms-correlation-request-id": [ + "c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153537Z:c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"534832b1-f3a9-46c2-9f91-9d86527c3df1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "36694866-cffd-411f-9797-ca68d0d8375f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "9a105f62-e6b6-4c2a-ae8f-4701f50e8623" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153541Z:9a105f62-e6b6-4c2a-ae8f-4701f50e8623" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c51934a0-036b-4e86-927b-04b7100f24cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"534832b1-f3a9-46c2-9f91-9d86527c3df1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a5978243-e842-49a3-9ddd-78c9128d2a51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "fbd7aed1-089e-437e-b08f-1a6c58169851" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153541Z:fbd7aed1-089e-437e-b08f-1a6c58169851" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n }\r\n },\r\n \"name\": \"ip5913\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "715" + ], + "x-ms-client-request-id": [ + "cf715dbd-2162-48cc-a5e0-30b6c701bb70" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1481" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c4728559-db3c-49a3-9e3a-173c398d8d16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/c4728559-db3c-49a3-9e3a-173c398d8d16?api-version=2016-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "5dea3e7a-db1e-4a10-9dfc-9484d4f905b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153540Z:5dea3e7a-db1e-4a10-9dfc-9484d4f905b7" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/as5913?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczU5MTM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31181cf7-3d08-41fb-aafa-6ae4b73b1034" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/availabilitySets/as5913' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "394b6141-07a5-453e-9401-68952659e867" + ], + "x-ms-correlation-request-id": [ + "394b6141-07a5-453e-9401-68952659e867" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153542Z:394b6141-07a5-453e-9401-68952659e867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/as5913?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczU5MTM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "188" + ], + "x-ms-client-request-id": [ + "1f49fce4-ada8-449f-8ccb-f06d17125e15" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/as5913\",\r\n \"name\": \"as5913\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "ba6bbe97-b35c-4c5d-83ef-13a15d96c515" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3b617b5b-fc27-4a0c-95a0-3229444944a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153547Z:3b617b5b-fc27-4a0c-95a0-3229444944a8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123e2etests-res-f978ade9\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/as5913\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1244" + ], + "x-ms-client-request-id": [ + "9e43aa08-09af-4cbc-bb8f-88e28480ea93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "88d7e8c3-bb51-411e-aa29-b31652ea04dc" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c8c1c4fc-1e57-4288-8131-95d76fe6d8a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153550Z:c8c1c4fc-1e57-4288-8131-95d76fe6d8a1" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1382" + ], + "x-ms-client-request-id": [ + "172d2834-2b44-4b27-812f-fb4da2a32c14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/8f646245-0811-4c2d-a2e8-bb4c7b16f230?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "8f646245-0811-4c2d-a2e8-bb4c7b16f230" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "e38ae6f2-c276-4d60-8027-45959808f569" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154427Z:e38ae6f2-c276-4d60-8027-45959808f569" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:36:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "fc5000e3-2c8f-4484-b7a1-407cc1aaa24f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "727a4083-4d42-4a30-bf71-e75c374e159a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153621Z:727a4083-4d42-4a30-bf71-e75c374e159a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:36:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "f1b927b7-578a-4afc-85e7-eb8fb5ab3525" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "13f6aa11-951f-4f11-bb2e-67acc8345812" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153651Z:13f6aa11-951f-4f11-bb2e-67acc8345812" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:37:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "62fd83e5-a5fd-4485-b100-b3958fe0b4b8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "3cd13bd8-7c47-4a76-9e13-6c1d77dbd5dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153721Z:3cd13bd8-7c47-4a76-9e13-6c1d77dbd5dd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:37:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "432c79d2-ab49-4a72-ac36-564dd2ec0c33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "7213fa32-9a29-4505-949f-47ab0e9734cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153751Z:7213fa32-9a29-4505-949f-47ab0e9734cd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:38:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "37f830ef-7134-46f6-aa3f-7f0db7594357" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "3c2826e8-31de-458f-9757-92b884390736" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153821Z:3c2826e8-31de-458f-9757-92b884390736" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:38:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "c8dd66f2-9b48-42bc-9f48-43429c8adb92" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "e28068be-8c02-4a56-9425-bb7c3095434f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153851Z:e28068be-8c02-4a56-9425-bb7c3095434f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:39:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "83de1fd7-0216-47a2-baf7-866117034fae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "674b5d0d-3957-4fc0-aafb-2590410c4887" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153922Z:674b5d0d-3957-4fc0-aafb-2590410c4887" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "16798955-fef3-4486-a292-869a3a71aee7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "2d0de45d-bb95-48d5-86af-a86a3ef26c9d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153952Z:2d0de45d-bb95-48d5-86af-a86a3ef26c9d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:40:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "11e42ce0-9f34-4311-a463-c1e8a9931623" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "9170548e-7ac9-4ced-8379-3f0030bd84b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154022Z:9170548e-7ac9-4ced-8379-3f0030bd84b2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:40:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "35a2028e-7473-40ec-853a-59511a8a5af0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "7f5c6c8b-75b4-4a3f-be75-e6ef944bed29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154052Z:7f5c6c8b-75b4-4a3f-be75-e6ef944bed29" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:41:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "d2d6e687-52ed-4d7f-97a9-2969969f0e26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "c049ae64-f685-4632-afe4-8da38af04fba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154122Z:c049ae64-f685-4632-afe4-8da38af04fba" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:41:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "756cf451-dc4b-4749-816a-776467d2524c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "dee21388-e85e-402d-9bfc-896090432a71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154153Z:dee21388-e85e-402d-9bfc-896090432a71" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:42:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "60af8a07-8416-42df-a454-bf3181da457d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "de759402-14b6-45f6-95a8-6323e4a4c5fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154223Z:de759402-14b6-45f6-95a8-6323e4a4c5fb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:42:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "aa6a10db-677b-403f-8329-a4284840b1c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "aaef9ee7-4cf4-48c2-bf18-1aceb115bace" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154253Z:aaef9ee7-4cf4-48c2-bf18-1aceb115bace" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:43:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "123976d8-1870-4dbb-8e68-ecb1ca3708ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "0b86726f-c8eb-4243-bb28-0809a771c5c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154324Z:0b86726f-c8eb-4243-bb28-0809a771c5c0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:43:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "21848832-5333-4606-988e-40dbc76f7214" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "693b844d-1133-449b-a83f-a44c56f59784" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154354Z:693b844d-1133-449b-a83f-a44c56f59784" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"endTime\": \"2017-03-16T08:44:20.1438629-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "bc61502f-744a-4148-a460-690410fa2b95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "36e8d32d-a9b6-46a6-a3cb-51c5b5dca573" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154424Z:36e8d32d-a9b6-46a6-a3cb-51c5b5dca573" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5c3ec0d-db3c-48f2-9442-21c36160141a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "cd72d30a-55bc-47d9-9201-318fbcc61230" + ], + "x-ms-correlation-request-id": [ + "cd72d30a-55bc-47d9-9201-318fbcc61230" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154431Z:cd72d30a-55bc-47d9-9201-318fbcc61230" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:45:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "622c2276-5727-4796-a026-6e430a49454e" + ], + "x-ms-correlation-request-id": [ + "622c2276-5727-4796-a026-6e430a49454e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154501Z:622c2276-5727-4796-a026-6e430a49454e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:45:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "285358c0-e496-4f9d-a610-bcf70f3a745a" + ], + "x-ms-correlation-request-id": [ + "285358c0-e496-4f9d-a610-bcf70f3a745a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154531Z:285358c0-e496-4f9d-a610-bcf70f3a745a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:46:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "980be1f8-765c-4b02-9bbe-a26fd2744126" + ], + "x-ms-correlation-request-id": [ + "980be1f8-765c-4b02-9bbe-a26fd2744126" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154602Z:980be1f8-765c-4b02-9bbe-a26fd2744126" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:46:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + ], + "x-ms-correlation-request-id": [ + "e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154632Z:e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:47:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "5d7b6b1d-b566-43f0-a662-91f628e60899" + ], + "x-ms-correlation-request-id": [ + "5d7b6b1d-b566-43f0-a662-91f628e60899" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154703Z:5d7b6b1d-b566-43f0-a662-91f628e60899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:47:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "28afe351-f663-4612-9f98-b328ca6cf165" + ], + "x-ms-correlation-request-id": [ + "28afe351-f663-4612-9f98-b328ca6cf165" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154733Z:28afe351-f663-4612-9f98-b328ca6cf165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:48:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "588d8025-e38e-49ab-8087-38d59cf2c737" + ], + "x-ms-correlation-request-id": [ + "588d8025-e38e-49ab-8087-38d59cf2c737" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154803Z:588d8025-e38e-49ab-8087-38d59cf2c737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:48:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "ff765548-d892-457b-9c10-3094246b3617" + ], + "x-ms-correlation-request-id": [ + "ff765548-d892-457b-9c10-3094246b3617" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154834Z:ff765548-d892-457b-9c10-3094246b3617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:49:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "673472ff-3923-4c5b-8ef6-e6a7a78d7802" + ], + "x-ms-correlation-request-id": [ + "673472ff-3923-4c5b-8ef6-e6a7a78d7802" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154904Z:673472ff-3923-4c5b-8ef6-e6a7a78d7802" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:49:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "8c8aa8e6-3966-4866-aea1-12ed6b134f67" + ], + "x-ms-correlation-request-id": [ + "8c8aa8e6-3966-4866-aea1-12ed6b134f67" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154934Z:8c8aa8e6-3966-4866-aea1-12ed6b134f67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:50:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "52a0757d-4122-4f74-8d68-4f3807717743" + ], + "x-ms-correlation-request-id": [ + "52a0757d-4122-4f74-8d68-4f3807717743" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T155005Z:52a0757d-4122-4f74-8d68-4f3807717743" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:50:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "8a597e30-adbc-4861-878d-1de304a96423" + ], + "x-ms-correlation-request-id": [ + "8a597e30-adbc-4861-878d-1de304a96423" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T155035Z:8a597e30-adbc-4861-878d-1de304a96423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:51:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "fc381e54-715f-4898-b9c3-6b43f2106613" + ], + "x-ms-correlation-request-id": [ + "fc381e54-715f-4898-b9c3-6b43f2106613" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T155106Z:fc381e54-715f-4898-b9c3-6b43f2106613" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateDefaultVMInput": [ + "Microsoft.Compute/virtualMachines9966" + ] + }, + "Variables": { + "SubscriptionId": "2c224e7e-3ef5-431d-a57b-e71f4662e3a6" + } +} \ No newline at end of file diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs new file mode 100644 index 000000000000..5404a8460c5b --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs @@ -0,0 +1,70 @@ +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets +{ + /// + /// Class to extend VM class + /// This class is specifically meant to assign/reinitialize/set protected members + /// + public class MyVm : Microsoft.Azure.Management.Compute.Models.VirtualMachine + { + /// + /// Constructor + /// + /// + public MyVm(VirtualMachine vm) + : base(vm.Location, vm.Id, vm.Name, vm.Type, vm.Tags, vm.Plan, vm.HardwareProfile, vm.StorageProfile, vm.OsProfile, + vm.NetworkProfile, vm.DiagnosticsProfile, vm.AvailabilitySet, vm.ProvisioningState, vm.InstanceView, + vm.LicenseType, vm.VmId, vm.Resources) + { + + } + + /// + /// Method to update protected properties + /// + /// + public void UpdateVm(string newVmId) + { + VmId = newVmId; + } + } + + + /// + /// Extending Compute Client + /// This client is used to capture Request content sent over wire using user defined delegates + /// + public class MyComputeClient : ComputeManagementClient + { + public MyComputeClient(System.Uri baseUri, + System.Net.Http.HttpClientHandler rootHandler, + params System.Net.Http.DelegatingHandler[] handlers) : base(baseUri, rootHandler, handlers) + { + + } + + public MyComputeClient(System.Uri baseUri, + ServiceClientCredentials credentials, + params System.Net.Http.DelegatingHandler[] handlers) : base(baseUri, credentials, handlers) + { + + } + + /// + /// Gets Request contet for the request that was sent by the client + /// + /// + public string GetRequestContent() + { + RecordedDelegatingHandler handle = this.FirstMessageHandler as RecordedDelegatingHandler; + string cont = handle.RequestContent; + return cont; + } + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs new file mode 100644 index 000000000000..8a988d395d18 --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs @@ -0,0 +1,82 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Net; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading.Tasks; + +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets +{ + /// + /// Delegating handler for test purpose + /// + public class RecordedDelegatingHandler : DelegatingHandler + { + private readonly HttpResponseMessage _response; + + public RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.Created; + } + + public RecordedDelegatingHandler(HttpResponseMessage response) + { + StatusCodeToReturn = HttpStatusCode.Created; + _response = response; + } + + public HttpContentHeaders ContentHeaders { get; private set; } + + public bool IsPassThrough { get; set; } + + public HttpMethod Method { get; private set; } + + public string RequestContent { get; private set; } + + public HttpRequestHeaders RequestHeaders { get; private set; } + + public HttpStatusCode StatusCodeToReturn { get; set; } + + public Uri Uri { get; private set; } + + protected override async Task SendAsync(HttpRequestMessage request, + System.Threading.CancellationToken cancellationToken) + { + // Save request + if (request.Content == null) + { + RequestContent = string.Empty; + } + else + { + RequestContent = await request.Content.ReadAsStringAsync(); + } + RequestHeaders = request.Headers; + if (request.Content != null) + { + ContentHeaders = request.Content.Headers; + } + Method = request.Method; + Uri = request.RequestUri; + + // Prepare response + if (IsPassThrough) + { + return await base.SendAsync(request, cancellationToken); + } + + if (_response != null) + { + return _response; + } + else + { + var response = new HttpResponseMessage(StatusCodeToReturn); + response.Content = new StringContent(""); + return response; + } + } + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/project.json new file mode 100644 index 000000000000..c6593b477443 --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/project.json @@ -0,0 +1,56 @@ +{ + "version": "1.0.0-*", + "description": "Microsoft Rest ClientRuntime End to End Tests", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "summary": "TestFramework.Tests Class Library", + "tags": [ "" ], + "projectUrl": "", + "licenseUrl": "" + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../tools/MSSharedLibKey.snk", + "compile": "../../../tools/DisableTestRunParallel.cs" + }, + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "imports": [ "dnxcore50", "portable-net45+win8" ], + "dependencies": { + } + } + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "Microsoft.Azure.Test.HttpRecorder": { + "target": "project", + "type": "build" + }, + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": { + "target": "project", + "type": "build" + }, + "Microsoft.Rest.ClientRuntime": { + "target": "project", + "type": "build" + }, + "Microsoft.Rest.ClientRuntime.Azure": { + "target": "project", + "type": "build" + }, + "xunit": "2.2.0-beta4-build3444", + "dotnet-test-xunit": "2.2.0-preview2-build1029", + "Microsoft.Azure.ResourceManager": "1.0.0-preview", + "Microsoft.Azure.Management.Storage": "4.1.0-preview", + "Microsoft.Azure.Management.Compute": "14.1.0-prerelease", + "Microsoft.Azure.Management.Network": "[5.0.1-preview,7.0)" + } +} diff --git a/src/ClientRuntime/global.json b/src/ClientRuntime/global.json index 25fb11a0a6d5..cd6189215a08 100644 --- a/src/ClientRuntime/global.json +++ b/src/ClientRuntime/global.json @@ -1,5 +1,3 @@ { - "projects": [ "Microsoft.Rest.ClientRuntime", "Microsoft.Rest.ClientRuntime.Azure.Authentication", "Microsoft.Rest.ClientRuntime.Etw", - "Microsoft.Rest.ClientRuntime.Tests", "Microsoft.Rest.ClientRuntime.Azure", "Microsoft.Rest.ClientRuntime.Azure.Tests", - "Microsoft.Rest.ClientRuntime.Log4Net", "Microsoft.Rest.ClientRuntime.Tracing.Tests" ] + "projects": [ "../TestFramework" ] } \ No newline at end of file From 78918d4ccfcecc3b1c18cca085086999a4ca2da6 Mon Sep 17 00:00:00 2001 From: Dongjiang You Date: Thu, 16 Mar 2017 10:35:36 -0700 Subject: [PATCH 097/137] [ACR] Update to 2017-03-01 version 1. Update getCredentials to listCredentials to support multiple login credentials. 2. Refine regenerateCredential to support regenerate the specified login credential. 3. Add Sku to registry properties as a required property. 4. Rename GetProperties to Get. 5. Change CreateOrUpdate to Create, add registry create parameters. --- .../Helpers/ContainerRegistryTestUtilities.cs | 23 +- .../ContainerRegistryCheckNameTest.json | 240 ++-- .../ContainerRegistryCreateTest.json | 170 +-- .../ContainerRegistryDeleteTest.json | 198 ++- .../ContainerRegistryGetCredentialsTest.json | 597 -------- .../ContainerRegistryGetTest.json | 234 ++- ...tainerRegistryListByResourceGroupTest.json | 202 ++- ...ntainerRegistryListBySubscriptionTest.json | 298 ++-- .../ContainerRegistryListCredentialsTest.json | 573 ++++++++ ...ainerRegistryRegenerateCredentialTest.json | 582 ++++++++ ...inerRegistryRegenerateCredentialsTest.json | 527 ------- .../ContainerRegistryUpdateTest.json | 380 +++-- ...ContainerRegistryUpdateWithCreateTest.json | 1183 --------------- .../Tests/ContainerRegistryTests.cs | 191 +-- .../ContainerRegistryManagementClient.cs | 131 +- .../IContainerRegistryManagementClient.cs | 27 +- .../Generated/IOperations.cs | 71 + .../Generated/IRegistriesOperations.cs | 94 +- .../Generated/Models/OperationDefinition.cs | 55 + .../Models/OperationDisplayDefinition.cs | 73 + .../Generated/Models/Page.cs | 31 +- .../Generated/Models/PasswordName.cs | 31 + .../Generated/Models/ProvisioningState.cs | 31 + .../Models/RegenerateCredentialParameters.cs | 59 + .../Generated/Models/Registry.cs | 75 +- .../Models/RegistryCreateParameters.cs | 118 ++ .../Generated/Models/RegistryCredentials.cs | 48 - .../Models/RegistryListCredentialsResult.cs | 58 + .../Models/RegistryNameCheckRequest.cs | 39 +- .../Generated/Models/RegistryNameStatus.cs | 15 +- .../Generated/Models/RegistryPassword.cs | 54 + .../Models/RegistryUpdateParameters.cs | 51 +- .../Generated/Models/Resource.cs | 43 +- .../Generated/Models/Sku.cs | 70 + .../Generated/Models/SkuTier.cs | 23 + .../Models/StorageAccountParameters.cs | 71 + .../Models/StorageAccountProperties.cs | 39 +- .../Generated/Operations.cs | 401 ++++++ .../Generated/OperationsExtensions.cs | 88 ++ .../Generated/RegistriesOperations.cs | 1267 ++++++++++------- .../RegistriesOperationsExtensions.cs | 189 ++- .../Properties/AssemblyInfo.cs | 2 +- .../generate.cmd | 4 +- .../project.json | 2 +- 44 files changed, 4424 insertions(+), 4234 deletions(-) delete mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetCredentialsTest.json create mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListCredentialsTest.json create mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialTest.json delete mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialsTest.json delete mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateWithCreateTest.json create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IOperations.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDefinition.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDisplayDefinition.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/PasswordName.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/ProvisioningState.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegenerateCredentialParameters.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCreateParameters.cs delete mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCredentials.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryListCredentialsResult.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryPassword.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Sku.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/SkuTier.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountParameters.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Operations.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/OperationsExtensions.cs diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Helpers/ContainerRegistryTestUtilities.cs b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Helpers/ContainerRegistryTestUtilities.cs index e52d3ac51372..3d599579b91a 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Helpers/ContainerRegistryTestUtilities.cs +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Helpers/ContainerRegistryTestUtilities.cs @@ -82,7 +82,7 @@ public static string CreateStorageAccount(StorageManagementClient client, Resour var createRequest = client.StorageAccounts.Create(resourceGroup.Name, storageName, new StorageAccountCreateParameters { Location = resourceGroup.Location, - Sku = new Sku { Name = SkuName.StandardLRS }, + Sku = new Microsoft.Azure.Management.Storage.Models.Sku { Name = SkuName.StandardLRS }, Kind = Kind.Storage }); @@ -92,19 +92,23 @@ public static string CreateStorageAccount(StorageManagementClient client, Resour public static string CreateContainerRegistry(ContainerRegistryManagementClient client, ResourceGroup resourceGroup, string storageName, string storageKey) { string registryName = TestUtilities.GenerateName("acrregistry"); - Registry registry = GetDefaultRegistryProperties(resourceGroup, storageName, storageKey); + RegistryCreateParameters parameters = GetDefaultRegistryCreateParameters(resourceGroup, storageName, storageKey); - var createRequest = client.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registry); + var createRequest = client.Registries.Create(resourceGroup.Name, registryName, parameters); return registryName; } - public static Registry GetDefaultRegistryProperties(ResourceGroup resourceGroup, string storageName, string storageKey) + public static RegistryCreateParameters GetDefaultRegistryCreateParameters(ResourceGroup resourceGroup, string storageName, string storageKey) { - Registry registry = new Registry + RegistryCreateParameters parameters = new RegistryCreateParameters { Location = resourceGroup.Location, - StorageAccount = new StorageAccountProperties + Sku = new Microsoft.Azure.Management.ContainerRegistry.Models.Sku + { + Name = "Basic" + }, + StorageAccount = new StorageAccountParameters { Name = storageName, AccessKey = storageKey @@ -112,7 +116,7 @@ public static Registry GetDefaultRegistryProperties(ResourceGroup resourceGroup, Tags = DefaultTags }; - return registry; + return parameters; } public static string GetStorageAccessKey(StorageManagementClient client, ResourceGroup resourceGroup, string storageName) @@ -126,12 +130,15 @@ public static void VerifyRegistryProperties(Registry registry, string storageNam Assert.NotNull(registry.Id); Assert.NotNull(registry.Name); Assert.NotNull(registry.Location); + Assert.NotNull(registry.Sku); + Assert.Equal(registry.Sku.Name, "Basic"); + Assert.Equal(registry.Sku.Tier, Microsoft.Azure.Management.ContainerRegistry.Models.SkuTier.Basic); + Assert.Equal(registry.ProvisioningState, Microsoft.Azure.Management.ContainerRegistry.Models.ProvisioningState.Succeeded); Assert.NotNull(registry.AdminUserEnabled); Assert.NotNull(registry.LoginServer); Assert.NotNull(registry.CreationDate); Assert.NotNull(registry.StorageAccount); Assert.NotNull(registry.StorageAccount.Name); - Assert.Null(registry.StorageAccount.AccessKey); Assert.Equal(registry.StorageAccount.Name, storageName); diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCheckNameTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCheckNameTest.json index 111e47376fbe..9fb990e4b50c 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCheckNameTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCheckNameTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f2455ed-b113-44a6-9fe6-6d733fe2bc1a" + "060c9c9d-62e7-4eca-9cb7-d459f734dc7f" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:38 GMT" + "Thu, 16 Mar 2017 22:56:05 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14990" ], "x-ms-request-id": [ - "c9abdedb-d1ae-4e7b-97ec-32a04d7403ff" + "37dd45ac-2238-4300-bf70-9a53964bc66e" ], "x-ms-correlation-request-id": [ - "c9abdedb-d1ae-4e7b-97ec-32a04d7403ff" + "37dd45ac-2238-4300-bf70-9a53964bc66e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033839Z:c9abdedb-d1ae-4e7b-97ec-32a04d7403ff" + "WESTUS2:20170316T225606Z:37dd45ac-2238-4300-bf70-9a53964bc66e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6863?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzY4NjM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg130?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzEzMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "9dfec152-ce2b-4cf3-b2c6-12a7984983b4" + "1ecb15f0-f2a8-4613-a867-8d02cb610b65" ], "accept-language": [ "en-US" @@ -78,10 +78,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863\",\r\n \"name\": \"acr_rg6863\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130\",\r\n \"name\": \"acr_rg130\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:39 GMT" + "Thu, 16 Mar 2017 22:56:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1185" ], "x-ms-request-id": [ - "8962016b-b7f9-4593-8d9a-0e890505599b" + "c3f722d0-6f02-493e-91ac-de336192ea3a" ], "x-ms-correlation-request-id": [ - "8962016b-b7f9-4593-8d9a-0e890505599b" + "c3f722d0-6f02-493e-91ac-de336192ea3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033839Z:8962016b-b7f9-4593-8d9a-0e890505599b" + "WESTUS2:20170316T225606Z:c3f722d0-6f02-493e-91ac-de336192ea3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863/providers/Microsoft.Storage/storageAccounts/acrstorage610?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzY4NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjEwP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130/providers/Microsoft.Storage/storageAccounts/acrstorage5345?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FjcnN0b3JhZ2U1MzQ1P2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "8f4465ae-e44c-47ed-9fd7-6fd95b88a1df" + "2b07dbd0-68b9-4c65-bd63-ab7c9ea1c79d" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:39 GMT" + "Thu, 16 Mar 2017 22:56:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/98a78e27-c7aa-4d72-a029-bcdb0acc8e9c?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/47e8748b-1867-44fe-ac4a-ee96e5eca922?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1184" ], "x-ms-request-id": [ - "25f0f58c-02cc-446b-86d1-590d1050d57a" + "cda0e802-0fe9-4acd-9106-d05fc169a731" ], "x-ms-correlation-request-id": [ - "25f0f58c-02cc-446b-86d1-590d1050d57a" + "cda0e802-0fe9-4acd-9106-d05fc169a731" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033840Z:25f0f58c-02cc-446b-86d1-590d1050d57a" + "WESTUS2:20170316T225608Z:cda0e802-0fe9-4acd-9106-d05fc169a731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/98a78e27-c7aa-4d72-a029-bcdb0acc8e9c?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk4YTc4ZTI3LWM3YWEtNGQ3Mi1hMDI5LWJjZGIwYWNjOGU5Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/47e8748b-1867-44fe-ac4a-ee96e5eca922?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ3ZTg3NDhiLTE4NjctNDRmZS1hYzRhLWVlOTZlNWVjYTkyMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863/providers/Microsoft.Storage/storageAccounts/acrstorage610\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage610\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:38:40.3576429Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage610.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage610.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage610.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage610.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130/providers/Microsoft.Storage/storageAccounts/acrstorage5345\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5345\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:56:07.7550247Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5345.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5345.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5345.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5345.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:09 GMT" + "Thu, 16 Mar 2017 22:56:38 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e81f82e3-84c7-4611-a7e6-94f8a95ea9e0" + "3a4c2840-0a7e-4533-9186-721f9d6d86c0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14989" ], "x-ms-correlation-request-id": [ - "e81f82e3-84c7-4611-a7e6-94f8a95ea9e0" + "3a4c2840-0a7e-4533-9186-721f9d6d86c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033910Z:e81f82e3-84c7-4611-a7e6-94f8a95ea9e0" + "WESTUS2:20170316T225639Z:3a4c2840-0a7e-4533-9186-721f9d6d86c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863/providers/Microsoft.Storage/storageAccounts/acrstorage610/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzY4NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130/providers/Microsoft.Storage/storageAccounts/acrstorage5345/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FjcnN0b3JhZ2U1MzQ1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44df4ca1-80cc-4060-834d-8c8caae1be2e" + "2be52d97-14fe-4e30-9277-07b51689a153" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"bSiop7ePM3THdgC8ciRDa4V/83+0G0I0soMcpnR0BJmrGay1iHL511h37i7zZfdFgLqgn7MLOBp3LjKRo1E4uQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"ew+8yhMab1rUUz9UxLgxO/dQ/GyFPO87lxQvtCkVnaNQfAjYRzZocogaOD8USNn6bLK5s02VB0lPnf0kvd4xVw==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"S/HB2nelE4UpnKyjQ8w9miTohq6PpnOffxVACsRGTg+Svk2A3DO+g51lp1Ty9nCKsS7qXoTRRdAx5FC4t3s/xQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"BQd9rn6zE5L9wDAs/JaBTJM54LDoyZnSEmMQYuvkvucG7C0e+WZ1dFXypBwg2oqgej3yKDAxIbhkpjPf+xcuLg==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:10 GMT" + "Thu, 16 Mar 2017 22:56:38 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bada00cc-9bd3-467a-b732-d5cb9df316c9" + "5a872545-a333-4dc9-bcfb-6c2a54f2c20c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1183" ], "x-ms-correlation-request-id": [ - "bada00cc-9bd3-467a-b732-d5cb9df316c9" + "5a872545-a333-4dc9-bcfb-6c2a54f2c20c" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033910Z:bada00cc-9bd3-467a-b732-d5cb9df316c9" + "WESTUS2:20170316T225639Z:5a872545-a333-4dc9-bcfb-6c2a54f2c20c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,26 +303,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"acrregistry422\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", + "RequestBody": "{\r\n \"name\": \"acrregistry5548\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "85" + "86" ], "x-ms-client-request-id": [ - "4797bb3c-5062-4d37-b93f-fe263a79b56a" + "5e0ebdba-0b86-4bee-84be-460225775ad7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", @@ -337,7 +337,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:10 GMT" + "Thu, 16 Mar 2017 22:56:39 GMT" ], "Pragma": [ "no-cache" @@ -346,59 +346,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14988" ], "x-ms-request-id": [ - "24a53d65-a38a-4dfe-928d-3492a645d3f0" + "c4fa4d27-9fb2-4d99-a735-16b0bc59eb05" ], "x-ms-correlation-request-id": [ - "24a53d65-a38a-4dfe-928d-3492a645d3f0" + "c4fa4d27-9fb2-4d99-a735-16b0bc59eb05" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033911Z:24a53d65-a38a-4dfe-928d-3492a645d3f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225640Z:c4fa4d27-9fb2-4d99-a735-16b0bc59eb05" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"CAPS\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", + "RequestBody": "{\r\n \"name\": \"Microsoft\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "75" + "80" ], "x-ms-client-request-id": [ - "600a5dcd-ec9c-4f15-85a9-b6ba4af9f37d" + "37aee96c-fd71-4ec2-b4f3-f13e394c3266" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"Invalid\",\r\n \"message\": \"Registry names may contain alpha numeric characters only and must be between 5 and 50 characters\"\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"Invalid\",\r\n \"message\": \"The specified registry name is disallowed\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +404,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:10 GMT" + "Thu, 16 Mar 2017 22:56:39 GMT" ], "Pragma": [ "no-cache" @@ -419,40 +413,34 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14987" ], "x-ms-request-id": [ - "6631862b-1c94-40bf-85ce-d95b46eca4a0" + "ea8832fc-3a86-4462-8415-0fe50b866217" ], "x-ms-correlation-request-id": [ - "6631862b-1c94-40bf-85ce-d95b46eca4a0" + "ea8832fc-3a86-4462-8415-0fe50b866217" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033911Z:6631862b-1c94-40bf-85ce-d95b46eca4a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225640Z:ea8832fc-3a86-4462-8415-0fe50b866217" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"acrregistry9167\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", + "RequestBody": "{\r\n \"name\": \"acrregistry6760\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -461,17 +449,17 @@ "86" ], "x-ms-client-request-id": [ - "1bfa3855-8939-4b96-8fd2-5c831452752e" + "e0454ff5-2ba2-45d2-9cd5-f38799106907" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"The registry acrregistry9167 is already in use.\"\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"The registry acrregistry6760 is already in use.\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -483,7 +471,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:14 GMT" + "Thu, 16 Mar 2017 22:56:42 GMT" ], "Pragma": [ "no-cache" @@ -492,59 +480,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14986" ], "x-ms-request-id": [ - "d372391c-16c3-4de1-8a18-4a2baaecd8a7" + "3b383815-17eb-4b57-a394-8b0b6d4834cf" ], "x-ms-correlation-request-id": [ - "d372391c-16c3-4de1-8a18-4a2baaecd8a7" + "3b383815-17eb-4b57-a394-8b0b6d4834cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033915Z:d372391c-16c3-4de1-8a18-4a2baaecd8a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225643Z:3b383815-17eb-4b57-a394-8b0b6d4834cf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863/providers/Microsoft.ContainerRegistry/registries/acrregistry9167?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzY4NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5OTE2Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130/providers/Microsoft.ContainerRegistry/registries/acrregistry6760?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lclJlZ2lzdHJ5L3JlZ2lzdHJpZXMvYWNycmVnaXN0cnk2NzYwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage610\",\r\n \"accessKey\": \"bSiop7ePM3THdgC8ciRDa4V/83+0G0I0soMcpnR0BJmrGay1iHL511h37i7zZfdFgLqgn7MLOBp3LjKRo1E4uQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5345\",\r\n \"accessKey\": \"S/HB2nelE4UpnKyjQ8w9miTohq6PpnOffxVACsRGTg+Svk2A3DO+g51lp1Ty9nCKsS7qXoTRRdAx5FC4t3s/xQ==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "292" + "332" ], "x-ms-client-request-id": [ - "b9971e95-1671-4d47-9ec6-5fdc3781a20f" + "4b9ff5c7-45c3-45d2-b620-1860c1c3d32b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6863/providers/Microsoft.ContainerRegistry/registries/acrregistry9167\",\r\n \"name\": \"acrregistry9167\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry9167-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:39:13.6250133Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage610\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg130/providers/Microsoft.ContainerRegistry/registries/acrregistry6760\",\r\n \"name\": \"acrregistry6760\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6760.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:56:42.4447349Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5345\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -556,7 +538,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:14 GMT" + "Thu, 16 Mar 2017 22:56:42 GMT" ], "Pragma": [ "no-cache" @@ -565,31 +547,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1182" ], "x-ms-request-id": [ - "f89b39b5-d895-488a-a956-08a763a98b5e" + "85f6f2c2-82b9-47fd-9fa3-28256215009d" ], "x-ms-correlation-request-id": [ - "f89b39b5-d895-488a-a956-08a763a98b5e" + "85f6f2c2-82b9-47fd-9fa3-28256215009d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033914Z:f89b39b5-d895-488a-a956-08a763a98b5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225643Z:85f6f2c2-82b9-47fd-9fa3-28256215009d" ] }, "StatusCode": 200 @@ -597,19 +573,19 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg6863" + "acr_rg130" ], "CreateStorageAccount": [ - "acrstorage610" + "acrstorage5345" ], "ContainerRegistryCheckNameTest": [ - "acrregistry422" + "acrregistry5548" ], "CreateContainerRegistry": [ - "acrregistry9167" + "acrregistry6760" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCreateTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCreateTest.json index 66bfdd970ec3..8b4ec685d443 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCreateTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCreateTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1866ba67-9a7d-48d8-ad6d-e8f1927c40ee" + "c9893638-06dc-432f-8687-c0a9f49f5dfe" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:58 GMT" + "Thu, 16 Mar 2017 22:54:57 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14981" ], "x-ms-request-id": [ - "9b92e55f-6135-4483-a3be-38cb6b03d8e0" + "a989aba4-f088-49da-adf3-0035505cd7f3" ], "x-ms-correlation-request-id": [ - "9b92e55f-6135-4483-a3be-38cb6b03d8e0" + "a989aba4-f088-49da-adf3-0035505cd7f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033758Z:9b92e55f-6135-4483-a3be-38cb6b03d8e0" + "WESTUS2:20170316T225457Z:a989aba4-f088-49da-adf3-0035505cd7f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6169?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzYxNjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3844?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzM4NDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "333255bb-7fb4-4ec0-b053-8da5b4359f73" + "99791b0e-d205-44e8-8f18-962304c2d692" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169\",\r\n \"name\": \"acr_rg6169\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844\",\r\n \"name\": \"acr_rg3844\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:59 GMT" + "Thu, 16 Mar 2017 22:54:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1180" ], "x-ms-request-id": [ - "02892038-3e43-4e69-a8a6-17a8bf8861cc" + "3fdbc2bf-127b-4622-96d7-9d94504853ac" ], "x-ms-correlation-request-id": [ - "02892038-3e43-4e69-a8a6-17a8bf8861cc" + "3fdbc2bf-127b-4622-96d7-9d94504853ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033759Z:02892038-3e43-4e69-a8a6-17a8bf8861cc" + "WESTUS2:20170316T225458Z:3fdbc2bf-127b-4622-96d7-9d94504853ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.Storage/storageAccounts/acrstorage1690?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYxNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMTY5MD9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.Storage/storageAccounts/acrstorage5516?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTUxNj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "c92e8021-5d9b-4c94-b3a2-a08290275a8a" + "ef35c44e-8d8a-42fb-8137-01a80af9e7cb" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:59 GMT" + "Thu, 16 Mar 2017 22:54:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/e566bacb-2d82-44a1-a421-e8e86eb624c5?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/b44eeab4-a4b7-4f25-8be2-b49879f44820?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1179" ], "x-ms-request-id": [ - "d68d041b-c456-4ac9-bb62-e7460be2ea8a" + "90befa48-ccb3-4759-b09c-b3b950eefc45" ], "x-ms-correlation-request-id": [ - "d68d041b-c456-4ac9-bb62-e7460be2ea8a" + "90befa48-ccb3-4759-b09c-b3b950eefc45" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033800Z:d68d041b-c456-4ac9-bb62-e7460be2ea8a" + "WESTUS2:20170316T225459Z:90befa48-ccb3-4759-b09c-b3b950eefc45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/e566bacb-2d82-44a1-a421-e8e86eb624c5?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2U1NjZiYWNiLTJkODItNDRhMS1hNDIxLWU4ZTg2ZWI2MjRjNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/b44eeab4-a4b7-4f25-8be2-b49879f44820?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I0NGVlYWI0LWE0YjctNGYyNS04YmUyLWI0OTg3OWY0NDgyMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.Storage/storageAccounts/acrstorage1690\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage1690\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:38:00.1590353Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage1690.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage1690.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage1690.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage1690.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.Storage/storageAccounts/acrstorage5516\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5516\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:54:59.2635223Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5516.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5516.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5516.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5516.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:30 GMT" + "Thu, 16 Mar 2017 22:55:29 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5cb7fa9b-cade-4ab6-bdde-3e34a5d1242e" + "cb31d1c6-abe3-437e-b1f8-429803cccb9f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "14981" ], "x-ms-correlation-request-id": [ - "5cb7fa9b-cade-4ab6-bdde-3e34a5d1242e" + "cb31d1c6-abe3-437e-b1f8-429803cccb9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033830Z:5cb7fa9b-cade-4ab6-bdde-3e34a5d1242e" + "WESTUS2:20170316T225530Z:cb31d1c6-abe3-437e-b1f8-429803cccb9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.Storage/storageAccounts/acrstorage1690/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYxNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMTY5MC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.Storage/storageAccounts/acrstorage5516/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTUxNi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ceeee08-177b-4147-b76d-3ef7511eb555" + "4f7a9b94-d1b0-4a43-9d76-fa5c75c4c9af" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"lU2y7aKcUUbuUQwCys6OsF2+Nwf343r93dHsAr2kexwj70f80CH01ugRGPZJYMv0c4YCKSocqVaw6Do82bdEeQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"cNCpCQNalwwqdJnNgho1N7ocfK8I2DzaamOs2Z3zjZokeFoQK4OQD3y/S7yPWWcXHKGZPg+G+pOEMdWU1Yph3A==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"iEGtqp2ZNlb2v4DeDANC+DA45w3JDJXHmNVOtJ+c6kaIFRBxkw38LOMqsc9v+GE9WirfqiqDMAQF84sMlzsb6w==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"KRzW0lpeLoBeNU2WyUx6V9iVXe+IfYipggO2UXZyFuqCxUg9DfFvfjzr5wkP0jAJ/WvP1FQLl0/myXhh1jMMCQ==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:30 GMT" + "Thu, 16 Mar 2017 22:55:29 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "69c10ea9-fb07-445c-8f05-9a6e62060eb5" + "a5ee8330-9532-40a2-9e8b-5fa49754517f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1178" ], "x-ms-correlation-request-id": [ - "69c10ea9-fb07-445c-8f05-9a6e62060eb5" + "a5ee8330-9532-40a2-9e8b-5fa49754517f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033830Z:69c10ea9-fb07-445c-8f05-9a6e62060eb5" + "WESTUS2:20170316T225530Z:a5ee8330-9532-40a2-9e8b-5fa49754517f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,29 +303,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.ContainerRegistry/registries/acrregistry5570?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYxNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTU3MD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.ContainerRegistry/registries/acrregistry807?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage1690\",\r\n \"accessKey\": \"lU2y7aKcUUbuUQwCys6OsF2+Nwf343r93dHsAr2kexwj70f80CH01ugRGPZJYMv0c4YCKSocqVaw6Do82bdEeQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5516\",\r\n \"accessKey\": \"iEGtqp2ZNlb2v4DeDANC+DA45w3JDJXHmNVOtJ+c6kaIFRBxkw38LOMqsc9v+GE9WirfqiqDMAQF84sMlzsb6w==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "aef44cc4-93e0-4553-9066-486e09d309a0" + "fe8474d6-109f-4293-ae6d-315f7c184e5c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6169/providers/Microsoft.ContainerRegistry/registries/acrregistry5570\",\r\n \"name\": \"acrregistry5570\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry5570-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:38:32.1073488Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage1690\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3844/providers/Microsoft.ContainerRegistry/registries/acrregistry807\",\r\n \"name\": \"acrregistry807\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry807.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:55:32.9755213Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5516\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -337,7 +337,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:33 GMT" + "Thu, 16 Mar 2017 22:55:59 GMT" ], "Pragma": [ "no-cache" @@ -346,59 +346,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1177" ], "x-ms-request-id": [ - "5fa40ef7-4be3-47d1-924a-f8a8b795a36c" + "86b78256-5fbf-4e25-bb60-344a0b2d7f6b" ], "x-ms-correlation-request-id": [ - "5fa40ef7-4be3-47d1-924a-f8a8b795a36c" + "86b78256-5fbf-4e25-bb60-344a0b2d7f6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033833Z:5fa40ef7-4be3-47d1-924a-f8a8b795a36c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225559Z:86b78256-5fbf-4e25-bb60-344a0b2d7f6b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.ContainerRegistry/registries/acrregistry1542?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYxNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTU0Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.ContainerRegistry/registries/acrregistry5094?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTA5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage1690\",\r\n \"accessKey\": \"lU2y7aKcUUbuUQwCys6OsF2+Nwf343r93dHsAr2kexwj70f80CH01ugRGPZJYMv0c4YCKSocqVaw6Do82bdEeQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5516\",\r\n \"accessKey\": \"iEGtqp2ZNlb2v4DeDANC+DA45w3JDJXHmNVOtJ+c6kaIFRBxkw38LOMqsc9v+GE9WirfqiqDMAQF84sMlzsb6w==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "363" ], "x-ms-client-request-id": [ - "90dc8ca9-03b0-4d6a-b1ca-f3c1a8cc0531" + "3a4ba901-c32d-4bbd-a69b-1900f91d71f4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6169/providers/Microsoft.ContainerRegistry/registries/acrregistry1542\",\r\n \"name\": \"acrregistry1542\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1542-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:38:34.2434505Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage1690\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3844/providers/Microsoft.ContainerRegistry/registries/acrregistry5094\",\r\n \"name\": \"acrregistry5094\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry5094.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:56:00.9029153Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5516\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +404,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:35 GMT" + "Thu, 16 Mar 2017 22:56:01 GMT" ], "Pragma": [ "no-cache" @@ -419,31 +413,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1176" ], "x-ms-request-id": [ - "9b5efed6-9ded-4860-829b-d72f18a3dd3c" + "2d051354-0e55-46ab-8e2c-f1771df6051f" ], "x-ms-correlation-request-id": [ - "9b5efed6-9ded-4860-829b-d72f18a3dd3c" + "2d051354-0e55-46ab-8e2c-f1771df6051f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033835Z:9b5efed6-9ded-4860-829b-d72f18a3dd3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225601Z:2d051354-0e55-46ab-8e2c-f1771df6051f" ] }, "StatusCode": 200 @@ -451,17 +439,17 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg6169" + "acr_rg3844" ], "CreateStorageAccount": [ - "acrstorage1690" + "acrstorage5516" ], "ContainerRegistryCreateTest": [ - "acrregistry5570", - "acrregistry1542" + "acrregistry807", + "acrregistry5094" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryDeleteTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryDeleteTest.json index d0f8c536446f..ce9433468a3b 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryDeleteTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryDeleteTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d519edd-3dee-44cc-957e-ce22b8c47f05" + "b96ba4cf-46e1-4381-a4f7-ecac752927ff" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:16 GMT" + "Thu, 16 Mar 2017 22:53:52 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14993" ], "x-ms-request-id": [ - "047aa4f9-fcf6-494a-b9e0-540aba29159a" + "76319a52-1f99-4745-96e5-b7dffa19565e" ], "x-ms-correlation-request-id": [ - "047aa4f9-fcf6-494a-b9e0-540aba29159a" + "76319a52-1f99-4745-96e5-b7dffa19565e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033717Z:047aa4f9-fcf6-494a-b9e0-540aba29159a" + "CENTRALUS:20170316T225352Z:76319a52-1f99-4745-96e5-b7dffa19565e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4076?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzQwNzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3822?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzM4MjI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "6d55b506-2077-42f0-b37d-58c7d7c4e8c6" + "8f046bfc-9469-4875-b864-ae72cdfea73d" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076\",\r\n \"name\": \"acr_rg4076\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822\",\r\n \"name\": \"acr_rg3822\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:17 GMT" + "Thu, 16 Mar 2017 22:53:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "9d8ac2a5-372c-41c6-8125-318345515c5c" + "342e98a3-869b-4097-bf62-6ac083cf7a0d" ], "x-ms-correlation-request-id": [ - "9d8ac2a5-372c-41c6-8125-318345515c5c" + "342e98a3-869b-4097-bf62-6ac083cf7a0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033717Z:9d8ac2a5-372c-41c6-8125-318345515c5c" + "CENTRALUS:20170316T225353Z:342e98a3-869b-4097-bf62-6ac083cf7a0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.Storage/storageAccounts/acrstorage4358?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDM1OD9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.Storage/storageAccounts/acrstorage8486?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODQ4Nj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "adc270e3-b8c3-4662-8a62-4747ade814e4" + "39fc6665-412b-40fe-abf1-3021091a732c" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:18 GMT" + "Thu, 16 Mar 2017 22:53:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/a1474d06-2e49-4acb-845d-6f314ed91a83?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/34262009-be6f-4a5a-b863-e7da8c7ff9d8?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "8ed76558-343c-4f01-bf03-38622fca2d03" + "89829535-f1df-46e5-858b-845b88498e73" ], "x-ms-correlation-request-id": [ - "8ed76558-343c-4f01-bf03-38622fca2d03" + "89829535-f1df-46e5-858b-845b88498e73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033718Z:8ed76558-343c-4f01-bf03-38622fca2d03" + "CENTRALUS:20170316T225354Z:89829535-f1df-46e5-858b-845b88498e73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/a1474d06-2e49-4acb-845d-6f314ed91a83?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2ExNDc0ZDA2LTJlNDktNGFjYi04NDVkLTZmMzE0ZWQ5MWE4Mz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/34262009-be6f-4a5a-b863-e7da8c7ff9d8?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzM0MjYyMDA5LWJlNmYtNGE1YS1iODYzLWU3ZGE4YzdmZjlkOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.Storage/storageAccounts/acrstorage4358\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage4358\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:37:18.7771252Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage4358.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage4358.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage4358.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage4358.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.Storage/storageAccounts/acrstorage8486\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage8486\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:53:54.729397Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage8486.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage8486.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage8486.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage8486.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:48 GMT" + "Thu, 16 Mar 2017 22:54:24 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "83fd7018-4fff-4a13-be38-9f0dcaa6aa41" + "674300de-8a92-49e7-a8fd-1cbcdca77911" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14992" ], "x-ms-correlation-request-id": [ - "83fd7018-4fff-4a13-be38-9f0dcaa6aa41" + "674300de-8a92-49e7-a8fd-1cbcdca77911" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033749Z:83fd7018-4fff-4a13-be38-9f0dcaa6aa41" + "CENTRALUS:20170316T225425Z:674300de-8a92-49e7-a8fd-1cbcdca77911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.Storage/storageAccounts/acrstorage4358/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDM1OC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.Storage/storageAccounts/acrstorage8486/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODQ4Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a434f942-f9cc-4947-a598-a4c236a3fd4d" + "325317cd-6890-4c73-86ad-3c30009e588a" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"GgBwMq3mpgeR2k9CKKZjEyEOFnBUzykemIlnVVw2GN3Z1OhFOFbQ83opRkWTdeJ1MCi7VDJR7mi40kA4/WRnDQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"XkpfeLlC52K+RhLOGeZ7fo7LPMbnIfF6uKuDgQnp1SNHvOzhGJBXYqjoBgEcEezmcQiGfmY6su/61dSCSW3Elw==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"H7HeVdoiFI54kD7+nATzO027hQ6rLvKdYETqORURd+AmRQwnhMoEdkyPHUlH8TORffd35YcAJyayQOW0wDjWEw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"bC3PcP8JFDA9xvXtA3cYuoifRE8HqbRDFnjG3ALUoB9ZLzc2ATrdvY5ZqC6vcwAWqaqZQOlYQX5YwCNV70iUhQ==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:48 GMT" + "Thu, 16 Mar 2017 22:54:24 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "95956122-97ac-4fab-a76b-60ba55a912e6" + "5766b74f-3550-4fa7-a575-e1abd3e376c8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "95956122-97ac-4fab-a76b-60ba55a912e6" + "5766b74f-3550-4fa7-a575-e1abd3e376c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033749Z:95956122-97ac-4fab-a76b-60ba55a912e6" + "CENTRALUS:20170316T225425Z:5766b74f-3550-4fa7-a575-e1abd3e376c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,20 +303,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/doesnotexist?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2RvZXNub3RleGlzdD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/doesnotexist?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2RvZXNub3RleGlzdD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efb6021b-b012-4eb3-bff8-48c40ef610f8" + "0e81f88d-d9c9-4d2e-a6c7-3d12df61e04b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, "ResponseBody": "", @@ -328,22 +328,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:48 GMT" + "Thu, 16 Mar 2017 22:54:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "7d8545b3-5d0c-4c80-92ab-e1669fc09f3f" + "e16e0a98-7f9c-41a5-85b9-e266a96665b4" ], "x-ms-correlation-request-id": [ - "7d8545b3-5d0c-4c80-92ab-e1669fc09f3f" + "e16e0a98-7f9c-41a5-85b9-e266a96665b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033749Z:7d8545b3-5d0c-4c80-92ab-e1669fc09f3f" + "CENTRALUS:20170316T225425Z:e16e0a98-7f9c-41a5-85b9-e266a96665b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,29 +352,29 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/acrregistry5314?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/acrregistry4222?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NDIyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4358\",\r\n \"accessKey\": \"GgBwMq3mpgeR2k9CKKZjEyEOFnBUzykemIlnVVw2GN3Z1OhFOFbQ83opRkWTdeJ1MCi7VDJR7mi40kA4/WRnDQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8486\",\r\n \"accessKey\": \"H7HeVdoiFI54kD7+nATzO027hQ6rLvKdYETqORURd+AmRQwnhMoEdkyPHUlH8TORffd35YcAJyayQOW0wDjWEw==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "ffc59a20-3025-49cb-b7a9-6b8242772920" + "e3bcee92-0a6c-4494-92a4-bc71aa55179c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/acrregistry5314\",\r\n \"name\": \"acrregistry5314\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry5314-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:50.9126491Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4358\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/acrregistry4222\",\r\n \"name\": \"acrregistry4222\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry4222.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:54:47.0144318Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8486\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -386,7 +386,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:51 GMT" + "Thu, 16 Mar 2017 22:54:48 GMT" ], "Pragma": [ "no-cache" @@ -395,50 +395,44 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-request-id": [ - "c03daac7-22ff-4b54-8220-d6d563b24184" + "95841333-8683-4930-a86b-a088a113960e" ], "x-ms-correlation-request-id": [ - "c03daac7-22ff-4b54-8220-d6d563b24184" + "95841333-8683-4930-a86b-a088a113960e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033752Z:c03daac7-22ff-4b54-8220-d6d563b24184" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225449Z:95841333-8683-4930-a86b-a088a113960e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/acrregistry5314?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/acrregistry4222?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NDIyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf81ba92-1e60-4248-9e73-f935595b40ed" + "d1804061-ce22-40b1-b6d5-362e5bee2773" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, "ResponseBody": "", @@ -453,53 +447,47 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:52 GMT" + "Thu, 16 Mar 2017 22:54:50 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" + "Microsoft-HTTPAPI/2.0" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-request-id": [ - "64bae69a-fae2-4d38-8632-94d8c2ec025f" + "ec6444eb-a82e-45e2-8050-82d509024806" ], "x-ms-correlation-request-id": [ - "64bae69a-fae2-4d38-8632-94d8c2ec025f" + "ec6444eb-a82e-45e2-8050-82d509024806" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033753Z:64bae69a-fae2-4d38-8632-94d8c2ec025f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225451Z:ec6444eb-a82e-45e2-8050-82d509024806" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/acrregistry5314?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/acrregistry4222?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NDIyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfefdd2-d273-4686-ab61-c22bb932932d" + "7ff2b18e-97e4-401e-8055-53167c552697" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, "ResponseBody": "", @@ -511,22 +499,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:53 GMT" + "Thu, 16 Mar 2017 22:54:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1191" ], "x-ms-request-id": [ - "3480d3f4-989e-48db-a044-223c32fe3bf3" + "23390d66-2889-46bc-a129-9f1c812e8ecc" ], "x-ms-correlation-request-id": [ - "3480d3f4-989e-48db-a044-223c32fe3bf3" + "23390d66-2889-46bc-a129-9f1c812e8ecc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033753Z:3480d3f4-989e-48db-a044-223c32fe3bf3" + "CENTRALUS:20170316T225451Z:23390d66-2889-46bc-a129-9f1c812e8ecc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,16 +525,16 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg4076" + "acr_rg3822" ], "CreateStorageAccount": [ - "acrstorage4358" + "acrstorage8486" ], "CreateContainerRegistry": [ - "acrregistry5314" + "acrregistry4222" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetCredentialsTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetCredentialsTest.json deleted file mode 100644 index 31c3bfd21702..000000000000 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetCredentialsTest.json +++ /dev/null @@ -1,597 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "623aa301-69db-49cd-93f1-e72a7231bf54" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:34:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "cf30832f-89f1-4c4b-895b-f0cdb641e19e" - ], - "x-ms-correlation-request-id": [ - "cf30832f-89f1-4c4b-895b-f0cdb641e19e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033437Z:cf30832f-89f1-4c4b-895b-f0cdb641e19e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg7766?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzc3NjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "7463753d-1526-402b-8731-7089ee14c1e9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766\",\r\n \"name\": \"acr_rg7766\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:34:38 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "ab1769c5-3e00-4448-9152-237d38558041" - ], - "x-ms-correlation-request-id": [ - "ab1769c5-3e00-4448-9152-237d38558041" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033438Z:ab1769c5-3e00-4448-9152-237d38558041" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.Storage/storageAccounts/acrstorage591?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTkxP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ], - "x-ms-client-request-id": [ - "876215a9-30d9-4229-8541-910afd5ac63c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:34:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/cd8598ed-ff81-4468-a71d-265c7962cb54?monitor=true&api-version=2016-01-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "b945f852-80fe-4c60-a7bb-08f08a3d7266" - ], - "x-ms-correlation-request-id": [ - "b945f852-80fe-4c60-a7bb-08f08a3d7266" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033439Z:b945f852-80fe-4c60-a7bb-08f08a3d7266" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/cd8598ed-ff81-4468-a71d-265c7962cb54?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NkODU5OGVkLWZmODEtNDQ2OC1hNzFkLTI2NWM3OTYyY2I1ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.Storage/storageAccounts/acrstorage591\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage591\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:34:39.3706388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage591.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage591.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage591.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage591.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d09315af-0a67-4f65-aec9-dac0da6c8e1f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "d09315af-0a67-4f65-aec9-dac0da6c8e1f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033509Z:d09315af-0a67-4f65-aec9-dac0da6c8e1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.Storage/storageAccounts/acrstorage591/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "02f30a25-59b0-42b0-97ec-1efd4fe1a384" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"3unULxaJeyOiONo7gyA5jr5i/5pz9gNp/ACPE4uOIRDPgt6T7muYL2vEXVNQOGLDAVfuE3WzY3haUGrUPjsgcQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"FnjKZfj7eBAd93P5xXQ28SEPRq5TspBDugtAtrqixDyyoWAFXyOoWDJLvhdd/n2Wh4ZKqjDr1sP6nG8CWmcd9A==\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1769286f-dcf6-4668-a89e-0e76e146cc09" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "1769286f-dcf6-4668-a89e-0e76e146cc09" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033509Z:1769286f-dcf6-4668-a89e-0e76e146cc09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTk4Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage591\",\r\n \"accessKey\": \"3unULxaJeyOiONo7gyA5jr5i/5pz9gNp/ACPE4uOIRDPgt6T7muYL2vEXVNQOGLDAVfuE3WzY3haUGrUPjsgcQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "292" - ], - "x-ms-client-request-id": [ - "30df4e41-f72d-4192-b2f9-9e045af04027" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982\",\r\n \"name\": \"acrregistry1982\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1982-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:11.4327776Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage591\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "0a365dfd-df39-4a60-a526-250f4b74681f" - ], - "x-ms-correlation-request-id": [ - "0a365dfd-df39-4a60-a526-250f4b74681f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033512Z:0a365dfd-df39-4a60-a526-250f4b74681f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982/getCredentials?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTk4Mi9nZXRDcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e51b7407-ce1b-437a-806d-5ec097d9c2ec" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"message\": \"Cannot perform credential operations for /subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982 as Admin user is disabled. Enable Admin user feature and try again.\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "265" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "fa2781ca-051b-4cf9-83e6-ce292aaa651d" - ], - "x-ms-correlation-request-id": [ - "fa2781ca-051b-4cf9-83e6-ce292aaa651d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033512Z:fa2781ca-051b-4cf9-83e6-ce292aaa651d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 400 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982/getCredentials?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTk4Mi9nZXRDcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1bb3c36d-c53e-45ca-bc39-2398453ed5e3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"username\": \"acrregistry1982\",\r\n \"password\": \"/=fzu=+Yh=s/0X+85++/PFdiE0DIh=C2\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "0e1cfe10-c6c4-45bc-bbd2-9ddf27ca72fb" - ], - "x-ms-correlation-request-id": [ - "0e1cfe10-c6c4-45bc-bbd2-9ddf27ca72fb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033513Z:0e1cfe10-c6c4-45bc-bbd2-9ddf27ca72fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTk4Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "58" - ], - "x-ms-client-request-id": [ - "e3ad3163-06eb-4611-a6a1-cc4315544e55" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982\",\r\n \"name\": \"acrregistry1982\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1982-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:12.1733394Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage591\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "9eca3a6a-109b-4912-a8c7-6b97d2c6a40f" - ], - "x-ms-correlation-request-id": [ - "9eca3a6a-109b-4912-a8c7-6b97d2c6a40f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033513Z:9eca3a6a-109b-4912-a8c7-6b97d2c6a40f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "CreateResourceGroup": [ - "acr_rg7766" - ], - "CreateStorageAccount": [ - "acrstorage591" - ], - "CreateContainerRegistry": [ - "acrregistry1982" - ] - }, - "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetTest.json index 3342ce6ec8e4..2b3656483dcb 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "921ebe12-4f41-4387-9a64-76e8805fbcca" + "41059e2e-0fea-4d73-b461-c86720c42774" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:30:37 GMT" + "Thu, 16 Mar 2017 22:45:57 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14996" ], "x-ms-request-id": [ - "d1c1926f-a102-4a1f-90a8-6827790020ef" + "8a8e859c-95af-407b-90da-2e1b4311e704" ], "x-ms-correlation-request-id": [ - "d1c1926f-a102-4a1f-90a8-6827790020ef" + "8a8e859c-95af-407b-90da-2e1b4311e704" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033038Z:d1c1926f-a102-4a1f-90a8-6827790020ef" + "WESTUS2:20170316T224558Z:8a8e859c-95af-407b-90da-2e1b4311e704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzkwOTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzk4NDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "38728e4c-ab0e-44f3-9d20-297242b5eb2b" + "ce54ebbd-22c1-4dde-86f4-659db2c94cfc" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093\",\r\n \"name\": \"acr_rg9093\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843\",\r\n \"name\": \"acr_rg9843\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:30:37 GMT" + "Thu, 16 Mar 2017 22:45:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-request-id": [ - "5c7266e6-38b2-41cb-acb6-78a2f396ae1e" + "016cf2ab-362e-4eaf-8100-fa61d9e3c84e" ], "x-ms-correlation-request-id": [ - "5c7266e6-38b2-41cb-acb6-78a2f396ae1e" + "016cf2ab-362e-4eaf-8100-fa61d9e3c84e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033038Z:5c7266e6-38b2-41cb-acb6-78a2f396ae1e" + "WESTUS2:20170316T224558Z:016cf2ab-362e-4eaf-8100-fa61d9e3c84e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.Storage/storageAccounts/acrstorage4122?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDEyMj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.Storage/storageAccounts/acrstorage5985?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTk4NT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "825a5fcf-ec14-410d-a6b5-2da2fa805ca1" + "3289b3a2-e3ec-429e-bfa0-d3c23bf8b3a6" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:30:38 GMT" + "Thu, 16 Mar 2017 22:45:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/cf1b3b68-172d-46ba-a163-0738c692f5db?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/8d99bedd-6f7b-4e25-aaa4-d4b762f3746b?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-request-id": [ - "53bb76b7-2f10-4466-ad05-d21feb8e1ce9" + "640e8a2a-b944-42c5-86e8-21f4e55913ad" ], "x-ms-correlation-request-id": [ - "53bb76b7-2f10-4466-ad05-d21feb8e1ce9" + "640e8a2a-b944-42c5-86e8-21f4e55913ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033039Z:53bb76b7-2f10-4466-ad05-d21feb8e1ce9" + "WESTUS2:20170316T224559Z:640e8a2a-b944-42c5-86e8-21f4e55913ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/cf1b3b68-172d-46ba-a163-0738c692f5db?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NmMWIzYjY4LTE3MmQtNDZiYS1hMTYzLTA3MzhjNjkyZjVkYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/8d99bedd-6f7b-4e25-aaa4-d4b762f3746b?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhkOTliZWRkLTZmN2ItNGUyNS1hYWE0LWQ0Yjc2MmYzNzQ2Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.Storage/storageAccounts/acrstorage4122\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage4122\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:30:39.7382152Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage4122.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage4122.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage4122.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage4122.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.Storage/storageAccounts/acrstorage5985\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5985\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:45:59.8424177Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5985.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5985.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5985.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5985.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:10 GMT" + "Thu, 16 Mar 2017 22:46:32 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f5440d47-cc6f-48b2-a62c-0406621a1904" + "fe63b8d5-9ee0-413c-bb6e-5cca67335a5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14995" ], "x-ms-correlation-request-id": [ - "f5440d47-cc6f-48b2-a62c-0406621a1904" + "fe63b8d5-9ee0-413c-bb6e-5cca67335a5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033110Z:f5440d47-cc6f-48b2-a62c-0406621a1904" + "WESTUS2:20170316T224632Z:fe63b8d5-9ee0-413c-bb6e-5cca67335a5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.Storage/storageAccounts/acrstorage4122/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDEyMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.Storage/storageAccounts/acrstorage5985/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTk4NS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d2b43b1-1e58-484b-a366-4cb2bba233a9" + "4bf6fc89-c5cb-40d0-a191-7b9f034f251a" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"WluI9k+YyMnP4dmXp20lKNwPb7P+Lnzzy8gUk24/5Odoj3ivMZVzGUsYM91d52LoEYf9TirFjCoeDJS9hyUH2A==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"8g68TNfJxCAlX1kMV18AKGnpV81SJDN9KDgsdOKe6+m+jJ4PpSZJPOr3fbEH1xNGNG2yZeXwhVNubQI8a6+3xg==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"nWK3MX+0ZSkjFzNIM0tSuewn6K9MhzsqRJtUaRNh+WIKGd1Uq94hbGkg74t8SwTVewawOk3STzdFItTsaCNJgA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"1qbwQDM6OVYsqmxC96z29jQa8tzYZSX2j4uy7nMWRp/pnyf9IjBs/m7efRsu4xii0gRGUX8UawSlJhlSw49Mxg==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:10 GMT" + "Thu, 16 Mar 2017 22:46:32 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "81306851-367c-4ec4-b644-c98164e91d45" + "c4a3913a-1254-4eee-9a87-50ff83b1c302" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "81306851-367c-4ec4-b644-c98164e91d45" + "c4a3913a-1254-4eee-9a87-50ff83b1c302" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033110Z:81306851-367c-4ec4-b644-c98164e91d45" + "WESTUS2:20170316T224633Z:c4a3913a-1254-4eee-9a87-50ff83b1c302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,29 +303,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry6754?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Njc1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\",\r\n \"accessKey\": \"WluI9k+YyMnP4dmXp20lKNwPb7P+Lnzzy8gUk24/5Odoj3ivMZVzGUsYM91d52LoEYf9TirFjCoeDJS9hyUH2A==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\",\r\n \"accessKey\": \"nWK3MX+0ZSkjFzNIM0tSuewn6K9MhzsqRJtUaRNh+WIKGd1Uq94hbGkg74t8SwTVewawOk3STzdFItTsaCNJgA==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "363" ], "x-ms-client-request-id": [ - "eff60c4f-2a86-49ed-a2cf-da2ff6062813" + "9d61f92a-bd56-4d43-b96a-4e87a756da34" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry6754\",\r\n \"name\": \"acrregistry6754\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6754-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:31:13.3255799Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry86\",\r\n \"name\": \"acrregistry86\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry86.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:46:35.8198288Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -337,7 +337,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:14 GMT" + "Thu, 16 Mar 2017 22:46:37 GMT" ], "Pragma": [ "no-cache" @@ -346,53 +346,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1195" ], "x-ms-request-id": [ - "dfc18e2d-1447-4174-97fd-378bd4ac5058" + "d181b9eb-273d-4ef2-ab43-c2721e392f5d" ], "x-ms-correlation-request-id": [ - "dfc18e2d-1447-4174-97fd-378bd4ac5058" + "d181b9eb-273d-4ef2-ab43-c2721e392f5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033114Z:dfc18e2d-1447-4174-97fd-378bd4ac5058" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224637Z:d181b9eb-273d-4ef2-ab43-c2721e392f5d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry6754?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Njc1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "938ad0ab-2835-4cb0-b5be-58c8fff1d77a" + "fa0b33c0-d0ca-47e9-aef4-df52bd484d5b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry6754\",\r\n \"name\": \"acrregistry6754\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6754-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:31:14.0590714Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry86\",\r\n \"name\": \"acrregistry86\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry86.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:46:37.402919Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -404,7 +398,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:14 GMT" + "Thu, 16 Mar 2017 22:46:37 GMT" ], "Pragma": [ "no-cache" @@ -413,59 +407,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14994" ], "x-ms-request-id": [ - "429caf14-ef5e-4883-825d-88ea17dce0c4" + "5fb17681-89d0-48ed-8b66-b1c59d657b92" ], "x-ms-correlation-request-id": [ - "429caf14-ef5e-4883-825d-88ea17dce0c4" + "5fb17681-89d0-48ed-8b66-b1c59d657b92" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033114Z:429caf14-ef5e-4883-825d-88ea17dce0c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224637Z:5fb17681-89d0-48ed-8b66-b1c59d657b92" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry8837?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODgzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry3319?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MzMxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\",\r\n \"accessKey\": \"WluI9k+YyMnP4dmXp20lKNwPb7P+Lnzzy8gUk24/5Odoj3ivMZVzGUsYM91d52LoEYf9TirFjCoeDJS9hyUH2A==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\",\r\n \"accessKey\": \"nWK3MX+0ZSkjFzNIM0tSuewn6K9MhzsqRJtUaRNh+WIKGd1Uq94hbGkg74t8SwTVewawOk3STzdFItTsaCNJgA==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "325" + "364" ], "x-ms-client-request-id": [ - "c7a7d625-72ea-4460-859d-aae0ef871f12" + "a1ebdbea-791c-462d-80be-c385dc3a8b6d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry8837\",\r\n \"name\": \"acrregistry8837\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8837-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:31:15.6380515Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry3319\",\r\n \"name\": \"acrregistry3319\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3319.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:46:39.5322797Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -477,7 +465,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:16 GMT" + "Thu, 16 Mar 2017 22:47:04 GMT" ], "Pragma": [ "no-cache" @@ -486,53 +474,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1194" ], "x-ms-request-id": [ - "bcd7f683-fe96-4df1-bb48-080451912d65" + "bbbaad0c-d636-44be-99fc-c3d16d9be2a1" ], "x-ms-correlation-request-id": [ - "bcd7f683-fe96-4df1-bb48-080451912d65" + "bbbaad0c-d636-44be-99fc-c3d16d9be2a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033116Z:bcd7f683-fe96-4df1-bb48-080451912d65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224705Z:bbbaad0c-d636-44be-99fc-c3d16d9be2a1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry8837?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODgzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry3319?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MzMxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd0bea5e-cea0-45f4-9d99-8a19e8f7ed0d" + "def4c9bb-05e6-479f-8806-b07dcfc75e32" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry8837\",\r\n \"name\": \"acrregistry8837\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8837-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:31:16.2836556Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry3319\",\r\n \"name\": \"acrregistry3319\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3319.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:47:05.5229154Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -544,7 +526,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:16 GMT" + "Thu, 16 Mar 2017 22:47:05 GMT" ], "Pragma": [ "no-cache" @@ -553,31 +535,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14993" ], "x-ms-request-id": [ - "13ab304b-f1ab-4721-bcc7-f9b8ae6965de" + "b84695df-cebe-40e2-b5b8-f0530e1a12e7" ], "x-ms-correlation-request-id": [ - "13ab304b-f1ab-4721-bcc7-f9b8ae6965de" + "b84695df-cebe-40e2-b5b8-f0530e1a12e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033116Z:13ab304b-f1ab-4721-bcc7-f9b8ae6965de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224705Z:b84695df-cebe-40e2-b5b8-f0530e1a12e7" ] }, "StatusCode": 200 @@ -585,17 +561,17 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg9093" + "acr_rg9843" ], "CreateStorageAccount": [ - "acrstorage4122" + "acrstorage5985" ], "ContainerRegistryGetTest": [ - "acrregistry6754", - "acrregistry8837" + "acrregistry86", + "acrregistry3319" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListByResourceGroupTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListByResourceGroupTest.json index 17db5a699e0c..fbe2da3e8cb9 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListByResourceGroupTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListByResourceGroupTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "610d0ce8-0318-4a8f-8912-a981f7f65a79" + "fe2f4482-5e22-4253-af96-0d71a6e61e31" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:18 GMT" + "Thu, 16 Mar 2017 22:50:35 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14992" ], "x-ms-request-id": [ - "dd7a000d-ea80-4fd0-af1f-f6ff1771b5e1" + "e7c70ac7-f396-4869-8b9f-9b7e24a49de2" ], "x-ms-correlation-request-id": [ - "dd7a000d-ea80-4fd0-af1f-f6ff1771b5e1" + "e7c70ac7-f396-4869-8b9f-9b7e24a49de2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033519Z:dd7a000d-ea80-4fd0-af1f-f6ff1771b5e1" + "WESTUS2:20170316T225036Z:e7c70ac7-f396-4869-8b9f-9b7e24a49de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzU0Mjc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzQ3MDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "c392cd48-f0a6-4ad5-80d2-3093c9e66d13" + "0a8cb82b-5bbe-4e03-9ff3-63e3b0432d2d" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427\",\r\n \"name\": \"acr_rg5427\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701\",\r\n \"name\": \"acr_rg4701\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:19 GMT" + "Thu, 16 Mar 2017 22:50:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "1c491fc9-e403-4780-b1e8-e3e88ffa85a1" + "03b6bccb-70e0-4a38-a2ea-e7fb117c1e6a" ], "x-ms-correlation-request-id": [ - "1c491fc9-e403-4780-b1e8-e3e88ffa85a1" + "03b6bccb-70e0-4a38-a2ea-e7fb117c1e6a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033519Z:1c491fc9-e403-4780-b1e8-e3e88ffa85a1" + "WESTUS2:20170316T225036Z:03b6bccb-70e0-4a38-a2ea-e7fb117c1e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.Storage/storageAccounts/acrstorage5309?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTMwOT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.Storage/storageAccounts/acrstorage8876?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODg3Nj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "48109040-1810-4266-a1dd-4eb36ec83124" + "b15b747e-ea75-4b61-beab-1ab67651e48e" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:19 GMT" + "Thu, 16 Mar 2017 22:50:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/48d16461-d1ac-4e47-8475-622b802192ba?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/a126c5db-2717-4758-91a0-df9db6e226fe?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "5816f235-035c-4ea8-8e76-522d80f5277a" + "31753bdc-596a-490f-8a89-ddaf3416d33d" ], "x-ms-correlation-request-id": [ - "5816f235-035c-4ea8-8e76-522d80f5277a" + "31753bdc-596a-490f-8a89-ddaf3416d33d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033520Z:5816f235-035c-4ea8-8e76-522d80f5277a" + "WESTUS2:20170316T225037Z:31753bdc-596a-490f-8a89-ddaf3416d33d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/48d16461-d1ac-4e47-8475-622b802192ba?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ4ZDE2NDYxLWQxYWMtNGU0Ny04NDc1LTYyMmI4MDIxOTJiYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/a126c5db-2717-4758-91a0-df9db6e226fe?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2ExMjZjNWRiLTI3MTctNDc1OC05MWEwLWRmOWRiNmUyMjZmZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.Storage/storageAccounts/acrstorage5309\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5309\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:35:20.6318523Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5309.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5309.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5309.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5309.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.Storage/storageAccounts/acrstorage8876\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage8876\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:50:37.4409786Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage8876.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage8876.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage8876.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage8876.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:49 GMT" + "Thu, 16 Mar 2017 22:51:07 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "839d39f4-eb93-4ebc-974a-d837696b1d2f" + "96789ba5-32c0-41f7-9b47-7148d48d1e94" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14991" ], "x-ms-correlation-request-id": [ - "839d39f4-eb93-4ebc-974a-d837696b1d2f" + "96789ba5-32c0-41f7-9b47-7148d48d1e94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033550Z:839d39f4-eb93-4ebc-974a-d837696b1d2f" + "WESTUS2:20170316T225107Z:96789ba5-32c0-41f7-9b47-7148d48d1e94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.Storage/storageAccounts/acrstorage5309/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTMwOS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.Storage/storageAccounts/acrstorage8876/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODg3Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a30d230-a4a8-4561-a664-2d5da4ec54e3" + "25e00b70-37ce-4af5-86a4-743d40b8d0a3" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"MJ6dZCYzr4QMtFmL+KpoQgnWiZGiwRQbR7z4B31NNyiEi+fpiVbRP7C9UFpUsB90siXVDAFyCvxkAfICt7AY4A==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"r7k8DW3yy96IUEx1yvxLopHpcY9E0wJ1D+7HKMmtLs8ag0KKtVoIfubGKv88HsJ+e1dua35rzIMnwURcxnSafw==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"9IDINDecbc1h/EN8LpAcyoLw3n/HI8goIJQ2hMsNrZ2R/MBwsZ+IW9JcAo2FW6pVZW4rRNzW8mf24nz+fw8HVw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"FPaTF1xzLyRyP/OT0SBW6Kwqznk0WfYhe+SSldVQ0yE3S4QBd/zNnd6roYFlqmIXSZj5NMYofzoy0LVc8gA1rA==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:49 GMT" + "Thu, 16 Mar 2017 22:51:07 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e8ca0fbe-78dc-4067-9d40-a36245b36e2e" + "a940a0df-0456-499b-8b94-3b6bfc4e7b0d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "e8ca0fbe-78dc-4067-9d40-a36245b36e2e" + "a940a0df-0456-499b-8b94-3b6bfc4e7b0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033550Z:e8ca0fbe-78dc-4067-9d40-a36245b36e2e" + "WESTUS2:20170316T225107Z:a940a0df-0456-499b-8b94-3b6bfc4e7b0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,29 +303,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry3581?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MzU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry8286?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODI4Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\",\r\n \"accessKey\": \"MJ6dZCYzr4QMtFmL+KpoQgnWiZGiwRQbR7z4B31NNyiEi+fpiVbRP7C9UFpUsB90siXVDAFyCvxkAfICt7AY4A==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\",\r\n \"accessKey\": \"9IDINDecbc1h/EN8LpAcyoLw3n/HI8goIJQ2hMsNrZ2R/MBwsZ+IW9JcAo2FW6pVZW4rRNzW8mf24nz+fw8HVw==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "d41bb774-a9e5-4ca4-800e-a0cc45405b30" + "28f9b49a-a5fa-45c1-88da-0bc7fc9f432c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry3581\",\r\n \"name\": \"acrregistry3581\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3581-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:53.0178633Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry8286\",\r\n \"name\": \"acrregistry8286\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8286.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:51:29.0179786Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -337,7 +337,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:53 GMT" + "Thu, 16 Mar 2017 22:51:54 GMT" ], "Pragma": [ "no-cache" @@ -346,59 +346,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-request-id": [ - "f736a833-5893-4103-a615-ecfadb70206f" + "c5656653-459a-4053-8c4a-fdb52734adcc" ], "x-ms-correlation-request-id": [ - "f736a833-5893-4103-a615-ecfadb70206f" + "c5656653-459a-4053-8c4a-fdb52734adcc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033553Z:f736a833-5893-4103-a615-ecfadb70206f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225154Z:c5656653-459a-4053-8c4a-fdb52734adcc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry282?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MjgyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry7868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\",\r\n \"accessKey\": \"MJ6dZCYzr4QMtFmL+KpoQgnWiZGiwRQbR7z4B31NNyiEi+fpiVbRP7C9UFpUsB90siXVDAFyCvxkAfICt7AY4A==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\",\r\n \"accessKey\": \"9IDINDecbc1h/EN8LpAcyoLw3n/HI8goIJQ2hMsNrZ2R/MBwsZ+IW9JcAo2FW6pVZW4rRNzW8mf24nz+fw8HVw==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "851bba82-7840-4927-98f6-77c1edb5f93e" + "bbff414e-6ab0-4e48-9ff5-6a321edbc941" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry282\",\r\n \"name\": \"acrregistry282\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry282-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:55.0647124Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry7868\",\r\n \"name\": \"acrregistry7868\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7868.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:51:55.9662416Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +404,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:55 GMT" + "Thu, 16 Mar 2017 22:52:21 GMT" ], "Pragma": [ "no-cache" @@ -419,53 +413,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-request-id": [ - "14d19351-18c8-4264-99bb-cf7fc7f5ffd8" + "5691500f-daab-409c-8060-27f9336a467a" ], "x-ms-correlation-request-id": [ - "14d19351-18c8-4264-99bb-cf7fc7f5ffd8" + "5691500f-daab-409c-8060-27f9336a467a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033555Z:14d19351-18c8-4264-99bb-cf7fc7f5ffd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225222Z:5691500f-daab-409c-8060-27f9336a467a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c508076f-2aa1-474f-a319-35a4ff119d3a" + "58e6529d-d04d-4943-b94f-475c98536ddf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry282\",\r\n \"name\": \"acrregistry282\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry282-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:55.6159918Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry3581\",\r\n \"name\": \"acrregistry3581\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3581-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:53.6616112Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry7868\",\r\n \"name\": \"acrregistry7868\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7868.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:52:22.1088397Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry8286\",\r\n \"name\": \"acrregistry8286\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8286.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:51:30.5921302Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -477,7 +465,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:56 GMT" + "Thu, 16 Mar 2017 22:52:21 GMT" ], "Pragma": [ "no-cache" @@ -486,31 +474,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14990" ], "x-ms-request-id": [ - "2d37f61f-0dcd-4523-acc7-9d0d8932119a" + "e17dfcc5-366c-4b6c-af66-04b4ebe5980b" ], "x-ms-correlation-request-id": [ - "2d37f61f-0dcd-4523-acc7-9d0d8932119a" + "e17dfcc5-366c-4b6c-af66-04b4ebe5980b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033556Z:2d37f61f-0dcd-4523-acc7-9d0d8932119a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225222Z:e17dfcc5-366c-4b6c-af66-04b4ebe5980b" ] }, "StatusCode": 200 @@ -518,17 +500,17 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg5427" + "acr_rg4701" ], "CreateStorageAccount": [ - "acrstorage5309" + "acrstorage8876" ], "CreateContainerRegistry": [ - "acrregistry3581", - "acrregistry282" + "acrregistry8286", + "acrregistry7868" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListBySubscriptionTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListBySubscriptionTest.json index 70a0bbcfb030..abfee1ee088f 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListBySubscriptionTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListBySubscriptionTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ca60429-373a-496a-a1ce-20388cd699cd" + "64abe80b-6390-433a-8729-6aabe018fce6" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:21 GMT" + "Thu, 16 Mar 2017 22:47:11 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14988" ], "x-ms-request-id": [ - "85bc72a2-1c9e-4fb9-aa12-9b64cf34eec5" + "b9eed7cb-206e-4ed4-bee9-a924cbf4efb8" ], "x-ms-correlation-request-id": [ - "85bc72a2-1c9e-4fb9-aa12-9b64cf34eec5" + "b9eed7cb-206e-4ed4-bee9-a924cbf4efb8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033321Z:85bc72a2-1c9e-4fb9-aa12-9b64cf34eec5" + "WESTUS2:20170316T224711Z:b9eed7cb-206e-4ed4-bee9-a924cbf4efb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,13 +56,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "affafa16-fc63-4409-84f8-4859dc0fba1b" + "1ff71a2b-73dc-4926-9315-37596b7db49d" ], "accept-language": [ "en-US" @@ -72,7 +72,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:55 GMT" + "Thu, 16 Mar 2017 22:48:11 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14986" ], "x-ms-request-id": [ - "48fcb075-5393-4a35-b95e-2a4f84e33b0b" + "c8b972ef-213c-4240-9bd4-2989e4392da1" ], "x-ms-correlation-request-id": [ - "48fcb075-5393-4a35-b95e-2a4f84e33b0b" + "c8b972ef-213c-4240-9bd4-2989e4392da1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033355Z:48fcb075-5393-4a35-b95e-2a4f84e33b0b" + "WESTUS2:20170316T224811Z:c8b972ef-213c-4240-9bd4-2989e4392da1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,8 +111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2558?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzI1NTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg2340?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzIzNDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -123,7 +123,7 @@ "28" ], "x-ms-client-request-id": [ - "1692d901-fe09-4091-974c-c800ee5b97ec" + "0cc79db5-18a8-4d72-a5cd-8b4d1f428354" ], "accept-language": [ "en-US" @@ -133,7 +133,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558\",\r\n \"name\": \"acr_rg2558\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340\",\r\n \"name\": \"acr_rg2340\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -148,22 +148,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:21 GMT" + "Thu, 16 Mar 2017 22:47:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "6285a8f6-521c-4854-b542-10e826207705" + "e161d2e2-0c34-4bb0-ac15-135481027428" ], "x-ms-correlation-request-id": [ - "6285a8f6-521c-4854-b542-10e826207705" + "e161d2e2-0c34-4bb0-ac15-135481027428" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033321Z:6285a8f6-521c-4854-b542-10e826207705" + "WESTUS2:20170316T224712Z:e161d2e2-0c34-4bb0-ac15-135481027428" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,8 +172,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558/providers/Microsoft.Storage/storageAccounts/acrstorage6769?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzI1NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjc2OT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340/providers/Microsoft.Storage/storageAccounts/acrstorage3754?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMzc1ND9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -184,7 +184,7 @@ "96" ], "x-ms-client-request-id": [ - "e1e7cd28-1d4a-467d-8bbc-1cea8aa00c5f" + "c1eb7ad5-d579-482c-94ca-0260cae288a8" ], "accept-language": [ "en-US" @@ -206,13 +206,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:22 GMT" + "Thu, 16 Mar 2017 22:47:12 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/7c7bc9a8-ca72-4d67-abb1-8fba675a180a?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/c5353d5d-2a20-4ec2-b331-4c02451c9e05?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -222,16 +222,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-request-id": [ - "d6816e16-3650-47cb-be96-5f40553eb776" + "4580cf76-7a45-4f0e-8f46-c92ddde55d31" ], "x-ms-correlation-request-id": [ - "d6816e16-3650-47cb-be96-5f40553eb776" + "4580cf76-7a45-4f0e-8f46-c92ddde55d31" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033322Z:d6816e16-3650-47cb-be96-5f40553eb776" + "WESTUS2:20170316T224712Z:4580cf76-7a45-4f0e-8f46-c92ddde55d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,8 +240,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/7c7bc9a8-ca72-4d67-abb1-8fba675a180a?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdjN2JjOWE4LWNhNzItNGQ2Ny1hYmIxLThmYmE2NzVhMTgwYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/c5353d5d-2a20-4ec2-b331-4c02451c9e05?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M1MzUzZDVkLTJhMjAtNGVjMi1iMzMxLTRjMDI0NTFjOWUwNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -250,7 +250,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558/providers/Microsoft.Storage/storageAccounts/acrstorage6769\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage6769\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:33:22.7429991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage6769.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage6769.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage6769.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage6769.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340/providers/Microsoft.Storage/storageAccounts/acrstorage3754\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage3754\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:47:13.1223613Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage3754.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage3754.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage3754.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage3754.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -262,7 +262,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:52 GMT" + "Thu, 16 Mar 2017 22:47:42 GMT" ], "Pragma": [ "no-cache" @@ -278,16 +278,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3cd227d4-4453-478c-88f4-c116c15ec87f" + "c7403d6a-d1af-48c1-9126-590b2ed6e9f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14987" ], "x-ms-correlation-request-id": [ - "3cd227d4-4453-478c-88f4-c116c15ec87f" + "c7403d6a-d1af-48c1-9126-590b2ed6e9f1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033352Z:3cd227d4-4453-478c-88f4-c116c15ec87f" + "WESTUS2:20170316T224743Z:c7403d6a-d1af-48c1-9126-590b2ed6e9f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,13 +296,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558/providers/Microsoft.Storage/storageAccounts/acrstorage6769/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzI1NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjc2OS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340/providers/Microsoft.Storage/storageAccounts/acrstorage3754/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMzc1NC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de672332-e881-4906-90e4-858e63574fe2" + "d74e62aa-7065-456a-b121-c51b2b925572" ], "accept-language": [ "en-US" @@ -312,7 +312,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"lpezYnfX5FrT55B88snk/3du4Ed7jJ9rtoURMtaipdUM7n/aAiiUBXX5N8jR/awNSyLgaclUP6bvfizhEnrCmA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"A/HZk4KoV+ku+rzvQBiiDZvyqgRSFI5KgN8dtSYNhNPz5hSORD+/CJzzbAQnpw0ME/wKW02iRzhiWJIx0pdP0g==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"ZGudPqJXjh3yawc9pQq7+8UKTNo/wC4X9Qfkj461E3qYaYK9hQ2QNui0cwvH1H+POUKfeIjp+6xuFt88IYzvsQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"ZKiBjGl7gkmZ3NKHSwRIts8cAqNAr5qwv/zgL8HW5Ey5aH3cAM8zWDRlcFDBXNuxdfUAaX3oiemthvyTncbiLw==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:52 GMT" + "Thu, 16 Mar 2017 22:47:42 GMT" ], "Pragma": [ "no-cache" @@ -340,16 +340,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "600ae156-39c0-49f3-a676-0b44d2dcbe9e" + "14b525cb-5b25-4166-bba2-c710539b621f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "600ae156-39c0-49f3-a676-0b44d2dcbe9e" + "14b525cb-5b25-4166-bba2-c710539b621f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033353Z:600ae156-39c0-49f3-a676-0b44d2dcbe9e" + "WESTUS2:20170316T224743Z:14b525cb-5b25-4166-bba2-c710539b621f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -358,29 +358,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558/providers/Microsoft.ContainerRegistry/registries/acrregistry7989?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzI1NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzk4OT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340/providers/Microsoft.ContainerRegistry/registries/acrregistry3911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MzkxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6769\",\r\n \"accessKey\": \"lpezYnfX5FrT55B88snk/3du4Ed7jJ9rtoURMtaipdUM7n/aAiiUBXX5N8jR/awNSyLgaclUP6bvfizhEnrCmA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3754\",\r\n \"accessKey\": \"ZGudPqJXjh3yawc9pQq7+8UKTNo/wC4X9Qfkj461E3qYaYK9hQ2QNui0cwvH1H+POUKfeIjp+6xuFt88IYzvsQ==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "05902a5b-c59c-4def-838d-def4889c2cab" + "7ac39e12-38c6-452c-a9f3-a5c4d12e004d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2558/providers/Microsoft.ContainerRegistry/registries/acrregistry7989\",\r\n \"name\": \"acrregistry7989\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7989-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:33:55.0018863Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6769\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg2340/providers/Microsoft.ContainerRegistry/registries/acrregistry3911\",\r\n \"name\": \"acrregistry3911\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3911.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:47:44.6019628Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3754\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -392,7 +392,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:55 GMT" + "Thu, 16 Mar 2017 22:48:11 GMT" ], "Pragma": [ "no-cache" @@ -401,38 +401,32 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1187" ], "x-ms-request-id": [ - "86b9eebf-5e6e-4f9d-87a3-64e22b00f3d2" + "a161a51d-2afe-43be-8ffc-3532ae5f7001" ], "x-ms-correlation-request-id": [ - "86b9eebf-5e6e-4f9d-87a3-64e22b00f3d2" + "a161a51d-2afe-43be-8ffc-3532ae5f7001" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033355Z:86b9eebf-5e6e-4f9d-87a3-64e22b00f3d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224811Z:a161a51d-2afe-43be-8ffc-3532ae5f7001" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4708?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzQ3MDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg6006?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzYwMDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -443,7 +437,7 @@ "28" ], "x-ms-client-request-id": [ - "a7963f8b-3e39-4093-ba05-4898e80f4cff" + "68adf39d-617a-4db5-9f86-d0eed3860672" ], "accept-language": [ "en-US" @@ -453,7 +447,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708\",\r\n \"name\": \"acr_rg4708\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006\",\r\n \"name\": \"acr_rg6006\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -468,22 +462,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:55 GMT" + "Thu, 16 Mar 2017 22:48:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1186" ], "x-ms-request-id": [ - "2d7f5948-0058-44ee-8e65-e57ec32020e9" + "e5c97fee-4581-43cd-acf6-484b2d1fc440" ], "x-ms-correlation-request-id": [ - "2d7f5948-0058-44ee-8e65-e57ec32020e9" + "e5c97fee-4581-43cd-acf6-484b2d1fc440" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033356Z:2d7f5948-0058-44ee-8e65-e57ec32020e9" + "WESTUS2:20170316T224811Z:e5c97fee-4581-43cd-acf6-484b2d1fc440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,8 +486,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708/providers/Microsoft.Storage/storageAccounts/acrstorage4138?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDEzOD9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006/providers/Microsoft.Storage/storageAccounts/acrstorage3046?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMzA0Nj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -504,7 +498,7 @@ "96" ], "x-ms-client-request-id": [ - "2e184518-fc9b-47e6-80e9-1865856fdf5f" + "629eb358-5cb9-4aea-a0c5-9346afb2c7d9" ], "accept-language": [ "en-US" @@ -526,13 +520,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:56 GMT" + "Thu, 16 Mar 2017 22:48:12 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/51001af2-3fc6-4a66-9a51-88ddf2f9f58e?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/bdeb3a65-1562-4be5-b2ef-39c1b54e225a?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -542,16 +536,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1185" ], "x-ms-request-id": [ - "f8f4d3dd-3b60-4c95-b60b-6305b40c597e" + "48d5dbf2-f052-4173-9a68-d853f2199365" ], "x-ms-correlation-request-id": [ - "f8f4d3dd-3b60-4c95-b60b-6305b40c597e" + "48d5dbf2-f052-4173-9a68-d853f2199365" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033356Z:f8f4d3dd-3b60-4c95-b60b-6305b40c597e" + "WESTUS2:20170316T224812Z:48d5dbf2-f052-4173-9a68-d853f2199365" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +554,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/51001af2-3fc6-4a66-9a51-88ddf2f9f58e?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzUxMDAxYWYyLTNmYzYtNGE2Ni05YTUxLTg4ZGRmMmY5ZjU4ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/bdeb3a65-1562-4be5-b2ef-39c1b54e225a?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2JkZWIzYTY1LTE1NjItNGJlNS1iMmVmLTM5YzFiNTRlMjI1YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -570,7 +564,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708/providers/Microsoft.Storage/storageAccounts/acrstorage4138\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage4138\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:33:56.9359698Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage4138.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage4138.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage4138.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage4138.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006/providers/Microsoft.Storage/storageAccounts/acrstorage3046\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage3046\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:48:11.9667117Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage3046.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage3046.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage3046.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage3046.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -582,7 +576,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:34:26 GMT" + "Thu, 16 Mar 2017 22:48:42 GMT" ], "Pragma": [ "no-cache" @@ -598,16 +592,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "52785ad3-c20e-42e8-ba8a-1d743e94ce98" + "0910518c-67ac-4b45-bfab-3e1cad60cd3a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14985" ], "x-ms-correlation-request-id": [ - "52785ad3-c20e-42e8-ba8a-1d743e94ce98" + "0910518c-67ac-4b45-bfab-3e1cad60cd3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033427Z:52785ad3-c20e-42e8-ba8a-1d743e94ce98" + "WESTUS2:20170316T224842Z:0910518c-67ac-4b45-bfab-3e1cad60cd3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,13 +610,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708/providers/Microsoft.Storage/storageAccounts/acrstorage4138/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDEzOC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006/providers/Microsoft.Storage/storageAccounts/acrstorage3046/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMzA0Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82894e1c-506f-4bc6-a5ea-5d7774454a6b" + "b866f0e3-b58c-493b-9587-a3e788d4dff7" ], "accept-language": [ "en-US" @@ -632,7 +626,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"m5VDL7sm+xt1NPBZpGquw7GtBt8u06xRaO29xkTz6CuIuCxmytFBA6e4TfqCjgYE2OqFTZJ5zjdCWDev7nnekw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"iPpsye4bD9N/WYoH2+aBWKaUWg5tDdMG+E6NG7yY/iB8H8gD7o6n6K5YVhUF5FVliqpB1r878PCnn8E61xNDaw==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"7sVrGcwBj7Qw8TKHlmvhBjNCCWYNGBe4blQLarX7/BrsDCqCJDYK9mlEWcIivS+Li3ewRdFTGDvr3ANnsLTL2Q==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"Q86Ci1yM7RSuKt7XymP9QyvDPaDd1yFsTjBSIzXdAKJJTc4I14OPEjB5krbRZA/hRAqL0VXfAjYsj6TOztK8sw==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -644,7 +638,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:34:26 GMT" + "Thu, 16 Mar 2017 22:48:42 GMT" ], "Pragma": [ "no-cache" @@ -660,16 +654,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f21e7e01-fa83-4a37-bf78-3404938e7934" + "392d8bc1-6433-45a3-9a2d-0636814d21b1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1184" ], "x-ms-correlation-request-id": [ - "f21e7e01-fa83-4a37-bf78-3404938e7934" + "392d8bc1-6433-45a3-9a2d-0636814d21b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033427Z:f21e7e01-fa83-4a37-bf78-3404938e7934" + "WESTUS2:20170316T224842Z:392d8bc1-6433-45a3-9a2d-0636814d21b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,29 +672,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708/providers/Microsoft.ContainerRegistry/registries/acrregistry6125?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NjEyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006/providers/Microsoft.ContainerRegistry/registries/acrregistry6626?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NjYyNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4138\",\r\n \"accessKey\": \"m5VDL7sm+xt1NPBZpGquw7GtBt8u06xRaO29xkTz6CuIuCxmytFBA6e4TfqCjgYE2OqFTZJ5zjdCWDev7nnekw==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3046\",\r\n \"accessKey\": \"7sVrGcwBj7Qw8TKHlmvhBjNCCWYNGBe4blQLarX7/BrsDCqCJDYK9mlEWcIivS+Li3ewRdFTGDvr3ANnsLTL2Q==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "660632a6-85b3-42dd-93d0-f841e8f12431" + "fd8f3f9d-fcf0-4a04-b6d4-eef4a040100e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4708/providers/Microsoft.ContainerRegistry/registries/acrregistry6125\",\r\n \"name\": \"acrregistry6125\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6125-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:34:28.5229021Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4138\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg6006/providers/Microsoft.ContainerRegistry/registries/acrregistry6626\",\r\n \"name\": \"acrregistry6626\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6626.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:48:43.431155Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3046\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -712,7 +706,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:34:28 GMT" + "Thu, 16 Mar 2017 22:48:44 GMT" ], "Pragma": [ "no-cache" @@ -721,53 +715,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1183" ], "x-ms-request-id": [ - "4313e6d8-bdc3-4a1c-b3cc-c16eb523d126" + "544ad12e-44ca-4619-8af7-d26a9c51387e" ], "x-ms-correlation-request-id": [ - "4313e6d8-bdc3-4a1c-b3cc-c16eb523d126" + "544ad12e-44ca-4619-8af7-d26a9c51387e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033429Z:4313e6d8-bdc3-4a1c-b3cc-c16eb523d126" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224844Z:544ad12e-44ca-4619-8af7-d26a9c51387e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry/registries?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvcmVnaXN0cmllcz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry/registries?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvcmVnaXN0cmllcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc8a0915-2310-4351-b2a1-1771619bde9c" + "b8babf3c-4873-4d6d-9222-2b51e47bb94d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg1695/providers/Microsoft.ContainerRegistry/registries/acrregistry7475\",\r\n \"name\": \"acrregistry7475\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7475-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-05T20:02:00.8308337Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage224\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2558/providers/Microsoft.ContainerRegistry/registries/acrregistry7989\",\r\n \"name\": \"acrregistry7989\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7989-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:33:55.6113202Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6769\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4708/providers/Microsoft.ContainerRegistry/registries/acrregistry6125\",\r\n \"name\": \"acrregistry6125\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6125-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:34:29.1930139Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4138\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9138/providers/Microsoft.ContainerRegistry/registries/acrregistry9053\",\r\n \"name\": \"acrregistry9053\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry9053-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-05T20:39:34.0787015Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage7946\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acrcommonimages/providers/Microsoft.ContainerRegistry/registries/prime\",\r\n \"name\": \"prime\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"prime-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T02:42:16.8859974Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrcommonlayers\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/martinpfacrtestwus/providers/Microsoft.ContainerRegistry/registries/martinpfTestRegWus1\",\r\n \"name\": \"martinpfTestRegWus1\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"martinpftestregwus1-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-18T16:55:23.74159Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"martinpfacrtestwus\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/moveregistryRg/providers/Microsoft.ContainerRegistry/registries/sourceregistry\",\r\n \"name\": \"sourceregistry\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"sourceregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-17T02:47:15.6699584Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"registrydata\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/moveregistryRg/providers/Microsoft.ContainerRegistry/registries/targetregistry\",\r\n \"name\": \"targetregistry\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"targetregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-17T02:48:08.2059581Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"registrydata\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/ComplianceWebScout/providers/Microsoft.ContainerRegistry/registries/webscoutregistry\",\r\n \"name\": \"webscoutregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"webscoutregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-12T08:03:55.2993849Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"ybi1sqenv18od7kr7g5jxku5\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/azcrci\",\r\n \"name\": \"azcrci\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"azcrci-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-29T22:12:39.1304237Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoustorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/doyoudoyoudoyou\",\r\n \"name\": \"doyoudoyoudoyou\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoudoyoudoyou-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:37:39.2642708Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"3cf67818b58a4443bd09772c\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/doyouregistry\",\r\n \"name\": \"doyouregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyouregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-18T18:11:48.5606407Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoustorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest\",\r\n \"name\": \"doyoutest\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-22T22:18:53.0902931Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest1122221815\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest1test2test3test4test5test6test7test8\",\r\n \"name\": \"doyoutest1test2test3test4test5test6test7test8\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest1test2test3test4test5test6test7test8-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-22T22:27:58.401606Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest1test1122222723\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest2\",\r\n \"name\": \"doyoutest2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest2-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-29T18:25:06.0380789Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoustorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/doyoutest3\",\r\n \"name\": \"doyoutest3\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest3-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-19T00:41:13.8875597Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoustorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest4\",\r\n \"name\": \"doyoutest4\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest4-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-23T01:18:37.0905322Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest4011759\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest5\",\r\n \"name\": \"doyoutest5\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest5-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-23T01:32:45.1069472Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest5013210\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest6\",\r\n \"name\": \"doyoutest6\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest6-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:26:40.286073Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"3cf67818b58a4443bd09772c\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest7\",\r\n \"name\": \"doyoutest7\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest7-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:28:30.985204Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest7002758\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/helloworld\",\r\n \"name\": \"helloworld\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"helloworld-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:24:59.5516776Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"helloworld02424\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/emptyrg/providers/Microsoft.ContainerRegistry/registries/emptyrgregistry\",\r\n \"name\": \"emptyrgregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"emptyrgregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-15T21:00:02.2823788Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"326da2796ae34436a2dc1c49\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/kevinrg/providers/Microsoft.ContainerRegistry/registries/kevinregistry3\",\r\n \"name\": \"kevinregistry3\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"b2\": \"b2\",\r\n \"a1\": \"f\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"kevinregistry3-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-03T17:15:57.7357909Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"14feb0d80746415f9a8b4f03\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/kevinrg/providers/Microsoft.ContainerRegistry/registries/kevinregistry4\",\r\n \"name\": \"kevinregistry4\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"kevinregistry4-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-03T17:32:58.4030661Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"c9b0489750f64ff1aef92a3e\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/nathana-dyad/providers/Microsoft.ContainerRegistry/registries/nathanaCastor\",\r\n \"name\": \"nathanaCastor\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"nathanacastor-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T17:09:40.0862444Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"nathanacastorstore\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/nathana-dyad/providers/Microsoft.ContainerRegistry/registries/nathanaleda\",\r\n \"name\": \"nathanaleda\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"nathanaleda-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:24:50.2186034Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"nathanaledastore\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/ReservedRegistries/providers/Microsoft.ContainerRegistry/registries/perfregdgldVgQ\",\r\n \"name\": \"perfregdgldVgQ\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"perfregdgldvgq\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"perfregdgldvgq-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-09T03:37:49.8430742Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"perfregdgldvgq\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/ReservedRegistries/providers/Microsoft.ContainerRegistry/registries/sivagtest1\",\r\n \"name\": \"sivagtest1\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"ya2j3nkadrfs2tv4bdq95ay6\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"sivagtest1-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-21T00:50:00.8866035Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"ya2j3nkadrfs2tv4bdq95ay6\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/reservedregistries/providers/Microsoft.ContainerRegistry/registries/sivagtest2\",\r\n \"name\": \"sivagtest2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"9abf2dba4f5b457b8fba1646\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"sivagtest2-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-25T06:51:02.9935447Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"9abf2dba4f5b457b8fba1646\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/ReservedRegistries/providers/Microsoft.ContainerRegistry/registries/tryacr\",\r\n \"name\": \"tryacr\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"tryacrstorenew\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"tryacr.azurecr.io\",\r\n \"creationDate\": \"2016-10-27T19:14:08.6893909Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"tryacrstorenew\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/sajayaAdminTest/providers/Microsoft.ContainerRegistry/registries/sajayadmintestregistry\",\r\n \"name\": \"sajayadmintestregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"sajayadmintestregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-25T07:24:18.2633344Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"01dbc888a9184fe28491d666\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/sivagtest12\",\r\n \"name\": \"sivagtest12\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"sivagtest12-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-09T21:13:55.2655624Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"wc8583z08x43wyxps4evmgtz\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/testregistry\",\r\n \"name\": \"testregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"testregistry-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-01T21:06:19.091022Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"testwestcentralstorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/testregistry1\",\r\n \"name\": \"testregistry1\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"testregistry1-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-01T20:08:59.714696Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"testwestcentralstorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/testregistryprod\",\r\n \"name\": \"testregistryprod\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"testregistryprod-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-02T07:07:25.7717768Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"100a5c18c4e44326b19caa9c\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/yuwatestreg/providers/Microsoft.ContainerRegistry/registries/yuwatest2\",\r\n \"name\": \"yuwatest2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"f73216ebb0fe4e9eae923934\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"yuwatest2-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-07T23:12:52.9546535Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"f73216ebb0fe4e9eae923934\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/yuwatestrg/providers/Microsoft.ContainerRegistry/registries/yuwatest3\",\r\n \"name\": \"yuwatest3\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"74737d939463408a9ebd4d7f\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"yuwatest3-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-08T00:17:24.4194081Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"74737d939463408a9ebd4d7f\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acrunittest/providers/Microsoft.ContainerRegistry/registries/testnaduggar\",\r\n \"name\": \"testnaduggar\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"Value1\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"testnaduggar-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-08T05:58:38.4203417Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"d256eab2b1fb48b3a263a4f7\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/kevinrg/providers/Microsoft.ContainerRegistry/registries/kevinregistry\",\r\n \"name\": \"kevinregistry\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"kevinregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-23T00:39:33.5357482Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"bcrh19dc0h0rm60ofnosdwnf\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/kevinrg/providers/Microsoft.ContainerRegistry/registries/kevinregistry2\",\r\n \"name\": \"kevinregistry2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test\": \"5\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"kevinregistry2-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-02T01:26:09.4028525Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"0138b0ee3a0e4de48fe6560b\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/kiranreg\",\r\n \"name\": \"kiranreg\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"kiranreg-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-10T18:37:28.6287186Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"lozhm2bhbevvkekz0s4bo98t\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/sivagtest876\",\r\n \"name\": \"sivagtest876\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"sivagtest876-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-11T17:14:19.948662Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"zjqylwq4kd2za35gzseifrlp\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/testnewregistry\",\r\n \"name\": \"testnewregistry\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag2\": \"Value1\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"testnewregistry-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-01T20:56:44.7534143Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"testwestcentralstorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/yuwatestreg/providers/Microsoft.ContainerRegistry/registries/yuwatest5\",\r\n \"name\": \"yuwatest5\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"yuwatest5-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-04T22:37:51.0439803Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"2a06r7s4dabcwp84b3lckdgw\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/yuwatestreg/providers/Microsoft.ContainerRegistry/registries/yuwatest6\",\r\n \"name\": \"yuwatest6\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"yuwatest6-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-04T22:38:11.2737636Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"zfhcs8m0rtaxcttmb0qzo2o9\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg2340/providers/Microsoft.ContainerRegistry/registries/acrregistry3911\",\r\n \"name\": \"acrregistry3911\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3911.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:48:11.1108569Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3754\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg6006/providers/Microsoft.ContainerRegistry/registries/acrregistry6626\",\r\n \"name\": \"acrregistry6626\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6626.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:48:44.65611Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3046\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -779,34 +767,34 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:34:29 GMT" + "Thu, 16 Mar 2017 22:48:44 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Vary": [ "Accept-Encoding" ], - "x-ms-original-request-ids": [ - "", - "", - "", - "" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14984" ], "x-ms-request-id": [ - "cf75189a-aaa8-4461-8654-ecc3cc6ec77e" + "c2c5d389-b617-4245-8d05-5cf3fd43f42c" ], "x-ms-correlation-request-id": [ - "cf75189a-aaa8-4461-8654-ecc3cc6ec77e" + "c2c5d389-b617-4245-8d05-5cf3fd43f42c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033430Z:cf75189a-aaa8-4461-8654-ecc3cc6ec77e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224844Z:c2c5d389-b617-4245-8d05-5cf3fd43f42c" ] }, "StatusCode": 200 @@ -814,19 +802,19 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg2558", - "acr_rg4708" + "acr_rg2340", + "acr_rg6006" ], "CreateStorageAccount": [ - "acrstorage6769", - "acrstorage4138" + "acrstorage3754", + "acrstorage3046" ], "CreateContainerRegistry": [ - "acrregistry7989", - "acrregistry6125" + "acrregistry3911", + "acrregistry6626" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListCredentialsTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListCredentialsTest.json new file mode 100644 index 000000000000..edbbc8e6276d --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListCredentialsTest.json @@ -0,0 +1,573 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa6d40e9-d7b2-4f6f-b032-b22a10a2e6c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "059bda0b-d7ec-49a5-b6b6-0479bf1a821c" + ], + "x-ms-correlation-request-id": [ + "059bda0b-d7ec-49a5-b6b6-0479bf1a821c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224930Z:059bda0b-d7ec-49a5-b6b6-0479bf1a821c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5198?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzUxOTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "x-ms-client-request-id": [ + "c74c0263-a7c0-4a74-996f-da24cae77d36" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198\",\r\n \"name\": \"acr_rg5198\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "548a819c-8c08-45c4-b1a5-82ccd44885b1" + ], + "x-ms-correlation-request-id": [ + "548a819c-8c08-45c4-b1a5-82ccd44885b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224931Z:548a819c-8c08-45c4-b1a5-82ccd44885b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.Storage/storageAccounts/acrstorage9033?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlOTAzMz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" + ], + "x-ms-client-request-id": [ + "80343310-7b33-4911-a694-f1aa7c374af7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/19c56fa3-be92-4f73-8b0f-46c7f76dbdaf?monitor=true&api-version=2016-01-01" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "3d3ce249-7611-4548-8bfd-eae2cedb893c" + ], + "x-ms-correlation-request-id": [ + "3d3ce249-7611-4548-8bfd-eae2cedb893c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224932Z:3d3ce249-7611-4548-8bfd-eae2cedb893c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/19c56fa3-be92-4f73-8b0f-46c7f76dbdaf?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzE5YzU2ZmEzLWJlOTItNGY3My04YjBmLTQ2YzdmNzZkYmRhZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.Storage/storageAccounts/acrstorage9033\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage9033\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:49:32.0674825Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage9033.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage9033.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage9033.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage9033.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a053ad1f-ad19-43fe-b663-094045ddb331" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "a053ad1f-ad19-43fe-b663-094045ddb331" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225002Z:a053ad1f-ad19-43fe-b663-094045ddb331" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.Storage/storageAccounts/acrstorage9033/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlOTAzMy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "153905ae-4feb-4b35-ac55-fec628c3d62e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"dnyiClPzMsKQSbo6nfc9xPP9cfMe0Zsm6pr2kmaq9D/rlG810GN7LfvYE0drPvX8eKwiwkq4kRAgcmmz7rjsQA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"t+Zxptimlm0pKrIUW5ZnOKWWIEz3oPPC7ArjrP8cfTUB1qxCE3HtTKZmjc/ZsEdVroU8ZQoRtvIwOFpywbXYlg==\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c6f4f6f7-8ee7-4bea-8c64-c7db36714950" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "c6f4f6f7-8ee7-4bea-8c64-c7db36714950" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225002Z:c6f4f6f7-8ee7-4bea-8c64-c7db36714950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage9033\",\r\n \"accessKey\": \"dnyiClPzMsKQSbo6nfc9xPP9cfMe0Zsm6pr2kmaq9D/rlG810GN7LfvYE0drPvX8eKwiwkq4kRAgcmmz7rjsQA==\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "332" + ], + "x-ms-client-request-id": [ + "3c9d90a2-3361-4852-94fa-e7181340dba8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866\",\r\n \"name\": \"acrregistry7866\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7866.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:50:25.9915269Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage9033\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "5c0fb8bf-832a-4d5e-aeec-171f71b00322" + ], + "x-ms-correlation-request-id": [ + "5c0fb8bf-832a-4d5e-aeec-171f71b00322" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225027Z:5c0fb8bf-832a-4d5e-aeec-171f71b00322" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866/listCredentials?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2Ni9saXN0Q3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "690c5a35-0cfa-4457-8efd-d5c986f17c7e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"message\": \"Cannot perform credential operations for /subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866 as Admin user is disabled. Enable Admin user feature and try again.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "17b9958b-2e49-4393-90c7-2f410996dfab" + ], + "x-ms-correlation-request-id": [ + "17b9958b-2e49-4393-90c7-2f410996dfab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225027Z:17b9958b-2e49-4393-90c7-2f410996dfab" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866/listCredentials?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2Ni9saXN0Q3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43907cc0-40ba-49c9-b867-255dfd01264f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"username\": \"acrregistry7866\",\r\n \"passwords\": [\r\n {\r\n \"name\": \"password\",\r\n \"value\": \"++AS+pkNIn1v3v6crckk+rUyLwMpS95F\"\r\n },\r\n {\r\n \"name\": \"password2\",\r\n \"value\": \"3=/a=x/vd9V=nhT+J=/X/j/Mfp5dE7=f\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "46f2cd74-18f2-4181-b66e-be4280b417de" + ], + "x-ms-correlation-request-id": [ + "46f2cd74-18f2-4181-b66e-be4280b417de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225027Z:46f2cd74-18f2-4181-b66e-be4280b417de" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "58" + ], + "x-ms-client-request-id": [ + "24c9f5bf-0f57-4308-ad75-aa927dbf9587" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866\",\r\n \"name\": \"acrregistry7866\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7866.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:50:26.8911106Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage9033\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-request-id": [ + "59c91f84-f9f1-4a81-b05d-021c0a71f302" + ], + "x-ms-correlation-request-id": [ + "59c91f84-f9f1-4a81-b05d-021c0a71f302" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225027Z:59c91f84-f9f1-4a81-b05d-021c0a71f302" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateResourceGroup": [ + "acr_rg5198" + ], + "CreateStorageAccount": [ + "acrstorage9033" + ], + "CreateContainerRegistry": [ + "acrregistry7866" + ] + }, + "Variables": { + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialTest.json new file mode 100644 index 000000000000..a5efae50dd37 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialTest.json @@ -0,0 +1,582 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cc8d7ef-1d10-4463-864d-861b0f443308" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:48:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "357fc767-c0d8-4fc7-bdaa-7c6cb5f06586" + ], + "x-ms-correlation-request-id": [ + "357fc767-c0d8-4fc7-bdaa-7c6cb5f06586" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224851Z:357fc767-c0d8-4fc7-bdaa-7c6cb5f06586" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9767?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzk3Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "x-ms-client-request-id": [ + "6059c327-6739-4f32-b2e8-fa8abf2d0947" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767\",\r\n \"name\": \"acr_rg9767\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:48:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "32d35ed6-851b-4934-9858-160def387d76" + ], + "x-ms-correlation-request-id": [ + "32d35ed6-851b-4934-9858-160def387d76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224851Z:32d35ed6-851b-4934-9858-160def387d76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.Storage/storageAccounts/acrstorage5504?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTUwND9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" + ], + "x-ms-client-request-id": [ + "74d7bc92-787d-4fe0-901e-aadcb30621b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:48:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/5176cb5c-109a-4baa-9fdf-8c67426a0f61?monitor=true&api-version=2016-01-01" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "9a0592a3-0ef5-404a-befe-56157069c193" + ], + "x-ms-correlation-request-id": [ + "9a0592a3-0ef5-404a-befe-56157069c193" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224852Z:9a0592a3-0ef5-404a-befe-56157069c193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/5176cb5c-109a-4baa-9fdf-8c67426a0f61?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzUxNzZjYjVjLTEwOWEtNGJhYS05ZmRmLThjNjc0MjZhMGY2MT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.Storage/storageAccounts/acrstorage5504\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5504\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:48:52.7295809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5504.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5504.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5504.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5504.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a44bf636-6341-48f7-9469-8ac0bc15fb07" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "a44bf636-6341-48f7-9469-8ac0bc15fb07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224923Z:a44bf636-6341-48f7-9469-8ac0bc15fb07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.Storage/storageAccounts/acrstorage5504/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTUwNC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e4327f3-9e8f-459c-96b9-fdcfb6bb8ec3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"CcTarFkBAdmkq2hr+e5XhRnbVSbAXRJEqgqShcRIIuoVRTiwm3XQakQZO41t6ORwx1eW/GAnOhAhBwwhsL1+ZA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"kWJ+C77dxcIvrLTU34jqwmA9ikgwu089cYQ/YK9Uc7QtiOWouI61dNEVkkYebuUoSwJ6/4aqNKsbB16Jx5Fbdw==\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "764eb048-0ba4-453b-99e4-69537a258557" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "764eb048-0ba4-453b-99e4-69537a258557" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224923Z:764eb048-0ba4-453b-99e4-69537a258557" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5504\",\r\n \"accessKey\": \"CcTarFkBAdmkq2hr+e5XhRnbVSbAXRJEqgqShcRIIuoVRTiwm3XQakQZO41t6ORwx1eW/GAnOhAhBwwhsL1+ZA==\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "363" + ], + "x-ms-client-request-id": [ + "419a2c64-5f87-4bef-83de-b45bf61cd020" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860\",\r\n \"name\": \"acrregistry7860\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7860.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:49:24.046258Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5504\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "08e44122-b633-4a9f-b7ce-f098fd90b06b" + ], + "x-ms-correlation-request-id": [ + "08e44122-b633-4a9f-b7ce-f098fd90b06b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224925Z:08e44122-b633-4a9f-b7ce-f098fd90b06b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860/listCredentials?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2MC9saXN0Q3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47c12f2d-2ab3-4272-b913-f79231c5c559" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"username\": \"acrregistry7860\",\r\n \"passwords\": [\r\n {\r\n \"name\": \"password\",\r\n \"value\": \"Bd+hJVF=i7dBCF12/r/p8=hRxXuUL+2R\"\r\n },\r\n {\r\n \"name\": \"password2\",\r\n \"value\": \"/L/09Og4HHkNaYQKScvKbJ8c=NPhdVCq\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "f0af3d4c-647e-4a84-ae7f-ac1a046e8e2b" + ], + "x-ms-correlation-request-id": [ + "f0af3d4c-647e-4a84-ae7f-ac1a046e8e2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224925Z:f0af3d4c-647e-4a84-ae7f-ac1a046e8e2b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860/regenerateCredential?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2MC9yZWdlbmVyYXRlQ3JlZGVudGlhbD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"password\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "26" + ], + "x-ms-client-request-id": [ + "15401c4f-e3cc-4c1f-a545-11d3f2f7f379" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"username\": \"acrregistry7860\",\r\n \"passwords\": [\r\n {\r\n \"name\": \"password\",\r\n \"value\": \"On=E=3/+=/G+q+b5o70/J5+S9Hmc9+WG\"\r\n },\r\n {\r\n \"name\": \"password2\",\r\n \"value\": \"/L/09Og4HHkNaYQKScvKbJ8c=NPhdVCq\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "1e66959d-6110-4476-96a6-4618437ff956" + ], + "x-ms-correlation-request-id": [ + "1e66959d-6110-4476-96a6-4618437ff956" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224926Z:1e66959d-6110-4476-96a6-4618437ff956" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860/regenerateCredential?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2MC9yZWdlbmVyYXRlQ3JlZGVudGlhbD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"password2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "27" + ], + "x-ms-client-request-id": [ + "40133206-7312-49b7-aaa5-67213f5ba086" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"username\": \"acrregistry7860\",\r\n \"passwords\": [\r\n {\r\n \"name\": \"password\",\r\n \"value\": \"On=E=3/+=/G+q+b5o70/J5+S9Hmc9+WG\"\r\n },\r\n {\r\n \"name\": \"password2\",\r\n \"value\": \"=K+F++=W/=Yj+MoHtkix=7+e5Md3h=LW\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "f47fc31f-ef0b-46af-bd72-1bfb3ba4cdf2" + ], + "x-ms-correlation-request-id": [ + "f47fc31f-ef0b-46af-bd72-1bfb3ba4cdf2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224926Z:f47fc31f-ef0b-46af-bd72-1bfb3ba4cdf2" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateResourceGroup": [ + "acr_rg9767" + ], + "CreateStorageAccount": [ + "acrstorage5504" + ], + "ContainerRegistryRegenerateCredentialTest": [ + "acrregistry7860" + ] + }, + "Variables": { + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialsTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialsTest.json deleted file mode 100644 index b6cb5bfbe0a9..000000000000 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialsTest.json +++ /dev/null @@ -1,527 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0efd5d74-31e8-4758-995a-ea55161278b3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "d7c50e1b-d742-4523-affa-759449e43d56" - ], - "x-ms-correlation-request-id": [ - "d7c50e1b-d742-4523-affa-759449e43d56" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033239Z:d7c50e1b-d742-4523-affa-759449e43d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg3296?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzMyOTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "df344eff-cbd5-49e6-90d0-4a023cbd0722" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296\",\r\n \"name\": \"acr_rg3296\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "b3778f66-25b7-4618-b313-f824e5bb2c73" - ], - "x-ms-correlation-request-id": [ - "b3778f66-25b7-4618-b313-f824e5bb2c73" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033239Z:b3778f66-25b7-4618-b313-f824e5bb2c73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.Storage/storageAccounts/acrstorage8899?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODg5OT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ], - "x-ms-client-request-id": [ - "b3752116-9c2f-4192-815f-85c4ad2e4ecb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:40 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/180b6585-bcf9-450b-971d-8aa7584b8002?monitor=true&api-version=2016-01-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "14c689f9-7722-4497-b055-06f45b044a4c" - ], - "x-ms-correlation-request-id": [ - "14c689f9-7722-4497-b055-06f45b044a4c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033240Z:14c689f9-7722-4497-b055-06f45b044a4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/180b6585-bcf9-450b-971d-8aa7584b8002?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzE4MGI2NTg1LWJjZjktNDUwYi05NzFkLThhYTc1ODRiODAwMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.Storage/storageAccounts/acrstorage8899\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage8899\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:32:40.6152367Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage8899.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage8899.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage8899.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage8899.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f211880e-436d-4523-811c-5753484d5187" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "f211880e-436d-4523-811c-5753484d5187" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033310Z:f211880e-436d-4523-811c-5753484d5187" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.Storage/storageAccounts/acrstorage8899/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODg5OS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "acb62038-d116-4914-9aee-ed13afe86264" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"oFYeMKMGyEYzQYG/AjpRCZxxveTKFpTE2bbsyki3jDL3IOXMjZTLEQvUvn/NNnkQkLUvkXNtoVzR3u6ep3V8yA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"vfP++CetDaNFVwV/ZDaIupfBSNuf81RSXu3DP6xsIiRJBRrkrRc6WT3pP2ei2E/OXcg31SJQtLK5Ub/+mTxBtg==\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "56dbd2d1-1204-4de7-b515-fa9f5e747560" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "56dbd2d1-1204-4de7-b515-fa9f5e747560" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033310Z:56dbd2d1-1204-4de7-b515-fa9f5e747560" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.ContainerRegistry/registries/acrregistry8605?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODYwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8899\",\r\n \"accessKey\": \"oFYeMKMGyEYzQYG/AjpRCZxxveTKFpTE2bbsyki3jDL3IOXMjZTLEQvUvn/NNnkQkLUvkXNtoVzR3u6ep3V8yA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "324" - ], - "x-ms-client-request-id": [ - "a819f9b2-896a-427d-816d-da134a51771a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg3296/providers/Microsoft.ContainerRegistry/registries/acrregistry8605\",\r\n \"name\": \"acrregistry8605\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8605-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:33:12.6138877Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8899\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "417ab524-9e94-4ce2-9607-09d29a4677b3" - ], - "x-ms-correlation-request-id": [ - "417ab524-9e94-4ce2-9607-09d29a4677b3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033313Z:417ab524-9e94-4ce2-9607-09d29a4677b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.ContainerRegistry/registries/acrregistry8605/getCredentials?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODYwNS9nZXRDcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "633dde90-5963-46dd-aa5e-a79df21aeacb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"username\": \"acrregistry8605\",\r\n \"password\": \"/=l/Bj=d/O4//qB/iZx=yW+HB0BvAfVy\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "b627e38d-2d3a-40a4-a442-71559ed53301" - ], - "x-ms-correlation-request-id": [ - "b627e38d-2d3a-40a4-a442-71559ed53301" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033314Z:b627e38d-2d3a-40a4-a442-71559ed53301" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.ContainerRegistry/registries/acrregistry8605/regenerateCredentials?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODYwNS9yZWdlbmVyYXRlQ3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0wNi0yNy1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6eb8795-cfac-4929-8f1c-4e69fce87955" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"username\": \"acrregistry8605\",\r\n \"password\": \"P/yr/L0jvZ3lZxMt/qTyJGgaBVn48KHX\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "633e50d5-9f8e-45e0-9bbb-7df814c0a7d5" - ], - "x-ms-correlation-request-id": [ - "633e50d5-9f8e-45e0-9bbb-7df814c0a7d5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033314Z:633e50d5-9f8e-45e0-9bbb-7df814c0a7d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "CreateResourceGroup": [ - "acr_rg3296" - ], - "CreateStorageAccount": [ - "acrstorage8899" - ], - "ContainerRegistryRegenerateCredentialsTest": [ - "acrregistry8605" - ] - }, - "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateTest.json index cd2b97d76276..2633cb759a16 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6e00d85-e2c7-4208-b863-3f3613afc065" + "867e8947-6783-43b8-9483-3e526f4be40b" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:02 GMT" + "Thu, 16 Mar 2017 22:52:31 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14986" ], "x-ms-request-id": [ - "d95acf7a-5155-4560-ba84-869416ac075f" + "94e45637-2897-4c96-903a-c1cbd1fc483d" ], "x-ms-correlation-request-id": [ - "d95acf7a-5155-4560-ba84-869416ac075f" + "94e45637-2897-4c96-903a-c1cbd1fc483d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033602Z:d95acf7a-5155-4560-ba84-869416ac075f" + "CENTRALUS:20170316T225232Z:94e45637-2897-4c96-903a-c1cbd1fc483d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzYwMDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzUwNDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "80550743-1da7-4921-8132-7f12e8fe4dbb" + "245a2b4c-f0aa-42f9-b9ca-395776af1aac" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000\",\r\n \"name\": \"acr_rg6000\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043\",\r\n \"name\": \"acr_rg5043\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:02 GMT" + "Thu, 16 Mar 2017 22:52:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-request-id": [ - "934a9bb6-1f4f-4aee-ba94-5271019cd1e2" + "9773bfae-7ff8-498f-b4c8-76791b5aa3a3" ], "x-ms-correlation-request-id": [ - "934a9bb6-1f4f-4aee-ba94-5271019cd1e2" + "9773bfae-7ff8-498f-b4c8-76791b5aa3a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033602Z:934a9bb6-1f4f-4aee-ba94-5271019cd1e2" + "CENTRALUS:20170316T225233Z:9773bfae-7ff8-498f-b4c8-76791b5aa3a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage5445?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTQ0NT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage4157?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDE1Nz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "f0d2c2c6-b9f1-4a37-aff7-1c7ad07be743" + "8b95ddc1-a5d0-4b66-ba5c-773cbd7f293d" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:03 GMT" + "Thu, 16 Mar 2017 22:52:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/87103204-ca6a-4dde-a5bb-c970cc22d6b9?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/79595b7e-15a5-4551-bbe6-eb6bf2aefe74?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1193" ], "x-ms-request-id": [ - "c6d61268-9eab-4632-a544-610020863bd2" + "c12f0539-9f8a-4471-a9a2-8b72fde12dbb" ], "x-ms-correlation-request-id": [ - "c6d61268-9eab-4632-a544-610020863bd2" + "c12f0539-9f8a-4471-a9a2-8b72fde12dbb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033603Z:c6d61268-9eab-4632-a544-610020863bd2" + "CENTRALUS:20170316T225234Z:c12f0539-9f8a-4471-a9a2-8b72fde12dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/87103204-ca6a-4dde-a5bb-c970cc22d6b9?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzg3MTAzMjA0LWNhNmEtNGRkZS1hNWJiLWM5NzBjYzIyZDZiOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/79595b7e-15a5-4551-bbe6-eb6bf2aefe74?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzc5NTk1YjdlLTE1YTUtNDU1MS1iYmU2LWViNmJmMmFlZmU3ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage5445\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5445\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:36:03.4180873Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5445.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5445.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5445.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5445.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage4157\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage4157\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:52:34.5321114Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage4157.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage4157.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage4157.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage4157.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:33 GMT" + "Thu, 16 Mar 2017 22:53:04 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6879a83c-b4bc-47da-8562-83f39e5aaa28" + "6e3a2784-3bee-47b5-9dec-bf84aad3bdd2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14985" ], "x-ms-correlation-request-id": [ - "6879a83c-b4bc-47da-8562-83f39e5aaa28" + "6e3a2784-3bee-47b5-9dec-bf84aad3bdd2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033633Z:6879a83c-b4bc-47da-8562-83f39e5aaa28" + "CENTRALUS:20170316T225304Z:6e3a2784-3bee-47b5-9dec-bf84aad3bdd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage5445/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTQ0NS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage4157/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDE1Ny9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b2823a-f171-4a34-a79a-0680d343ecf0" + "67b80cc7-7078-4eec-94fa-76b46fa1a0da" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"Wokwj1C0Dzbdlisi3Ekz3qOBcUzaMT1ZRXDhsixv/gUqexj1KSkEt2B+E07L0n6jXO9nJXupzEAlxuEOCaRDIA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"MMcQIFXJBWeSaEylJp6CzOZWRcKKjyJy046nG++xw/xRk/5aQfgl7agpx3NzUlCL1TOVagUzsazrREfmMOpmTA==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"9bhNt87DdLdgaZ7096JMmv5Yi2TaJsniovbvQ+v83dnS5/F9SXuTrSfzpn4j1w0TFQF/rC2m0tL00hM+wQYGwA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"kztjPf+VNTsW0UAIX2VE1tbyCs/R+/38T8iWD0btzxsrQZWq+vswi9nA06ySz6t33VTPhCl3lROOXOZWBQtnHg==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:33 GMT" + "Thu, 16 Mar 2017 22:53:04 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4d402848-a685-43e8-bd7f-a5a837b63950" + "f210b42f-2903-48b9-90c4-e3aa646cb89f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1192" ], "x-ms-correlation-request-id": [ - "4d402848-a685-43e8-bd7f-a5a837b63950" + "f210b42f-2903-48b9-90c4-e3aa646cb89f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033633Z:4d402848-a685-43e8-bd7f-a5a837b63950" + "CENTRALUS:20170316T225304Z:f210b42f-2903-48b9-90c4-e3aa646cb89f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage7022?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNzAyMj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage8166?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODE2Nj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -315,7 +315,7 @@ "96" ], "x-ms-client-request-id": [ - "8ba88d22-497f-4de0-9bfb-a5b93f6b5be5" + "c4a342d2-1245-4b7d-99c0-86e969964d7b" ], "accept-language": [ "en-US" @@ -337,13 +337,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:33 GMT" + "Thu, 16 Mar 2017 22:53:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/26393c6b-cc13-4bc2-84fe-44055489d8f3?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/af8a6249-23dc-4aa8-8ed6-ad3471047460?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -353,16 +353,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1191" ], "x-ms-request-id": [ - "9aab5759-5ee5-47fc-b2c1-e489baab45d5" + "6b4fb9d2-eed3-4732-9be5-feca59f23a10" ], "x-ms-correlation-request-id": [ - "9aab5759-5ee5-47fc-b2c1-e489baab45d5" + "6b4fb9d2-eed3-4732-9be5-feca59f23a10" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033634Z:9aab5759-5ee5-47fc-b2c1-e489baab45d5" + "CENTRALUS:20170316T225305Z:6b4fb9d2-eed3-4732-9be5-feca59f23a10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -371,8 +371,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/26393c6b-cc13-4bc2-84fe-44055489d8f3?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI2MzkzYzZiLWNjMTMtNGJjMi04NGZlLTQ0MDU1NDg5ZDhmMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/af8a6249-23dc-4aa8-8ed6-ad3471047460?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2FmOGE2MjQ5LTIzZGMtNGFhOC04ZWQ2LWFkMzQ3MTA0NzQ2MD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -381,7 +381,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage7022\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage7022\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:36:34.1814082Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage7022.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage7022.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage7022.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage7022.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage8166\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage8166\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:53:05.7132655Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage8166.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage8166.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage8166.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage8166.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -393,7 +393,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:03 GMT" + "Thu, 16 Mar 2017 22:53:34 GMT" ], "Pragma": [ "no-cache" @@ -409,16 +409,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "70d11717-8759-4f02-a1f1-afde0505518a" + "a229b466-ed56-4798-bec2-27b067794dc8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14984" ], "x-ms-correlation-request-id": [ - "70d11717-8759-4f02-a1f1-afde0505518a" + "a229b466-ed56-4798-bec2-27b067794dc8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033704Z:70d11717-8759-4f02-a1f1-afde0505518a" + "CENTRALUS:20170316T225335Z:a229b466-ed56-4798-bec2-27b067794dc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,13 +427,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage7022/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNzAyMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage8166/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODE2Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e919fe0-79c2-4961-ae5f-e734777db737" + "21a832de-e2ec-4977-8983-ed08321525dc" ], "accept-language": [ "en-US" @@ -443,7 +443,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"rKJA+gDKgZOrGV7hcs1qhCUzsPbSWhI3DbTS9biK/6W0tq90kLqs68n8vDYkJu/PJv1snkTtRcnTmQmyqcUs1A==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"XRtz9FN/AVvGcMTC1xHTjXizDmO6l91ZVL03XRuJXxV1+RC5P8xmml0h28bmWoszbB6J+0mzyPshZ1p/Ek2VBA==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"dFTFkScyPclsrr6A38Jh63b5Xp+HvbYUARSCIyeicR21wb102wAYiB56SdHuOdlu/LtHBKy7ExuoWBtCH4RLaQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"fprEc7QQilhgljeRzpeIwGq1Hk2RT7/JIckos588ja8WiSyNwVoHmJ+IqkxdHv1xB8wps/R1PsqC59hpA3PdmA==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -455,7 +455,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:03 GMT" + "Thu, 16 Mar 2017 22:53:35 GMT" ], "Pragma": [ "no-cache" @@ -471,16 +471,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d6c78846-dd90-4feb-8650-7ce6a7aaa8ed" + "6d5da9e3-430d-48ae-9ac1-f1f7513b8fa4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1190" ], "x-ms-correlation-request-id": [ - "d6c78846-dd90-4feb-8650-7ce6a7aaa8ed" + "6d5da9e3-430d-48ae-9ac1-f1f7513b8fa4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033704Z:d6c78846-dd90-4feb-8650-7ce6a7aaa8ed" + "CENTRALUS:20170316T225335Z:6d5da9e3-430d-48ae-9ac1-f1f7513b8fa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,29 +489,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\",\r\n \"accessKey\": \"Wokwj1C0Dzbdlisi3Ekz3qOBcUzaMT1ZRXDhsixv/gUqexj1KSkEt2B+E07L0n6jXO9nJXupzEAlxuEOCaRDIA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\",\r\n \"accessKey\": \"9bhNt87DdLdgaZ7096JMmv5Yi2TaJsniovbvQ+v83dnS5/F9SXuTrSfzpn4j1w0TFQF/rC2m0tL00hM+wQYGwA==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "1dba6fb7-ed72-402c-ab09-562f855dc0fc" + "194e6fd4-b8dc-4e4c-a902-10b137e0c716" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:06.1928615Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:38.2330036Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -523,7 +523,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:06 GMT" + "Thu, 16 Mar 2017 22:53:38 GMT" ], "Pragma": [ "no-cache" @@ -532,38 +532,32 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1189" ], "x-ms-request-id": [ - "b92d5105-5a49-4564-9829-b138f6d29c54" + "43c40b84-0778-4aac-a4f8-2fbc11366414" ], "x-ms-correlation-request-id": [ - "b92d5105-5a49-4564-9829-b138f6d29c54" + "43c40b84-0778-4aac-a4f8-2fbc11366414" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033707Z:b92d5105-5a49-4564-9829-b138f6d29c54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225339Z:43c40b84-0778-4aac-a4f8-2fbc11366414" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true\r\n }\r\n}", "RequestHeaders": { @@ -574,17 +568,17 @@ "58" ], "x-ms-client-request-id": [ - "37161ead-e576-4983-a55e-7b0b405574f0" + "4319fce5-2e9d-4441-bc22-39871997580e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:06.8422464Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:39.6364043Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -596,7 +590,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:06 GMT" + "Thu, 16 Mar 2017 22:53:39 GMT" ], "Pragma": [ "no-cache" @@ -605,38 +599,32 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1188" ], "x-ms-request-id": [ - "7ce2c74d-fb77-4afe-9926-76d519410250" + "d63229d2-e79a-45fb-945c-d6ef160d4cf0" ], "x-ms-correlation-request-id": [ - "7ce2c74d-fb77-4afe-9926-76d519410250" + "d63229d2-e79a-45fb-945c-d6ef160d4cf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033707Z:7ce2c74d-fb77-4afe-9926-76d519410250" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225339Z:d63229d2-e79a-45fb-945c-d6ef160d4cf0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", "RequestHeaders": { @@ -647,17 +635,17 @@ "90" ], "x-ms-client-request-id": [ - "aca61a99-5be6-42f3-8172-8812be2f4dad" + "1fb96481-4c54-4725-b4ba-909fa6e374df" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:07.2855916Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:40.3335375Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -669,7 +657,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:08 GMT" + "Thu, 16 Mar 2017 22:53:39 GMT" ], "Pragma": [ "no-cache" @@ -678,40 +666,34 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1187" ], "x-ms-request-id": [ - "9259319e-3b4f-4a6b-a60e-774e728d3a0d" + "28e91691-3728-4524-8d7e-cd5b005e0641" ], "x-ms-correlation-request-id": [ - "9259319e-3b4f-4a6b-a60e-774e728d3a0d" + "28e91691-3728-4524-8d7e-cd5b005e0641" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033708Z:9259319e-3b4f-4a6b-a60e-774e728d3a0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225340Z:28e91691-3728-4524-8d7e-cd5b005e0641" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage7022\",\r\n \"accessKey\": \"rKJA+gDKgZOrGV7hcs1qhCUzsPbSWhI3DbTS9biK/6W0tq90kLqs68n8vDYkJu/PJv1snkTtRcnTmQmyqcUs1A==\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8166\",\r\n \"accessKey\": \"dFTFkScyPclsrr6A38Jh63b5Xp+HvbYUARSCIyeicR21wb102wAYiB56SdHuOdlu/LtHBKy7ExuoWBtCH4RLaQ==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -720,17 +702,17 @@ "204" ], "x-ms-client-request-id": [ - "c29953c6-1129-4390-a960-da93648223d0" + "672efab8-04f4-4193-885c-a4dffb6ec6ac" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:08.1842306Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage7022\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:40.7318181Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8166\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -742,7 +724,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:09 GMT" + "Thu, 16 Mar 2017 22:53:40 GMT" ], "Pragma": [ "no-cache" @@ -751,53 +733,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1186" ], "x-ms-request-id": [ - "8cd59b8b-a1b1-4159-a8e1-41a102534ad6" + "e1897ab9-c32c-4276-b4d5-72158e174d8b" ], "x-ms-correlation-request-id": [ - "8cd59b8b-a1b1-4159-a8e1-41a102534ad6" + "e1897ab9-c32c-4276-b4d5-72158e174d8b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033710Z:8cd59b8b-a1b1-4159-a8e1-41a102534ad6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225341Z:e1897ab9-c32c-4276-b4d5-72158e174d8b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d3c9657-5c16-4cdd-a000-ccad19f149b3" + "7c0393d3-3fce-4ce8-8527-6cb3c457d855" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:07.2855916Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:40.3335375Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -809,7 +785,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:07 GMT" + "Thu, 16 Mar 2017 22:53:39 GMT" ], "Pragma": [ "no-cache" @@ -818,53 +794,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14983" ], "x-ms-request-id": [ - "1edeac8a-2cf2-4d8b-969e-42fb84a5c428" + "c1572aac-bed8-424a-9132-eaa0b46c81f9" ], "x-ms-correlation-request-id": [ - "1edeac8a-2cf2-4d8b-969e-42fb84a5c428" + "c1572aac-bed8-424a-9132-eaa0b46c81f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033708Z:1edeac8a-2cf2-4d8b-969e-42fb84a5c428" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225340Z:c1572aac-bed8-424a-9132-eaa0b46c81f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f333765-bf6d-4a6b-8450-bb74ca3e0cd3" + "ff52fe0d-8b1a-4760-b824-536cc41c73cf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:08.1842306Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:40.7318181Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +846,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:08 GMT" + "Thu, 16 Mar 2017 22:53:40 GMT" ], "Pragma": [ "no-cache" @@ -885,53 +855,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14982" ], "x-ms-request-id": [ - "c8180fdc-4a43-475b-b348-c88e0458a94a" + "badb73fe-7184-4608-8086-805dffb5e9d6" ], "x-ms-correlation-request-id": [ - "c8180fdc-4a43-475b-b348-c88e0458a94a" + "badb73fe-7184-4608-8086-805dffb5e9d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033709Z:c8180fdc-4a43-475b-b348-c88e0458a94a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225340Z:badb73fe-7184-4608-8086-805dffb5e9d6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "900c2165-749e-4f46-bdde-71f76e2617dd" + "47c4b517-a846-4b77-a52a-23ada037e93b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:10.082581Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage7022\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:41.6154453Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8166\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -943,7 +907,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:09 GMT" + "Thu, 16 Mar 2017 22:53:40 GMT" ], "Pragma": [ "no-cache" @@ -952,31 +916,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14981" ], "x-ms-request-id": [ - "adcfd1ad-a4fa-4085-ad4f-78c4f9b53889" + "e2be2807-a8bb-4b10-9689-6798e3de57db" ], "x-ms-correlation-request-id": [ - "adcfd1ad-a4fa-4085-ad4f-78c4f9b53889" + "e2be2807-a8bb-4b10-9689-6798e3de57db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033710Z:adcfd1ad-a4fa-4085-ad4f-78c4f9b53889" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225341Z:e2be2807-a8bb-4b10-9689-6798e3de57db" ] }, "StatusCode": 200 @@ -984,17 +942,17 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg6000" + "acr_rg5043" ], "CreateStorageAccount": [ - "acrstorage5445", - "acrstorage7022" + "acrstorage4157", + "acrstorage8166" ], "CreateContainerRegistry": [ - "acrregistry8100" + "acrregistry1087" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateWithCreateTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateWithCreateTest.json deleted file mode 100644 index 28a3e9b66d07..000000000000 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateWithCreateTest.json +++ /dev/null @@ -1,1183 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2aac2611-dc10-43b2-9d13-518b54a28153" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], - "x-ms-request-id": [ - "41e688a9-29b4-4225-a5db-72442c92bdae" - ], - "x-ms-correlation-request-id": [ - "41e688a9-29b4-4225-a5db-72442c92bdae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033122Z:41e688a9-29b4-4225-a5db-72442c92bdae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d984cd6-ed6f-45af-bbe4-9ff2413af7cc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" - ], - "x-ms-request-id": [ - "0c7b308e-7e64-47ba-9d5f-c071c4f34422" - ], - "x-ms-correlation-request-id": [ - "0c7b308e-7e64-47ba-9d5f-c071c4f34422" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033230Z:0c7b308e-7e64-47ba-9d5f-c071c4f34422" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzIzNTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "36573522-6ab1-42b0-82f3-592037206de4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353\",\r\n \"name\": \"acr_rg2353\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], - "x-ms-request-id": [ - "ebafcb2c-c176-4dc7-b9ae-c24dddd2d509" - ], - "x-ms-correlation-request-id": [ - "ebafcb2c-c176-4dc7-b9ae-c24dddd2d509" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033122Z:ebafcb2c-c176-4dc7-b9ae-c24dddd2d509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6138?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjEzOD9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ], - "x-ms-client-request-id": [ - "c77f7ff2-a010-43b2-9450-da705bf00d50" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/46235b35-8b66-4e2e-b1a7-b18b0a818368?monitor=true&api-version=2016-01-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-request-id": [ - "92dd6404-0872-4505-be80-e53f3a405bf0" - ], - "x-ms-correlation-request-id": [ - "92dd6404-0872-4505-be80-e53f3a405bf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033123Z:92dd6404-0872-4505-be80-e53f3a405bf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/46235b35-8b66-4e2e-b1a7-b18b0a818368?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ2MjM1YjM1LThiNjYtNGUyZS1iMWE3LWIxOGIwYTgxODM2OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6138\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage6138\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:31:23.3150138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage6138.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage6138.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage6138.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage6138.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "37d1d21e-3575-48c0-9c95-cb6490561d2d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" - ], - "x-ms-correlation-request-id": [ - "37d1d21e-3575-48c0-9c95-cb6490561d2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033153Z:37d1d21e-3575-48c0-9c95-cb6490561d2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6138/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjEzOC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e624321-cdc4-43d8-bc44-49c8a7786f8f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"/IGp8GBGaZ+77lgUmqph4SJJdrT0Bg3R1wMT6dC0T8Dm+Dnjg3uDW309pVIQSJMZw3aL8S2NovGUAkiY0iClUA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"no3U/PgRqgL8MIysB8WGRRYuU8m/dW4PpguqXMy/CSrJ546RwpuKDYaBmE5wTQ5VyXE75ee0vSmd7jfi1xnzXw==\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "b0a0423f-a821-492d-b720-99b7045feac7" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-correlation-request-id": [ - "b0a0423f-a821-492d-b720-99b7045feac7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033153Z:b0a0423f-a821-492d-b720-99b7045feac7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6419?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjQxOT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ], - "x-ms-client-request-id": [ - "623f9443-cf8f-4948-9b26-66fca66a5179" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/8f8f5599-a6ba-4765-b637-ef3c2f2004ec?monitor=true&api-version=2016-01-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" - ], - "x-ms-request-id": [ - "5477b33f-3bac-431c-87cf-fce9a40641c7" - ], - "x-ms-correlation-request-id": [ - "5477b33f-3bac-431c-87cf-fce9a40641c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033154Z:5477b33f-3bac-431c-87cf-fce9a40641c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/8f8f5599-a6ba-4765-b637-ef3c2f2004ec?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhmOGY1NTk5LWE2YmEtNDc2NS1iNjM3LWVmM2MyZjIwMDRlYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6419\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage6419\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:31:54.3552836Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage6419.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage6419.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage6419.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage6419.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9a364be6-9f47-430b-977c-bdeef6fd9dee" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" - ], - "x-ms-correlation-request-id": [ - "9a364be6-9f47-430b-977c-bdeef6fd9dee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033224Z:9a364be6-9f47-430b-977c-bdeef6fd9dee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6419/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjQxOS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "03af7e60-8dc0-4120-8123-b00fa07b7eae" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"Fp0UlFefutFC57Zh0uS2ubvDXrVbxwTVm2S+iwawqa8oqmoGbCKa+zZ4CWgtCRyk2HTUGuAwYLtpKX3oAwP0Iw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"ePyhKlX+vM2WvLku4pZQYwtX8JPNYc7bcevlSjeaTzaZ/6WSbVz0XuMIts7jZtzVG7aQmm+YXAeRGaFTKxTEwg==\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c428d746-410a-4611-bd5a-de1464e8e067" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" - ], - "x-ms-correlation-request-id": [ - "c428d746-410a-4611-bd5a-de1464e8e067" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033224Z:c428d746-410a-4611-bd5a-de1464e8e067" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\",\r\n \"accessKey\": \"/IGp8GBGaZ+77lgUmqph4SJJdrT0Bg3R1wMT6dC0T8Dm+Dnjg3uDW309pVIQSJMZw3aL8S2NovGUAkiY0iClUA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "293" - ], - "x-ms-client-request-id": [ - "934e4f52-79e3-4610-95ae-ef53585a850b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:27.1010595Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" - ], - "x-ms-request-id": [ - "bc34707e-a7cb-4189-baf4-c634e4380b5b" - ], - "x-ms-correlation-request-id": [ - "bc34707e-a7cb-4189-baf4-c634e4380b5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033228Z:bc34707e-a7cb-4189-baf4-c634e4380b5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\",\r\n \"accessKey\": \"/IGp8GBGaZ+77lgUmqph4SJJdrT0Bg3R1wMT6dC0T8Dm+Dnjg3uDW309pVIQSJMZw3aL8S2NovGUAkiY0iClUA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "324" - ], - "x-ms-client-request-id": [ - "beed6f75-27e5-4388-b008-355c7f4c3569" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:27.9774909Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" - ], - "x-ms-request-id": [ - "316b4cae-15e0-4161-a7d4-c76a1cd4362e" - ], - "x-ms-correlation-request-id": [ - "316b4cae-15e0-4161-a7d4-c76a1cd4362e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033228Z:316b4cae-15e0-4161-a7d4-c76a1cd4362e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\",\r\n \"accessKey\": \"/IGp8GBGaZ+77lgUmqph4SJJdrT0Bg3R1wMT6dC0T8Dm+Dnjg3uDW309pVIQSJMZw3aL8S2NovGUAkiY0iClUA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "347" - ], - "x-ms-client-request-id": [ - "f1777dfe-0067-4188-9bc6-dee82e407e3c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:28.4803301Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" - ], - "x-ms-request-id": [ - "77caf0ca-61c9-46f6-834b-68e4e946a6aa" - ], - "x-ms-correlation-request-id": [ - "77caf0ca-61c9-46f6-834b-68e4e946a6aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033229Z:77caf0ca-61c9-46f6-834b-68e4e946a6aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6419\",\r\n \"accessKey\": \"Fp0UlFefutFC57Zh0uS2ubvDXrVbxwTVm2S+iwawqa8oqmoGbCKa+zZ4CWgtCRyk2HTUGuAwYLtpKX3oAwP0Iw==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "347" - ], - "x-ms-client-request-id": [ - "7c705bd5-bd86-40e3-b679-f28d08f32e83" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:29.0147109Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6419\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" - ], - "x-ms-request-id": [ - "f8ea302a-dc01-4a4f-83de-d7c3e0220875" - ], - "x-ms-correlation-request-id": [ - "f8ea302a-dc01-4a4f-83de-d7c3e0220875" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033230Z:f8ea302a-dc01-4a4f-83de-d7c3e0220875" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6419\",\r\n \"accessKey\": \"Fp0UlFefutFC57Zh0uS2ubvDXrVbxwTVm2S+iwawqa8oqmoGbCKa+zZ4CWgtCRyk2HTUGuAwYLtpKX3oAwP0Iw==\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "347" - ], - "x-ms-client-request-id": [ - "50c3b008-d69a-4487-979d-fe083c728d4b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceLocation\",\r\n \"message\": \"The resource 'acrregistry1001' already exists in location 'westus' in resource group 'acr_rg2353'. A resource with the same name cannot be created in location 'eastus'. Please select a new resource name.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "260" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "50658b55-3f97-460d-bd50-954cd4d37822" - ], - "x-ms-correlation-request-id": [ - "50658b55-3f97-460d-bd50-954cd4d37822" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033230Z:50658b55-3f97-460d-bd50-954cd4d37822" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 409 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a0c7aaa8-7361-49ba-9099-f086bbac5da3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:27.9774909Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" - ], - "x-ms-request-id": [ - "ef6386a8-f6fa-479a-9ff2-5217050a0c72" - ], - "x-ms-correlation-request-id": [ - "ef6386a8-f6fa-479a-9ff2-5217050a0c72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033228Z:ef6386a8-f6fa-479a-9ff2-5217050a0c72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3b55e98-e316-44bb-998b-05fc04ee04e3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:28.4803301Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" - ], - "x-ms-request-id": [ - "5cc34b64-462e-4cf5-8ad9-ff2c89ea4b03" - ], - "x-ms-correlation-request-id": [ - "5cc34b64-462e-4cf5-8ad9-ff2c89ea4b03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033228Z:5cc34b64-462e-4cf5-8ad9-ff2c89ea4b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "748fea59-f6d2-4787-b9bc-e57c7e93704f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:29.0147109Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" - ], - "x-ms-request-id": [ - "95ad94ef-851d-47cf-ac76-2f43465b972a" - ], - "x-ms-correlation-request-id": [ - "95ad94ef-851d-47cf-ac76-2f43465b972a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033229Z:95ad94ef-851d-47cf-ac76-2f43465b972a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8dfc9ab7-fb3b-47df-9ab3-f48e6512e882" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:30.0134203Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6419\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" - ], - "x-ms-request-id": [ - "99de7365-0a0b-4ca1-894f-c9665701f00e" - ], - "x-ms-correlation-request-id": [ - "99de7365-0a0b-4ca1-894f-c9665701f00e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033230Z:99de7365-0a0b-4ca1-894f-c9665701f00e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "CreateResourceGroup": [ - "acr_rg2353" - ], - "CreateStorageAccount": [ - "acrstorage6138", - "acrstorage6419" - ], - "CreateContainerRegistry": [ - "acrregistry1001" - ] - }, - "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Tests/ContainerRegistryTests.cs b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Tests/ContainerRegistryTests.cs index 0d515cf10aec..0a5361652236 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Tests/ContainerRegistryTests.cs +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Tests/ContainerRegistryTests.cs @@ -41,13 +41,12 @@ public void ContainerRegistryCheckNameTest() Assert.Null(checkNameRequest.Reason); Assert.Null(checkNameRequest.Message); - // Check invalid name - registryName = "CAPS"; + // Check disallowed name + registryName = "Microsoft"; checkNameRequest = registryClient.Registries.CheckNameAvailability(registryName); Assert.False(checkNameRequest.NameAvailable); Assert.Equal("Invalid", checkNameRequest.Reason); - Assert.Equal("Registry names may contain alpha numeric characters only and must be between 5 and 50 characters", - checkNameRequest.Message); + Assert.Equal("The specified registry name is disallowed", checkNameRequest.Message); // Check name of container registry that already exists registryName = ContainerRegistryTestUtilities.CreateContainerRegistry(registryClient, resourceGroup, storageName, storageKey); @@ -76,16 +75,20 @@ public void ContainerRegistryCreateTest() // Create container registry string registryName = TestUtilities.GenerateName("acrregistry"); - Registry registryProperties = ContainerRegistryTestUtilities.GetDefaultRegistryProperties(resourceGroup, storageName, storageKey); - Registry registry = registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); + RegistryCreateParameters parameters = ContainerRegistryTestUtilities.GetDefaultRegistryCreateParameters(resourceGroup, storageName, storageKey); + Registry registry = registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); ContainerRegistryTestUtilities.VerifyRegistryProperties(registry, storageName, true); // Create container registry with optional parameters registryName = TestUtilities.GenerateName("acrregistry"); - registryProperties = new Registry + parameters = new RegistryCreateParameters { Location = resourceGroup.Location, - StorageAccount = new StorageAccountProperties + Sku = new Microsoft.Azure.Management.ContainerRegistry.Models.Sku + { + Name = "Basic" + }, + StorageAccount = new StorageAccountParameters { Name = storageName, AccessKey = storageKey @@ -93,7 +96,7 @@ public void ContainerRegistryCreateTest() Tags = ContainerRegistryTestUtilities.DefaultTags, AdminUserEnabled = true }; - registry = registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); + registry = registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); ContainerRegistryTestUtilities.VerifyRegistryProperties(registry, storageName, false); Assert.True(registry.AdminUserEnabled); } @@ -179,21 +182,21 @@ public void ContainerRegistryGetTest() string storageKey = ContainerRegistryTestUtilities.GetStorageAccessKey(storageClient, resourceGroup, storageName); // Get default registry properties - Registry registryProperties = ContainerRegistryTestUtilities.GetDefaultRegistryProperties(resourceGroup, storageName, storageKey); + RegistryCreateParameters parameters = ContainerRegistryTestUtilities.GetDefaultRegistryCreateParameters(resourceGroup, storageName, storageKey); // Create container registry with admin enabled string registryName = TestUtilities.GenerateName("acrregistry"); - registryProperties.AdminUserEnabled = true; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - Registry registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + parameters.AdminUserEnabled = true; + registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); + Registry registry = registryClient.Registries.Get(resourceGroup.Name, registryName); ContainerRegistryTestUtilities.VerifyRegistryProperties(registry, storageName, false); Assert.True(registry.AdminUserEnabled); // Create container registry with admin disabled registryName = TestUtilities.GenerateName("acrregistry"); - registryProperties.AdminUserEnabled = false; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + parameters.AdminUserEnabled = false; + registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); + registry = registryClient.Registries.Get(resourceGroup.Name, registryName); ContainerRegistryTestUtilities.VerifyRegistryProperties(registry, storageName, true); } } @@ -229,7 +232,7 @@ public void ContainerRegistryUpdateTest() registryClient.Registries.Update(resourceGroup.Name, registryName, registryUpdateParameters); // Validate - Registry registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + Registry registry = registryClient.Registries.Get(resourceGroup.Name, registryName); Assert.True(registry.AdminUserEnabled); // Update tags @@ -245,7 +248,7 @@ public void ContainerRegistryUpdateTest() registryClient.Registries.Update(resourceGroup.Name, registryName, registryUpdateParameters); // Validate - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + registry = registryClient.Registries.Get(resourceGroup.Name, registryName); Assert.Equal(registry.Tags.Count, registryUpdateParameters.Tags.Count); Assert.Equal(registry.Tags["key2"], "value2"); Assert.Equal(registry.Tags["key3"], "value3"); @@ -254,7 +257,7 @@ public void ContainerRegistryUpdateTest() // Update storage account registryUpdateParameters = new RegistryUpdateParameters { - StorageAccount = new StorageAccountProperties + StorageAccount = new StorageAccountParameters { Name = storageName2, AccessKey = storageKey2 @@ -263,90 +266,13 @@ public void ContainerRegistryUpdateTest() registryClient.Registries.Update(resourceGroup.Name, registryName, registryUpdateParameters); // Validate - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); - Assert.Equal(registry.StorageAccount.Name, storageName2); - } - } - - [Fact] - public void ContainerRegistryUpdateWithCreateTest() - { - var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - - using (MockContext context = MockContext.Start(this.GetType().FullName)) - { - var resourceClient = ContainerRegistryTestUtilities.GetResourceManagementClient(context, handler); - var storageClient = ContainerRegistryTestUtilities.GetStorageManagementClient(context, handler); - var registryClient = ContainerRegistryTestUtilities.GetContainerRegistryManagementClient(context, handler); - - // Create resource group and storage account - ResourceGroup resourceGroup = ContainerRegistryTestUtilities.CreateResourceGroup(resourceClient); - string storageName1 = ContainerRegistryTestUtilities.CreateStorageAccount(storageClient, resourceGroup); - string storageKey1 = ContainerRegistryTestUtilities.GetStorageAccessKey(storageClient, resourceGroup, storageName1); - - // Create a different storage account - string storageName2 = ContainerRegistryTestUtilities.CreateStorageAccount(storageClient, resourceGroup); - string storageKey2 = ContainerRegistryTestUtilities.GetStorageAccessKey(storageClient, resourceGroup, storageName2); - - // Create container registry - string registryName = ContainerRegistryTestUtilities.CreateContainerRegistry(registryClient, resourceGroup, storageName1, storageKey1); - Registry registryProperties = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); - - // Enable admin - registryProperties.AdminUserEnabled = true; - registryProperties.StorageAccount.AccessKey = storageKey1; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - - // Validate - Registry registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); - Assert.True(registry.AdminUserEnabled); - - // Update tags - registryProperties.Tags = new Dictionary - { - { "key2","value2" }, - { "key3","value3" }, - { "key4","value4" } - }; - registryProperties.StorageAccount.AccessKey = storageKey1; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - - // Validate - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); - Assert.Equal(registry.Tags.Count, registryProperties.Tags.Count); - Assert.Equal(registry.Tags["key2"], "value2"); - Assert.Equal(registry.Tags["key3"], "value3"); - Assert.Equal(registry.Tags["key4"], "value4"); - - // Update storage account - registryProperties.StorageAccount = new StorageAccountProperties - { - Name = storageName2, - AccessKey = storageKey2 - }; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - - // Validate - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + registry = registryClient.Registries.Get(resourceGroup.Name, registryName); Assert.Equal(registry.StorageAccount.Name, storageName2); - - // Update location should fail - registryProperties.Location = ContainerRegistryTestUtilities.GetNonDefaultRegistryLocation(resourceClient); - try - { - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - Assert.True(false); - } - catch (CloudException ex) - { - Assert.NotNull(ex); - Assert.Equal(HttpStatusCode.Conflict, ex.Response.StatusCode); - } } } [Fact] - public void ContainerRegistryGetCredentialsTest() + public void ContainerRegistryListCredentialsTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; @@ -367,7 +293,7 @@ public void ContainerRegistryGetCredentialsTest() // Get credentials should fail when admin is disabled try { - registryClient.Registries.GetCredentials(resourceGroup.Name, registryName); + registryClient.Registries.ListCredentials(resourceGroup.Name, registryName); Assert.True(false); } catch (CloudException ex) @@ -383,19 +309,22 @@ public void ContainerRegistryGetCredentialsTest() }; registryClient.Registries.Update(resourceGroup.Name, registryName, registryUpdateParameters); - RegistryCredentials credentials = registryClient.Registries.GetCredentials(resourceGroup.Name, registryName); + RegistryListCredentialsResult credentials = registryClient.Registries.ListCredentials(resourceGroup.Name, registryName); Assert.NotNull(credentials); // Validate username and password string username = credentials.Username; - string password = credentials.Password; + Assert.True(credentials.Passwords.Count > 1); + string password1 = credentials.Passwords[0].Value; + string password2 = credentials.Passwords[1].Value; Assert.NotNull(username); - Assert.NotNull(password); + Assert.NotNull(password1); + Assert.NotNull(password2); } } [Fact] - public void ContainerRegistryRegenerateCredentialsTest() + public void ContainerRegistryRegenerateCredentialTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; @@ -411,31 +340,55 @@ public void ContainerRegistryRegenerateCredentialsTest() string storageKey = ContainerRegistryTestUtilities.GetStorageAccessKey(storageClient, resourceGroup, storageName); string registryName = TestUtilities.GenerateName("acrregistry"); - Registry registryProperties = ContainerRegistryTestUtilities.GetDefaultRegistryProperties(resourceGroup, storageName, storageKey); - registryProperties.AdminUserEnabled = true; - Registry registry = registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); + RegistryCreateParameters parameters = ContainerRegistryTestUtilities.GetDefaultRegistryCreateParameters(resourceGroup, storageName, storageKey); + parameters.AdminUserEnabled = true; + Registry registry = registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); - RegistryCredentials credentials = registryClient.Registries.GetCredentials(resourceGroup.Name, registryName); + RegistryListCredentialsResult credentials = registryClient.Registries.ListCredentials(resourceGroup.Name, registryName); Assert.NotNull(credentials); // Validate username and password - string username1 = credentials.Username; - string password1 = credentials.Password; - Assert.NotNull(username1); - Assert.NotNull(password1); + string username_1 = credentials.Username; + Assert.True(credentials.Passwords.Count > 1); + string password1_1 = credentials.Passwords[0].Value; + string password2_1 = credentials.Passwords[1].Value; + Assert.NotNull(username_1); + Assert.NotNull(password1_1); + Assert.NotNull(password2_1); + + credentials = registryClient.Registries.RegenerateCredential(resourceGroup.Name, registryName, PasswordName.Password); + Assert.NotNull(credentials); + + // Validate username and password + string username_2 = credentials.Username; + Assert.True(credentials.Passwords.Count > 1); + string password1_2 = credentials.Passwords[0].Value; + string password2_2 = credentials.Passwords[1].Value; + Assert.NotNull(username_2); + Assert.NotNull(password1_2); + Assert.NotNull(password2_2); - credentials = registryClient.Registries.RegenerateCredentials(resourceGroup.Name, registryName); + // Validate if generated password is different + Assert.Equal(username_1, username_2); + Assert.NotEqual(password1_1, password1_2); + Assert.Equal(password2_1, password2_2); + + credentials = registryClient.Registries.RegenerateCredential(resourceGroup.Name, registryName, PasswordName.Password2); Assert.NotNull(credentials); - // Validate regenerated username and password - string username2 = credentials.Username; - string password2 = credentials.Password; - Assert.NotNull(username2); - Assert.NotNull(password2); + // Validate username and password + string username_3 = credentials.Username; + Assert.True(credentials.Passwords.Count > 1); + string password1_3 = credentials.Passwords[0].Value; + string password2_3 = credentials.Passwords[1].Value; + Assert.NotNull(username_2); + Assert.NotNull(password1_2); + Assert.NotNull(password2_2); // Validate if generated password is different - Assert.Equal(username1, username2); - Assert.NotEqual(password1, password2); + Assert.Equal(username_2, username_3); + Assert.Equal(password1_2, password1_3); + Assert.NotEqual(password2_2, password2_3); } } diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/ContainerRegistryManagementClient.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/ContainerRegistryManagementClient.cs index 382b1224e849..56ba592f51c2 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/ContainerRegistryManagementClient.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/ContainerRegistryManagementClient.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Serialization; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; - public partial class ContainerRegistryManagementClient : Microsoft.Rest.ServiceClient, IContainerRegistryManagementClient, IAzureClient + public partial class ContainerRegistryManagementClient : ServiceClient, IContainerRegistryManagementClient, IAzureClient { /// /// The base URI of the service. @@ -23,17 +31,17 @@ public partial class ContainerRegistryManagementClient : Microsoft.Rest.ServiceC /// /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. /// - public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// /// The Microsoft Azure subscription ID. @@ -67,6 +75,11 @@ public partial class ContainerRegistryManagementClient : Microsoft.Rest.ServiceC /// public virtual IRegistriesOperations Registries { get; private set; } + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + /// /// Initializes a new instance of the ContainerRegistryManagementClient class. /// @@ -75,7 +88,7 @@ public partial class ContainerRegistryManagementClient : Microsoft.Rest.ServiceC /// protected ContainerRegistryManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -89,7 +102,7 @@ protected ContainerRegistryManagementClient(params System.Net.Http.DelegatingHan /// protected ContainerRegistryManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -110,7 +123,7 @@ protected ContainerRegistryManagementClient(System.Uri baseUri, params System.Ne { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -134,7 +147,7 @@ protected ContainerRegistryManagementClient(System.Uri baseUri, System.Net.Http. { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -149,16 +162,16 @@ protected ContainerRegistryManagementClient(System.Uri baseUri, System.Net.Http. /// /// Thrown when a required parameter is null /// - public ContainerRegistryManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public ContainerRegistryManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -177,16 +190,16 @@ public ContainerRegistryManagementClient(Microsoft.Rest.ServiceClientCredentials /// /// Thrown when a required parameter is null /// - public ContainerRegistryManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public ContainerRegistryManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -205,7 +218,7 @@ public ContainerRegistryManagementClient(Microsoft.Rest.ServiceClientCredentials /// /// Thrown when a required parameter is null /// - public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public ContainerRegistryManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -215,11 +228,11 @@ public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.Serv { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -241,7 +254,7 @@ public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.Serv /// /// Thrown when a required parameter is null /// - public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public ContainerRegistryManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -251,11 +264,11 @@ public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.Serv { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -268,41 +281,43 @@ public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.Serv /// private void Initialize() { - this.Registries = new RegistriesOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.ApiVersion = "2016-06-27-preview"; - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + Registries = new RegistriesOperations(this); + Operations = new Operations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2017-03-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings { - Formatting = Newtonsoft.Json.Formatting.Indented, - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings { - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; CustomInitialize(); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IContainerRegistryManagementClient.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IContainerRegistryManagementClient.cs index 124a098b58be..1c2fb24cbb56 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IContainerRegistryManagementClient.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IContainerRegistryManagementClient.cs @@ -1,16 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; /// /// @@ -24,17 +27,17 @@ public partial interface IContainerRegistryManagementClient : System.IDisposable /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. /// - Microsoft.Rest.ServiceClientCredentials Credentials { get; } + ServiceClientCredentials Credentials { get; } /// /// The Microsoft Azure subscription ID. @@ -58,8 +61,8 @@ public partial interface IContainerRegistryManagementClient : System.IDisposable int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } @@ -69,5 +72,11 @@ public partial interface IContainerRegistryManagementClient : System.IDisposable /// IRegistriesOperations Registries { get; } + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IOperations.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IOperations.cs new file mode 100644 index 000000000000..fe492faa736b --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IOperations.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available Azure Container Registry REST API + /// operations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available Azure Container Registry REST API + /// operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IRegistriesOperations.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IRegistriesOperations.cs index 236cec3205d4..f6bd71c4c17b 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IRegistriesOperations.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IRegistriesOperations.cs @@ -1,15 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// RegistriesOperations operations. @@ -39,7 +46,7 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the properties of the specified container registry. /// @@ -65,10 +72,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetPropertiesWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates or updates a container registry with the specified - /// parameters. + /// Creates a container registry with the specified parameters. /// /// /// The name of the resource group to which the container registry @@ -77,8 +83,8 @@ public partial interface IRegistriesOperations /// /// The name of the container registry. /// - /// - /// The parameters for creating or updating a container registry. + /// + /// The parameters for creating a container registry. /// /// /// The headers that will be added to request. @@ -95,7 +101,7 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, Registry registry, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a container registry. /// @@ -118,7 +124,7 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates a container registry with the specified parameters. /// @@ -147,10 +153,10 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the available container registries under the specified - /// resource group. + /// Lists all the container registries under the specified resource + /// group. /// /// /// The name of the resource group to which the container registry @@ -171,9 +177,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the available container registries under the specified + /// Lists all the container registries under the specified /// subscription. /// /// @@ -191,10 +197,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the administrator login credentials for the specified - /// container registry. + /// Lists the login credentials for the specified container registry. /// /// /// The name of the resource group to which the container registry @@ -218,9 +223,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> ListCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Regenerates the administrator login credentials for the specified + /// Regenerates one of the login credentials for the specified /// container registry. /// /// @@ -230,6 +235,11 @@ public partial interface IRegistriesOperations /// /// The name of the container registry. /// + /// + /// Specifies name of the password which should be regenerated -- + /// password or password2. Possible values include: 'password', + /// 'password2' + /// /// /// The headers that will be added to request. /// @@ -245,10 +255,39 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> RegenerateCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> RegenerateCredentialWithHttpMessagesAsync(string resourceGroupName, string registryName, PasswordName name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the available container registries under the specified - /// resource group. + /// Creates a container registry with the specified parameters. + /// + /// + /// The name of the resource group to which the container registry + /// belongs. + /// + /// + /// The name of the container registry. + /// + /// + /// The parameters for creating a container registry. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all the container registries under the specified resource + /// group. /// /// /// The NextLink from the previous successful call to List operation. @@ -268,9 +307,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the available container registries under the specified + /// Lists all the container registries under the specified /// subscription. /// /// @@ -291,6 +330,7 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDefinition.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDefinition.cs new file mode 100644 index 000000000000..cd62c95514d2 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDefinition.cs @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The definition of a container registry operation. + /// + public partial class OperationDefinition + { + /// + /// Initializes a new instance of the OperationDefinition class. + /// + public OperationDefinition() { } + + /// + /// Initializes a new instance of the OperationDefinition class. + /// + /// Operation name: + /// {provider}/{resource}/{operation}. + /// The display information for the container + /// registry operation. + public OperationDefinition(string name = default(string), OperationDisplayDefinition display = default(OperationDisplayDefinition)) + { + Name = name; + Display = display; + } + + /// + /// Gets or sets operation name: {provider}/{resource}/{operation}. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the display information for the container registry + /// operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplayDefinition Display { get; set; } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDisplayDefinition.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDisplayDefinition.cs new file mode 100644 index 000000000000..2fa2ea440fae --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDisplayDefinition.cs @@ -0,0 +1,73 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The display information for a container registry operation. + /// + public partial class OperationDisplayDefinition + { + /// + /// Initializes a new instance of the OperationDisplayDefinition class. + /// + public OperationDisplayDefinition() { } + + /// + /// Initializes a new instance of the OperationDisplayDefinition class. + /// + /// The resource provider name: + /// Microsoft.ContainerRegistry. + /// The resource on which the operation is + /// performed. + /// The operation that users can + /// perform. + /// The description for the + /// operation. + public OperationDisplayDefinition(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + Description = description; + } + + /// + /// Gets or sets the resource provider name: + /// Microsoft.ContainerRegistry. + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets the resource on which the operation is performed. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets the operation that users can perform. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + /// + /// Gets or sets the description for the operation. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Page.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Page.cs index cd47ec6dec14..340cb48bfbf3 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Page.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Page.cs @@ -1,46 +1,55 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("nextLink")] - public System.String NextPageLink { get; private set; } + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/PasswordName.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/PasswordName.cs new file mode 100644 index 000000000000..ff0a1e4a001b --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/PasswordName.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for PasswordName. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum PasswordName + { + [EnumMember(Value = "password")] + Password, + [EnumMember(Value = "password2")] + Password2 + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/ProvisioningState.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/ProvisioningState.cs new file mode 100644 index 000000000000..55732aafd329 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/ProvisioningState.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ProvisioningState. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ProvisioningState + { + [EnumMember(Value = "Creating")] + Creating, + [EnumMember(Value = "Succeeded")] + Succeeded + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegenerateCredentialParameters.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegenerateCredentialParameters.cs new file mode 100644 index 000000000000..59380552d62d --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegenerateCredentialParameters.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The parameters used to regenerate the login credential. + /// + public partial class RegenerateCredentialParameters + { + /// + /// Initializes a new instance of the RegenerateCredentialParameters + /// class. + /// + public RegenerateCredentialParameters() { } + + /// + /// Initializes a new instance of the RegenerateCredentialParameters + /// class. + /// + /// Specifies name of the password which should be + /// regenerated -- password or password2. Possible values include: + /// 'password', 'password2' + public RegenerateCredentialParameters(PasswordName name) + { + Name = name; + } + + /// + /// Gets or sets specifies name of the password which should be + /// regenerated -- password or password2. Possible values include: + /// 'password', 'password2' + /// + [JsonProperty(PropertyName = "name")] + public PasswordName Name { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Registry.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Registry.cs index e5d99d02e051..b9d67624db26 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Registry.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Registry.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// An object that represents a container registry. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class Registry : Resource { /// @@ -24,12 +32,9 @@ public Registry() { } /// /// Initializes a new instance of the Registry class. /// - /// The location of the resource. This cannot - /// be changed after the resource is created. - /// The properties of the storage account - /// for the container registry. If specified, the storage account - /// must be in the same physical location as the container - /// registry. + /// The location of the resource. This cannot be + /// changed after the resource is created. + /// The SKU of the container registry. /// The resource ID. /// The name of the resource. /// The type of the resource. @@ -38,61 +43,81 @@ public Registry() { } /// container registry. /// The creation date of the container /// registry in ISO8601 format. - /// The value that indicates whether - /// the admin user is enabled. This value is false by default. - public Registry(string location, StorageAccountProperties storageAccount, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string loginServer = default(string), System.DateTime? creationDate = default(System.DateTime?), bool? adminUserEnabled = default(bool?)) + /// The status of the container + /// registry at the time the operation was called. Possible values + /// include: 'Creating', 'Succeeded' + /// The value that indicates whether the + /// admin user is enabled. This value is false by default. + /// The properties of the storage account + /// for the container registry. + public Registry(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string loginServer = default(string), System.DateTime? creationDate = default(System.DateTime?), ProvisioningState? provisioningState = default(ProvisioningState?), bool? adminUserEnabled = default(bool?), StorageAccountProperties storageAccount = default(StorageAccountProperties)) : base(location, id, name, type, tags) { + Sku = sku; LoginServer = loginServer; CreationDate = creationDate; + ProvisioningState = provisioningState; AdminUserEnabled = adminUserEnabled; StorageAccount = storageAccount; } + /// + /// Gets or sets the SKU of the container registry. + /// + [JsonProperty(PropertyName = "sku")] + public Sku Sku { get; set; } + /// /// Gets the URL that can be used to log into the container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.loginServer")] - public string LoginServer { get; private set; } + [JsonProperty(PropertyName = "properties.loginServer")] + public string LoginServer { get; protected set; } /// /// Gets the creation date of the container registry in ISO8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.creationDate")] - public System.DateTime? CreationDate { get; private set; } + [JsonProperty(PropertyName = "properties.creationDate")] + public System.DateTime? CreationDate { get; protected set; } + + /// + /// Gets the status of the container registry at the time the operation + /// was called. Possible values include: 'Creating', 'Succeeded' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public ProvisioningState? ProvisioningState { get; protected set; } /// /// Gets or sets the value that indicates whether the admin user is /// enabled. This value is false by default. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.adminUserEnabled")] + [JsonProperty(PropertyName = "properties.adminUserEnabled")] public bool? AdminUserEnabled { get; set; } /// /// Gets or sets the properties of the storage account for the - /// container registry. If specified, the storage account must be in - /// the same physical location as the container registry. + /// container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccount")] + [JsonProperty(PropertyName = "properties.storageAccount")] public StorageAccountProperties StorageAccount { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() { base.Validate(); - if (StorageAccount == null) + if (Sku == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "StorageAccount"); + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); } - if (this.StorageAccount != null) + if (Sku != null) { - this.StorageAccount.Validate(); + Sku.Validate(); } } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCreateParameters.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCreateParameters.cs new file mode 100644 index 000000000000..e276ab32cad2 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCreateParameters.cs @@ -0,0 +1,118 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The parameters for creating a container registry. + /// + [JsonTransformation] + public partial class RegistryCreateParameters + { + /// + /// Initializes a new instance of the RegistryCreateParameters class. + /// + public RegistryCreateParameters() { } + + /// + /// Initializes a new instance of the RegistryCreateParameters class. + /// + /// The location of the container registry. This + /// cannot be changed after the resource is created. + /// The SKU of the container registry. + /// The parameters of a storage account + /// for the container registry. If specified, the storage account must + /// be in the same physical location as the container registry. + /// The tags for the container registry. + /// The value that indicates whether the + /// admin user is enabled. This value is false by default. + public RegistryCreateParameters(string location, Sku sku, StorageAccountParameters storageAccount, IDictionary tags = default(IDictionary), bool? adminUserEnabled = default(bool?)) + { + Tags = tags; + Location = location; + Sku = sku; + AdminUserEnabled = adminUserEnabled; + StorageAccount = storageAccount; + } + + /// + /// Gets or sets the tags for the container registry. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets the location of the container registry. This cannot be + /// changed after the resource is created. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets the SKU of the container registry. + /// + [JsonProperty(PropertyName = "sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets the value that indicates whether the admin user is + /// enabled. This value is false by default. + /// + [JsonProperty(PropertyName = "properties.adminUserEnabled")] + public bool? AdminUserEnabled { get; set; } + + /// + /// Gets or sets the parameters of a storage account for the container + /// registry. If specified, the storage account must be in the same + /// physical location as the container registry. + /// + [JsonProperty(PropertyName = "properties.storageAccount")] + public StorageAccountParameters StorageAccount { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + if (Sku == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); + } + if (StorageAccount == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccount"); + } + if (Sku != null) + { + Sku.Validate(); + } + if (StorageAccount != null) + { + StorageAccount.Validate(); + } + } + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCredentials.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCredentials.cs deleted file mode 100644 index 982393fd0a38..000000000000 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCredentials.cs +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ContainerRegistry.Models -{ - using System.Linq; - - /// - /// The result of a request to get the administrator login credentials for - /// a container registry. - /// - public partial class RegistryCredentials - { - /// - /// Initializes a new instance of the RegistryCredentials class. - /// - public RegistryCredentials() { } - - /// - /// Initializes a new instance of the RegistryCredentials class. - /// - /// The administrator username. - /// The administrator password. - public RegistryCredentials(string username = default(string), string password = default(string)) - { - Username = username; - Password = password; - } - - /// - /// Gets or sets the administrator username. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "username")] - public string Username { get; set; } - - /// - /// Gets or sets the administrator password. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "password")] - public string Password { get; set; } - - } -} diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryListCredentialsResult.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryListCredentialsResult.cs new file mode 100644 index 000000000000..401d552b21c6 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryListCredentialsResult.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The response from the ListCredentials operation. + /// + public partial class RegistryListCredentialsResult + { + /// + /// Initializes a new instance of the RegistryListCredentialsResult + /// class. + /// + public RegistryListCredentialsResult() { } + + /// + /// Initializes a new instance of the RegistryListCredentialsResult + /// class. + /// + /// The username for a container + /// registry. + /// The list of passwords for a container + /// registry. + public RegistryListCredentialsResult(string username = default(string), IList passwords = default(IList)) + { + Username = username; + Passwords = passwords; + } + + /// + /// Gets or sets the username for a container registry. + /// + [JsonProperty(PropertyName = "username")] + public string Username { get; set; } + + /// + /// Gets or sets the list of passwords for a container registry. + /// + [JsonProperty(PropertyName = "passwords")] + public IList Passwords { get; set; } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameCheckRequest.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameCheckRequest.cs index 5c1457e6f4ef..17b2aaba2f98 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameCheckRequest.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameCheckRequest.cs @@ -1,17 +1,22 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Newtonsoft.Json; using System.Linq; /// - /// A request to check whether the container registry name is available. + /// A request to check whether a container registry name is available. /// public partial class RegistryNameCheckRequest { @@ -39,28 +44,44 @@ static RegistryNameCheckRequest() /// /// Gets or sets the name of the container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// The resource type of the container registry. This field must be - /// set to "Microsoft.ContainerRegistry/registries". + /// The resource type of the container registry. This field must be set + /// to "Microsoft.ContainerRegistry/registries". /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public static string Type { get; private set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Name != null) + { + if (Name.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "Name", 50); + } + if (Name.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "Name", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(Name, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "Name", "^[a-zA-Z0-9]*$"); + } } } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameStatus.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameStatus.cs index 46cb01d3d47f..274e4470eac4 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameStatus.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameStatus.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; using System.Linq; /// @@ -41,21 +45,22 @@ public RegistryNameStatus() { } /// Gets or sets the value that indicates whether the name is /// available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nameAvailable")] + [JsonProperty(PropertyName = "nameAvailable")] public bool? NameAvailable { get; set; } /// /// Gets or sets if any, the reason that the name is not available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "reason")] + [JsonProperty(PropertyName = "reason")] public string Reason { get; set; } /// /// Gets or sets if any, the error message that provides more detail /// for the reason that the name is not available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "message")] + [JsonProperty(PropertyName = "message")] public string Message { get; set; } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryPassword.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryPassword.cs new file mode 100644 index 000000000000..2ac4f6c4dbc8 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryPassword.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The login password for the container registry. + /// + public partial class RegistryPassword + { + /// + /// Initializes a new instance of the RegistryPassword class. + /// + public RegistryPassword() { } + + /// + /// Initializes a new instance of the RegistryPassword class. + /// + /// The password name. Possible values include: + /// 'password', 'password2' + /// The password value. + public RegistryPassword(PasswordName? name = default(PasswordName?), string value = default(string)) + { + Name = name; + Value = value; + } + + /// + /// Gets or sets the password name. Possible values include: + /// 'password', 'password2' + /// + [JsonProperty(PropertyName = "name")] + public PasswordName? Name { get; set; } + + /// + /// Gets or sets the password value. + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryUpdateParameters.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryUpdateParameters.cs index e45ade2452c4..932bf9cd3763 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryUpdateParameters.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryUpdateParameters.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// The parameters for updating a container registry. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class RegistryUpdateParameters { /// @@ -24,15 +32,13 @@ public RegistryUpdateParameters() { } /// /// Initializes a new instance of the RegistryUpdateParameters class. /// - /// The resource tags for the container - /// registry. - /// The value that indicates whether - /// the admin user is enabled. This value is false by default. - /// The properties of a storage account - /// for the container registry. If specified, the storage account - /// must be in the same physical location as the container - /// registry. - public RegistryUpdateParameters(System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), bool? adminUserEnabled = default(bool?), StorageAccountProperties storageAccount = default(StorageAccountProperties)) + /// The tags for the container registry. + /// The value that indicates whether the + /// admin user is enabled. This value is false by default. + /// The parameters of a storage account + /// for the container registry. If specified, the storage account must + /// be in the same physical location as the container registry. + public RegistryUpdateParameters(IDictionary tags = default(IDictionary), bool? adminUserEnabled = default(bool?), StorageAccountParameters storageAccount = default(StorageAccountParameters)) { Tags = tags; AdminUserEnabled = adminUserEnabled; @@ -40,38 +46,39 @@ public RegistryUpdateParameters() { } } /// - /// Gets or sets the resource tags for the container registry. + /// Gets or sets the tags for the container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Gets or sets the value that indicates whether the admin user is /// enabled. This value is false by default. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.adminUserEnabled")] + [JsonProperty(PropertyName = "properties.adminUserEnabled")] public bool? AdminUserEnabled { get; set; } /// - /// Gets or sets the properties of a storage account for the container + /// Gets or sets the parameters of a storage account for the container /// registry. If specified, the storage account must be in the same /// physical location as the container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccount")] - public StorageAccountProperties StorageAccount { get; set; } + [JsonProperty(PropertyName = "properties.storageAccount")] + public StorageAccountParameters StorageAccount { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.StorageAccount != null) + if (StorageAccount != null) { - this.StorageAccount.Validate(); + StorageAccount.Validate(); } } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Resource.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Resource.cs index 700d240680c2..b4439285a546 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Resource.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Resource.cs @@ -1,19 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// An Azure resource. /// - public partial class Resource : Microsoft.Rest.Azure.IResource + public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. @@ -23,13 +31,13 @@ public Resource() { } /// /// Initializes a new instance of the Resource class. /// - /// The location of the resource. This cannot - /// be changed after the resource is created. + /// The location of the resource. This cannot be + /// changed after the resource is created. /// The resource ID. /// The name of the resource. /// The type of the resource. /// The tags of the resource. - public Resource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; @@ -41,46 +49,47 @@ public Resource() { } /// /// Gets the resource ID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; private set; } + [JsonProperty(PropertyName = "id")] + public string Id { get; protected set; } /// /// Gets the name of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } /// /// Gets the type of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } /// /// Gets or sets the location of the resource. This cannot be changed /// after the resource is created. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// /// Gets or sets the tags of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Location == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); } } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Sku.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Sku.cs new file mode 100644 index 000000000000..f5277084f27e --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Sku.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The SKU of a container registry. + /// + public partial class Sku + { + /// + /// Initializes a new instance of the Sku class. + /// + public Sku() { } + + /// + /// Initializes a new instance of the Sku class. + /// + /// The SKU name of the the container registry. + /// Required for registry creation. Allowed value: Basic. + /// The SKU tier based on the SKU name. Possible + /// values include: 'Basic' + public Sku(string name, string tier = default(string)) + { + Name = name; + Tier = tier; + } + + /// + /// Gets or sets the SKU name of the the container registry. Required + /// for registry creation. Allowed value: Basic. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets the SKU tier based on the SKU name. Possible values include: + /// 'Basic' + /// + [JsonProperty(PropertyName = "tier")] + public string Tier { get; protected set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + } + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/SkuTier.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/SkuTier.cs new file mode 100644 index 000000000000..ae2956290ea9 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/SkuTier.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + + /// + /// Defines values for SkuTier. + /// + public static class SkuTier + { + public const string Basic = "Basic"; + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountParameters.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountParameters.cs new file mode 100644 index 000000000000..16b63a13e41e --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountParameters.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The parameters of a storage account for a container registry. + /// + public partial class StorageAccountParameters + { + /// + /// Initializes a new instance of the StorageAccountParameters class. + /// + public StorageAccountParameters() { } + + /// + /// Initializes a new instance of the StorageAccountParameters class. + /// + /// The name of the storage account. + /// The access key to the storage + /// account. + public StorageAccountParameters(string name, string accessKey) + { + Name = name; + AccessKey = accessKey; + } + + /// + /// Gets or sets the name of the storage account. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the access key to the storage account. + /// + [JsonProperty(PropertyName = "accessKey")] + public string AccessKey { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (AccessKey == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AccessKey"); + } + } + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountProperties.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountProperties.cs index 219e5f13521e..2bab8ed7def9 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountProperties.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountProperties.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; using System.Linq; /// @@ -24,42 +28,17 @@ public StorageAccountProperties() { } /// Initializes a new instance of the StorageAccountProperties class. /// /// The name of the storage account. - /// The access key to the storage - /// account. - public StorageAccountProperties(string name, string accessKey) + public StorageAccountProperties(string name = default(string)) { Name = name; - AccessKey = accessKey; } /// /// Gets or sets the name of the storage account. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } - /// - /// Gets or sets the access key to the storage account. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "accessKey")] - public string AccessKey { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); - } - if (AccessKey == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "AccessKey"); - } - } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Operations.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Operations.cs new file mode 100644 index 000000000000..b5e1430067cd --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Operations.cs @@ -0,0 +1,401 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(ContainerRegistryManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ContainerRegistryManagementClient + /// + public ContainerRegistryManagementClient Client { get; private set; } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.ContainerRegistry/operations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/OperationsExtensions.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..20d1611c0215 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/OperationsExtensions.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperations.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperations.cs index 901e438f7928..82e665821d49 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperations.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperations.cs @@ -1,22 +1,31 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// RegistriesOperations operations. /// - internal partial class RegistriesOperations : Microsoft.Rest.IServiceOperations, IRegistriesOperations + internal partial class RegistriesOperations : IServiceOperations, IRegistriesOperations { /// /// Initializes a new instance of the RegistriesOperations class. @@ -29,11 +38,11 @@ internal partial class RegistriesOperations : Microsoft.Rest.IServiceOperations< /// internal RegistriesOperations(ContainerRegistryManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -43,8 +52,8 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// Checks whether the container registry name is available for use. The name - /// must contain only alphanumeric characters, be globally unique, and - /// between 5 and 60 characters in length. + /// must contain only alphanumeric characters, be globally unique, and between + /// 5 and 60 characters in length. /// /// /// The name of the container registry. @@ -55,31 +64,49 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (name != null) + { + if (name.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "name", 50); + } + if (name.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "name", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(name, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "name", "^[a-zA-Z0-9]*$"); + } } RegistryNameCheckRequest registryNameCheckRequest = new RegistryNameCheckRequest(); if (name != null) @@ -87,47 +114,49 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) registryNameCheckRequest.Name = name; } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("registryNameCheckRequest", registryNameCheckRequest); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ContainerRegistry/checkNameAvailability").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -144,56 +173,56 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) string _requestContent = null; if(registryNameCheckRequest != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(registryNameCheckRequest, this.Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(registryNameCheckRequest, Client.SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -203,7 +232,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -216,21 +245,21 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -250,81 +279,101 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetPropertiesWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetProperties", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -340,51 +389,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -394,7 +443,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -407,27 +456,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Creates or updates a container registry with the specified parameters. + /// Creates a container registry with the specified parameters. /// /// /// The name of the resource group to which the container registry belongs. @@ -435,8 +484,30 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The name of the container registry. /// - /// - /// The parameters for creating or updating a container registry. + /// + /// The parameters for creating a container registry. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, registryName, registryCreateParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a container registry. + /// + /// + /// The name of the resource group to which the container registry belongs. + /// + /// + /// The name of the container registry. /// /// /// Headers that will be added to request. @@ -444,90 +515,98 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, Registry registry, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); } - if (registry == null) + if (registryName != null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registry"); - } - if (registry != null) - { - registry.Validate(); + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); - tracingParameters.Add("registry", registry); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -542,58 +621,44 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; - if(registry != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(registry, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception + else { + _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -603,40 +668,22 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes a container registry. + /// Updates a container registry with the specified parameters. /// /// /// The name of the resource group to which the container registry belongs. @@ -644,84 +691,115 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The name of the container registry. /// + /// + /// The parameters for updating a container registry. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } + } + if (registryUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "registryUpdateParameters"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); + tracingParameters.Add("registryUpdateParameters", registryUpdateParameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -736,44 +814,58 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; + if(registryUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(registryUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -783,118 +875,124 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Updates a container registry with the specified parameters. + /// Lists all the container registries under the specified resource group. /// /// /// The name of the resource group to which the container registry belongs. /// - /// - /// The name of the container registry. - /// - /// - /// The parameters for updating a container registry. - /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (registryName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); - } - if (registryUpdateParameters == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryUpdateParameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("registryName", registryName); - tracingParameters.Add("registryUpdateParameters", registryUpdateParameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -909,58 +1007,52 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; - if(registryUpdateParameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(registryUpdateParameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -970,7 +1062,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -983,107 +1075,102 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified subscription. /// - /// - /// The name of the resource group to which the container registry belongs. - /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ContainerRegistry/registries").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1099,51 +1186,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1153,7 +1240,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1166,98 +1253,135 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists the login credentials for the specified container registry. /// + /// + /// The name of the resource group to which the container registry belongs. + /// + /// + /// The name of the container registry. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> ListCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (registryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("registryName", registryName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListCredentials", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ContainerRegistry/registries").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/listCredentials").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1273,51 +1397,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1327,7 +1451,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1340,27 +1464,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the administrator login credentials for the specified container + /// Regenerates one of the login credentials for the specified container /// registry. /// /// @@ -1369,87 +1493,114 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The name of the container registry. /// + /// + /// Specifies name of the password which should be regenerated -- password or + /// password2. Possible values include: 'password', 'password2' + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> RegenerateCredentialWithHttpMessagesAsync(string resourceGroupName, string registryName, PasswordName name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } } + RegenerateCredentialParameters regenerateCredentialParameters = new RegenerateCredentialParameters(); + regenerateCredentialParameters.Name = name; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); + tracingParameters.Add("regenerateCredentialParameters", regenerateCredentialParameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetCredentials", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateCredential", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/getCredentials").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/regenerateCredential").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1464,52 +1615,58 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; + if(regenerateCredentialParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(regenerateCredentialParameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1519,7 +1676,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1532,28 +1689,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Regenerates the administrator login credentials for the specified - /// container registry. + /// Creates a container registry with the specified parameters. /// /// /// The name of the resource group to which the container registry belongs. @@ -1561,87 +1717,119 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The name of the container registry. /// + /// + /// The parameters for creating a container registry. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> RegenerateCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } + } + if (registryCreateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "registryCreateParameters"); + } + if (registryCreateParameters != null) + { + registryCreateParameters.Validate(); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); + tracingParameters.Add("registryCreateParameters", registryCreateParameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "RegenerateCredentials", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/regenerateCredentials").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1656,52 +1844,58 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; + if(registryCreateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(registryCreateParameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1711,7 +1905,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1724,28 +1918,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -1756,61 +1949,66 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1826,51 +2024,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1880,7 +2078,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1893,28 +2091,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -1925,61 +2122,66 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1995,51 +2197,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2049,7 +2251,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2062,24 +2264,25 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperationsExtensions.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperationsExtensions.cs index d2f8ed7e5491..9bbc03855c49 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperationsExtensions.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperationsExtensions.cs @@ -1,16 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for RegistriesOperations. @@ -19,8 +23,8 @@ public static partial class RegistriesOperationsExtensions { /// /// Checks whether the container registry name is available for use. The name - /// must contain only alphanumeric characters, be globally unique, and - /// between 5 and 60 characters in length. + /// must contain only alphanumeric characters, be globally unique, and between + /// 5 and 60 characters in length. /// /// /// The operations group for this extension method. @@ -30,13 +34,13 @@ public static partial class RegistriesOperationsExtensions /// public static RegistryNameStatus CheckNameAvailability(this IRegistriesOperations operations, string name) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).CheckNameAvailabilityAsync(name), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CheckNameAvailabilityAsync(name).GetAwaiter().GetResult(); } /// /// Checks whether the container registry name is available for use. The name - /// must contain only alphanumeric characters, be globally unique, and - /// between 5 and 60 characters in length. + /// must contain only alphanumeric characters, be globally unique, and between + /// 5 and 60 characters in length. /// /// /// The operations group for this extension method. @@ -47,7 +51,7 @@ public static RegistryNameStatus CheckNameAvailability(this IRegistriesOperation /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CheckNameAvailabilityAsync(this IRegistriesOperations operations, string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CheckNameAvailabilityAsync(this IRegistriesOperations operations, string name, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(name, null, cancellationToken).ConfigureAwait(false)) { @@ -67,9 +71,9 @@ public static RegistryNameStatus CheckNameAvailability(this IRegistriesOperation /// /// The name of the container registry. /// - public static Registry GetProperties(this IRegistriesOperations operations, string resourceGroupName, string registryName) + public static Registry Get(this IRegistriesOperations operations, string resourceGroupName, string registryName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).GetPropertiesAsync(resourceGroupName, registryName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, registryName).GetAwaiter().GetResult(); } /// @@ -87,16 +91,16 @@ public static Registry GetProperties(this IRegistriesOperations operations, stri /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetPropertiesAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetPropertiesWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates or updates a container registry with the specified parameters. + /// Creates a container registry with the specified parameters. /// /// /// The operations group for this extension method. @@ -107,16 +111,16 @@ public static Registry GetProperties(this IRegistriesOperations operations, stri /// /// The name of the container registry. /// - /// - /// The parameters for creating or updating a container registry. + /// + /// The parameters for creating a container registry. /// - public static Registry CreateOrUpdate(this IRegistriesOperations operations, string resourceGroupName, string registryName, Registry registry) + public static Registry Create(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).CreateOrUpdateAsync(resourceGroupName, registryName, registry), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateAsync(resourceGroupName, registryName, registryCreateParameters).GetAwaiter().GetResult(); } /// - /// Creates or updates a container registry with the specified parameters. + /// Creates a container registry with the specified parameters. /// /// /// The operations group for this extension method. @@ -127,15 +131,15 @@ public static Registry CreateOrUpdate(this IRegistriesOperations operations, str /// /// The name of the container registry. /// - /// - /// The parameters for creating or updating a container registry. + /// + /// The parameters for creating a container registry. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, Registry registry, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, registryName, registry, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, registryName, registryCreateParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -155,7 +159,7 @@ public static Registry CreateOrUpdate(this IRegistriesOperations operations, str /// public static void Delete(this IRegistriesOperations operations, string resourceGroupName, string registryName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).DeleteAsync(resourceGroupName, registryName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, registryName).GetAwaiter().GetResult(); } /// @@ -173,7 +177,7 @@ public static void Delete(this IRegistriesOperations operations, string resource /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false); } @@ -195,7 +199,7 @@ public static void Delete(this IRegistriesOperations operations, string resource /// public static Registry Update(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).UpdateAsync(resourceGroupName, registryName, registryUpdateParameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, registryName, registryUpdateParameters).GetAwaiter().GetResult(); } /// @@ -216,7 +220,7 @@ public static Registry Update(this IRegistriesOperations operations, string reso /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task UpdateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task UpdateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, registryName, registryUpdateParameters, null, cancellationToken).ConfigureAwait(false)) { @@ -225,8 +229,7 @@ public static Registry Update(this IRegistriesOperations operations, string reso } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The operations group for this extension method. @@ -234,14 +237,13 @@ public static Registry Update(this IRegistriesOperations operations, string reso /// /// The name of the resource group to which the container registry belongs. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IRegistriesOperations operations, string resourceGroupName) + public static IPage ListByResourceGroup(this IRegistriesOperations operations, string resourceGroupName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).ListByResourceGroupAsync(resourceGroupName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The operations group for this extension method. @@ -252,7 +254,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IReg /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IRegistriesOperations operations, string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IRegistriesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { @@ -261,20 +263,18 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IReg } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The operations group for this extension method. /// - public static Microsoft.Rest.Azure.IPage List(this IRegistriesOperations operations) + public static IPage List(this IRegistriesOperations operations) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The operations group for this extension method. @@ -282,7 +282,7 @@ public static Microsoft.Rest.Azure.IPage List(this IRegistriesOperatio /// /// The cancellation token. /// - public static async Task> ListAsync(this IRegistriesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IRegistriesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -291,7 +291,47 @@ public static Microsoft.Rest.Azure.IPage List(this IRegistriesOperatio } /// - /// Gets the administrator login credentials for the specified container + /// Lists the login credentials for the specified container registry. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the container registry belongs. + /// + /// + /// The name of the container registry. + /// + public static RegistryListCredentialsResult ListCredentials(this IRegistriesOperations operations, string resourceGroupName, string registryName) + { + return operations.ListCredentialsAsync(resourceGroupName, registryName).GetAwaiter().GetResult(); + } + + /// + /// Lists the login credentials for the specified container registry. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the container registry belongs. + /// + /// + /// The name of the container registry. + /// + /// + /// The cancellation token. + /// + public static async Task ListCredentialsAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListCredentialsWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerates one of the login credentials for the specified container /// registry. /// /// @@ -303,13 +343,17 @@ public static Microsoft.Rest.Azure.IPage List(this IRegistriesOperatio /// /// The name of the container registry. /// - public static RegistryCredentials GetCredentials(this IRegistriesOperations operations, string resourceGroupName, string registryName) + /// + /// Specifies name of the password which should be regenerated -- password or + /// password2. Possible values include: 'password', 'password2' + /// + public static RegistryListCredentialsResult RegenerateCredential(this IRegistriesOperations operations, string resourceGroupName, string registryName, PasswordName name) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).GetCredentialsAsync(resourceGroupName, registryName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.RegenerateCredentialAsync(resourceGroupName, registryName, name).GetAwaiter().GetResult(); } /// - /// Gets the administrator login credentials for the specified container + /// Regenerates one of the login credentials for the specified container /// registry. /// /// @@ -321,20 +365,23 @@ public static RegistryCredentials GetCredentials(this IRegistriesOperations oper /// /// The name of the container registry. /// + /// + /// Specifies name of the password which should be regenerated -- password or + /// password2. Possible values include: 'password', 'password2' + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetCredentialsAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task RegenerateCredentialAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, PasswordName name, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetCredentialsWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.RegenerateCredentialWithHttpMessagesAsync(resourceGroupName, registryName, name, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Regenerates the administrator login credentials for the specified - /// container registry. + /// Creates a container registry with the specified parameters. /// /// /// The operations group for this extension method. @@ -345,14 +392,16 @@ public static RegistryCredentials GetCredentials(this IRegistriesOperations oper /// /// The name of the container registry. /// - public static RegistryCredentials RegenerateCredentials(this IRegistriesOperations operations, string resourceGroupName, string registryName) + /// + /// The parameters for creating a container registry. + /// + public static Registry BeginCreate(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).RegenerateCredentialsAsync(resourceGroupName, registryName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateAsync(resourceGroupName, registryName, registryCreateParameters).GetAwaiter().GetResult(); } /// - /// Regenerates the administrator login credentials for the specified - /// container registry. + /// Creates a container registry with the specified parameters. /// /// /// The operations group for this extension method. @@ -363,20 +412,22 @@ public static RegistryCredentials RegenerateCredentials(this IRegistriesOperatio /// /// The name of the container registry. /// + /// + /// The parameters for creating a container registry. + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task RegenerateCredentialsAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.RegenerateCredentialsWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, registryName, registryCreateParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The operations group for this extension method. @@ -384,14 +435,13 @@ public static RegistryCredentials RegenerateCredentials(this IRegistriesOperatio /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this IRegistriesOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IRegistriesOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The operations group for this extension method. @@ -402,7 +452,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IRegistriesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IRegistriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -411,8 +461,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The operations group for this extension method. @@ -420,14 +469,13 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListNext(this IRegistriesOperations operations, string nextPageLink) + public static IPage ListNext(this IRegistriesOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The operations group for this extension method. @@ -438,7 +486,7 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IRegistriesOper /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IRegistriesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListNextAsync(this IRegistriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -448,3 +496,4 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IRegistriesOper } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs index 49dbc5dda5a0..a294c3d6e03d 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Container Registry.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd index 3ed8dbb46267..60ff98f79d34 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd @@ -4,9 +4,9 @@ :: @echo off -set autoRestVersion=0.17.0-Nightly20161012 +set autoRestVersion=1.0.0-Nightly20170212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-containerregistry/2016-06-27-preview/swagger/containerregistry.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-containerregistry/2017-03-01/swagger/containerregistry.json" ) else ( set specFile="%1" ) diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json index 63b04956045b..95c434d19a41 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json @@ -1,5 +1,5 @@ { - "version": "1.1.0-preview", + "version": "1.2.0", "description": "Microsoft Azure Container Registry Management Library", "authors": [ "Microsoft" ], From 3fb91e645d6579bc94f5447e3fb24c8de4988243 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Thu, 16 Mar 2017 21:19:43 -0700 Subject: [PATCH 098/137] Addressing PR feedback, re-recording test after addressing feedback --- src/ClientRuntime/ClientRuntime.sln | 6 - .../ScenarioTests/E2ETestBase.cs | 116 +-- .../ScenarioTests/VMTests.cs | 18 +- .../UpdateVM_DoNotSerializeProtected.json | 913 +++++++++--------- .../TestAssets/ExtendingTypes.cs | 13 +- .../TestAssets/RecordedDelegatingHandler.cs | 12 +- 6 files changed, 514 insertions(+), 564 deletions(-) diff --git a/src/ClientRuntime/ClientRuntime.sln b/src/ClientRuntime/ClientRuntime.sln index 26d514f45335..65c50d6c50cb 100644 --- a/src/ClientRuntime/ClientRuntime.sln +++ b/src/ClientRuntime/ClientRuntime.sln @@ -25,8 +25,6 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\TestFram EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.Compute", "..\ResourceManagement\Compute\Microsoft.Azure.Management.Compute\Microsoft.Azure.Management.Compute.xproj", "{CBE97730-45F5-448E-88E9-55DF94D65B77}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -77,10 +75,6 @@ Global {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.Build.0 = Debug|Any CPU {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU - {CBE97730-45F5-448E-88E9-55DF94D65B77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CBE97730-45F5-448E-88E9-55DF94D65B77}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CBE97730-45F5-448E-88E9-55DF94D65B77}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CBE97730-45F5-448E-88E9-55DF94D65B77}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs index f6b9921e991f..130b4c94707d 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs @@ -1,4 +1,7 @@ -namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests { using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; @@ -17,7 +20,6 @@ using System.Linq; using System.Net; using System.Reflection; - using System.Threading.Tasks; using Xunit; public class E2ETestBase @@ -28,13 +30,16 @@ public class E2ETestBase MockContext _mockContext; ResourceManagementClient _resourceClient; - //ComputeManagementClient _computeClient; MyComputeClient _computeClient; StorageManagementClient _storageClient; NetworkManagementClient _networkClient; ImageReference m_windowsImageReference, m_linuxImageReference; + /// + /// Constructor for E2ETestBase class + /// + /// public E2ETestBase(string testPrefix = "") { TEST_PREFIX = testPrefix; @@ -136,46 +141,38 @@ protected StorageAccount CreateStorageAccount(ResourceGroup resGroup, string sto try { var storageAccountList = StorageClient.StorageAccounts.ListByResourceGroup(rgName); - if(storageAccountList.Any()) + if (storageAccountList.Any()) { storageAccountOutput = storageAccountList.Where((sa) => sa.Name.Equals(storageAccountName, StringComparison.OrdinalIgnoreCase)).FirstOrDefault(); } } catch { } - try + if (storageAccountOutput == null) { - if(storageAccountOutput == null) + var stoInput = new StorageAccountCreateParameters { - var stoInput = new StorageAccountCreateParameters - { - Location = DEFAULT_LOCATION, - AccountType = AccountType.StandardGRS - }; - - storageAccountOutput = StorageClient.StorageAccounts.Create(rgName, - storageAccountName, stoInput); - bool created = false; - while (!created) - { - System.Threading.Thread.Sleep(TimeSpan.FromSeconds(10)); - var stos = StorageClient.StorageAccounts.ListByResourceGroup(rgName); - created = - stos.Any( - t => - StringComparer.OrdinalIgnoreCase.Equals(t.Name, storageAccountName)); - } + Location = DEFAULT_LOCATION, + AccountType = AccountType.StandardGRS + }; - storageAccountOutput = StorageClient.StorageAccounts.GetProperties(rgName, storageAccountName); + storageAccountOutput = StorageClient.StorageAccounts.Create(rgName, + storageAccountName, stoInput); + bool created = false; + while (!created) + { + Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities.Wait(TimeSpan.FromSeconds(10)); + var stos = StorageClient.StorageAccounts.ListByResourceGroup(rgName); + created = + stos.Any( + t => + StringComparer.OrdinalIgnoreCase.Equals(t.Name, storageAccountName)); } - return storageAccountOutput; - } - catch - { - //ResourceClient.ResourceGroups.Delete(rgName); - throw; + storageAccountOutput = StorageClient.StorageAccounts.GetProperties(rgName, storageAccountName); } + + return storageAccountOutput; } protected ResourceGroup CreateResourceGroup(string rgName) @@ -184,28 +181,19 @@ protected ResourceGroup CreateResourceGroup(string rgName) try { resourceGroup = ResourceClient.ResourceGroups.Get(rgName); - //ResourceClient.ResourceGroups.Delete(rgName); } catch { } - try - { - if (resourceGroup == null) - { - resourceGroup = ResourceClient.ResourceGroups.CreateOrUpdate( - rgName, - new ResourceGroup - { - Location = DEFAULT_LOCATION, - Tags = new Dictionary() { { rgName, DateTime.UtcNow.ToString("u") } } - }); - } - } - catch + if (resourceGroup == null) { - throw; + resourceGroup = ResourceClient.ResourceGroups.CreateOrUpdate( + rgName, + new ResourceGroup + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() { { rgName, DateTime.UtcNow.ToString("u") } } + }); } - return resourceGroup; } @@ -253,19 +241,7 @@ protected ImageReference FindVMImage(string publisher, string offer, string sku) }; } - protected VirtualMachine CreateVM_NoAsyncTracking( - string rgName, string vmName, string asName, StorageAccount storageAccount, ImageReference imageRef, - out VirtualMachine inputVM, - Action vmCustomizer = null, - bool createWithPublicIpAddress = false, - bool waitOperation = true, - bool hasManagedDisks = false) - { - return CreateVM_NoAsyncTracking(rgName, vmName, asName, storageAccount.Name, imageRef, out inputVM, vmCustomizer, - createWithPublicIpAddress, waitOperation, hasManagedDisks); - } - - protected VirtualMachine CreateVM_NoAsyncTracking( + protected VirtualMachine CreateVirtualMachine( string rgName, string vmName, string asName, string storageAccountName, ImageReference imageRef, out VirtualMachine inputVM, Action vmCustomizer = null, @@ -308,10 +284,6 @@ protected VirtualMachine CreateVM_NoAsyncTracking( string asetId = CreateAvailabilitySet(rgName, asName, hasManagedDisks); inputVM = CreateDefaultVMInput(rgName, vmName, storageAccountName, imageRef, asetId, nicResponse.Id, hasManagedDisks); - //if (vmCustomizer != null) - //{ - // vmCustomizer(inputVM); - //} string expectedVMReferenceId = GetVMReferenceId(ComputeClient.SubscriptionId, rgName, inputVM.Name); @@ -717,20 +689,6 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string vmName, stri Uri = osVhduri } } - //DataDisks = !hasManagedDisks ? null : new List() - //{ - // new DataDisk() - // { - // Caching = CachingTypes.None, - // CreateOption = DiskCreateOptionTypes.Empty, - // Lun = 0, - // DiskSizeGB = 30, - // ManagedDisk = new ManagedDiskParameters() - // { - // StorageAccountType = StorageAccountTypes.StandardLRS - // } - // } - //}, }, NetworkProfile = new NetworkProfile { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs index ee9b9185f04a..705f0486f099 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs @@ -1,4 +1,7 @@ -namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests { using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; @@ -24,12 +27,10 @@ public class VMTests : E2ETestBase const string vmPrefix = "vm"; /// - /// Constructor + /// Constructor for Test class /// public VMTests() : base(prefix) - { - - } + { } [Fact] public void UpdateVM_DoNotSerializeProtected() @@ -51,7 +52,7 @@ public void UpdateVM_DoNotSerializeProtected() resGroup = CreateResourceGroup(resourceGroupName); StorageAccount storageAccount = CreateStorageAccount(resGroup, storageName); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); - VirtualMachine vm = CreateVM_NoAsyncTracking(resGroup.Name, vmName, asName, storageAccount, imageRef, out vm1); + VirtualMachine vm = CreateVirtualMachine(resGroup.Name, vmName, asName, storageAccount.Name, imageRef, out vm1); //Create a new VM and Update VmId protected Property MyVm myNewVm = new MyVm(vm); @@ -59,7 +60,7 @@ public void UpdateVM_DoNotSerializeProtected() VirtualMachine updatedVm = myNewVm as VirtualMachine; // Update VM - AzureOperationResponse res = Task>.Run(async () => + AzureOperationResponse putResponse = Task>.Run(async () => { return await ComputeClient.VirtualMachines.BeginCreateOrUpdateWithHttpMessagesAsync(resGroup.Name, updatedVm.Name, updatedVm).ConfigureAwait(false); }).GetAwaiter().GetResult(); @@ -69,7 +70,7 @@ public void UpdateVM_DoNotSerializeProtected() Assert.False(requestContentStr.Contains("VmId")); //Get VM Object - VirtualMachine getVm = res.Body; + VirtualMachine getVm = putResponse.Body; // Verify the vmPutResponse does not contain updated VmId Assert.NotEqual(newVmId, getVm.VmId); @@ -77,6 +78,7 @@ public void UpdateVM_DoNotSerializeProtected() catch(Exception ex) { Debug.WriteLine(ex.ToString()); + throw; } finally { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json index a1df7c3f975f..a4008aa32025 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5954cea2-0adc-4ec3-bf29-553565f7efcb" + "fd14f653-a6e8-49e5-be09-a18b1ce1046b" ], "accept-language": [ "en-US" @@ -32,7 +32,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:33:28 GMT" + "Thu, 16 Mar 2017 23:53:26 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14999" ], "x-ms-request-id": [ - "103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + "6eb02ac9-4ed7-43e8-8abc-c0d6732c6eda" ], "x-ms-correlation-request-id": [ - "103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + "6eb02ac9-4ed7-43e8-8abc-c0d6732c6eda" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153329Z:103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + "CENTRALUS:20170316T235326Z:6eb02ac9-4ed7-43e8-8abc-c0d6732c6eda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,7 +65,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "792b5bc8-bbb8-4975-9f09-f923d8396902" + "4574e0cc-0be4-4548-ab90-938fb89a2dc2" ], "accept-language": [ "en-US" @@ -75,7 +75,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 23:53:26Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +87,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:21 GMT" + "Thu, 16 Mar 2017 23:54:53 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14995" ], "x-ms-request-id": [ - "b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + "78d08f1f-ecf4-4c09-97cb-e85d24b61ed3" ], "x-ms-correlation-request-id": [ - "b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + "78d08f1f-ecf4-4c09-97cb-e85d24b61ed3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153422Z:b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + "CENTRALUS:20170316T235453Z:78d08f1f-ecf4-4c09-97cb-e85d24b61ed3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 23:53:26Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -126,7 +126,7 @@ "107" ], "x-ms-client-request-id": [ - "2693c761-c7bd-41f0-be26-6cecd3a6d67a" + "19abaaa0-6abf-4907-b0e9-cbe9a8ad44b9" ], "accept-language": [ "en-US" @@ -136,7 +136,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 23:53:26Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:33:31 GMT" + "Thu, 16 Mar 2017 23:53:29 GMT" ], "Pragma": [ "no-cache" @@ -160,13 +160,13 @@ "1199" ], "x-ms-request-id": [ - "d3c44c97-2eaf-4312-b5b1-850f55aaf200" + "f65b60b5-87e1-4c4b-9ac4-27bc4c357940" ], "x-ms-correlation-request-id": [ - "d3c44c97-2eaf-4312-b5b1-850f55aaf200" + "f65b60b5-87e1-4c4b-9ac4-27bc4c357940" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153332Z:d3c44c97-2eaf-4312-b5b1-850f55aaf200" + "CENTRALUS:20170316T235330Z:f65b60b5-87e1-4c4b-9ac4-27bc4c357940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,7 +181,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac4e8e0d-fe2e-48bd-b82a-3b39327187d2" + "b70fec28-5665-46b6-a1c9-4c36ba6dfc14" ], "accept-language": [ "en-US" @@ -203,7 +203,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:33:33 GMT" + "Thu, 16 Mar 2017 23:53:32 GMT" ], "Pragma": [ "no-cache" @@ -219,16 +219,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3fcf20ac-11aa-45fb-b977-96432c983e8a" + "d6a4350c-4444-4959-8092-16a1f04bfb23" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14997" ], "x-ms-correlation-request-id": [ - "3fcf20ac-11aa-45fb-b977-96432c983e8a" + "d6a4350c-4444-4959-8092-16a1f04bfb23" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153334Z:3fcf20ac-11aa-45fb-b977-96432c983e8a" + "CENTRALUS:20170316T235332Z:d6a4350c-4444-4959-8092-16a1f04bfb23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,7 +243,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4610d918-d3c6-4781-8e71-796a1c9cf744" + "f69a9bb9-e80a-440c-879e-8619cecf124d" ], "accept-language": [ "en-US" @@ -253,7 +253,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T15:33:37.2060922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T23:53:36.5990647Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -265,7 +265,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:18 GMT" + "Thu, 16 Mar 2017 23:54:46 GMT" ], "Pragma": [ "no-cache" @@ -281,16 +281,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1f7addc2-86e9-48de-aede-1c6432ecacd5" + "ebe82478-d0c6-408e-b5a0-2bbee1c2761d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14994" ], "x-ms-correlation-request-id": [ - "1f7addc2-86e9-48de-aede-1c6432ecacd5" + "ebe82478-d0c6-408e-b5a0-2bbee1c2761d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153418Z:1f7addc2-86e9-48de-aede-1c6432ecacd5" + "CENTRALUS:20170316T235447Z:ebe82478-d0c6-408e-b5a0-2bbee1c2761d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,7 +311,7 @@ "95" ], "x-ms-client-request-id": [ - "2a916740-2551-4705-8e18-1c480963194a" + "f19d9318-0d20-4206-a663-588881290e8a" ], "accept-language": [ "en-US" @@ -333,13 +333,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:33:37 GMT" + "Thu, 16 Mar 2017 23:53:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/0d1d1a0c-6124-429b-990d-2559bd9f83fd?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/a04bce7c-3d8e-457b-a3c9-d7f09a15a7cc?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" @@ -352,13 +352,69 @@ "1199" ], "x-ms-request-id": [ - "7301374d-633d-490a-8cec-9a5dbb23dbb5" + "aeeb0050-14db-43fc-a850-5d8102c3489b" + ], + "x-ms-correlation-request-id": [ + "aeeb0050-14db-43fc-a850-5d8102c3489b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T235336Z:aeeb0050-14db-43fc-a850-5d8102c3489b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/a04bce7c-3d8e-457b-a3c9-d7f09a15a7cc?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2EwNGJjZTdjLTNkOGUtNDU3Yi1hM2M5LWQ3ZjA5YTE1YTdjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 23:54:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/a04bce7c-3d8e-457b-a3c9-d7f09a15a7cc?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "be3388d8-aadf-46a1-98d9-faaeb2b44be9" ], "x-ms-correlation-request-id": [ - "7301374d-633d-490a-8cec-9a5dbb23dbb5" + "be3388d8-aadf-46a1-98d9-faaeb2b44be9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153337Z:7301374d-633d-490a-8cec-9a5dbb23dbb5" + "CENTRALUS:20170316T235406Z:be3388d8-aadf-46a1-98d9-faaeb2b44be9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -367,8 +423,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/0d1d1a0c-6124-429b-990d-2559bd9f83fd?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBkMWQxYTBjLTYxMjQtNDI5Yi05OTBkLTI1NTliZDlmODNmZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/a04bce7c-3d8e-457b-a3c9-d7f09a15a7cc?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2EwNGJjZTdjLTNkOGUtNDU3Yi1hM2M5LWQ3ZjA5YTE1YTdjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -389,7 +445,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:08 GMT" + "Thu, 16 Mar 2017 23:54:36 GMT" ], "Pragma": [ "no-cache" @@ -405,16 +461,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4e392d2b-332f-460a-920f-0b66a12b4d3b" + "05284167-ecfe-442a-97c1-578d0df19c86" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14995" ], "x-ms-correlation-request-id": [ - "4e392d2b-332f-460a-920f-0b66a12b4d3b" + "05284167-ecfe-442a-97c1-578d0df19c86" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153408Z:4e392d2b-332f-460a-920f-0b66a12b4d3b" + "CENTRALUS:20170316T235437Z:05284167-ecfe-442a-97c1-578d0df19c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +485,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8825bfb5-d522-4e06-ab25-24c0376025a8" + "1f53a235-7673-45a3-b83a-066992ba35cb" ], "accept-language": [ "en-US" @@ -439,7 +495,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T15:33:37.2060922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T23:53:36.5990647Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -451,7 +507,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:18 GMT" + "Thu, 16 Mar 2017 23:54:47 GMT" ], "Pragma": [ "no-cache" @@ -467,16 +523,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "07196a4a-cf03-4d44-bc6b-cd9593240d21" + "108d1403-72e3-42f8-a8b1-cfe14ae3b69b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14993" ], "x-ms-correlation-request-id": [ - "07196a4a-cf03-4d44-bc6b-cd9593240d21" + "108d1403-72e3-42f8-a8b1-cfe14ae3b69b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153418Z:07196a4a-cf03-4d44-bc6b-cd9593240d21" + "CENTRALUS:20170316T235448Z:108d1403-72e3-42f8-a8b1-cfe14ae3b69b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -491,7 +547,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcf2cfd2-32dd-4b54-bcda-7887fda0a87b" + "08068cc0-24e1-4b4a-a5e5-56ccb0d89df9" ], "accept-language": [ "en-US" @@ -513,7 +569,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:20 GMT" + "Thu, 16 Mar 2017 23:54:51 GMT" ], "Pragma": [ "no-cache" @@ -535,16 +591,16 @@ "9fc414ea-410e-4600-9f7c-71bc36416f3f_131147224964182697" ], "x-ms-request-id": [ - "fc9bbf56-7a4f-49df-9468-35b1dcc92631" + "2f06eef1-8fba-4b8a-976d-891a0d46b1a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14995" ], "x-ms-correlation-request-id": [ - "3f7c05ae-2909-4dc6-a354-85b4f557f865" + "078bb14e-187f-40fb-b97c-34478a4dbf10" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153421Z:3f7c05ae-2909-4dc6-a354-85b4f557f865" + "CENTRALUS:20170316T235451Z:078bb14e-187f-40fb-b97c-34478a4dbf10" ] }, "StatusCode": 200 @@ -556,7 +612,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd4c4b15-852f-4045-bf81-9f62f9e26de9" + "03e64c28-2874-46f3-a3b8-df129cd564c4" ], "accept-language": [ "en-US" @@ -581,7 +637,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:21 GMT" + "Thu, 16 Mar 2017 23:54:53 GMT" ], "Pragma": [ "no-cache" @@ -590,13 +646,13 @@ "gateway" ], "x-ms-request-id": [ - "20a78d0d-836d-4e37-b019-0adc476b1161" + "df2a3a93-d338-4899-91c2-7bb8e06fe4b7" ], "x-ms-correlation-request-id": [ - "20a78d0d-836d-4e37-b019-0adc476b1161" + "df2a3a93-d338-4899-91c2-7bb8e06fe4b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153422Z:20a78d0d-836d-4e37-b019-0adc476b1161" + "CENTRALUS:20170316T235453Z:df2a3a93-d338-4899-91c2-7bb8e06fe4b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,7 +671,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"9700a314-4905-4f85-b1d2-6a3095bfa18e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -627,7 +683,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:24 GMT" + "Fri, 17 Mar 2017 00:04:36 GMT" ], "Pragma": [ "no-cache" @@ -649,16 +705,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "a039c1c1-3bad-4d74-adaa-1f5c178c0b59" + "4a425c21-7fef-4be3-ae6f-7d7ab868ac98" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14976" ], "x-ms-correlation-request-id": [ - "cc7aaff7-6eda-48b3-bcfe-1aac7b017696" + "f82c43eb-a0a7-4d1f-8055-0f37e781b64f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154424Z:cc7aaff7-6eda-48b3-bcfe-1aac7b017696" + "CENTRALUS:20170317T000436Z:f82c43eb-a0a7-4d1f-8055-0f37e781b64f" ] }, "StatusCode": 200 @@ -670,7 +726,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0debd1f-1b6d-4f26-bbe3-09fc161cfd26" + "9e54b3d1-627f-47e4-86c1-45ba3a4a708d" ], "accept-language": [ "en-US" @@ -680,7 +736,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"9700a314-4905-4f85-b1d2-6a3095bfa18e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -692,7 +748,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:24 GMT" + "Fri, 17 Mar 2017 00:04:36 GMT" ], "Pragma": [ "no-cache" @@ -714,16 +770,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "0759e33f-992d-4016-8ede-b50f976842fa" + "5f3880de-3019-43d1-a3ca-1a37140019cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14975" ], "x-ms-correlation-request-id": [ - "ff5c2e00-ff69-43be-be85-e54b8d27f3e4" + "4b9d50c9-07bd-4bd2-9f73-52e4541632ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154424Z:ff5c2e00-ff69-43be-be85-e54b8d27f3e4" + "CENTRALUS:20170317T000436Z:4b9d50c9-07bd-4bd2-9f73-52e4541632ee" ] }, "StatusCode": 200 @@ -735,7 +791,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1fcce22-63cc-4af1-92aa-1196d66fd13e" + "dea3f7eb-2521-415c-95ce-159f421fcab2" ], "accept-language": [ "en-US" @@ -760,7 +816,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:24 GMT" + "Thu, 16 Mar 2017 23:54:56 GMT" ], "Pragma": [ "no-cache" @@ -769,13 +825,13 @@ "gateway" ], "x-ms-request-id": [ - "baf238f9-d309-4992-b3b8-19c301b15514" + "60e7642b-0480-47a1-adac-afd4ff337879" ], "x-ms-correlation-request-id": [ - "baf238f9-d309-4992-b3b8-19c301b15514" + "60e7642b-0480-47a1-adac-afd4ff337879" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153425Z:baf238f9-d309-4992-b3b8-19c301b15514" + "CENTRALUS:20170316T235457Z:60e7642b-0480-47a1-adac-afd4ff337879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -794,7 +850,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"caeed610-eeef-44b4-a08a-95fbee2b11ca\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"89e4f50c-c92d-4753-b36e-498e0b42554d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d5452f06-589b-4bfc-9daa-e5104055d5b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -806,7 +862,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:01 GMT" + "Thu, 16 Mar 2017 23:55:34 GMT" ], "Pragma": [ "no-cache" @@ -815,7 +871,7 @@ "chunked" ], "ETag": [ - "W/\"caeed610-eeef-44b4-a08a-95fbee2b11ca\"" + "W/\"89e4f50c-c92d-4753-b36e-498e0b42554d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -825,19 +881,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "639adec6-5e9a-444c-ac04-b883931868b7" + "66820dfc-9ab4-4213-a4c4-4aa6b37fcd44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-correlation-request-id": [ - "f84c8d73-45d8-4d0a-b5e0-82cde333892a" + "eedac66a-5f2a-41ae-962c-b5e42e431938" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153502Z:f84c8d73-45d8-4d0a-b5e0-82cde333892a" + "CENTRALUS:20170316T235535Z:eedac66a-5f2a-41ae-962c-b5e42e431938" ] }, "StatusCode": 200 @@ -849,7 +905,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0527fd56-c0bb-4a8c-949b-cf63a2876b64" + "86c8f88b-d06a-4d8a-b59e-80752558c6a7" ], "accept-language": [ "en-US" @@ -859,7 +915,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"caeed610-eeef-44b4-a08a-95fbee2b11ca\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"89e4f50c-c92d-4753-b36e-498e0b42554d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d5452f06-589b-4bfc-9daa-e5104055d5b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -871,7 +927,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:01 GMT" + "Thu, 16 Mar 2017 23:55:35 GMT" ], "Pragma": [ "no-cache" @@ -880,7 +936,7 @@ "chunked" ], "ETag": [ - "W/\"caeed610-eeef-44b4-a08a-95fbee2b11ca\"" + "W/\"89e4f50c-c92d-4753-b36e-498e0b42554d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -890,19 +946,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "83bddc95-be76-408b-bcbe-0f81f209180d" + "3e806a74-6d96-473b-9ef4-49421c79222e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14996" ], "x-ms-correlation-request-id": [ - "a2a982a8-0c45-43ae-8916-7a9129e32c0c" + "b4590799-6172-44b4-a682-9cbefefb5c33" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153502Z:a2a982a8-0c45-43ae-8916-7a9129e32c0c" + "CENTRALUS:20170316T235535Z:b4590799-6172-44b4-a682-9cbefefb5c33" ] }, "StatusCode": 200 @@ -920,7 +976,7 @@ "207" ], "x-ms-client-request-id": [ - "f18755ac-c196-4602-8304-777797768d7f" + "318439a5-c862-477f-9601-44dd02d2e74f" ], "accept-language": [ "en-US" @@ -930,7 +986,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"f7626243-4e30-4757-a7e1-d222ea938c29\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"d2c6b4c5-fd84-441e-aa8d-15ab61eda5d0\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d5452f06-589b-4bfc-9daa-e5104055d5b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "719" @@ -945,7 +1001,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:30 GMT" + "Thu, 16 Mar 2017 23:55:03 GMT" ], "Pragma": [ "no-cache" @@ -958,29 +1014,29 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8da38886-e9cd-47b4-b357-5fae8a3f0ed3" + "da38224c-7716-40c4-80c7-b5a23e2d3fd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/8da38886-e9cd-47b4-b357-5fae8a3f0ed3?api-version=2016-06-01" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/da38224c-7716-40c4-80c7-b5a23e2d3fd2?api-version=2016-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "1740ca82-fe1f-4350-abc7-017ef9d48b0c" + "d9692909-151f-4dda-be3c-e204df50b470" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153431Z:1740ca82-fe1f-4350-abc7-017ef9d48b0c" + "CENTRALUS:20170316T235503Z:d9692909-151f-4dda-be3c-e204df50b470" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/8da38886-e9cd-47b4-b357-5fae8a3f0ed3?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhkYTM4ODg2LWU5Y2QtNDdiNC1iMzU3LTVmYWU4YTNmMGVkMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/da38224c-7716-40c4-80c7-b5a23e2d3fd2?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhMzgyMjRjLTc3MTYtNDBjNC04MGM3LWI1YTIzZTJkM2ZkMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1001,7 +1057,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:00 GMT" + "Thu, 16 Mar 2017 23:55:34 GMT" ], "Pragma": [ "no-cache" @@ -1017,19 +1073,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1f55caa-a929-4beb-b58e-82a59cb60ba4" + "4183fe67-52d8-47ad-b325-4afdc5deb0ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14998" ], "x-ms-correlation-request-id": [ - "e88c4b1c-769c-47d8-a1bf-299cb2b0ba9c" + "0599ffd8-956a-44c1-bb2b-551cde917f28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153501Z:e88c4b1c-769c-47d8-a1bf-299cb2b0ba9c" + "CENTRALUS:20170316T235534Z:0599ffd8-956a-44c1-bb2b-551cde917f28" ] }, "StatusCode": 200 @@ -1041,7 +1097,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7890c050-2a1b-4b30-8ddb-21a2fbacbe20" + "441b8a63-d832-4eb8-a6fc-7e7e8b5ce2d8" ], "accept-language": [ "en-US" @@ -1066,7 +1122,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:01 GMT" + "Thu, 16 Mar 2017 23:55:35 GMT" ], "Pragma": [ "no-cache" @@ -1075,13 +1131,13 @@ "gateway" ], "x-ms-request-id": [ - "9f8316ba-bdcb-42f1-a2e9-adc096379d32" + "5f308394-43f0-4923-b78a-a92943a8142b" ], "x-ms-correlation-request-id": [ - "9f8316ba-bdcb-42f1-a2e9-adc096379d32" + "5f308394-43f0-4923-b78a-a92943a8142b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153502Z:9f8316ba-bdcb-42f1-a2e9-adc096379d32" + "CENTRALUS:20170316T235536Z:5f308394-43f0-4923-b78a-a92943a8142b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1096,7 +1152,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a53e297-dea7-48e0-a016-f711bc113589" + "f202c414-18be-4825-9e0d-441a980b032a" ], "accept-language": [ "en-US" @@ -1106,7 +1162,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1118,7 +1174,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:35 GMT" + "Thu, 16 Mar 2017 23:56:11 GMT" ], "Pragma": [ "no-cache" @@ -1127,7 +1183,7 @@ "chunked" ], "ETag": [ - "W/\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\"" + "W/\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1137,19 +1193,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "81d5f5e3-1772-4b20-850b-9f62dbb40195" + "a3e9b517-ca38-4268-95d0-2e1bb0d51bdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14992" ], "x-ms-correlation-request-id": [ - "6341deb3-f781-42e4-b679-df4c9bce09ba" + "06145969-71ed-4e0d-bd60-c7e7f0e7888a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153536Z:6341deb3-f781-42e4-b679-df4c9bce09ba" + "CENTRALUS:20170316T235611Z:06145969-71ed-4e0d-bd60-c7e7f0e7888a" ] }, "StatusCode": 200 @@ -1167,7 +1223,7 @@ "402" ], "x-ms-client-request-id": [ - "038a2f8e-f4c7-4bdd-b3b4-932d80d76796" + "0e8a3276-81ee-4e60-8b18-ecb4b48711ad" ], "accept-language": [ "en-US" @@ -1177,7 +1233,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"ddab5f9b-96a4-4a5f-9719-10c450c4ad0b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6649a8b2-540c-4ad7-925d-65d64b5db865\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"ddab5f9b-96a4-4a5f-9719-10c450c4ad0b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"797b4eb5-e707-4ad0-8fc5-1690fa0f05f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0d7e3a1c-f1ae-48dd-b7fc-db48e2bf4107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"797b4eb5-e707-4ad0-8fc5-1690fa0f05f0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1094" @@ -1192,7 +1248,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:05 GMT" + "Thu, 16 Mar 2017 23:55:38 GMT" ], "Pragma": [ "no-cache" @@ -1205,29 +1261,29 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ae38e65f-0430-488a-a145-b5de0e17f282" + "57af5769-82f8-40d6-91ea-5f7d09bacb43" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/ae38e65f-0430-488a-a145-b5de0e17f282?api-version=2016-06-01" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/57af5769-82f8-40d6-91ea-5f7d09bacb43?api-version=2016-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "3710b103-0229-43b0-8c9e-17ccfbbd6d15" + "be961991-d321-4b14-afba-baddd540d97b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153505Z:3710b103-0229-43b0-8c9e-17ccfbbd6d15" + "CENTRALUS:20170316T235539Z:be961991-d321-4b14-afba-baddd540d97b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/ae38e65f-0430-488a-a145-b5de0e17f282?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FlMzhlNjVmLTA0MzAtNDg4YS1hMTQ1LWI1ZGUwZTE3ZjI4Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/57af5769-82f8-40d6-91ea-5f7d09bacb43?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU3YWY1NzY5LTgyZjgtNDBkNi05MWVhLTVmN2QwOWJhY2I0Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1248,7 +1304,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:35 GMT" + "Thu, 16 Mar 2017 23:56:10 GMT" ], "Pragma": [ "no-cache" @@ -1264,19 +1320,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "316fb40a-193a-4ee2-b0ac-d7eb6f6c4525" + "2650f11a-c695-491f-b661-be86f2e38377" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14994" ], "x-ms-correlation-request-id": [ - "aeb283ac-6083-4c92-ab28-b60e89555c2c" + "f75812ee-69d5-4d96-a329-db45efe4e0bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153536Z:aeb283ac-6083-4c92-ab28-b60e89555c2c" + "CENTRALUS:20170316T235610Z:f75812ee-69d5-4d96-a329-db45efe4e0bd" ] }, "StatusCode": 200 @@ -1292,7 +1348,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6649a8b2-540c-4ad7-925d-65d64b5db865\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d7e3a1c-f1ae-48dd-b7fc-db48e2bf4107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1304,7 +1360,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:35 GMT" + "Thu, 16 Mar 2017 23:56:10 GMT" ], "Pragma": [ "no-cache" @@ -1313,7 +1369,7 @@ "chunked" ], "ETag": [ - "W/\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\"" + "W/\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1323,19 +1379,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9d194060-5591-4d5c-8e48-e981833efdb5" + "25391c5d-ffc5-4a1d-acc4-2b1aa5ea9297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14993" ], "x-ms-correlation-request-id": [ - "0a078aca-adba-4af4-844a-640177b74ef0" + "afac5d3f-e60d-47b8-94bf-cfa7166200e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153536Z:0a078aca-adba-4af4-844a-640177b74ef0" + "CENTRALUS:20170316T235610Z:afac5d3f-e60d-47b8-94bf-cfa7166200e3" ] }, "StatusCode": 200 @@ -1347,7 +1403,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e8a88d6-acaf-4e10-ae74-5e10692f2b96" + "db8ac787-6770-44a3-9f56-528fa32e27b0" ], "accept-language": [ "en-US" @@ -1372,7 +1428,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:37 GMT" + "Thu, 16 Mar 2017 23:56:11 GMT" ], "Pragma": [ "no-cache" @@ -1381,13 +1437,13 @@ "gateway" ], "x-ms-request-id": [ - "c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + "3535f7f3-fb10-4efd-96d5-760388fe5dc1" ], "x-ms-correlation-request-id": [ - "c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + "3535f7f3-fb10-4efd-96d5-760388fe5dc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153537Z:c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + "CENTRALUS:20170316T235611Z:3535f7f3-fb10-4efd-96d5-760388fe5dc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1406,7 +1462,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59eca21d-312d-4325-b491-07bb85259262\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dq3h2dno4hourn521neofp0bah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1418,7 +1474,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:40 GMT" + "Thu, 16 Mar 2017 23:56:16 GMT" ], "Pragma": [ "no-cache" @@ -1427,7 +1483,7 @@ "chunked" ], "ETag": [ - "W/\"534832b1-f3a9-46c2-9f91-9d86527c3df1\"" + "W/\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1437,19 +1493,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36694866-cffd-411f-9797-ca68d0d8375f" + "8c5c927b-323c-42e5-9aeb-c1ac85e335ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14990" ], "x-ms-correlation-request-id": [ - "9a105f62-e6b6-4c2a-ae8f-4701f50e8623" + "e49fb3b7-d2c3-4ea2-b7db-d25dfe7192a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153541Z:9a105f62-e6b6-4c2a-ae8f-4701f50e8623" + "CENTRALUS:20170316T235616Z:e49fb3b7-d2c3-4ea2-b7db-d25dfe7192a1" ] }, "StatusCode": 200 @@ -1461,7 +1517,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c51934a0-036b-4e86-927b-04b7100f24cf" + "91aa11dd-0aaa-4cf4-8460-98fa62fce2d8" ], "accept-language": [ "en-US" @@ -1471,7 +1527,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59eca21d-312d-4325-b491-07bb85259262\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dq3h2dno4hourn521neofp0bah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1483,7 +1539,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:41 GMT" + "Thu, 16 Mar 2017 23:56:16 GMT" ], "Pragma": [ "no-cache" @@ -1492,7 +1548,7 @@ "chunked" ], "ETag": [ - "W/\"534832b1-f3a9-46c2-9f91-9d86527c3df1\"" + "W/\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1502,19 +1558,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a5978243-e842-49a3-9ddd-78c9128d2a51" + "9772c867-54fc-4f03-b1e1-2ef8771f1ad6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14989" ], "x-ms-correlation-request-id": [ - "fbd7aed1-089e-437e-b08f-1a6c58169851" + "3aeb312b-7d67-4dc6-b5ad-0c21e6ad5130" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153541Z:fbd7aed1-089e-437e-b08f-1a6c58169851" + "CENTRALUS:20170316T235616Z:3aeb312b-7d67-4dc6-b5ad-0c21e6ad5130" ] }, "StatusCode": 200 @@ -1523,7 +1579,7 @@ "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n }\r\n },\r\n \"name\": \"ip5913\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn5913\",\r\n \"etag\": \"W/\\\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\\\"\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n }\r\n },\r\n \"name\": \"ip5913\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1532,7 +1588,7 @@ "715" ], "x-ms-client-request-id": [ - "cf715dbd-2162-48cc-a5e0-30b6c701bb70" + "16877f10-cd9d-4c92-8ad5-ceb65da566aa" ], "accept-language": [ "en-US" @@ -1542,7 +1598,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59eca21d-312d-4325-b491-07bb85259262\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dq3h2dno4hourn521neofp0bah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1481" @@ -1557,7 +1613,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:40 GMT" + "Thu, 16 Mar 2017 23:56:15 GMT" ], "Pragma": [ "no-cache" @@ -1567,22 +1623,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c4728559-db3c-49a3-9e3a-173c398d8d16" + "c8861c8e-1f27-4a41-978a-a1994f813194" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/c4728559-db3c-49a3-9e3a-173c398d8d16?api-version=2016-06-01" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/c8861c8e-1f27-4a41-978a-a1994f813194?api-version=2016-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "5dea3e7a-db1e-4a10-9dfc-9484d4f905b7" + "56deaa4b-7878-49c9-a912-2746c3b8431e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153540Z:5dea3e7a-db1e-4a10-9dfc-9484d4f905b7" + "CENTRALUS:20170316T235615Z:56deaa4b-7878-49c9-a912-2746c3b8431e" ] }, "StatusCode": 201 @@ -1594,7 +1650,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31181cf7-3d08-41fb-aafa-6ae4b73b1034" + "a042af79-4541-4e98-a13b-dba21997a4b7" ], "accept-language": [ "en-US" @@ -1619,7 +1675,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:41 GMT" + "Thu, 16 Mar 2017 23:56:18 GMT" ], "Pragma": [ "no-cache" @@ -1628,13 +1684,13 @@ "gateway" ], "x-ms-request-id": [ - "394b6141-07a5-453e-9401-68952659e867" + "c73d699b-aa31-4980-9d71-26c1dd731458" ], "x-ms-correlation-request-id": [ - "394b6141-07a5-453e-9401-68952659e867" + "c73d699b-aa31-4980-9d71-26c1dd731458" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153542Z:394b6141-07a5-453e-9401-68952659e867" + "CENTRALUS:20170316T235618Z:c73d699b-aa31-4980-9d71-26c1dd731458" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1655,7 +1711,7 @@ "188" ], "x-ms-client-request-id": [ - "1f49fce4-ada8-449f-8ccb-f06d17125e15" + "db1ebcb8-8029-4a84-a132-41213a63fcdb" ], "accept-language": [ "en-US" @@ -1677,7 +1733,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:46 GMT" + "Thu, 16 Mar 2017 23:56:24 GMT" ], "Pragma": [ "no-cache" @@ -1699,16 +1755,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "ba6bbe97-b35c-4c5d-83ef-13a15d96c515" + "724008da-9ad9-413c-a0a8-7623d3c7717c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "3b617b5b-fc27-4a0c-95a0-3229444944a8" + "4b7c9883-fa42-4849-8383-4b23fc19198e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153547Z:3b617b5b-fc27-4a0c-95a0-3229444944a8" + "CENTRALUS:20170316T235624Z:4b7c9883-fa42-4849-8383-4b23fc19198e" ] }, "StatusCode": 200 @@ -1726,7 +1782,7 @@ "1244" ], "x-ms-client-request-id": [ - "9e43aa08-09af-4cbc-bb8f-88e28480ea93" + "42a0067e-21c2-4ab3-af2d-c4375c584494" ], "accept-language": [ "en-US" @@ -1736,7 +1792,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"9700a314-4905-4f85-b1d2-6a3095bfa18e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1666" @@ -1751,7 +1807,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:49 GMT" + "Thu, 16 Mar 2017 23:56:28 GMT" ], "Pragma": [ "no-cache" @@ -1761,7 +1817,7 @@ "Microsoft-HTTPAPI/2.0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1770,16 +1826,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "88d7e8c3-bb51-411e-aa29-b31652ea04dc" + "651ef5ea-72ab-4ab9-b3a7-cea66b5065ac" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c8c1c4fc-1e57-4288-8131-95d76fe6d8a1" + "6a5e98ba-ee17-4b11-9b10-290540138df3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153550Z:c8c1c4fc-1e57-4288-8131-95d76fe6d8a1" + "CENTRALUS:20170316T235628Z:6a5e98ba-ee17-4b11-9b10-290540138df3" ] }, "StatusCode": 201 @@ -1797,7 +1853,7 @@ "1382" ], "x-ms-client-request-id": [ - "172d2834-2b44-4b27-812f-fb4da2a32c14" + "e3acf847-4ed0-4b3b-9c5b-8c2b9e7842bb" ], "accept-language": [ "en-US" @@ -1807,7 +1863,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"9700a314-4905-4f85-b1d2-6a3095bfa18e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1819,7 +1875,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:26 GMT" + "Fri, 17 Mar 2017 00:04:39 GMT" ], "Pragma": [ "no-cache" @@ -1835,7 +1891,7 @@ "Accept-Encoding" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/8f646245-0811-4c2d-a2e8-bb4c7b16f230?api-version=2016-04-30-preview" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/75dc985a-0851-4b37-9fe9-a737880b26f3?api-version=2016-04-30-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,82 +1900,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "8f646245-0811-4c2d-a2e8-bb4c7b16f230" + "75dc985a-0851-4b37-9fe9-a737880b26f3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "e38ae6f2-c276-4d60-8027-45959808f569" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170316T154427Z:e38ae6f2-c276-4d60-8027-45959808f569" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 16 Mar 2017 15:36:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" - ], - "x-ms-request-id": [ - "fc5000e3-2c8f-4484-b7a1-407cc1aaa24f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "727a4083-4d42-4a30-bf71-e75c374e159a" + "70f30bd7-75ca-4355-ae43-aad2be6b00a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153621Z:727a4083-4d42-4a30-bf71-e75c374e159a" + "CENTRALUS:20170317T000440Z:70f30bd7-75ca-4355-ae43-aad2be6b00a5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1928,7 +1925,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1940,7 +1937,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:36:51 GMT" + "Thu, 16 Mar 2017 23:56:59 GMT" ], "Pragma": [ "no-cache" @@ -1962,23 +1959,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "f1b927b7-578a-4afc-85e7-eb8fb5ab3525" + "dd1fe3a7-0680-4ee3-a061-2dea7ad71d79" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14994" ], "x-ms-correlation-request-id": [ - "13f6aa11-951f-4f11-bb2e-67acc8345812" + "167268f0-e3e4-4cd8-8698-44cd5bd95ae3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153651Z:13f6aa11-951f-4f11-bb2e-67acc8345812" + "CENTRALUS:20170316T235659Z:167268f0-e3e4-4cd8-8698-44cd5bd95ae3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1987,7 +1984,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1999,7 +1996,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:37:20 GMT" + "Thu, 16 Mar 2017 23:57:29 GMT" ], "Pragma": [ "no-cache" @@ -2021,23 +2018,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "62fd83e5-a5fd-4485-b100-b3958fe0b4b8" + "0ebbfca6-be90-4636-ae33-a1cf2f32c588" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14993" ], "x-ms-correlation-request-id": [ - "3cd13bd8-7c47-4a76-9e13-6c1d77dbd5dd" + "5c173ed7-b25d-4d9c-a3d0-c38b891edb73" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153721Z:3cd13bd8-7c47-4a76-9e13-6c1d77dbd5dd" + "CENTRALUS:20170316T235730Z:5c173ed7-b25d-4d9c-a3d0-c38b891edb73" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2046,7 +2043,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2058,7 +2055,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:37:50 GMT" + "Thu, 16 Mar 2017 23:57:59 GMT" ], "Pragma": [ "no-cache" @@ -2080,23 +2077,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "432c79d2-ab49-4a72-ac36-564dd2ec0c33" + "787611b9-99d6-47d7-af98-d4ed468ef9f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14992" ], "x-ms-correlation-request-id": [ - "7213fa32-9a29-4505-949f-47ab0e9734cd" + "9ba57079-cebb-4860-9926-1e88d2120484" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153751Z:7213fa32-9a29-4505-949f-47ab0e9734cd" + "CENTRALUS:20170316T235800Z:9ba57079-cebb-4860-9926-1e88d2120484" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2102,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2117,7 +2114,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:38:20 GMT" + "Thu, 16 Mar 2017 23:58:30 GMT" ], "Pragma": [ "no-cache" @@ -2139,23 +2136,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "37f830ef-7134-46f6-aa3f-7f0db7594357" + "2018fbbb-cc6a-47c9-8307-0600b404c124" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14991" ], "x-ms-correlation-request-id": [ - "3c2826e8-31de-458f-9757-92b884390736" + "278e8cf1-0a18-43a9-a7da-6b9e9f7f5a66" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153821Z:3c2826e8-31de-458f-9757-92b884390736" + "CENTRALUS:20170316T235830Z:278e8cf1-0a18-43a9-a7da-6b9e9f7f5a66" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2164,7 +2161,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2176,7 +2173,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:38:51 GMT" + "Thu, 16 Mar 2017 23:59:01 GMT" ], "Pragma": [ "no-cache" @@ -2198,23 +2195,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "c8dd66f2-9b48-42bc-9f48-43429c8adb92" + "0efd1abe-9701-432b-bc74-dbc3f208475d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14989" ], "x-ms-correlation-request-id": [ - "e28068be-8c02-4a56-9425-bb7c3095434f" + "3f77b9c1-de46-44ba-a210-c428603d1f87" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153851Z:e28068be-8c02-4a56-9425-bb7c3095434f" + "CENTRALUS:20170316T235901Z:3f77b9c1-de46-44ba-a210-c428603d1f87" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2223,7 +2220,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2235,7 +2232,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:39:21 GMT" + "Thu, 16 Mar 2017 23:59:31 GMT" ], "Pragma": [ "no-cache" @@ -2257,23 +2254,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "83de1fd7-0216-47a2-baf7-866117034fae" + "d06a6bc2-869a-4872-922c-7ac4aaba0f42" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14988" ], "x-ms-correlation-request-id": [ - "674b5d0d-3957-4fc0-aafb-2590410c4887" + "03f0b875-8567-4ce6-9a31-faad809e2431" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153922Z:674b5d0d-3957-4fc0-aafb-2590410c4887" + "CENTRALUS:20170316T235931Z:03f0b875-8567-4ce6-9a31-faad809e2431" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2282,7 +2279,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2294,7 +2291,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:39:52 GMT" + "Fri, 17 Mar 2017 00:00:01 GMT" ], "Pragma": [ "no-cache" @@ -2316,23 +2313,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "16798955-fef3-4486-a292-869a3a71aee7" + "f522f540-e715-44e2-a6a1-488346f5395d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14987" ], "x-ms-correlation-request-id": [ - "2d0de45d-bb95-48d5-86af-a86a3ef26c9d" + "764c74ac-156e-4892-8c88-abac4178e138" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153952Z:2d0de45d-bb95-48d5-86af-a86a3ef26c9d" + "CENTRALUS:20170317T000002Z:764c74ac-156e-4892-8c88-abac4178e138" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2341,7 +2338,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2353,7 +2350,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:40:22 GMT" + "Fri, 17 Mar 2017 00:00:31 GMT" ], "Pragma": [ "no-cache" @@ -2375,23 +2372,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "11e42ce0-9f34-4311-a463-c1e8a9931623" + "b7b0b40b-b1b2-45ee-a2f3-204c27cb716f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14986" ], "x-ms-correlation-request-id": [ - "9170548e-7ac9-4ced-8379-3f0030bd84b2" + "95886857-9a2a-499f-bea8-44de725e42b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154022Z:9170548e-7ac9-4ced-8379-3f0030bd84b2" + "CENTRALUS:20170317T000032Z:95886857-9a2a-499f-bea8-44de725e42b6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2400,7 +2397,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2412,7 +2409,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:40:52 GMT" + "Fri, 17 Mar 2017 00:01:02 GMT" ], "Pragma": [ "no-cache" @@ -2434,23 +2431,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "35a2028e-7473-40ec-853a-59511a8a5af0" + "e112ecfe-8124-417e-be84-94934c294210" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14985" ], "x-ms-correlation-request-id": [ - "7f5c6c8b-75b4-4a3f-be75-e6ef944bed29" + "5d2df04a-1b7d-4ecc-9816-ed3285f180c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154052Z:7f5c6c8b-75b4-4a3f-be75-e6ef944bed29" + "CENTRALUS:20170317T000103Z:5d2df04a-1b7d-4ecc-9816-ed3285f180c7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2459,7 +2456,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2471,7 +2468,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:41:21 GMT" + "Fri, 17 Mar 2017 00:01:33 GMT" ], "Pragma": [ "no-cache" @@ -2493,23 +2490,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "d2d6e687-52ed-4d7f-97a9-2969969f0e26" + "1cba5124-38d9-49cf-8973-18f11c702f19" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14984" ], "x-ms-correlation-request-id": [ - "c049ae64-f685-4632-afe4-8da38af04fba" + "fb7bd68e-3848-4bcd-bad2-f8b0b4f68aca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154122Z:c049ae64-f685-4632-afe4-8da38af04fba" + "CENTRALUS:20170317T000133Z:fb7bd68e-3848-4bcd-bad2-f8b0b4f68aca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2518,7 +2515,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2530,7 +2527,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:41:53 GMT" + "Fri, 17 Mar 2017 00:02:03 GMT" ], "Pragma": [ "no-cache" @@ -2552,23 +2549,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "756cf451-dc4b-4749-816a-776467d2524c" + "6006dfbf-9b4d-4130-a097-ce7f1cca9ebc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14983" ], "x-ms-correlation-request-id": [ - "dee21388-e85e-402d-9bfc-896090432a71" + "fcc07487-938f-442a-8321-f4ee187a312d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154153Z:dee21388-e85e-402d-9bfc-896090432a71" + "CENTRALUS:20170317T000203Z:fcc07487-938f-442a-8321-f4ee187a312d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2577,7 +2574,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2589,7 +2586,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:42:23 GMT" + "Fri, 17 Mar 2017 00:02:33 GMT" ], "Pragma": [ "no-cache" @@ -2611,23 +2608,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "60af8a07-8416-42df-a454-bf3181da457d" + "d4a5159a-6bad-499f-a90b-437880b45cec" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14981" ], "x-ms-correlation-request-id": [ - "de759402-14b6-45f6-95a8-6323e4a4c5fb" + "bdfb153e-595d-4510-9f60-0b192c80a36d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154223Z:de759402-14b6-45f6-95a8-6323e4a4c5fb" + "CENTRALUS:20170317T000234Z:bdfb153e-595d-4510-9f60-0b192c80a36d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2636,7 +2633,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2648,7 +2645,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:42:53 GMT" + "Fri, 17 Mar 2017 00:03:03 GMT" ], "Pragma": [ "no-cache" @@ -2670,23 +2667,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "aa6a10db-677b-403f-8329-a4284840b1c4" + "4bb6fdc9-26b0-46e4-94cf-da639b072114" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14980" ], "x-ms-correlation-request-id": [ - "aaef9ee7-4cf4-48c2-bf18-1aceb115bace" + "e2c04aaf-dd63-4ccb-9900-8a9b8f0024aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154253Z:aaef9ee7-4cf4-48c2-bf18-1aceb115bace" + "CENTRALUS:20170317T000304Z:e2c04aaf-dd63-4ccb-9900-8a9b8f0024aa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,7 +2692,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2707,7 +2704,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:43:23 GMT" + "Fri, 17 Mar 2017 00:03:34 GMT" ], "Pragma": [ "no-cache" @@ -2729,23 +2726,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "123976d8-1870-4dbb-8e68-ecb1ca3708ed" + "90b58d86-3461-4c09-bcda-db190c4db4fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14979" ], "x-ms-correlation-request-id": [ - "0b86726f-c8eb-4243-bb28-0809a771c5c0" + "3cf79597-925c-4a47-9a8c-058a2a7b1ec2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154324Z:0b86726f-c8eb-4243-bb28-0809a771c5c0" + "CENTRALUS:20170317T000335Z:3cf79597-925c-4a47-9a8c-058a2a7b1ec2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2754,7 +2751,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2766,7 +2763,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:43:54 GMT" + "Fri, 17 Mar 2017 00:04:05 GMT" ], "Pragma": [ "no-cache" @@ -2788,23 +2785,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "21848832-5333-4606-988e-40dbc76f7214" + "48c20867-e392-473d-ba42-d625f9142763" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14978" ], "x-ms-correlation-request-id": [ - "693b844d-1133-449b-a83f-a44c56f59784" + "f20425b3-6ed0-4a54-b2b7-b9e8ac7c6da1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154354Z:693b844d-1133-449b-a83f-a44c56f59784" + "CENTRALUS:20170317T000405Z:f20425b3-6ed0-4a54-b2b7-b9e8ac7c6da1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2813,7 +2810,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"endTime\": \"2017-03-16T08:44:20.1438629-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"endTime\": \"2017-03-16T17:04:22.555515-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2825,7 +2822,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:23 GMT" + "Fri, 17 Mar 2017 00:04:35 GMT" ], "Pragma": [ "no-cache" @@ -2847,16 +2844,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "bc61502f-744a-4148-a460-690410fa2b95" + "5946f9f6-ec7f-4f65-9d9f-fd56989ddcfb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14977" ], "x-ms-correlation-request-id": [ - "36e8d32d-a9b6-46a6-a3cb-51c5b5dca573" + "49830dd2-a95d-4a7d-9f85-1496a0e42411" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154424Z:36e8d32d-a9b6-46a6-a3cb-51c5b5dca573" + "CENTRALUS:20170317T000435Z:49830dd2-a95d-4a7d-9f85-1496a0e42411" ] }, "StatusCode": 200 @@ -2868,7 +2865,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5c3ec0d-db3c-48f2-9442-21c36160141a" + "ce8c3070-212e-4b7d-839b-ea0921f4388b" ], "accept-language": [ "en-US" @@ -2890,7 +2887,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:30 GMT" + "Fri, 17 Mar 2017 00:04:44 GMT" ], "Pragma": [ "no-cache" @@ -2905,13 +2902,13 @@ "1199" ], "x-ms-request-id": [ - "cd72d30a-55bc-47d9-9201-318fbcc61230" + "8da806c4-d31b-4908-aa26-b99e42bb3fbb" ], "x-ms-correlation-request-id": [ - "cd72d30a-55bc-47d9-9201-318fbcc61230" + "8da806c4-d31b-4908-aa26-b99e42bb3fbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154431Z:cd72d30a-55bc-47d9-9201-318fbcc61230" + "CENTRALUS:20170317T000445Z:8da806c4-d31b-4908-aa26-b99e42bb3fbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2942,7 +2939,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:45:01 GMT" + "Fri, 17 Mar 2017 00:05:15 GMT" ], "Pragma": [ "no-cache" @@ -2954,16 +2951,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14998" ], "x-ms-request-id": [ - "622c2276-5727-4796-a026-6e430a49454e" + "4847ea88-f6f6-4206-8004-4dc715ace10d" ], "x-ms-correlation-request-id": [ - "622c2276-5727-4796-a026-6e430a49454e" + "4847ea88-f6f6-4206-8004-4dc715ace10d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154501Z:622c2276-5727-4796-a026-6e430a49454e" + "CENTRALUS:20170317T000515Z:4847ea88-f6f6-4206-8004-4dc715ace10d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2994,7 +2991,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:45:30 GMT" + "Fri, 17 Mar 2017 00:05:45 GMT" ], "Pragma": [ "no-cache" @@ -3006,16 +3003,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-request-id": [ - "285358c0-e496-4f9d-a610-bcf70f3a745a" + "015b24d3-8371-4102-98de-0cad22d6a9a0" ], "x-ms-correlation-request-id": [ - "285358c0-e496-4f9d-a610-bcf70f3a745a" + "015b24d3-8371-4102-98de-0cad22d6a9a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154531Z:285358c0-e496-4f9d-a610-bcf70f3a745a" + "CENTRALUS:20170317T000546Z:015b24d3-8371-4102-98de-0cad22d6a9a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3046,7 +3043,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:46:01 GMT" + "Fri, 17 Mar 2017 00:06:16 GMT" ], "Pragma": [ "no-cache" @@ -3058,16 +3055,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14996" ], "x-ms-request-id": [ - "980be1f8-765c-4b02-9bbe-a26fd2744126" + "3e93bfda-79e1-4a26-bc05-327ea68bf42e" ], "x-ms-correlation-request-id": [ - "980be1f8-765c-4b02-9bbe-a26fd2744126" + "3e93bfda-79e1-4a26-bc05-327ea68bf42e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154602Z:980be1f8-765c-4b02-9bbe-a26fd2744126" + "CENTRALUS:20170317T000617Z:3e93bfda-79e1-4a26-bc05-327ea68bf42e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3098,7 +3095,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:46:31 GMT" + "Fri, 17 Mar 2017 00:06:47 GMT" ], "Pragma": [ "no-cache" @@ -3110,16 +3107,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14994" ], "x-ms-request-id": [ - "e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + "5cd1162f-9fff-4a4e-83e8-267974c73542" ], "x-ms-correlation-request-id": [ - "e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + "5cd1162f-9fff-4a4e-83e8-267974c73542" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154632Z:e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + "CENTRALUS:20170317T000647Z:5cd1162f-9fff-4a4e-83e8-267974c73542" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3150,7 +3147,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:47:02 GMT" + "Fri, 17 Mar 2017 00:07:17 GMT" ], "Pragma": [ "no-cache" @@ -3162,16 +3159,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14993" ], "x-ms-request-id": [ - "5d7b6b1d-b566-43f0-a662-91f628e60899" + "086a9d52-cdf1-408c-96b6-a105615e041c" ], "x-ms-correlation-request-id": [ - "5d7b6b1d-b566-43f0-a662-91f628e60899" + "086a9d52-cdf1-408c-96b6-a105615e041c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154703Z:5d7b6b1d-b566-43f0-a662-91f628e60899" + "CENTRALUS:20170317T000718Z:086a9d52-cdf1-408c-96b6-a105615e041c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3202,7 +3199,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:47:33 GMT" + "Fri, 17 Mar 2017 00:07:47 GMT" ], "Pragma": [ "no-cache" @@ -3214,16 +3211,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14992" ], "x-ms-request-id": [ - "28afe351-f663-4612-9f98-b328ca6cf165" + "79346707-4bbd-41dc-bdf9-940ad45fe95c" ], "x-ms-correlation-request-id": [ - "28afe351-f663-4612-9f98-b328ca6cf165" + "79346707-4bbd-41dc-bdf9-940ad45fe95c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154733Z:28afe351-f663-4612-9f98-b328ca6cf165" + "CENTRALUS:20170317T000748Z:79346707-4bbd-41dc-bdf9-940ad45fe95c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3254,7 +3251,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:48:02 GMT" + "Fri, 17 Mar 2017 00:08:19 GMT" ], "Pragma": [ "no-cache" @@ -3266,16 +3263,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14991" ], "x-ms-request-id": [ - "588d8025-e38e-49ab-8087-38d59cf2c737" + "1ff39c4f-3348-4087-84e3-ac3adc584194" ], "x-ms-correlation-request-id": [ - "588d8025-e38e-49ab-8087-38d59cf2c737" + "1ff39c4f-3348-4087-84e3-ac3adc584194" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154803Z:588d8025-e38e-49ab-8087-38d59cf2c737" + "CENTRALUS:20170317T000819Z:1ff39c4f-3348-4087-84e3-ac3adc584194" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3306,7 +3303,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:48:33 GMT" + "Fri, 17 Mar 2017 00:08:49 GMT" ], "Pragma": [ "no-cache" @@ -3318,16 +3315,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14990" ], "x-ms-request-id": [ - "ff765548-d892-457b-9c10-3094246b3617" + "4c5d4717-627c-44e1-8450-f9d53bd0541a" ], "x-ms-correlation-request-id": [ - "ff765548-d892-457b-9c10-3094246b3617" + "4c5d4717-627c-44e1-8450-f9d53bd0541a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154834Z:ff765548-d892-457b-9c10-3094246b3617" + "CENTRALUS:20170317T000850Z:4c5d4717-627c-44e1-8450-f9d53bd0541a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3358,7 +3355,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:49:03 GMT" + "Fri, 17 Mar 2017 00:09:20 GMT" ], "Pragma": [ "no-cache" @@ -3370,16 +3367,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14989" ], "x-ms-request-id": [ - "673472ff-3923-4c5b-8ef6-e6a7a78d7802" + "1cbeb2c6-f5b4-48ef-bdd6-fcf7117da560" ], "x-ms-correlation-request-id": [ - "673472ff-3923-4c5b-8ef6-e6a7a78d7802" + "1cbeb2c6-f5b4-48ef-bdd6-fcf7117da560" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154904Z:673472ff-3923-4c5b-8ef6-e6a7a78d7802" + "CENTRALUS:20170317T000920Z:1cbeb2c6-f5b4-48ef-bdd6-fcf7117da560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3410,7 +3407,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:49:34 GMT" + "Fri, 17 Mar 2017 00:09:50 GMT" ], "Pragma": [ "no-cache" @@ -3422,16 +3419,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14988" ], "x-ms-request-id": [ - "8c8aa8e6-3966-4866-aea1-12ed6b134f67" + "c3c4265e-b0e0-43de-83bf-c19017d17cc0" ], "x-ms-correlation-request-id": [ - "8c8aa8e6-3966-4866-aea1-12ed6b134f67" + "c3c4265e-b0e0-43de-83bf-c19017d17cc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154934Z:8c8aa8e6-3966-4866-aea1-12ed6b134f67" + "CENTRALUS:20170317T000951Z:c3c4265e-b0e0-43de-83bf-c19017d17cc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3462,7 +3459,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:50:05 GMT" + "Fri, 17 Mar 2017 00:10:20 GMT" ], "Pragma": [ "no-cache" @@ -3474,16 +3471,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14986" ], "x-ms-request-id": [ - "52a0757d-4122-4f74-8d68-4f3807717743" + "ada18e46-d478-460b-b7ab-e5d66eb2ae0f" ], "x-ms-correlation-request-id": [ - "52a0757d-4122-4f74-8d68-4f3807717743" + "ada18e46-d478-460b-b7ab-e5d66eb2ae0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T155005Z:52a0757d-4122-4f74-8d68-4f3807717743" + "CENTRALUS:20170317T001021Z:ada18e46-d478-460b-b7ab-e5d66eb2ae0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3514,7 +3511,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:50:35 GMT" + "Fri, 17 Mar 2017 00:10:52 GMT" ], "Pragma": [ "no-cache" @@ -3526,16 +3523,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14985" ], "x-ms-request-id": [ - "8a597e30-adbc-4861-878d-1de304a96423" + "d9a6211d-bb7f-49be-b893-a66712b92e62" ], "x-ms-correlation-request-id": [ - "8a597e30-adbc-4861-878d-1de304a96423" + "d9a6211d-bb7f-49be-b893-a66712b92e62" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T155035Z:8a597e30-adbc-4861-878d-1de304a96423" + "CENTRALUS:20170317T001052Z:d9a6211d-bb7f-49be-b893-a66712b92e62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3566,22 +3563,22 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:51:05 GMT" + "Fri, 17 Mar 2017 00:11:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14984" ], "x-ms-request-id": [ - "fc381e54-715f-4898-b9c3-6b43f2106613" + "f8e8146d-2f3a-427f-99f7-ce6d5326c04e" ], "x-ms-correlation-request-id": [ - "fc381e54-715f-4898-b9c3-6b43f2106613" + "f8e8146d-2f3a-427f-99f7-ce6d5326c04e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T155106Z:fc381e54-715f-4898-b9c3-6b43f2106613" + "CENTRALUS:20170317T001122Z:f8e8146d-2f3a-427f-99f7-ce6d5326c04e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3592,7 +3589,7 @@ ], "Names": { "CreateDefaultVMInput": [ - "Microsoft.Compute/virtualMachines9966" + "Microsoft.Compute/virtualMachines9370" ] }, "Variables": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs index 5404a8460c5b..1a57dbb86cd6 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs @@ -1,12 +1,11 @@ -using Microsoft.Azure.Management.Compute; -using Microsoft.Azure.Management.Compute.Models; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets { + using Microsoft.Azure.Management.Compute; + using Microsoft.Azure.Management.Compute.Models; + /// /// Class to extend VM class /// This class is specifically meant to assign/reinitialize/set protected members @@ -14,7 +13,7 @@ namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets public class MyVm : Microsoft.Azure.Management.Compute.Models.VirtualMachine { /// - /// Constructor + /// Constructor for creating MyVm /// /// public MyVm(VirtualMachine vm) diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs index 8a988d395d18..98c7f6648b70 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using System; -using System.Net; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Threading.Tasks; - namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets { + using System; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Threading.Tasks; + /// /// Delegating handler for test purpose /// From 96f5d7f2f8867bcf9f02150a0b76aebbb5545753 Mon Sep 17 00:00:00 2001 From: Dongjiang You Date: Fri, 17 Mar 2017 10:32:48 -0700 Subject: [PATCH 099/137] Update swagger link --- .../Microsoft.Azure.Management.ContainerRegistry/generate.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd index 60ff98f79d34..e282aa0e5cba 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd @@ -6,7 +6,7 @@ @echo off set autoRestVersion=1.0.0-Nightly20170212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-containerregistry/2017-03-01/swagger/containerregistry.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/3b0b26b4b6e3bc5e7cf3610b0866d310abb5b814/arm-containerregistry/2017-03-01/swagger/containerregistry.json" ) else ( set specFile="%1" ) From 5ef6c8368b9d70e94aa27cf93242723a1032e82a Mon Sep 17 00:00:00 2001 From: Jared Moore Date: Fri, 17 Mar 2017 11:05:01 -0700 Subject: [PATCH 100/137] Capabilities and security policy features. Also renamed several types and operations for improved clarify and consistency. Additions: - BlobAuditingPolicy APIs (e.g. Databases.CreateOrUpdateBlobAuditingPolicy) - ThreatDetectionPolicy APIs (e.g. Databases.CreateOrUpdateThreatDetectionPolicy) - Databases.ListByServer now supports $expand parameter - Capabilities APIs (e.g. Capabilities.ListByLocation) Types renamed: - ServerFirewallRule -> FirewallRule - DatabaseEditions -> DatabaseEdition - ElasticPoolEditions -> ElasticPoolEdition - ImportRequestParameters -> ImportRequest - ExportRequestParameters -> ExportRequest - ImportExportOperationResponse -> ImportExportResponse - OperationMode -> ImportOperationMode - TransparentDataEncryptionStates -> TransparentDataEncryptionStatus Types removed: - Unused types: UpgradeHint, Schema, Table, Column Operations renamed: - Servers.GetByResourceGroup -> Servers.Get - Servers.CreateOrUpdateFirewallRule -> FirewallRule.CreateOrUpdate, and similar for Get, List, and Delete - Databases.Import -> Databases.CreateImportOperation - Servers.Import -> Databases.Import - Databases.PauseDataWarehouse -> Databases.Pause - Databases.ResumeDataWarehouse -> Databases.Resume Operations removed: - Removed ImportExport operation results APIs since these are handled automatically by Azure async pattern. --- global.json | 5 +- src/ClientRuntime/global.json | 5 +- .../Generated/CapabilitiesOperations.cs | 239 +++ .../CapabilitiesOperationsExtensions.cs | 59 + .../Generated/DatabasesOperations.cs | 1673 ++++++++++++++--- .../DatabasesOperationsExtensions.cs | 441 ++++- .../Generated/ElasticPoolsOperations.cs | 121 +- .../ElasticPoolsOperationsExtensions.cs | 13 +- ...erations.cs => FirewallRulesOperations.cs} | 348 +++- .../FirewallRulesOperationsExtensions.cs | 216 +++ .../Generated/ICapabilitiesOperations.cs | 49 + .../Generated/IDatabasesOperations.cs | 242 ++- .../Generated/IElasticPoolsOperations.cs | 11 +- ...rations.cs => IFirewallRulesOperations.cs} | 71 +- .../IRecommendedElasticPoolsOperations.cs | 13 +- .../Generated/IServersOperations.cs | 190 +- .../Generated/ISqlManagementClient.cs | 28 +- .../ImportExportOperationsExtensions.cs | 174 -- .../Generated/Models/AuthenticationType.cs | 11 +- ...onStates.cs => BlobAuditingPolicyState.cs} | 15 +- .../Generated/Models/CapabilityStatus.cs | 34 + .../Generated/Models/Column.cs | 65 - .../Generated/Models/CreateMode.cs | 10 +- .../Generated/Models/Database.cs | 349 ++-- .../Models/DatabaseBlobAuditingPolicy.cs | 153 ++ ...DatabaseEditions.cs => DatabaseEdition.cs} | 14 +- .../Generated/Models/DatabaseMetric.cs | 34 +- .../Models/DatabaseSecurityAlertPolicy.cs | 173 ++ .../Generated/Models/EditionCapability.cs | 74 + .../Generated/Models/ElasticPool.cs | 48 +- .../Generated/Models/ElasticPoolActivity.cs | 101 +- .../Models/ElasticPoolDatabaseActivity.cs | 91 +- ...cPoolEditions.cs => ElasticPoolEdition.cs} | 13 +- .../Generated/Models/ElasticPoolState.cs | 9 +- ...tRequestParameters.cs => ExportRequest.cs} | 39 +- ...{ServerFirewallRule.cs => FirewallRule.cs} | 40 +- ...tExportOperationResponsePropertiesModel.cs | 114 -- ...ionResponse.cs => ImportExportResponse.cs} | 76 +- ...arameters.cs => ImportExtensionRequest.cs} | 53 +- ...tRequestParameters.cs => ImportRequest.cs} | 53 +- .../Generated/Models/LocationCapabilities.cs | 74 + .../Generated/Models/MaxSizeCapability.cs | 75 + .../Generated/Models/MaxSizeUnits.cs | 34 + .../Generated/Models/Operation.cs | 20 +- .../Generated/Models/OperationDisplay.cs | 20 +- .../Generated/Models/OperationImpact.cs | 28 +- .../Generated/Models/OperationListResult.cs | 20 +- .../Generated/Models/Page.cs | 13 +- .../{TableType.cs => PerformanceLevelUnit.cs} | 21 +- .../Generated/Models/ProxyResource.cs | 47 + .../Generated/Models/ReadScale.cs | 11 +- .../Models/RecommendedElasticPool.cs | 82 +- .../Models/RecommendedElasticPoolMetric.cs | 20 +- .../Generated/Models/RecommendedIndex.cs | 74 +- ...exActions.cs => RecommendedIndexAction.cs} | 15 +- ...ndexStates.cs => RecommendedIndexState.cs} | 15 +- ...dIndexTypes.cs => RecommendedIndexType.cs} | 15 +- .../Generated/Models/ReplicationLink.cs | 52 +- .../Generated/Models/ReplicationRole.cs | 11 +- .../Generated/Models/ReplicationState.cs | 9 +- .../Generated/Models/Resource.cs | 77 +- .../Generated/Models/RestorePoint.cs | 58 +- .../Generated/Models/RestorePointTypes.cs | 11 +- .../Generated/Models/SampleName.cs | 9 +- .../Generated/Models/Schema.cs | 75 - ... SecurityAlertPolicyEmailAccountAdmins.cs} | 25 +- .../Models/SecurityAlertPolicyState.cs | 32 + .../SecurityAlertPolicyUseServerDefault.cs | 30 + .../Generated/Models/Server.cs | 52 +- .../Generated/Models/ServerMetric.cs | 34 +- .../Generated/Models/ServerState.cs | 11 +- .../Generated/Models/ServerVersion.cs | 9 +- .../Models/ServerVersionCapability.cs | 74 + .../Generated/Models/ServiceObjective.cs | 38 +- .../Models/ServiceObjectiveCapability.cs | 104 + .../Generated/Models/ServiceObjectiveName.cs | 10 +- .../Generated/Models/ServiceTierAdvisor.cs | 66 +- .../Generated/Models/SloUsageMetric.cs | 25 +- .../Generated/Models/StorageKeyType.cs | 11 +- .../{SqlSubResource.cs => SubResource.cs} | 32 +- .../Generated/Models/Table.cs | 104 - .../Generated/Models/TrackedResource.cs | 80 + .../Models/TransparentDataEncryption.cs | 32 +- .../TransparentDataEncryptionActivity.cs | 32 +- ...ransparentDataEncryptionActivityStatus.cs} | 13 +- .../Models/TransparentDataEncryptionStatus.cs | 30 + .../Generated/Models/UpgradeHint.cs | 56 - ...UpgradeRecommendedElasticPoolProperties.cs | 137 -- .../RecommendedElasticPoolsOperations.cs | 75 +- ...mmendedElasticPoolsOperationsExtensions.cs | 19 +- .../Generated/ServersOperations.cs | 1168 +----------- .../Generated/ServersOperationsExtensions.cs | 306 +-- .../Generated/SqlManagementClient.cs | 71 +- .../SqlManagementClientExtensions.cs | 11 +- .../generate.cmd | 7 +- .../Sql.Tests/BlobAuditingTest.cs | 183 ++ .../Sql.Tests/CapabilitiesScenarioTests.cs | 58 + .../Sql.Tests/DatabaseCrudScenarioTests.cs | 53 +- .../Sql.Tests/ElasticPoolCrudScenarioTests.cs | 4 +- .../FirewallRuleCrudScenarioTests.cs | 36 +- .../Sql.Tests/ImportExportScenarioTests.cs | 26 +- .../Sql.Tests/ServerCrudScenarioTests.cs | 4 +- .../TestBlobAuditing.json | 1090 +++++++++++ .../TestServerBlobAuditing.json | 1090 +++++++++++ .../TestGetCapabilities.json | 69 + ...ransparentDataEncryptionConfiguration.json | 784 ++++++++ .../TestGetAndListDatabase.json | 2 +- .../TestServerSecurityAlert.json | 1093 +++++++++++ .../TestThreatDetection.json | 1035 ++++++++++ .../Sql.Tests/SqlTestConstants.cs | 6 +- .../Sql.Tests/ThreatDetectionTest.cs | 166 ++ .../Utilities/SqlManagementTestUtilities.cs | 27 +- .../SqlManagement/UpgradeLog.htm | Bin 0 -> 45212 bytes .../SqlManagement/global.json | 5 +- src/TestFramework/global.json | 5 +- 115 files changed, 10981 insertions(+), 3802 deletions(-) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperations.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperationsExtensions.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/{ImportExportOperations.cs => FirewallRulesOperations.cs} (65%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperationsExtensions.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ICapabilitiesOperations.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/{IImportExportOperations.cs => IFirewallRulesOperations.cs} (56%) delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{TransparentDataEncryptionStates.cs => BlobAuditingPolicyState.cs} (65%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CapabilityStatus.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{DatabaseEditions.cs => DatabaseEdition.cs} (72%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/EditionCapability.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ElasticPoolEditions.cs => ElasticPoolEdition.cs} (65%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ExportRequestParameters.cs => ExportRequest.cs} (78%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ServerFirewallRule.cs => FirewallRule.cs} (75%) delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ImportExportOperationResponse.cs => ImportExportResponse.cs} (57%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ImportExtensionRequestParameters.cs => ImportExtensionRequest.cs} (78%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ImportRequestParameters.cs => ImportRequest.cs} (66%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/LocationCapabilities.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeCapability.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeUnits.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{TableType.cs => PerformanceLevelUnit.cs} (56%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ProxyResource.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{RecommendedIndexActions.cs => RecommendedIndexAction.cs} (67%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{RecommendedIndexStates.cs => RecommendedIndexState.cs} (78%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{RecommendedIndexTypes.cs => RecommendedIndexType.cs} (71%) delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{TargetElasticPoolEditions.cs => SecurityAlertPolicyEmailAccountAdmins.cs} (51%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyState.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyUseServerDefault.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersionCapability.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveCapability.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{SqlSubResource.cs => SubResource.cs} (54%) delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TrackedResource.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{TransparentDataEncryptionActivityStates.cs => TransparentDataEncryptionActivityStatus.cs} (68%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStatus.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/CapabilitiesScenarioTests.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestBlobAuditing.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestServerBlobAuditing.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.CapabilitiesScenarioTests/TestGetCapabilities.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestDatabaseTransparentDataEncryptionConfiguration.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestServerSecurityAlert.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestThreatDetection.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs create mode 100644 src/ResourceManagement/SqlManagement/UpgradeLog.htm diff --git a/global.json b/global.json index b3bc428c4cdb..1457d8710890 100644 --- a/global.json +++ b/global.json @@ -27,5 +27,8 @@ "src/ResourceManagement/Insights/Microsoft.Azure.Insights", "src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis", "src/ResourceManagement/Monitor/Microsoft.Azure.Monitor" - ] + ], + "sdk": { + "version": "1.0.0-preview2-003121" + } } \ No newline at end of file diff --git a/src/ClientRuntime/global.json b/src/ClientRuntime/global.json index 25fb11a0a6d5..9dc789665a0e 100644 --- a/src/ClientRuntime/global.json +++ b/src/ClientRuntime/global.json @@ -1,5 +1,8 @@ { "projects": [ "Microsoft.Rest.ClientRuntime", "Microsoft.Rest.ClientRuntime.Azure.Authentication", "Microsoft.Rest.ClientRuntime.Etw", "Microsoft.Rest.ClientRuntime.Tests", "Microsoft.Rest.ClientRuntime.Azure", "Microsoft.Rest.ClientRuntime.Azure.Tests", - "Microsoft.Rest.ClientRuntime.Log4Net", "Microsoft.Rest.ClientRuntime.Tracing.Tests" ] + "Microsoft.Rest.ClientRuntime.Log4Net", "Microsoft.Rest.ClientRuntime.Tracing.Tests" ], + "sdk": { + "version": "1.0.0-preview2-003121" + } } \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperations.cs new file mode 100644 index 000000000000..e8a4332d38c4 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperations.cs @@ -0,0 +1,239 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CapabilitiesOperations operations. + /// + internal partial class CapabilitiesOperations : IServiceOperations, ICapabilitiesOperations + { + /// + /// Initializes a new instance of the CapabilitiesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CapabilitiesOperations(SqlManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the SqlManagementClient + /// + public SqlManagementClient Client { get; private set; } + + /// + /// Gets the capabilities available for the specified location. + /// + /// + /// The location id whose capabilities are retrieved. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListByLocationWithHttpMessagesAsync(string locationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (locationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "locationId"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("locationId", locationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByLocation", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationId}/capabilities").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{locationId}", System.Uri.EscapeDataString(locationId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperationsExtensions.cs new file mode 100644 index 000000000000..c181fbbc14f0 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperationsExtensions.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CapabilitiesOperations. + /// + public static partial class CapabilitiesOperationsExtensions + { + /// + /// Gets the capabilities available for the specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location id whose capabilities are retrieved. + /// + public static LocationCapabilities ListByLocation(this ICapabilitiesOperations operations, string locationId) + { + return operations.ListByLocationAsync(locationId).GetAwaiter().GetResult(); + } + + /// + /// Gets the capabilities available for the specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location id whose capabilities are retrieved. + /// + /// + /// The cancellation token. + /// + public static async Task ListByLocationAsync(this ICapabilitiesOperations operations, string locationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByLocationWithHttpMessagesAsync(locationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs index 92363832961e..41488d743cc0 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -51,8 +51,34 @@ internal DatabasesOperations(SqlManagementClient client) public SqlManagementClient Client { get; private set; } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -73,10 +99,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateImportOperationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - AzureOperationResponse _response = await BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginCreateImportOperationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -102,10 +128,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -199,9 +225,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -216,6 +242,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -253,11 +281,19 @@ internal DatabasesOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -384,9 +420,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -401,6 +437,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -448,7 +486,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -485,7 +523,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -645,9 +683,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -662,6 +700,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -709,7 +749,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -746,7 +786,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -782,10 +822,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async Task PauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task PauseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginPauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginPauseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -808,10 +848,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async Task ResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginResumeWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -899,9 +939,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -916,6 +956,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -963,7 +1005,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1000,7 +1042,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1129,9 +1171,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1146,6 +1188,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1183,11 +1227,19 @@ internal DatabasesOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1236,7 +1288,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// /// A comma separated list of child objects to expand in the response. Possible - /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. + /// properties: serviceTierAdvisors, transparentDataEncryption. /// /// /// Headers that will be added to request. @@ -1314,9 +1366,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1331,6 +1383,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1378,7 +1432,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1415,7 +1469,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1442,6 +1496,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The name of the server. /// + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, transparentDataEncryption. + /// /// /// An OData filter expression that describes a subset of databases to return. /// @@ -1466,7 +1524,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string expand = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1491,6 +1549,7 @@ internal DatabasesOperations(SqlManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); + tracingParameters.Add("expand", expand); tracingParameters.Add("filter", filter); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); @@ -1506,6 +1565,10 @@ internal DatabasesOperations(SqlManagementClient client) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } if (filter != null) { _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); @@ -1515,9 +1578,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1532,6 +1595,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1579,7 +1644,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1616,7 +1681,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1717,9 +1782,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1734,6 +1799,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1781,7 +1848,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1818,7 +1885,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1928,9 +1995,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1945,6 +2012,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1992,7 +2061,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2029,7 +2098,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2130,9 +2199,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2147,6 +2216,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2194,7 +2265,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2231,7 +2302,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2262,9 +2333,9 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the database for which setting the transparent data encryption /// applies. /// - /// - /// The status of the database transparent data encryption. Possible values - /// include: 'Enabled', 'Disabled' + /// + /// The required parameters for creating or updating transparent data + /// encryption. /// /// /// Headers that will be added to request. @@ -2287,7 +2358,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -2305,12 +2376,11 @@ internal DatabasesOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - string apiVersion = "2014-04-01"; - TransparentDataEncryption parameters = new TransparentDataEncryption(); - if (status != null) + if (parameters == null) { - parameters.Status = status; + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } + string apiVersion = "2014-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2343,9 +2413,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2360,6 +2430,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2377,7 +2449,7 @@ internal DatabasesOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -2413,7 +2485,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2450,7 +2522,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2468,7 +2540,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2569,9 +2641,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2586,6 +2658,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2633,7 +2707,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2670,7 +2744,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2771,9 +2845,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2788,6 +2862,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2835,7 +2911,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2872,7 +2948,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2890,8 +2966,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Gets a database's threat detection policy. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -2901,10 +2976,8 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the server. /// /// - /// The name of the database to import into - /// - /// - /// The required parameters for importing a Bacpac into a database. + /// The name of the database for which database Threat Detection policy is + /// defined. /// /// /// Headers that will be added to request. @@ -2927,7 +3000,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetThreatDetectionPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -2945,19 +3018,7 @@ internal DatabasesOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } string apiVersion = "2014-04-01"; - if (parameters == null) - { - parameters = new ImportExtensionRequestParameters(); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2965,17 +3026,16 @@ internal DatabasesOperations(SqlManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginImport", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetThreatDetectionPolicy", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/extensions/import").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/securityAlertPolicies/default").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); @@ -2990,9 +3050,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3007,6 +3067,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3021,12 +3083,6 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -3047,7 +3103,7 @@ internal DatabasesOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3060,7 +3116,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3082,7 +3138,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -3095,9 +3151,9 @@ internal DatabasesOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3115,7 +3171,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Exports a database to a bacpac. + /// Creates or updates a database's threat detection policy. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -3125,10 +3181,11 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the server. /// /// - /// The name of the database to be exported. + /// The name of the database for which database Threat Detection policy is + /// defined. /// /// - /// The required parameters for exporting a database. + /// The database Threat Detection policy. /// /// /// Headers that will be added to request. @@ -3151,7 +3208,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateThreatDetectionPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, DatabaseSecurityAlertPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3185,17 +3242,17 @@ internal DatabasesOperations(SqlManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginExport", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateThreatDetectionPolicy", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/securityAlertPolicies/default").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); @@ -3210,9 +3267,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3227,6 +3284,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3244,7 +3303,7 @@ internal DatabasesOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -3267,7 +3326,7 @@ internal DatabasesOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3280,7 +3339,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3302,7 +3361,7 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -3315,9 +3374,27 @@ internal DatabasesOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3335,7 +3412,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Failover the database replication link. + /// Gets a database's blob auditing policy. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -3345,10 +3422,7 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the server. /// /// - /// The name of the database that has the replication link to be failed over. - /// - /// - /// The ID of the replication link to be failed over. + /// The name of the database for which database blob audit policy is defined. /// /// /// Headers that will be added to request. @@ -3359,6 +3433,9 @@ internal DatabasesOperations(SqlManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3368,7 +3445,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginFailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetBlobAuditingPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3386,11 +3463,7 @@ internal DatabasesOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (linkId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); - } - string apiVersion = "2014-04-01"; + string apiVersion = "2015-05-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3398,22 +3471,20 @@ internal DatabasesOperations(SqlManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("linkId", linkId); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLink", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetBlobAuditingPolicy", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/failover").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/auditingSettings/default").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3424,9 +3495,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3441,6 +3512,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3475,14 +3548,22 @@ internal DatabasesOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -3502,13 +3583,31 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -3517,8 +3616,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Force failover the database replication link, which may result in data - /// loss. + /// Creates or updates a database's blob auditing policy. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -3528,10 +3626,11 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the server. /// /// - /// The name of the database that has the replication link to be failed over. + /// The name of the database for which database blob audit policy will be + /// defined. /// - /// - /// The ID of the replication link to be failed over. + /// + /// The database blob auditing policy. /// /// /// Headers that will be added to request. @@ -3542,6 +3641,9 @@ internal DatabasesOperations(SqlManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3551,7 +3653,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateBlobAuditingPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, DatabaseBlobAuditingPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3569,11 +3671,15 @@ internal DatabasesOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (linkId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - string apiVersion = "2014-04-01"; + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2015-05-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3581,22 +3687,21 @@ internal DatabasesOperations(SqlManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("linkId", linkId); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLinkAllowDataLoss", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateBlobAuditingPolicy", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/forceFailoverAllowDataLoss").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/auditingSettings/default").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3607,9 +3712,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3624,6 +3729,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3638,6 +3745,12 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -3658,14 +3771,22 @@ internal DatabasesOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -3685,22 +3806,1105 @@ internal DatabasesOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - if (_shouldTrace) + // Deserialize Response + if ((int)_statusCode == 200) { - ServiceClientTracing.Exit(_invocationId, _result); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } } - return _result; - } - - /// - /// Pauses a data warehouse. + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginImport", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateImportOperationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + if (parameters == null) + { + parameters = new ImportExtensionRequest(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateImportOperation", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/extensions/import").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Exports a database to a bacpac. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginExport", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Failover the database replication link. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database that has the replication link to be failed over. + /// + /// + /// The ID of the replication link to be failed over. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginFailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (linkId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("linkId", linkId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLink", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/failover").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Force failover the database replication link, which may result in data + /// loss. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database that has the replication link to be failed over. + /// + /// + /// The ID of the replication link to be failed over. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (linkId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("linkId", linkId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLinkAllowDataLoss", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/forceFailoverAllowDataLoss").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Pauses a data warehouse. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -3730,7 +4934,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginPauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginPauseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3761,7 +4965,7 @@ internal DatabasesOperations(SqlManagementClient client) tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPauseDataWarehouse", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPause", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -3780,9 +4984,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3797,6 +5001,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3834,11 +5040,19 @@ internal DatabasesOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -3903,7 +5117,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3934,7 +5148,7 @@ internal DatabasesOperations(SqlManagementClient client) tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginResumeDataWarehouse", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginResume", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -3953,9 +5167,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3970,6 +5184,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4007,11 +5223,19 @@ internal DatabasesOperations(SqlManagementClient client) if ((int)_statusCode != 202 && (int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -4143,9 +5367,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4160,6 +5384,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4177,7 +5403,7 @@ internal DatabasesOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -4213,7 +5439,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4250,7 +5476,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4268,7 +5494,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4287,4 +5513,3 @@ internal DatabasesOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs index a4ac85caca0e..62eaef545577 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -24,8 +24,56 @@ namespace Microsoft.Azure.Management.Sql public static partial class DatabasesOperationsExtensions { /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + public static ImportExportResponse Import(this IDatabasesOperations operations, string resourceGroupName, string serverName, ImportRequest parameters) + { + return operations.ImportAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The cancellation token. + /// + public static async Task ImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, ImportRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ImportWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The operations group for this extension method. @@ -43,14 +91,14 @@ public static partial class DatabasesOperationsExtensions /// /// The required parameters for importing a Bacpac into a database. /// - public static ImportExportOperationResponse Import(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters) + public static ImportExportResponse CreateImportOperation(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters) { - return operations.ImportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + return operations.CreateImportOperationAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The operations group for this extension method. @@ -71,9 +119,9 @@ public static ImportExportOperationResponse Import(this IDatabasesOperations ope /// /// The cancellation token. /// - public static async Task ImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateImportOperationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateImportOperationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -98,7 +146,7 @@ public static ImportExportOperationResponse Import(this IDatabasesOperations ope /// /// The required parameters for exporting a database. /// - public static ImportExportOperationResponse Export(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters) + public static ImportExportResponse Export(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequest parameters) { return operations.ExportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } @@ -125,7 +173,7 @@ public static ImportExportOperationResponse Export(this IDatabasesOperations ope /// /// The cancellation token. /// - public static async Task ExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -181,7 +229,7 @@ public static void DeleteReplicationLink(this IDatabasesOperations operations, s /// public static async Task DeleteReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -286,7 +334,7 @@ public static void FailoverReplicationLink(this IDatabasesOperations operations, /// public static async Task FailoverReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.FailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.FailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -339,7 +387,7 @@ public static void FailoverReplicationLinkAllowDataLoss(this IDatabasesOperation /// public static async Task FailoverReplicationLinkAllowDataLossAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -406,9 +454,9 @@ public static IEnumerable ListReplicationLinks(this IDatabasesO /// /// The name of the data warehouse to pause. /// - public static void PauseDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void Pause(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - operations.PauseDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + operations.PauseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// @@ -430,9 +478,9 @@ public static void PauseDataWarehouse(this IDatabasesOperations operations, stri /// /// The cancellation token. /// - public static async Task PauseDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PauseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.PauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.PauseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -451,9 +499,9 @@ public static void PauseDataWarehouse(this IDatabasesOperations operations, stri /// /// The name of the data warehouse to resume. /// - public static void ResumeDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void Resume(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - operations.ResumeDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + operations.ResumeAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// @@ -475,9 +523,9 @@ public static void ResumeDataWarehouse(this IDatabasesOperations operations, str /// /// The cancellation token. /// - public static async Task ResumeDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ResumeAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.ResumeWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -628,7 +676,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// public static async Task DeleteAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -649,7 +697,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// /// /// A comma separated list of child objects to expand in the response. Possible - /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. + /// properties: serviceTierAdvisors, transparentDataEncryption. /// public static Database Get(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string expand = default(string)) { @@ -674,7 +722,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// /// /// A comma separated list of child objects to expand in the response. Possible - /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. + /// properties: serviceTierAdvisors, transparentDataEncryption. /// /// /// The cancellation token. @@ -700,12 +748,16 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// /// The name of the server. /// + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, transparentDataEncryption. + /// /// /// An OData filter expression that describes a subset of databases to return. /// - public static IEnumerable ListByServer(this IDatabasesOperations operations, string resourceGroupName, string serverName, string filter = default(string)) + public static IEnumerable ListByServer(this IDatabasesOperations operations, string resourceGroupName, string serverName, string expand = default(string), string filter = default(string)) { - return operations.ListByServerAsync(resourceGroupName, serverName, filter).GetAwaiter().GetResult(); + return operations.ListByServerAsync(resourceGroupName, serverName, expand, filter).GetAwaiter().GetResult(); } /// @@ -721,15 +773,19 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// /// The name of the server. /// + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, transparentDataEncryption. + /// /// /// An OData filter expression that describes a subset of databases to return. /// /// /// The cancellation token. /// - public static async Task> ListByServerAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServerAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string expand = default(string), string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, filter, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, expand, filter, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -902,13 +958,13 @@ public static IEnumerable ListServiceTierAdvisors(this IData /// The name of the database for which setting the transparent data encryption /// applies. /// - /// - /// The status of the database transparent data encryption. Possible values - /// include: 'Enabled', 'Disabled' + /// + /// The required parameters for creating or updating transparent data + /// encryption. /// - public static TransparentDataEncryption CreateOrUpdateTransparentDataEncryptionConfiguration(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?)) + public static TransparentDataEncryption CreateOrUpdateTransparentDataEncryptionConfiguration(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters) { - return operations.CreateOrUpdateTransparentDataEncryptionConfigurationAsync(resourceGroupName, serverName, databaseName, status).GetAwaiter().GetResult(); + return operations.CreateOrUpdateTransparentDataEncryptionConfigurationAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } /// @@ -928,16 +984,16 @@ public static IEnumerable ListServiceTierAdvisors(this IData /// The name of the database for which setting the transparent data encryption /// applies. /// - /// - /// The status of the database transparent data encryption. Possible values - /// include: 'Enabled', 'Disabled' + /// + /// The required parameters for creating or updating transparent data + /// encryption. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateTransparentDataEncryptionConfigurationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateTransparentDataEncryptionConfigurationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, status, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1040,8 +1096,266 @@ public static IEnumerable ListTransparentData } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Gets a database's threat detection policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy is + /// defined. + /// + public static DatabaseSecurityAlertPolicy GetThreatDetectionPolicy(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + { + return operations.GetThreatDetectionPolicyAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Gets a database's threat detection policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy is + /// defined. + /// + /// + /// The cancellation token. + /// + public static async Task GetThreatDetectionPolicyAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetThreatDetectionPolicyWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates a database's threat detection policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy is + /// defined. + /// + /// + /// The database Threat Detection policy. + /// + public static DatabaseSecurityAlertPolicy CreateOrUpdateThreatDetectionPolicy(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, DatabaseSecurityAlertPolicy parameters) + { + return operations.CreateOrUpdateThreatDetectionPolicyAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a database's threat detection policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy is + /// defined. + /// + /// + /// The database Threat Detection policy. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateThreatDetectionPolicyAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, DatabaseSecurityAlertPolicy parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateThreatDetectionPolicyWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a database's blob auditing policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy is defined. + /// + public static DatabaseBlobAuditingPolicy GetBlobAuditingPolicy(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + { + return operations.GetBlobAuditingPolicyAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Gets a database's blob auditing policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy is defined. + /// + /// + /// The cancellation token. + /// + public static async Task GetBlobAuditingPolicyAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetBlobAuditingPolicyWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates a database's blob auditing policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy will be + /// defined. + /// + /// + /// The database blob auditing policy. + /// + public static DatabaseBlobAuditingPolicy CreateOrUpdateBlobAuditingPolicy(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, DatabaseBlobAuditingPolicy parameters) + { + return operations.CreateOrUpdateBlobAuditingPolicyAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a database's blob auditing policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy will be + /// defined. + /// + /// + /// The database blob auditing policy. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateBlobAuditingPolicyAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, DatabaseBlobAuditingPolicy parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateBlobAuditingPolicyWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + public static ImportExportResponse BeginImport(this IDatabasesOperations operations, string resourceGroupName, string serverName, ImportRequest parameters) + { + return operations.BeginImportAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The cancellation token. + /// + public static async Task BeginImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, ImportRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The operations group for this extension method. @@ -1059,14 +1373,14 @@ public static IEnumerable ListTransparentData /// /// The required parameters for importing a Bacpac into a database. /// - public static ImportExportOperationResponse BeginImport(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters) + public static ImportExportResponse BeginCreateImportOperation(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters) { - return operations.BeginImportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + return operations.BeginCreateImportOperationAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The operations group for this extension method. @@ -1087,9 +1401,9 @@ public static ImportExportOperationResponse BeginImport(this IDatabasesOperation /// /// The cancellation token. /// - public static async Task BeginImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginCreateImportOperationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateImportOperationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1114,7 +1428,7 @@ public static ImportExportOperationResponse BeginImport(this IDatabasesOperation /// /// The required parameters for exporting a database. /// - public static ImportExportOperationResponse BeginExport(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters) + public static ImportExportResponse BeginExport(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequest parameters) { return operations.BeginExportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } @@ -1141,7 +1455,7 @@ public static ImportExportOperationResponse BeginExport(this IDatabasesOperation /// /// The cancellation token. /// - public static async Task BeginExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.BeginExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -1197,7 +1511,7 @@ public static void BeginFailoverReplicationLink(this IDatabasesOperations operat /// public static async Task BeginFailoverReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginFailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginFailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1250,7 +1564,7 @@ public static void BeginFailoverReplicationLinkAllowDataLoss(this IDatabasesOper /// public static async Task BeginFailoverReplicationLinkAllowDataLossAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1269,9 +1583,9 @@ public static void BeginFailoverReplicationLinkAllowDataLoss(this IDatabasesOper /// /// The name of the data warehouse to pause. /// - public static void BeginPauseDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void BeginPause(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - operations.BeginPauseDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + operations.BeginPauseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// @@ -1293,9 +1607,9 @@ public static void BeginPauseDataWarehouse(this IDatabasesOperations operations, /// /// The cancellation token. /// - public static async Task BeginPauseDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginPauseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginPauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginPauseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1314,9 +1628,9 @@ public static void BeginPauseDataWarehouse(this IDatabasesOperations operations, /// /// The name of the data warehouse to resume. /// - public static void BeginResumeDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void BeginResume(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - operations.BeginResumeDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + operations.BeginResumeAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// @@ -1338,9 +1652,9 @@ public static void BeginResumeDataWarehouse(this IDatabasesOperations operations /// /// The cancellation token. /// - public static async Task BeginResumeDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginResumeAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginResumeWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1403,4 +1717,3 @@ public static Database BeginCreateOrUpdate(this IDatabasesOperations operations, } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs index b13ca86960b2..c32acd9fd7fe 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -160,9 +160,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -177,6 +177,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -214,11 +216,19 @@ internal ElasticPoolsOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -336,9 +346,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -353,6 +363,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -400,7 +412,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -437,7 +449,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -529,9 +541,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -546,6 +558,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -593,7 +607,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -630,7 +644,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -731,9 +745,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -748,6 +762,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -795,7 +811,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -832,7 +848,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -933,9 +949,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -950,6 +966,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -997,7 +1015,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1034,7 +1052,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1144,9 +1162,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1161,6 +1179,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1208,7 +1228,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1245,7 +1265,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1346,9 +1366,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1363,6 +1383,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1410,7 +1432,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1447,7 +1469,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1560,9 +1582,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1577,6 +1599,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1594,7 +1618,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1630,7 +1654,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1667,7 +1691,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1685,7 +1709,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1704,4 +1728,3 @@ internal ElasticPoolsOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs index 032d79fb0997..5b0f1409861c 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -119,7 +119,7 @@ public static void Delete(this IElasticPoolsOperations operations, string resour /// public static async Task DeleteAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -466,4 +466,3 @@ public static ElasticPool BeginCreateOrUpdate(this IElasticPoolsOperations opera } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperations.cs similarity index 65% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperations.cs index 9f4bc0efd326..eadef528ad4a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.Sql using System.Threading.Tasks; /// - /// ImportExportOperations operations. + /// FirewallRulesOperations operations. /// - internal partial class ImportExportOperations : IServiceOperations, IImportExportOperations + internal partial class FirewallRulesOperations : IServiceOperations, IFirewallRulesOperations { /// - /// Initializes a new instance of the ImportExportOperations class. + /// Initializes a new instance of the FirewallRulesOperations class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ internal partial class ImportExportOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal ImportExportOperations(SqlManagementClient client) + internal FirewallRulesOperations(SqlManagementClient client) { if (client == null) { @@ -51,7 +51,7 @@ internal ImportExportOperations(SqlManagementClient client) public SqlManagementClient Client { get; private set; } /// - /// The status of an import operation given the operation ID. + /// Creates or updates a firewall rule. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -60,6 +60,12 @@ internal ImportExportOperations(SqlManagementClient client) /// /// The name of the server. /// + /// + /// The name of the firewall rule. + /// + /// + /// The required parameters for creating or updating a firewall rule. + /// /// /// Headers that will be added to request. /// @@ -81,7 +87,7 @@ internal ImportExportOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, FirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -95,6 +101,18 @@ internal ImportExportOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } + if (firewallRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } string apiVersion = "2014-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -106,15 +124,18 @@ internal ImportExportOperations(SqlManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); + tracingParameters.Add("firewallRuleName", firewallRuleName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/importExportOperationResults").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -125,9 +146,9 @@ internal ImportExportOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -142,6 +163,8 @@ internal ImportExportOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -156,6 +179,12 @@ internal ImportExportOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -176,7 +205,7 @@ internal ImportExportOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -189,7 +218,7 @@ internal ImportExportOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -211,7 +240,7 @@ internal ImportExportOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -224,9 +253,27 @@ internal ImportExportOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -244,7 +291,190 @@ internal ImportExportOperations(SqlManagementClient client) } /// - /// The of an import operation given the operation ID. + /// Deletes a firewall rule. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (firewallRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("firewallRuleName", firewallRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a firewall rule. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -253,8 +483,8 @@ internal ImportExportOperations(SqlManagementClient client) /// /// The name of the server. /// - /// - /// The operation ID associated with the operation. + /// + /// The name of the firewall rule. /// /// /// Headers that will be added to request. @@ -277,7 +507,7 @@ internal ImportExportOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -291,6 +521,10 @@ internal ImportExportOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } + if (firewallRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); + } string apiVersion = "2014-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -302,17 +536,17 @@ internal ImportExportOperations(SqlManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); - tracingParameters.Add("operationId", operationId); + tracingParameters.Add("firewallRuleName", firewallRuleName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByServer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/importExportOperationResults/{operationId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(operationId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -323,9 +557,9 @@ internal ImportExportOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -340,6 +574,8 @@ internal ImportExportOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -387,7 +623,7 @@ internal ImportExportOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -409,7 +645,7 @@ internal ImportExportOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -422,9 +658,9 @@ internal ImportExportOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -442,8 +678,7 @@ internal ImportExportOperations(SqlManagementClient client) } /// - /// The status of an import or export operation on a database given the - /// operation ID. + /// Returns a list of firewall rules. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -452,12 +687,6 @@ internal ImportExportOperations(SqlManagementClient client) /// /// The name of the server. /// - /// - /// The name of the database - /// - /// - /// The operation ID associated with the operation. - /// /// /// Headers that will be added to request. /// @@ -479,7 +708,7 @@ internal ImportExportOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -493,10 +722,6 @@ internal ImportExportOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } - if (databaseName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); - } string apiVersion = "2014-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -508,19 +733,15 @@ internal ImportExportOperations(SqlManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); - tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("operationId", operationId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByDatabase", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/importExportOperationResults/{operationId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(operationId, Client.SerializationSettings).Trim('"'))); List _queryParameters = new List(); if (apiVersion != null) { @@ -531,9 +752,9 @@ internal ImportExportOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -548,6 +769,8 @@ internal ImportExportOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -595,7 +818,7 @@ internal ImportExportOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -617,7 +840,7 @@ internal ImportExportOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -630,9 +853,9 @@ internal ImportExportOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -651,4 +874,3 @@ internal ImportExportOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperationsExtensions.cs new file mode 100644 index 000000000000..4246d5728b3d --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperationsExtensions.cs @@ -0,0 +1,216 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for FirewallRulesOperations. + /// + public static partial class FirewallRulesOperationsExtensions + { + /// + /// Creates or updates a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The required parameters for creating or updating a firewall rule. + /// + public static FirewallRule CreateOrUpdate(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName, FirewallRule parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, serverName, firewallRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The required parameters for creating or updating a firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName, FirewallRule parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + public static void Delete(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName) + { + operations.DeleteAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + public static FirewallRule Get(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName) + { + return operations.GetAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); + } + + /// + /// Gets a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Returns a list of firewall rules. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + public static IEnumerable ListByServer(this IFirewallRulesOperations operations, string resourceGroupName, string serverName) + { + return operations.ListByServerAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); + } + + /// + /// Returns a list of firewall rules. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByServerAsync(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ICapabilitiesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ICapabilitiesOperations.cs new file mode 100644 index 000000000000..153262fa1851 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ICapabilitiesOperations.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CapabilitiesOperations operations. + /// + public partial interface ICapabilitiesOperations + { + /// + /// Gets the capabilities available for the specified location. + /// + /// + /// The location id whose capabilities are retrieved. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ListByLocationWithHttpMessagesAsync(string locationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs index dbf23eee5e6a..900aff386484 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -24,8 +24,38 @@ namespace Microsoft.Azure.Management.Sql public partial interface IDatabasesOperations { /// - /// Imports a bacpac into an existing database. The existing database - /// must be empty. + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The name of the resource group that contains the resource. You can @@ -56,7 +86,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateImportOperationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Exports a database to a bacpac. /// @@ -89,7 +119,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a database replication link. Cannot be done during /// failover. @@ -274,7 +304,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task PauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task PauseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Resumes a data warehouse. /// @@ -301,7 +331,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task ResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of database restore points. /// @@ -411,7 +441,7 @@ public partial interface IDatabasesOperations /// /// /// A comma separated list of child objects to expand in the response. - /// Possible properties: serviceTierAdvisors, upgradeHint, + /// Possible properties: serviceTierAdvisors, /// transparentDataEncryption. /// /// @@ -441,6 +471,11 @@ public partial interface IDatabasesOperations /// /// The name of the server. /// + /// + /// A comma separated list of child objects to expand in the response. + /// Possible properties: serviceTierAdvisors, + /// transparentDataEncryption. + /// /// /// An OData filter expression that describes a subset of databases to /// return. @@ -460,7 +495,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string expand = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns database usages. /// @@ -570,9 +605,9 @@ public partial interface IDatabasesOperations /// The name of the database for which setting the transparent data /// encryption applies. /// - /// - /// The status of the database transparent data encryption. Possible - /// values include: 'Enabled', 'Disabled' + /// + /// The required parameters for creating or updating transparent data + /// encryption. /// /// /// The headers that will be added to request. @@ -589,7 +624,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a database's transparent data encryption configuration. /// @@ -653,8 +688,168 @@ public partial interface IDatabasesOperations /// Task>> ListTransparentDataEncryptionActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Imports a bacpac into an existing database. The existing database - /// must be empty. + /// Gets a database's threat detection policy. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy + /// is defined. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetThreatDetectionPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a database's threat detection policy. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy + /// is defined. + /// + /// + /// The database Threat Detection policy. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateThreatDetectionPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, DatabaseSecurityAlertPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a database's blob auditing policy. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy is + /// defined. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetBlobAuditingPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a database's blob auditing policy. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy will + /// be defined. + /// + /// + /// The database blob auditing policy. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateBlobAuditingPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, DatabaseBlobAuditingPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The name of the resource group that contains the resource. You can @@ -685,7 +880,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateImportOperationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Exports a database to a bacpac. /// @@ -718,7 +913,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Failover the database replication link. /// @@ -808,7 +1003,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task BeginPauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginPauseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Resumes a data warehouse. /// @@ -835,7 +1030,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task BeginResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a new database or updates an existing database. Location is /// a required property in the request body, and it must be the same as @@ -873,4 +1068,3 @@ public partial interface IDatabasesOperations Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs index 59eb6694f9cc..15506976935d 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -300,4 +300,3 @@ public partial interface IElasticPoolsOperations Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IFirewallRulesOperations.cs similarity index 56% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IFirewallRulesOperations.cs index fd5e4d8b4204..7b4c5fd810e3 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IFirewallRulesOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -19,12 +19,12 @@ namespace Microsoft.Azure.Management.Sql using System.Threading.Tasks; /// - /// ImportExportOperations operations. + /// FirewallRulesOperations operations. /// - public partial interface IImportExportOperations + public partial interface IFirewallRulesOperations { /// - /// The status of an import operation given the operation ID. + /// Creates or updates a firewall rule. /// /// /// The name of the resource group that contains the resource. You can @@ -34,6 +34,12 @@ public partial interface IImportExportOperations /// /// The name of the server. /// + /// + /// The name of the firewall rule. + /// + /// + /// The required parameters for creating or updating a firewall rule. + /// /// /// The headers that will be added to request. /// @@ -49,9 +55,36 @@ public partial interface IImportExportOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, FirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a firewall rule. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The of an import operation given the operation ID. + /// Gets a firewall rule. /// /// /// The name of the resource group that contains the resource. You can @@ -61,8 +94,8 @@ public partial interface IImportExportOperations /// /// The name of the server. /// - /// - /// The operation ID associated with the operation. + /// + /// The name of the firewall rule. /// /// /// The headers that will be added to request. @@ -79,10 +112,9 @@ public partial interface IImportExportOperations /// /// Thrown when a required parameter is null /// - Task> GetByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The status of an import or export operation on a database given the - /// operation ID. + /// Returns a list of firewall rules. /// /// /// The name of the resource group that contains the resource. You can @@ -92,12 +124,6 @@ public partial interface IImportExportOperations /// /// The name of the server. /// - /// - /// The name of the database - /// - /// - /// The operation ID associated with the operation. - /// /// /// The headers that will be added to request. /// @@ -113,7 +139,6 @@ public partial interface IImportExportOperations /// /// Thrown when a required parameter is null /// - Task> GetByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs index ec15efa53477..9ab1b842bfcd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -112,7 +112,7 @@ public partial interface IRecommendedElasticPoolsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of databases inside a recommented elastic pool. /// @@ -175,4 +175,3 @@ public partial interface IRecommendedElasticPoolsOperations Task>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs index a10ece32416b..0fd9073a8ae5 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -23,153 +23,6 @@ namespace Microsoft.Azure.Management.Sql /// public partial interface IServersOperations { - /// - /// Creates or updates a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The required parameters for creating or updating a firewall rule. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> CreateOrUpdateFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task DeleteFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of firewall rules. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Imports a bacpac into a new database. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> ImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of servers. /// @@ -269,7 +122,7 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of servers in a resource group. /// @@ -378,36 +231,5 @@ public partial interface IServersOperations /// Thrown when a required parameter is null /// Task>> ListServiceObjectivesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Imports a bacpac into a new database. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> BeginImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs index 4a84ce395ad8..93b598e8f297 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -35,12 +35,12 @@ public partial interface ISqlManagementClient : System.IDisposable /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -71,9 +71,14 @@ public partial interface ISqlManagementClient : System.IDisposable /// - /// Gets the IServersOperations. + /// Gets the ICapabilitiesOperations. /// - IServersOperations Servers { get; } + ICapabilitiesOperations Capabilities { get; } + + /// + /// Gets the IFirewallRulesOperations. + /// + IFirewallRulesOperations FirewallRules { get; } /// /// Gets the IDatabasesOperations. @@ -81,9 +86,9 @@ public partial interface ISqlManagementClient : System.IDisposable IDatabasesOperations Databases { get; } /// - /// Gets the IImportExportOperations. + /// Gets the IServersOperations. /// - IImportExportOperations ImportExportOperations { get; } + IServersOperations Servers { get; } /// /// Gets the IElasticPoolsOperations. @@ -108,4 +113,3 @@ public partial interface ISqlManagementClient : System.IDisposable } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs deleted file mode 100644 index aebe5e1d9166..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs +++ /dev/null @@ -1,174 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql -{ - using Azure; - using Management; - using Rest; - using Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for ImportExportOperations. - /// - public static partial class ImportExportOperationsExtensions - { - /// - /// The status of an import operation given the operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - public static IEnumerable ListByServer(this IImportExportOperations operations, string resourceGroupName, string serverName) - { - return operations.ListByServerAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); - } - - /// - /// The status of an import operation given the operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByServerAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// The of an import operation given the operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The operation ID associated with the operation. - /// - public static ImportExportOperationResponse GetByServer(this IImportExportOperations operations, string resourceGroupName, string serverName, System.Guid operationId) - { - return operations.GetByServerAsync(resourceGroupName, serverName, operationId).GetAwaiter().GetResult(); - } - - /// - /// The of an import operation given the operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The operation ID associated with the operation. - /// - /// - /// The cancellation token. - /// - public static async Task GetByServerAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, System.Guid operationId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetByServerWithHttpMessagesAsync(resourceGroupName, serverName, operationId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// The status of an import or export operation on a database given the - /// operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the database - /// - /// - /// The operation ID associated with the operation. - /// - public static ImportExportOperationResponse GetByDatabase(this IImportExportOperations operations, string resourceGroupName, string serverName, string databaseName, System.Guid operationId) - { - return operations.GetByDatabaseAsync(resourceGroupName, serverName, databaseName, operationId).GetAwaiter().GetResult(); - } - - /// - /// The status of an import or export operation on a database given the - /// operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the database - /// - /// - /// The operation ID associated with the operation. - /// - /// - /// The cancellation token. - /// - public static async Task GetByDatabaseAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, string databaseName, System.Guid operationId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetByDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, operationId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs index f3d71bbe3f4e..ef037c17ef81 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for AuthenticationType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum AuthenticationType { [EnumMember(Value = "SQL")] @@ -28,4 +28,3 @@ public enum AuthenticationType ADPassword } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/BlobAuditingPolicyState.cs similarity index 65% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/BlobAuditingPolicyState.cs index c52653ac7e3b..aa1d3ae54663 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/BlobAuditingPolicyState.cs @@ -2,25 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for TransparentDataEncryptionStates. + /// Defines values for BlobAuditingPolicyState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum TransparentDataEncryptionStates + [JsonConverter(typeof(StringEnumConverter))] + public enum BlobAuditingPolicyState { [EnumMember(Value = "Enabled")] Enabled, @@ -28,4 +28,3 @@ public enum TransparentDataEncryptionStates Disabled } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CapabilityStatus.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CapabilityStatus.cs new file mode 100644 index 000000000000..c22f9be9545f --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CapabilityStatus.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for CapabilityStatus. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum CapabilityStatus + { + [EnumMember(Value = "Visible")] + Visible, + [EnumMember(Value = "Available")] + Available, + [EnumMember(Value = "Default")] + Default, + [EnumMember(Value = "Disabled")] + Disabled + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs deleted file mode 100644 index 77bd14ad14bd..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Represents a database table column. - /// - [JsonTransformation] - public partial class Column : Resource - { - /// - /// Initializes a new instance of the Column class. - /// - public Column() { } - - /// - /// Initializes a new instance of the Column class. - /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags - /// The type of database table column. - public Column(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string columnType = default(string)) - : base(location, name, id, type, tags) - { - ColumnType = columnType; - } - - /// - /// Gets the type of database table column. - /// - [JsonProperty(PropertyName = "properties.columnType")] - public string ColumnType { get; protected set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs index fba03890bbb5..e58644e02248 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for CreateMode. @@ -24,6 +24,6 @@ public static class CreateMode public const string PointInTimeRestore = "PointInTimeRestore"; public const string Recovery = "Recovery"; public const string Restore = "Restore"; + public const string RestoreLongTermRetentionBackup = "RestoreLongTermRetentionBackup"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs index 6676a199ee94..4d182d173fcd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,22 +21,25 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a database. /// - [JsonTransformation] - public partial class Database : Resource + [Rest.Serialization.JsonTransformation] + public partial class Database : TrackedResource { /// /// Initializes a new instance of the Database class. /// - public Database() { } + public Database() + { + CustomInit(); + } /// /// Initializes a new instance of the Database class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. /// Kind of database. This is metadata used for the /// Azure portal experience. /// The collation of the database. If @@ -52,35 +55,82 @@ public Database() { } /// This records the earliest start /// date and time that restore is available for this database (ISO8601 /// format). - /// Specifies the type of database to create. - /// If createMode is not set to Default, sourceDatabaseId must be - /// specified. If createMode is set to PointInTimeRestore, then - /// restorePointInTime must be specified. If createMode is set to - /// Restore, then sourceDatabaseDeletionDate must be specified. - /// Possible values include: 'Copy', 'Default', 'NonReadableSecondary', - /// 'OnlineSecondary', 'PointInTimeRestore', 'Recovery', - /// 'Restore' - /// Conditional. If createMode is not - /// set to Default, then this value must be specified. Specifies the + /// Specifies the mode of database creation. + /// + /// Default: regular database creation. + /// + /// Copy: creates a database as a copy of an existing database. + /// sourceDatabaseId must be specified as the resource ID of the source + /// database. + /// + /// OnlineSecondary/NonReadableSecondary: creates a database as a + /// (readable or nonreadable) secondary replica of an existing + /// database. sourceDatabaseId must be specified as the resource ID of + /// the existing primary database. + /// + /// PointInTimeRestore: Creates a database by restoring a point in time + /// backup of an existing database. sourceDatabaseId must be specified + /// as the resource ID of the existing database, and restorePointInTime + /// must be specified. + /// + /// Recovery: Creates a database by restoring a geo-replicated backup. + /// sourceDatabaseId must be specified as the recoverable database + /// resource ID to restore. + /// + /// Restore: Creates a database by restoring a backup of a deleted + /// database. sourceDatabaseId must be specified. If sourceDatabaseId + /// is the database's original resource ID, then + /// sourceDatabaseDeletionDate must be specified. Otherwise + /// sourceDatabaseId must be the restorable dropped database resource + /// ID and sourceDatabaseDeletionDate is ignored. restorePointInTime + /// may also be specified to restore from an earlier point in time. + /// + /// RestoreLongTermRetentionBackup: Creates a database by restoring + /// from a long term retention vault. + /// recoveryServicesRecoveryPointResourceId must be specified as the + /// recovery point resource ID. + /// + /// Copy, NonReadableSecondary, OnlineSecondary and + /// RestoreLongTermRetentionBackup are not supported for DataWarehouse + /// edition. Possible values include: 'Copy', 'Default', + /// 'NonReadableSecondary', 'OnlineSecondary', 'PointInTimeRestore', + /// 'Recovery', 'Restore', 'RestoreLongTermRetentionBackup' + /// Conditional. If createMode is Copy, + /// NonReadableSecondary, OnlineSecondary, PointInTimeRestore, + /// Recovery, or Restore, then this value is required. Specifies the /// resource ID of the source database. If createMode is /// NonReadableSecondary or OnlineSecondary, the name of the source - /// database must be the same as this new database. - /// Conditional. If createMode is set - /// to PointInTimeRestore, then this value must be specified. Specifies - /// the point in time (ISO8601 format) of the source database that will - /// be restored to create the new database. Must be greater than or - /// equal to the source database's earliestRestoreDate value. + /// database must be the same as the new database being + /// created. + /// Conditional. If createMode + /// is Restore and sourceDatabaseId is the deleted database's original + /// resource id when it existed (as opposed to its current restorable + /// dropped database id), then this value is required. Specifies the + /// time that the database was deleted. + /// Conditional. If createMode is + /// PointInTimeRestore, this value is required. If createMode is + /// Restore, this value is optional. Specifies the point in time + /// (ISO8601 format) of the source database that will be restored to + /// create the new database. Must be greater than or equal to the + /// source database's earliestRestoreDate value. + /// Conditional. + /// If createMode is RestoreLongTermRetentionBackup, then this value is + /// required. Specifies the resource ID of the recovery point to + /// restore from. /// The edition of the database. The /// DatabaseEditions enumeration contains all the valid editions. If /// createMode is NonReadableSecondary or OnlineSecondary, this value - /// is ignored. Possible values include: 'Web', 'Business', 'Basic', - /// 'Standard', 'Premium', 'Free', 'Stretch', 'DataWarehouse', - /// 'System' + /// is ignored. To see possible values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation.". + /// Possible values include: 'Web', 'Business', 'Basic', 'Standard', + /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System', + /// 'System2' /// The max size of the database expressed - /// in bytes. If createMode is not Default, this value is ignored. - /// Note: Only the following sizes are supported (in addition to - /// limitations being placed on each edition): { 100 MB | 500 MB |1 GB - /// | 5 GB | 10 GB | 20 GB | 30 GB … 150 GB | 200 GB … 500 GB } + /// in bytes. If createMode is not Default, this value is ignored. To + /// see possible values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation." /// The configured service /// level objective ID of the database. This is the service level /// objective that is in the process of being applied to the database. @@ -88,44 +138,52 @@ public Database() { } /// currentServiceObjectiveId property. If requestedServiceObjectiveId /// and requestedServiceObjectiveName are both updated, the value of /// requestedServiceObjectiveId overrides the value of - /// requestedServiceObjectiveName. + /// requestedServiceObjectiveName. To see possible values, query the + /// capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation." /// The name of the /// configured service level objective of the database. This is the /// service level objective that is in the process of being applied to /// the database. Once successfully updated, it will match the value of - /// serviceLevelObjective property. Possible values include: 'Basic', - /// 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', - /// 'System', 'ElasticPool' + /// serviceLevelObjective property. To see possible values, query the + /// capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation.". + /// Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', + /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', + /// 'ElasticPool' /// The current service level /// objective of the database. Possible values include: 'Basic', 'S0', /// 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', - /// 'System', 'ElasticPool' + /// 'System', 'System2', 'ElasticPool' /// The status of the database. /// The name of the elastic pool the /// database is in. If elasticPoolName and /// requestedServiceObjectiveName are both updated, the value of - /// requestedServiceObjectiveName is ignored. + /// requestedServiceObjectiveName is ignored. Not supported for + /// DataWarehouse edition. /// The default secondary region /// for this database. /// The list of service tier advisors /// for this database. Expanded property - /// The schemas from this database. /// The transparent data /// encryption info for this database. /// The recommended indices for this /// database. /// The id indicating the failover group /// containing this database. - /// Conditional. If the database is a + /// Conditional. If the database is a /// geo-secondary, readScale indicates whether read-only connections - /// are allowed to this database or not. Possible values include: - /// 'Enabled', 'Disabled' + /// are allowed to this database or not. Not supported for + /// DataWarehouse edition. Possible values include: 'Enabled', + /// 'Disabled' /// Indicates the name of the sample schema to /// apply when creating this database. If createMode is not Default, - /// this value is ignored. Possible values include: - /// 'AdventureWorksLT' - public Database(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string collation = default(string), System.DateTime? creationDate = default(System.DateTime?), long? containmentState = default(long?), System.Guid? currentServiceObjectiveId = default(System.Guid?), string databaseId = default(string), System.DateTime? earliestRestoreDate = default(System.DateTime?), string createMode = default(string), string sourceDatabaseId = default(string), System.DateTime? restorePointInTime = default(System.DateTime?), string edition = default(string), string maxSizeBytes = default(string), System.Guid? requestedServiceObjectiveId = default(System.Guid?), string requestedServiceObjectiveName = default(string), string serviceLevelObjective = default(string), string status = default(string), string elasticPoolName = default(string), string defaultSecondaryLocation = default(string), IList serviceTierAdvisors = default(IList), IList schemas = default(IList), IList transparentDataEncryption = default(IList), IList recommendedIndex = default(IList), System.Guid? failoverGroupId = default(System.Guid?), ReadScale? readScale = default(ReadScale?), string sampleName = default(string)) - : base(location, name, id, type, tags) + /// this value is ignored. Not supported for DataWarehouse edition. + /// Possible values include: 'AdventureWorksLT' + public Database(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string collation = default(string), System.DateTime? creationDate = default(System.DateTime?), long? containmentState = default(long?), System.Guid? currentServiceObjectiveId = default(System.Guid?), string databaseId = default(string), System.DateTime? earliestRestoreDate = default(System.DateTime?), string createMode = default(string), string sourceDatabaseId = default(string), System.DateTime? sourceDatabaseDeletionDate = default(System.DateTime?), System.DateTime? restorePointInTime = default(System.DateTime?), System.DateTime? recoveryServicesRecoveryPointResourceId = default(System.DateTime?), string edition = default(string), string maxSizeBytes = default(string), System.Guid? requestedServiceObjectiveId = default(System.Guid?), string requestedServiceObjectiveName = default(string), string serviceLevelObjective = default(string), string status = default(string), string elasticPoolName = default(string), string defaultSecondaryLocation = default(string), IList serviceTierAdvisors = default(IList), IList transparentDataEncryption = default(IList), IList recommendedIndex = default(IList), System.Guid? failoverGroupId = default(System.Guid?), ReadScale? readScale = default(ReadScale?), string sampleName = default(string)) + : base(location, id, name, type, tags) { Kind = kind; Collation = collation; @@ -136,7 +194,9 @@ public Database() { } EarliestRestoreDate = earliestRestoreDate; CreateMode = createMode; SourceDatabaseId = sourceDatabaseId; + SourceDatabaseDeletionDate = sourceDatabaseDeletionDate; RestorePointInTime = restorePointInTime; + RecoveryServicesRecoveryPointResourceId = recoveryServicesRecoveryPointResourceId; Edition = edition; MaxSizeBytes = maxSizeBytes; RequestedServiceObjectiveId = requestedServiceObjectiveId; @@ -146,20 +206,25 @@ public Database() { } ElasticPoolName = elasticPoolName; DefaultSecondaryLocation = defaultSecondaryLocation; ServiceTierAdvisors = serviceTierAdvisors; - Schemas = schemas; TransparentDataEncryption = transparentDataEncryption; RecommendedIndex = recommendedIndex; FailoverGroupId = failoverGroupId; ReadScale = readScale; SampleName = sampleName; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets kind of database. This is metadata used for the Azure portal /// experience. /// [JsonProperty(PropertyName = "kind")] - public string Kind { get; protected set; } + public string Kind { get; private set; } /// /// Gets or sets the collation of the database. If createMode is not @@ -172,82 +237,138 @@ public Database() { } /// Gets the creation date of the database (ISO8601 format). /// [JsonProperty(PropertyName = "properties.creationDate")] - public System.DateTime? CreationDate { get; protected set; } + public System.DateTime? CreationDate { get; private set; } /// /// Gets the containment state of the database. /// [JsonProperty(PropertyName = "properties.containmentState")] - public long? ContainmentState { get; protected set; } + public long? ContainmentState { get; private set; } /// /// Gets the current service level objective ID of the database. This /// is the ID of the service level objective that is currently active. /// [JsonProperty(PropertyName = "properties.currentServiceObjectiveId")] - public System.Guid? CurrentServiceObjectiveId { get; protected set; } + public System.Guid? CurrentServiceObjectiveId { get; private set; } /// /// Gets the ID of the database. /// [JsonProperty(PropertyName = "properties.databaseId")] - public string DatabaseId { get; protected set; } + public string DatabaseId { get; private set; } /// /// Gets this records the earliest start date and time that restore is /// available for this database (ISO8601 format). /// [JsonProperty(PropertyName = "properties.earliestRestoreDate")] - public System.DateTime? EarliestRestoreDate { get; protected set; } + public System.DateTime? EarliestRestoreDate { get; private set; } /// - /// Gets or sets specifies the type of database to create. If - /// createMode is not set to Default, sourceDatabaseId must be - /// specified. If createMode is set to PointInTimeRestore, then - /// restorePointInTime must be specified. If createMode is set to - /// Restore, then sourceDatabaseDeletionDate must be specified. - /// Possible values include: 'Copy', 'Default', 'NonReadableSecondary', - /// 'OnlineSecondary', 'PointInTimeRestore', 'Recovery', 'Restore' + /// Gets or sets specifies the mode of database creation. + /// + /// Default: regular database creation. + /// + /// Copy: creates a database as a copy of an existing database. + /// sourceDatabaseId must be specified as the resource ID of the source + /// database. + /// + /// OnlineSecondary/NonReadableSecondary: creates a database as a + /// (readable or nonreadable) secondary replica of an existing + /// database. sourceDatabaseId must be specified as the resource ID of + /// the existing primary database. + /// + /// PointInTimeRestore: Creates a database by restoring a point in time + /// backup of an existing database. sourceDatabaseId must be specified + /// as the resource ID of the existing database, and restorePointInTime + /// must be specified. + /// + /// Recovery: Creates a database by restoring a geo-replicated backup. + /// sourceDatabaseId must be specified as the recoverable database + /// resource ID to restore. + /// + /// Restore: Creates a database by restoring a backup of a deleted + /// database. sourceDatabaseId must be specified. If sourceDatabaseId + /// is the database's original resource ID, then + /// sourceDatabaseDeletionDate must be specified. Otherwise + /// sourceDatabaseId must be the restorable dropped database resource + /// ID and sourceDatabaseDeletionDate is ignored. restorePointInTime + /// may also be specified to restore from an earlier point in time. + /// + /// RestoreLongTermRetentionBackup: Creates a database by restoring + /// from a long term retention vault. + /// recoveryServicesRecoveryPointResourceId must be specified as the + /// recovery point resource ID. + /// + /// Copy, NonReadableSecondary, OnlineSecondary and + /// RestoreLongTermRetentionBackup are not supported for DataWarehouse + /// edition. Possible values include: 'Copy', 'Default', + /// 'NonReadableSecondary', 'OnlineSecondary', 'PointInTimeRestore', + /// 'Recovery', 'Restore', 'RestoreLongTermRetentionBackup' /// [JsonProperty(PropertyName = "properties.createMode")] public string CreateMode { get; set; } /// - /// Gets or sets conditional. If createMode is not set to Default, then - /// this value must be specified. Specifies the resource ID of the - /// source database. If createMode is NonReadableSecondary or - /// OnlineSecondary, the name of the source database must be the same - /// as this new database. + /// Gets or sets conditional. If createMode is Copy, + /// NonReadableSecondary, OnlineSecondary, PointInTimeRestore, + /// Recovery, or Restore, then this value is required. Specifies the + /// resource ID of the source database. If createMode is + /// NonReadableSecondary or OnlineSecondary, the name of the source + /// database must be the same as the new database being created. /// [JsonProperty(PropertyName = "properties.sourceDatabaseId")] public string SourceDatabaseId { get; set; } /// - /// Gets or sets conditional. If createMode is set to - /// PointInTimeRestore, then this value must be specified. Specifies - /// the point in time (ISO8601 format) of the source database that will - /// be restored to create the new database. Must be greater than or - /// equal to the source database's earliestRestoreDate value. + /// Gets or sets conditional. If createMode is Restore and + /// sourceDatabaseId is the deleted database's original resource id + /// when it existed (as opposed to its current restorable dropped + /// database id), then this value is required. Specifies the time that + /// the database was deleted. + /// + [JsonProperty(PropertyName = "properties.sourceDatabaseDeletionDate")] + public System.DateTime? SourceDatabaseDeletionDate { get; set; } + + /// + /// Gets or sets conditional. If createMode is PointInTimeRestore, this + /// value is required. If createMode is Restore, this value is + /// optional. Specifies the point in time (ISO8601 format) of the + /// source database that will be restored to create the new database. + /// Must be greater than or equal to the source database's + /// earliestRestoreDate value. /// [JsonProperty(PropertyName = "properties.restorePointInTime")] public System.DateTime? RestorePointInTime { get; set; } + /// + /// Gets or sets conditional. If createMode is + /// RestoreLongTermRetentionBackup, then this value is required. + /// Specifies the resource ID of the recovery point to restore from. + /// + [JsonProperty(PropertyName = "properties.recoveryServicesRecoveryPointResourceId")] + public System.DateTime? RecoveryServicesRecoveryPointResourceId { get; set; } + /// /// Gets or sets the edition of the database. The DatabaseEditions /// enumeration contains all the valid editions. If createMode is - /// NonReadableSecondary or OnlineSecondary, this value is ignored. + /// NonReadableSecondary or OnlineSecondary, this value is ignored. To + /// see possible values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation.". /// Possible values include: 'Web', 'Business', 'Basic', 'Standard', - /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System' + /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System', 'System2' /// [JsonProperty(PropertyName = "properties.edition")] public string Edition { get; set; } /// /// Gets or sets the max size of the database expressed in bytes. If - /// createMode is not Default, this value is ignored. Note: Only the - /// following sizes are supported (in addition to limitations being - /// placed on each edition): { 100 MB | 500 MB |1 GB | 5 GB | 10 GB | - /// 20 GB | 30 GB … 150 GB | 200 GB … 500 GB } + /// createMode is not Default, this value is ignored. To see possible + /// values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation." /// [JsonProperty(PropertyName = "properties.maxSizeBytes")] public string MaxSizeBytes { get; set; } @@ -260,7 +381,10 @@ public Database() { } /// property. If requestedServiceObjectiveId and /// requestedServiceObjectiveName are both updated, the value of /// requestedServiceObjectiveId overrides the value of - /// requestedServiceObjectiveName. + /// requestedServiceObjectiveName. To see possible values, query the + /// capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation." /// [JsonProperty(PropertyName = "properties.requestedServiceObjectiveId")] public System.Guid? RequestedServiceObjectiveId { get; set; } @@ -270,8 +394,12 @@ public Database() { } /// the database. This is the service level objective that is in the /// process of being applied to the database. Once successfully /// updated, it will match the value of serviceLevelObjective property. + /// To see possible values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation.". /// Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', - /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' + /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', + /// 'ElasticPool' /// [JsonProperty(PropertyName = "properties.requestedServiceObjectiveName")] public string RequestedServiceObjectiveName { get; set; } @@ -279,21 +407,22 @@ public Database() { } /// /// Gets the current service level objective of the database. Possible /// values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', - /// 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' + /// 'P4', 'P6', 'P11', 'P15', 'System', 'System2', 'ElasticPool' /// [JsonProperty(PropertyName = "properties.serviceLevelObjective")] - public string ServiceLevelObjective { get; protected set; } + public string ServiceLevelObjective { get; private set; } /// /// Gets the status of the database. /// [JsonProperty(PropertyName = "properties.status")] - public string Status { get; protected set; } + public string Status { get; private set; } /// /// Gets or sets the name of the elastic pool the database is in. If /// elasticPoolName and requestedServiceObjectiveName are both updated, - /// the value of requestedServiceObjectiveName is ignored. + /// the value of requestedServiceObjectiveName is ignored. Not + /// supported for DataWarehouse edition. /// [JsonProperty(PropertyName = "properties.elasticPoolName")] public string ElasticPoolName { get; set; } @@ -302,44 +431,38 @@ public Database() { } /// Gets the default secondary region for this database. /// [JsonProperty(PropertyName = "properties.defaultSecondaryLocation")] - public string DefaultSecondaryLocation { get; protected set; } + public string DefaultSecondaryLocation { get; private set; } /// /// Gets the list of service tier advisors for this database. Expanded /// property /// [JsonProperty(PropertyName = "properties.serviceTierAdvisors")] - public IList ServiceTierAdvisors { get; protected set; } - - /// - /// Gets the schemas from this database. - /// - [JsonProperty(PropertyName = "properties.schemas")] - public IList Schemas { get; protected set; } + public IList ServiceTierAdvisors { get; private set; } /// /// Gets the transparent data encryption info for this database. /// [JsonProperty(PropertyName = "properties.transparentDataEncryption")] - public IList TransparentDataEncryption { get; protected set; } + public IList TransparentDataEncryption { get; private set; } /// /// Gets the recommended indices for this database. /// [JsonProperty(PropertyName = "properties.recommendedIndex")] - public IList RecommendedIndex { get; protected set; } + public IList RecommendedIndex { get; private set; } /// /// Gets the id indicating the failover group containing this database. /// [JsonProperty(PropertyName = "properties.failoverGroupId")] - public System.Guid? FailoverGroupId { get; protected set; } + public System.Guid? FailoverGroupId { get; private set; } /// - /// Gets or sets conditional. If the database is a geo-secondary, + /// Gets or sets conditional. If the database is a geo-secondary, /// readScale indicates whether read-only connections are allowed to - /// this database or not. Possible values include: 'Enabled', - /// 'Disabled' + /// this database or not. Not supported for DataWarehouse edition. + /// Possible values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.readScale")] public ReadScale? ReadScale { get; set; } @@ -347,7 +470,8 @@ public Database() { } /// /// Gets or sets indicates the name of the sample schema to apply when /// creating this database. If createMode is not Default, this value is - /// ignored. Possible values include: 'AdventureWorksLT' + /// ignored. Not supported for DataWarehouse edition. Possible values + /// include: 'AdventureWorksLT' /// [JsonProperty(PropertyName = "properties.sampleName")] public string SampleName { get; set; } @@ -361,27 +485,6 @@ public Database() { } public override void Validate() { base.Validate(); - if (Schemas != null) - { - foreach (var element in Schemas) - { - if (element != null) - { - element.Validate(); - } - } - } - if (RecommendedIndex != null) - { - foreach (var element1 in RecommendedIndex) - { - if (element1 != null) - { - element1.Validate(); - } - } - } } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs new file mode 100644 index 000000000000..11081c0dafe2 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs @@ -0,0 +1,153 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Contains information about a database Blob Auditing policy. + /// + [Rest.Serialization.JsonTransformation] + public partial class DatabaseBlobAuditingPolicy : ProxyResource + { + /// + /// Initializes a new instance of the DatabaseBlobAuditingPolicy class. + /// + public DatabaseBlobAuditingPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DatabaseBlobAuditingPolicy class. + /// + /// Specifies the state of the policy. If state is + /// Enabled, storageEndpoint and storageAccountAccessKey are required. + /// Possible values include: 'Enabled', 'Disabled' + /// Resource ID. + /// Resource name. + /// Resource type. + /// The geo-location where the resource + /// lives + /// Resource kind. + /// Specifies the blob storage endpoint + /// (e.g. https://MyAccount.blob.core.windows.net). If state is + /// Enabled, storageEndpoint is required. + /// Specifies the identifier key + /// of the auditing storage account. If state is Enabled, + /// storageAccountAccessKey is required. + /// Specifies the number of days to keep in + /// the audit logs. + /// Specifies the Actions and + /// Actions-Groups to audit. + /// Specifies the blob + /// storage subscription Id. + /// Specifies whether + /// storageAccountAccessKey value is the storage’s secondary + /// key. + public DatabaseBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string kind = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), string storageAccountSubscriptionId = default(string), bool? isStorageSecondaryKeyInUse = default(bool?)) + : base(id, name, type) + { + Location = location; + Kind = kind; + State = state; + StorageEndpoint = storageEndpoint; + StorageAccountAccessKey = storageAccountAccessKey; + RetentionDays = retentionDays; + AuditActionsAndGroups = auditActionsAndGroups; + StorageAccountSubscriptionId = storageAccountSubscriptionId; + IsStorageSecondaryKeyInUse = isStorageSecondaryKeyInUse; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets resource kind. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; private set; } + + /// + /// Gets or sets specifies the state of the policy. If state is + /// Enabled, storageEndpoint and storageAccountAccessKey are required. + /// Possible values include: 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.state")] + public BlobAuditingPolicyState State { get; set; } + + /// + /// Gets or sets specifies the blob storage endpoint (e.g. + /// https://MyAccount.blob.core.windows.net). If state is Enabled, + /// storageEndpoint is required. + /// + [JsonProperty(PropertyName = "properties.storageEndpoint")] + public string StorageEndpoint { get; set; } + + /// + /// Gets or sets specifies the identifier key of the auditing storage + /// account. If state is Enabled, storageAccountAccessKey is required. + /// + [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] + public string StorageAccountAccessKey { get; set; } + + /// + /// Gets or sets specifies the number of days to keep in the audit + /// logs. + /// + [JsonProperty(PropertyName = "properties.retentionDays")] + public int? RetentionDays { get; set; } + + /// + /// Gets or sets specifies the Actions and Actions-Groups to audit. + /// + [JsonProperty(PropertyName = "properties.auditActionsAndGroups")] + public IList AuditActionsAndGroups { get; set; } + + /// + /// Gets or sets specifies the blob storage subscription Id. + /// + [JsonProperty(PropertyName = "properties.storageAccountSubscriptionId")] + public string StorageAccountSubscriptionId { get; set; } + + /// + /// Gets or sets specifies whether storageAccountAccessKey value is the + /// storage’s secondary key. + /// + [JsonProperty(PropertyName = "properties.isStorageSecondaryKeyInUse")] + public bool? IsStorageSecondaryKeyInUse { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEdition.cs similarity index 72% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEdition.cs index 36d268b7b4dd..ce917741917b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEdition.cs @@ -2,20 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// - /// Defines values for DatabaseEditions. + /// Defines values for DatabaseEdition. /// - public static class DatabaseEditions + public static class DatabaseEdition { public const string Web = "Web"; public const string Business = "Business"; @@ -26,6 +26,6 @@ public static class DatabaseEditions public const string Stretch = "Stretch"; public const string DataWarehouse = "DataWarehouse"; public const string System = "System"; + public const string System2 = "System2"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs index ab228a99cbf6..261b7ca03351 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs @@ -2,27 +2,30 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; /// /// Represents database metrics. /// - public partial class DatabaseMetric : SqlSubResource + public partial class DatabaseMetric : SubResource { /// /// Initializes a new instance of the DatabaseMetric class. /// - public DatabaseMetric() { } + public DatabaseMetric() + { + CustomInit(); + } /// /// Initializes a new instance of the DatabaseMetric class. @@ -45,44 +48,49 @@ public DatabaseMetric() { } Limit = limit; Unit = unit; NextResetTime = nextResetTime; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name of the resource. /// [JsonProperty(PropertyName = "resourceName")] - public string ResourceName { get; protected set; } + public string ResourceName { get; private set; } /// /// Gets the metric display name. /// [JsonProperty(PropertyName = "displayName")] - public string DisplayName { get; protected set; } + public string DisplayName { get; private set; } /// /// Gets the current value of the metric. /// [JsonProperty(PropertyName = "currentValue")] - public double? CurrentValue { get; protected set; } + public double? CurrentValue { get; private set; } /// /// Gets the current limit of the metric. /// [JsonProperty(PropertyName = "limit")] - public double? Limit { get; protected set; } + public double? Limit { get; private set; } /// /// Gets the units of the metric. /// [JsonProperty(PropertyName = "unit")] - public string Unit { get; protected set; } + public string Unit { get; private set; } /// /// Gets the next reset time for the metric (ISO8601 format). /// [JsonProperty(PropertyName = "nextResetTime")] - public System.DateTime? NextResetTime { get; protected set; } + public System.DateTime? NextResetTime { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs new file mode 100644 index 000000000000..ec7cba770e5a --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs @@ -0,0 +1,173 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Contains information about a database Threat Detection policy. + /// + [Rest.Serialization.JsonTransformation] + public partial class DatabaseSecurityAlertPolicy : ProxyResource + { + /// + /// Initializes a new instance of the DatabaseSecurityAlertPolicy + /// class. + /// + public DatabaseSecurityAlertPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DatabaseSecurityAlertPolicy + /// class. + /// + /// Specifies the state of the policy. If state is + /// Enabled, storageEndpoint and storageAccountAccessKey are required. + /// Possible values include: 'New', 'Enabled', 'Disabled' + /// Resource ID. + /// Resource name. + /// Resource type. + /// The geo-location where the resource + /// lives + /// Resource kind. + /// Specifies the semicolon-separated list + /// of alerts that are disabled, or empty string to disable no alerts. + /// Possible values: Sql_Injection; Sql_Injection_Vulnerability; + /// Access_Anomaly; Usage_Anomaly. + /// Specifies the semicolon-separated list + /// of e-mail addresses to which the alert is sent. + /// Specifies that the alert is sent + /// to the account administrators. Possible values include: 'Enabled', + /// 'Disabled' + /// Specifies the blob storage endpoint + /// (e.g. https://MyAccount.blob.core.windows.net). This blob storage + /// will hold all Threat Detection audit logs. If state is Enabled, + /// storageEndpoint is required. + /// Specifies the identifier key + /// of the Threat Detection audit storage account. If state is Enabled, + /// storageAccountAccessKey is required. + /// Specifies the number of days to keep in + /// the Threat Detection audit logs. + /// Specifies whether to use the default + /// server policy. Possible values include: 'Enabled', + /// 'Disabled' + public DatabaseSecurityAlertPolicy(SecurityAlertPolicyState state, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string kind = default(string), string disabledAlerts = default(string), string emailAddresses = default(string), SecurityAlertPolicyEmailAccountAdmins? emailAccountAdmins = default(SecurityAlertPolicyEmailAccountAdmins?), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), SecurityAlertPolicyUseServerDefault? useServerDefault = default(SecurityAlertPolicyUseServerDefault?)) + : base(id, name, type) + { + Location = location; + Kind = kind; + State = state; + DisabledAlerts = disabledAlerts; + EmailAddresses = emailAddresses; + EmailAccountAdmins = emailAccountAdmins; + StorageEndpoint = storageEndpoint; + StorageAccountAccessKey = storageAccountAccessKey; + RetentionDays = retentionDays; + UseServerDefault = useServerDefault; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets resource kind. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; private set; } + + /// + /// Gets or sets specifies the state of the policy. If state is + /// Enabled, storageEndpoint and storageAccountAccessKey are required. + /// Possible values include: 'New', 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.state")] + public SecurityAlertPolicyState State { get; set; } + + /// + /// Gets or sets specifies the semicolon-separated list of alerts that + /// are disabled, or empty string to disable no alerts. Possible + /// values: Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly; + /// Usage_Anomaly. + /// + [JsonProperty(PropertyName = "properties.disabledAlerts")] + public string DisabledAlerts { get; set; } + + /// + /// Gets or sets specifies the semicolon-separated list of e-mail + /// addresses to which the alert is sent. + /// + [JsonProperty(PropertyName = "properties.emailAddresses")] + public string EmailAddresses { get; set; } + + /// + /// Gets or sets specifies that the alert is sent to the account + /// administrators. Possible values include: 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.emailAccountAdmins")] + public SecurityAlertPolicyEmailAccountAdmins? EmailAccountAdmins { get; set; } + + /// + /// Gets or sets specifies the blob storage endpoint (e.g. + /// https://MyAccount.blob.core.windows.net). This blob storage will + /// hold all Threat Detection audit logs. If state is Enabled, + /// storageEndpoint is required. + /// + [JsonProperty(PropertyName = "properties.storageEndpoint")] + public string StorageEndpoint { get; set; } + + /// + /// Gets or sets specifies the identifier key of the Threat Detection + /// audit storage account. If state is Enabled, storageAccountAccessKey + /// is required. + /// + [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] + public string StorageAccountAccessKey { get; set; } + + /// + /// Gets or sets specifies the number of days to keep in the Threat + /// Detection audit logs. + /// + [JsonProperty(PropertyName = "properties.retentionDays")] + public int? RetentionDays { get; set; } + + /// + /// Gets or sets specifies whether to use the default server policy. + /// Possible values include: 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.useServerDefault")] + public SecurityAlertPolicyUseServerDefault? UseServerDefault { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/EditionCapability.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/EditionCapability.cs new file mode 100644 index 000000000000..b92c36f30947 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/EditionCapability.cs @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The server edition capabilities. + /// + public partial class EditionCapability + { + /// + /// Initializes a new instance of the EditionCapability class. + /// + public EditionCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EditionCapability class. + /// + /// The edition name. + /// The status of the server edition. Possible + /// values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + /// The list of supported + /// service objectives for the edition. + public EditionCapability(string name = default(string), CapabilityStatus? status = default(CapabilityStatus?), IList supportedServiceLevelObjectives = default(IList)) + { + Name = name; + Status = status; + SupportedServiceLevelObjectives = supportedServiceLevelObjectives; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the edition name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the status of the server edition. Possible values include: + /// 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + /// + /// Gets the list of supported service objectives for the edition. + /// + [JsonProperty(PropertyName = "supportedServiceLevelObjectives")] + public IList SupportedServiceLevelObjectives { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs index 3f947de63680..c0f8f0b30f00 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,22 +21,25 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a database elastic pool. /// - [JsonTransformation] - public partial class ElasticPool : Resource + [Rest.Serialization.JsonTransformation] + public partial class ElasticPool : TrackedResource { /// /// Initializes a new instance of the ElasticPool class. /// - public ElasticPool() { } + public ElasticPool() + { + CustomInit(); + } /// /// Initializes a new instance of the ElasticPool class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. /// The creation date of the elastic pool /// (ISO8601 format). /// The state of the elastic pool. Possible values @@ -53,8 +56,8 @@ public ElasticPool() { } /// pool in MB. /// Kind of elastic pool. This is metadata used for /// the Azure portal experience. - public ElasticPool(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? creationDate = default(System.DateTime?), string state = default(string), string edition = default(string), int? dtu = default(int?), int? databaseDtuMax = default(int?), int? databaseDtuMin = default(int?), int? storageMB = default(int?), string kind = default(string)) - : base(location, name, id, type, tags) + public ElasticPool(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? creationDate = default(System.DateTime?), string state = default(string), string edition = default(string), int? dtu = default(int?), int? databaseDtuMax = default(int?), int? databaseDtuMin = default(int?), int? storageMB = default(int?), string kind = default(string)) + : base(location, id, name, type, tags) { CreationDate = creationDate; State = state; @@ -64,20 +67,26 @@ public ElasticPool() { } DatabaseDtuMin = databaseDtuMin; StorageMB = storageMB; Kind = kind; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the creation date of the elastic pool (ISO8601 format). /// [JsonProperty(PropertyName = "properties.creationDate")] - public System.DateTime? CreationDate { get; protected set; } + public System.DateTime? CreationDate { get; private set; } /// /// Gets the state of the elastic pool. Possible values include: /// 'Creating', 'Ready', 'Disabled' /// [JsonProperty(PropertyName = "properties.state")] - public string State { get; protected set; } + public string State { get; private set; } /// /// Gets or sets the edition of the elastic pool. Possible values @@ -115,7 +124,7 @@ public ElasticPool() { } /// portal experience. /// [JsonProperty(PropertyName = "kind")] - public string Kind { get; protected set; } + public string Kind { get; private set; } /// /// Validate the object. @@ -129,4 +138,3 @@ public override void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs index 5b4802a0d06c..1ff2dab1c974 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs @@ -2,41 +2,42 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// /// Represents the activity on an elastic pool. /// - [JsonTransformation] - public partial class ElasticPoolActivity : Resource + [Rest.Serialization.JsonTransformation] + public partial class ElasticPoolActivity : ProxyResource { /// /// Initializes a new instance of the ElasticPoolActivity class. /// - public ElasticPoolActivity() { } + public ElasticPoolActivity() + { + CustomInit(); + } /// /// Initializes a new instance of the ElasticPoolActivity class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. + /// The geo-location where the resource + /// lives /// The time the operation finished (ISO8601 /// format). /// The error code if available. @@ -71,9 +72,10 @@ public ElasticPoolActivity() { } /// DTU cap. /// The requested DTU /// guarantee. - public ElasticPoolActivity(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), int? requestedDatabaseDtuMax = default(int?), int? requestedDatabaseDtuMin = default(int?), int? requestedDtu = default(int?), string requestedElasticPoolName = default(string), long? requestedStorageLimitInGB = default(long?), string elasticPoolName = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string), int? requestedStorageLimitInMB = default(int?), int? requestedDatabaseDtuGuarantee = default(int?), int? requestedDatabaseDtuCap = default(int?), int? requestedDtuGuarantee = default(int?)) - : base(location, name, id, type, tags) + public ElasticPoolActivity(string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), int? requestedDatabaseDtuMax = default(int?), int? requestedDatabaseDtuMin = default(int?), int? requestedDtu = default(int?), string requestedElasticPoolName = default(string), long? requestedStorageLimitInGB = default(long?), string elasticPoolName = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string), int? requestedStorageLimitInMB = default(int?), int? requestedDatabaseDtuGuarantee = default(int?), int? requestedDatabaseDtuCap = default(int?), int? requestedDtuGuarantee = default(int?)) + : base(id, name, type) { + Location = location; EndTime = endTime; ErrorCode = errorCode; ErrorMessage = errorMessage; @@ -94,138 +96,139 @@ public ElasticPoolActivity() { } RequestedDatabaseDtuGuarantee = requestedDatabaseDtuGuarantee; RequestedDatabaseDtuCap = requestedDatabaseDtuCap; RequestedDtuGuarantee = requestedDtuGuarantee; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + /// /// Gets the time the operation finished (ISO8601 format). /// [JsonProperty(PropertyName = "properties.endTime")] - public System.DateTime? EndTime { get; protected set; } + public System.DateTime? EndTime { get; private set; } /// /// Gets the error code if available. /// [JsonProperty(PropertyName = "properties.errorCode")] - public int? ErrorCode { get; protected set; } + public int? ErrorCode { get; private set; } /// /// Gets the error message if available. /// [JsonProperty(PropertyName = "properties.errorMessage")] - public string ErrorMessage { get; protected set; } + public string ErrorMessage { get; private set; } /// /// Gets the error severity if available. /// [JsonProperty(PropertyName = "properties.errorSeverity")] - public int? ErrorSeverity { get; protected set; } + public int? ErrorSeverity { get; private set; } /// /// Gets the operation name. /// [JsonProperty(PropertyName = "properties.operation")] - public string Operation { get; protected set; } + public string Operation { get; private set; } /// /// Gets the unique operation ID. /// [JsonProperty(PropertyName = "properties.operationId")] - public string OperationId { get; protected set; } + public string OperationId { get; private set; } /// /// Gets the percentage complete if available. /// [JsonProperty(PropertyName = "properties.percentComplete")] - public int? PercentComplete { get; protected set; } + public int? PercentComplete { get; private set; } /// /// Gets the requested max DTU per database if available. /// [JsonProperty(PropertyName = "properties.requestedDatabaseDtuMax")] - public int? RequestedDatabaseDtuMax { get; protected set; } + public int? RequestedDatabaseDtuMax { get; private set; } /// /// Gets the requested min DTU per database if available. /// [JsonProperty(PropertyName = "properties.requestedDatabaseDtuMin")] - public int? RequestedDatabaseDtuMin { get; protected set; } + public int? RequestedDatabaseDtuMin { get; private set; } /// /// Gets the requested DTU for the pool if available. /// [JsonProperty(PropertyName = "properties.requestedDtu")] - public int? RequestedDtu { get; protected set; } + public int? RequestedDtu { get; private set; } /// /// Gets the requested name for the elastic pool if available. /// [JsonProperty(PropertyName = "properties.requestedElasticPoolName")] - public string RequestedElasticPoolName { get; protected set; } + public string RequestedElasticPoolName { get; private set; } /// /// Gets the requested storage limit for the pool in GB if available. /// [JsonProperty(PropertyName = "properties.requestedStorageLimitInGB")] - public long? RequestedStorageLimitInGB { get; protected set; } + public long? RequestedStorageLimitInGB { get; private set; } /// /// Gets the name of the elastic pool. /// [JsonProperty(PropertyName = "properties.elasticPoolName")] - public string ElasticPoolName { get; protected set; } + public string ElasticPoolName { get; private set; } /// /// Gets the name of the server the elastic pool is in. /// [JsonProperty(PropertyName = "properties.serverName")] - public string ServerName { get; protected set; } + public string ServerName { get; private set; } /// /// Gets the time the operation started (ISO8601 format). /// [JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; protected set; } + public System.DateTime? StartTime { get; private set; } /// /// Gets the current state of the operation. /// [JsonProperty(PropertyName = "properties.state")] - public string State { get; protected set; } + public string State { get; private set; } /// /// Gets the requested storage limit in MB. /// [JsonProperty(PropertyName = "properties.requestedStorageLimitInMB")] - public int? RequestedStorageLimitInMB { get; protected set; } + public int? RequestedStorageLimitInMB { get; private set; } /// /// Gets the requested per database DTU guarantee. /// [JsonProperty(PropertyName = "properties.requestedDatabaseDtuGuarantee")] - public int? RequestedDatabaseDtuGuarantee { get; protected set; } + public int? RequestedDatabaseDtuGuarantee { get; private set; } /// /// Gets the requested per database DTU cap. /// [JsonProperty(PropertyName = "properties.requestedDatabaseDtuCap")] - public int? RequestedDatabaseDtuCap { get; protected set; } + public int? RequestedDatabaseDtuCap { get; private set; } /// /// Gets the requested DTU guarantee. /// [JsonProperty(PropertyName = "properties.requestedDtuGuarantee")] - public int? RequestedDtuGuarantee { get; protected set; } + public int? RequestedDtuGuarantee { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs index 7131e241be23..fc7f7db514cc 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs @@ -2,43 +2,44 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// /// Represents the activity on an elastic pool. /// - [JsonTransformation] - public partial class ElasticPoolDatabaseActivity : Resource + [Rest.Serialization.JsonTransformation] + public partial class ElasticPoolDatabaseActivity : ProxyResource { /// /// Initializes a new instance of the ElasticPoolDatabaseActivity /// class. /// - public ElasticPoolDatabaseActivity() { } + public ElasticPoolDatabaseActivity() + { + CustomInit(); + } /// /// Initializes a new instance of the ElasticPoolDatabaseActivity /// class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. + /// The geo-location where the resource + /// lives /// The database name. /// The time the operation finished (ISO8601 /// format). @@ -63,9 +64,10 @@ public ElasticPoolDatabaseActivity() { } /// The time the operation started (ISO8601 /// format). /// The current state of the operation. - public ElasticPoolDatabaseActivity(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string databaseName = default(string), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), string requestedElasticPoolName = default(string), string currentElasticPoolName = default(string), string currentServiceObjective = default(string), string requestedServiceObjective = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string)) - : base(location, name, id, type, tags) + public ElasticPoolDatabaseActivity(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string databaseName = default(string), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), System.Guid? operationId = default(System.Guid?), int? percentComplete = default(int?), string requestedElasticPoolName = default(string), string currentElasticPoolName = default(string), string currentServiceObjective = default(string), string requestedServiceObjective = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string)) + : base(id, name, type) { + Location = location; DatabaseName = databaseName; EndTime = endTime; ErrorCode = errorCode; @@ -81,110 +83,111 @@ public ElasticPoolDatabaseActivity() { } ServerName = serverName; StartTime = startTime; State = state; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + /// /// Gets the database name. /// [JsonProperty(PropertyName = "properties.databaseName")] - public string DatabaseName { get; protected set; } + public string DatabaseName { get; private set; } /// /// Gets the time the operation finished (ISO8601 format). /// [JsonProperty(PropertyName = "properties.endTime")] - public System.DateTime? EndTime { get; protected set; } + public System.DateTime? EndTime { get; private set; } /// /// Gets the error code if available. /// [JsonProperty(PropertyName = "properties.errorCode")] - public int? ErrorCode { get; protected set; } + public int? ErrorCode { get; private set; } /// /// Gets the error message if available. /// [JsonProperty(PropertyName = "properties.errorMessage")] - public string ErrorMessage { get; protected set; } + public string ErrorMessage { get; private set; } /// /// Gets the error severity if available. /// [JsonProperty(PropertyName = "properties.errorSeverity")] - public int? ErrorSeverity { get; protected set; } + public int? ErrorSeverity { get; private set; } /// /// Gets the operation name. /// [JsonProperty(PropertyName = "properties.operation")] - public string Operation { get; protected set; } + public string Operation { get; private set; } /// /// Gets the unique operation ID. /// [JsonProperty(PropertyName = "properties.operationId")] - public string OperationId { get; protected set; } + public System.Guid? OperationId { get; private set; } /// /// Gets the percentage complete if available. /// [JsonProperty(PropertyName = "properties.percentComplete")] - public int? PercentComplete { get; protected set; } + public int? PercentComplete { get; private set; } /// /// Gets the name for the elastic pool the database is moving into if /// available. /// [JsonProperty(PropertyName = "properties.requestedElasticPoolName")] - public string RequestedElasticPoolName { get; protected set; } + public string RequestedElasticPoolName { get; private set; } /// /// Gets the name of the current elastic pool the database is in if /// available. /// [JsonProperty(PropertyName = "properties.currentElasticPoolName")] - public string CurrentElasticPoolName { get; protected set; } + public string CurrentElasticPoolName { get; private set; } /// /// Gets the name of the current service objective if available. /// [JsonProperty(PropertyName = "properties.currentServiceObjective")] - public string CurrentServiceObjective { get; protected set; } + public string CurrentServiceObjective { get; private set; } /// /// Gets the name of the requested service objective if available. /// [JsonProperty(PropertyName = "properties.requestedServiceObjective")] - public string RequestedServiceObjective { get; protected set; } + public string RequestedServiceObjective { get; private set; } /// /// Gets the name of the server the elastic pool is in. /// [JsonProperty(PropertyName = "properties.serverName")] - public string ServerName { get; protected set; } + public string ServerName { get; private set; } /// /// Gets the time the operation started (ISO8601 format). /// [JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; protected set; } + public System.DateTime? StartTime { get; private set; } /// /// Gets the current state of the operation. /// [JsonProperty(PropertyName = "properties.state")] - public string State { get; protected set; } + public string State { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEdition.cs similarity index 65% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEdition.cs index a9b2bb8cb68c..8e615016afee 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEdition.cs @@ -2,24 +2,23 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// - /// Defines values for ElasticPoolEditions. + /// Defines values for ElasticPoolEdition. /// - public static class ElasticPoolEditions + public static class ElasticPoolEdition { public const string Basic = "Basic"; public const string Standard = "Standard"; public const string Premium = "Premium"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs index b7c4a66f4e72..8d7129a1ea00 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for ElasticPoolState. @@ -22,4 +22,3 @@ public static class ElasticPoolState public const string Disabled = "Disabled"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequest.cs similarity index 78% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequest.cs index 53db0bb7ec6d..2bab235231e4 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequest.cs @@ -2,31 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; /// /// Export database parameters. /// - public partial class ExportRequestParameters + public partial class ExportRequest { /// - /// Initializes a new instance of the ExportRequestParameters class. + /// Initializes a new instance of the ExportRequest class. /// - public ExportRequestParameters() { } + public ExportRequest() + { + CustomInit(); + } /// - /// Initializes a new instance of the ExportRequestParameters class. + /// Initializes a new instance of the ExportRequest class. /// /// The type of the storage key to use. /// Valid values are StorageAccessKey and SharedAccessKey. Possible @@ -37,10 +40,9 @@ public ExportRequestParameters() { } /// administrator. /// The password of the SQL /// administrator. - /// The authentication type - if not - /// specified, will default to SQL. Possible values include: 'SQL', - /// 'ADPassword' - public ExportRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, AuthenticationType? authenticationType = default(AuthenticationType?)) + /// The authentication type. Possible + /// values include: 'SQL', 'ADPassword' + public ExportRequest(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, AuthenticationType? authenticationType = default(AuthenticationType?)) { StorageKeyType = storageKeyType; StorageKey = storageKey; @@ -48,8 +50,14 @@ public ExportRequestParameters() { } AdministratorLogin = administratorLogin; AdministratorLoginPassword = administratorLoginPassword; AuthenticationType = authenticationType; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the type of the storage key to use. Valid values are /// StorageAccessKey and SharedAccessKey. Possible values include: @@ -83,8 +91,8 @@ public ExportRequestParameters() { } public string AdministratorLoginPassword { get; set; } /// - /// Gets or sets the authentication type - if not specified, will - /// default to SQL. Possible values include: 'SQL', 'ADPassword' + /// Gets or sets the authentication type. Possible values include: + /// 'SQL', 'ADPassword' /// [JsonProperty(PropertyName = "authenticationType")] public AuthenticationType? AuthenticationType { get; set; } @@ -116,4 +124,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/FirewallRule.cs similarity index 75% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/FirewallRule.cs index 0d1dafa9a75d..bddc92b6ce5a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/FirewallRule.cs @@ -2,33 +2,36 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a server firewall rule. /// - [JsonTransformation] - public partial class ServerFirewallRule : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class FirewallRule : SubResource { /// - /// Initializes a new instance of the ServerFirewallRule class. + /// Initializes a new instance of the FirewallRule class. /// - public ServerFirewallRule() { } + public FirewallRule() + { + CustomInit(); + } /// - /// Initializes a new instance of the ServerFirewallRule class. + /// Initializes a new instance of the FirewallRule class. /// /// The start IP address of the firewall /// rule. Must be IPv4 format. Use value '0.0.0.0' to represent all @@ -44,7 +47,7 @@ public ServerFirewallRule() { } /// Location of the server that contains this /// firewall rule. /// Type of resource this is. - public ServerFirewallRule(string startIpAddress, string endIpAddress, string name = default(string), string id = default(string), string kind = default(string), string location = default(string), string type = default(string)) + public FirewallRule(string startIpAddress, string endIpAddress, string name = default(string), string id = default(string), string kind = default(string), string location = default(string), string type = default(string)) : base(name, id) { Kind = kind; @@ -52,25 +55,31 @@ public ServerFirewallRule() { } Type = type; StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets kind of server that contains this firewall rule. /// [JsonProperty(PropertyName = "kind")] - public string Kind { get; protected set; } + public string Kind { get; private set; } /// /// Gets location of the server that contains this firewall rule. /// [JsonProperty(PropertyName = "location")] - public string Location { get; protected set; } + public string Location { get; private set; } /// /// Gets type of resource this is. /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets or sets the start IP address of the firewall rule. Must be @@ -107,4 +116,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs deleted file mode 100644 index 8d9cef4e18a9..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs +++ /dev/null @@ -1,114 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Response for Import/Export Status operation. - /// - public partial class ImportExportOperationResponsePropertiesModel - { - /// - /// Initializes a new instance of the - /// ImportExportOperationResponsePropertiesModel class. - /// - public ImportExportOperationResponsePropertiesModel() { } - - /// - /// Initializes a new instance of the - /// ImportExportOperationResponsePropertiesModel class. - /// - /// The request type of the - /// operation. - /// The request type of the operation. - /// The name of the server. - /// The name of the database. - /// The status message returned from the - /// server. - /// The operation status last modified - /// time. - /// The operation queued time. - /// The blob uri. - /// The error message returned from the - /// server. - public ImportExportOperationResponsePropertiesModel(string requestType = default(string), System.Guid? requestId = default(System.Guid?), string serverName = default(string), string databaseName = default(string), string status = default(string), string lastModifiedTime = default(string), string queuedTime = default(string), string blobUri = default(string), string errorMessage = default(string)) - { - RequestType = requestType; - RequestId = requestId; - ServerName = serverName; - DatabaseName = databaseName; - Status = status; - LastModifiedTime = lastModifiedTime; - QueuedTime = queuedTime; - BlobUri = blobUri; - ErrorMessage = errorMessage; - } - - /// - /// Gets the request type of the operation. - /// - [JsonProperty(PropertyName = "requestType")] - public string RequestType { get; protected set; } - - /// - /// Gets the request type of the operation. - /// - [JsonProperty(PropertyName = "requestId")] - public System.Guid? RequestId { get; protected set; } - - /// - /// Gets the name of the server. - /// - [JsonProperty(PropertyName = "serverName")] - public string ServerName { get; protected set; } - - /// - /// Gets the name of the database. - /// - [JsonProperty(PropertyName = "databaseName")] - public string DatabaseName { get; protected set; } - - /// - /// Gets the status message returned from the server. - /// - [JsonProperty(PropertyName = "status")] - public string Status { get; protected set; } - - /// - /// Gets the operation status last modified time. - /// - [JsonProperty(PropertyName = "lastModifiedTime")] - public string LastModifiedTime { get; protected set; } - - /// - /// Gets the operation queued time. - /// - [JsonProperty(PropertyName = "queuedTime")] - public string QueuedTime { get; protected set; } - - /// - /// Gets the blob uri. - /// - [JsonProperty(PropertyName = "blobUri")] - public string BlobUri { get; protected set; } - - /// - /// Gets the error message returned from the server. - /// - [JsonProperty(PropertyName = "errorMessage")] - public string ErrorMessage { get; protected set; } - - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportResponse.cs similarity index 57% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportResponse.cs index 68d3b5554d72..4bcdc8edd0f2 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportResponse.cs @@ -2,39 +2,40 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Response for Import/Export Get operation. /// - [JsonTransformation] - public partial class ImportExportOperationResponse + [Rest.Serialization.JsonTransformation] + public partial class ImportExportResponse : ProxyResource { /// - /// Initializes a new instance of the ImportExportOperationResponse - /// class. + /// Initializes a new instance of the ImportExportResponse class. /// - public ImportExportOperationResponse() { } + public ImportExportResponse() + { + CustomInit(); + } /// - /// Initializes a new instance of the ImportExportOperationResponse - /// class. + /// Initializes a new instance of the ImportExportResponse class. /// - /// The id returned from the server. - /// The name returned from the server. - /// The type returned from the server. + /// Resource ID. + /// Resource name. + /// Resource type. /// The request type of the /// operation. /// The request type of the operation. @@ -48,11 +49,9 @@ public ImportExportOperationResponse() { } /// The blob uri. /// The error message returned from the /// server. - public ImportExportOperationResponse(string id = default(string), string name = default(string), string type = default(string), string requestType = default(string), System.Guid? requestId = default(System.Guid?), string serverName = default(string), string databaseName = default(string), string status = default(string), string lastModifiedTime = default(string), string queuedTime = default(string), string blobUri = default(string), string errorMessage = default(string)) + public ImportExportResponse(string id = default(string), string name = default(string), string type = default(string), string requestType = default(string), System.Guid? requestId = default(System.Guid?), string serverName = default(string), string databaseName = default(string), string status = default(string), string lastModifiedTime = default(string), string queuedTime = default(string), string blobUri = default(string), string errorMessage = default(string)) + : base(id, name, type) { - Id = id; - Name = name; - Type = type; RequestType = requestType; RequestId = requestId; ServerName = serverName; @@ -62,80 +61,67 @@ public ImportExportOperationResponse() { } QueuedTime = queuedTime; BlobUri = blobUri; ErrorMessage = errorMessage; + CustomInit(); } /// - /// Gets the id returned from the server. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } - - /// - /// Gets the name returned from the server. + /// An initialization method that performs custom operations like setting defaults /// - [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } - - /// - /// Gets the type returned from the server. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + partial void CustomInit(); /// /// Gets the request type of the operation. /// [JsonProperty(PropertyName = "properties.requestType")] - public string RequestType { get; protected set; } + public string RequestType { get; private set; } /// /// Gets the request type of the operation. /// [JsonProperty(PropertyName = "properties.requestId")] - public System.Guid? RequestId { get; protected set; } + public System.Guid? RequestId { get; private set; } /// /// Gets the name of the server. /// [JsonProperty(PropertyName = "properties.serverName")] - public string ServerName { get; protected set; } + public string ServerName { get; private set; } /// /// Gets the name of the database. /// [JsonProperty(PropertyName = "properties.databaseName")] - public string DatabaseName { get; protected set; } + public string DatabaseName { get; private set; } /// /// Gets the status message returned from the server. /// [JsonProperty(PropertyName = "properties.status")] - public string Status { get; protected set; } + public string Status { get; private set; } /// /// Gets the operation status last modified time. /// [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public string LastModifiedTime { get; protected set; } + public string LastModifiedTime { get; private set; } /// /// Gets the operation queued time. /// [JsonProperty(PropertyName = "properties.queuedTime")] - public string QueuedTime { get; protected set; } + public string QueuedTime { get; private set; } /// /// Gets the blob uri. /// [JsonProperty(PropertyName = "properties.blobUri")] - public string BlobUri { get; protected set; } + public string BlobUri { get; private set; } /// /// Gets the error message returned from the server. /// [JsonProperty(PropertyName = "properties.errorMessage")] - public string ErrorMessage { get; protected set; } + public string ErrorMessage { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequest.cs similarity index 78% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequest.cs index d3fea5fad863..7eeebd1cdad6 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequest.cs @@ -2,35 +2,36 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Import database parameters. /// - [JsonTransformation] - public partial class ImportExtensionRequestParameters + [Rest.Serialization.JsonTransformation] + public partial class ImportExtensionRequest { /// - /// Initializes a new instance of the ImportExtensionRequestParameters - /// class. + /// Initializes a new instance of the ImportExtensionRequest class. /// - public ImportExtensionRequestParameters() { } + public ImportExtensionRequest() + { + CustomInit(); + } /// - /// Initializes a new instance of the ImportExtensionRequestParameters - /// class. + /// Initializes a new instance of the ImportExtensionRequest class. /// /// The type of the storage key to use. /// Valid values are StorageAccessKey and SharedAccessKey. Possible @@ -43,10 +44,9 @@ public ImportExtensionRequestParameters() { } /// administrator. /// The name of the extension. /// The type of the extension. - /// The authentication type - if not - /// specified, will default to SQL. Possible values include: 'SQL', - /// 'ADPassword' - public ImportExtensionRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string name = default(string), string type = default(string), AuthenticationType? authenticationType = default(AuthenticationType?)) + /// The authentication type. Possible + /// values include: 'SQL', 'ADPassword' + public ImportExtensionRequest(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string name = default(string), string type = default(string), AuthenticationType? authenticationType = default(AuthenticationType?)) { Name = name; Type = type; @@ -56,15 +56,21 @@ public ImportExtensionRequestParameters() { } AdministratorLogin = administratorLogin; AdministratorLoginPassword = administratorLoginPassword; AuthenticationType = authenticationType; + CustomInit(); } /// - /// Static constructor for ImportExtensionRequestParameters class. + /// Static constructor for ImportExtensionRequest class. /// - static ImportExtensionRequestParameters() + static ImportExtensionRequest() { OperationMode = "Import"; } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the extension. /// @@ -110,15 +116,15 @@ static ImportExtensionRequestParameters() public string AdministratorLoginPassword { get; set; } /// - /// Gets or sets the authentication type - if not specified, will - /// default to SQL. Possible values include: 'SQL', 'ADPassword' + /// Gets or sets the authentication type. Possible values include: + /// 'SQL', 'ADPassword' /// [JsonProperty(PropertyName = "properties.authenticationType")] public AuthenticationType? AuthenticationType { get; set; } /// - /// The type of Import/Export operation being performed. This is - /// always Import. + /// The type of import operation being performed. This is always + /// Import. /// [JsonProperty(PropertyName = "properties.operationMode")] public static string OperationMode { get; private set; } @@ -150,4 +156,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequest.cs similarity index 66% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequest.cs index 49bea5820b3d..6df04fcd3655 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequest.cs @@ -2,31 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; /// /// Import database parameters. /// - public partial class ImportRequestParameters : ExportRequestParameters + public partial class ImportRequest : ExportRequest { /// - /// Initializes a new instance of the ImportRequestParameters class. + /// Initializes a new instance of the ImportRequest class. /// - public ImportRequestParameters() { } + public ImportRequest() + { + CustomInit(); + } /// - /// Initializes a new instance of the ImportRequestParameters class. + /// Initializes a new instance of the ImportRequest class. /// /// The type of the storage key to use. /// Valid values are StorageAccessKey and SharedAccessKey. Possible @@ -39,24 +42,33 @@ public ImportRequestParameters() { } /// administrator. /// The name of the database to /// import. - /// The edition for the database being - /// created. + /// The edition for the database being created. + /// Possible values include: 'Web', 'Business', 'Basic', 'Standard', + /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System', + /// 'System2' /// The name of the service - /// objective to assign to the database. + /// objective to assign to the database. Possible values include: + /// 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', + /// 'P11', 'P15', 'System', 'System2', 'ElasticPool' /// The maximum size for the newly imported /// database. - /// The authentication type - if not - /// specified, will default to SQL. Possible values include: 'SQL', - /// 'ADPassword' - public ImportRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string databaseName, string edition, string serviceObjectiveName, string maxSizeBytes, AuthenticationType? authenticationType = default(AuthenticationType?)) + /// The authentication type. Possible + /// values include: 'SQL', 'ADPassword' + public ImportRequest(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string databaseName, string edition, string serviceObjectiveName, string maxSizeBytes, AuthenticationType? authenticationType = default(AuthenticationType?)) : base(storageKeyType, storageKey, storageUri, administratorLogin, administratorLoginPassword, authenticationType) { DatabaseName = databaseName; Edition = edition; ServiceObjectiveName = serviceObjectiveName; MaxSizeBytes = maxSizeBytes; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database to import. /// @@ -64,14 +76,18 @@ public ImportRequestParameters() { } public string DatabaseName { get; set; } /// - /// Gets or sets the edition for the database being created. + /// Gets or sets the edition for the database being created. Possible + /// values include: 'Web', 'Business', 'Basic', 'Standard', 'Premium', + /// 'Free', 'Stretch', 'DataWarehouse', 'System', 'System2' /// [JsonProperty(PropertyName = "edition")] public string Edition { get; set; } /// /// Gets or sets the name of the service objective to assign to the - /// database. + /// database. Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', + /// 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', + /// 'ElasticPool' /// [JsonProperty(PropertyName = "serviceObjectiveName")] public string ServiceObjectiveName { get; set; } @@ -110,4 +126,3 @@ public override void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/LocationCapabilities.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/LocationCapabilities.cs new file mode 100644 index 000000000000..6e44298edbca --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/LocationCapabilities.cs @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The capabilities for a location. + /// + public partial class LocationCapabilities + { + /// + /// Initializes a new instance of the LocationCapabilities class. + /// + public LocationCapabilities() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LocationCapabilities class. + /// + /// The location name. + /// Azure SQL Database's status for the location. + /// Possible values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + /// The list of supported server + /// versions. + public LocationCapabilities(string name = default(string), CapabilityStatus? status = default(CapabilityStatus?), IList supportedServerVersions = default(IList)) + { + Name = name; + Status = status; + SupportedServerVersions = supportedServerVersions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the location name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets azure SQL Database's status for the location. Possible values + /// include: 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + /// + /// Gets the list of supported server versions. + /// + [JsonProperty(PropertyName = "supportedServerVersions")] + public IList SupportedServerVersions { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeCapability.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeCapability.cs new file mode 100644 index 000000000000..da1999e31263 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeCapability.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The maximum size limits for a database. + /// + public partial class MaxSizeCapability + { + /// + /// Initializes a new instance of the MaxSizeCapability class. + /// + public MaxSizeCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the MaxSizeCapability class. + /// + /// The maximum size of the database (see 'unit' + /// for the units). + /// The units that the limit is expressed in. + /// Possible values include: 'Megabytes', 'Gigabytes', 'Terabytes', + /// 'Petabytes' + /// The status of the maximum size capability. + /// Possible values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + public MaxSizeCapability(long? limit = default(long?), MaxSizeUnits? unit = default(MaxSizeUnits?), CapabilityStatus? status = default(CapabilityStatus?)) + { + Limit = limit; + Unit = unit; + Status = status; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the maximum size of the database (see 'unit' for the units). + /// + [JsonProperty(PropertyName = "limit")] + public long? Limit { get; private set; } + + /// + /// Gets the units that the limit is expressed in. Possible values + /// include: 'Megabytes', 'Gigabytes', 'Terabytes', 'Petabytes' + /// + [JsonProperty(PropertyName = "unit")] + public MaxSizeUnits? Unit { get; private set; } + + /// + /// Gets the status of the maximum size capability. Possible values + /// include: 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeUnits.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeUnits.cs new file mode 100644 index 000000000000..ea4306a303b8 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeUnits.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for MaxSizeUnits. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum MaxSizeUnits + { + [EnumMember(Value = "Megabytes")] + Megabytes, + [EnumMember(Value = "Gigabytes")] + Gigabytes, + [EnumMember(Value = "Terabytes")] + Terabytes, + [EnumMember(Value = "Petabytes")] + Petabytes + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs index 8eedbe7180e3..fc6216ab7fd6 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class Operation /// /// Initializes a new instance of the Operation class. /// - public Operation() { } + public Operation() + { + CustomInit(); + } /// /// Initializes a new instance of the Operation class. @@ -35,8 +38,14 @@ public Operation() { } { Name = name; Display = display; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets operation name: {provider}/{resource}/{operation} /// @@ -51,4 +60,3 @@ public Operation() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs index c99d3ec23c7b..4bb1babe51d8 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class OperationDisplay /// /// Initializes a new instance of the OperationDisplay class. /// - public OperationDisplay() { } + public OperationDisplay() + { + CustomInit(); + } /// /// Initializes a new instance of the OperationDisplay class. @@ -38,8 +41,14 @@ public OperationDisplay() { } Provider = provider; Resource = resource; Operation = operation; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets service provider: Microsoft SQL Database. /// @@ -61,4 +70,3 @@ public OperationDisplay() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs index 2b0560d98607..b4357304e49f 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class OperationImpact /// /// Initializes a new instance of the OperationImpact class. /// - public OperationImpact() { } + public OperationImpact() + { + CustomInit(); + } /// /// Initializes a new instance of the OperationImpact class. @@ -40,32 +43,37 @@ public OperationImpact() { } Unit = unit; ChangeValueAbsolute = changeValueAbsolute; ChangeValueRelative = changeValueRelative; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name of the impact dimension. /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets the unit in which estimated impact to dimension is measured. /// [JsonProperty(PropertyName = "unit")] - public string Unit { get; protected set; } + public string Unit { get; private set; } /// /// Gets the absolute impact to dimension. /// [JsonProperty(PropertyName = "changeValueAbsolute")] - public double? ChangeValueAbsolute { get; protected set; } + public double? ChangeValueAbsolute { get; private set; } /// /// Gets the relative impact to dimension (null if not applicable) /// [JsonProperty(PropertyName = "changeValueRelative")] - public double? ChangeValueRelative { get; protected set; } + public double? ChangeValueRelative { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs index 52311fe57078..bfa59c2e3868 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class OperationListResult /// /// Initializes a new instance of the OperationListResult class. /// - public OperationListResult() { } + public OperationListResult() + { + CustomInit(); + } /// /// Initializes a new instance of the OperationListResult class. @@ -38,8 +41,14 @@ public OperationListResult() { } { Value = value; NextLink = nextLink; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets list of SQL operations supported by the SQL resource /// provider. @@ -56,4 +65,3 @@ public OperationListResult() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs index 6874c44162dd..229b1dcf1f69 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -52,4 +52,3 @@ IEnumerator IEnumerable.GetEnumerator() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/PerformanceLevelUnit.cs similarity index 56% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/PerformanceLevelUnit.cs index c6805a2c3320..746fd8598bc1 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/PerformanceLevelUnit.cs @@ -2,30 +2,27 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for TableType. + /// Defines values for PerformanceLevelUnit. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum TableType + [JsonConverter(typeof(StringEnumConverter))] + public enum PerformanceLevelUnit { - [EnumMember(Value = "BaseTable")] - BaseTable, - [EnumMember(Value = "View")] - View + [EnumMember(Value = "DTU")] + DTU } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ProxyResource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ProxyResource.cs new file mode 100644 index 000000000000..868cd172e1d2 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ProxyResource.cs @@ -0,0 +1,47 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using System.Linq; + + /// + /// ARM proxy resource. + /// + public partial class ProxyResource : Resource + { + /// + /// Initializes a new instance of the ProxyResource class. + /// + public ProxyResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ProxyResource class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + public ProxyResource(string id = default(string), string name = default(string), string type = default(string)) + : base(id, name, type) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs index 1adb6c3dc4c4..066c8fef753f 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for ReadScale. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ReadScale { [EnumMember(Value = "Enabled")] @@ -28,4 +28,3 @@ public enum ReadScale Disabled } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs index 2b08d7481216..d0368a3cad01 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,24 +21,25 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a recommented elastic pool. /// - [JsonTransformation] - public partial class RecommendedElasticPool : Resource + [Rest.Serialization.JsonTransformation] + public partial class RecommendedElasticPool : ProxyResource { /// /// Initializes a new instance of the RecommendedElasticPool class. /// - public RecommendedElasticPool() { } + public RecommendedElasticPool() + { + CustomInit(); + } /// /// Initializes a new instance of the RecommendedElasticPool class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. /// The edition of the recommended - /// elastic pool. The ElasticPoolEditions enumeration contains all the + /// elastic pool. The ElasticPoolEdition enumeration contains all the /// valid editions. Possible values include: 'Basic', 'Standard', /// 'Premium' /// The DTU for the recommended elastic pool. @@ -54,12 +55,12 @@ public RecommendedElasticPool() { } /// Gets maximum observed DTU. /// Gets maximum observed storage in /// megabytes. - /// The list of databases in this pool. + /// The list of databases in this pool. /// Expanded property /// The list of databases housed in the server. /// Expanded property - public RecommendedElasticPool(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string databaseEdition = default(string), double? dtu = default(double?), double? databaseDtuMin = default(double?), double? databaseDtuMax = default(double?), double? storageMB = default(double?), System.DateTime? observationPeriodStart = default(System.DateTime?), System.DateTime? observationPeriodEnd = default(System.DateTime?), double? maxObservedDtu = default(double?), double? maxObservedStorageMB = default(double?), IList databasesProperty = default(IList), IList metrics = default(IList)) - : base(location, name, id, type, tags) + public RecommendedElasticPool(string id = default(string), string name = default(string), string type = default(string), string databaseEdition = default(string), double? dtu = default(double?), double? databaseDtuMin = default(double?), double? databaseDtuMax = default(double?), double? storageMB = default(double?), System.DateTime? observationPeriodStart = default(System.DateTime?), System.DateTime? observationPeriodEnd = default(System.DateTime?), double? maxObservedDtu = default(double?), double? maxObservedStorageMB = default(double?), IList databases = default(IList), IList metrics = default(IList)) + : base(id, name, type) { DatabaseEdition = databaseEdition; Dtu = dtu; @@ -70,17 +71,23 @@ public RecommendedElasticPool() { } ObservationPeriodEnd = observationPeriodEnd; MaxObservedDtu = maxObservedDtu; MaxObservedStorageMB = maxObservedStorageMB; - DatabasesProperty = databasesProperty; + Databases = databases; Metrics = metrics; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the edition of the recommended elastic pool. The - /// ElasticPoolEditions enumeration contains all the valid editions. + /// ElasticPoolEdition enumeration contains all the valid editions. /// Possible values include: 'Basic', 'Standard', 'Premium' /// [JsonProperty(PropertyName = "properties.databaseEdition")] - public string DatabaseEdition { get; protected set; } + public string DatabaseEdition { get; private set; } /// /// Gets or sets the DTU for the recommended elastic pool. @@ -110,58 +117,37 @@ public RecommendedElasticPool() { } /// Gets the observation period start (ISO8601 format). /// [JsonProperty(PropertyName = "properties.observationPeriodStart")] - public System.DateTime? ObservationPeriodStart { get; protected set; } + public System.DateTime? ObservationPeriodStart { get; private set; } /// /// Gets the observation period start (ISO8601 format). /// [JsonProperty(PropertyName = "properties.observationPeriodEnd")] - public System.DateTime? ObservationPeriodEnd { get; protected set; } + public System.DateTime? ObservationPeriodEnd { get; private set; } /// /// Gets maximum observed DTU. /// [JsonProperty(PropertyName = "properties.maxObservedDtu")] - public double? MaxObservedDtu { get; protected set; } + public double? MaxObservedDtu { get; private set; } /// /// Gets maximum observed storage in megabytes. /// [JsonProperty(PropertyName = "properties.maxObservedStorageMB")] - public double? MaxObservedStorageMB { get; protected set; } + public double? MaxObservedStorageMB { get; private set; } /// /// Gets the list of databases in this pool. Expanded property /// [JsonProperty(PropertyName = "properties.databases")] - public IList DatabasesProperty { get; protected set; } + public IList Databases { get; private set; } /// /// Gets the list of databases housed in the server. Expanded property /// [JsonProperty(PropertyName = "properties.metrics")] - public IList Metrics { get; protected set; } + public IList Metrics { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - if (DatabasesProperty != null) - { - foreach (var element in DatabasesProperty) - { - if (element != null) - { - element.Validate(); - } - } - } - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs index 9160cebc65bf..4cabdbcd469a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class RecommendedElasticPoolMetric /// Initializes a new instance of the RecommendedElasticPoolMetric /// class. /// - public RecommendedElasticPoolMetric() { } + public RecommendedElasticPoolMetric() + { + CustomInit(); + } /// /// Initializes a new instance of the RecommendedElasticPoolMetric @@ -39,8 +42,14 @@ public RecommendedElasticPoolMetric() { } DateTime = dateTime; Dtu = dtu; SizeGB = sizeGB; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the time of metric (ISO8601 format). /// @@ -62,4 +71,3 @@ public RecommendedElasticPoolMetric() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs index ecc8d77ce70c..e13505b5523d 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,22 +21,23 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a database recommended index. /// - [JsonTransformation] - public partial class RecommendedIndex : Resource + [Rest.Serialization.JsonTransformation] + public partial class RecommendedIndex : ProxyResource { /// /// Initializes a new instance of the RecommendedIndex class. /// - public RecommendedIndex() { } + public RecommendedIndex() + { + CustomInit(); + } /// /// Initializes a new instance of the RecommendedIndex class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. /// The proposed index action. You can create a /// missing index, drop an unused index, or rebuild an existing index /// to improve its performance. Possible values include: 'Create', @@ -64,8 +65,8 @@ public RecommendedIndex() { } /// recommended index action. /// The values reported after index action /// is complete. - public RecommendedIndex(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), RecommendedIndexActions? action = default(RecommendedIndexActions?), RecommendedIndexStates? state = default(RecommendedIndexStates?), System.DateTime? created = default(System.DateTime?), System.DateTime? lastModified = default(System.DateTime?), RecommendedIndexTypes? indexType = default(RecommendedIndexTypes?), string schema = default(string), string table = default(string), IList columns = default(IList), IList includedColumns = default(IList), string indexScript = default(string), IList estimatedImpact = default(IList), IList reportedImpact = default(IList)) - : base(location, name, id, type, tags) + public RecommendedIndex(string id = default(string), string name = default(string), string type = default(string), RecommendedIndexAction? action = default(RecommendedIndexAction?), RecommendedIndexState? state = default(RecommendedIndexState?), System.DateTime? created = default(System.DateTime?), System.DateTime? lastModified = default(System.DateTime?), RecommendedIndexType? indexType = default(RecommendedIndexType?), string schema = default(string), string table = default(string), IList columns = default(IList), IList includedColumns = default(IList), string indexScript = default(string), IList estimatedImpact = default(IList), IList reportedImpact = default(IList)) + : base(id, name, type) { Action = action; State = state; @@ -79,15 +80,21 @@ public RecommendedIndex() { } IndexScript = indexScript; EstimatedImpact = estimatedImpact; ReportedImpact = reportedImpact; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the proposed index action. You can create a missing index, /// drop an unused index, or rebuild an existing index to improve its /// performance. Possible values include: 'Create', 'Drop', 'Rebuild' /// [JsonProperty(PropertyName = "properties.action")] - public RecommendedIndexActions? Action { get; protected set; } + public RecommendedIndexAction? Action { get; private set; } /// /// Gets the current recommendation state. Possible values include: @@ -95,21 +102,21 @@ public RecommendedIndex() { } /// 'Reverting', 'Reverted', 'Ignored', 'Expired', 'Blocked', 'Success' /// [JsonProperty(PropertyName = "properties.state")] - public RecommendedIndexStates? State { get; protected set; } + public RecommendedIndexState? State { get; private set; } /// /// Gets the UTC datetime showing when this resource was created /// (ISO8601 format). /// [JsonProperty(PropertyName = "properties.created")] - public System.DateTime? Created { get; protected set; } + public System.DateTime? Created { get; private set; } /// /// Gets the UTC datetime of when was this resource last changed /// (ISO8601 format). /// [JsonProperty(PropertyName = "properties.lastModified")] - public System.DateTime? LastModified { get; protected set; } + public System.DateTime? LastModified { get; private set; } /// /// Gets the type of index (CLUSTERED, NONCLUSTERED, COLUMNSTORE, @@ -117,60 +124,49 @@ public RecommendedIndex() { } /// 'NONCLUSTERED', 'COLUMNSTORE', 'CLUSTERED COLUMNSTORE' /// [JsonProperty(PropertyName = "properties.indexType")] - public RecommendedIndexTypes? IndexType { get; protected set; } + public RecommendedIndexType? IndexType { get; private set; } /// /// Gets the schema where table to build index over resides /// [JsonProperty(PropertyName = "properties.schema")] - public string Schema { get; protected set; } + public string Schema { get; private set; } /// /// Gets the table on which to build index. /// [JsonProperty(PropertyName = "properties.table")] - public string Table { get; protected set; } + public string Table { get; private set; } /// /// Gets columns over which to build index /// [JsonProperty(PropertyName = "properties.columns")] - public IList Columns { get; protected set; } + public IList Columns { get; private set; } /// /// Gets the list of column names to be included in the index /// [JsonProperty(PropertyName = "properties.includedColumns")] - public IList IncludedColumns { get; protected set; } + public IList IncludedColumns { get; private set; } /// /// Gets the full build index script /// [JsonProperty(PropertyName = "properties.indexScript")] - public string IndexScript { get; protected set; } + public string IndexScript { get; private set; } /// /// Gets the estimated impact of doing recommended index action. /// [JsonProperty(PropertyName = "properties.estimatedImpact")] - public IList EstimatedImpact { get; protected set; } + public IList EstimatedImpact { get; private set; } /// /// Gets the values reported after index action is complete. /// [JsonProperty(PropertyName = "properties.reportedImpact")] - public IList ReportedImpact { get; protected set; } + public IList ReportedImpact { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexAction.cs similarity index 67% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexAction.cs index a548b1a7038b..a545bef75aae 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexAction.cs @@ -2,25 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for RecommendedIndexActions. + /// Defines values for RecommendedIndexAction. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum RecommendedIndexActions + [JsonConverter(typeof(StringEnumConverter))] + public enum RecommendedIndexAction { [EnumMember(Value = "Create")] Create, @@ -30,4 +30,3 @@ public enum RecommendedIndexActions Rebuild } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexState.cs similarity index 78% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexState.cs index 238086f39ccd..3da82fd39980 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexState.cs @@ -2,25 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for RecommendedIndexStates. + /// Defines values for RecommendedIndexState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum RecommendedIndexStates + [JsonConverter(typeof(StringEnumConverter))] + public enum RecommendedIndexState { [EnumMember(Value = "Active")] Active, @@ -46,4 +46,3 @@ public enum RecommendedIndexStates Success } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexType.cs similarity index 71% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexType.cs index 737d4e5a1d90..6d1503e2aae8 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexType.cs @@ -2,25 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for RecommendedIndexTypes. + /// Defines values for RecommendedIndexType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum RecommendedIndexTypes + [JsonConverter(typeof(StringEnumConverter))] + public enum RecommendedIndexType { [EnumMember(Value = "CLUSTERED")] CLUSTERED, @@ -32,4 +32,3 @@ public enum RecommendedIndexTypes CLUSTEREDCOLUMNSTORE } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs index 29c9f64b193a..56a7f3420615 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs @@ -2,30 +2,33 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a database replication link. /// - [JsonTransformation] - public partial class ReplicationLink : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class ReplicationLink : SubResource { /// /// Initializes a new instance of the ReplicationLink class. /// - public ReplicationLink() { } + public ReplicationLink() + { + CustomInit(); + } /// /// Initializes a new instance of the ReplicationLink class. @@ -73,50 +76,56 @@ public ReplicationLink() { } StartTime = startTime; PercentComplete = percentComplete; ReplicationState = replicationState; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets location of the server that contains this firewall rule. /// [JsonProperty(PropertyName = "location")] - public string Location { get; protected set; } + public string Location { get; private set; } /// /// Gets type of resource this is. /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets legacy value indicating whether termination is allowed. /// Currently always returns true. /// [JsonProperty(PropertyName = "properties.isTerminationAllowed")] - public bool? IsTerminationAllowed { get; protected set; } + public bool? IsTerminationAllowed { get; private set; } /// /// Gets replication mode of this replication link. /// [JsonProperty(PropertyName = "properties.replicationMode")] - public string ReplicationMode { get; protected set; } + public string ReplicationMode { get; private set; } /// /// Gets the name of the server hosting the partner database. /// [JsonProperty(PropertyName = "properties.partnerServer")] - public string PartnerServer { get; protected set; } + public string PartnerServer { get; private set; } /// /// Gets the name of the partner database. /// [JsonProperty(PropertyName = "properties.partnerDatabase")] - public string PartnerDatabase { get; protected set; } + public string PartnerDatabase { get; private set; } /// /// Gets the Azure Region of the partner database. /// [JsonProperty(PropertyName = "properties.partnerLocation")] - public string PartnerLocation { get; protected set; } + public string PartnerLocation { get; private set; } /// /// Gets the role of the database in the replication link. Possible @@ -124,7 +133,7 @@ public ReplicationLink() { } /// 'Source', 'Copy' /// [JsonProperty(PropertyName = "properties.role")] - public ReplicationRole? Role { get; protected set; } + public ReplicationRole? Role { get; private set; } /// /// Gets the role of the partner database in the replication link. @@ -132,27 +141,26 @@ public ReplicationLink() { } /// 'NonReadableSecondary', 'Source', 'Copy' /// [JsonProperty(PropertyName = "properties.partnerRole")] - public ReplicationRole? PartnerRole { get; protected set; } + public ReplicationRole? PartnerRole { get; private set; } /// /// Gets the start time for the replication link. /// [JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; protected set; } + public System.DateTime? StartTime { get; private set; } /// /// Gets the percentage of seeding complete for the replication link. /// [JsonProperty(PropertyName = "properties.percentComplete")] - public int? PercentComplete { get; protected set; } + public int? PercentComplete { get; private set; } /// /// Gets the replication state for the replication link. Possible /// values include: 'PENDING', 'SEEDING', 'CATCH_UP', 'SUSPENDED' /// [JsonProperty(PropertyName = "properties.replicationState")] - public string ReplicationState { get; protected set; } + public string ReplicationState { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs index fd99c0cfc0ca..c6ad5ebfe7d6 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for ReplicationRole. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ReplicationRole { [EnumMember(Value = "Primary")] @@ -34,4 +34,3 @@ public enum ReplicationRole Copy } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs index 9fa5d1db98f6..f4d819c0c36b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for ReplicationState. @@ -23,4 +23,3 @@ public static class ReplicationState public const string SUSPENDED = "SUSPENDED"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs index 7e42b810d834..23c795659742 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs @@ -2,92 +2,69 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// - /// Resource properties + /// ARM resource. /// public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags - public Resource(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + /// Resource ID. + /// Resource name. + /// Resource type. + public Resource(string id = default(string), string name = default(string), string type = default(string)) { - Name = name; Id = id; + Name = name; Type = type; - Location = location; - Tags = tags; + CustomInit(); } /// - /// Gets resource name + /// An initialization method that performs custom operations like setting defaults /// - [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + partial void CustomInit(); /// - /// Gets resource ID + /// Gets resource ID. /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } - - /// - /// Gets resource type - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Id { get; private set; } /// - /// Gets or sets resource location + /// Gets resource name. /// - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } /// - /// Gets or sets resource tags + /// Gets resource type. /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Location"); - } - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs index 653693a2cccf..aaf1b6a58dcf 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs @@ -2,41 +2,40 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// /// Represents a database restore point. /// - [JsonTransformation] - public partial class RestorePoint : Resource + [Rest.Serialization.JsonTransformation] + public partial class RestorePoint : ProxyResource { /// /// Initializes a new instance of the RestorePoint class. /// - public RestorePoint() { } + public RestorePoint() + { + CustomInit(); + } /// /// Initializes a new instance of the RestorePoint class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. /// The restore point type of the /// database restore point. Possible values include: 'DISCRETE', /// 'CONTINUOUS' @@ -46,45 +45,40 @@ public RestorePoint() { } /// Earliest restore time (ISO8601 /// format). Populated when restorePointType = DISCRETE. Null /// otherwise. - public RestorePoint(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), RestorePointTypes? restorePointType = default(RestorePointTypes?), System.DateTime? restorePointCreationDate = default(System.DateTime?), System.DateTime? earliestRestoreDate = default(System.DateTime?)) - : base(location, name, id, type, tags) + public RestorePoint(string id = default(string), string name = default(string), string type = default(string), RestorePointTypes? restorePointType = default(RestorePointTypes?), System.DateTime? restorePointCreationDate = default(System.DateTime?), System.DateTime? earliestRestoreDate = default(System.DateTime?)) + : base(id, name, type) { RestorePointType = restorePointType; RestorePointCreationDate = restorePointCreationDate; EarliestRestoreDate = earliestRestoreDate; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the restore point type of the database restore point. Possible /// values include: 'DISCRETE', 'CONTINUOUS' /// [JsonProperty(PropertyName = "properties.restorePointType")] - public RestorePointTypes? RestorePointType { get; protected set; } + public RestorePointTypes? RestorePointType { get; private set; } /// /// Gets restore point creation time (ISO8601 format). Populated when /// restorePointType = CONTINUOUS. Null otherwise. /// [JsonProperty(PropertyName = "properties.restorePointCreationDate")] - public System.DateTime? RestorePointCreationDate { get; protected set; } + public System.DateTime? RestorePointCreationDate { get; private set; } /// /// Gets earliest restore time (ISO8601 format). Populated when /// restorePointType = DISCRETE. Null otherwise. /// [JsonProperty(PropertyName = "properties.earliestRestoreDate")] - public System.DateTime? EarliestRestoreDate { get; protected set; } + public System.DateTime? EarliestRestoreDate { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs index e417275b1001..418d20f5ddd3 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for RestorePointTypes. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum RestorePointTypes { [EnumMember(Value = "DISCRETE")] @@ -28,4 +28,3 @@ public enum RestorePointTypes CONTINUOUS } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs index ad5ad7b2ace7..c29c4a2b71e4 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for SampleName. @@ -20,4 +20,3 @@ public static class SampleName public const string AdventureWorksLT = "AdventureWorksLT"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs deleted file mode 100644 index 51ba2a2dcded..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Represents a database schema. - /// - [JsonTransformation] - public partial class Schema : Resource - { - /// - /// Initializes a new instance of the Schema class. - /// - public Schema() { } - - /// - /// Initializes a new instance of the Schema class. - /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags - /// The tables from this database. - public Schema(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList
tables = default(IList
)) - : base(location, name, id, type, tags) - { - Tables = tables; - } - - /// - /// Gets the tables from this database. - /// - [JsonProperty(PropertyName = "properties.tables")] - public IList
Tables { get; protected set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - if (Tables != null) - { - foreach (var element in Tables) - { - if (element != null) - { - element.Validate(); - } - } - } - } - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyEmailAccountAdmins.cs similarity index 51% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyEmailAccountAdmins.cs index 86ea1f0a86bc..fea00eaf6a3b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyEmailAccountAdmins.cs @@ -2,32 +2,29 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for TargetElasticPoolEditions. + /// Defines values for SecurityAlertPolicyEmailAccountAdmins. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum TargetElasticPoolEditions + [JsonConverter(typeof(StringEnumConverter))] + public enum SecurityAlertPolicyEmailAccountAdmins { - [EnumMember(Value = "Basic")] - Basic, - [EnumMember(Value = "Standard")] - Standard, - [EnumMember(Value = "Premium")] - Premium + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyState.cs new file mode 100644 index 000000000000..fe6fd2f81c89 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyState.cs @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for SecurityAlertPolicyState. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum SecurityAlertPolicyState + { + [EnumMember(Value = "New")] + New, + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyUseServerDefault.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyUseServerDefault.cs new file mode 100644 index 000000000000..9117b18e6102 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyUseServerDefault.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for SecurityAlertPolicyUseServerDefault. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum SecurityAlertPolicyUseServerDefault + { + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs index 94ce0b3719de..3223eeb4daf0 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,22 +21,25 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a server. /// - [JsonTransformation] - public partial class Server : Resource + [Rest.Serialization.JsonTransformation] + public partial class Server : TrackedResource { /// /// Initializes a new instance of the Server class. /// - public Server() { } + public Server() + { + CustomInit(); + } /// /// Initializes a new instance of the Server class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. /// Kind of sql server. This is metadata used for /// the Azure portal experience. /// The fully qualified domain @@ -59,8 +62,8 @@ public Server() { } /// .../servers/{serverName}/administrators /// The state of the server. Possible values /// include: 'Ready', 'Disabled' - public Server(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string fullyQualifiedDomainName = default(string), string version = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), System.Guid? externalAdministratorSid = default(System.Guid?), string externalAdministratorLogin = default(string), ServerState? state = default(ServerState?)) - : base(location, name, id, type, tags) + public Server(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string fullyQualifiedDomainName = default(string), string version = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), System.Guid? externalAdministratorSid = default(System.Guid?), string externalAdministratorLogin = default(string), ServerState? state = default(ServerState?)) + : base(location, id, name, type, tags) { Kind = kind; FullyQualifiedDomainName = fullyQualifiedDomainName; @@ -70,20 +73,26 @@ public Server() { } ExternalAdministratorSid = externalAdministratorSid; ExternalAdministratorLogin = externalAdministratorLogin; State = state; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets kind of sql server. This is metadata used for the Azure /// portal experience. /// [JsonProperty(PropertyName = "kind")] - public string Kind { get; protected set; } + public string Kind { get; private set; } /// /// Gets the fully qualified domain name of the server. /// [JsonProperty(PropertyName = "properties.fullyQualifiedDomainName")] - public string FullyQualifiedDomainName { get; protected set; } + public string FullyQualifiedDomainName { get; private set; } /// /// Gets or sets the version of the server. Possible values include: @@ -114,7 +123,7 @@ public Server() { } /// .../servers/{serverName}/administrators. /// [JsonProperty(PropertyName = "properties.externalAdministratorSid")] - public System.Guid? ExternalAdministratorSid { get; protected set; } + public System.Guid? ExternalAdministratorSid { get; private set; } /// /// Gets the display name of the Azure Active Directory object with @@ -123,14 +132,14 @@ public Server() { } /// .../servers/{serverName}/administrators /// [JsonProperty(PropertyName = "properties.externalAdministratorLogin")] - public string ExternalAdministratorLogin { get; protected set; } + public string ExternalAdministratorLogin { get; private set; } /// /// Gets the state of the server. Possible values include: 'Ready', /// 'Disabled' /// [JsonProperty(PropertyName = "properties.state")] - public ServerState? State { get; protected set; } + public ServerState? State { get; private set; } /// /// Validate the object. @@ -144,4 +153,3 @@ public override void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs index 514b443b2e14..165386b6bc0a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class ServerMetric /// /// Initializes a new instance of the ServerMetric class. /// - public ServerMetric() { } + public ServerMetric() + { + CustomInit(); + } /// /// Initializes a new instance of the ServerMetric class. @@ -44,50 +47,55 @@ public ServerMetric() { } Limit = limit; Unit = unit; NextResetTime = nextResetTime; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets name of the server usage metric. /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets the name of the resource. /// [JsonProperty(PropertyName = "resourceName")] - public string ResourceName { get; protected set; } + public string ResourceName { get; private set; } /// /// Gets the metric display name. /// [JsonProperty(PropertyName = "displayName")] - public string DisplayName { get; protected set; } + public string DisplayName { get; private set; } /// /// Gets the current value of the metric. /// [JsonProperty(PropertyName = "currentValue")] - public double? CurrentValue { get; protected set; } + public double? CurrentValue { get; private set; } /// /// Gets the current limit of the metric. /// [JsonProperty(PropertyName = "limit")] - public double? Limit { get; protected set; } + public double? Limit { get; private set; } /// /// Gets the units of the metric. /// [JsonProperty(PropertyName = "unit")] - public string Unit { get; protected set; } + public string Unit { get; private set; } /// /// Gets the next reset time for the metric (ISO8601 format). /// [JsonProperty(PropertyName = "nextResetTime")] - public System.DateTime? NextResetTime { get; protected set; } + public System.DateTime? NextResetTime { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs index c2669c27745e..db7bcb0552b3 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for ServerState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ServerState { [EnumMember(Value = "Ready")] @@ -28,4 +28,3 @@ public enum ServerState Disabled } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs index 820962c3339e..4f9f632f75ba 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for ServerVersion. @@ -21,4 +21,3 @@ public static class ServerVersion public const string OneTwoFullStopZero = "12.0"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersionCapability.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersionCapability.cs new file mode 100644 index 000000000000..0b8db04a770d --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersionCapability.cs @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The server capabilities. + /// + public partial class ServerVersionCapability + { + /// + /// Initializes a new instance of the ServerVersionCapability class. + /// + public ServerVersionCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ServerVersionCapability class. + /// + /// The server version name. + /// The status of the server version. Possible + /// values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + /// The list of supported server + /// editions. + public ServerVersionCapability(string name = default(string), CapabilityStatus? status = default(CapabilityStatus?), IList supportedEditions = default(IList)) + { + Name = name; + Status = status; + SupportedEditions = supportedEditions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the server version name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the status of the server version. Possible values include: + /// 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + /// + /// Gets the list of supported server editions. + /// + [JsonProperty(PropertyName = "supportedEditions")] + public IList SupportedEditions { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs index b2a9f4ab297f..b78063329577 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs @@ -2,30 +2,33 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a database service objective. /// - [JsonTransformation] - public partial class ServiceObjective : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class ServiceObjective : SubResource { /// /// Initializes a new instance of the ServiceObjective class. /// - public ServiceObjective() { } + public ServiceObjective() + { + CustomInit(); + } /// /// Initializes a new instance of the ServiceObjective class. @@ -50,40 +53,45 @@ public ServiceObjective() { } IsSystem = isSystem; Description = description; Enabled = enabled; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name for the service objective. /// [JsonProperty(PropertyName = "properties.serviceObjectiveName")] - public string ServiceObjectiveName { get; protected set; } + public string ServiceObjectiveName { get; private set; } /// /// Gets whether the service level objective is the default service /// objective. /// [JsonProperty(PropertyName = "properties.isDefault")] - public bool? IsDefault { get; protected set; } + public bool? IsDefault { get; private set; } /// /// Gets whether the service level objective is a system service /// objective. /// [JsonProperty(PropertyName = "properties.isSystem")] - public bool? IsSystem { get; protected set; } + public bool? IsSystem { get; private set; } /// /// Gets the description for the service level objective. /// [JsonProperty(PropertyName = "properties.description")] - public string Description { get; protected set; } + public string Description { get; private set; } /// /// Gets whether the service level objective is enabled. /// [JsonProperty(PropertyName = "properties.enabled")] - public bool? Enabled { get; protected set; } + public bool? Enabled { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveCapability.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveCapability.cs new file mode 100644 index 000000000000..ece14b5ac26f --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveCapability.cs @@ -0,0 +1,104 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The service objectives capabilities. + /// + [Rest.Serialization.JsonTransformation] + public partial class ServiceObjectiveCapability + { + /// + /// Initializes a new instance of the ServiceObjectiveCapability class. + /// + public ServiceObjectiveCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ServiceObjectiveCapability class. + /// + /// The service objective name. + /// The status of the service objective. Possible + /// values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + /// Unit type used to measure service objective + /// performance level. Possible values include: 'DTU' + /// Performance level value. + /// The unique ID of the service objective. + /// The list of supported maximum + /// database sizes for this service objective. + public ServiceObjectiveCapability(string name = default(string), CapabilityStatus? status = default(CapabilityStatus?), PerformanceLevelUnit? unit = default(PerformanceLevelUnit?), int? value = default(int?), string id = default(string), IList supportedMaxSizes = default(IList)) + { + Name = name; + Status = status; + Unit = unit; + Value = value; + Id = id; + SupportedMaxSizes = supportedMaxSizes; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the service objective name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the status of the service objective. Possible values include: + /// 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + /// + /// Gets unit type used to measure service objective performance level. + /// Possible values include: 'DTU' + /// + [JsonProperty(PropertyName = "performanceLevel.unit")] + public PerformanceLevelUnit? Unit { get; private set; } + + /// + /// Gets performance level value. + /// + [JsonProperty(PropertyName = "performanceLevel.value")] + public int? Value { get; private set; } + + /// + /// Gets the unique ID of the service objective. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets the list of supported maximum database sizes for this service + /// objective. + /// + [JsonProperty(PropertyName = "supportedMaxSizes")] + public IList SupportedMaxSizes { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs index 2d48cb3b9fb5..2fd7e04cf20d 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for ServiceObjectiveName. @@ -30,7 +30,7 @@ public static class ServiceObjectiveName public const string P11 = "P11"; public const string P15 = "P15"; public const string System = "System"; + public const string System2 = "System2"; public const string ElasticPool = "ElasticPool"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs index 959cf5b3ee56..241948908b8a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,13 +21,16 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a Service Tier Advisor. /// - [JsonTransformation] - public partial class ServiceTierAdvisor : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class ServiceTierAdvisor : SubResource { /// /// Initializes a new instance of the ServiceTierAdvisor class. /// - public ServiceTierAdvisor() { } + public ServiceTierAdvisor() + { + CustomInit(); + } /// /// Initializes a new instance of the ServiceTierAdvisor class. @@ -107,132 +110,137 @@ public ServiceTierAdvisor() { } OverallRecommendationServiceLevelObjective = overallRecommendationServiceLevelObjective; OverallRecommendationServiceLevelObjectiveId = overallRecommendationServiceLevelObjectiveId; Confidence = confidence; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the observation period start (ISO8601 format). /// [JsonProperty(PropertyName = "properties.observationPeriodStart")] - public System.DateTime? ObservationPeriodStart { get; protected set; } + public System.DateTime? ObservationPeriodStart { get; private set; } /// /// Gets the observation period start (ISO8601 format). /// [JsonProperty(PropertyName = "properties.observationPeriodEnd")] - public System.DateTime? ObservationPeriodEnd { get; protected set; } + public System.DateTime? ObservationPeriodEnd { get; private set; } /// /// Gets the activeTimeRatio for service tier advisor. /// [JsonProperty(PropertyName = "properties.activeTimeRatio")] - public double? ActiveTimeRatio { get; protected set; } + public double? ActiveTimeRatio { get; private set; } /// /// Gets or sets minDtu for service tier advisor. /// [JsonProperty(PropertyName = "properties.minDtu")] - public double? MinDtu { get; protected set; } + public double? MinDtu { get; private set; } /// /// Gets or sets avgDtu for service tier advisor. /// [JsonProperty(PropertyName = "properties.avgDtu")] - public double? AvgDtu { get; protected set; } + public double? AvgDtu { get; private set; } /// /// Gets or sets maxDtu for service tier advisor. /// [JsonProperty(PropertyName = "properties.maxDtu")] - public double? MaxDtu { get; protected set; } + public double? MaxDtu { get; private set; } /// /// Gets or sets maxSizeInGB for service tier advisor. /// [JsonProperty(PropertyName = "properties.maxSizeInGB")] - public double? MaxSizeInGB { get; protected set; } + public double? MaxSizeInGB { get; private set; } /// /// Gets or sets serviceLevelObjectiveUsageMetrics for the service tier /// advisor. /// [JsonProperty(PropertyName = "properties.serviceLevelObjectiveUsageMetrics")] - public IList ServiceLevelObjectiveUsageMetrics { get; protected set; } + public IList ServiceLevelObjectiveUsageMetrics { get; private set; } /// /// Gets or sets currentServiceLevelObjective for service tier advisor. /// [JsonProperty(PropertyName = "properties.currentServiceLevelObjective")] - public string CurrentServiceLevelObjective { get; protected set; } + public string CurrentServiceLevelObjective { get; private set; } /// /// Gets or sets currentServiceLevelObjectiveId for service tier /// advisor. /// [JsonProperty(PropertyName = "properties.currentServiceLevelObjectiveId")] - public System.Guid? CurrentServiceLevelObjectiveId { get; protected set; } + public System.Guid? CurrentServiceLevelObjectiveId { get; private set; } /// /// Gets or sets usageBasedRecommendationServiceLevelObjective for /// service tier advisor. /// [JsonProperty(PropertyName = "properties.usageBasedRecommendationServiceLevelObjective")] - public string UsageBasedRecommendationServiceLevelObjective { get; protected set; } + public string UsageBasedRecommendationServiceLevelObjective { get; private set; } /// /// Gets or sets usageBasedRecommendationServiceLevelObjectiveId for /// service tier advisor. /// [JsonProperty(PropertyName = "properties.usageBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? UsageBasedRecommendationServiceLevelObjectiveId { get; protected set; } + public System.Guid? UsageBasedRecommendationServiceLevelObjectiveId { get; private set; } /// /// Gets or sets databaseSizeBasedRecommendationServiceLevelObjective /// for service tier advisor. /// [JsonProperty(PropertyName = "properties.databaseSizeBasedRecommendationServiceLevelObjective")] - public string DatabaseSizeBasedRecommendationServiceLevelObjective { get; protected set; } + public string DatabaseSizeBasedRecommendationServiceLevelObjective { get; private set; } /// /// Gets or sets databaseSizeBasedRecommendationServiceLevelObjectiveId /// for service tier advisor. /// [JsonProperty(PropertyName = "properties.databaseSizeBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? DatabaseSizeBasedRecommendationServiceLevelObjectiveId { get; protected set; } + public System.Guid? DatabaseSizeBasedRecommendationServiceLevelObjectiveId { get; private set; } /// /// Gets or sets disasterPlanBasedRecommendationServiceLevelObjective /// for service tier advisor. /// [JsonProperty(PropertyName = "properties.disasterPlanBasedRecommendationServiceLevelObjective")] - public string DisasterPlanBasedRecommendationServiceLevelObjective { get; protected set; } + public string DisasterPlanBasedRecommendationServiceLevelObjective { get; private set; } /// /// Gets or sets disasterPlanBasedRecommendationServiceLevelObjectiveId /// for service tier advisor. /// [JsonProperty(PropertyName = "properties.disasterPlanBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? DisasterPlanBasedRecommendationServiceLevelObjectiveId { get; protected set; } + public System.Guid? DisasterPlanBasedRecommendationServiceLevelObjectiveId { get; private set; } /// /// Gets or sets overallRecommendationServiceLevelObjective for service /// tier advisor. /// [JsonProperty(PropertyName = "properties.overallRecommendationServiceLevelObjective")] - public string OverallRecommendationServiceLevelObjective { get; protected set; } + public string OverallRecommendationServiceLevelObjective { get; private set; } /// /// Gets or sets overallRecommendationServiceLevelObjectiveId for /// service tier advisor. /// [JsonProperty(PropertyName = "properties.overallRecommendationServiceLevelObjectiveId")] - public System.Guid? OverallRecommendationServiceLevelObjectiveId { get; protected set; } + public System.Guid? OverallRecommendationServiceLevelObjectiveId { get; private set; } /// /// Gets or sets confidence for service tier advisor. /// [JsonProperty(PropertyName = "properties.confidence")] - public double? Confidence { get; protected set; } + public double? Confidence { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs index c66774c45fdd..0f80348d7317 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class SloUsageMetric /// /// Initializes a new instance of the SloUsageMetric class. /// - public SloUsageMetric() { } + public SloUsageMetric() + { + CustomInit(); + } /// /// Initializes a new instance of the SloUsageMetric class. @@ -30,7 +33,7 @@ public SloUsageMetric() { } /// The serviceLevelObjective for /// SLO usage metric. Possible values include: 'Basic', 'S0', 'S1', /// 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', - /// 'ElasticPool' + /// 'System2', 'ElasticPool' /// The serviceLevelObjectiveId /// for SLO usage metric. /// Gets or sets inRangeTimeRatio for @@ -40,12 +43,19 @@ public SloUsageMetric() { } ServiceLevelObjective = serviceLevelObjective; ServiceLevelObjectiveId = serviceLevelObjectiveId; InRangeTimeRatio = inRangeTimeRatio; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the serviceLevelObjective for SLO usage metric. /// Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', - /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' + /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', + /// 'ElasticPool' /// [JsonProperty(PropertyName = "serviceLevelObjective")] public string ServiceLevelObjective { get; set; } @@ -64,4 +74,3 @@ public SloUsageMetric() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs index 0f6972c3ea42..46e88403d8d4 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for StorageKeyType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum StorageKeyType { [EnumMember(Value = "StorageAccessKey")] @@ -28,4 +28,3 @@ public enum StorageKeyType SharedAccessKey } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SubResource.cs similarity index 54% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SubResource.cs index c5346bf44a6e..bfb412556ef1 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SubResource.cs @@ -2,51 +2,59 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; /// /// Subresource properties /// - public partial class SqlSubResource + public partial class SubResource { /// - /// Initializes a new instance of the SqlSubResource class. + /// Initializes a new instance of the SubResource class. /// - public SqlSubResource() { } + public SubResource() + { + CustomInit(); + } /// - /// Initializes a new instance of the SqlSubResource class. + /// Initializes a new instance of the SubResource class. /// /// Resource name /// The resource ID. - public SqlSubResource(string name = default(string), string id = default(string)) + public SubResource(string name = default(string), string id = default(string)) { Name = name; Id = id; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource name /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets the resource ID. /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs deleted file mode 100644 index 8f1417dbab80..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs +++ /dev/null @@ -1,104 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Represents a database table. - /// - [JsonTransformation] - public partial class Table : Resource - { - /// - /// Initializes a new instance of the Table class. - /// - public Table() { } - - /// - /// Initializes a new instance of the Table class. - /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags - /// The type of database table. Possible values - /// include: 'BaseTable', 'View' - /// The columns from this table. - /// The recommended indices for this - /// table. - public Table(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), TableType? tableType = default(TableType?), IList columns = default(IList), IList recommendedIndexes = default(IList)) - : base(location, name, id, type, tags) - { - TableType = tableType; - Columns = columns; - RecommendedIndexes = recommendedIndexes; - } - - /// - /// Gets the type of database table. Possible values include: - /// 'BaseTable', 'View' - /// - [JsonProperty(PropertyName = "properties.tableType")] - public TableType? TableType { get; protected set; } - - /// - /// Gets the columns from this table. - /// - [JsonProperty(PropertyName = "properties.columns")] - public IList Columns { get; protected set; } - - /// - /// Gets the recommended indices for this table. - /// - [JsonProperty(PropertyName = "properties.recommendedIndexes")] - public IList RecommendedIndexes { get; protected set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - if (Columns != null) - { - foreach (var element in Columns) - { - if (element != null) - { - element.Validate(); - } - } - } - if (RecommendedIndexes != null) - { - foreach (var element1 in RecommendedIndexes) - { - if (element1 != null) - { - element1.Validate(); - } - } - } - } - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TrackedResource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TrackedResource.cs new file mode 100644 index 000000000000..0bce0874fc7f --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TrackedResource.cs @@ -0,0 +1,80 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// ARM tracked top level resource. + /// + public partial class TrackedResource : Resource + { + /// + /// Initializes a new instance of the TrackedResource class. + /// + public TrackedResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TrackedResource class. + /// + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. + public TrackedResource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + : base(id, name, type) + { + Tags = tags; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets resource location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs index df2de344333c..6016e8c34c8a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs @@ -2,30 +2,33 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a database transparent data encryption . /// - [JsonTransformation] - public partial class TransparentDataEncryption : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class TransparentDataEncryption : SubResource { /// /// Initializes a new instance of the TransparentDataEncryption class. /// - public TransparentDataEncryption() { } + public TransparentDataEncryption() + { + CustomInit(); + } /// /// Initializes a new instance of the TransparentDataEncryption class. @@ -34,19 +37,24 @@ public TransparentDataEncryption() { } /// The resource ID. /// The status of the database transparent data /// encryption. Possible values include: 'Enabled', 'Disabled' - public TransparentDataEncryption(string name = default(string), string id = default(string), TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?)) + public TransparentDataEncryption(string name = default(string), string id = default(string), TransparentDataEncryptionStatus? status = default(TransparentDataEncryptionStatus?)) : base(name, id) { Status = status; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the status of the database transparent data /// encryption. Possible values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.status")] - public TransparentDataEncryptionStates? Status { get; set; } + public TransparentDataEncryptionStatus? Status { get; set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs index 110d85cf1a25..c84d1a13f4c9 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs @@ -2,31 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a database transparent data encryption Scan. /// - [JsonTransformation] - public partial class TransparentDataEncryptionActivity : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class TransparentDataEncryptionActivity : SubResource { /// /// Initializes a new instance of the TransparentDataEncryptionActivity /// class. /// - public TransparentDataEncryptionActivity() { } + public TransparentDataEncryptionActivity() + { + CustomInit(); + } /// /// Initializes a new instance of the TransparentDataEncryptionActivity @@ -43,22 +46,27 @@ public TransparentDataEncryptionActivity() { } { Status = status; PercentComplete = percentComplete; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the status of the database. Possible values include: /// 'Encrypting', 'Decrypting' /// [JsonProperty(PropertyName = "properties.status")] - public string Status { get; protected set; } + public string Status { get; private set; } /// /// Gets the percent complete of the transparent data encryption scan /// for a database. /// [JsonProperty(PropertyName = "properties.percentComplete")] - public double? PercentComplete { get; protected set; } + public double? PercentComplete { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStatus.cs similarity index 68% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStatus.cs index ac521bd13c90..f4cfc6ff02bc 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStatus.cs @@ -2,23 +2,22 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// - /// Defines values for TransparentDataEncryptionActivityStates. + /// Defines values for TransparentDataEncryptionActivityStatus. /// - public static class TransparentDataEncryptionActivityStates + public static class TransparentDataEncryptionActivityStatus { public const string Encrypting = "Encrypting"; public const string Decrypting = "Decrypting"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStatus.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStatus.cs new file mode 100644 index 000000000000..9a4bef8057ba --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStatus.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for TransparentDataEncryptionStatus. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum TransparentDataEncryptionStatus + { + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs deleted file mode 100644 index db46a3df2ecd..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Represents a Upgrade Hint. - /// - public partial class UpgradeHint - { - /// - /// Initializes a new instance of the UpgradeHint class. - /// - public UpgradeHint() { } - - /// - /// Initializes a new instance of the UpgradeHint class. - /// - /// TargetServiceLevelObjective for - /// upgrade hint. - /// TargetServiceLevelObjectiveId - /// for upgrade hint. - public UpgradeHint(string targetServiceLevelObjective = default(string), System.Guid? targetServiceLevelObjectiveId = default(System.Guid?)) - { - TargetServiceLevelObjective = targetServiceLevelObjective; - TargetServiceLevelObjectiveId = targetServiceLevelObjectiveId; - } - - /// - /// Gets or sets targetServiceLevelObjective for upgrade hint. - /// - [JsonProperty(PropertyName = "targetServiceLevelObjective")] - public string TargetServiceLevelObjective { get; set; } - - /// - /// Gets or sets targetServiceLevelObjectiveId for upgrade hint. - /// - [JsonProperty(PropertyName = "targetServiceLevelObjectiveId")] - public System.Guid? TargetServiceLevelObjectiveId { get; set; } - - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs deleted file mode 100644 index f417c610e550..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs +++ /dev/null @@ -1,137 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Rest; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Represents the properties of a recommended elastic pool being upgraded. - /// - public partial class UpgradeRecommendedElasticPoolProperties - { - /// - /// Initializes a new instance of the - /// UpgradeRecommendedElasticPoolProperties class. - /// - public UpgradeRecommendedElasticPoolProperties() { } - - /// - /// Initializes a new instance of the - /// UpgradeRecommendedElasticPoolProperties class. - /// - /// The name of the recommended elastic pool being - /// upgraded. - /// The target edition for the recommended - /// elastic pool being upgraded. Possible values include: 'Basic', - /// 'Standard', 'Premium' - /// The DTU guarantee for the recommended elastic - /// pool being upgraded. - /// The storage limit in MB for the recommended - /// elastic pool being upgraded. - /// The DTU guarantee for database for the - /// recommended elastic pool being upgraded. - /// The DTU cap for database for the - /// recommended elastic pool being upgraded. - /// The list of database names to be - /// put in the recommended elastic pool being upgraded. - /// Gets or sets whether all - /// databases to be put in the recommended elastic pool being - /// upgraded. - public UpgradeRecommendedElasticPoolProperties(string name, TargetElasticPoolEditions edition, int? dtu = default(int?), int? storageMb = default(int?), int? databaseDtuMin = default(int?), int? databaseDtuMax = default(int?), IList databaseCollection = default(IList), bool? includeAllDatabases = default(bool?)) - { - Name = name; - Edition = edition; - Dtu = dtu; - StorageMb = storageMb; - DatabaseDtuMin = databaseDtuMin; - DatabaseDtuMax = databaseDtuMax; - DatabaseCollection = databaseCollection; - IncludeAllDatabases = includeAllDatabases; - } - - /// - /// Gets or sets the name of the recommended elastic pool being - /// upgraded. - /// - [JsonProperty(PropertyName = "Name")] - public string Name { get; set; } - - /// - /// Gets or sets the target edition for the recommended elastic pool - /// being upgraded. Possible values include: 'Basic', 'Standard', - /// 'Premium' - /// - [JsonProperty(PropertyName = "Edition")] - public TargetElasticPoolEditions Edition { get; set; } - - /// - /// Gets or sets the DTU guarantee for the recommended elastic pool - /// being upgraded. - /// - [JsonProperty(PropertyName = "Dtu")] - public int? Dtu { get; set; } - - /// - /// Gets or sets the storage limit in MB for the recommended elastic - /// pool being upgraded. - /// - [JsonProperty(PropertyName = "StorageMb")] - public int? StorageMb { get; set; } - - /// - /// Gets or sets the DTU guarantee for database for the recommended - /// elastic pool being upgraded. - /// - [JsonProperty(PropertyName = "DatabaseDtuMin")] - public int? DatabaseDtuMin { get; set; } - - /// - /// Gets or sets the DTU cap for database for the recommended elastic - /// pool being upgraded. - /// - [JsonProperty(PropertyName = "DatabaseDtuMax")] - public int? DatabaseDtuMax { get; set; } - - /// - /// Gets or sets the list of database names to be put in the - /// recommended elastic pool being upgraded. - /// - [JsonProperty(PropertyName = "DatabaseCollection")] - public IList DatabaseCollection { get; set; } - - /// - /// Gets or sets whether all databases to be put in the recommended - /// elastic pool being upgraded. - /// - [JsonProperty(PropertyName = "IncludeAllDatabases")] - public bool? IncludeAllDatabases { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } - } - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs index 193e5e01070e..2c6654fc0635 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -134,9 +134,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -151,6 +151,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -198,7 +200,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -235,7 +237,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -345,9 +347,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -362,6 +364,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -409,7 +413,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -446,7 +450,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -494,7 +498,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -520,7 +524,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -538,9 +542,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -555,6 +559,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -602,7 +608,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -639,7 +645,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -740,9 +746,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -757,6 +763,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -804,7 +812,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -841,7 +849,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -942,9 +950,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -959,6 +967,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1006,7 +1016,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1043,7 +1053,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1062,4 +1072,3 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs index 2808c1b03aeb..468a88d80e58 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -138,9 +138,9 @@ public static Database GetDatabases(this IRecommendedElasticPoolsOperations oper /// /// The name of the server. /// - public static IEnumerable List(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName) + public static IEnumerable ListByServer(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName) { - return operations.ListAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); + return operations.ListByServerAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// @@ -159,9 +159,9 @@ public static IEnumerable List(this IRecommendedElasticP /// /// The cancellation token. /// - public static async Task> ListAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServerAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -265,4 +265,3 @@ public static IEnumerable ListMetrics(this IRecomm } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs index 64b56154b5fa..28c0b93d916e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -50,838 +50,6 @@ internal ServersOperations(SqlManagementClient client) /// public SqlManagementClient Client { get; private set; } - /// - /// Creates or updates a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The required parameters for creating or updating a firewall rule. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> CreateOrUpdateFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - if (firewallRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("firewallRuleName", firewallRuleName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateFirewallRule", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Deletes a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task DeleteFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - if (firewallRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("firewallRuleName", firewallRuleName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteFirewallRule", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - } - else { - _responseContent = string.Empty; - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - if (firewallRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("firewallRuleName", firewallRuleName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetFirewallRule", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Returns a list of firewall rules. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListFirewallRules", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> ImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Returns a list of servers. /// @@ -938,9 +106,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -955,6 +123,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1002,7 +172,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1039,7 +209,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1143,9 +313,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1160,6 +330,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1177,7 +349,7 @@ internal ServersOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1213,7 +385,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1250,7 +422,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1268,7 +440,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1357,9 +529,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1374,6 +546,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1411,11 +585,19 @@ internal ServersOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1480,7 +662,7 @@ internal ServersOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1506,7 +688,7 @@ internal ServersOperations(SqlManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1524,9 +706,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1541,6 +723,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1588,7 +772,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1625,7 +809,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1708,9 +892,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1725,6 +909,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1772,7 +958,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1809,7 +995,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1901,9 +1087,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1918,6 +1104,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1965,7 +1153,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2002,7 +1190,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2103,9 +1291,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2120,6 +1308,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2167,7 +1357,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2204,7 +1394,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2296,9 +1486,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2313,6 +1503,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2360,7 +1552,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2397,218 +1589,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> BeginImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginImportDatabase", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/import").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 201 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2627,4 +1608,3 @@ internal ServersOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs index 542c38da904e..9160fccc5f8e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -23,243 +23,6 @@ namespace Microsoft.Azure.Management.Sql /// public static partial class ServersOperationsExtensions { - /// - /// Creates or updates a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The required parameters for creating or updating a firewall rule. - /// - public static ServerFirewallRule CreateOrUpdateFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters) - { - return operations.CreateOrUpdateFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Creates or updates a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The required parameters for creating or updating a firewall rule. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateOrUpdateFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - public static void DeleteFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName) - { - operations.DeleteFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) - { - await operations.DeleteFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - public static ServerFirewallRule GetFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName) - { - return operations.GetFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); - } - - /// - /// Gets a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The cancellation token. - /// - public static async Task GetFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of firewall rules. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - public static IEnumerable ListFirewallRules(this IServersOperations operations, string resourceGroupName, string serverName) - { - return operations.ListFirewallRulesAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of firewall rules. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The cancellation token. - /// - public static async Task> ListFirewallRulesAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListFirewallRulesWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - public static ImportExportOperationResponse ImportDatabase(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters) - { - return operations.ImportDatabaseAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// The cancellation token. - /// - public static async Task ImportDatabaseAsync(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Returns a list of servers. /// @@ -372,7 +135,7 @@ public static void Delete(this IServersOperations operations, string resourceGro /// public static async Task DeleteAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -388,9 +151,9 @@ public static void Delete(this IServersOperations operations, string resourceGro /// /// The name of the server. /// - public static Server GetByResourceGroup(this IServersOperations operations, string resourceGroupName, string serverName) + public static Server Get(this IServersOperations operations, string resourceGroupName, string serverName) { - return operations.GetByResourceGroupAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// @@ -409,9 +172,9 @@ public static Server GetByResourceGroup(this IServersOperations operations, stri /// /// The cancellation token. /// - public static async Task GetByResourceGroupAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetByResourceGroupWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -585,54 +348,5 @@ public static IEnumerable ListServiceObjectives(this IServersO } } - /// - /// Imports a bacpac into a new database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - public static ImportExportOperationResponse BeginImportDatabase(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters) - { - return operations.BeginImportDatabaseAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// The cancellation token. - /// - public static async Task BeginImportDatabaseAsync(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs index f258532d2230..b34b6f6cec3f 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; using System.Collections; @@ -39,12 +39,12 @@ public partial class SqlManagementClient : ServiceClient, I /// /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -74,9 +74,14 @@ public partial class SqlManagementClient : ServiceClient, I public bool? GenerateClientRequestId { get; set; } /// - /// Gets the IServersOperations. + /// Gets the ICapabilitiesOperations. /// - public virtual IServersOperations Servers { get; private set; } + public virtual ICapabilitiesOperations Capabilities { get; private set; } + + /// + /// Gets the IFirewallRulesOperations. + /// + public virtual IFirewallRulesOperations FirewallRules { get; private set; } /// /// Gets the IDatabasesOperations. @@ -84,9 +89,9 @@ public partial class SqlManagementClient : ServiceClient, I public virtual IDatabasesOperations Databases { get; private set; } /// - /// Gets the IImportExportOperations. + /// Gets the IServersOperations. /// - public virtual IImportExportOperations ImportExportOperations { get; private set; } + public virtual IServersOperations Servers { get; private set; } /// /// Gets the IElasticPoolsOperations. @@ -104,7 +109,7 @@ public partial class SqlManagementClient : ServiceClient, I /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected SqlManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected SqlManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -118,7 +123,7 @@ protected SqlManagementClient(params System.Net.Http.DelegatingHandler[] handler /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected SqlManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected SqlManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -135,7 +140,7 @@ protected SqlManagementClient(System.Net.Http.HttpClientHandler rootHandler, par /// /// Thrown when a required parameter is null /// - protected SqlManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected SqlManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -159,7 +164,7 @@ protected SqlManagementClient(System.Uri baseUri, params System.Net.Http.Delegat /// /// Thrown when a required parameter is null /// - protected SqlManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected SqlManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -180,7 +185,7 @@ protected SqlManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHand /// /// Thrown when a required parameter is null /// - public SqlManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public SqlManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -208,7 +213,7 @@ public SqlManagementClient(ServiceClientCredentials credentials, params System.N /// /// Thrown when a required parameter is null /// - public SqlManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public SqlManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -236,7 +241,7 @@ public SqlManagementClient(ServiceClientCredentials credentials, System.Net.Http /// /// Thrown when a required parameter is null /// - public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -272,7 +277,7 @@ public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credenti /// /// Thrown when a required parameter is null /// - public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -299,16 +304,17 @@ public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credenti /// private void Initialize() { - Servers = new ServersOperations(this); + Capabilities = new CapabilitiesOperations(this); + FirewallRules = new FirewallRulesOperations(this); Databases = new DatabasesOperations(this); - ImportExportOperations = new ImportExportOperations(this); + Servers = new ServersOperations(this); ElasticPools = new ElasticPoolsOperations(this); RecommendedElasticPools = new RecommendedElasticPoolsOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -316,20 +322,20 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; SerializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -383,9 +389,9 @@ private void Initialize() _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -400,6 +406,8 @@ private void Initialize() } _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -447,7 +455,7 @@ private void Initialize() ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -484,7 +492,7 @@ private void Initialize() { _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -503,4 +511,3 @@ private void Initialize() } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs index 21f13bae02ae..aed8a280d8d9 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Threading; using System.Threading.Tasks; @@ -51,4 +51,3 @@ public static OperationListResult ListOperations(this ISqlManagementClient opera } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd index ea5429eb4475..2d28ed7158cd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd @@ -4,9 +4,8 @@ :: @echo off -set autoRestVersion=1.0.0-Nightly20161212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/b379c30fcb506b1bd643f6085b4bf318b8164b16/arm-sql/compositeSql.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/ea48f5627d9cd1964b19ce2571ebdc8f22262d93/arm-sql/compositeSql.json" ) else ( set specFile="%1" ) @@ -14,4 +13,6 @@ set repoRoot=%~dp0..\..\..\.. set generateFolder=%~dp0Generated if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.Sql %autoRestVersion% %generateFolder% "-FT 1" + +autorest --latest -Modeler CompositeSwagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Sql -Input %specFile% -outputDirectory %generateFolder% -Header MICROSOFT_MIT %~5 + diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs new file mode 100644 index 000000000000..f87fed18b244 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs @@ -0,0 +1,183 @@ +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.Azure.Test.HttpRecorder; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Xunit; + +namespace Sql.Tests +{ + /// + /// Contains tests for the lifecycle of a server blob auditing policy + /// + public class BlobAuditingTest + { + [Fact] + public void TestBlobAuditingApis() + { + string testPrefix = "server-blob-auditing-test-"; + string testName = this.GetType().FullName; + + SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestBlobAuditing", testPrefix, + (resClient, sqlClient, resourceGroup, server) => + { + // create some databases in server + Database[] databases = SqlManagementTestUtilities.CreateDatabasesAsync( + sqlClient, resourceGroup.Name, server, testPrefix, 2).Result; + + IList auditActionsAndGroups = new List { "SCHEMA_OBJECT_ACCESS_GROUP", "UPDATE on database::testdb by public" }; + +#if false // Commented out due to issues with async operation response + + // ******* Server blob auditing ******* + ServerBlobAuditingPolicy defaultServerPolicyResponse = sqlClient.Servers.GetBlobAuditingProperties(resourceGroup.Name, server.Name); + + // Verify that the initial Get request contains the default policy. + VerifyServerAuditingPolicyInformation(GetDefaultServerBlobAuditingProperties(), defaultServerPolicyResponse); + + // Modify the policy properties, send and receive and see it its still ok + IList auditActionsAndGroups = new List { "SCHEMA_OBJECT_ACCESS_GROUP", "UPDATE on database::testdb by public" }; + ServerBlobAuditingPolicy updatedServerPolicy = new ServerBlobAuditingPolicy + { + State = BlobAuditingPolicyState.Disabled, + RetentionDays = 8, + StorageAccountAccessKey = "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + StorageEndpoint = "https://MyAccount.blob.core.windows.net/", + AuditActionsAndGroups = auditActionsAndGroups, + StorageAccountSubscriptionId = "00000000-1234-0000-5678-000000000000", + IsStorageSecondaryKeyInUse = false + }; + + //Set blob auditing policy for server + sqlClient.Servers.CreateOrUpdateBlobAuditingProperties(resourceGroup.Name, server.Name, updatedServerPolicy); + + //Get blob auditing server policy + var getUpdatedServerPolicyResponse = sqlClient.Servers.GetBlobAuditingProperties(resourceGroup.Name, server.Name); + + // Verify that the Get request contains the updated policy. + VerifyServerAuditingPolicyInformation(updatedServerPolicy, getUpdatedServerPolicyResponse); +#endif + + // ******* Database blob auditing ******* + + string dbName = databases[0].Name; + DatabaseBlobAuditingPolicy defaultDatabasePolicyResponse = sqlClient.Databases.GetBlobAuditingPolicy(resourceGroup.Name, server.Name, dbName); + + // Verify that the initial Get request contains the default policy. + VerifyDatabaseAuditingPolicyInformation(GetDefaultDatabaseBlobAuditingProperties(), defaultDatabasePolicyResponse); + + // Modify the policy properties, send and receive and see it its still ok + DatabaseBlobAuditingPolicy updatedDatabasePolicy = new DatabaseBlobAuditingPolicy + { + State = BlobAuditingPolicyState.Disabled, + RetentionDays = 5, + StorageAccountAccessKey = "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + StorageEndpoint = "https://MyAccount.blob.core.windows.net/", + AuditActionsAndGroups = auditActionsAndGroups, + StorageAccountSubscriptionId = "00000000-1234-0000-5678-000000000000", + IsStorageSecondaryKeyInUse = false + }; + sqlClient.Databases.CreateOrUpdateBlobAuditingPolicy(resourceGroup.Name, server.Name, dbName, updatedDatabasePolicy); + + var getUpdatedDatabasePolicyResponse = sqlClient.Databases.GetBlobAuditingPolicy(resourceGroup.Name, server.Name, dbName); + // Verify that the Get request contains the updated policy. + VerifyDatabaseAuditingPolicyInformation(updatedDatabasePolicy, getUpdatedDatabasePolicyResponse); + }); + } + +#if false // Commented out due to issues with async operation response + + /// + /// Verify that the received properties match their expected values + /// + /// The expected value of the properties object + /// The properties object that needs to be checked + private void VerifyServerAuditingPolicyInformation(ServerBlobAuditingPolicy expected, ServerBlobAuditingPolicy actual) + { + Assert.Equal(expected.State, actual.State); + Assert.Equal(expected.RetentionDays, actual.RetentionDays); + Assert.Equal(expected.StorageEndpoint, actual.StorageEndpoint); + Assert.Equal(string.Empty, actual.StorageAccountAccessKey); + if (expected.AuditActionsAndGroups == null) + { + Assert.Equal(null, actual.AuditActionsAndGroups); + } + else + { + Assert.Equal(expected.AuditActionsAndGroups.Count, actual.AuditActionsAndGroups.Count); + actual.AuditActionsAndGroups.ForEach(s => Assert.True(expected.AuditActionsAndGroups.Any(es => es.Equals(s)))); + } + Assert.Equal(expected.StorageAccountSubscriptionId, actual.StorageAccountSubscriptionId); + Assert.Equal(expected.IsStorageSecondaryKeyInUse, actual.IsStorageSecondaryKeyInUse); + } + + /// + /// Returns a ServerBlobAuditingPolicy object that holds the default settings for a server blob auditing policy + /// + /// A ServerBlobAuditingPolicy object with the default server audit policy settings + private ServerBlobAuditingPolicy GetDefaultServerBlobAuditingProperties() + { + ServerBlobAuditingPolicy properties = new ServerBlobAuditingPolicy + { + State = BlobAuditingPolicyState.Disabled, + RetentionDays = 0, + StorageAccountAccessKey = string.Empty, + StorageEndpoint = string.Empty, + AuditActionsAndGroups = new List(), + StorageAccountSubscriptionId = "00000000-0000-0000-0000-000000000000", + IsStorageSecondaryKeyInUse = false, + }; + + return properties; + } + +#endif + + /// + /// Verify that the received properties match their expected values + /// + /// The expected value of the properties object + /// The properties object that needs to be checked + private void VerifyDatabaseAuditingPolicyInformation(DatabaseBlobAuditingPolicy expected, DatabaseBlobAuditingPolicy actual) + { + Assert.Equal(expected.State, actual.State); + Assert.Equal(expected.RetentionDays, actual.RetentionDays); + Assert.Equal(expected.StorageEndpoint, actual.StorageEndpoint); + Assert.Equal(string.Empty, actual.StorageAccountAccessKey); + if (expected.AuditActionsAndGroups == null) + { + Assert.Equal(null, actual.AuditActionsAndGroups); + } + else + { + Assert.Equal(expected.AuditActionsAndGroups.Count, actual.AuditActionsAndGroups.Count); + actual.AuditActionsAndGroups.ForEach(s => Assert.True(expected.AuditActionsAndGroups.Any(es => es.Equals(s)))); + } + Assert.Equal(expected.StorageAccountSubscriptionId, actual.StorageAccountSubscriptionId); + Assert.Equal(expected.IsStorageSecondaryKeyInUse, actual.IsStorageSecondaryKeyInUse); + } + + /// + /// Returns a BlobAuditingProperties object that holds the default settings for a database blob auditing policy + /// + /// A BlobAuditingProperties object with the default database audit policy settings + private DatabaseBlobAuditingPolicy GetDefaultDatabaseBlobAuditingProperties() + { + DatabaseBlobAuditingPolicy properties = new DatabaseBlobAuditingPolicy + { + State = BlobAuditingPolicyState.Disabled, + RetentionDays = 0, + StorageAccountAccessKey = string.Empty, + StorageEndpoint = string.Empty, + AuditActionsAndGroups = new List(), + StorageAccountSubscriptionId = "00000000-0000-0000-0000-000000000000", + IsStorageSecondaryKeyInUse = false, + }; + + return properties; + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/CapabilitiesScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/CapabilitiesScenarioTests.cs new file mode 100644 index 000000000000..48a45a2014ab --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/CapabilitiesScenarioTests.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System.Collections.Generic; +using System.Net; +using Xunit; + +namespace Sql.Tests +{ + public class CapabilitiesScenarioTests + { + [Fact] + public void TestGetCapabilities() + { + string login = "dummylogin"; + string password = "Un53cuRE!"; + string version12 = "12.0"; + string databaseName = "testdb"; + string testPrefix = "sqlcrudtest-"; + Dictionary tags = new Dictionary(); + string suiteName = this.GetType().FullName; + + using (MockContext context = MockContext.Start(suiteName, "TestGetCapabilities")) + { + var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; + var resourceClient = SqlManagementTestUtilities.GetResourceManagementClient(context, handler); + var sqlClient = SqlManagementTestUtilities.GetSqlManagementClient(context, handler); + + LocationCapabilities capabilities = sqlClient.Capabilities.ListByLocation(SqlManagementTestUtilities.DefaultLocation); + + Assert.NotNull(capabilities); + + foreach(ServerVersionCapability s in capabilities.SupportedServerVersions) + { + Assert.NotNull(s.Name); + foreach(EditionCapability e in s.SupportedEditions) + { + Assert.NotNull(e.Name); + foreach (ServiceObjectiveCapability o in e.SupportedServiceLevelObjectives) + { + Assert.NotNull(o.Name); + Assert.NotNull(o.Unit); + foreach(MaxSizeCapability m in o.SupportedMaxSizes) + { + Assert.NotNull(m.Limit); + Assert.NotNull(m.Unit); + } + } + } + } + } + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs index ff570d344ca7..e6c3e11a4262 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs @@ -135,7 +135,7 @@ public void TestUpdateDatabase() // var updateEditionAndSloInput = new Database() { - Edition = DatabaseEditions.Standard, + Edition = DatabaseEdition.Standard, RequestedServiceObjectiveName = ServiceObjectiveName.S0, Location = server.Location }; @@ -157,7 +157,7 @@ public void TestUpdateDatabase() // var updateEditionInput = new Database() { - Edition = DatabaseEditions.Premium, + Edition = DatabaseEdition.Premium, Location = server.Location }; var db4 = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, updateEditionInput); @@ -193,24 +193,12 @@ public void TestGetAndListDatabase() string suiteName = this.GetType().FullName; SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestGetAndListDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => { - // Begin creating some small databases to run the get/List tests on. - // - List> createDbTasks = new List>(); - for (int i = 0; i < 4; i++) - { - string name = SqlManagementTestUtilities.GenerateName(testPrefix); - createDbTasks.Add(sqlClient.Databases.CreateOrUpdateAsync(resourceGroup.Name, server.Name, name, - new Database() - { - Location = server.Location - })); - } + // Create some small databases to run the get/List tests on. + Database[] databases = SqlManagementTestUtilities.CreateDatabasesAsync( + sqlClient, resourceGroup.Name, server, testPrefix, 4).Result; - // Wait for all databases to be created. - IDictionary inputs = - Task.WhenAll(createDbTasks.ToArray()) - .Result - .ToDictionary( + // Organize into a dictionary for better lookup later + IDictionary inputs = databases.ToDictionary( keySelector: d => d.Name, elementSelector: d => d); @@ -292,5 +280,32 @@ public void TestRemoveDatabaseFromPool() Assert.Equal(null, dbResult.ElasticPoolName); }); } + + [Fact] + public void TestDatabaseTransparentDataEncryptionConfiguration() + { + string testPrefix = "sqlcrudtest-"; + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestDatabaseTransparentDataEncryptionConfiguration", testPrefix, (resClient, sqlClient, resourceGroup, server) => + { + // Create database only required parameters + // + string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + var db1 = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, new Database() + { + Location = server.Location, + }); + Assert.NotNull(db1); + + // Get TDE config + var config = sqlClient.Databases.GetTransparentDataEncryptionConfiguration(resourceGroup.Name, server.Name, dbName); + Assert.Equal(TransparentDataEncryptionStatus.Disabled, config.Status); + + // Update TDE config + config.Status = TransparentDataEncryptionStatus.Enabled; + config = sqlClient.Databases.CreateOrUpdateTransparentDataEncryptionConfiguration(resourceGroup.Name, server.Name, dbName, config); + Assert.Equal(TransparentDataEncryptionStatus.Enabled, config.Status); + }); + } } } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs index 5c05498cd522..9e213259afed 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs @@ -53,7 +53,7 @@ public void TestCreateDropElasticPool() var ep3Input = new ElasticPool() { Location = server.Location, - Edition = DatabaseEditions.Standard, + Edition = DatabaseEdition.Standard, Tags = tags, }; sqlClient.ElasticPools.CreateOrUpdate(resourceGroup.Name, server.Name, epName, ep3Input); @@ -83,7 +83,7 @@ public void TestUpdateElasticPoolAndListActivity() var epInput = new ElasticPool() { Location = server.Location, - Edition = DatabaseEditions.Standard, + Edition = DatabaseEdition.Standard, Tags = tags, Dtu = 100, DatabaseDtuMax = 20, diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs index 83e6c13eaf12..d32c2201373b 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs @@ -22,27 +22,27 @@ public void TestGetAndListFirewallRule() { // Create Firewall Rules // - Dictionary rules = new Dictionary(); + Dictionary rules = new Dictionary(); for(int i = 0; i < 4; i++) { string firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - ServerFirewallRule rule = new ServerFirewallRule() + FirewallRule rule = new FirewallRule() { StartIpAddress = string.Format("0.0.0.{0}",i), EndIpAddress = string.Format("0.0.0.{0}", i) }; - sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, rule); + sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, rule); rules.Add(firewallRuleName, rule); } foreach (var rule in rules) { - ServerFirewallRule response = sqlClient.Servers.GetFirewallRule(resourceGroup.Name, server.Name, rule.Key); + FirewallRule response = sqlClient.FirewallRules.Get(resourceGroup.Name, server.Name, rule.Key); SqlManagementTestUtilities.ValidateFirewallRule(rule.Value, response, rule.Key); } - var listResponse = sqlClient.Servers.ListFirewallRules(resourceGroup.Name, server.Name); + var listResponse = sqlClient.FirewallRules.ListByServer(resourceGroup.Name, server.Name); Assert.Equal(rules.Count(), listResponse.Count()); foreach (var rule in listResponse) @@ -68,39 +68,39 @@ public void TestCreateAndDropFirewallRule() // string firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - ServerFirewallRule toCreate = new ServerFirewallRule() + FirewallRule toCreate = new FirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "0.0.0.0" }; - var fr1 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + var fr1 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr1, firewallRuleName); // Create and validate Firewall Rule // firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - toCreate = new ServerFirewallRule() + toCreate = new FirewallRule() { StartIpAddress = "1.1.1.1", EndIpAddress = "1.1.2.2" }; - var fr2 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + var fr2 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr2, firewallRuleName); // Create and validate Firewall Rule // firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - toCreate = new ServerFirewallRule() + toCreate = new FirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "255.255.255.255" }; - var fr3 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + var fr3 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr3, firewallRuleName); - sqlClient.Servers.DeleteFirewallRule(resourceGroup.Name, server.Name, fr1.Name); - sqlClient.Servers.DeleteFirewallRule(resourceGroup.Name, server.Name, fr2.Name); - sqlClient.Servers.DeleteFirewallRule(resourceGroup.Name, server.Name, fr3.Name); + sqlClient.FirewallRules.Delete(resourceGroup.Name, server.Name, fr1.Name); + sqlClient.FirewallRules.Delete(resourceGroup.Name, server.Name, fr2.Name); + sqlClient.FirewallRules.Delete(resourceGroup.Name, server.Name, fr3.Name); }); } @@ -115,21 +115,21 @@ public void TestCreateAndUpdateFirewallRule() // string firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - ServerFirewallRule toCreate = new ServerFirewallRule() + FirewallRule toCreate = new FirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "0.0.0.0" }; - var fr1 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + var fr1 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr1, firewallRuleName); // Update Firewall Rule and Validate - toCreate = new ServerFirewallRule() + toCreate = new FirewallRule() { StartIpAddress = "1.1.1.1", EndIpAddress = "255.255.255.255" }; - fr1 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + fr1 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr1, firewallRuleName); }); } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs index 31b125a44e8a..ee8fa1b0164f 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs @@ -47,7 +47,7 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string }; // set server firewall rule - sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, SqlManagementTestUtilities.GenerateName(testPrefix), new ServerFirewallRule() + sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, SqlManagementTestUtilities.GenerateName(testPrefix), new FirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "255.255.255.255" @@ -87,7 +87,7 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string } // Export database to bacpac - sqlClient.Databases.Export(resourceGroup.Name, server.Name, dbName, new ExportRequestParameters() + sqlClient.Databases.Export(resourceGroup.Name, server.Name, dbName, new ExportRequest() { AdministratorLogin = login, AdministratorLoginPassword = password, @@ -101,7 +101,7 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string if (preexistingDatabase) { // Import bacpac to existing database - sqlClient.Databases.Import(resourceGroup.Name, server.Name, dbName2, new ImportExtensionRequestParameters() + sqlClient.Databases.CreateImportOperation(resourceGroup.Name, server.Name, dbName2, new ImportExtensionRequest() { AdministratorLogin = login, AdministratorLoginPassword = password, @@ -113,7 +113,7 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string } else { - sqlClient.Servers.ImportDatabase(resourceGroup.Name, server.Name, new ImportRequestParameters() + sqlClient.Databases.Import(resourceGroup.Name, server.Name, new ImportRequest() { AdministratorLogin = login, AdministratorLoginPassword = password, @@ -127,24 +127,6 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string MaxSizeBytes = (2 * 1024L * 1024L * 1024L).ToString(), }); } - - // List Server import/export operations - IEnumerable listOperationResponse = sqlClient.ImportExportOperations.ListByServer(resourceGroup.Name, server.Name); - Assert.Equal(2, listOperationResponse.Count()); - Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Export") && o.DatabaseName.Equals(dbName))); - Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Import") && o.DatabaseName.Equals(dbName2))); - - // Get Server import/export operation - foreach (ImportExportOperationResponse operation in listOperationResponse) - { - ImportExportOperationResponse getOperationResponse = sqlClient.ImportExportOperations.GetByServer(resourceGroup.Name, server.Name, - operation.RequestId.Value); - Assert.NotNull(getOperationResponse); - - ImportExportOperationResponse getByDbResponse = sqlClient.ImportExportOperations.GetByDatabase(resourceGroup.Name, server.Name, - getOperationResponse.DatabaseName, operation.RequestId.Value); - Assert.NotNull(getByDbResponse); - } }); } } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ServerCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ServerCrudScenarioTests.cs index fdf23b59e6f9..e476c59d0534 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ServerCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ServerCrudScenarioTests.cs @@ -57,11 +57,11 @@ public void TestCreateUpdateGetDropServer() SqlManagementTestUtilities.ValidateServer(v2Server, serverNameV2, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); // Get first server - var getV12Server = sqlClient.Servers.GetByResourceGroup(resourceGroup.Name, serverNameV12); + var getV12Server = sqlClient.Servers.Get(resourceGroup.Name, serverNameV12); SqlManagementTestUtilities.ValidateServer(getV12Server, serverNameV12, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); // Get second server - var getV2Server = sqlClient.Servers.GetByResourceGroup(resourceGroup.Name, serverNameV2); + var getV2Server = sqlClient.Servers.Get(resourceGroup.Name, serverNameV2); SqlManagementTestUtilities.ValidateServer(getV2Server, serverNameV2, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); var listServers = sqlClient.Servers.ListByResourceGroup(resourceGroup.Name); diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestBlobAuditing.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestBlobAuditing.json new file mode 100644 index 000000000000..396870db9ace --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestBlobAuditing.json @@ -0,0 +1,1090 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-blob-auditing-test-7677?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"server-blob-auditing-test-7677\": \"2017-03-11 02:04:32Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ], + "x-ms-client-request-id": [ + "c2b4478b-11ad-4b1d-96f4-90fcb61f6903" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677\",\r\n \"name\": \"server-blob-auditing-test-7677\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"server-blob-auditing-test-7677\": \"2017-03-11 02:04:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:04:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "b809b1f0-a365-4761-8547-64f86de8d648" + ], + "x-ms-correlation-request-id": [ + "b809b1f0-a365-4761-8547-64f86de8d648" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020435Z:b809b1f0-a365-4761-8547-64f86de8d648" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "61f1c380-bd38-4c66-a06e-56bd5771f48d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057\",\r\n \"name\": \"server-blob-auditing-test-1057\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"server-blob-auditing-test-1057.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "389e5284-44eb-4d4b-a55d-2641bd68735c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5316e44d-def0-4972-bba7-664d3fb90f61" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020511Z:5316e44d-def0-4972-bba7-664d3fb90f61" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "d6a38c5e-0f7e-485b-85e7-50a88d20e33f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T18:05:13.154-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/operationResults/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "80de9388-76e0-416e-b4ad-395a2e1557e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "43590fea-6ffb-4829-bf48-decd6131ff3a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020513Z:43590fea-6ffb-4829-bf48-decd6131ff3a" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC04Nzg0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "7d5fefd3-a802-45c9-ab6a-7f44a70d34a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T18:05:14.701-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/operationResults/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4024ff64-bc01-4a91-9c3c-4fb313d69774" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "16b03468-3bcc-41ed-a25e-41be724c36f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020514Z:16b03468-3bcc-41ed-a25e-41be724c36f7" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F6dXJlQXN5bmNPcGVyYXRpb24vODBkZTkzODgtNzZlMC00MTZlLWI0YWQtMzk1YTJlMTU1N2UyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"80de9388-76e0-416e-b4ad-395a2e1557e2\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:44 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0226ac9e-3428-4a77-8066-86db78f77446" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "66b2fb3d-e69b-4a48-a1a0-6dc2e3127dd5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020544Z:66b2fb3d-e69b-4a48-a1a0-6dc2e3127dd5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F6dXJlQXN5bmNPcGVyYXRpb24vODBkZTkzODgtNzZlMC00MTZlLWI0YWQtMzk1YTJlMTU1N2UyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"80de9388-76e0-416e-b4ad-395a2e1557e2\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:14 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c481c26d-33f7-468c-acf8-dd4a893a1971" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "669ca02e-b271-40b8-9e47-db97462ed05e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020615Z:669ca02e-b271-40b8-9e47-db97462ed05e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC04Nzg0L2F6dXJlQXN5bmNPcGVyYXRpb24vNDAyNGZmNjQtYmMwMS00YTkxLTljM2MtNGZiMzEzZDY5Nzc0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4024ff64-bc01-4a91-9c3c-4fb313d69774\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:45 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3cdbdcce-89b9-4c02-918b-51e21769a5dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "98cc66e1-a49d-4262-b957-68d2a222522e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020545Z:98cc66e1-a49d-4262-b957-68d2a222522e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC04Nzg0L2F6dXJlQXN5bmNPcGVyYXRpb24vNDAyNGZmNjQtYmMwMS00YTkxLTljM2MtNGZiMzEzZDY5Nzc0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4024ff64-bc01-4a91-9c3c-4fb313d69774\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:15 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d85adfba-74ea-47a4-b3ab-a3b01493ddf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "b61477ae-2018-42a1-81f1-a8e558f9c182" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020616Z:b61477ae-2018-42a1-81f1-a8e558f9c182" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876\",\r\n \"name\": \"server-blob-auditing-test-7876\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"177e246a-28d6-4143-94f4-0b9840b66bfa\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T02:05:13.453Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:16:01.35Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:15 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f157c8f0-a8ca-4785-a427-26a793b0f392" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "2c2aab32-a1f9-4145-8c56-ba8e5a90d05d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020616Z:2c2aab32-a1f9-4145-8c56-ba8e5a90d05d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC04Nzg0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784\",\r\n \"name\": \"server-blob-auditing-test-8784\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d59f3586-6f81-41ac-8efa-7993a3fb8a77\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T02:05:14.967Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:15:47.687Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:16 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0288670f-a620-4992-b635-bd573578f5d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "64cb25ff-1235-43e6-a701-ebb4bba9ef4f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020617Z:64cb25ff-1235-43e6-a701-ebb4bba9ef4f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e8b749b-b249-414c-b2fe-f6ae86ba6560" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"auditActionsAndGroups\": [],\r\n \"storageAccountSubscriptionId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "204f9abb-624c-486d-9827-834968aeee5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "cfb98c04-7e70-4e4a-a517-50252a0f3996" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020618Z:cfb98c04-7e70-4e4a-a517-50252a0f3996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d6bb1e4-53a8-4219-9684-2345fc8d2f88" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2e80c5f4-24ef-4071-95ab-800604a2e974" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "0e5df406-4ac9-4409-83f5-b108a19d270e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020621Z:0e5df406-4ac9-4409-83f5-b108a19d270e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "507" + ], + "x-ms-client-request-id": [ + "89a6a948-5e13-4dc0-87dc-047ad710634b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d3713542-7be9-4e1c-9101-804f64d1cfa2" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c7d95d85-d84f-431e-ad80-c51297912088" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020620Z:c7d95d85-d84f-431e-ad80-c51297912088" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-blob-auditing-test-7677?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b183b23a-3f74-4f8b-83b3-4e123fdab0a6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "258b4b5d-956f-4d40-9b29-681de104e984" + ], + "x-ms-correlation-request-id": [ + "258b4b5d-956f-4d40-9b29-681de104e984" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020624Z:258b4b5d-956f-4d40-9b29-681de104e984" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVOelkzTnkxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "0f6e45ec-1698-4aff-a173-137f731916c3" + ], + "x-ms-correlation-request-id": [ + "0f6e45ec-1698-4aff-a173-137f731916c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020655Z:0f6e45ec-1698-4aff-a173-137f731916c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVOelkzTnkxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:07:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "3c16ac4f-a61a-4c6f-ba27-fbf79f40fc9d" + ], + "x-ms-correlation-request-id": [ + "3c16ac4f-a61a-4c6f-ba27-fbf79f40fc9d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020725Z:3c16ac4f-a61a-4c6f-ba27-fbf79f40fc9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVOelkzTnkxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:07:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "7c3cbf05-77c0-40cf-ae02-f2b455dd1a05" + ], + "x-ms-correlation-request-id": [ + "7c3cbf05-77c0-40cf-ae02-f2b455dd1a05" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020756Z:7c3cbf05-77c0-40cf-ae02-f2b455dd1a05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVOelkzTnkxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:08:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "d2d37010-d1ad-4b00-9882-893f22c889d0" + ], + "x-ms-correlation-request-id": [ + "d2d37010-d1ad-4b00-9882-893f22c889d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020826Z:d2d37010-d1ad-4b00-9882-893f22c889d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "server-blob-auditing-test-7677" + ], + "RunTestInNewV12Server": [ + "server-blob-auditing-test-1057" + ], + "CreateDatabasesAsync": [ + "server-blob-auditing-test-7876", + "server-blob-auditing-test-8784" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestServerBlobAuditing.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestServerBlobAuditing.json new file mode 100644 index 000000000000..4bad829d095f --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestServerBlobAuditing.json @@ -0,0 +1,1090 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-blob-auditing-test-3094?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"server-blob-auditing-test-3094\": \"2017-03-11 01:22:11Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ], + "x-ms-client-request-id": [ + "0a8b19e8-78f7-412c-95da-4b8736a2a51a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094\",\r\n \"name\": \"server-blob-auditing-test-3094\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"server-blob-auditing-test-3094\": \"2017-03-11 01:22:11Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:22:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d4010685-e767-424f-bdf6-e52d9e0bbf8b" + ], + "x-ms-correlation-request-id": [ + "d4010685-e767-424f-bdf6-e52d9e0bbf8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012213Z:d4010685-e767-424f-bdf6-e52d9e0bbf8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "aee5d242-0139-4c9b-905d-f09e4660ab1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716\",\r\n \"name\": \"server-blob-auditing-test-6716\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"server-blob-auditing-test-6716.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:22:47 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d4415ba6-7d1b-4710-afd7-8399e2c99131" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7cb3f405-6def-480f-8a4e-6ac2130f1c74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012248Z:7cb3f405-6def-480f-8a4e-6ac2130f1c74" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "06c33f53-7fb4-4f93-bb91-17e401da4dce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T17:22:50.079-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:22:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/operationResults/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3670d882-a7b3-4af4-82be-383a5614e23e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "1682d2ac-e4ef-41a4-be04-aa4046fbc764" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012250Z:1682d2ac-e4ef-41a4-be04-aa4046fbc764" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC00NDIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "09abe725-61d2-4e9d-8e48-8c7e503d5828" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T17:22:49.647-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:22:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/operationResults/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b335a86b-bec4-45ae-86d2-2912d7c3191c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7c143411-51d7-4912-bd7b-7d6de2f4f172" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012251Z:7c143411-51d7-4912-bd7b-7d6de2f4f172" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F6dXJlQXN5bmNPcGVyYXRpb24vMzY3MGQ4ODItYTdiMy00YWY0LTgyYmUtMzgzYTU2MTRlMjNlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3670d882-a7b3-4af4-82be-383a5614e23e\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:20 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d4e1c6cc-7938-491a-8fdb-daba91514cda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "1e7b4e98-f210-4855-a52d-2e4edb7274c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012321Z:1e7b4e98-f210-4855-a52d-2e4edb7274c3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F6dXJlQXN5bmNPcGVyYXRpb24vMzY3MGQ4ODItYTdiMy00YWY0LTgyYmUtMzgzYTU2MTRlMjNlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3670d882-a7b3-4af4-82be-383a5614e23e\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:51 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d6ac73b4-6f45-462c-9ebc-825dbd76eb67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "157c4c27-2c25-464b-93fb-56ec8b82a2dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012351Z:157c4c27-2c25-464b-93fb-56ec8b82a2dd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC00NDIyL2F6dXJlQXN5bmNPcGVyYXRpb24vYjMzNWE4NmItYmVjNC00NWFlLTg2ZDItMjkxMmQ3YzMxOTFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b335a86b-bec4-45ae-86d2-2912d7c3191c\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b7426540-f5ba-42c4-ad13-caf7d8c5fbcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "a8c16e62-9486-45fb-8e82-9d2970036ce0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012321Z:a8c16e62-9486-45fb-8e82-9d2970036ce0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC00NDIyL2F6dXJlQXN5bmNPcGVyYXRpb24vYjMzNWE4NmItYmVjNC00NWFlLTg2ZDItMjkxMmQ3YzMxOTFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b335a86b-bec4-45ae-86d2-2912d7c3191c\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8f94f1f4-2c1d-4727-9448-6c295ecea5ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "ec22fd2a-a86b-4a28-a161-5cc52ccce429" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012352Z:ec22fd2a-a86b-4a28-a161-5cc52ccce429" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923\",\r\n \"name\": \"server-blob-auditing-test-6923\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"4d62eb0f-93b5-4059-9db7-87587c58e625\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T01:22:50.33Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T01:33:22.853Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:51 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b3339e2a-2ebe-4c1a-b1f6-a930b968e34d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "94feb91e-d442-4284-a866-1dc3784f71da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012352Z:94feb91e-d442-4284-a866-1dc3784f71da" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC00NDIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422\",\r\n \"name\": \"server-blob-auditing-test-4422\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e2b3efc4-79c3-4f06-a400-078ca7d1b253\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T01:22:49.897Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T01:33:33.437Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "652b5474-5efb-4419-a25d-e1bfc3a5e696" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "aae570ab-9cf0-4c6f-8acb-597b7761e29e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012353Z:aae570ab-9cf0-4c6f-8acb-597b7761e29e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a13e62e7-1293-4250-837e-af04988f175a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"auditActionsAndGroups\": [],\r\n \"storageAccountSubscriptionId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e0ea1edf-bbbe-4a9e-b7b7-0b0b46662620" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "c9f3218b-3245-46ec-92d6-49546a72bd51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012354Z:c9f3218b-3245-46ec-92d6-49546a72bd51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d31c6a7-cfa1-4e59-a428-ab683f672354" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4f97eb4a-69ea-49e1-a858-b7aa8cdbc3d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "a400874d-82e6-4d2f-abe9-8561d28e1d3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012356Z:a400874d-82e6-4d2f-abe9-8561d28e1d3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "507" + ], + "x-ms-client-request-id": [ + "9b1bacfc-313f-4eb9-8c2a-9c8378bc9b90" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "22fccd80-9b96-422f-bf4c-973a0dbe7011" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "41180861-22b4-472d-bd0d-13f9ba8ad3f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012355Z:41180861-22b4-472d-bd0d-13f9ba8ad3f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-blob-auditing-test-3094?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34c47869-d5bb-4a2b-927b-32b5e23b8c8d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "cbc0cb78-1362-4556-901e-331bbd7ea095" + ], + "x-ms-correlation-request-id": [ + "cbc0cb78-1362-4556-901e-331bbd7ea095" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012358Z:cbc0cb78-1362-4556-901e-331bbd7ea095" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVNekE1TkMxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:24:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "692f032b-bffb-48da-8e24-4b6f87b83a4e" + ], + "x-ms-correlation-request-id": [ + "692f032b-bffb-48da-8e24-4b6f87b83a4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012428Z:692f032b-bffb-48da-8e24-4b6f87b83a4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVNekE1TkMxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:24:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "b498416b-401d-4c6e-aa9d-89be5f564ce4" + ], + "x-ms-correlation-request-id": [ + "b498416b-401d-4c6e-aa9d-89be5f564ce4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012459Z:b498416b-401d-4c6e-aa9d-89be5f564ce4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVNekE1TkMxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:25:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "4c7f623c-1285-4fa0-8323-758c0d624067" + ], + "x-ms-correlation-request-id": [ + "4c7f623c-1285-4fa0-8323-758c0d624067" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012529Z:4c7f623c-1285-4fa0-8323-758c0d624067" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVNekE1TkMxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:25:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "3cc098dc-0081-4282-bbf7-107e052e857c" + ], + "x-ms-correlation-request-id": [ + "3cc098dc-0081-4282-bbf7-107e052e857c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012559Z:3cc098dc-0081-4282-bbf7-107e052e857c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "server-blob-auditing-test-3094" + ], + "RunTestInNewV12Server": [ + "server-blob-auditing-test-6716" + ], + "CreateDatabasesAsync": [ + "server-blob-auditing-test-6923", + "server-blob-auditing-test-4422" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.CapabilitiesScenarioTests/TestGetCapabilities.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.CapabilitiesScenarioTests/TestGetCapabilities.json new file mode 100644 index 000000000000..f9d551f354a8 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.CapabilitiesScenarioTests/TestGetCapabilities.json @@ -0,0 +1,69 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/providers/Microsoft.Sql/locations/Japan%20East/capabilities?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9KYXBhbiUyMEVhc3QvY2FwYWJpbGl0aWVzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94353b89-fa66-40a2-bcc9-2e8f0f8f69b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"Japan East\",\r\n \"status\": \"Available\",\r\n \"supportedServerVersions\": [\r\n {\r\n \"name\": \"2.0\",\r\n \"status\": \"Visible\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"Web\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"name\": \"Shared\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Business\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"name\": \"Shared\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 5,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 10,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 20,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 50,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 100,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 200,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"a7c4c615-cfb1-464b-b252-925be0a19446\",\r\n \"name\": \"P3\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 800,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 800,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"System\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"name\": \"System\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"12.0\",\r\n \"status\": \"Default\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"System\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"name\": \"System\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"29dd7459-4a7c-4e56-be22-f0adda49440d\",\r\n \"name\": \"System0\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"c99ac918-dbea-463f-a475-16ec020fdc12\",\r\n \"name\": \"System1\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"name\": \"System2\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"33d0db1f-6893-4210-99f9-463fb9b496a4\",\r\n \"name\": \"System3\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"da24338c-a6c9-46c2-a4bf-4ac95b496ae4\",\r\n \"name\": \"System4\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"53f7fa1b-b0d0-43d6-bc29-c5f059fb36e9\",\r\n \"name\": \"System2L\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"e79cd55c-689f-48d9-bffa-0dd12c772248\",\r\n \"name\": \"System3L\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"4b37bb6d-e004-47ac-8f7a-be56ac9fb490\",\r\n \"name\": \"System4L\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Free\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"6aa3bb3e-7f50-40d6-95ef-5497c30d99d8\",\r\n \"name\": \"Free\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 32,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 5,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 5,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Default\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 10,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 20,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 50,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"789681b8-ca10-4eb0-bdf2-e0b050601b40\",\r\n \"name\": \"S3\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 100,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 125,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc\",\r\n \"name\": \"P4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"dd00d544-bbc0-4f61-ba60-cdce0c410288\",\r\n \"name\": \"P11\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 4,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"5bc86cca-9a96-4a94-90ef-bbdfcfbf2d71\",\r\n \"name\": \"P15\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 4,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 4000,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PremiumRS\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dfdc102c-ed02-4349-9756-e227f0e43bb8\",\r\n \"name\": \"PRS1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 125,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"a089506e-b47a-4f42-8a32-cc19af4c86fb\",\r\n \"name\": \"PRS2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"39cb8faf-cba8-4b1b-b580-1e1202f2a024\",\r\n \"name\": \"PRS4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"1e8da92e-efcd-4682-9140-bf6582120d1f\",\r\n \"name\": \"PRS6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1000,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"DataWarehouse\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"name\": \"DW100\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"99e78a92-d724-4e1b-857b-2be661f3d153\",\r\n \"name\": \"DW200\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"284f1aff-fee7-4d3b-a211-5b8ebdd28fea\",\r\n \"name\": \"DW300\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 2250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"3bdaeefe-8a9d-41d3-91c4-46ef896b19af\",\r\n \"name\": \"DW400\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 3000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f759b78-8ec0-4dfb-97cc-c1455a3b5b4d\",\r\n \"name\": \"DW500\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 3750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"efd65c5b-af7b-4389-9109-f6a69d6a3885\",\r\n \"name\": \"DW600\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 4500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"b89b9c6a-4ec2-4eb8-99db-6d2807e6aabb\",\r\n \"name\": \"DW1000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 7500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"9a7a374e-b95c-4fd5-a68e-131d60796c47\",\r\n \"name\": \"DW1200\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 9000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"b930f58e-86b5-43e0-a2da-d8bf8769c557\",\r\n \"name\": \"DW1500\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 11250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"99165ede-a5ab-4b52-b317-e391d92ec370\",\r\n \"name\": \"DW2000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 15000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"8e28c923-5cf2-43cb-bd25-28c8c69b30ff\",\r\n \"name\": \"DW3000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 22500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"ee1df062-4f3c-42ad-91bf-58b2a7c351e4\",\r\n \"name\": \"DW6000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 45000,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Stretch\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"9cfc850f-d57f-4760-b5a6-bb640d268bf0\",\r\n \"name\": \"DS100\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"053407ef-f01c-46f4-b829-96e01a14f449\",\r\n \"name\": \"DS200\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"013a9e10-cafc-45a8-8fcf-93095655d2ce\",\r\n \"name\": \"DS300\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 2250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"79f61db4-8c10-46ba-a93a-d7d02dddd61c\",\r\n \"name\": \"DS400\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 3000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"44eaac33-df00-4ef4-a2bb-f7ff87899eea\",\r\n \"name\": \"DS500\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 3750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"f8e0f3a6-888b-459c-a9dd-d74d8b2b0e72\",\r\n \"name\": \"DS600\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 4500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"b9ed8f51-a414-42dc-8348-e4a1de25e12b\",\r\n \"name\": \"DS1000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 7500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"07479569-6d70-47a5-8db6-0af55d34f2c1\",\r\n \"name\": \"DS1200\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 9000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"2d79baec-2879-46d5-9f5d-fb70eb004c4e\",\r\n \"name\": \"DS1500\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 11250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"7fb5389f-6d15-4e0b-9540-fe5ecdfdbeee\",\r\n \"name\": \"DS2000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 15000,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 22:44:41 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3fb1949b-44ce-4cda-b303-64bcdf0bf9cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "4e272598-24f8-44a2-8af8-0e68e2c97890" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T224442Z:4e272598-24f8-44a2-8af8-0e68e2c97890" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestDatabaseTransparentDataEncryptionConfiguration.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestDatabaseTransparentDataEncryptionConfiguration.json new file mode 100644 index 000000000000..b9c642ba25b1 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestDatabaseTransparentDataEncryptionConfiguration.json @@ -0,0 +1,784 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/sqlcrudtest-4753?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-4753\": \"2017-03-15 17:10:17Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "8311808b-aea7-41fb-aa90-f61a2302e3f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753\",\r\n \"name\": \"sqlcrudtest-4753\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-4753\": \"2017-03-15 17:10:17Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:10:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "59613960-c3fd-4ef8-8109-cdf3670bfe09" + ], + "x-ms-correlation-request-id": [ + "59613960-c3fd-4ef8-8109-cdf3670bfe09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171019Z:59613960-c3fd-4ef8-8109-cdf3670bfe09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "cc3ea7a7-423d-41b2-905c-41c7816e6ea4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619\",\r\n \"name\": \"sqlcrudtest-3619\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3619.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:11:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "633e37b1-851a-49a3-a691-952b20f2a3be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "94922821-3bc4-49c5-b328-2c9101aba957" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171101Z:94922821-3bc4-49c5-b328-2c9101aba957" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "dc621849-caa7-4f21-a657-750e26c1447b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-15T10:11:01.551-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:11:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/operationResults/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c3dfd01a-8457-4f35-a220-80f3ee77883b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "8568a5b2-785a-41ca-a749-098809029d8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171102Z:8568a5b2-785a-41ca-a749-098809029d8e" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5L2F6dXJlQXN5bmNPcGVyYXRpb24vYzNkZmQwMWEtODQ1Ny00ZjM1LWEyMjAtODBmM2VlNzc4ODNiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c3dfd01a-8457-4f35-a220-80f3ee77883b\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:11:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8fe6e35c-f3ad-45cb-b025-5b5a675be8c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "26e6314a-dc7a-4dd3-a66f-7ace289f3d7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171133Z:26e6314a-dc7a-4dd3-a66f-7ace289f3d7f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5L2F6dXJlQXN5bmNPcGVyYXRpb24vYzNkZmQwMWEtODQ1Ny00ZjM1LWEyMjAtODBmM2VlNzc4ODNiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c3dfd01a-8457-4f35-a220-80f3ee77883b\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:04 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7399813d-fbd2-4ce2-8a2e-bc37cb6d0967" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "80aaf643-9047-424b-a9db-e2b5e6d8caec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171204Z:80aaf643-9047-424b-a9db-e2b5e6d8caec" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359\",\r\n \"name\": \"sqlcrudtest-6359\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"db2cfd1c-5c0c-4756-abf2-d4c970620618\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-15T17:11:01.787Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-15T17:21:40.163Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:05 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1eb6c51d-d554-4ccb-847c-d9b9534e8475" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "b2209473-f0c3-4b30-b4f8-584023137dfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171205Z:b2209473-f0c3-4b30-b4f8-584023137dfc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/transparentDataEncryption/current?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5L3RyYW5zcGFyZW50RGF0YUVuY3J5cHRpb24vY3VycmVudD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da98711d-0b8a-4575-856d-4e3064da2565" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"current\",\r\n \"location\": \"Japan East\",\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/transparentDataEncryption/current\",\r\n \"type\": \"Microsoft.Sql/servers/databases/transparentDataEncryption\",\r\n \"properties\": {\r\n \"status\": \"Disabled\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:06 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "605d92dd-c5b9-4f9c-97ad-79df617c880a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "1549581b-0058-4bc9-9f8d-3b27d133189a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171206Z:1549581b-0058-4bc9-9f8d-3b27d133189a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/transparentDataEncryption/current?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5L3RyYW5zcGFyZW50RGF0YUVuY3J5cHRpb24vY3VycmVudD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"status\": \"Enabled\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "53" + ], + "x-ms-client-request-id": [ + "635c8ceb-60db-49c6-ba99-a32516c49365" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"current\",\r\n \"location\": null,\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/transparentDataEncryption/current\",\r\n \"type\": \"Microsoft.Sql/servers/databases/transparentDataEncryption\",\r\n \"properties\": {\r\n \"status\": \"Enabled\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:08 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "764690ac-b906-438a-a303-52a6b3de589b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "084886bc-d84f-4105-9775-06263fde990e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171209Z:084886bc-d84f-4105-9775-06263fde990e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/sqlcrudtest-4753?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "223cac3c-2cc8-4107-82ec-0dd276a375f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "a0c3bbdf-725b-4264-a855-89e2d8f567c6" + ], + "x-ms-correlation-request-id": [ + "a0c3bbdf-725b-4264-a855-89e2d8f567c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171211Z:a0c3bbdf-725b-4264-a855-89e2d8f567c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "d7f610cb-cacc-4499-82f7-c3b266c65dc9" + ], + "x-ms-correlation-request-id": [ + "d7f610cb-cacc-4499-82f7-c3b266c65dc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171241Z:d7f610cb-cacc-4499-82f7-c3b266c65dc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:13:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "d82b9ceb-7272-458c-b760-f15984dec25d" + ], + "x-ms-correlation-request-id": [ + "d82b9ceb-7272-458c-b760-f15984dec25d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171312Z:d82b9ceb-7272-458c-b760-f15984dec25d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:13:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "5c4e6683-648e-4bdc-a9f1-43dccdbd4660" + ], + "x-ms-correlation-request-id": [ + "5c4e6683-648e-4bdc-a9f1-43dccdbd4660" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171342Z:5c4e6683-648e-4bdc-a9f1-43dccdbd4660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:14:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "fd0ed395-b2b1-4289-a26c-b1d47abd6c42" + ], + "x-ms-correlation-request-id": [ + "fd0ed395-b2b1-4289-a26c-b1d47abd6c42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171412Z:fd0ed395-b2b1-4289-a26c-b1d47abd6c42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "sqlcrudtest-4753" + ], + "RunTestInNewV12Server": [ + "sqlcrudtest-3619" + ], + "TestDatabaseTransparentDataEncryptionConfiguration": [ + "sqlcrudtest-6359" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json index f685b85a2202..672ca397ceb2 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json @@ -1750,7 +1750,7 @@ "RunTestInNewV12Server": [ "sqlcrudtest-318" ], - "TestGetAndListDatabase": [ + "CreateDatabasesAsync": [ "sqlcrudtest-1856", "sqlcrudtest-2783", "sqlcrudtest-7851", diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestServerSecurityAlert.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestServerSecurityAlert.json new file mode 100644 index 000000000000..05ee46697485 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestServerSecurityAlert.json @@ -0,0 +1,1093 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-security-alert-test-2054?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"server-security-alert-test-2054\": \"2017-03-11 01:54:43Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "114" + ], + "x-ms-client-request-id": [ + "86407fbf-9d71-434b-9c70-1fbf46da6a6d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054\",\r\n \"name\": \"server-security-alert-test-2054\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"server-security-alert-test-2054\": \"2017-03-11 01:54:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "284" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:54:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f4c43119-b30f-49c1-8fa9-52aa711f3fa4" + ], + "x-ms-correlation-request-id": [ + "f4c43119-b30f-49c1-8fa9-52aa711f3fa4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015446Z:f4c43119-b30f-49c1-8fa9-52aa711f3fa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "da4e6457-d71a-416e-9cab-c4f505b5c400" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759\",\r\n \"name\": \"server-security-alert-test-9759\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"server-security-alert-test-9759.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:21 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5a05d52e-b82f-481c-8ee4-ba3ddede732d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "77e6e59e-1b5b-49d4-a650-58106d1a16d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015522Z:77e6e59e-1b5b-49d4-a650-58106d1a16d5" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "6a516583-d97c-4103-99ec-e1cfd66948fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T17:55:25.279-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/operationResults/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "070d9cdc-c530-4e91-b29e-1639098a9ff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "04b6471e-c4f9-4030-8af2-38981a658441" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015524Z:04b6471e-c4f9-4030-8af2-38981a658441" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02NjM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "8ca4f1e7-dcd3-465c-82f9-8795631cd816" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T17:55:26.106-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/operationResults/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5b7e2ae2-16ea-4aa1-85c7-1480ea72934a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "ba2633dd-fb92-459b-b9e9-f45b95aa3a08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015526Z:ba2633dd-fb92-459b-b9e9-f45b95aa3a08" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L2F6dXJlQXN5bmNPcGVyYXRpb24vMDcwZDljZGMtYzUzMC00ZTkxLWIyOWUtMTYzOTA5OGE5ZmY4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"070d9cdc-c530-4e91-b29e-1639098a9ff8\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:54 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "23a33912-044f-4917-82a1-564fd6d7895b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "4c83de3d-b760-42b6-8e9a-01a5c7636f06" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015555Z:4c83de3d-b760-42b6-8e9a-01a5c7636f06" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L2F6dXJlQXN5bmNPcGVyYXRpb24vMDcwZDljZGMtYzUzMC00ZTkxLWIyOWUtMTYzOTA5OGE5ZmY4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"070d9cdc-c530-4e91-b29e-1639098a9ff8\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:26 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bb87305e-eb6d-4300-8c1f-40355dafad52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "1b722524-1d30-4dc3-b5c1-5efdcbd3039a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015626Z:1b722524-1d30-4dc3-b5c1-5efdcbd3039a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02NjM0L2F6dXJlQXN5bmNPcGVyYXRpb24vNWI3ZTJhZTItMTZlYS00YWExLTg1YzctMTQ4MGVhNzI5MzRhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5b7e2ae2-16ea-4aa1-85c7-1480ea72934a\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:56 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d4070778-218f-4c5f-909b-ea23f2eef3f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "4fd27cde-7277-4f92-9db3-50cbe93828d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015557Z:4fd27cde-7277-4f92-9db3-50cbe93828d5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02NjM0L2F6dXJlQXN5bmNPcGVyYXRpb24vNWI3ZTJhZTItMTZlYS00YWExLTg1YzctMTQ4MGVhNzI5MzRhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5b7e2ae2-16ea-4aa1-85c7-1480ea72934a\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:28 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "247ab13c-04e4-4ada-904c-c106c5d1b0ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "992459a0-e7d2-4c19-b996-bdbd678c3e8b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015628Z:992459a0-e7d2-4c19-b996-bdbd678c3e8b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666\",\r\n \"name\": \"server-security-alert-test-9666\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1dcb7dc4-02b3-4b9f-9b4a-4f55cce920a4\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T01:55:25.56Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:06:20.97Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:27 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5deb2b23-4129-4d5a-8e34-54b509cfb742" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "c4421798-683f-42c2-ba20-6469293b2645" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015627Z:c4421798-683f-42c2-ba20-6469293b2645" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02NjM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634\",\r\n \"name\": \"server-security-alert-test-6634\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"17da9de9-4a97-4156-a530-34499cb0d672\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T01:55:26.387Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:06:05.417Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:28 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "514e4507-4719-4c45-8b64-1188c1319a15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "a0d51b8a-fe03-43ab-8786-8428bea02dfa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015629Z:a0d51b8a-fe03-43ab-8786-8428bea02dfa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53b5546d-af79-4892-a805-d1449f7be5ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"Preview\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:30 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "db3c256f-1235-4774-832e-81e7eb67e048" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "265d63ef-6bdd-49aa-be27-38f742dbcf0a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015631Z:265d63ef-6bdd-49aa-be27-38f742dbcf0a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "201c825d-0a42-4e81-9c54-8c77e904caaa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:34 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5c7b7b5e-c319-49f6-a443-4e604812b92c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "62c9379f-e719-4157-8e07-e0e36eb39a92" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015634Z:62c9379f-e719-4157-8e07-e0e36eb39a92" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5,\r\n \"useServerDefault\": \"Enabled\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "453" + ], + "x-ms-client-request-id": [ + "69c1f1db-db5c-4cd4-affc-d7ec70340c1e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9babd642-369a-4f48-b835-77567b2a25fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "589f0162-b876-44ba-b488-eef2260a8431" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015633Z:589f0162-b876-44ba-b488-eef2260a8431" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-security-alert-test-2054?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0635e1aa-09c9-4966-9015-5e901da1bc93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "ce26ef80-475a-44ea-b821-90b6f0d524b1" + ], + "x-ms-correlation-request-id": [ + "ce26ef80-475a-44ea-b821-90b6f0d524b1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015638Z:ce26ef80-475a-44ea-b821-90b6f0d524b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREl3TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:57:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "5db0af42-bf72-4208-b948-c8132a4c8f7c" + ], + "x-ms-correlation-request-id": [ + "5db0af42-bf72-4208-b948-c8132a4c8f7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015709Z:5db0af42-bf72-4208-b948-c8132a4c8f7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREl3TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:57:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "19bbf245-9791-4c4e-baa0-10c7869333c3" + ], + "x-ms-correlation-request-id": [ + "19bbf245-9791-4c4e-baa0-10c7869333c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015739Z:19bbf245-9791-4c4e-baa0-10c7869333c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREl3TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:58:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "0e6b118f-06fa-46c8-9129-6ef40548a3b2" + ], + "x-ms-correlation-request-id": [ + "0e6b118f-06fa-46c8-9129-6ef40548a3b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015809Z:0e6b118f-06fa-46c8-9129-6ef40548a3b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREl3TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:58:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "ab6fe1cb-95d5-44b2-9e6a-dbebd52fd63c" + ], + "x-ms-correlation-request-id": [ + "ab6fe1cb-95d5-44b2-9e6a-dbebd52fd63c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015840Z:ab6fe1cb-95d5-44b2-9e6a-dbebd52fd63c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "server-security-alert-test-2054" + ], + "RunTestInNewV12Server": [ + "server-security-alert-test-9759" + ], + "CreateDatabasesAsync": [ + "server-security-alert-test-9666", + "server-security-alert-test-6634" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestThreatDetection.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestThreatDetection.json new file mode 100644 index 000000000000..7fa45a7cecfc --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestThreatDetection.json @@ -0,0 +1,1035 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-security-alert-test-1140?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"server-security-alert-test-1140\": \"2017-03-11 02:08:27Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "114" + ], + "x-ms-client-request-id": [ + "c20ff080-38f6-460b-8a81-23fcf89145b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140\",\r\n \"name\": \"server-security-alert-test-1140\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"server-security-alert-test-1140\": \"2017-03-11 02:08:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "284" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:08:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "9dd3441b-bf2b-45d8-8556-096aec5fd6f6" + ], + "x-ms-correlation-request-id": [ + "9dd3441b-bf2b-45d8-8556-096aec5fd6f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020829Z:9dd3441b-bf2b-45d8-8556-096aec5fd6f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "f0c9c807-1252-4982-83d0-cd22003eb1e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156\",\r\n \"name\": \"server-security-alert-test-9156\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"server-security-alert-test-9156.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a518349e-21eb-40bb-abb8-1c97fc20a0b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "5d84047e-3aa9-4417-adb3-7f9840fbc9e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020901Z:5d84047e-3aa9-4417-adb3-7f9840fbc9e7" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "5f0378ab-6dfd-459b-9838-8d825b9988f5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T18:09:01.502-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/operationResults/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7de7513f-64e3-46dd-b53b-ab5306a4358a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b5f58a2f-88d8-4481-a39d-d3a48b457ff9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020903Z:b5f58a2f-88d8-4481-a39d-d3a48b457ff9" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "6572a181-ab7e-4a07-abee-dd8c8349354e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T18:09:04.203-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/operationResults/30d5b1f7-e929-489b-972f-bec46657868a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "30d5b1f7-e929-489b-972f-bec46657868a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/azureAsyncOperation/30d5b1f7-e929-489b-972f-bec46657868a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "c30fcc2e-c678-4205-aa6e-6ffe3cd2fdcc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020904Z:c30fcc2e-c678-4205-aa6e-6ffe3cd2fdcc" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02MjU4L2F6dXJlQXN5bmNPcGVyYXRpb24vN2RlNzUxM2YtNjRlMy00NmRkLWI1M2ItYWI1MzA2YTQzNThhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7de7513f-64e3-46dd-b53b-ab5306a4358a\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "44329c32-2089-491a-9b62-5723dc5e7030" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "5328ad5c-a5d2-42ce-b6c0-46772670444f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020934Z:5328ad5c-a5d2-42ce-b6c0-46772670444f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02MjU4L2F6dXJlQXN5bmNPcGVyYXRpb24vN2RlNzUxM2YtNjRlMy00NmRkLWI1M2ItYWI1MzA2YTQzNThhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7de7513f-64e3-46dd-b53b-ab5306a4358a\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:04 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5eb88478-d325-41cf-a153-15f43c33f189" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "7480a25f-5b0c-407c-85b5-af4ab31eb649" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021005Z:7480a25f-5b0c-407c-85b5-af4ab31eb649" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/azureAsyncOperation/30d5b1f7-e929-489b-972f-bec46657868a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4L2F6dXJlQXN5bmNPcGVyYXRpb24vMzBkNWIxZjctZTkyOS00ODliLTk3MmYtYmVjNDY2NTc4NjhhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"30d5b1f7-e929-489b-972f-bec46657868a\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:34 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8fcdd679-a6fc-4958-a10d-7f6a178dfc5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/azureAsyncOperation/30d5b1f7-e929-489b-972f-bec46657868a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "cf448f70-20f0-429f-b66d-95487a66ffc2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020935Z:cf448f70-20f0-429f-b66d-95487a66ffc2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758\",\r\n \"name\": \"server-security-alert-test-7758\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"7a5b9f87-1b2b-4c68-a09e-be1927106474\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T02:09:04.593Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:19:33.837Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:35 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c3dff05d-91ce-454f-8c19-a80fa19f7dc2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "30b32cac-acf3-4bf6-bc78-fb98f44b1c1e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020936Z:30b32cac-acf3-4bf6-bc78-fb98f44b1c1e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258\",\r\n \"name\": \"server-security-alert-test-6258\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1fe232b7-6963-402f-8b09-33f7d345a6cf\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T02:09:01.753Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:19:38.78Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:05 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f902a372-d3e0-4bba-8fcf-22486ca7c1c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "a333bf55-4e5e-47b1-9aaa-80a3490bbbca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021006Z:a333bf55-4e5e-47b1-9aaa-80a3490bbbca" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a86b8c31-4915-4b6d-a8fc-9276e27c0d54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"Preview\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f0ac4c8b-2e7e-4b92-b5b5-ac8e59474084" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "55dee61a-d04d-48d3-b28b-b55206732f24" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021007Z:55dee61a-d04d-48d3-b28b-b55206732f24" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4615717b-ff12-4066-9a44-b11ea4f157b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:11 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4e1b144c-eb80-45a0-bee3-b0e00360f74b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "4002b56f-6271-4ea8-b8ed-9a2d2ea45002" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021012Z:4002b56f-6271-4ea8-b8ed-9a2d2ea45002" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5,\r\n \"useServerDefault\": \"Disabled\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "454" + ], + "x-ms-client-request-id": [ + "ad76c084-2833-48f8-8544-3e1853d73074" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:10 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9d72123d-dd52-4791-ba9f-29778315decb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "50ae6860-f257-4034-82b4-09982511baef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021010Z:50ae6860-f257-4034-82b4-09982511baef" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-security-alert-test-1140?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4eea9bb-6668-451c-8ab4-45341cdfe20e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "d302919b-6f1f-4eee-94cd-2b2405cf482b" + ], + "x-ms-correlation-request-id": [ + "d302919b-6f1f-4eee-94cd-2b2405cf482b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021014Z:d302919b-6f1f-4eee-94cd-2b2405cf482b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREV4TkRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "1c79c215-6ae3-4185-8c0d-d3f95dbd2228" + ], + "x-ms-correlation-request-id": [ + "1c79c215-6ae3-4185-8c0d-d3f95dbd2228" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021045Z:1c79c215-6ae3-4185-8c0d-d3f95dbd2228" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREV4TkRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:11:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "cd5dc384-f5ea-499f-a522-fdb49231b5f6" + ], + "x-ms-correlation-request-id": [ + "cd5dc384-f5ea-499f-a522-fdb49231b5f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021116Z:cd5dc384-f5ea-499f-a522-fdb49231b5f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREV4TkRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:11:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "cb6ce977-314d-4538-9853-de9be4494cd4" + ], + "x-ms-correlation-request-id": [ + "cb6ce977-314d-4538-9853-de9be4494cd4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021146Z:cb6ce977-314d-4538-9853-de9be4494cd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREV4TkRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:12:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "c5a3740b-0708-421e-9edc-8ffcbb637f1a" + ], + "x-ms-correlation-request-id": [ + "c5a3740b-0708-421e-9edc-8ffcbb637f1a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021216Z:c5a3740b-0708-421e-9edc-8ffcbb637f1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "server-security-alert-test-1140" + ], + "RunTestInNewV12Server": [ + "server-security-alert-test-9156" + ], + "CreateDatabasesAsync": [ + "server-security-alert-test-7758", + "server-security-alert-test-6258" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SqlTestConstants.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/SqlTestConstants.cs index 5353f6e8ce82..76dfde233ec1 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SqlTestConstants.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SqlTestConstants.cs @@ -1,6 +1,8 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. +using Microsoft.Azure.Management.Sql.Models; + namespace Sql.Tests { public static class SqlTestConstants @@ -9,9 +11,9 @@ public static class SqlTestConstants public const string DefaultCollation = "SQL_Latin1_General_CP1_CI_AS"; // Default database edition - public const string DefaultDatabaseEdition = "Basic"; + public const string DefaultDatabaseEdition = DatabaseEdition.Basic; // Default elastic pool edition - public const string DefaultElasticPoolEdition = "Basic"; + public const string DefaultElasticPoolEdition = ElasticPoolEdition.Basic; } } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs new file mode 100644 index 000000000000..d85bff000348 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs @@ -0,0 +1,166 @@ +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using System; +using System.Linq; +using System.Threading.Tasks; +using Xunit; + +namespace Sql.Tests +{ + /// + /// Contains tests for the lifecycle of a Server security alert policy + /// + public class ThreatDetectionTest + { + [Fact] + public void TestThreatDetectionApis() + { + string testPrefix = "server-security-alert-test-"; + string testName = this.GetType().FullName; + + SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestThreatDetection", testPrefix, + (resClient, sqlClient, resourceGroup, server) => + { + // create some databases in server + Database[] databases = SqlManagementTestUtilities.CreateDatabasesAsync( + sqlClient, resourceGroup.Name, server, testPrefix, 2).Result; + +#if false // Commented out due to issues with async operation response + + // ******* Server threat detection ******* + ServerSecurityAlertPolicy defaultServerPolicyResponse = sqlClient.Servers.GetThreatDetectionPolicy(resourceGroup.Name, server.Name); + + // Verify that the initial Get request contains the default policy. + VerifyServerSecurityAlertPolicyInformation(GetDefaultServerSecurityAlertProperties(), defaultServerPolicyResponse); + + // Modify the policy properties, send and receive and see it its still ok + ServerSecurityAlertPolicy updatedServerPolicy = new ServerSecurityAlertPolicy + { + State = SecurityAlertPolicyState.Enabled, + EmailAccountAdmins = SecurityAlertPolicyEmailAccountAdmins.Enabled, + EmailAddresses = "testSecurityAlert@microsoft.com;testServerPolicy@microsoft.com", + DisabledAlerts = "Sql_Injection", + RetentionDays = 3, + StorageAccountAccessKey = "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + StorageEndpoint = "https://MyAccount.blob.core.windows.net/", + }; + + //Set security alert policy for server + sqlClient.Servers.CreateOrUpdateThreatDetectionPolicy(resourceGroup.Name, server.Name, updatedServerPolicy); + + //Get security alert server policy + var getUpdatedServerPolicyResponse = sqlClient.Servers.GetThreatDetectionPolicy(resourceGroup.Name, server.Name); + // Verify that the Get request contains the updated policy. + VerifyServerSecurityAlertPolicyInformation(updatedServerPolicy, getUpdatedServerPolicyResponse); + +#endif + + // ******* Database threat detection ******* + + string dbName = databases[0].Name; + DatabaseSecurityAlertPolicy defaultDatabasePolicyResponse = sqlClient.Databases.GetThreatDetectionPolicy(resourceGroup.Name, server.Name, dbName); + + // Verify that the initial Get request contains the default policy. + VerifyDatabaseSecurityAlertPolicyInformation(GetDefaultDatabaseSecurityAlertProperties(), defaultDatabasePolicyResponse); + + // Modify the policy properties, send and receive and see it its still ok + DatabaseSecurityAlertPolicy updatedDatabasePolicy = new DatabaseSecurityAlertPolicy + { + State = SecurityAlertPolicyState.Disabled, + EmailAccountAdmins = SecurityAlertPolicyEmailAccountAdmins.Enabled, + EmailAddresses = "testSecurityAlert@microsoft.com", + DisabledAlerts = "Access_Anomaly; Usage_Anomaly", + RetentionDays = 5, + StorageAccountAccessKey = "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + StorageEndpoint = "https://MyAccount.blob.core.windows.net/", + UseServerDefault = SecurityAlertPolicyUseServerDefault.Disabled, + }; + sqlClient.Databases.CreateOrUpdateThreatDetectionPolicy(resourceGroup.Name, server.Name, dbName, updatedDatabasePolicy); + + var getUpdatedDatabasePolicyResponse = sqlClient.Databases.GetThreatDetectionPolicy(resourceGroup.Name, server.Name, dbName); + + // Verify that the Get request contains the updated policy. + VerifyDatabaseSecurityAlertPolicyInformation(updatedDatabasePolicy, getUpdatedDatabasePolicyResponse); + }); + } + +#if false // Commented out due to issues with async operation response + + /// + /// Verify that the received properties match their expected values + /// + /// The expected value of the properties object + /// The properties object that needs to be checked + private void VerifyServerSecurityAlertPolicyInformation(ServerSecurityAlertPolicy expected, ServerSecurityAlertPolicy actual) + { + Assert.Equal(expected.State, actual.State); + Assert.Equal(expected.EmailAccountAdmins, actual.EmailAccountAdmins); + Assert.Equal(expected.DisabledAlerts, actual.DisabledAlerts); + Assert.Equal(expected.EmailAddresses, actual.EmailAddresses); + Assert.Equal(expected.StorageEndpoint, actual.StorageEndpoint); + Assert.Equal(string.Empty, actual.StorageAccountAccessKey); + Assert.Equal(expected.RetentionDays, actual.RetentionDays); + } + + /// + /// Returns a ServerSecurityAlertPolicy object that holds the default settings for a server security alert policy + /// + /// A ServerSecurityAlertPolicy object with the default server security alert policy settings + private ServerSecurityAlertPolicy GetDefaultServerSecurityAlertProperties() + { + ServerSecurityAlertPolicy properties = new ServerSecurityAlertPolicy + { + State = SecurityAlertPolicyState.New, + EmailAccountAdmins = SecurityAlertPolicyEmailAccountAdmins.Enabled, + DisabledAlerts = SecurityAlert.Preview, + EmailAddresses = string.Empty, + StorageEndpoint = string.Empty, + StorageAccountAccessKey = string.Empty, + RetentionDays = 0, + }; + + return properties; + } + +#endif + + /// + /// Verify that the received properties match their expected values + /// + /// The expected value of the properties object + /// The properties object that needs to be checked + private void VerifyDatabaseSecurityAlertPolicyInformation(DatabaseSecurityAlertPolicy expected, DatabaseSecurityAlertPolicy actual) + { + Assert.Equal(expected.State, actual.State); + Assert.Equal(expected.EmailAccountAdmins, actual.EmailAccountAdmins); + Assert.Equal(expected.DisabledAlerts, actual.DisabledAlerts); + Assert.Equal(expected.EmailAddresses, actual.EmailAddresses); + Assert.Equal(expected.StorageEndpoint, actual.StorageEndpoint); + Assert.Equal(string.Empty, actual.StorageAccountAccessKey); + Assert.Equal(expected.RetentionDays, actual.RetentionDays); + Assert.Equal(expected.UseServerDefault, actual.UseServerDefault); + } + + /// + /// Returns a SecurityAlertProperties object that holds the default settings for a database security alert policy + /// + /// A DatabaseSecurityAlertPolicy object with the default database security alert policy settings + private DatabaseSecurityAlertPolicy GetDefaultDatabaseSecurityAlertProperties() + { + DatabaseSecurityAlertPolicy properties = new DatabaseSecurityAlertPolicy + { + State = SecurityAlertPolicyState.New, + EmailAccountAdmins = SecurityAlertPolicyEmailAccountAdmins.Enabled, + DisabledAlerts = "Preview", + EmailAddresses = string.Empty, + UseServerDefault = SecurityAlertPolicyUseServerDefault.Enabled, + StorageEndpoint = string.Empty, + StorageAccountAccessKey = string.Empty, + RetentionDays = 0, + }; + + return properties; + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/Utilities/SqlManagementTestUtilities.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/Utilities/SqlManagementTestUtilities.cs index 5787807e46dd..3bd751c8ed22 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/Utilities/SqlManagementTestUtilities.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/Utilities/SqlManagementTestUtilities.cs @@ -234,7 +234,7 @@ public static void ValidateElasticPool(ElasticPool expected, ElasticPool actual, Assert.NotNull(actual.Type); } - public static void ValidateFirewallRule(ServerFirewallRule expected, ServerFirewallRule actual, string name) + public static void ValidateFirewallRule(FirewallRule expected, FirewallRule actual, string name) { Assert.NotNull(actual.Id); Assert.Equal(expected.StartIpAddress, actual.StartIpAddress); @@ -300,5 +300,30 @@ internal static void RunTestInNewV12Server(string suiteName, string testName, st test(resClient, sqlClient, resGroup, v12Server); }); } + + internal static Task CreateDatabasesAsync( + SqlManagementClient sqlClient, + string resourceGroupName, + Server server, + string testPrefix, + int count) + { + List> createDbTasks = new List>(); + for (int i = 0; i < count; i++) + { + string name = SqlManagementTestUtilities.GenerateName(testPrefix); + createDbTasks.Add(sqlClient.Databases.CreateOrUpdateAsync( + resourceGroupName, + server.Name, + name, + new Database() + { + Location = server.Location + })); + } + + // Wait for all databases to be created. + return Task.WhenAll(createDbTasks); + } } } diff --git a/src/ResourceManagement/SqlManagement/UpgradeLog.htm b/src/ResourceManagement/SqlManagement/UpgradeLog.htm new file mode 100644 index 0000000000000000000000000000000000000000..440107e06ed7d9284957287d7a09f346f653ae39 GIT binary patch literal 45212 zcmeI5X>%J#l7{>1Zp8ivSe&uwrFm1-;gK8!Pl+NWkrX9r=$POE9uhAR5HEZ7r|<6b zRLCZD*0rXXsm6e&5nU$4Y_`m=CNAz7Z6TOP2qqS%wdL7M1h3FuvM90xl z^epwN{KqV?)=!{u>~e7YuM@cDP>Ds57J(lbE8BhI^#|$`pn%! z`ma*ciF$+4OJJWw`;^$?x8&*$H*8B(xuV_SuQd3{;dB6$b1)FKo&vK%&jz9FWG1^@Ylo9e^a9fuDd{xq^HNJH{?|4#T)YAQ* zxikuW&(NcyvmL`7f7Y5r1o@Rlyn%Y+<{14vgHo-*tTlqoX2r+eEUox&tL=!#CJTek z8dt#CEMvj-Kosl4l8xSe$GDaiJ)*C>^e&$U_8Ka!MaJODD4I#f)_T(JX!4i^ZeGGk z*(-S-;^+yzK6g6jC?}4c7^z10xV@?#srT^E%r;+uc`3Sdo`5u;e6dsdA)5`vwsAR=wbnEF=LPJEB<~D~JdHlyN~Fe_yZ~AJ{4zOyr!v`j`3bU_ly}KZtG1+5 znz7rm-HgqvAS>p{2^)Fl@*MMxrB=s)W^-nJCAmj@H1o6BljgSajXpVvmOm@`4OT9{ zEN|U`BnSLt-}dlI0qlZYmzK?Rs zy{Dy*(G0>TX@Y$;fX0+0Tk)pWI254DLl@WMu@mo;O4qaoKS)65Em^g-7)P!&o0z;k zCa?4LAioYz%G>T8Xjk*ZSga;`CTy{Bo%eAM+)UF|uDgRQ}eYc)x( zX2+6-Fqf1CYJViw@*>Q-%`w95n|GAwmo|&EyoAHXduamm4+q>y+fyEo)C@HCmpSp$L;5Rva;qi36AE2!bBWM`YKjlQG4^y@1xDa-1k2B zy=GEe-=d`QhOD0MS(L4SAFueMt~CGjapU~n(2&E|X!-J%lHIo$)&5btvCjI^Ig9Mu zXQssw=6N#c;yInO7Wt*W7Pp=t!CnG>56-pf*?L`ApL26)6@4D_X-zkNJDfAUHO+X{ zsJ2*<$4;6g#GHI2*w#usXA6vRi#$oQ>;OUYB%KEhCdm|ZA5GR=zs$$h#LQ=srjSNa zS<^6rp?E;PIl++Yg;vkveNue8`!eY1mbUw%il=TqdC5N#jh}0bJ!#-HrQ`fDex^$V zugNTh#_$(7qj;j8eR6QWV9UdtSgXJ01;^)hHbW8?d80Z*DZIr=Nmchbc!@0U($53u z%WIWjB>H>KG2SZAUPHsM&SZAmujK_x>&KE`liYH%4L@#;>soPXW$g61(PxsX-+UwQ zSI3|KpjLCAYL7Oo(~RBvilf9P{MwD3!O%Lr`k{Ec={$K> zL5ie7btQ=sM>Qh1oEIF*$WPki$z#0LzjMs5^ZJ00Tm^_@dDo+63wUm!34SlV>iY)H%F@Iy0aVn^at?aryf>81~&lDZWD)Y{9{KU;h z_A^V)61UMB$9bw$_c^D`CuJ%H>3f1T(CS&M^LP(Ywk52N2AKKAq#x(Cyz4>erOYB_ zD`*8)bI|0yd@`8bmNJ;M=Hk~xpExCwTHdjA z`3&c_wk{7tV^J|vJxzK!$4&>DAF}OAog&pklzL8SA5{tS6N`?R9aOfD^1Wnt1y_{R zh_p3u#ZNW=@Rrw?l1~+<`JuDc%G)crx{8}9t5N!-z$%6?7fyCA?O~Z?9-ggp?m8V5 zFjg7$SdkXXyUDBHyj&Y?|H&B9=RNR_=7oXn)Y zd;Yb@PwMEqwW$|xOwvYVLpIpRH-d11q3$RD7P$M4^GkkjD8B(TN%$zw7U9PmcvqzE zIp0OjH#nYA=M&>?geN<|d{5aadb&%gF;@AD(Fbr{AzrcqPnA`);XI{}l-{82DOwOF ztN3`AJS`#vC7?|4EmOY&lnw6O@I)TjFy7!e{_Y;+2(oz%&vHL3g-k} znThL;JKMk?0QO5t>``usvobwCrQQ*kZc}oWyNlqz3xt=Hp8@s*+J8a6Kl0>?nvZFH zhMEHo-xuIBLvP3E!Dm|hNZm)Y@CC>d$d0nk7QtAxjyXS|w^vYg622*Gd!Nq*tt?Vk z@TF%S0$~SSo&#kLC~NfNBQ=&e8|ORB?^|eoNzYcf`?^4Qo`y=L#dTDF?^Xu9K1__mUkBTp|aQsAvvv&Wt%@kjS0 zyyPUMwC7RCQ>y0)eXAZt5pA6GD9UL5H7wW$c7GZTSmbvett)#nhsGaAi@rziE}$b9 zurC*A-4|E^%>a(kv9kAv{666K5t@C)m7b%VY>en|h~CzEu55>_nz9Bfz}K4N5$%rg zRPP2YgTV>sk7-}^q?3iq37YwUQuFBiFt�B6y;K?qqIq&Y|2q z6dG}*26(yzwZ>^p9>FZo%HX<;Z4(tQ!RG}qRxgt6H&{Mf(>a)1G5s#o1;}L-~H0LTh@{O|svM*QYT+L}^ zo37FMn%houwS?BzY++DRDfI3eH1L|MDee3MJ$=Z% z4bB&_9WUJRIcE!KTD=K)iRL{*o96tAGS_JHMamp-XPPrv zjQ4IVzj1bP0{b>g4>X(8y!8uqQr?K>h1Yy;=-(;rf8^N>mUS8E1Js$~{s0<5v+OHu z&N`TAO{)yeK4Co`U{zj&(*DvZpih>AJ&BP}u^PHos(I>71Z<01-a}+&00nQgn zya&=LWhy)`LC-hTC_#-;`f}m!El@*GWaZa@F+i)w)DoT*dj1hO*Yu|Xtp)WXc$9di zIFjb|yPPY!@|GvdKz~b}YcSp7d662jb{}c!hG+X6Khxd>6xpJTe5Ut6dqY|K6nU~j zjR#Qm9Gt{SeV*Q-eGDrr-LZ`Ueo_zSvHiXI?O!ue9%QFy6aRQNv4~Dj+r-akV?{9E zqD2)YUqLI*q5CGBt$4@v6!)c-r`+!n8dLKrSvkc6x6z^F*pX?pt>&kS3o1UUd20nN ze~n(>K-+Fnwt^)&baNuTkMoW@Gn6f&pJ%aJhiLkJbnXS#Kw5bR*ouKFVmZr`HK&c= zVxz`r@gX)ut0c!jpTJsPgRf?D>tOYT+Pe<+D798;R~AQe;dhi!4$>k$oT2<2mL;@X<+ec;|CAJIs= zb8G-vG4Y44RmB=~?*=UO_QM5jJ%VcU;9myPHTM+(-=(z^+S%vs9(35J_wo3Ng=P6`q-s61!q`#v zW#bwPXsuHyt~FTI@axk4sMTwYcUy(lh>&k83fNk9sFB_aWf(3>mUREpWzyK{yMN~) zz5brAZ!7Y)F0J3JzKG`b27A2!bM#58^m$!dz77Pf%)zzDV;rL{vw zkI&Oo=8klfYHE~7_XWMC_ju(?Nj~)!gR-#EgSS<_k$}5bxxb`#Lgz87r-%% z*FVAc7qZKYLQ|Ah|0P|D{FKmLdMC~#qgkpLHf9CBW4F9|*nA&-4?eY@4uOO0th|s{ z&YpNIq#YG`(R=63P%keH)3nrR(;A$OIdL(Ij={eg0(;dugY(Lf_E_JCqIomAg;Om& ze&&8s&OAS}@hCX1+U^Z{%Tf7it-?`nvb33}r;gcn(@JKS$$pxJN44fMk5+4_%GWu? zi`O1_qFj>Srd{IND_ci4GhY2jO;X(?tEaze>x8Uv*LnTrIaF)h)z_oh<4*PRj{m#R zqXjgvba8cGyQg83k{|Sz?O&=fsk|9^7aEP)4Ze1^rp?ALt5x$jH4o9wKHe*gd!4mBMjseW-;+K($a0cZC<)fcCu*fTPhGm(%Z?hmh#ZTuE65E zc&8YoIA;9TTv2zD-1g6sa^hzw+L0m5TEb2dNf^yx>-D(h<9iu5TQZDfc#MDhdRB&) zhVu{6Cce=o{nhuM^k|Sc-xR+e;PoJ}&rNe0+O{U-MqYZT$btXg~Kfp0C^r z@VS#MMRt_&VgGxgTIr`ohq0P%rgwm`R<*Wk>rlc|@@K~bcO2%9o!P2b8oSp{&wIZr ztZBt9r`k!D6PAtOY86}=tsc8-h*qL8tdMh8&VUy$)fi?nzdZ|Xx@2S6NvoIzJ6$pk zTNL)Z^hfEfov$92l)YmAMpQv^B^ip^O0Q{sPS@$#Yah8l7S~uo zx@}hltxcUfDX;fTm}{P^W4Z zznQvuBtNd<>tj<}#+$*V^_q7*GMed4Z&dugqayBAv@=5DaK5F{6345ZkrVg5y5~K$ zs@vkd?2V{zXGDoF%CFPx-Yk(;$9+zBr^Z`$E8ps9%*MJ?V>OHZ-=aN?kK}9$^~QN; z#<|Un!i-w0H_vWoO!2#U#!)rQ%^DE9DSy=%^yH;8^5P>e)lnPCP5q~N#4z4crDD@$>5H{JGU(%Q#J@5{#h5yePt$M?q3{B-@*+nT07ldvWI9?Ew}*rVR{Q8Zie4E^`HBHpd8O>6Bg$q#$SBbjFr zf7|OPX9a7=X+!i=XMT;txN2)fI@eBQ)iRXEV~RfRrdC+AY7k#1O4kV)hdzp}SiSZy zk(8-jwVz(KQVb}pK$?}e6#)Oni6~qz#vj%a4tR_DS>1Amfl6pSDoz`%JcKp0dhNtl zidNv6{_)sg)n3y|u81W2sF=O77=(Lz?Q1DPjruE9$#UwQU;7GDU_FadF=%P)gW_P8 z8B?#{zL%}6@`yfKiHKuRubqHd;HY|1e+8r-P1R~rceP`+kT_aYj=s^7SIRERIoZBuRxM#?fE>wke#4B9=$uRnYN8H`@e(aUYvUW>3~woQ?~z? z)Be@^Kc4Ef0M8XZIy#l|8Rq(WmGd{Y%yeZ~u>z`Knbs{R3iBFL`P_ zrBsp67@tvgZJ1%DeT3CN?TkFgJ_3(9j&i2|qtNb>gTS0*X9MkGKEt_c&2cOud1-6v zB{+;qoyGM}dW6)9HN~YcYmFt09n*&Gz-m@ww$sL+U8}Z3n@(%qc5vyYc5Vl++B2SvzZrM<|;q-RYUTa#=Gev7sy8{eW5&v=**zp_^K> zy0u36YP~o~FHTZFPU5vptsFW3PNr#{`X!syKJ_8|*|kvpo_AUs)o-brS}7heu8%>d z{H&}N>ObpwU_B44Sr06kftQ^1S7&G?cO95cYu1l=&-|`P>E1Wip3lhuQpQqN4sQBQ_N+WItuv%E^gMR@=NIKN`t@?{ zr;_ZM`SS5y`1J02G9ND8$0P)muFf{iyH8oGS*G>&XYv#%koTmFv}!t}_mwHv&3N zQ~8a4mSCCK?aTnm&?BCCZhH|a=g;;tRHkmo4Ls-mXQG+fwOb{QIoszv Date: Fri, 17 Mar 2017 11:11:34 -0700 Subject: [PATCH 101/137] Add preview label --- .../Microsoft.Azure.Management.ContainerRegistry/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json index 95c434d19a41..03311b2e0a75 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json @@ -1,5 +1,5 @@ { - "version": "1.2.0", + "version": "1.2.0-preview", "description": "Microsoft Azure Container Registry Management Library", "authors": [ "Microsoft" ], From d8f24c613f1e48df020f8169468c01dc140f7bd3 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 17 Mar 2017 14:56:59 -0700 Subject: [PATCH 102/137] #WAF added autogenerated files --- .../ApplicationGatewaysOperations.cs | 16 ++-- .../BgpServiceCommunitiesOperations.cs | 2 +- ...essRouteCircuitAuthorizationsOperations.cs | 8 +- .../ExpressRouteCircuitPeeringsOperations.cs | 8 +- .../ExpressRouteCircuitsOperations.cs | 20 ++--- .../ExpressRouteServiceProvidersOperations.cs | 2 +- .../Generated/LoadBalancersOperations.cs | 10 +-- .../LocalNetworkGatewaysOperations.cs | 8 +- ...icationGatewayFirewallDisabledRuleGroup.cs | 73 +++++++++++++++++++ ...ewayWebApplicationFirewallConfiguration.cs | 56 +++++++++++++- .../Generated/NetworkInterfacesOperations.cs | 14 ++-- .../Generated/NetworkManagementClient.cs | 2 +- .../NetworkSecurityGroupsOperations.cs | 10 +-- .../Generated/NetworkWatchersOperations.cs | 26 +++---- .../Generated/PacketCapturesOperations.cs | 12 +-- .../Generated/PublicIpAddressesOperations.cs | 10 +-- .../Generated/RouteFilterRulesOperations.cs | 10 +-- .../Generated/RouteFiltersOperations.cs | 12 +-- .../Generated/RouteTablesOperations.cs | 10 +-- .../Generated/RoutesOperations.cs | 8 +- .../Generated/SecurityRulesOperations.cs | 8 +- .../Generated/SubnetsOperations.cs | 8 +- .../Generated/UsagesOperations.cs | 2 +- ...tualNetworkGatewayConnectionsOperations.cs | 14 ++-- .../VirtualNetworkGatewaysOperations.cs | 18 ++--- .../VirtualNetworkPeeringsOperations.cs | 8 +- .../Generated/VirtualNetworksOperations.cs | 12 +-- 27 files changed, 256 insertions(+), 131 deletions(-) create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index 1304539a2f17..eac66811a1e3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -116,7 +116,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -328,7 +328,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -506,7 +506,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -764,7 +764,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -943,7 +943,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1159,7 +1159,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1324,7 +1324,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1497,7 +1497,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs index fbf6072faf89..0f239babdefb 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs @@ -80,7 +80,7 @@ internal BgpServiceCommunitiesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs index 415877929d59..a7915b341560 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs @@ -127,7 +127,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -352,7 +352,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -551,7 +551,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs index 57bc445de11a..0bb703b7a23c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs @@ -126,7 +126,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs index 25af2d5fa863..6b52e1e9fb92 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs @@ -116,7 +116,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -423,7 +423,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -624,7 +624,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -813,7 +813,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -991,7 +991,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1178,7 +1178,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1354,7 +1354,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1588,7 +1588,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1801,7 +1801,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2014,7 +2014,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs index d14c8cb79dac..3fff7273ca3e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs @@ -80,7 +80,7 @@ internal ExpressRouteServiceProvidersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs index 13b32fbe0c2e..9204f6baaea7 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs @@ -119,7 +119,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 482a33ce2fcc..5b990240d851 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -533,7 +533,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -749,7 +749,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs new file mode 100644 index 000000000000..eb9e127d9bbd --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs @@ -0,0 +1,73 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Allows to disable rules within a rule group or an entire rule group. + /// + public partial class ApplicationGatewayFirewallDisabledRuleGroup + { + /// + /// Initializes a new instance of the + /// ApplicationGatewayFirewallDisabledRuleGroup class. + /// + public ApplicationGatewayFirewallDisabledRuleGroup() { } + + /// + /// Initializes a new instance of the + /// ApplicationGatewayFirewallDisabledRuleGroup class. + /// + /// The name of the rule group that will be + /// disabled. + /// The list of rules that will be disabled. If + /// empty, all rules of the rule group will be disabled. + public ApplicationGatewayFirewallDisabledRuleGroup(string ruleGroupName, IList rules = default(IList)) + { + RuleGroupName = ruleGroupName; + Rules = rules; + } + + /// + /// Gets or sets the name of the rule group that will be disabled. + /// + [JsonProperty(PropertyName = "ruleGroupName")] + public string RuleGroupName { get; set; } + + /// + /// Gets or sets the list of rules that will be disabled. If empty, all + /// rules of the rule group will be disabled. + /// + [JsonProperty(PropertyName = "rules")] + public IList Rules { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RuleGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleGroupName"); + } + } + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs index e0f7a766596c..2cc6b90e6ed1 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs @@ -11,7 +11,10 @@ namespace Microsoft.Azure.Management.Network.Models using Azure; using Management; using Network; + using Rest; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -34,10 +37,18 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } /// Web application firewall mode. Possible /// values are: 'Detection' and 'Prevention'. Possible values include: /// 'Detection', 'Prevention' - public ApplicationGatewayWebApplicationFirewallConfiguration(bool enabled, string firewallMode = default(string)) + /// The type of the web application firewall + /// rule set. Possible values are: 'OWASP'. + /// The version of the rule set + /// type. + /// The disabled rule groups. + public ApplicationGatewayWebApplicationFirewallConfiguration(bool enabled, string firewallMode, string ruleSetType, string ruleSetVersion, IList disabledRuleGroups = default(IList)) { Enabled = enabled; FirewallMode = firewallMode; + RuleSetType = ruleSetType; + RuleSetVersion = ruleSetVersion; + DisabledRuleGroups = disabledRuleGroups; } /// @@ -55,14 +66,55 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } [JsonProperty(PropertyName = "firewallMode")] public string FirewallMode { get; set; } + /// + /// Gets or sets the type of the web application firewall rule set. + /// Possible values are: 'OWASP'. + /// + [JsonProperty(PropertyName = "ruleSetType")] + public string RuleSetType { get; set; } + + /// + /// Gets or sets the version of the rule set type. + /// + [JsonProperty(PropertyName = "ruleSetVersion")] + public string RuleSetVersion { get; set; } + + /// + /// Gets or sets the disabled rule groups. + /// + [JsonProperty(PropertyName = "disabledRuleGroups")] + public IList DisabledRuleGroups { get; set; } + /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { + if (FirewallMode == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "FirewallMode"); + } + if (RuleSetType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleSetType"); + } + if (RuleSetVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleSetVersion"); + } + if (DisabledRuleGroups != null) + { + foreach (var element in DisabledRuleGroups) + { + if (element != null) + { + element.Validate(); + } + } + } } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs index 40a02eb86e16..525d96aceb34 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs @@ -119,7 +119,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1363,7 +1363,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1538,7 +1538,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1757,7 +1757,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1951,7 +1951,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs index c391afbcc5bb..d67a6eaf2fbd 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs @@ -492,7 +492,7 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs index aeca4d060053..e19347f56e70 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs @@ -119,7 +119,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -331,7 +331,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -703,7 +703,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -880,7 +880,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs index 070dc4e02b9e..9a5badd7b810 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs @@ -101,7 +101,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -320,7 +320,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -529,7 +529,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -908,7 +908,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1282,7 +1282,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1462,7 +1462,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1692,7 +1692,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1922,7 +1922,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2152,7 +2152,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2382,7 +2382,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2612,7 +2612,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2842,7 +2842,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs index d0991beed77d..f4c6230ac541 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs @@ -129,7 +129,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -400,7 +400,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -612,7 +612,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -819,7 +819,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -993,7 +993,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1170,7 +1170,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs index a7824035e5a0..b3c24481d2a9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs @@ -119,7 +119,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs index d0d79d3e759c..df48c96625a5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs @@ -126,7 +126,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -378,7 +378,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -576,7 +576,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -768,7 +768,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new RouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1007,7 +1007,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new PatchRouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs index 2e88eb338d9e..b1503a90165e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs @@ -119,7 +119,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -361,7 +361,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -539,7 +539,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -726,7 +726,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -901,7 +901,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1127,7 +1127,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs index cdf2aeeb916f..f932e1b31272 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs @@ -119,7 +119,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -336,7 +336,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs index 49913de1c6f5..3c1c572df681 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs @@ -126,7 +126,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -350,7 +350,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,7 +548,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs index 8fce4b56a92e..32f094919c35 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs @@ -126,7 +126,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +738,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs index e6ba2ddfeaac..011c231e0b09 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs @@ -129,7 +129,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -358,7 +358,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -740,7 +740,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs index 7565dd077bdd..51bf83fdccd5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs @@ -94,7 +94,7 @@ internal UsagesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs index c17abfa1ae4e..c0cfd3175707 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -121,7 +121,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -368,7 +368,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -790,7 +790,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1423,7 +1423,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index eb992e20de22..129061612af9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -561,7 +561,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1064,7 +1064,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1237,7 +1237,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1439,7 +1439,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1639,7 +1639,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1841,7 +1841,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs index e9249a583ea6..308efbfb5b0b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs @@ -126,7 +126,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs index 8dc887aadf03..b2fe8e257173 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs @@ -119,7 +119,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -903,7 +903,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; From 4d7bbbc3957f491e7f9c8959604ee1ee84647778 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 17 Mar 2017 15:34:26 -0700 Subject: [PATCH 103/137] #WAF changed version in rest API calls of Network/SessionRecords. --- .../NetworkWatcherApiTest.json | 34 +- .../NextHopApiTest.json | 30 +- .../PacketCaptureApiTest.json | 86 +-- .../EmptyRouteTableTest.json | 40 +- .../RouteTableApiTest.json | 72 +- .../SubnetRouteTableTest.json | 42 +- .../RoutesApiTest.json | 98 +-- .../RoutesHopTypeTest.json | 82 +- .../TopologyApiTest.json | 14 +- .../TroubleshootApiTest.json | 308 ++++---- .../VerifyIpFlowApiTest.json | 36 +- .../ViewNsgRuleApiTest.json | 36 +- .../ApplicationGatewayApiTest.json | 364 ++++----- .../CheckDnsAvailabilityTest.json | 4 +- .../ExpandResourceTest.json | 224 +++--- ...ocalNettworkGatewayOperationsApisTest.json | 34 +- ...NetworkGatewayActiveActiveFeatureTest.json | 730 +++++++++--------- .../VirtualNetworkGatewayBgpRouteApiTest.json | 650 ++++++++-------- ...rkGatewayConnectionOperationsApisTest.json | 202 ++--- ...ConnectionSharedKeyOperationsApisTest.json | 194 ++--- ...alNetworkGatewayConnectionWithBgpTest.json | 384 ++++----- ...rtualNetworkGatewayOperationsApisTest.json | 256 +++--- ...alNetworkGatewayP2SOperationsApisTest.json | 224 +++--- .../CreateEmptyLoadBalancer.json | 32 +- .../LoadBalancerApiNicAssociationTest.json | 204 ++--- .../LoadBalancerApiTest.json | 70 +- ...BalancerApiTestWithDistributionPolicy.json | 94 +-- .../LoadBalancerApiTestWithDynamicIp.json | 70 +- .../LoadBalancerApiTestWithStaticIp.json | 70 +- .../LoadBalancerNatPoolTest.json | 72 +- .../LoadBalancerOutboundNatRuleTest.json | 62 +- .../UpdateLoadBalancerRule.json | 76 +- ...rtMultiIpConfigOnDifferentSubnetFails.json | 28 +- .../NetworkInterfaceApiTest.json | 100 +-- .../NetworkInterfaceApiTestIPv6.json | 100 +-- .../NetworkInterfaceDnsSettingsTest.json | 62 +- ...orkInterfaceDnsSettingsTestIdnsSuffix.json | 62 +- ...faceEffectiveNetworkSecurityGroupTest.json | 52 +- ...etworkInterfaceEnableIPForwardingTest.json | 76 +- .../NetworkInterfaceMultiIpConfigTest.json | 100 +-- ...workInterfaceNetworkSecurityGroupTest.json | 88 +-- ...nterfaceWithAcceleratedNetworkingTest.json | 24 +- .../NetworkSecurityGroupApiTest.json | 44 +- .../NetworkSecurityGroupWithRulesApiTest.json | 36 +- .../PublicIpAddressApiTest.json | 26 +- .../PublicIpAddressApiTestIPv6.json | 74 +- ...ApiTestWithIdletTimeoutAndReverseFqdn.json | 36 +- .../SecurityRuleWithRulesApiTest.json | 82 +- .../SubnetApiTest.json | 34 +- .../SubnetResourceNavigationLinksTest.json | 24 +- .../Networks.Tests.UsageTests/UsageTest.json | 24 +- .../VirtualNetworkPeeringApiTest.json | 106 +-- .../VirtualNetworkApiTest.json | 44 +- ...NetworkCheckIpAddressAvailabilityTest.json | 62 +- .../VirtualNetworkPeeringTest.json | 104 +-- 55 files changed, 3141 insertions(+), 3141 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json index 483ad99cb2b6..1f5782cd10a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -112,7 +112,7 @@ "9351b98e-77c4-44e2-bf8e-d990ae99baad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,8 +130,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,8 +195,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -257,8 +257,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,8 +316,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -412,7 +412,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -425,7 +425,7 @@ "fb2a42c3-0444-493f-a0fa-9621aa519be3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,8 +443,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json index 2a1a14579d64..e5e91146f35e 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json @@ -665,8 +665,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -715,7 +715,7 @@ "e5869a87-83b3-42bd-bf33-e9f605fae491" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +733,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"10.1.3.6\"\r\n}", "RequestHeaders": { @@ -906,7 +906,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -919,7 +919,7 @@ "9cc07329-1fde-4065-a053-e40cec04b207" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,8 +937,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -980,7 +980,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -993,7 +993,7 @@ "7631bf51-f6c8-44ce-b10f-eb7a4f2b911a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,8 +1011,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json index c41050e1476a..5004e272b142 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -1097,7 +1097,7 @@ "d475e169-eb3a-4ff1-85fd-1034f270cd84" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1115,8 +1115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1168,7 +1168,7 @@ "538eea79-b0ec-4dba-92e0-7c509ef0b7ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1186,8 +1186,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1242,8 +1242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1366,8 +1366,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1403,7 +1403,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1416,7 +1416,7 @@ "ec9bb288-408a-41d0-ae84-f94fd6fedf27" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,8 +1434,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1496,8 +1496,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1552,8 +1552,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1605,7 +1605,7 @@ "4b310bbd-c281-4968-9e9a-b77e26e00f6e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,8 +1623,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,8 +1679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1738,8 +1738,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1862,8 +1862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1896,7 +1896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1909,7 +1909,7 @@ "c0703af9-ffc0-44bb-a758-a3ad480b26ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1927,8 +1927,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2017,7 +2017,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2030,7 +2030,7 @@ "8702f3e3-43b6-4375-91cb-2702b45111c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2048,8 +2048,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json index 2bd834c02f21..adeee1464ac0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "35da7f93-8db2-43da-aaee-cbee33c4e92f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -510,7 +510,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -523,7 +523,7 @@ "2b8e410d-5522-437c-8e5f-16426f3e2b5a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,8 +541,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json index 7d7c856175ba..821324b2d08f 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "55728bff-dfad-4ff4-8aad-4ed50245308d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9901\",\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet9901\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -240,7 +240,7 @@ "5fc2c695-c0aa-4819-8ab7-2398c2fc9815" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,8 +258,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet640\",\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -313,7 +313,7 @@ "b7ab5b3a-9865-44ad-b846-198e40e424bf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,8 +331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -444,8 +444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -566,8 +566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,8 +630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,8 +688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -807,8 +807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -895,7 +895,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -908,7 +908,7 @@ "0b9039be-45a5-44ea-a8b3-7fe457a1cd33" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,8 +926,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json index 024c07448d3a..6b8c7b0306d1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet1701\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "db718a7a-2819-4a41-bffb-5feb27c54cd5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616\"\r\n }\r\n },\r\n \"name\": \"azsmnet5364\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "3effea22-c97a-441b-bb82-cfb69337e2da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json index c902904a598a..d98a8c9107da 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet8055\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "76a65d58-ba0b-4e45-bfe8-c136db94de75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet7452\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "e16412d4-be93-44d3-adb5-c57c17c4b04b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -953,7 +953,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -966,7 +966,7 @@ "7ceea8ac-c52e-4ae5-9538-04668b6876d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,8 +984,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1072,7 +1072,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1085,7 +1085,7 @@ "eb05162d-43fa-4257-a64e-cf2042a84145" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,8 +1103,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1158,8 +1158,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1191,7 +1191,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1204,7 +1204,7 @@ "1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,8 +1222,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1277,8 +1277,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json index 8760a80a1ab2..02ee66eae483 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9157\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet9228\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "bc0aef85-92ff-4497-91b2-395dbe161889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"azsmnet9790\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "47dc13fe-9612-4fd4-87bd-175568585ebe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n },\r\n \"name\": \"azsmnet4509\"\r\n}", "RequestHeaders": { @@ -844,7 +844,7 @@ "6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,8 +862,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -917,8 +917,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -975,8 +975,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1008,7 +1008,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1021,7 +1021,7 @@ "c12dc6cd-d1e1-4085-8d86-3eac68fdc33d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,8 +1039,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,8 +1094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json index cd7c02ce37cb..1b27c1501acd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json @@ -726,8 +726,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -776,7 +776,7 @@ "212074f1-8a6c-46e3-ba4f-d964fbe2c7c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceGroupName\": \"azsmnet2771\"\r\n}", "RequestHeaders": { @@ -902,7 +902,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -918,7 +918,7 @@ "977c0f9b-3ef5-4b33-a841-46dbcee82fe1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json index 382e7c76626d..90da17bb11b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet15\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "1ca0e867-c51b-4fef-851d-418988eaf043" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -366,7 +366,7 @@ "1cbebe68-0826-45e7-9f5d-870381f3a44c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,8 +384,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -440,8 +440,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -564,8 +564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -629,8 +629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376\"\r\n }\r\n },\r\n \"name\": \"azsmnet1522\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "df09e118-3cc2-460c-8c31-14fef8a5b18d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,8 +700,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,8 +759,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -818,8 +818,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -936,8 +936,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -995,8 +995,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1113,8 +1113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1172,8 +1172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,8 +1231,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1290,8 +1290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1349,8 +1349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,8 +1408,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,8 +1467,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,8 +1526,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1585,8 +1585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1644,8 +1644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1703,8 +1703,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1762,8 +1762,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1821,8 +1821,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,8 +1880,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1939,8 +1939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1998,8 +1998,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,8 +2057,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2116,8 +2116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2175,8 +2175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2234,8 +2234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2293,8 +2293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,8 +2411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2470,8 +2470,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2529,8 +2529,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2588,8 +2588,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2647,8 +2647,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2706,8 +2706,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2765,8 +2765,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,8 +2824,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2883,8 +2883,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2942,8 +2942,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3001,8 +3001,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,8 +3060,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3119,8 +3119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,8 +3178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3237,8 +3237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3296,8 +3296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3414,8 +3414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3473,8 +3473,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,8 +3532,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,8 +3591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3650,8 +3650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3709,8 +3709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3768,8 +3768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3827,8 +3827,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3886,8 +3886,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3945,8 +3945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4004,8 +4004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,8 +4063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4119,8 +4119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4175,8 +4175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4237,8 +4237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -4287,7 +4287,7 @@ "e7ecc344-7735-4bcd-876b-2ba738043a92" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4429,8 +4429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Storage/storageAccounts/azsmnet62\",\r\n \"storagePath\": \"https://nwtestdbdzq4xsvskrei6.blob.core.windows.net/vhds\"\r\n }\r\n}", "RequestHeaders": { @@ -4472,7 +4472,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4485,7 +4485,7 @@ "de538d0a-5abe-455c-87cf-ad8890184879" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,8 +4503,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,8 +4562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json index 5d04662ccffa..b1352a40cb04 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json @@ -714,8 +714,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -764,7 +764,7 @@ "c8656941-8f2e-429f-a1d8-e8b3f2cb69f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,8 +847,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,8 +912,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -977,8 +977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet3313\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000\"\r\n }\r\n ],\r\n \"resourceGuid\": \"a62c6ffb-62da-4576-82e9-a68a189ac62e\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg\",\r\n \"name\": \"azsmnet8060-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -1092,7 +1092,7 @@ "f6cbe102-c2a0-4c0f-89bf-f1b687a94704" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,8 +1110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,8 +1166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Compute/virtualMachines/azsmnet8060\",\r\n \"direction\": \"Outbound\",\r\n \"protocol\": \"TCP\",\r\n \"localPort\": \"80\",\r\n \"remotePort\": \"80\",\r\n \"localIPAddress\": \"10.17.3.4\",\r\n \"remoteIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -1209,7 +1209,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1222,7 +1222,7 @@ "4264c957-2faa-4692-8c38-242a692e9799" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json index 1706ef515653..9a621745b15b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json @@ -616,8 +616,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -666,7 +666,7 @@ "45676481-77c2-4ebe-bceb-39d71832bc4b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,8 +879,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet1718\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197\"\r\n }\r\n ],\r\n \"resourceGuid\": \"f93d2782-b4c9-4d0b-86d0-598825130420\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg\",\r\n \"name\": \"azsmnet2019-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -994,7 +994,7 @@ "6311637f-6802-48cb-b2df-da99aef9e651" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,8 +1068,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Compute/virtualMachines/azsmnet2019\"\r\n}", "RequestHeaders": { @@ -1111,7 +1111,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1124,7 +1124,7 @@ "eb1dc242-8ea0-44d9-abb5-711a6565abdb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 211e7bf6dd4c..0efc306131f2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "71222849-9014-4ff9-9246-f27a40349b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -431,7 +431,7 @@ "8248159d-4703-478e-a374-caf55cf6018e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,8 +449,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -567,8 +567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -626,8 +626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -685,8 +685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -744,8 +744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -803,8 +803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -921,8 +921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -980,8 +980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,8 +1098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1157,8 +1157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1216,8 +1216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1275,8 +1275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1334,8 +1334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,8 +1393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1452,8 +1452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1511,8 +1511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1570,8 +1570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1629,8 +1629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1747,8 +1747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1806,8 +1806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1865,8 +1865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1924,8 +1924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2039,8 +2039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2098,8 +2098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2163,8 +2163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2228,8 +2228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2265,7 +2265,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2293,8 +2293,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2324,7 +2324,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2402,7 +2402,7 @@ "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2420,8 +2420,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2476,7 +2476,7 @@ "4a050275-6023-4176-b8b9-1fb4c5495a05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2494,8 +2494,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2553,8 +2553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2677,8 +2677,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2727,7 +2727,7 @@ "31c62262-91c7-45ef-8c21-7d717c337a7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,8 +2745,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "5183ed56-0494-4453-a87f-f2fb9526ff4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,8 +2819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2878,8 +2878,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2943,8 +2943,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,8 +3002,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3120,8 +3120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3179,8 +3179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3238,8 +3238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3297,8 +3297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3356,8 +3356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3415,8 +3415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3474,8 +3474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,8 +3533,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3592,8 +3592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3651,8 +3651,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3710,8 +3710,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3769,8 +3769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3828,8 +3828,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3887,8 +3887,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3946,8 +3946,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4005,8 +4005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4064,8 +4064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4120,8 +4120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4238,8 +4238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4297,8 +4297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4356,8 +4356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,8 +4415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4474,8 +4474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4530,8 +4530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4564,7 +4564,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4574,7 +4574,7 @@ "796a9be1-c827-490e-b609-a4ad9394d044" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4592,8 +4592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4626,7 +4626,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4639,7 +4639,7 @@ "a3f3b726-de0a-4182-9301-e00e9195aba1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4657,8 +4657,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,8 +4716,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,8 +4775,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4834,8 +4834,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4890,8 +4890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4924,7 +4924,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4937,7 +4937,7 @@ "2f925788-a452-4929-b3ca-ea32aa3a2049" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4955,8 +4955,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5014,8 +5014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5073,8 +5073,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json index 0efb805f49d7..6a6241b721d6 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -54,7 +54,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json index 27c907ea12ce..f60d98a40441 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3972\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "63049a58-9deb-4787-8a83-b3a45a2c5fe7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet8767\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "9f8c9c9e-889f-4fc1-b65d-8f015db88f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "95323aac-1af9-4bea-9208-20a3ff24e430" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet3666\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet3666\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"6b94f5c4-a02b-433e-8301-ad3edf808428\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "b970f182-e80e-40bd-ae0b-8565ec8d6362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "34e7814c-9cc7-488b-a77c-b8fdae0a8309" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"2dab4ece-7a8f-44b3-b328-2f6b34c8914c\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "57608f26-9c56-4a31-8690-b11106b25ef7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet7454\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet7454\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"044c708c-5c2f-434a-b7db-782cab3e1457\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "9735026c-2b5d-4417-885b-5eb7a95dddf5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752\"\r\n }\r\n },\r\n \"name\": \"azsmnet8571\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/probes/azsmnet359\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet8160\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n },\r\n \"name\": \"azsmnet359\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet3666\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7454\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "78dbe39e-320d-43c2-89f7-2599d29feafe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=InboundNatRules%2FbackendIPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=InboundNatRules%2FbackendIPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=BackendAddressPools%2FbackendIPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=BackendAddressPools%2FbackendIPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2069,8 +2069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2133,8 +2133,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01&$expand=IPConfigurations%2FSubnet", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01&$expand=IPConfigurations%2FSubnet", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,8 +2197,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2016-12-01&$expand=IPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2017-03-01&$expand=IPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2261,8 +2261,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01&$expand=IPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01&$expand=IPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,8 +2325,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2358,7 +2358,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2371,7 +2371,7 @@ "c194265f-1af9-4890-9dd6-2f6bf311b1f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2389,8 +2389,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,8 +2444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2498,8 +2498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2531,7 +2531,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2544,7 +2544,7 @@ "f449f276-f45b-4305-915f-47738bf7f6fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,8 +2562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,8 +2617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2650,7 +2650,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2663,7 +2663,7 @@ "8d49efb4-581f-4f95-a034-432313b88536" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2681,8 +2681,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2736,8 +2736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2769,7 +2769,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2782,7 +2782,7 @@ "b5d64b99-24d4-4fea-a1e4-60997d40b62c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,8 +2800,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2855,8 +2855,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2888,7 +2888,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2901,7 +2901,7 @@ "bf7ed969-af60-45e7-8c7b-f8d27b559259" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,8 +2919,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json index 232c2b5408a0..2f8b5baed7d9 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9f9e478c-17a1-4c67-a1d8-6f5dbe36c7da\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"daf1ad3d-f575-4d15-84e5-170a27964e4d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "bf766e1a-499b-4db3-9a49-7af4156734ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json index 082078034fb3..83aac86fff61 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4458\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "30d02c07-62ad-4558-98d6-1cd51b453cfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet29\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "6a608085-a8b7-4e79-91fc-57eef8cbe0b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "3fe7da97-a9b9-4adf-a265-5597f385db0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n }\r\n },\r\n \"name\": \"azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "5414d5de-e04b-4b9a-ba01-72731d714424" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.4,10.0.0.5\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "190d20ca-f34d-4676-a46f-939e0784cec4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "60437720-65a0-4ec6-8b38-cace67f6995d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,8 +1136,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1191,8 +1191,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,8 +1246,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,8 +1356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,8 +1411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1466,8 +1466,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1521,8 +1521,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1576,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1631,8 +1631,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1686,8 +1686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1796,8 +1796,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1851,8 +1851,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1906,8 +1906,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1961,8 +1961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2016,8 +2016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2071,8 +2071,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2126,8 +2126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2181,8 +2181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,8 +2236,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,8 +2291,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2346,8 +2346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2401,8 +2401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2456,8 +2456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2511,8 +2511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,8 +2566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2621,8 +2621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2676,8 +2676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2731,8 +2731,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2786,8 +2786,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2841,8 +2841,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2896,8 +2896,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,8 +2951,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3006,8 +3006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3116,8 +3116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3171,8 +3171,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3226,8 +3226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3281,8 +3281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3336,8 +3336,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3391,8 +3391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3446,8 +3446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3501,8 +3501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3556,8 +3556,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3611,8 +3611,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3666,8 +3666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3727,8 +3727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3782,8 +3782,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3843,8 +3843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3898,8 +3898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,8 +3959,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,8 +4014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4069,8 +4069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4124,8 +4124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4234,8 +4234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,8 +4289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4344,8 +4344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4399,8 +4399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4454,8 +4454,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4509,8 +4509,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4564,8 +4564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,8 +4619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4674,8 +4674,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4729,8 +4729,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4784,8 +4784,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4839,8 +4839,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4894,8 +4894,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4949,8 +4949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5004,8 +5004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5059,8 +5059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5114,8 +5114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5169,8 +5169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5224,8 +5224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5279,8 +5279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5334,8 +5334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,8 +5389,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5444,8 +5444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5499,8 +5499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5554,8 +5554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5609,8 +5609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5664,8 +5664,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5719,8 +5719,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5774,8 +5774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5829,8 +5829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5884,8 +5884,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5939,8 +5939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5994,8 +5994,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6049,8 +6049,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6159,8 +6159,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6214,8 +6214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6269,8 +6269,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6324,8 +6324,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6379,8 +6379,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6434,8 +6434,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6489,8 +6489,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6544,8 +6544,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6599,8 +6599,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6654,8 +6654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6709,8 +6709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6764,8 +6764,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6819,8 +6819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6874,8 +6874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6929,8 +6929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6984,8 +6984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7039,8 +7039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7094,8 +7094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7149,8 +7149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7204,8 +7204,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7259,8 +7259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7314,8 +7314,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7369,8 +7369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7424,8 +7424,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7479,8 +7479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7534,8 +7534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7589,8 +7589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7644,8 +7644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7699,8 +7699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7754,8 +7754,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7809,8 +7809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7864,8 +7864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7919,8 +7919,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7974,8 +7974,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8029,8 +8029,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8084,8 +8084,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8139,8 +8139,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8194,8 +8194,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8249,8 +8249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8304,8 +8304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8359,8 +8359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8414,8 +8414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8469,8 +8469,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8524,8 +8524,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8579,8 +8579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8634,8 +8634,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8689,8 +8689,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8744,8 +8744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8799,8 +8799,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8854,8 +8854,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8909,8 +8909,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8964,8 +8964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9019,8 +9019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9074,8 +9074,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9129,8 +9129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9184,8 +9184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9239,8 +9239,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9294,8 +9294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9349,8 +9349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9404,8 +9404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9459,8 +9459,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9514,8 +9514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9569,8 +9569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9624,8 +9624,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9679,8 +9679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9734,8 +9734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9789,8 +9789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9844,8 +9844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9899,8 +9899,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9954,8 +9954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10009,8 +10009,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10064,8 +10064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json index 5b8d5fb67820..b2744435592a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet545\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "63285282-cbb8-4a5b-876f-aa4b1a163faa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7547\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -241,7 +241,7 @@ "a7656262-acdf-45ca-9be7-124d86e5fff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,8 +259,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -315,8 +315,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -371,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,8 +430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -495,8 +495,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -619,8 +619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "4a9c52ec-5191-49a1-b13c-a1690815ab65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.2.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -808,7 +808,7 @@ "8663122b-5345-4a32-963d-2d0a08729eee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,8 +826,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -882,8 +882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1056,8 +1056,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1121,8 +1121,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1186,8 +1186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n }\r\n },\r\n \"name\": \"azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1239,7 +1239,7 @@ "b132e059-7eb1-469f-914d-25c56708cedf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,8 +1257,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n }\r\n },\r\n \"name\": \"azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1310,7 +1310,7 @@ "6e41a746-ca55-49e5-88f9-fe74998f1c05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,8 +1328,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,8 +1387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1446,8 +1446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1505,8 +1505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1564,8 +1564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1623,8 +1623,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1682,8 +1682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1859,8 +1859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1918,8 +1918,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1977,8 +1977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,8 +2036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2095,8 +2095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2154,8 +2154,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2213,8 +2213,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2272,8 +2272,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2331,8 +2331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,8 +2390,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2449,8 +2449,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2508,8 +2508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2567,8 +2567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2626,8 +2626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2685,8 +2685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2744,8 +2744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2803,8 +2803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2862,8 +2862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,8 +2921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2980,8 +2980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3039,8 +3039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,8 +3098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3157,8 +3157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3216,8 +3216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3275,8 +3275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3334,8 +3334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3393,8 +3393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3452,8 +3452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3511,8 +3511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3570,8 +3570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3629,8 +3629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,8 +3688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3747,8 +3747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3806,8 +3806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3865,8 +3865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3924,8 +3924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3983,8 +3983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4042,8 +4042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4101,8 +4101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4160,8 +4160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4219,8 +4219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4278,8 +4278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4337,8 +4337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4396,8 +4396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4455,8 +4455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4514,8 +4514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4573,8 +4573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,8 +4632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4691,8 +4691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4747,8 +4747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4865,8 +4865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4924,8 +4924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4983,8 +4983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5042,8 +5042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5160,8 +5160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5219,8 +5219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5278,8 +5278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5337,8 +5337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5396,8 +5396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5455,8 +5455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5514,8 +5514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5573,8 +5573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5632,8 +5632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5691,8 +5691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5750,8 +5750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5809,8 +5809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5868,8 +5868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5927,8 +5927,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5986,8 +5986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6045,8 +6045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6163,8 +6163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6222,8 +6222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6281,8 +6281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6340,8 +6340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6399,8 +6399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6458,8 +6458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6517,8 +6517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6576,8 +6576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6635,8 +6635,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6694,8 +6694,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6753,8 +6753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6812,8 +6812,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6871,8 +6871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6930,8 +6930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6989,8 +6989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7048,8 +7048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7107,8 +7107,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7166,8 +7166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7225,8 +7225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7284,8 +7284,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7343,8 +7343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7402,8 +7402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7461,8 +7461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7520,8 +7520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7579,8 +7579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7638,8 +7638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7697,8 +7697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7756,8 +7756,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7815,8 +7815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7874,8 +7874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7933,8 +7933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7992,8 +7992,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8051,8 +8051,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8110,8 +8110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8169,8 +8169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8228,8 +8228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8287,8 +8287,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8346,8 +8346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8402,8 +8402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8458,8 +8458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8520,8 +8520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8576,8 +8576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8638,8 +8638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8691,7 +8691,7 @@ "34bf47da-6691-4dbd-9400-89cb5668f526" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8709,8 +8709,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8762,7 +8762,7 @@ "ad4396c8-658d-4849-afd3-e0f31838df91" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8780,8 +8780,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8836,8 +8836,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8892,8 +8892,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8948,8 +8948,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9004,8 +9004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9041,7 +9041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9069,8 +9069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9100,7 +9100,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9128,8 +9128,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9165,7 +9165,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9193,8 +9193,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9224,7 +9224,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9252,8 +9252,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9289,7 +9289,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9317,8 +9317,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9348,7 +9348,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json index d6ff23ddebdf..37cf76274276 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "4b8f4da0-a5eb-4322-a768-7897aee4afb8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6654\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "5c7f3c04-22aa-4bcb-9b3f-b37081b187cd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -622,7 +622,7 @@ "6058ae5d-6bc6-4d0a-af6f-db9aa1f92372" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "3c0f845a-886c-4824-98d7-99892538c8d2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "d92cddce-5df0-46b3-b974-40633cde5f4a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1115,7 +1115,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,7 +1166,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1217,7 +1217,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1268,7 +1268,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1319,7 +1319,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1370,7 +1370,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1421,7 +1421,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1472,7 +1472,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1523,7 +1523,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1574,7 +1574,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1625,7 +1625,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1676,7 +1676,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1727,7 +1727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1778,7 +1778,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1829,7 +1829,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,7 +1880,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1931,7 +1931,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2033,7 +2033,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2084,7 +2084,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2186,7 +2186,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2237,7 +2237,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2288,7 +2288,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2339,7 +2339,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,7 +2390,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2441,7 +2441,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2492,7 +2492,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2543,7 +2543,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2594,7 +2594,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2645,7 +2645,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2696,7 +2696,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2747,7 +2747,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2798,7 +2798,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2849,7 +2849,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3104,7 +3104,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3155,7 +3155,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,7 +3206,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3257,7 +3257,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3308,7 +3308,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3359,7 +3359,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,7 +3410,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3461,7 +3461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3512,7 +3512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3563,7 +3563,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3614,7 +3614,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3665,7 +3665,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3716,7 +3716,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3767,7 +3767,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3818,7 +3818,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3869,7 +3869,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3926,7 +3926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3977,7 +3977,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4034,7 +4034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -4075,7 +4075,7 @@ "432d7bf3-ed0f-47af-abde-683f1d4d9614" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4103,7 +4103,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n }\r\n}", "RequestHeaders": { @@ -4144,7 +4144,7 @@ "f11e8b40-095e-45e9-a2ac-4e54f2ce0750" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4172,7 +4172,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4223,7 +4223,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4274,7 +4274,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4325,7 +4325,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4382,7 +4382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4433,7 +4433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4490,7 +4490,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4541,7 +4541,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4592,7 +4592,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4643,7 +4643,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4694,7 +4694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,7 +4751,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,7 +4804,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4836,7 +4836,7 @@ "56c95b9b-4460-4322-9a54-fd1d830bfd6b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4845,7 +4845,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4867,7 +4867,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +4918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json index a948a5e446bf..132f707c3425 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6309\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "eb5f29b8-5fab-44b4-b927-5466cfb76a3f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "6e2f0013-ed22-4360-b73f-5bd09a4ace9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -518,7 +518,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -632,7 +632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -692,7 +692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", "RequestHeaders": { @@ -733,7 +733,7 @@ "8c869573-fa12-4c39-b527-1d87586fb4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -761,7 +761,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -812,7 +812,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,7 +863,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,7 +914,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,7 +965,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1016,7 +1016,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1067,7 +1067,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,7 +1169,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1220,7 +1220,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1271,7 +1271,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1322,7 +1322,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1373,7 +1373,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1424,7 +1424,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1475,7 +1475,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,7 +1526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1577,7 +1577,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1628,7 +1628,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,7 +1679,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1730,7 +1730,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1781,7 +1781,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1832,7 +1832,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1883,7 +1883,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1985,7 +1985,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +2036,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2087,7 +2087,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2138,7 +2138,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2189,7 +2189,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,7 +2291,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2342,7 +2342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,7 +2444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2495,7 +2495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2546,7 +2546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2597,7 +2597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2648,7 +2648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2699,7 +2699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,7 +2750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2852,7 +2852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2903,7 +2903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2954,7 +2954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3005,7 +3005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3056,7 +3056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3158,7 +3158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3209,7 +3209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3260,7 +3260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3311,7 +3311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3362,7 +3362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3413,7 +3413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,7 +3464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3515,7 +3515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3566,7 +3566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3617,7 +3617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,7 +3674,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -3715,7 +3715,7 @@ "b8001171-5f00-409e-87fa-e09c8a5b6379" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3743,7 +3743,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3794,7 +3794,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3848,7 +3848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390/ipConfigurations/azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"80eb4542-6628-4989-a71d-39c6f068cd88\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4ab7c1aa-4feb-4aea-8359-f841f6196a5d\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"65b63583-7d30-4f32-acad-93ec0d844814\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -3949,7 +3949,7 @@ "1a59d7cd-2129-4c2a-a110-32a47303d041" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,7 +3977,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4028,7 +4028,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4079,7 +4079,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4130,7 +4130,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4181,7 +4181,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4232,7 +4232,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,7 +4289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyLength\": 50\r\n}", "RequestHeaders": { @@ -4327,7 +4327,7 @@ "b69cde55-32c9-4a0e-af56-dcdb6dbce3c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4336,7 +4336,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4358,7 +4358,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4409,7 +4409,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4460,7 +4460,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4511,7 +4511,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,7 +4562,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,7 +4619,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4670,7 +4670,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4727,7 +4727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "RequestHeaders": { @@ -4765,7 +4765,7 @@ "bb963c2b-266c-4f13-9b03-5fc08f2b72e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json index 6897cd7e9f13..4bb8134e88dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "78d32121-6ff0-4710-a9e8-2f78bea12c93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5521\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "8beafd91-d79d-4589-97b2-5b325389aefc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "a6b8605e-b2cb-41c1-b1aa-e513acca5f3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1100,8 +1100,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,8 +1210,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1265,8 +1265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1320,8 +1320,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1375,8 +1375,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,8 +1430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1485,8 +1485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1540,8 +1540,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,8 +1595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,8 +1650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1705,8 +1705,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1760,8 +1760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1815,8 +1815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1870,8 +1870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1925,8 +1925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,8 +1980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2035,8 +2035,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2090,8 +2090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,8 +2145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,8 +2200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2255,8 +2255,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2310,8 +2310,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2365,8 +2365,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2420,8 +2420,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2475,8 +2475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2530,8 +2530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2585,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2640,8 +2640,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,8 +2695,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,8 +2750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,8 +2805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,8 +2860,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2915,8 +2915,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2970,8 +2970,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,8 +3025,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3080,8 +3080,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3135,8 +3135,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3190,8 +3190,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3245,8 +3245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3300,8 +3300,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,8 +3410,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3465,8 +3465,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3520,8 +3520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3575,8 +3575,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3630,8 +3630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,8 +3685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3740,8 +3740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3795,8 +3795,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3850,8 +3850,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3905,8 +3905,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3960,8 +3960,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4015,8 +4015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4070,8 +4070,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4125,8 +4125,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4180,8 +4180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4235,8 +4235,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4290,8 +4290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4345,8 +4345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4400,8 +4400,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4461,8 +4461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443/ipConfigurations/azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"c71d5327-5c99-4026-ab58-7ffc07376d0e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"63abf0e6-b040-4de6-a636-cbd4774187c7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n },\r\n \"resourceGuid\": \"ba330a4b-c210-44c5-97af-d1e51b107ff8\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true\r\n }\r\n}", "RequestHeaders": { @@ -4513,7 +4513,7 @@ "eb58d262-bbdf-45a2-a70d-70193aa3ee9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4531,8 +4531,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4586,8 +4586,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4641,8 +4641,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,8 +4696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,8 +4751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4867,8 +4867,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,8 +4928,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4982,8 +4982,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5015,7 +5015,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -5028,7 +5028,7 @@ "51dc46ba-57d0-4629-b51f-aac4c79cd525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5046,8 +5046,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5156,8 +5156,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5211,8 +5211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5266,8 +5266,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json index 4ff06a86938b..44f72614b643 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5620\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "9efcedaf-872b-4cd4-b72f-8eee2e7e207c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "4710b952-c826-4161-8f27-50bdd7631b76" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -751,7 +751,7 @@ "2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -779,7 +779,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -830,7 +830,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -881,7 +881,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -932,7 +932,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -983,7 +983,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1034,7 +1034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1085,7 +1085,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1136,7 +1136,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1187,7 +1187,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1238,7 +1238,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1289,7 +1289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1340,7 +1340,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1391,7 +1391,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1442,7 +1442,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1493,7 +1493,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1544,7 +1544,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,7 +1595,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1697,7 +1697,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1748,7 +1748,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1799,7 +1799,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1850,7 +1850,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1901,7 +1901,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1952,7 +1952,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2003,7 +2003,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2054,7 +2054,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2105,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2156,7 +2156,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2207,7 +2207,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2258,7 +2258,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2309,7 +2309,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2360,7 +2360,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,7 +2411,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2462,7 +2462,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2564,7 +2564,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2615,7 +2615,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2666,7 +2666,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,7 +2717,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2768,7 +2768,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2819,7 +2819,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2870,7 +2870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,7 +2921,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2972,7 +2972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3023,7 +3023,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3074,7 +3074,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3125,7 +3125,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3176,7 +3176,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3227,7 +3227,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3278,7 +3278,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3380,7 +3380,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3431,7 +3431,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3482,7 +3482,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,7 +3533,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3584,7 +3584,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3635,7 +3635,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3692,7 +3692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3743,7 +3743,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3800,7 +3800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3857,7 +3857,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,7 +3959,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4010,7 +4010,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4061,7 +4061,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4112,7 +4112,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4163,7 +4163,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4214,7 +4214,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4265,7 +4265,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4316,7 +4316,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4367,7 +4367,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4418,7 +4418,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4469,7 +4469,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4520,7 +4520,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4571,7 +4571,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4622,7 +4622,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4673,7 +4673,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4724,7 +4724,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,7 +4775,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4826,7 +4826,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4877,7 +4877,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,7 +4928,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4979,7 +4979,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5030,7 +5030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5081,7 +5081,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5132,7 +5132,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5183,7 +5183,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5234,7 +5234,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5285,7 +5285,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5336,7 +5336,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5387,7 +5387,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5438,7 +5438,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5489,7 +5489,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5540,7 +5540,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5591,7 +5591,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5642,7 +5642,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,7 +5693,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -5731,7 +5731,7 @@ "6e321e8b-08a6-4dac-9cc1-8538d6076418" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,7 +5740,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5762,7 +5762,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5813,7 +5813,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5864,7 +5864,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5915,7 +5915,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5972,7 +5972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6025,7 +6025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6057,7 +6057,7 @@ "b9215e35-1973-47d3-82e9-3b589a195598" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6066,7 +6066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -6088,7 +6088,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6139,7 +6139,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6190,7 +6190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6241,7 +6241,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6292,7 +6292,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json index 52e4f2ba7502..b760fd2e4448 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "df7c664a-b966-4896-a71c-e9b69c5d241d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7750\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "4c6e88f6-ad73-44ae-8ef4-a6eb09648889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -622,7 +622,7 @@ "218ab0aa-28e0-4540-ad17-302f788f97f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "725a8207-73b2-4243-8160-027ecd1459c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "548cbf18-9be7-408e-8dd7-c88eea8ccc44" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", @@ -1107,7 +1107,7 @@ "d9502d1c-0779-47c8-8eb8-dc11d001b75c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,7 +1135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1176,7 +1176,7 @@ "20852412-192d-4114-8fa5-30be5be0038d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,7 +1204,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ]\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1245,7 +1245,7 @@ "24ba035c-dcb5-46a8-a399-149fc7a893f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1314,7 +1314,7 @@ "8c6beedd-bd46-4d6a-b918-68dd9df39270" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,7 +1342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,7 +1393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1444,7 +1444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1495,7 +1495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1546,7 +1546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1597,7 +1597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1648,7 +1648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1699,7 +1699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1750,7 +1750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1852,7 +1852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1903,7 +1903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1954,7 +1954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,7 +2005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2056,7 +2056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2107,7 +2107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2158,7 +2158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2209,7 +2209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2260,7 +2260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2311,7 +2311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2362,7 +2362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2413,7 +2413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2464,7 +2464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2515,7 +2515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,7 +2566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,7 +2617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,7 +2668,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2719,7 +2719,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2770,7 +2770,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2872,7 +2872,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,7 +2923,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2974,7 +2974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,7 +3025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3076,7 +3076,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3127,7 +3127,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,7 +3178,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3229,7 +3229,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3280,7 +3280,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3331,7 +3331,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3382,7 +3382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3433,7 +3433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,7 +3484,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3535,7 +3535,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3586,7 +3586,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3637,7 +3637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,7 +3688,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,7 +3739,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3790,7 +3790,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3841,7 +3841,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3892,7 +3892,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3943,7 +3943,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +3994,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4045,7 +4045,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4096,7 +4096,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4147,7 +4147,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4198,7 +4198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4255,7 +4255,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4306,7 +4306,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4363,7 +4363,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,7 +4415,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4473,7 +4473,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4524,7 +4524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4581,7 +4581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,7 +4632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4689,7 +4689,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4740,7 +4740,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4797,7 +4797,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4848,7 +4848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4899,7 +4899,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4950,7 +4950,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5001,7 +5001,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5052,7 +5052,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"ProcessorArchitecture\": \"Amd64\"\r\n}", "RequestHeaders": { @@ -5093,7 +5093,7 @@ "434bbfd2-b60a-4b02-98a5-d395c70cf5b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5102,7 +5102,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5124,7 +5124,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5175,7 +5175,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5226,7 +5226,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5277,7 +5277,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5328,7 +5328,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5379,7 +5379,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5430,7 +5430,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json index 27bd1568b9a4..ef8b88ae4458 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\"\r\n}", "RequestHeaders": { @@ -164,7 +164,7 @@ "fbb24308-d599-45e4-a362-a999ca8fc477" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,8 +182,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,8 +304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -337,7 +337,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -350,7 +350,7 @@ "0efa3a1b-3d5e-4924-8bfb-be23c225d20e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json index e680c3d9052f..7aaf0bc4f44d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6884\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3dad47db-7a5d-4764-b1a8-45e4c54ecb14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3892\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "33b0df37-361c-4610-a62c-2d0bd11d537e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "5cd1d728-5a6d-42ea-9e42-2cef079e7d37" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "d42fc5c0-cca6-4177-bd4d-8308ba4890c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "7efab2e5-175c-433e-9f27-b08984133322" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9b45499d-e838-4b4e-9ce1-01e6d473764c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "278e7e1b-2137-4663-9235-2bad3fdfc102" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "ede67ae0-aeba-49e6-90df-5a5b53c7f6ce" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "f8b75ac4-426a-4583-9e9c-4676d5661dfd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2038,7 +2038,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2051,7 +2051,7 @@ "892ddc33-a56a-451c-9f96-b4cf3dc159d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,8 +2069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2124,8 +2124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2178,8 +2178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2211,7 +2211,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2224,7 +2224,7 @@ "d91d7f13-838b-49b3-a16c-9fc285b57bd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2242,8 +2242,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2297,8 +2297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2330,7 +2330,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2343,7 +2343,7 @@ "1a21769a-b229-45d2-a730-3d208ae11c57" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,8 +2361,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2416,8 +2416,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2449,7 +2449,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2462,7 +2462,7 @@ "fd9fc03d-a4bb-43e4-9397-c11e79c53925" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,8 +2480,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2535,8 +2535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2568,7 +2568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2581,7 +2581,7 @@ "5fbb2994-1d41-4726-ae24-018ff2a4399b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2599,8 +2599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json index b09cbc549551..579f06f4a955 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9199\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9a4ad2fd-6e62-424d-b1ec-14962cca9cf4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bef8bf1d-d1fc-4068-8735-3977bb3c34d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -727,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -760,7 +760,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -773,7 +773,7 @@ "7adb7a95-e3c0-45ff-8fc1-1180b47ae47c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -791,8 +791,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -846,8 +846,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -879,7 +879,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -892,7 +892,7 @@ "d02ab371-ea0c-4a29-b3c1-a316877805ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,8 +910,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json index 557cc9bd3c91..33094a5f9c57 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "963fb0d9-d9da-442b-ba19-ed37d225501f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "5409a23a-b969-4ec0-b876-2d7fa5fd4bbc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIP\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "11fc7019-b17b-489e-b2b3-0f1f043f637b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIPProtocol\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "0e5113c6-d8c6-4379-b111-8af4d1de4ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -627,8 +627,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -691,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,8 +813,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -871,8 +871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,8 +996,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,8 +1050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1083,7 +1083,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1096,7 +1096,7 @@ "53c70c1f-f3bc-49bc-82ad-3567f6427a52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,8 +1114,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,8 +1169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1202,7 +1202,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1215,7 +1215,7 @@ "e27bbc83-c3a8-4eee-91c5-f17a3aef9423" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,8 +1233,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json index 1e89d8c1eae2..ad4c27c5ed16 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "264ff5ef-2d86-4608-8e76-eac955cb406e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9826\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1606\",\r\n \"etag\": \"W/\\\"08dd095e-7a95-4523-9219-23493907e2af\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239/subnets/azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2958\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet6449\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/backendAddressPools/azsmnet2958\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/probes/azsmnet2286\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2286\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet3126\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2299\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "04b85831-52ed-4f78-b0ab-a589450ebbdc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "4b0345cf-ec91-4ace-9cca-e9431a22067d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "b6f5aa51-c004-419b-bff0-20344fcaf8ae" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json index 84e64b13d512..6d5bc862829a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5e54fcf7-11ac-48da-aac5-2fa0ba445a1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6881\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet4614\",\r\n \"etag\": \"W/\\\"c27c3a4a-61b2-471d-bc8e-e21fa2a01e7c\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103/subnets/azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1565\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet2497\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/backendAddressPools/azsmnet1565\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/probes/azsmnet914\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet914\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet6108\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4420\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9132b8e7-7535-4edc-93b0-8098b908e34e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "6e738e9c-4fb2-4b3d-a5dd-02972e66cde3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "32b8cf10-7428-4325-a94d-cb75ba3084dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json index 36470fd821d7..a27371ae40b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6030\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9ef85cc4-df4b-4966-ab96-bfaeb3811312" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\",\r\n \"properties\": {\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\"\r\n }\r\n ],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5745\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 107,\r\n \"frontendPortRangeEnd\": 110,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"3b977636-5d80-427b-914a-bf079a283b97\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "a9d5f4ef-f803-4914-aa56-9d99163a25b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -712,7 +712,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -725,7 +725,7 @@ "275fb0d7-293f-4025-8841-d3bd66ce4d17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -852,8 +852,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -885,7 +885,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -898,7 +898,7 @@ "bd3187d4-a3d1-4118-88b2-0938e6beb75e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,8 +916,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json index fd2b26e6eb40..05d2aa7931dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet339\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5eacd067-d3d7-4e2a-89a8-8b633e85d30e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609\"\r\n }\r\n },\r\n \"name\": \"azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet4688\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7538\"\r\n }\r\n ],\r\n \"outboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"allocatedOutboundPorts\": 1000,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/backendAddressPools/azsmnet4688\"\r\n }\r\n },\r\n \"name\": \"azsmnet8413\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "afa88ff0-3c18-4dcf-bf65-4c0fae290cba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "6f62b5b3-4ebe-4797-9fdd-e945b7728203" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "632e498b-bc6b-4467-a71a-f7ed2ceece4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json index e44730dcf956..e4028768b739 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "08de78f1-3bc7-493f-bc67-f4597fb79770" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet2252\",\r\n \"etag\": \"W/\\\"ff72dc07-42e5-4d32-bcd1-6d92b4911872\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "e136fa58-0f19-4a46-9e35-a6a7d24e223d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/probes/azsmnet6266\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet6266\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"0296cf87-5d50-4fce-9fb0-055dae5af2de\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6beeefcf-99bd-4697-828a-71ea9ab26d3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "6cd22eff-f535-476e-895b-85418749a134" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "6bf37bbe-9cc4-4b2c-8776-e67472f3b824" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json index ba20fb509f42..9dd530e44ea1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8249\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2177\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2f3e4c16-6339-4b37-b653-d4317887a159" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1712\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json index da8c945d43ac..0e5630780761 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1938\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "12fbba8e-ab04-436d-84a1-625f46c202f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet4813\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "d494c757-68f0-45d0-9cf0-dba5c2cdcd05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n }\r\n },\r\n \"name\": \"azsmnet6862\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "59f8cc76-3006-45fc-a35f-52a40040e9b4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,8 +976,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1009,7 +1009,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1022,7 +1022,7 @@ "aa4769b3-0555-4b4d-bf93-ec75ac59336f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,8 +1040,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,8 +1095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1128,7 +1128,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1141,7 +1141,7 @@ "ec9b9318-944d-4129-9cc4-ac5b9aec2f4d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,8 +1159,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1214,8 +1214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1247,7 +1247,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1260,7 +1260,7 @@ "26a085d4-53bb-4078-b6ae-c11c9ff3337d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,8 +1278,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json index 7b9d10e3c6b3..fab8774ff389 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5051\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3881820c-25c4-43bc-a03a-305b8451d77f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9491\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "406304b5-998f-438a-8b94-4f8e4c068d71" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipv4ipconfig792\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ipv6ipconfig4450\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv6\",\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "bf2587c6-c933-42bf-8114-047fb0033458" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "c8341a35-6cc2-49f2-8d26-351acab85730" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "bb6bebcd-c58f-481e-9924-778276ae0606" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "ddd5be95-00cf-4031-993d-c2ec96e3812d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json index 673f1e1b90e3..6f00311ba6ef 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet9996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3618ebb7-24be-434f-bbfc-3aeea1ed27e2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996\"\r\n }\r\n },\r\n \"name\": \"azsmnet5670\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f273ca10-2b73-4b7a-adcb-843d2cf4894c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "999431c8-2c8c-40b2-9dd2-285624e3a112" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "610d0d8b-e937-4a27-806e-182f67105689" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json index 57b19b3557fb..b4e1ec9c6c64 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet7512\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "53e216aa-b677-4c58-9fc9-e541fdf21d11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512\"\r\n }\r\n },\r\n \"name\": \"azsmnet6647\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f86d4fc2-8e02-4294-b8bd-e381115a3769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "930e8b36-b134-4dd6-9411-8b5e80fcfec0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "24b51407-43bc-4eb7-b256-69f74a70212d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json index aa9fbdfdfa34..22581ad6d0c2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet1289\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7b73f3ff-87d1-4336-9503-1ecadcd8be0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet9761\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "d3d925f7-f43d-403b-b5e0-aafde256930d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9761\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/securityRules/azsmnet9761\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"df2612a2-9f2c-4641-ae62-31982ad26eec\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980\",\r\n \"location\": \"eastus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612/subnets/azsmnet1289\"\r\n }\r\n },\r\n \"name\": \"azsmnet9385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "f2de0f45-a61a-436c-a77f-f6f1cfa32749" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json index 81fd106807d0..756a58f041fe 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet6595\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "e16aeb62-7174-4d4b-9e7b-9dc47d3b300b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "eb361df5-f998-4434-bf5a-062492302f90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8404\",\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682/ipConfigurations/azsmnet8404\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vlmtkxhqcrjuppuzwmwcy12tbb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": true,\r\n \"resourceGuid\": \"7d6b5cca-b79f-4864-9ef4-c15a17a31419\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "37174060-7b1b-4ece-a928-3094a8d18845" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "e0c0e99b-cd17-43b6-bcfa-73ece75e9605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json index a44bf35a0643..c9f0f48cfeae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9820\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "445ecc2b-8cab-47c6-8cf5-f27ef58c6f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3029\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "2db579ed-ab30-4409-abed-01079ed6aadb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3794\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "cbefd58a-85af-4671-b8ef-8267d4df4747" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "a4354010-5717-4653-af48-020895676b17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "5cc2a384-0a40-4da2-9c34-859484e09efe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "0038f628-e452-4f45-812d-7efd6d0cac2d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json index aef34f068bfb..820a70192902 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet2837\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "bc9a8556-b961-40a0-9019-770a3478bece" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet40\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "72821b37-7181-4fba-ac9f-666e4ae59d4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet40\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/securityRules/azsmnet40\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"934e8452-0070-43cf-9b4c-1e68110717eb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465\",\r\n \"location\": \"westus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053/subnets/azsmnet2837\"\r\n }\r\n },\r\n \"name\": \"azsmnet5652\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "ca2465ca-7e5f-4d68-9014-559fd9ea6deb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -780,7 +780,7 @@ "1a83fd25-aad9-4b8c-8589-7b5470a4193c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,8 +798,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -853,8 +853,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -907,8 +907,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -940,7 +940,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -953,7 +953,7 @@ "41bd6817-bafa-41a2-9972-7f4fee825cea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,8 +971,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,8 +1026,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1059,7 +1059,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1072,7 +1072,7 @@ "fb7d529e-41e0-4aff-8e3e-21c68e56fd0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1090,8 +1090,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json index efe657a09e5a..85475b1cd318 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5615\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "944f01c2-77b2-40f8-82a9-e045b2d480b3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"azsmnet1333\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": true\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json index c0873c483e65..cad22f4219a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7120bd31-52fd-4930-8efa-92cca097ff1c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "5643405a-4d6b-4219-99ec-4f36cefb7a10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json index f1753246321b..fcccf5847bff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "a57f505b-b51f-4237-9476-5550060e76c9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5872\",\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6d429732-cf6e-4850-b7a9-9540b533611f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,7 +587,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -644,7 +644,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,7 +705,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -756,7 +756,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -788,7 +788,7 @@ "ada432fe-0599-42de-9762-823b41e02fec" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,7 +797,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -819,7 +819,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json index a55bc2d58572..3b434935429b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9769\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "d3b1ceb3-fc95-45e0-874d-0553b5bab53b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -404,7 +404,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -461,7 +461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -524,7 +524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -556,7 +556,7 @@ "13308a66-8897-44ea-8df9-b12ca1d98e21" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +565,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -587,7 +587,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json index 14847b6bb2a5..f20929eaa5fd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv6\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "d39b9d63-14ac-4cb8-8bc6-629171fc57a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "fc579ad7-d1fe-49a3-99ca-9e301fbc0796" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -654,8 +654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -706,7 +706,7 @@ "83a5dde1-2b52-4c78-99bb-7ee5001ab69c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,8 +724,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -779,8 +779,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -837,8 +837,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -901,8 +901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -934,7 +934,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -947,7 +947,7 @@ "a0b157e4-ac6d-46d0-9a73-dbc3fc69280c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -965,8 +965,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json index 0a8a05544ddc..aa335f46a5c0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\"\r\n },\r\n \"idleTimeoutInMinutes\": 16\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "3250be31-367d-4a1a-96ad-e25adb1815b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"ee1883f7-8770-41a4-a42a-514f7b1ee87d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\",\r\n \"fqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\",\r\n \"reverseFqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\"\r\n },\r\n \"idleTimeoutInMinutes\": 16,\r\n \"resourceGuid\": \"565a8af7-d851-4520-8442-5901971e7630\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6b3e5417-f2af-47bb-a8b4-11ca41ec00f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,7 +759,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -791,7 +791,7 @@ "2ece8ab6-7318-4954-b1ce-93646466f555" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -800,7 +800,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -822,7 +822,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json index ffb17767f641..d9b8ac02be8d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet8397\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9300ca35-e10e-4803-9a19-ccbe70a88005" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet816\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "b54f2a54-7610-4887-a5e4-3facc44b6e4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -892,7 +892,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -905,7 +905,7 @@ "b6870c53-cd86-4331-93a0-7049be9a172d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,8 +923,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,8 +978,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1011,7 +1011,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1024,7 +1024,7 @@ "8a91f8d2-0056-477a-9c1e-ebc67ec78aaa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1042,8 +1042,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1097,8 +1097,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json index bf091c25077e..dcb278467ec5 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8334\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "2fcae6d6-c43b-4e96-b23c-61c0228b165a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azsmnet5369\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "8b7446cd-d269-455b-a81c-29f8cd144774" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "f78e960c-8975-4d9e-84fa-c28eea2d0bd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json index cce327763e55..81c9236fa178 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet3524\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "ae5fd15b-d60b-4b34-9452-57746445103a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json index 5557a7e08d3a..2a677d5647cf 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "15044d4c-3df8-4152-a39c-c0255289b846" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json index a94124495b22..59cbd63f4bae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json @@ -61,8 +61,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -113,7 +113,7 @@ "bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -131,8 +131,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -308,8 +308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -369,8 +369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -475,7 +475,7 @@ "6f1e3332-1c7e-49be-8de6-e0d05d150ff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,8 +493,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -606,8 +606,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -667,8 +667,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -789,8 +789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowVirtualNetworkAccess\": false,\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391\"\r\n }\r\n },\r\n \"name\": \"azsmnet3453\"\r\n}", "RequestHeaders": { @@ -841,7 +841,7 @@ "d5541592-049c-4c84-8b93-2f151349c8f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,8 +914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -972,8 +972,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1069,7 +1069,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1082,7 +1082,7 @@ "6684a1f4-8428-45c0-bb6b-c25a44d4833c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1100,8 +1100,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1188,7 +1188,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1201,7 +1201,7 @@ "c401ba88-eaec-4651-8550-e2b8795b28c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,8 +1219,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1274,8 +1274,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1307,7 +1307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1320,7 +1320,7 @@ "fbe9a49e-ee49-4cd2-9e6b-aec391eb8078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,8 +1338,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json index 5719245c7dc1..b77db5b654ff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet1873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet997\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "0d9b13a2-9865-4553-b38c-899a1b7f170f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -553,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -586,7 +586,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -599,7 +599,7 @@ "da3c92e3-ca15-4330-9719-bd5536d2cda5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,8 +617,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json index 0513cf5598ba..58834bc64100 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3416\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3995e6e8-2a31-4716-9e9d-e974fdc5cee9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.9\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416\"\r\n }\r\n },\r\n \"name\": \"azsmnet4903\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bcea5bd3-3988-4c94-8988-ce1128de88bc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -642,7 +642,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -655,7 +655,7 @@ "d894dfdd-726f-461c-95b3-564fba881898" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,8 +673,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -774,7 +774,7 @@ "de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,8 +792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json index 632369a5eeb3..93160a190fb7 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet7820\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "e9c55f19-519e-4c28-a7c2-38d4c48caf56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -433,8 +433,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,8 +498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "53c9e2d1-865d-4bc5-9cab-925bf0afb411" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -625,8 +625,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "abbc845f-7549-4105-9ab5-ed3270f676c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1059,8 +1059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1093,7 +1093,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1106,7 +1106,7 @@ "72f70e8c-36a1-4482-87ea-8576fcf7f823" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,8 +1124,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,8 +1180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1214,7 +1214,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1227,7 +1227,7 @@ "bf6e70fe-9654-4caa-ab74-9a2a50cf683c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,8 +1245,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1335,7 +1335,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1348,7 +1348,7 @@ "1e1eff12-10ca-460f-9ff5-098c619eae9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1366,8 +1366,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From 678613cf53e6e067c478ac3199c28c35440b7e7b Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 17 Mar 2017 15:35:54 -0700 Subject: [PATCH 104/137] #WAF changed version in rest API calls of Compute/SessionRecords. --- .../TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../TestExtImgGet.json | 2 +- .../TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- .../TestVMExtensionOperations.json | 50 ++--- .../TestImageOperations.json | 50 ++--- .../TestListVMInSubscription.json | 100 +++++----- .../TestVMWithLinuxOSProfile.json | 50 ++--- .../TestVMWithWindowsOSProfile.json | 104 +++++----- .../TestListUsages.json | 50 ++--- .../TestVMCertificatesOperations.json | 30 +-- .../TestVMDataDiskScenario.json | 50 ++--- .../TestVMBootDiagnostics.json | 50 ++--- .../TestVMDiskEncryption.json | 26 +-- .../TestVMDiskSizeScenario.json | 50 ++--- .../TestVMBYOL.json | 50 ++--- .../TestVMMarketplace.json | 50 ++--- .../TestEffectiveRouteAndAcls.json | 78 ++++---- .../TestMultiIpConfigForMultiNICVM.json | 54 ++--- .../TestMultiNicVirtualMachineReference.json | 54 ++--- .../TestNicVirtualMachineReference.json | 36 ++-- .../TestVMOperations.json | 100 +++++----- .../TestVMOperations_Redeploy.json | 50 ++--- .../TestVMScaleSetMarketplace.json | 46 ++--- .../TestVMScaleSetWithApplciationGateway.json | 184 +++++++++--------- .../TestVMScaleSetBatchOperations.json | 50 ++--- .../TestVMScaleSetOperations.json | 50 ++--- ...TestVMScaleSetOperations_ManagedDisks.json | 50 ++--- .../TestVMScaleSetScenarioOperations.json | 50 ++--- ...narioOperations_ManagedDisks_PirImage.json | 50 ++--- .../TestVMScaleSetScalingOperations.json | 50 ++--- .../TestVMScaleSetUpdateOperations.json | 50 ++--- .../TestVMScaleSetVMOperations.json | 50 ++--- ...stVMScaleSetVMOperations_ManagedDisks.json | 50 ++--- .../TestVMScenarioOperations.json | 50 ++--- ...TestVMScenarioOperations_ManagedDisks.json | 50 ++--- 40 files changed, 939 insertions(+), 939 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index 41d56c39d77b..c90d66618049 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 9f1f1e8233ad..0d03fdb6250b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index e8045406bdd2..bd443a53e6ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index fc3756c3a85c..2c1a98ed6570 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index abc449435cb7..2343de8f650a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index d76a89158bb8..bfb318f6ef31 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index a164c1a3195c..bc9057da8c35 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index e90bf7aad7ff..7bc95fedbe54 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json index 7b51902196c4..0a2e78ddd7e3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9607\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6636e9ed-13b1-43c5-a732-2887eca688b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "7e286ad3-e71a-4d8b-806f-ca8598fdd719" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip219\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2885\",\r\n \"etag\": \"W/\\\"216e9617-87f7-4b32-b6fa-5142ab44799b\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "e80bc784-fc35-4952-b020-e1621d0bf8a7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json index a69ada7e46b9..1992ecada87d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn95\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "39693354-72da-4b98-912c-0543840dabb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "74ff459b-e193-46be-957b-5dc4b1502e9c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2603\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3745\",\r\n \"etag\": \"W/\\\"e31795eb-9431-42b9-96d8-fc44fbb6b67a\\\"\",\r\n \"id\": \"/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -929,7 +929,7 @@ "8b8876a7-f4cb-4d78-811c-e45cd8fe3c30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json index 9f3d7f1636b1..8ab6f8f85bb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5539\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "4c4ef2f1-1edb-4cc5-ba59-8747661ac781" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "81c704c5-1a6c-4dc9-bf88-74afe2a418c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6468\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2379\",\r\n \"etag\": \"W/\\\"09124712-1dc7-43e1-a2e6-3126e9a76e54\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2188,8 +2188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2924\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "8efdc1fe-e795-43dd-9479-ded9e5a47ad9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,8 +2258,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2313,8 +2313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2371,8 +2371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2435,8 +2435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2487,7 +2487,7 @@ "ac9b713b-6eff-4e4c-ba24-0d82224e4a79" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,8 +2505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2560,8 +2560,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2682,8 +2682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7345\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn4669\",\r\n \"etag\": \"W/\\\"f16b3546-733c-405b-9c3e-542b5dacf471\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2731,7 +2731,7 @@ "d9756ef5-b2b2-4814-9c1c-e70e981d4e9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,8 +2749,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2807,8 +2807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json index 5a9a58b22790..bf4dec1f61d3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8223\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d51a812f-0f0f-43b5-a4c8-0c8be66ddd86" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3362\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn637\",\r\n \"etag\": \"W/\\\"b12f0d00-284c-4afc-84d5-bfa2ac1437de\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "882e78bc-fa42-4b1b-85de-954de4f8fbd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json index d18ba0cde08c..8d0a6f72550e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json @@ -1637,7 +1637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1678,7 +1678,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1706,7 +1706,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1747,7 +1747,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1775,7 +1775,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1816,7 +1816,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,7 +1844,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1885,7 +1885,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,7 +1913,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1964,7 +1964,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2015,7 +2015,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2066,7 +2066,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2117,7 +2117,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2171,7 +2171,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2225,7 +2225,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2279,7 +2279,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2333,7 +2333,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2453,7 +2453,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2573,7 +2573,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2614,7 +2614,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2642,7 +2642,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2683,7 +2683,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2711,7 +2711,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2752,7 +2752,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2780,7 +2780,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2849,7 +2849,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3161,7 +3161,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3215,7 +3215,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3269,7 +3269,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3389,7 +3389,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3449,7 +3449,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3509,7 +3509,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3547,7 +3547,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3575,7 +3575,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3613,7 +3613,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3641,7 +3641,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3679,7 +3679,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3707,7 +3707,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3745,7 +3745,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3773,7 +3773,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3833,7 +3833,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3893,7 +3893,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3953,7 +3953,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json index e31e6dd1e481..c0516ccd4ff6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8029\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "994ef8d3-0ac7-4a32-90bd-0df1f017983f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "28ad7faf-ccb1-45c9-b3a5-bee442bb02ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9892\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5051\",\r\n \"etag\": \"W/\\\"e390030a-9b9c-4215-9f89-6e13f66b5e5f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "9cdb43a7-671b-4bfa-a7ff-4debe63a5560" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json index 943c588a56a7..d2e6d376615f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json @@ -341,7 +341,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3075\"\r\n }\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -376,7 +376,7 @@ "80c4066a-ebd2-4caa-aaad-68871f8585ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,12 +404,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -458,7 +458,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -512,7 +512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -547,7 +547,7 @@ "e2d620bb-8279-45da-b8de-5a21a32126b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,12 +575,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -629,7 +629,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -683,7 +683,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualNetworks/azsmnet7824/subnets/azsmnet5000\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062\"\r\n }\r\n },\r\n \"name\": \"azsmnet7651\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet6511\",\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -718,7 +718,7 @@ "bfdd585b-89c3-4940-9896-4253781658b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,12 +746,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -800,7 +800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json index cc669591681f..65eb1d7665b2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8464\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d56c878a-38f1-4da1-ae6e-ddf675e0fb70" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9da20380-b57e-47ac-9bc1-443d5399f32a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9679\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7187\",\r\n \"etag\": \"W/\\\"da8250cc-8608-4a5f-be2a-6da45670caf0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "de247dca-53d2-4573-94cc-01e65fd1fc7f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json index f9ec7b96f0e7..f12a62aa579f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1593\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d7c2562b-e785-415a-9688-fef7ccbaa06d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9cbff61d-7049-4ed5-8f85-7ee3c41f919f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5437\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7677\",\r\n \"etag\": \"W/\\\"7d8534a4-69a9-4cee-b681-077fca187496\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "3a9d081b-8a92-401d-a802-6e73054d3a41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json index c51908d49888..5578452f9551 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json @@ -407,7 +407,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9021\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -448,7 +448,7 @@ "c3ff3024-263e-4233-bb1e-5f70638c0791" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -476,7 +476,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -527,7 +527,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "e237b881-ddbc-4325-aa80-228a59600b22" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -815,7 +815,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -875,7 +875,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3879\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn936\",\r\n \"etag\": \"W/\\\"15a0ea2d-97d4-4630-a984-5254777a1a75\\\"\",\r\n \"id\": \"/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualNetworks/vn3782/subnets/sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -913,7 +913,7 @@ "4e22ec02-1666-463b-bb77-96399ed3431b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,7 +941,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json index 7eb4047d430c..0b79ff8a3a58 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9166\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "ea8294d9-40db-47e5-b805-ef87b4a12e2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "9a33cc62-b116-4432-b93f-81126bd08197" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,8 +984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3443\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8501\",\r\n \"etag\": \"W/\\\"10a352e0-7b29-4928-a52a-679aedb25eb6\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1033,7 +1033,7 @@ "18f5cc6d-346e-4f66-b765-573eb950e1a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,8 +1051,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1109,8 +1109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json index 7a928f3972ab..a8b217a38c22 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3046\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -420,7 +420,7 @@ "a80a4050-fd45-499d-9ed3-fd2e55db1d66" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,8 +438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -493,8 +493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -667,7 +667,7 @@ "403bb37b-9d4f-4711-a2af-20e373c1d7dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,8 +685,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -740,8 +740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3834\",\r\n \"etag\": \"W/\\\"f18e1229-16c3-4246-9af5-d2dfe51925f0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -911,7 +911,7 @@ "7e328178-6311-4522-8e21-9413a3451485" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,8 +929,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json index 69a4cc544414..123ecc068932 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6298\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -603,7 +603,7 @@ "84da3aac-dd98-400f-b27d-da784d0989da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,8 +621,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -850,7 +850,7 @@ "73697911-5120-4e19-b0e5-7f182991944f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,8 +868,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn6013\",\r\n \"etag\": \"W/\\\"cfe5e54a-75df-4ad2-a5a2-8fe583ed14be\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "4347fe14-c13e-4892-9de8-1c974820ecde" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1112,8 +1112,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1170,8 +1170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json index 4faa0edcb4c3..dcea29f91250 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn3213\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "8654168d-aa01-415e-b701-740a896b258e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "4a5504d2-1005-4476-9b4b-17b4fe52d078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"875dc796-a63c-40a7-adcd-61639d94c346\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878\",\r\n \"location\": \"southeastasia\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn3213\",\r\n \"etag\": \"W/\\\"1fa85aa4-d945-4932-8271-c9b2ccda90e7\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213\"\r\n }\r\n },\r\n \"name\": \"ip2684\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "303a1a67-97e6-4deb-a885-e58f8a9fc538" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1112,8 +1112,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2308,8 +2308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2344,7 +2344,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2372,8 +2372,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2408,7 +2408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2436,8 +2436,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2466,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2494,8 +2494,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,7 +2524,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json index 763d211ad96d..d7067d72862a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "bbf2ee81-a708-465f-ab38-0bbf854c6397" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6347\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip23520\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a6539b36-087c-46fc-885d-73bfaa84757d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7139\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip21965\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "98169df6-ba37-4496-bee5-79f47beeb013" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json index 82ddcb931ba2..bf21199a5dbf 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "337fb129-529f-4643-a826-b3ed73bb1b7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9564\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "f3f1a2c0-4e36-4695-a3fd-061b0131e522" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "102888f0-a1bd-4ca8-a6d5-18908a0b0516" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json index e2139287c0b3..a4f941794281 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "2dc7ea7b-d165-45b3-9978-ac843843a8aa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5746\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5961\",\r\n \"etag\": \"W/\\\"bd2aed07-e14c-40f0-a7dd-4b22b6185f61\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a450fac6-ae9c-41fd-bc66-148f9cda4883" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index f568bcf40d9b..41b926cf4eca 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -492,8 +492,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8133\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -544,7 +544,7 @@ "5f63c140-65af-4671-8059-f064fabc83be" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,8 +562,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -617,8 +617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -675,8 +675,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -739,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -791,7 +791,7 @@ "e6754412-902f-4285-9d98-e3abea367247" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,8 +809,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -864,8 +864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -986,8 +986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7212\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7804\",\r\n \"etag\": \"W/\\\"b30468c9-5ebf-4f38-bea7-a6a2354ae10e\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1035,7 +1035,7 @@ "76e05b02-e233-4f14-8a86-6d87844e90a6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,8 +1053,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1111,8 +1111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3683,8 +3683,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7945\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -3735,7 +3735,7 @@ "304afb2c-100c-4420-96f6-519e50214408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,8 +3753,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3808,8 +3808,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,8 +3866,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3930,8 +3930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3982,7 +3982,7 @@ "f124a6aa-8ff4-44de-9a2c-55cc8d035926" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4000,8 +4000,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4055,8 +4055,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4113,8 +4113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4177,8 +4177,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6968\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2271\",\r\n \"etag\": \"W/\\\"daaa0816-ade5-4405-8b35-96b32c5610ce\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -4226,7 +4226,7 @@ "1780921b-6db3-46d5-bde3-139d1615b367" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4244,8 +4244,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4302,8 +4302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json index 68ccfc09256c..696c3e77e0d5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn4808\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "47a47f5f-fa54-4ac3-b001-4cc476eff4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "26eed63d-ddfd-4113-9aa8-e8bc80362e13" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9690\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8395\",\r\n \"etag\": \"W/\\\"055220a9-8c65-4920-9ab2-28fc8ebfd619\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "d76e9f46-d499-4819-801b-45ff74cfc2a5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json index 38a91b91e568..78397188f46d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json @@ -530,8 +530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2658\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -572,7 +572,7 @@ "06fa6a94-8bba-4693-a01f-ce4143272113" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,8 +600,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -707,8 +707,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -768,8 +768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -810,7 +810,7 @@ "2ee238c4-cbf5-4e03-8fa8-c934e7c46334" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -838,8 +838,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -945,8 +945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1006,8 +1006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7639\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3505\",\r\n \"etag\": \"W/\\\"938ab6d1-5c0f-47f1-89ee-6dcdabe7d802\\\"\",\r\n \"id\": \"/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualNetworks/vn6769/subnets/sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "2ae3f188-e69c-4a4b-a4ad-2821589e07f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1073,8 +1073,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json index d7edb379779d..86a60e40872e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"sn18098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"sn24269\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "44fe5922-bec0-4e35-8656-6d00f3c019a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"gwIp3235\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"fIp916\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"fPort5719\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"pool8495\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\"\r\n },\r\n \"name\": \"setting4841\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendIPConfigurations/fIp916\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendPorts/fPort5719\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"listener418\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendAddressPools/pool8495\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendHttpSettingsCollection/setting4841\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/httpListeners/listener418\"\r\n }\r\n },\r\n \"name\": \"rule4776\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -675,7 +675,7 @@ "0f1710a9-9b53-4323-9afd-6b59429cf0ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,8 +693,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,8 +988,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1106,8 +1106,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1165,8 +1165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1224,8 +1224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,8 +1283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1342,8 +1342,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1401,8 +1401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,8 +1460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1519,8 +1519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1578,8 +1578,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1637,8 +1637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1696,8 +1696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1755,8 +1755,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1814,8 +1814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1873,8 +1873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1932,8 +1932,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1991,8 +1991,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2050,8 +2050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2109,8 +2109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2168,8 +2168,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,8 +2227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2286,8 +2286,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2345,8 +2345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2404,8 +2404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2460,8 +2460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2519,8 +2519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,8 +2584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2649,8 +2649,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3681\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2702,7 +2702,7 @@ "38870625-8082-4853-b530-4a242e83efd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,8 +2720,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2776,8 +2776,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2835,8 +2835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,8 +2900,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn24269\",\r\n \"etag\": \"W/\\\"150ae5ac-97a7-41fb-b256-0a2fca784095\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn24269\"\r\n }\r\n },\r\n \"name\": \"ip9271\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2950,7 +2950,7 @@ "0c0ac95e-e324-4552-add6-9caaa3218d5c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2968,8 +2968,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3027,8 +3027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json index d933f67f40c9..4d2d9be26cb6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9414\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "78f60a92-eefa-40f5-93cb-43b8a8ee7167" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,8 +687,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn8550\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -740,7 +740,7 @@ "0ec17ca2-2425-4609-a936-11bb1591b92d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,8 +758,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -873,8 +873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn8550\",\r\n \"etag\": \"W/\\\"a366937d-2fa2-40b4-8aea-7f0fe553ac57\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550\"\r\n }\r\n },\r\n \"name\": \"ip9581\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -988,7 +988,7 @@ "82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,8 +1006,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1065,8 +1065,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json index 27b1188e2c10..1e74dd9b2d3f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9086\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "da9b1a55-b312-468d-8096-46f9d2d84c31" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "ace514d6-4d1a-4531-adaa-22341e2af8ff" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json index 86321f1b9e71..25e49b104910 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2213\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "c67351d2-991e-4b2b-a4a2-c4255eb4fd0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9982\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "cf87eff0-e701-4779-9199-51c0843ed22a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json index aa3f952450a4..3c9acdd0c005 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6753\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn1959\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "40dc0178-41da-4050-b3de-1b9cda61769f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1959\",\r\n \"etag\": \"W/\\\"315b667b-e5a5-4bf7-9ca1-3c756c990556\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959\"\r\n }\r\n },\r\n \"name\": \"ip8495\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "fdc47062-3147-4d64-a558-aeddaa06d489" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json index 65efff3fd90c..7ce305e78d3e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json @@ -462,8 +462,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8427\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -504,7 +504,7 @@ "5a7be3e7-4917-4fc3-adb4-f0f30862b743" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,8 +532,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,8 +584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,8 +639,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -700,8 +700,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3544\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -742,7 +742,7 @@ "97e39527-4fe2-4f11-a000-30b224522828" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -770,8 +770,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -822,8 +822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9831\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7797\",\r\n \"etag\": \"W/\\\"00863957-ff3e-4def-b190-536068ab6b8a\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn3361/subnets/sn7797\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -987,7 +987,7 @@ "63fc8e68-5baa-42d3-a024-786c8ac4c237" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,8 +1005,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json index 3c51a0f0c79f..caec2953f73e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7283\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "d98b0164-8811-4992-bc62-12ae2f6a4d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn2617\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2617\",\r\n \"etag\": \"W/\\\"07fd8634-fb1c-4560-89b4-44446884430c\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617\"\r\n }\r\n },\r\n \"name\": \"ip6264\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "9b7ae149-a4b7-4c0a-9785-a2eab99093b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json index b206bfd84303..517e17290055 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5561\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "e96a5be1-467d-476e-9ba7-f0f30a9dd71c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn7161\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "99c8c91d-bf0a-4441-8d95-a5c0225e8a8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn7161\",\r\n \"etag\": \"W/\\\"92758a28-66c5-46b6-b246-72ef99ff89fd\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161\"\r\n }\r\n },\r\n \"name\": \"ip6687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "078149f6-abf2-45e7-94a3-6c8ff2392c8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json index 808d6f748fe9..46d6de9d08b1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2964\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "1c3a79d8-d438-43d2-a925-ddaaea134ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "084b22a4-d2a9-487c-8839-bcc275001c17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json index b324bef7e566..e2341e061f0f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2011\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "3f7e6f04-1fe3-44ef-b97e-70134912daa5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5066\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "88051c1a-684c-4042-ac22-1252651e0fa9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index 15864e8cbfd9..7ecb02018219 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -525,8 +525,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8116\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -577,7 +577,7 @@ "d265798f-874e-433f-b8ab-3641f409dd93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,8 +595,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,8 +650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -708,8 +708,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -772,8 +772,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -824,7 +824,7 @@ "026fbcdb-fd10-4808-9f9c-d173cbd731ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,8 +842,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -897,8 +897,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -955,8 +955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,8 +1019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3862\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2745\",\r\n \"etag\": \"W/\\\"4020128b-b57c-4960-8176-a5d57670fcbf\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "9c622174-7a10-47b6-8f63-24820e573a2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,8 +1086,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1144,8 +1144,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index e6274efd6a1e..742ef8be988d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -119,8 +119,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3148\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -161,7 +161,7 @@ "a0947abc-4d83-40ff-b67e-fc6cca95679b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,8 +189,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -241,8 +241,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -296,8 +296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -357,8 +357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -399,7 +399,7 @@ "393cefed-f783-4c10-9d9f-95056de294cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,8 +427,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -479,8 +479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,8 +534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,8 +595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9759\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7781\",\r\n \"etag\": \"W/\\\"a8b9d9fd-ede0-4d06-88a3-d2b857e42136\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -634,7 +634,7 @@ "b3e5bcca-6047-432c-9abc-0ec1597b463a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,8 +662,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -717,8 +717,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From c8288be3734b0d8c229b3d348d371a9213661edd Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 17 Mar 2017 17:22:24 -0700 Subject: [PATCH 105/137] #WAF set x-ms-flatten to true for ApplicationGatewayFirewallRuleSet. --- .../ApplicationGatewaysOperations.cs | 176 ++++++++++++++++++ ...ApplicationGatewaysOperationsExtensions.cs | 28 +++ .../IApplicationGatewaysOperations.cs | 19 ++ ...cationGatewayAvailableWafRuleSetsResult.cs | 49 +++++ .../Models/ApplicationGatewayFirewallRule.cs | 56 ++++++ .../ApplicationGatewayFirewallRuleGroup.cs | 68 +++++++ .../ApplicationGatewayFirewallRuleSet.cs | 88 +++++++++ 7 files changed, 484 insertions(+) create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index eac66811a1e3..a42e9a17a111 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -723,6 +723,182 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// Gets all available web application firewall rule sets. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAvailableWafRuleSets", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Deletes the specified application gateway. /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs index 25972ad8307a..3c37e2e28762 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs @@ -330,6 +330,34 @@ public static void Stop(this IApplicationGatewaysOperations operations, string r } } + /// + /// Gets all available web application firewall rule sets. + /// + /// + /// The operations group for this extension method. + /// + public static ApplicationGatewayAvailableWafRuleSetsResult GetAvailableWafRuleSets(this IApplicationGatewaysOperations operations) + { + return operations.GetAvailableWafRuleSetsAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets all available web application firewall rule sets. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetAvailableWafRuleSetsAsync(this IApplicationGatewaysOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAvailableWafRuleSetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Deletes the specified application gateway. /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs index b91024daec0d..d1673d465aa3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs @@ -215,6 +215,25 @@ public partial interface IApplicationGatewaysOperations /// Task> BackendHealthWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets all available web application firewall rule sets. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Deletes the specified application gateway. /// /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs new file mode 100644 index 000000000000..5a34e78b0eaf --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Response for ApplicationGatewayAvailableWafRuleSets API service call. + /// + public partial class ApplicationGatewayAvailableWafRuleSetsResult + { + /// + /// Initializes a new instance of the + /// ApplicationGatewayAvailableWafRuleSetsResult class. + /// + public ApplicationGatewayAvailableWafRuleSetsResult() { } + + /// + /// Initializes a new instance of the + /// ApplicationGatewayAvailableWafRuleSetsResult class. + /// + /// The list of application gateway rule + /// sets. + public ApplicationGatewayAvailableWafRuleSetsResult(IList value = default(IList)) + { + Value = value; + } + + /// + /// Gets or sets the list of application gateway rule sets. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs new file mode 100644 index 000000000000..cdb517e97dc4 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Linq; + + /// + /// A web application firewall rule. + /// + public partial class ApplicationGatewayFirewallRule + { + /// + /// Initializes a new instance of the ApplicationGatewayFirewallRule + /// class. + /// + public ApplicationGatewayFirewallRule() { } + + /// + /// Initializes a new instance of the ApplicationGatewayFirewallRule + /// class. + /// + /// The identifier of the web application firewall + /// rule. + /// The description of the web application + /// firewall rule. + public ApplicationGatewayFirewallRule(int? ruleId = default(int?), string description = default(string)) + { + RuleId = ruleId; + Description = description; + } + + /// + /// Gets or sets the identifier of the web application firewall rule. + /// + [JsonProperty(PropertyName = "ruleId")] + public int? RuleId { get; set; } + + /// + /// Gets or sets the description of the web application firewall rule. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs new file mode 100644 index 000000000000..daa89f41a263 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A web application firewall rule group. + /// + public partial class ApplicationGatewayFirewallRuleGroup + { + /// + /// Initializes a new instance of the + /// ApplicationGatewayFirewallRuleGroup class. + /// + public ApplicationGatewayFirewallRuleGroup() { } + + /// + /// Initializes a new instance of the + /// ApplicationGatewayFirewallRuleGroup class. + /// + /// The name of the web application + /// firewall rule group. + /// The description of the web application + /// firewall rule group. + /// The rules of the web application firewall rule + /// group. + public ApplicationGatewayFirewallRuleGroup(string ruleGroupName = default(string), string description = default(string), IList rules = default(IList)) + { + RuleGroupName = ruleGroupName; + Description = description; + Rules = rules; + } + + /// + /// Gets or sets the name of the web application firewall rule group. + /// + [JsonProperty(PropertyName = "ruleGroupName")] + public string RuleGroupName { get; set; } + + /// + /// Gets or sets the description of the web application firewall rule + /// group. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Gets or sets the rules of the web application firewall rule group. + /// + [JsonProperty(PropertyName = "rules")] + public IList Rules { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs new file mode 100644 index 000000000000..15bd9c15b359 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A web application firewall rule set. + /// + [JsonTransformation] + public partial class ApplicationGatewayFirewallRuleSet : Resource + { + /// + /// Initializes a new instance of the ApplicationGatewayFirewallRuleSet + /// class. + /// + public ApplicationGatewayFirewallRuleSet() { } + + /// + /// Initializes a new instance of the ApplicationGatewayFirewallRuleSet + /// class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. + /// The provisioning state of the web + /// application firewall rule set. + /// The type of the web application firewall + /// rule set. + /// The version of the web application + /// firewall rule set type. + /// The rule groups of the web application + /// firewall rule set. + public ApplicationGatewayFirewallRuleSet(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string ruleSetType = default(string), string ruleSetVersion = default(string), IList ruleGroups = default(IList)) + : base(id, name, type, location, tags) + { + ProvisioningState = provisioningState; + RuleSetType = ruleSetType; + RuleSetVersion = ruleSetVersion; + RuleGroups = ruleGroups; + } + + /// + /// Gets or sets the provisioning state of the web application firewall + /// rule set. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + /// + /// Gets or sets the type of the web application firewall rule set. + /// + [JsonProperty(PropertyName = "properties.ruleSetType")] + public string RuleSetType { get; set; } + + /// + /// Gets or sets the version of the web application firewall rule set + /// type. + /// + [JsonProperty(PropertyName = "properties.ruleSetVersion")] + public string RuleSetVersion { get; set; } + + /// + /// Gets or sets the rule groups of the web application firewall rule + /// set. + /// + [JsonProperty(PropertyName = "properties.ruleGroups")] + public IList RuleGroups { get; set; } + + } +} + From 1711cbae3f66c8857b2dda471de7c9ab23a43b14 Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 20 Mar 2017 17:03:09 +0000 Subject: [PATCH 106/137] Revert AssemblyVersion to 2.1.0 because there are no breaking changes in this version --- .../Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs index 08c52ec8195a..be0278be1c03 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyTitle("Microsoft Azure Traffic Manager Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Traffic Manager management functions for managing the Microsoft Azure Traffic Manager service.")] -[assembly: AssemblyVersion("2.2.0.0")] +[assembly: AssemblyVersion("2.1.0.0")] [assembly: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] From c056c9d910c0f20b919c4fa725569b7f3ba764c7 Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 20 Mar 2017 17:05:27 +0000 Subject: [PATCH 107/137] Revert AssemblyVersion to 2.0.0 because there are no breaking changes in this version --- .../Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs index be0278be1c03..e07e602f85de 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyTitle("Microsoft Azure Traffic Manager Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Traffic Manager management functions for managing the Microsoft Azure Traffic Manager service.")] -[assembly: AssemblyVersion("2.1.0.0")] +[assembly: AssemblyVersion("2.0.0.0")] [assembly: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] From 83501016bb0744278a7d4a388985c2c37fc80258 Mon Sep 17 00:00:00 2001 From: Jared Moore Date: Mon, 20 Mar 2017 11:37:52 -0700 Subject: [PATCH 108/137] Added license header --- .../SqlManagement/Sql.Tests/BlobAuditingTest.cs | 5 ++++- .../SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs | 5 ++++- .../SqlManagement/Sql.Tests/ThreatDetectionTest.cs | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs index f87fed18b244..67b925da1ccd 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs @@ -1,4 +1,7 @@ -using Microsoft.Azure.Management.Resources; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; using Microsoft.Azure.Test.HttpRecorder; diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs index 656df842052a..eea57b55fd0e 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs @@ -1,4 +1,7 @@ -using Microsoft.Azure.Management.Resources; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; using System; diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs index d85bff000348..17ed223e5d86 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs @@ -1,4 +1,7 @@ -using Microsoft.Azure.Management.Resources; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; using System; From a9e559934aeda3d5d8b0cdf53a4aa106a50ca99a Mon Sep 17 00:00:00 2001 From: Jared Moore Date: Mon, 20 Mar 2017 11:41:16 -0700 Subject: [PATCH 109/137] Removed UpgradeLog.htm --- .../SqlManagement/UpgradeLog.htm | Bin 45212 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/ResourceManagement/SqlManagement/UpgradeLog.htm diff --git a/src/ResourceManagement/SqlManagement/UpgradeLog.htm b/src/ResourceManagement/SqlManagement/UpgradeLog.htm deleted file mode 100644 index 440107e06ed7d9284957287d7a09f346f653ae39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 45212 zcmeI5X>%J#l7{>1Zp8ivSe&uwrFm1-;gK8!Pl+NWkrX9r=$POE9uhAR5HEZ7r|<6b zRLCZD*0rXXsm6e&5nU$4Y_`m=CNAz7Z6TOP2qqS%wdL7M1h3FuvM90xl z^epwN{KqV?)=!{u>~e7YuM@cDP>Ds57J(lbE8BhI^#|$`pn%! z`ma*ciF$+4OJJWw`;^$?x8&*$H*8B(xuV_SuQd3{;dB6$b1)FKo&vK%&jz9FWG1^@Ylo9e^a9fuDd{xq^HNJH{?|4#T)YAQ* zxikuW&(NcyvmL`7f7Y5r1o@Rlyn%Y+<{14vgHo-*tTlqoX2r+eEUox&tL=!#CJTek z8dt#CEMvj-Kosl4l8xSe$GDaiJ)*C>^e&$U_8Ka!MaJODD4I#f)_T(JX!4i^ZeGGk z*(-S-;^+yzK6g6jC?}4c7^z10xV@?#srT^E%r;+uc`3Sdo`5u;e6dsdA)5`vwsAR=wbnEF=LPJEB<~D~JdHlyN~Fe_yZ~AJ{4zOyr!v`j`3bU_ly}KZtG1+5 znz7rm-HgqvAS>p{2^)Fl@*MMxrB=s)W^-nJCAmj@H1o6BljgSajXpVvmOm@`4OT9{ zEN|U`BnSLt-}dlI0qlZYmzK?Rs zy{Dy*(G0>TX@Y$;fX0+0Tk)pWI254DLl@WMu@mo;O4qaoKS)65Em^g-7)P!&o0z;k zCa?4LAioYz%G>T8Xjk*ZSga;`CTy{Bo%eAM+)UF|uDgRQ}eYc)x( zX2+6-Fqf1CYJViw@*>Q-%`w95n|GAwmo|&EyoAHXduamm4+q>y+fyEo)C@HCmpSp$L;5Rva;qi36AE2!bBWM`YKjlQG4^y@1xDa-1k2B zy=GEe-=d`QhOD0MS(L4SAFueMt~CGjapU~n(2&E|X!-J%lHIo$)&5btvCjI^Ig9Mu zXQssw=6N#c;yInO7Wt*W7Pp=t!CnG>56-pf*?L`ApL26)6@4D_X-zkNJDfAUHO+X{ zsJ2*<$4;6g#GHI2*w#usXA6vRi#$oQ>;OUYB%KEhCdm|ZA5GR=zs$$h#LQ=srjSNa zS<^6rp?E;PIl++Yg;vkveNue8`!eY1mbUw%il=TqdC5N#jh}0bJ!#-HrQ`fDex^$V zugNTh#_$(7qj;j8eR6QWV9UdtSgXJ01;^)hHbW8?d80Z*DZIr=Nmchbc!@0U($53u z%WIWjB>H>KG2SZAUPHsM&SZAmujK_x>&KE`liYH%4L@#;>soPXW$g61(PxsX-+UwQ zSI3|KpjLCAYL7Oo(~RBvilf9P{MwD3!O%Lr`k{Ec={$K> zL5ie7btQ=sM>Qh1oEIF*$WPki$z#0LzjMs5^ZJ00Tm^_@dDo+63wUm!34SlV>iY)H%F@Iy0aVn^at?aryf>81~&lDZWD)Y{9{KU;h z_A^V)61UMB$9bw$_c^D`CuJ%H>3f1T(CS&M^LP(Ywk52N2AKKAq#x(Cyz4>erOYB_ zD`*8)bI|0yd@`8bmNJ;M=Hk~xpExCwTHdjA z`3&c_wk{7tV^J|vJxzK!$4&>DAF}OAog&pklzL8SA5{tS6N`?R9aOfD^1Wnt1y_{R zh_p3u#ZNW=@Rrw?l1~+<`JuDc%G)crx{8}9t5N!-z$%6?7fyCA?O~Z?9-ggp?m8V5 zFjg7$SdkXXyUDBHyj&Y?|H&B9=RNR_=7oXn)Y zd;Yb@PwMEqwW$|xOwvYVLpIpRH-d11q3$RD7P$M4^GkkjD8B(TN%$zw7U9PmcvqzE zIp0OjH#nYA=M&>?geN<|d{5aadb&%gF;@AD(Fbr{AzrcqPnA`);XI{}l-{82DOwOF ztN3`AJS`#vC7?|4EmOY&lnw6O@I)TjFy7!e{_Y;+2(oz%&vHL3g-k} znThL;JKMk?0QO5t>``usvobwCrQQ*kZc}oWyNlqz3xt=Hp8@s*+J8a6Kl0>?nvZFH zhMEHo-xuIBLvP3E!Dm|hNZm)Y@CC>d$d0nk7QtAxjyXS|w^vYg622*Gd!Nq*tt?Vk z@TF%S0$~SSo&#kLC~NfNBQ=&e8|ORB?^|eoNzYcf`?^4Qo`y=L#dTDF?^Xu9K1__mUkBTp|aQsAvvv&Wt%@kjS0 zyyPUMwC7RCQ>y0)eXAZt5pA6GD9UL5H7wW$c7GZTSmbvett)#nhsGaAi@rziE}$b9 zurC*A-4|E^%>a(kv9kAv{666K5t@C)m7b%VY>en|h~CzEu55>_nz9Bfz}K4N5$%rg zRPP2YgTV>sk7-}^q?3iq37YwUQuFBiFt�B6y;K?qqIq&Y|2q z6dG}*26(yzwZ>^p9>FZo%HX<;Z4(tQ!RG}qRxgt6H&{Mf(>a)1G5s#o1;}L-~H0LTh@{O|svM*QYT+L}^ zo37FMn%houwS?BzY++DRDfI3eH1L|MDee3MJ$=Z% z4bB&_9WUJRIcE!KTD=K)iRL{*o96tAGS_JHMamp-XPPrv zjQ4IVzj1bP0{b>g4>X(8y!8uqQr?K>h1Yy;=-(;rf8^N>mUS8E1Js$~{s0<5v+OHu z&N`TAO{)yeK4Co`U{zj&(*DvZpih>AJ&BP}u^PHos(I>71Z<01-a}+&00nQgn zya&=LWhy)`LC-hTC_#-;`f}m!El@*GWaZa@F+i)w)DoT*dj1hO*Yu|Xtp)WXc$9di zIFjb|yPPY!@|GvdKz~b}YcSp7d662jb{}c!hG+X6Khxd>6xpJTe5Ut6dqY|K6nU~j zjR#Qm9Gt{SeV*Q-eGDrr-LZ`Ueo_zSvHiXI?O!ue9%QFy6aRQNv4~Dj+r-akV?{9E zqD2)YUqLI*q5CGBt$4@v6!)c-r`+!n8dLKrSvkc6x6z^F*pX?pt>&kS3o1UUd20nN ze~n(>K-+Fnwt^)&baNuTkMoW@Gn6f&pJ%aJhiLkJbnXS#Kw5bR*ouKFVmZr`HK&c= zVxz`r@gX)ut0c!jpTJsPgRf?D>tOYT+Pe<+D798;R~AQe;dhi!4$>k$oT2<2mL;@X<+ec;|CAJIs= zb8G-vG4Y44RmB=~?*=UO_QM5jJ%VcU;9myPHTM+(-=(z^+S%vs9(35J_wo3Ng=P6`q-s61!q`#v zW#bwPXsuHyt~FTI@axk4sMTwYcUy(lh>&k83fNk9sFB_aWf(3>mUREpWzyK{yMN~) zz5brAZ!7Y)F0J3JzKG`b27A2!bM#58^m$!dz77Pf%)zzDV;rL{vw zkI&Oo=8klfYHE~7_XWMC_ju(?Nj~)!gR-#EgSS<_k$}5bxxb`#Lgz87r-%% z*FVAc7qZKYLQ|Ah|0P|D{FKmLdMC~#qgkpLHf9CBW4F9|*nA&-4?eY@4uOO0th|s{ z&YpNIq#YG`(R=63P%keH)3nrR(;A$OIdL(Ij={eg0(;dugY(Lf_E_JCqIomAg;Om& ze&&8s&OAS}@hCX1+U^Z{%Tf7it-?`nvb33}r;gcn(@JKS$$pxJN44fMk5+4_%GWu? zi`O1_qFj>Srd{IND_ci4GhY2jO;X(?tEaze>x8Uv*LnTrIaF)h)z_oh<4*PRj{m#R zqXjgvba8cGyQg83k{|Sz?O&=fsk|9^7aEP)4Ze1^rp?ALt5x$jH4o9wKHe*gd!4mBMjseW-;+K($a0cZC<)fcCu*fTPhGm(%Z?hmh#ZTuE65E zc&8YoIA;9TTv2zD-1g6sa^hzw+L0m5TEb2dNf^yx>-D(h<9iu5TQZDfc#MDhdRB&) zhVu{6Cce=o{nhuM^k|Sc-xR+e;PoJ}&rNe0+O{U-MqYZT$btXg~Kfp0C^r z@VS#MMRt_&VgGxgTIr`ohq0P%rgwm`R<*Wk>rlc|@@K~bcO2%9o!P2b8oSp{&wIZr ztZBt9r`k!D6PAtOY86}=tsc8-h*qL8tdMh8&VUy$)fi?nzdZ|Xx@2S6NvoIzJ6$pk zTNL)Z^hfEfov$92l)YmAMpQv^B^ip^O0Q{sPS@$#Yah8l7S~uo zx@}hltxcUfDX;fTm}{P^W4Z zznQvuBtNd<>tj<}#+$*V^_q7*GMed4Z&dugqayBAv@=5DaK5F{6345ZkrVg5y5~K$ zs@vkd?2V{zXGDoF%CFPx-Yk(;$9+zBr^Z`$E8ps9%*MJ?V>OHZ-=aN?kK}9$^~QN; z#<|Un!i-w0H_vWoO!2#U#!)rQ%^DE9DSy=%^yH;8^5P>e)lnPCP5q~N#4z4crDD@$>5H{JGU(%Q#J@5{#h5yePt$M?q3{B-@*+nT07ldvWI9?Ew}*rVR{Q8Zie4E^`HBHpd8O>6Bg$q#$SBbjFr zf7|OPX9a7=X+!i=XMT;txN2)fI@eBQ)iRXEV~RfRrdC+AY7k#1O4kV)hdzp}SiSZy zk(8-jwVz(KQVb}pK$?}e6#)Oni6~qz#vj%a4tR_DS>1Amfl6pSDoz`%JcKp0dhNtl zidNv6{_)sg)n3y|u81W2sF=O77=(Lz?Q1DPjruE9$#UwQU;7GDU_FadF=%P)gW_P8 z8B?#{zL%}6@`yfKiHKuRubqHd;HY|1e+8r-P1R~rceP`+kT_aYj=s^7SIRERIoZBuRxM#?fE>wke#4B9=$uRnYN8H`@e(aUYvUW>3~woQ?~z? z)Be@^Kc4Ef0M8XZIy#l|8Rq(WmGd{Y%yeZ~u>z`Knbs{R3iBFL`P_ zrBsp67@tvgZJ1%DeT3CN?TkFgJ_3(9j&i2|qtNb>gTS0*X9MkGKEt_c&2cOud1-6v zB{+;qoyGM}dW6)9HN~YcYmFt09n*&Gz-m@ww$sL+U8}Z3n@(%qc5vyYc5Vl++B2SvzZrM<|;q-RYUTa#=Gev7sy8{eW5&v=**zp_^K> zy0u36YP~o~FHTZFPU5vptsFW3PNr#{`X!syKJ_8|*|kvpo_AUs)o-brS}7heu8%>d z{H&}N>ObpwU_B44Sr06kftQ^1S7&G?cO95cYu1l=&-|`P>E1Wip3lhuQpQqN4sQBQ_N+WItuv%E^gMR@=NIKN`t@?{ zr;_ZM`SS5y`1J02G9ND8$0P)muFf{iyH8oGS*G>&XYv#%koTmFv}!t}_mwHv&3N zQ~8a4mSCCK?aTnm&?BCCZhH|a=g;;tRHkmo4Ls-mXQG+fwOb{QIoszv Date: Mon, 20 Mar 2017 21:36:55 +0000 Subject: [PATCH 110/137] Restore copyright header to generated files --- .../Generated/EndpointsOperations.cs | 6 ++++-- .../Generated/EndpointsOperationsExtensions.cs | 6 ++++-- .../Generated/GeographicHierarchiesOperations.cs | 6 ++++-- .../Generated/GeographicHierarchiesOperationsExtensions.cs | 6 ++++-- .../Generated/IEndpointsOperations.cs | 6 ++++-- .../Generated/IGeographicHierarchiesOperations.cs | 6 ++++-- .../Generated/IProfilesOperations.cs | 6 ++++-- .../Generated/ITrafficManagerManagementClient.cs | 7 ++++--- ...kTrafficManagerRelativeDnsNameAvailabilityParameters.cs | 6 ++++-- .../Generated/Models/DnsConfig.cs | 6 ++++-- .../Generated/Models/Endpoint.cs | 6 ++++-- .../Generated/Models/MonitorConfig.cs | 6 ++++-- .../Generated/Models/Page.cs | 6 ++++-- .../Generated/Models/Profile.cs | 6 ++++-- .../Generated/Models/Region.cs | 6 ++++-- .../Generated/Models/Resource.cs | 6 ++++-- .../Generated/Models/TrafficManagerGeographicHierarchy.cs | 6 ++++-- .../Generated/Models/TrafficManagerNameAvailability.cs | 6 ++++-- .../Generated/ProfilesOperations.cs | 6 ++++-- .../Generated/ProfilesOperationsExtensions.cs | 6 ++++-- .../Generated/TrafficManagerManagementClient.cs | 6 ++++-- 21 files changed, 84 insertions(+), 43 deletions(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs index c11f29de1795..ba554f8db7cc 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs index fcff44526e2b..cc1b7759f7f9 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs index 74f6b248548b..9c04ce55f611 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs index fa40ac3d21de..48829a894563 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs index 81d802f0d2ab..82068ae86e03 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs index 242794ab4a4b..30e17dc7d664 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs index f74a6a50f7e7..1ec90c4e2c53 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs index 0545a707b497..ebcdb0d27bbe 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs @@ -1,7 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { using System; diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs index 8559c2416911..c23ca43861ef 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs index 652ba02ae779..4b3ea29c654a 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs index c5c4e8f94561..6a9462b32d6e 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs index 7b8a5a27e85c..a0c48209dbdf 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs index 4fc398a563b6..f23d2075ea6d 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs index 4a2fb9819f6d..dd7e9be5a68b 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs index f537f31c3cc4..094423cb2c56 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs index 75c174eaa7a4..48e099894ad6 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs index 8ed009bdb424..c3b38282d3df 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs index d22f5a70d2ab..88b6333146bc 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs index 1c2034b0ee73..5bd79460ac54 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs index 00e1632c484b..6807ea641474 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs index 6e3c792f3453..79205815fda5 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs @@ -1,6 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// // Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { From a245f838f5c74bd4cb2dead1f7114d48fa3df09b Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Mon, 20 Mar 2017 16:23:19 -0700 Subject: [PATCH 111/137] Using proper rest api spec for 2017-03-01 generation --- .../Models/ExpressRouteCircuitPeering.cs | 24 ++++++------- .../Generated/Models/IpsecPolicy.cs | 34 ++++++++++--------- .../Generated/Models/VirtualNetworkGateway.cs | 12 ++++--- 3 files changed, 37 insertions(+), 33 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs index 6fa656fae80b..d886ee1287cf 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs @@ -57,14 +57,14 @@ public ExpressRouteCircuitPeering() { } /// The GatewayManager Etag. /// Gets whether the provider or the /// customer last modified the peering. - /// The reference of the RouteFilter - /// resource. /// Gets name of the resource that is unique within /// a resource group. This name can be used to access the /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), RouteFilter routeFilter = default(RouteFilter), string name = default(string), string etag = default(string)) + /// The reference of the RouteFilter + /// resource. + public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), string name = default(string), string etag = default(string), RouteFilter routeFilter = default(RouteFilter)) : base(id) { PeeringType = peeringType; @@ -82,9 +82,9 @@ public ExpressRouteCircuitPeering() { } ProvisioningState = provisioningState; GatewayManagerEtag = gatewayManagerEtag; LastModifiedBy = lastModifiedBy; - RouteFilter = routeFilter; Name = name; Etag = etag; + RouteFilter = routeFilter; } /// @@ -183,12 +183,6 @@ public ExpressRouteCircuitPeering() { } [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; set; } - /// - /// Gets or sets the reference of the RouteFilter resource. - /// - [JsonProperty(PropertyName = "properties.routeFilter")] - public RouteFilter RouteFilter { get; set; } - /// /// Gets name of the resource that is unique within a resource group. /// This name can be used to access the resource. @@ -202,7 +196,11 @@ public ExpressRouteCircuitPeering() { } /// [JsonProperty(PropertyName = "etag")] public string Etag { get; protected set; } - + + /// + /// Gets or sets the reference of the RouteFilter resource. + /// + [JsonProperty(PropertyName = "properties.routeFilter")] + public RouteFilter RouteFilter { get; set; } } -} - +} \ No newline at end of file diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs index 57a5642d7e47..e1803527a254 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs @@ -28,21 +28,23 @@ public IpsecPolicy() { } /// /// Initializes a new instance of the IpsecPolicy class. /// - /// The Security Association (SA) - /// lifetime in seconds for a site to site VPN tunnel. - /// The Security Association (SA) - /// payload size in KB for a site to site VPN tunnel. + /// The IPSec Security Association + /// (also called Quick Mode or Phase 2 SA) lifetime in seconds for a + /// site to site VPN tunnel. + /// The IPSec Security Association + /// (also called Quick Mode or Phase 2 SA) payload size in KB for a + /// site to site VPN tunnel. /// The IPSec encryption algorithm (IKE - /// phase 2). Possible values include: 'None', 'DES', 'DES3', 'AES128', + /// phase 1). Possible values include: 'None', 'DES', 'DES3', 'AES128', /// 'AES192', 'AES256', 'GCMAES128', 'GCMAES192', 'GCMAES256' /// The IPSec integrity algorithm (IKE - /// phase 2). Possible values include: 'MD5', 'SHA1', 'SHA256', + /// phase 1). Possible values include: 'MD5', 'SHA1', 'SHA256', /// 'GCMAES128', 'GCMAES192', 'GCMAES256' /// The IKE encryption algorithm (IKE phase - /// 1). Possible values include: 'DES', 'DES3', 'AES128', 'AES192', + /// 2). Possible values include: 'DES', 'DES3', 'AES128', 'AES192', /// 'AES256' /// The IKE integrity algorithm (IKE phase - /// 1). Possible values include: 'MD5', 'SHA1', 'SHA256', + /// 2). Possible values include: 'MD5', 'SHA1', 'SHA256', /// 'SHA384' /// The DH Groups used in IKE Phase 1 for initial /// SA. Possible values include: 'None', 'DHGroup1', 'DHGroup2', @@ -63,21 +65,21 @@ public IpsecPolicy(int saLifeTimeSeconds, int saDataSizeKilobytes, string ipsecE } /// - /// Gets or sets the Security Association (SA) lifetime in seconds for - /// a site to site VPN tunnel. + /// Gets or sets the IPSec Security Association (also called Quick Mode + /// or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel. /// [JsonProperty(PropertyName = "saLifeTimeSeconds")] public int SaLifeTimeSeconds { get; set; } /// - /// Gets or sets the Security Association (SA) payload size in KB for a - /// site to site VPN tunnel. + /// Gets or sets the IPSec Security Association (also called Quick Mode + /// or Phase 2 SA) payload size in KB for a site to site VPN tunnel. /// [JsonProperty(PropertyName = "saDataSizeKilobytes")] public int SaDataSizeKilobytes { get; set; } /// - /// Gets or sets the IPSec encryption algorithm (IKE phase 2). Possible + /// Gets or sets the IPSec encryption algorithm (IKE phase 1). Possible /// values include: 'None', 'DES', 'DES3', 'AES128', 'AES192', /// 'AES256', 'GCMAES128', 'GCMAES192', 'GCMAES256' /// @@ -85,7 +87,7 @@ public IpsecPolicy(int saLifeTimeSeconds, int saDataSizeKilobytes, string ipsecE public string IpsecEncryption { get; set; } /// - /// Gets or sets the IPSec integrity algorithm (IKE phase 2). Possible + /// Gets or sets the IPSec integrity algorithm (IKE phase 1). Possible /// values include: 'MD5', 'SHA1', 'SHA256', 'GCMAES128', 'GCMAES192', /// 'GCMAES256' /// @@ -93,14 +95,14 @@ public IpsecPolicy(int saLifeTimeSeconds, int saDataSizeKilobytes, string ipsecE public string IpsecIntegrity { get; set; } /// - /// Gets or sets the IKE encryption algorithm (IKE phase 1). Possible + /// Gets or sets the IKE encryption algorithm (IKE phase 2). Possible /// values include: 'DES', 'DES3', 'AES128', 'AES192', 'AES256' /// [JsonProperty(PropertyName = "ikeEncryption")] public string IkeEncryption { get; set; } /// - /// Gets or sets the IKE integrity algorithm (IKE phase 1). Possible + /// Gets or sets the IKE integrity algorithm (IKE phase 2). Possible /// values include: 'MD5', 'SHA1', 'SHA256', 'SHA384' /// [JsonProperty(PropertyName = "ikeIntegrity")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs index fd24da61dcb0..ec6849f3713a 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs @@ -37,14 +37,14 @@ public VirtualNetworkGateway() { } /// The type of this virtual network gateway. /// Possible values are: 'Vpn' and 'ExpressRoute'. Possible values /// include: 'Vpn', 'ExpressRoute' + /// The type of this virtual network gateway. + /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible + /// values include: 'PolicyBased', 'RouteBased' /// Resource ID. /// Resource name. /// Resource type. /// Resource location. /// Resource tags. - /// The type of this virtual network gateway. - /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible - /// values include: 'PolicyBased', 'RouteBased' /// Whether BGP is enabled for this virtual /// network gateway or not. /// ActiveActive flag @@ -67,7 +67,7 @@ public VirtualNetworkGateway() { } /// 'Deleting', and 'Failed'. /// Gets a unique read-only string that changes /// whenever the resource is updated. - public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string vpnType = default(string), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string vpnType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { IpConfigurations = ipConfigurations; @@ -184,6 +184,10 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "GatewayType"); } + if (VpnType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "VpnType"); + } if (IpConfigurations != null) { foreach (var element in IpConfigurations) From 8aeba43c5391b3598df6b531136178b28d761fe5 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 20 Mar 2017 18:44:41 -0700 Subject: [PATCH 112/137] #WAF Added web application firewall related tests and rerecorded agw tests. --- .../ApplicationGatewayApiTest.json | 2468 ++++++----------- .../Tests/ApplicationGatewayTests.cs | 96 +- 2 files changed, 864 insertions(+), 1700 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 0efc306131f2..a31a2c72432a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg1399?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnMTM5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg7667?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnNzY2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "29" ], "x-ms-client-request-id": [ - "d2f3b90b-36c3-482b-9ad0-2a43568bd99c" + "1cc41b83-f589-41ec-86af-5ab5b9f93a6c" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399\",\r\n \"name\": \"csmrg1399\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667\",\r\n \"name\": \"csmrg7667\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:05:16 GMT" + "Mon, 20 Mar 2017 18:28:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" + "374be73c-c3d4-4572-a8a5-f19dbeaafe1b" ], "x-ms-correlation-request-id": [ - "d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" + "374be73c-c3d4-4572-a8a5-f19dbeaafe1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060517Z:d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" + "WESTUS2:20170320T182810Z:374be73c-c3d4-4572-a8a5-f19dbeaafe1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,10 +62,10 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet2045\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3830\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "530" ], "x-ms-client-request-id": [ - "3fdc6888-46a0-403a-985e-1c7af6ee12ee" + "bfeaadb1-4d53-47f7-992a-92cc59f2c072" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1495" @@ -99,7 +99,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:05:25 GMT" + "Mon, 20 Mar 2017 18:28:11 GMT" ], "Pragma": [ "no-cache" @@ -112,35 +112,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "71222849-9014-4ff9-9246-f27a40349b03" + "698b709a-65ad-41d4-8e15-8b288e49d56b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/698b709a-65ad-41d4-8e15-8b288e49d56b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "721da15b-1fb1-4e31-aaf4-d15b7e24da03" + "5510930c-627b-4bb4-bcc1-79a308647b34" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060525Z:721da15b-1fb1-4e31-aaf4-d15b7e24da03" + "WESTUS2:20170320T182812Z:5510930c-627b-4bb4-bcc1-79a308647b34" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/698b709a-65ad-41d4-8e15-8b288e49d56b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82OThiNzA5YS02NWFkLTQxZDQtOGUxNS04YjI4OGU0OWQ1NmI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -155,7 +155,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:05:55 GMT" + "Mon, 20 Mar 2017 18:28:41 GMT" ], "Pragma": [ "no-cache" @@ -171,35 +171,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fef3bf8d-a7a9-4538-8f18-607ccf8bff00" + "d3544c15-586a-4c3b-954e-74160aa1f80d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14970" ], "x-ms-correlation-request-id": [ - "a3bfea55-e664-4b7a-8a28-69d0d52c218b" + "0a86abd0-3cb5-49bb-94a8-033e45ccc461" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060555Z:a3bfea55-e664-4b7a-8a28-69d0d52c218b" + "WESTUS2:20170320T182842Z:0a86abd0-3cb5-49bb-94a8-033e45ccc461" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -211,7 +211,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:05:55 GMT" + "Mon, 20 Mar 2017 18:28:41 GMT" ], "Pragma": [ "no-cache" @@ -220,7 +220,7 @@ "chunked" ], "ETag": [ - "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" + "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -230,41 +230,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "76396307-58ac-433d-8db8-a9dd6f67f9bc" + "373e11bb-13a5-45c9-b18c-b951f822f914" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14969" ], "x-ms-correlation-request-id": [ - "81180793-4f56-45fd-86d6-da679dd60d04" + "a8deb92c-358f-4efe-88e3-f61c1ee1bee1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060555Z:81180793-4f56-45fd-86d6-da679dd60d04" + "WESTUS2:20170320T182842Z:a8deb92c-358f-4efe-88e3-f61c1ee1bee1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abac72f6-7a67-4f8c-9040-7dbad7838019" + "3cdf7a4a-483f-489f-a753-e085e71c56e7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:06:28 GMT" + "Mon, 20 Mar 2017 18:28:42 GMT" ], "Pragma": [ "no-cache" @@ -285,7 +285,7 @@ "chunked" ], "ETag": [ - "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" + "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -295,41 +295,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3dba8b2e-907e-43c4-82b6-a8fe9f66f005" + "3645bdf4-701d-49f1-9ce8-8c211069b113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14968" ], "x-ms-correlation-request-id": [ - "8d65d120-7954-4a81-ab79-53122e6375a7" + "97ef57e6-0378-4a96-b715-89a69df8432c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060628Z:8d65d120-7954-4a81-ab79-53122e6375a7" + "WESTUS2:20170320T182842Z:97ef57e6-0378-4a96-b715-89a69df8432c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzL3N1Ym5ldHMvYXpzbW5ldDIwNDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35b1dd89-126b-4e5c-95a4-48af265ad9fd" + "0f33ee02-4da3-4d15-b91f-47ea9b237ac9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -341,7 +341,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:06:29 GMT" + "Mon, 20 Mar 2017 18:28:42 GMT" ], "Pragma": [ "no-cache" @@ -350,7 +350,7 @@ "chunked" ], "ETag": [ - "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" + "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -360,50 +360,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0d00b048-5830-45d0-bc8a-b9aac817699c" + "2bc05fd8-7008-471c-a6f5-197e610333da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14967" ], "x-ms-correlation-request-id": [ - "b6a45196-27dc-4e45-8852-eee72b5c6ae5" + "8d97b74a-0f67-4b40-b188-3a8cdc923d7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060629Z:b6a45196-27dc-4e45-8852-eee72b5c6ae5" + "WESTUS2:20170320T182842Z:8d97b74a-0f67-4b40-b188-3a8cdc923d7c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n },\r\n \"name\": \"azsmnet790\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet2995\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n },\r\n \"name\": \"azsmnet6486\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet5694\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet57\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet4411\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet1047\"\r\n },\r\n {\r\n \"name\": \"azsmnet2873\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet4293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet8504\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet2535\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet1579\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n },\r\n \"name\": \"azsmnet129\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n },\r\n \"name\": \"azsmnet3623\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "7291" + "7528" ], "x-ms-client-request-id": [ - "e2394a38-e3d2-484d-bc43-9524b4c4d6e6" + "0417e481-0641-47d6-8736-8f017fbf46a8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "15222" + "15452" ], "Content-Type": [ "application/json; charset=utf-8" @@ -415,7 +415,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:06:33 GMT" + "Mon, 20 Mar 2017 18:28:42 GMT" ], "Pragma": [ "no-cache" @@ -428,35 +428,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8248159d-4703-478e-a374-caf55cf6018e" + "88e5a493-f938-4a9c-9319-e1465ab17d5e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "8bc80e2d-9764-416f-a803-dcb8504ec49e" + "6f644e0d-1175-4350-b163-7b8e662d0aa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060633Z:8bc80e2d-9764-416f-a803-dcb8504ec49e" + "WESTUS2:20170320T182843Z:6f644e0d-1175-4350-b163-7b8e662d0aa6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -471,7 +471,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:07:14 GMT" + "Mon, 20 Mar 2017 18:29:13 GMT" ], "Pragma": [ "no-cache" @@ -490,32 +490,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0cbaaef0-3a4d-4cb9-bd1e-2b03b584f103" + "af46dfe3-0808-4087-a2aa-547603d3da8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14966" ], "x-ms-correlation-request-id": [ - "833e5df5-7b8d-4a48-bb4a-0acc6beec7ed" + "03209232-d362-4a88-ad8a-16234e1a2ad2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060714Z:833e5df5-7b8d-4a48-bb4a-0acc6beec7ed" + "WESTUS2:20170320T182913Z:03209232-d362-4a88-ad8a-16234e1a2ad2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -530,7 +530,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:07:44 GMT" + "Mon, 20 Mar 2017 18:29:43 GMT" ], "Pragma": [ "no-cache" @@ -549,32 +549,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c71fdb82-875c-40f3-9c38-d25e6ae0278a" + "abbdcf5e-1d6a-4353-97ec-23fff1f0e560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14965" ], "x-ms-correlation-request-id": [ - "4b449db4-455f-457f-bbcc-eb049687ac8b" + "4301223a-2fc2-48f3-86d8-599cc195a9a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060745Z:4b449db4-455f-457f-bbcc-eb049687ac8b" + "WESTUS2:20170320T182944Z:4301223a-2fc2-48f3-86d8-599cc195a9a0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -589,7 +589,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:08:14 GMT" + "Mon, 20 Mar 2017 18:30:13 GMT" ], "Pragma": [ "no-cache" @@ -608,32 +608,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "82d0465a-fb2d-40cf-8a29-c0cbcd5d5307" + "029003db-d5c4-42b0-8256-69341d71f095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14964" ], "x-ms-correlation-request-id": [ - "c424b1f7-1caa-4b50-8979-cef6ba6ef87a" + "25a30940-e82d-4d04-aeeb-8d7aed4b0d9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060815Z:c424b1f7-1caa-4b50-8979-cef6ba6ef87a" + "WESTUS2:20170320T183014Z:25a30940-e82d-4d04-aeeb-8d7aed4b0d9e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -648,7 +648,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:08:44 GMT" + "Mon, 20 Mar 2017 18:30:43 GMT" ], "Pragma": [ "no-cache" @@ -667,32 +667,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "217865fb-2d85-4c08-9375-5e1569da6003" + "49ae3c34-cac9-4dd2-a883-fa97c49a991e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14963" ], "x-ms-correlation-request-id": [ - "f5e700da-94d7-48aa-9fd8-c71c5c57c044" + "3533479e-63bc-441d-9005-690daf926571" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060845Z:f5e700da-94d7-48aa-9fd8-c71c5c57c044" + "WESTUS2:20170320T183044Z:3533479e-63bc-441d-9005-690daf926571" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -707,7 +707,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:09:15 GMT" + "Mon, 20 Mar 2017 18:31:13 GMT" ], "Pragma": [ "no-cache" @@ -726,32 +726,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "75c20090-ffc4-4eae-bb86-91b6acc218da" + "bc0c7229-974d-4e0a-ab7b-bb1d4d3fd69d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14962" ], "x-ms-correlation-request-id": [ - "9d0dc019-1fd1-403c-b2f0-9602f76c5e19" + "e3831d8a-476f-45ae-92b5-37462c03b150" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060916Z:9d0dc019-1fd1-403c-b2f0-9602f76c5e19" + "WESTUS2:20170320T183114Z:e3831d8a-476f-45ae-92b5-37462c03b150" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -766,7 +766,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:09:45 GMT" + "Mon, 20 Mar 2017 18:31:44 GMT" ], "Pragma": [ "no-cache" @@ -785,32 +785,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d4a38a06-2926-4450-b939-fe42d2245037" + "d0488317-6c73-4806-a8a6-3f88bb94f90c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14961" ], "x-ms-correlation-request-id": [ - "fee4f667-3ae4-4c67-9f5d-346e72c65f63" + "1084f2bc-d27b-49ab-bbec-2f0535e9d188" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060946Z:fee4f667-3ae4-4c67-9f5d-346e72c65f63" + "WESTUS2:20170320T183145Z:1084f2bc-d27b-49ab-bbec-2f0535e9d188" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -825,7 +825,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:10:15 GMT" + "Mon, 20 Mar 2017 18:32:14 GMT" ], "Pragma": [ "no-cache" @@ -844,32 +844,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5c1bdd26-2aa4-4a38-91e8-375a0ecc8fc2" + "d0fb25f8-c2c5-433e-8461-e23c2a4aa8a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14960" ], "x-ms-correlation-request-id": [ - "0a8bcab8-56a9-4192-9565-6ea59e008862" + "a8cf075a-424f-434b-8550-716c9b82dc4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061016Z:0a8bcab8-56a9-4192-9565-6ea59e008862" + "WESTUS2:20170320T183215Z:a8cf075a-424f-434b-8550-716c9b82dc4c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -884,7 +884,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:10:46 GMT" + "Mon, 20 Mar 2017 18:32:44 GMT" ], "Pragma": [ "no-cache" @@ -903,32 +903,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7187bf34-8b72-4e68-bdc7-3ae9e83eef28" + "a3d996e2-a94a-4a74-8600-a188658e8a3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14959" ], "x-ms-correlation-request-id": [ - "7e8a394e-efa5-4dc9-be63-d4d29fbf4cbb" + "472e4769-f8eb-4293-bc77-fb7e9d429fc8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061046Z:7e8a394e-efa5-4dc9-be63-d4d29fbf4cbb" + "WESTUS2:20170320T183245Z:472e4769-f8eb-4293-bc77-fb7e9d429fc8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -943,7 +943,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:11:16 GMT" + "Mon, 20 Mar 2017 18:33:15 GMT" ], "Pragma": [ "no-cache" @@ -962,32 +962,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bb0a4cc7-b9e3-41f2-aecb-b621784eceee" + "75486a68-d683-4ef3-ba05-c396e56507d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14958" ], "x-ms-correlation-request-id": [ - "ddc4d1e4-7afd-41c7-8cf8-18c39f2f100a" + "d0ce09a3-bf50-4736-8c75-4ed80f232171" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061117Z:ddc4d1e4-7afd-41c7-8cf8-18c39f2f100a" + "WESTUS2:20170320T183315Z:d0ce09a3-bf50-4736-8c75-4ed80f232171" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:11:46 GMT" + "Mon, 20 Mar 2017 18:33:45 GMT" ], "Pragma": [ "no-cache" @@ -1021,32 +1021,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3769f175-65fb-429b-b191-2748f21721fb" + "dc6d9c68-e837-4c38-9fc7-b3ff9ccaf0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14957" ], "x-ms-correlation-request-id": [ - "62b24489-9a61-4fec-80cb-f1c95dcdc1a8" + "315bb53e-269c-491c-b1df-4efdf0844bdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061147Z:62b24489-9a61-4fec-80cb-f1c95dcdc1a8" + "WESTUS2:20170320T183345Z:315bb53e-269c-491c-b1df-4efdf0844bdb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1061,7 +1061,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:12:17 GMT" + "Mon, 20 Mar 2017 18:34:15 GMT" ], "Pragma": [ "no-cache" @@ -1080,32 +1080,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cc600879-2929-41dd-a1bd-7f7c796e88b6" + "a9566ce8-f323-4fca-8dd3-134e1af168a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14956" ], "x-ms-correlation-request-id": [ - "b41b615f-40c2-40d0-8f4c-05bf0ed44e1c" + "0a63d531-525a-4b42-88b7-7b9701322187" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061217Z:b41b615f-40c2-40d0-8f4c-05bf0ed44e1c" + "WESTUS2:20170320T183416Z:0a63d531-525a-4b42-88b7-7b9701322187" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1120,7 +1120,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:12:47 GMT" + "Mon, 20 Mar 2017 18:34:46 GMT" ], "Pragma": [ "no-cache" @@ -1139,32 +1139,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d3ab99e1-5468-445b-ada5-01054f23c04a" + "259b41d7-ed6c-47b8-8c0d-fbc170fafb80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14955" ], "x-ms-correlation-request-id": [ - "4b7c2895-b1af-4628-9e52-f8988f7dc243" + "fd24f3c3-0c0d-44aa-a925-58b16e34ee39" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061248Z:4b7c2895-b1af-4628-9e52-f8988f7dc243" + "WESTUS2:20170320T183446Z:fd24f3c3-0c0d-44aa-a925-58b16e34ee39" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1179,7 +1179,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:13:17 GMT" + "Mon, 20 Mar 2017 18:35:16 GMT" ], "Pragma": [ "no-cache" @@ -1198,32 +1198,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "889edc54-25fb-4cba-8344-29a8301154df" + "5aedb890-15ae-48e7-bc7a-42b7355430ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14954" ], "x-ms-correlation-request-id": [ - "00d78a52-a792-4f13-9f14-71126cbf0b8e" + "7e11adaf-357f-4b87-b9d8-5cc3aa82ced3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061318Z:00d78a52-a792-4f13-9f14-71126cbf0b8e" + "WESTUS2:20170320T183516Z:7e11adaf-357f-4b87-b9d8-5cc3aa82ced3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1238,7 +1238,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:13:48 GMT" + "Mon, 20 Mar 2017 18:35:46 GMT" ], "Pragma": [ "no-cache" @@ -1257,32 +1257,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4b5fa86b-b4eb-47de-951d-ab60bfa97e85" + "96ee560e-ab2d-417c-9058-f2c9287668bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14953" ], "x-ms-correlation-request-id": [ - "346f0b4c-d126-4926-b6df-c7dd5e92c19e" + "c31bd90d-743d-4ebb-aec2-0929c44b136f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061348Z:346f0b4c-d126-4926-b6df-c7dd5e92c19e" + "WESTUS2:20170320T183547Z:c31bd90d-743d-4ebb-aec2-0929c44b136f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1297,7 +1297,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:14:18 GMT" + "Mon, 20 Mar 2017 18:36:16 GMT" ], "Pragma": [ "no-cache" @@ -1316,32 +1316,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "074f0b39-19de-4281-9ee9-11faca2a6bde" + "b3e1cab2-beb5-4648-a1ca-d26d0be9c035" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14952" ], "x-ms-correlation-request-id": [ - "b74fbae6-38bd-4956-8ff0-9fdee973c3b5" + "b0524977-b267-4708-8fcd-bad494f55fd4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061419Z:b74fbae6-38bd-4956-8ff0-9fdee973c3b5" + "WESTUS2:20170320T183617Z:b0524977-b267-4708-8fcd-bad494f55fd4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1356,7 +1356,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:14:48 GMT" + "Mon, 20 Mar 2017 18:36:47 GMT" ], "Pragma": [ "no-cache" @@ -1375,32 +1375,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "71732e8e-9282-47cd-89b9-940e023c7711" + "3d035c12-f6a8-46ba-bbc8-420ef545a8c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14951" ], "x-ms-correlation-request-id": [ - "64dc5351-2768-40ef-9c2e-a87ec4864dd3" + "d4976d95-53cf-4e23-b2e1-89e775ff98f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061449Z:64dc5351-2768-40ef-9c2e-a87ec4864dd3" + "WESTUS2:20170320T183648Z:d4976d95-53cf-4e23-b2e1-89e775ff98f8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1415,7 +1415,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:15:19 GMT" + "Mon, 20 Mar 2017 18:37:17 GMT" ], "Pragma": [ "no-cache" @@ -1434,32 +1434,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92f9d80e-7a81-4674-999f-515aab0638a5" + "c61e3129-f6ed-4c53-8f48-d0b368131bc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14950" ], "x-ms-correlation-request-id": [ - "4df38055-0e63-4195-8d24-270c923786e2" + "effbbf7e-366e-4c6c-8410-672b37f72ca1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061519Z:4df38055-0e63-4195-8d24-270c923786e2" + "WESTUS2:20170320T183718Z:effbbf7e-366e-4c6c-8410-672b37f72ca1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1474,7 +1474,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:15:49 GMT" + "Mon, 20 Mar 2017 18:37:48 GMT" ], "Pragma": [ "no-cache" @@ -1493,32 +1493,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "34f28e15-7e87-46b6-a2c4-3fcb86afd325" + "f6fac953-1972-435a-9745-e24d7c5f4494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14949" ], "x-ms-correlation-request-id": [ - "33848f38-a9b0-4897-bc36-102a830e68e5" + "afc936c8-906b-4c7b-b7e2-3369f1e31e2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061550Z:33848f38-a9b0-4897-bc36-102a830e68e5" + "WESTUS2:20170320T183748Z:afc936c8-906b-4c7b-b7e2-3369f1e31e2d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1533,7 +1533,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:16:20 GMT" + "Mon, 20 Mar 2017 18:38:18 GMT" ], "Pragma": [ "no-cache" @@ -1552,32 +1552,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "39d7d8a3-e7b4-44b9-8280-37a9bf87d5ce" + "94366163-0125-416d-a290-e9975591d291" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14948" ], "x-ms-correlation-request-id": [ - "3a925edc-6ebf-40c5-a8d0-605aacb99182" + "f78b0a9e-8cf1-4b0a-a846-6d97cab0682e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061620Z:3a925edc-6ebf-40c5-a8d0-605aacb99182" + "WESTUS2:20170320T183818Z:f78b0a9e-8cf1-4b0a-a846-6d97cab0682e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1592,7 +1592,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:16:50 GMT" + "Mon, 20 Mar 2017 18:38:48 GMT" ], "Pragma": [ "no-cache" @@ -1611,32 +1611,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0741b92a-2d00-4b69-951d-e9e8cc42eaed" + "8542d0bd-c091-4285-b200-1a97e940df31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14947" ], "x-ms-correlation-request-id": [ - "a7c0de83-ace9-43d7-bc73-308ebfa35b85" + "cb3354de-11c6-41db-9284-70e75ae7c709" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061650Z:a7c0de83-ace9-43d7-bc73-308ebfa35b85" + "WESTUS2:20170320T183848Z:cb3354de-11c6-41db-9284-70e75ae7c709" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1651,7 +1651,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:17:20 GMT" + "Mon, 20 Mar 2017 18:39:18 GMT" ], "Pragma": [ "no-cache" @@ -1670,35 +1670,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cd2a13b2-92cf-4060-81c2-159969eb0818" + "34fb2f43-2095-42ea-804c-3b6bc4014eee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14946" ], "x-ms-correlation-request-id": [ - "8c4eb7a1-66d3-4035-bc47-07c013620038" + "12c98d13-a2b9-4850-8184-7b0ead542237" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061720Z:8c4eb7a1-66d3-4035-bc47-07c013620038" + "WESTUS2:20170320T183919Z:12c98d13-a2b9-4850-8184-7b0ead542237" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1710,7 +1710,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:17:50 GMT" + "Mon, 20 Mar 2017 18:39:49 GMT" ], "Pragma": [ "no-cache" @@ -1718,9 +1718,6 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1729,35 +1726,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fa4338b0-f756-4bc1-9af4-ecd64a7c240c" + "94eae946-eaba-41f9-8c22-5fc468bcd2d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14945" ], "x-ms-correlation-request-id": [ - "a8c056ca-ec66-476c-ac83-01e22fc9e4ac" + "c63c15a5-e15b-49c2-bedc-4f3f60984534" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061751Z:a8c056ca-ec66-476c-ac83-01e22fc9e4ac" + "WESTUS2:20170320T183949Z:c63c15a5-e15b-49c2-bedc-4f3f60984534" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1769,7 +1766,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:18:21 GMT" + "Mon, 20 Mar 2017 18:39:49 GMT" ], "Pragma": [ "no-cache" @@ -1777,8 +1774,8 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"0cdab41d-75f6-49e8-826e-0ffeec80865e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1788,35 +1785,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "383b373f-127e-4bc5-b3c8-f6b655486c91" + "2365205a-72c2-476a-95ca-35927681b0b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14944" ], "x-ms-correlation-request-id": [ - "056520b7-d369-4326-beaf-9fc81b1b437a" + "93bf33b7-5a6c-4790-954a-694b5362bd08" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061821Z:056520b7-d369-4326-beaf-9fc81b1b437a" + "WESTUS2:20170320T183949Z:93bf33b7-5a6c-4790-954a-694b5362bd08" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8403b1e1-b8aa-40a9-a17d-6a20f0d28f99" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1828,7 +1831,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:18:51 GMT" + "Mon, 20 Mar 2017 18:39:49 GMT" ], "Pragma": [ "no-cache" @@ -1836,8 +1839,8 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"0cdab41d-75f6-49e8-826e-0ffeec80865e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1847,35 +1850,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f5013689-116c-4b24-a80b-29eb28469028" + "851b19a5-2815-4d34-96a3-f6070c57461e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14943" ], "x-ms-correlation-request-id": [ - "a6382ecf-ac7d-4f23-80f7-ec46de3b3265" + "975e765a-5e66-46d2-a453-6b471a29e52e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061851Z:a6382ecf-ac7d-4f23-80f7-ec46de3b3265" + "WESTUS2:20170320T183949Z:975e765a-5e66-46d2-a453-6b471a29e52e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f1bf7ea9-a8c0-4a7b-903d-717ec5447541" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1887,7 +1896,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:19:21 GMT" + "Mon, 20 Mar 2017 18:48:29 GMT" ], "Pragma": [ "no-cache" @@ -1895,8 +1904,8 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1906,36 +1915,45 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "877effb3-2733-4be8-9169-69d6985a9d9a" + "d673d73a-92ae-4b3a-9d6c-02264209cd0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14918" ], "x-ms-correlation-request-id": [ - "1ae17592-ac56-4a8f-8b18-e68e800d6d41" + "df5d74c4-9225-49c4-8482-a14d76b966a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061921Z:1ae17592-ac56-4a8f-8b18-e68e800d6d41" + "WESTUS2:20170320T184829Z:df5d74c4-9225-49c4-8482-a14d76b966a9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ed9426ad-82d7-4aa1-be55-a759346589cf" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { + "Content-Length": [ + "4" + ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -1946,13 +1964,13 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:19:51 GMT" + "Mon, 20 Mar 2017 18:39:49 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1961,39 +1979,36 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "57230833-a2f2-492c-aac1-1c76e94582db" + "b6b485d2-d161-4ebe-8012-f412458d37f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "66b5adaa-4867-4942-a36d-7b34c63b9a1c" + "c98de22d-d022-4587-b2d0-e6c4e9ee6f6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061952Z:66b5adaa-4867-4942-a36d-7b34c63b9a1c" + "WESTUS2:20170320T183950Z:c98de22d-d022-4587-b2d0-e6c4e9ee6f6c" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9iNmI0ODVkMi1kMTYxLTRlYmUtODAxMi1mNDEyNDU4ZDM3Zjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Partial\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Partial\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2005,7 +2020,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:20:22 GMT" + "Mon, 20 Mar 2017 18:40:20 GMT" ], "Pragma": [ "no-cache" @@ -2013,6 +2028,9 @@ "Transfer-Encoding": [ "chunked" ], + "Location": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2021,35 +2039,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aa569cb5-cf89-494b-bc4f-0d07bc82ae4b" + "b6b485d2-d161-4ebe-8012-f412458d37f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14942" ], "x-ms-correlation-request-id": [ - "0edff2ea-98a5-4214-bef7-10bd029ba9cb" + "c20ae109-f4fa-4cca-9f55-8d76d829f9e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T062022Z:0edff2ea-98a5-4214-bef7-10bd029ba9cb" + "WESTUS2:20170320T184020Z:c20ae109-f4fa-4cca-9f55-8d76d829f9e0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlBdmFpbGFibGVXYWZSdWxlU2V0cz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1bf825d3-2576-4343-b0ad-408c3bca4759" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"OWASP_3.0\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"3.0\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"REQUEST-910-IP-REPUTATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 910011,\r\n \"description\": \"Rule 910011\"\r\n },\r\n {\r\n \"ruleId\": 910012,\r\n \"description\": \"Rule 910012\"\r\n },\r\n {\r\n \"ruleId\": 910000,\r\n \"description\": \"Request from Known Malicious Client (Based on previous traffic violations).\"\r\n },\r\n {\r\n \"ruleId\": 910100,\r\n \"description\": \"Client IP is from a HIGH Risk Country Location.\"\r\n },\r\n {\r\n \"ruleId\": 910120,\r\n \"description\": \"Rule 910120\"\r\n },\r\n {\r\n \"ruleId\": 910130,\r\n \"description\": \"Rule 910130\"\r\n },\r\n {\r\n \"ruleId\": 910150,\r\n \"description\": \"HTTP Blacklist match for search engine IP\"\r\n },\r\n {\r\n \"ruleId\": 910160,\r\n \"description\": \"HTTP Blacklist match for spammer IP\"\r\n },\r\n {\r\n \"ruleId\": 910170,\r\n \"description\": \"HTTP Blacklist match for suspicious IP\"\r\n },\r\n {\r\n \"ruleId\": 910180,\r\n \"description\": \"HTTP Blacklist match for harvester IP\"\r\n },\r\n {\r\n \"ruleId\": 910013,\r\n \"description\": \"Rule 910013\"\r\n },\r\n {\r\n \"ruleId\": 910014,\r\n \"description\": \"Rule 910014\"\r\n },\r\n {\r\n \"ruleId\": 910015,\r\n \"description\": \"Rule 910015\"\r\n },\r\n {\r\n \"ruleId\": 910016,\r\n \"description\": \"Rule 910016\"\r\n },\r\n {\r\n \"ruleId\": 910017,\r\n \"description\": \"Rule 910017\"\r\n },\r\n {\r\n \"ruleId\": 910018,\r\n \"description\": \"Rule 910018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-911-METHOD-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 911011,\r\n \"description\": \"Rule 911011\"\r\n },\r\n {\r\n \"ruleId\": 911012,\r\n \"description\": \"Rule 911012\"\r\n },\r\n {\r\n \"ruleId\": 911100,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 911013,\r\n \"description\": \"Rule 911013\"\r\n },\r\n {\r\n \"ruleId\": 911014,\r\n \"description\": \"Rule 911014\"\r\n },\r\n {\r\n \"ruleId\": 911015,\r\n \"description\": \"Rule 911015\"\r\n },\r\n {\r\n \"ruleId\": 911016,\r\n \"description\": \"Rule 911016\"\r\n },\r\n {\r\n \"ruleId\": 911017,\r\n \"description\": \"Rule 911017\"\r\n },\r\n {\r\n \"ruleId\": 911018,\r\n \"description\": \"Rule 911018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-912-DOS-PROTECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 912100,\r\n \"description\": \"Rule 912100\"\r\n },\r\n {\r\n \"ruleId\": 912012,\r\n \"description\": \"Rule 912012\"\r\n },\r\n {\r\n \"ruleId\": 912120,\r\n \"description\": \"Denial of Service (DoS) attack identified from %{tx.real_ip} (%{tx.dos_block_counter} hits since last alert)\"\r\n },\r\n {\r\n \"ruleId\": 912130,\r\n \"description\": \"Rule 912130\"\r\n },\r\n {\r\n \"ruleId\": 912140,\r\n \"description\": \"Rule 912140\"\r\n },\r\n {\r\n \"ruleId\": 912150,\r\n \"description\": \"Rule 912150\"\r\n },\r\n {\r\n \"ruleId\": 912160,\r\n \"description\": \"Rule 912160\"\r\n },\r\n {\r\n \"ruleId\": 912170,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912013,\r\n \"description\": \"Rule 912013\"\r\n },\r\n {\r\n \"ruleId\": 912014,\r\n \"description\": \"Rule 912014\"\r\n },\r\n {\r\n \"ruleId\": 912019,\r\n \"description\": \"Rule 912019\"\r\n },\r\n {\r\n \"ruleId\": 912171,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912015,\r\n \"description\": \"Rule 912015\"\r\n },\r\n {\r\n \"ruleId\": 912016,\r\n \"description\": \"Rule 912016\"\r\n },\r\n {\r\n \"ruleId\": 912017,\r\n \"description\": \"Rule 912017\"\r\n },\r\n {\r\n \"ruleId\": 912018,\r\n \"description\": \"Rule 912018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-913-SCANNER-DETECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 913011,\r\n \"description\": \"Rule 913011\"\r\n },\r\n {\r\n \"ruleId\": 913012,\r\n \"description\": \"Rule 913012\"\r\n },\r\n {\r\n \"ruleId\": 913100,\r\n \"description\": \"Found User-Agent associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913110,\r\n \"description\": \"Found request header associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913120,\r\n \"description\": \"Found request filename/argument associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913013,\r\n \"description\": \"Rule 913013\"\r\n },\r\n {\r\n \"ruleId\": 913014,\r\n \"description\": \"Rule 913014\"\r\n },\r\n {\r\n \"ruleId\": 913101,\r\n \"description\": \"Found User-Agent associated with scripting/generic HTTP client\"\r\n },\r\n {\r\n \"ruleId\": 913102,\r\n \"description\": \"Found User-Agent associated with web crawler/bot\"\r\n },\r\n {\r\n \"ruleId\": 913015,\r\n \"description\": \"Rule 913015\"\r\n },\r\n {\r\n \"ruleId\": 913016,\r\n \"description\": \"Rule 913016\"\r\n },\r\n {\r\n \"ruleId\": 913017,\r\n \"description\": \"Rule 913017\"\r\n },\r\n {\r\n \"ruleId\": 913018,\r\n \"description\": \"Rule 913018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-920-PROTOCOL-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 920011,\r\n \"description\": \"Rule 920011\"\r\n },\r\n {\r\n \"ruleId\": 920012,\r\n \"description\": \"Rule 920012\"\r\n },\r\n {\r\n \"ruleId\": 920100,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 920130,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 920140,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 920160,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 920170,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 920180,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 920190,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 920210,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 920220,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920240,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920250,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920260,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920270,\r\n \"description\": \"Invalid character in request (null character)\"\r\n },\r\n {\r\n \"ruleId\": 920280,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920290,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920310,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920311,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920330,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920340,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 920350,\r\n \"description\": \"Host header is a numeric IP address\"\r\n },\r\n {\r\n \"ruleId\": 920380,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 920360,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 920370,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 920390,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 920400,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 920410,\r\n \"description\": \"Total uploaded files size too large\"\r\n },\r\n {\r\n \"ruleId\": 920420,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920430,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920440,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 920450,\r\n \"description\": \"HTTP header is restricted by policy (%{MATCHED_VAR})\"\r\n },\r\n {\r\n \"ruleId\": 920013,\r\n \"description\": \"Rule 920013\"\r\n },\r\n {\r\n \"ruleId\": 920014,\r\n \"description\": \"Rule 920014\"\r\n },\r\n {\r\n \"ruleId\": 920200,\r\n \"description\": \"Range: Too many fields (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920201,\r\n \"description\": \"Range: Too many fields for pdf request (35 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920230,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 920300,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920271,\r\n \"description\": \"Invalid character in request (non printable characters)\"\r\n },\r\n {\r\n \"ruleId\": 920320,\r\n \"description\": \"Missing User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920015,\r\n \"description\": \"Rule 920015\"\r\n },\r\n {\r\n \"ruleId\": 920016,\r\n \"description\": \"Rule 920016\"\r\n },\r\n {\r\n \"ruleId\": 920272,\r\n \"description\": \"Invalid character in request (outside of printable chars below ascii 127)\"\r\n },\r\n {\r\n \"ruleId\": 920017,\r\n \"description\": \"Rule 920017\"\r\n },\r\n {\r\n \"ruleId\": 920018,\r\n \"description\": \"Rule 920018\"\r\n },\r\n {\r\n \"ruleId\": 920202,\r\n \"description\": \"Range: Too many fields for pdf request (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920273,\r\n \"description\": \"Invalid character in request (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920274,\r\n \"description\": \"Invalid character in request headers (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920460,\r\n \"description\": \"Rule 920460\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-921-PROTOCOL-ATTACK\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 921011,\r\n \"description\": \"Rule 921011\"\r\n },\r\n {\r\n \"ruleId\": 921012,\r\n \"description\": \"Rule 921012\"\r\n },\r\n {\r\n \"ruleId\": 921100,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 921110,\r\n \"description\": \"HTTP Request Smuggling Attack\"\r\n },\r\n {\r\n \"ruleId\": 921120,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921130,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921140,\r\n \"description\": \"HTTP Header Injection Attack via headers\"\r\n },\r\n {\r\n \"ruleId\": 921150,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921160,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF and header-name detected)\"\r\n },\r\n {\r\n \"ruleId\": 921013,\r\n \"description\": \"Rule 921013\"\r\n },\r\n {\r\n \"ruleId\": 921014,\r\n \"description\": \"Rule 921014\"\r\n },\r\n {\r\n \"ruleId\": 921151,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921015,\r\n \"description\": \"Rule 921015\"\r\n },\r\n {\r\n \"ruleId\": 921016,\r\n \"description\": \"Rule 921016\"\r\n },\r\n {\r\n \"ruleId\": 921170,\r\n \"description\": \"Rule 921170\"\r\n },\r\n {\r\n \"ruleId\": 921180,\r\n \"description\": \"HTTP Parameter Pollution (%{TX.1})\"\r\n },\r\n {\r\n \"ruleId\": 921017,\r\n \"description\": \"Rule 921017\"\r\n },\r\n {\r\n \"ruleId\": 921018,\r\n \"description\": \"Rule 921018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-930-APPLICATION-ATTACK-LFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 930011,\r\n \"description\": \"Rule 930011\"\r\n },\r\n {\r\n \"ruleId\": 930012,\r\n \"description\": \"Rule 930012\"\r\n },\r\n {\r\n \"ruleId\": 930100,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930110,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930120,\r\n \"description\": \"OS File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930130,\r\n \"description\": \"Restricted File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930013,\r\n \"description\": \"Rule 930013\"\r\n },\r\n {\r\n \"ruleId\": 930014,\r\n \"description\": \"Rule 930014\"\r\n },\r\n {\r\n \"ruleId\": 930015,\r\n \"description\": \"Rule 930015\"\r\n },\r\n {\r\n \"ruleId\": 930016,\r\n \"description\": \"Rule 930016\"\r\n },\r\n {\r\n \"ruleId\": 930017,\r\n \"description\": \"Rule 930017\"\r\n },\r\n {\r\n \"ruleId\": 930018,\r\n \"description\": \"Rule 930018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-931-APPLICATION-ATTACK-RFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 931011,\r\n \"description\": \"Rule 931011\"\r\n },\r\n {\r\n \"ruleId\": 931012,\r\n \"description\": \"Rule 931012\"\r\n },\r\n {\r\n \"ruleId\": 931100,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Parameter using IP Address\"\r\n },\r\n {\r\n \"ruleId\": 931110,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Common RFI Vulnerable Parameter Name used w/URL Payload\"\r\n },\r\n {\r\n \"ruleId\": 931120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Payload Used w/Trailing Question Mark Character (?)\"\r\n },\r\n {\r\n \"ruleId\": 931013,\r\n \"description\": \"Rule 931013\"\r\n },\r\n {\r\n \"ruleId\": 931014,\r\n \"description\": \"Rule 931014\"\r\n },\r\n {\r\n \"ruleId\": 931130,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 931015,\r\n \"description\": \"Rule 931015\"\r\n },\r\n {\r\n \"ruleId\": 931016,\r\n \"description\": \"Rule 931016\"\r\n },\r\n {\r\n \"ruleId\": 931017,\r\n \"description\": \"Rule 931017\"\r\n },\r\n {\r\n \"ruleId\": 931018,\r\n \"description\": \"Rule 931018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-932-APPLICATION-ATTACK-RCE\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 932011,\r\n \"description\": \"Rule 932011\"\r\n },\r\n {\r\n \"ruleId\": 932012,\r\n \"description\": \"Rule 932012\"\r\n },\r\n {\r\n \"ruleId\": 932120,\r\n \"description\": \"Remote Command Execution: Windows PowerShell Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932130,\r\n \"description\": \"Remote Command Execution: Unix Shell Expression Found\"\r\n },\r\n {\r\n \"ruleId\": 932140,\r\n \"description\": \"Remote Command Execution: Windows FOR/IF Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932160,\r\n \"description\": \"Remote Command Execution: Unix Shell Code Found\"\r\n },\r\n {\r\n \"ruleId\": 932170,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932171,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932013,\r\n \"description\": \"Rule 932013\"\r\n },\r\n {\r\n \"ruleId\": 932014,\r\n \"description\": \"Rule 932014\"\r\n },\r\n {\r\n \"ruleId\": 932015,\r\n \"description\": \"Rule 932015\"\r\n },\r\n {\r\n \"ruleId\": 932016,\r\n \"description\": \"Rule 932016\"\r\n },\r\n {\r\n \"ruleId\": 932017,\r\n \"description\": \"Rule 932017\"\r\n },\r\n {\r\n \"ruleId\": 932018,\r\n \"description\": \"Rule 932018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-933-APPLICATION-ATTACK-PHP\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 933011,\r\n \"description\": \"Rule 933011\"\r\n },\r\n {\r\n \"ruleId\": 933012,\r\n \"description\": \"Rule 933012\"\r\n },\r\n {\r\n \"ruleId\": 933100,\r\n \"description\": \"PHP Injection Attack: Opening/Closing Tag Found\"\r\n },\r\n {\r\n \"ruleId\": 933110,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933120,\r\n \"description\": \"PHP Injection Attack: Configuration Directive Found\"\r\n },\r\n {\r\n \"ruleId\": 933130,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933150,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933160,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933180,\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933013,\r\n \"description\": \"Rule 933013\"\r\n },\r\n {\r\n \"ruleId\": 933014,\r\n \"description\": \"Rule 933014\"\r\n },\r\n {\r\n \"ruleId\": 933151,\r\n \"description\": \"PHP Injection Attack: Medium-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933015,\r\n \"description\": \"Rule 933015\"\r\n },\r\n {\r\n \"ruleId\": 933016,\r\n \"description\": \"Rule 933016\"\r\n },\r\n {\r\n \"ruleId\": 933131,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933161,\r\n \"description\": \"PHP Injection Attack: Low-Value PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933111,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933017,\r\n \"description\": \"Rule 933017\"\r\n },\r\n {\r\n \"ruleId\": 933018,\r\n \"description\": \"Rule 933018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-941-APPLICATION-ATTACK-XSS\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 941011,\r\n \"description\": \"Rule 941011\"\r\n },\r\n {\r\n \"ruleId\": 941012,\r\n \"description\": \"Rule 941012\"\r\n },\r\n {\r\n \"ruleId\": 941100,\r\n \"description\": \"XSS Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 941110,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 941130,\r\n \"description\": \"XSS Filter - Category 3: Attribute Vector\"\r\n },\r\n {\r\n \"ruleId\": 941140,\r\n \"description\": \"XSS Filter - Category 4: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 941150,\r\n \"description\": \"XSS Filter - Category 5: Disallowed HTML Attributes\"\r\n },\r\n {\r\n \"ruleId\": 941180,\r\n \"description\": \"Node-Validator Blacklist Keywords\"\r\n },\r\n {\r\n \"ruleId\": 941190,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941200,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941210,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941220,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941230,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941240,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941260,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941270,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941280,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941290,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941300,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941310,\r\n \"description\": \"US-ASCII Malformed Encoding XSS Filter - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941350,\r\n \"description\": \"UTF-7 Encoding IE XSS - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941013,\r\n \"description\": \"Rule 941013\"\r\n },\r\n {\r\n \"ruleId\": 941014,\r\n \"description\": \"Rule 941014\"\r\n },\r\n {\r\n \"ruleId\": 941320,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 941015,\r\n \"description\": \"Rule 941015\"\r\n },\r\n {\r\n \"ruleId\": 941016,\r\n \"description\": \"Rule 941016\"\r\n },\r\n {\r\n \"ruleId\": 941017,\r\n \"description\": \"Rule 941017\"\r\n },\r\n {\r\n \"ruleId\": 941018,\r\n \"description\": \"Rule 941018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-942-APPLICATION-ATTACK-SQLI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 942011,\r\n \"description\": \"Rule 942011\"\r\n },\r\n {\r\n \"ruleId\": 942012,\r\n \"description\": \"Rule 942012\"\r\n },\r\n {\r\n \"ruleId\": 942100,\r\n \"description\": \"SQL Injection Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 942140,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 942160,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 942170,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 942230,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942270,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 942290,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942320,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 942350,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n },\r\n {\r\n \"ruleId\": 942013,\r\n \"description\": \"Rule 942013\"\r\n },\r\n {\r\n \"ruleId\": 942014,\r\n \"description\": \"Rule 942014\"\r\n },\r\n {\r\n \"ruleId\": 942150,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942410,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942440,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 942450,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 942015,\r\n \"description\": \"Rule 942015\"\r\n },\r\n {\r\n \"ruleId\": 942016,\r\n \"description\": \"Rule 942016\"\r\n },\r\n {\r\n \"ruleId\": 942251,\r\n \"description\": \"Detects HAVING injections\"\r\n },\r\n {\r\n \"ruleId\": 942460,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetitive Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 942017,\r\n \"description\": \"Rule 942017\"\r\n },\r\n {\r\n \"ruleId\": 942018,\r\n \"description\": \"Rule 942018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 943011,\r\n \"description\": \"Rule 943011\"\r\n },\r\n {\r\n \"ruleId\": 943012,\r\n \"description\": \"Rule 943012\"\r\n },\r\n {\r\n \"ruleId\": 943100,\r\n \"description\": \"Possible Session Fixation Attack: Setting Cookie Values in HTML\"\r\n },\r\n {\r\n \"ruleId\": 943110,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with Off-Domain Referer\"\r\n },\r\n {\r\n \"ruleId\": 943120,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with No Referer\"\r\n },\r\n {\r\n \"ruleId\": 943013,\r\n \"description\": \"Rule 943013\"\r\n },\r\n {\r\n \"ruleId\": 943014,\r\n \"description\": \"Rule 943014\"\r\n },\r\n {\r\n \"ruleId\": 943015,\r\n \"description\": \"Rule 943015\"\r\n },\r\n {\r\n \"ruleId\": 943016,\r\n \"description\": \"Rule 943016\"\r\n },\r\n {\r\n \"ruleId\": 943017,\r\n \"description\": \"Rule 943017\"\r\n },\r\n {\r\n \"ruleId\": 943018,\r\n \"description\": \"Rule 943018\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"OWASP_2.2.9\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_20_protocol_violations\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960911,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 981227,\r\n \"description\": \"Apache Error: Invalid URI in Request.\"\r\n },\r\n {\r\n \"ruleId\": 960912,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 960914,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 960915,\r\n \"description\": \"Multipart parser detected a possible unmatched boundary.\"\r\n },\r\n {\r\n \"ruleId\": 960016,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 960011,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 960012,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 960902,\r\n \"description\": \"Invalid Use of Identity Encoding.\"\r\n },\r\n {\r\n \"ruleId\": 960022,\r\n \"description\": \"Expect Header Not Allowed for HTTP 1.0.\"\r\n },\r\n {\r\n \"ruleId\": 960020,\r\n \"description\": \"Pragma Header requires Cache-Control Header for HTTP/1.1 requests.\"\r\n },\r\n {\r\n \"ruleId\": 958291,\r\n \"description\": \"Range: field exists and begins with 0.\"\r\n },\r\n {\r\n \"ruleId\": 958230,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 958295,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 950107,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950109,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 950108,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950801,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950116,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 960901,\r\n \"description\": \"Invalid character in request\"\r\n },\r\n {\r\n \"ruleId\": 960018,\r\n \"description\": \"Invalid character in request\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_21_protocol_anomalies\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960008,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960007,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960015,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960021,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960009,\r\n \"description\": \"Request Missing a User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960006,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960904,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 960017,\r\n \"description\": \"Host header is a numeric IP address\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_23_request_limits\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960209,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 960208,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 960335,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 960341,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 960342,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 960343,\r\n \"description\": \"Total uploaded files size too large\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_30_http_policy\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960032,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960010,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960034,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960035,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 960038,\r\n \"description\": \"HTTP header is restricted by policy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 990002,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990901,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990902,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990012,\r\n \"description\": \"Rogue web site crawler\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_40_generic_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960024,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetative Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 950008,\r\n \"description\": \"Injection of Undocumented ColdFusion Tags\"\r\n },\r\n {\r\n \"ruleId\": 950010,\r\n \"description\": \"LDAP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950011,\r\n \"description\": \"SSI injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950018,\r\n \"description\": \"Universal PDF XSS URL Detected.\"\r\n },\r\n {\r\n \"ruleId\": 950019,\r\n \"description\": \"Email Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950012,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 950910,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950911,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950117,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950118,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950119,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 981133,\r\n \"description\": \"Rule 981133\"\r\n },\r\n {\r\n \"ruleId\": 981134,\r\n \"description\": \"Rule 981134\"\r\n },\r\n {\r\n \"ruleId\": 950009,\r\n \"description\": \"Session Fixation Attack\"\r\n },\r\n {\r\n \"ruleId\": 950003,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950000,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950005,\r\n \"description\": \"Remote File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950002,\r\n \"description\": \"System Command Access\"\r\n },\r\n {\r\n \"ruleId\": 950006,\r\n \"description\": \"System Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 959151,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958976,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958977,\r\n \"description\": \"PHP Injection Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 981231,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 981260,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 981320,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 981300,\r\n \"description\": \"Rule 981300\"\r\n },\r\n {\r\n \"ruleId\": 981301,\r\n \"description\": \"Rule 981301\"\r\n },\r\n {\r\n \"ruleId\": 981302,\r\n \"description\": \"Rule 981302\"\r\n },\r\n {\r\n \"ruleId\": 981303,\r\n \"description\": \"Rule 981303\"\r\n },\r\n {\r\n \"ruleId\": 981304,\r\n \"description\": \"Rule 981304\"\r\n },\r\n {\r\n \"ruleId\": 981305,\r\n \"description\": \"Rule 981305\"\r\n },\r\n {\r\n \"ruleId\": 981306,\r\n \"description\": \"Rule 981306\"\r\n },\r\n {\r\n \"ruleId\": 981307,\r\n \"description\": \"Rule 981307\"\r\n },\r\n {\r\n \"ruleId\": 981308,\r\n \"description\": \"Rule 981308\"\r\n },\r\n {\r\n \"ruleId\": 981309,\r\n \"description\": \"Rule 981309\"\r\n },\r\n {\r\n \"ruleId\": 981310,\r\n \"description\": \"Rule 981310\"\r\n },\r\n {\r\n \"ruleId\": 981311,\r\n \"description\": \"Rule 981311\"\r\n },\r\n {\r\n \"ruleId\": 981312,\r\n \"description\": \"Rule 981312\"\r\n },\r\n {\r\n \"ruleId\": 981313,\r\n \"description\": \"Rule 981313\"\r\n },\r\n {\r\n \"ruleId\": 981314,\r\n \"description\": \"Rule 981314\"\r\n },\r\n {\r\n \"ruleId\": 981315,\r\n \"description\": \"Rule 981315\"\r\n },\r\n {\r\n \"ruleId\": 981316,\r\n \"description\": \"Rule 981316\"\r\n },\r\n {\r\n \"ruleId\": 981317,\r\n \"description\": \"SQL SELECT Statement Anomaly Detection Alert\"\r\n },\r\n {\r\n \"ruleId\": 950007,\r\n \"description\": \"Blind SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950001,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950908,\r\n \"description\": \"SQL Injection Attack.\"\r\n },\r\n {\r\n \"ruleId\": 959073,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 981272,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 981250,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 981241,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981276,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 981270,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981253,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 981251,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_xss_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 973336,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 973338,\r\n \"description\": \"XSS Filter - Category 3: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 981136,\r\n \"description\": \"Rule 981136\"\r\n },\r\n {\r\n \"ruleId\": 981018,\r\n \"description\": \"Rule 981018\"\r\n },\r\n {\r\n \"ruleId\": 958016,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958414,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958032,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958026,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958027,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958054,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958418,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958034,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958019,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958013,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958408,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958012,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958423,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958002,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958017,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958007,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958047,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958410,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958415,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958022,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958405,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958419,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958028,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958057,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958031,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958006,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958033,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958038,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958409,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958001,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958005,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958404,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958023,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958010,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958411,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958422,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958036,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958000,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958018,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958406,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958040,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958052,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958037,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958049,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958030,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958041,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958416,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958024,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958059,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958417,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958020,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958045,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958004,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958421,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958009,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958025,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958413,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958051,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958420,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958407,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958056,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958011,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958412,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958008,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958046,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958039,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958003,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 973300,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 973301,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973302,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973303,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973304,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973305,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973306,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973307,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973308,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973309,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973311,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973313,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973314,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973331,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973315,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973330,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973327,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973326,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973346,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973345,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973324,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973323,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973348,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973321,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973320,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973318,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973317,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973329,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973328,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_42_tight_security\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950103,\r\n \"description\": \"Path Traversal Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_45_trojans\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950110,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950921,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950922,\r\n \"description\": \"Backdoor access\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2061,7 +2085,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:20:22 GMT" + "Mon, 20 Mar 2017 18:40:21 GMT" ], "Pragma": [ "no-cache" @@ -2069,9 +2093,6 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2080,41 +2101,115 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a7b67055-77b3-449c-ba29-1b96a7cef455" + "5a244f95-9b46-4376-ba0b-5496952aca6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14941" ], "x-ms-correlation-request-id": [ - "195f11bb-fada-4751-b621-a5b86bbfeebc" + "f5efdb20-377e-47fe-b68f-7c16aacfcbf9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T062022Z:195f11bb-fada-4751-b621-a5b86bbfeebc" + "WESTUS2:20170320T184022Z:f5efdb20-377e-47fe-b68f-7c16aacfcbf9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "471" + ], + "x-ms-client-request-id": [ + "8fd838dd-c1bb-46d5-abd8-71a9851e8153" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 20 Mar 2017 18:40:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5e84c760-5a76-4408-ade5-d7f33c89686a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5e84c760-5a76-4408-ade5-d7f33c89686a?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "f952cfce-8302-4fe0-a8bd-599c7a160f41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170320T184023Z:f952cfce-8302-4fe0-a8bd-599c7a160f41" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"name\": \"azsmnet132\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2043" + ], "x-ms-client-request-id": [ - "831783c6-e142-4dea-ac54-0f7449fcf022" + "28fb2499-15c5-4d06-a8b3-d1a8a54bc089" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"14c9c011-3b17-4a8d-a2b6-ec273bea52b1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"14c9c011-3b17-4a8d-a2b6-ec273bea52b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2126,7 +2221,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:29:48 GMT" + "Mon, 20 Mar 2017 18:40:24 GMT" ], "Pragma": [ "no-cache" @@ -2134,8 +2229,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2145,41 +2240,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "beb72cba-9ba4-4a19-af1b-5f7db44a7937" + "f54a9526-0e12-4d82-a0dd-1e07f32276e8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" ], "x-ms-correlation-request-id": [ - "0b541ba7-f6f5-4ca0-860d-7c0f8b6c30c9" + "447c1304-289f-4bc6-ad41-3ddfde83cbf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T062948Z:0b541ba7-f6f5-4ca0-860d-7c0f8b6c30c9" + "WESTUS2:20170320T184024Z:447c1304-289f-4bc6-ad41-3ddfde83cbf0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8b814552-e665-40a2-903e-94803671fa93" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2191,7 +2283,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:04 GMT" + "Mon, 20 Mar 2017 18:40:23 GMT" ], "Pragma": [ "no-cache" @@ -2200,7 +2292,7 @@ "chunked" ], "ETag": [ - "W/\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\"" + "W/\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2210,45 +2302,42 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "28b90ab9-a86b-4089-8acd-3ffd6b4e64dd" + "5ee6a394-d3d6-4492-9e91-da7692202105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14940" ], "x-ms-correlation-request-id": [ - "432bd57a-9290-4fd3-a012-225c9af92563" + "1d0f8124-16a0-474c-915f-c1dbc41dc944" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064405Z:432bd57a-9290-4fd3-a012-225c9af92563" + "WESTUS2:20170320T184023Z:1d0f8124-16a0-474c-915f-c1dbc41dc944" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed23ef29-0572-482a-8422-b3ec0c5e725e" + "641fcc15-e13d-441c-8dd6-437ec6667b1c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2259,51 +2348,54 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:17 GMT" + "Mon, 20 Mar 2017 18:40:23 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" + "Transfer-Encoding": [ + "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "e0c8c88a-c232-47c3-b283-c70aa32018ee" + "9ae8c8c3-c295-4777-bc4d-72f30c81a277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" ], "x-ms-correlation-request-id": [ - "41b092b5-84eb-45eb-a73b-009abfdf0ab8" + "52f5b721-6aaa-4e10-abf5-839160ff3b89" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063018Z:41b092b5-84eb-45eb-a73b-009abfdf0ab8" + "WESTUS2:20170320T184023Z:52f5b721-6aaa-4e10-abf5-839160ff3b89" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Unhealthy\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2315,7 +2407,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:47 GMT" + "Mon, 20 Mar 2017 18:44:26 GMT" ], "Pragma": [ "no-cache" @@ -2323,8 +2415,8 @@ "Transfer-Encoding": [ "chunked" ], - "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" + "ETag": [ + "W/\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2334,28 +2426,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e0c8c88a-c232-47c3-b283-c70aa32018ee" + "76979272-8b96-4eaf-999f-ef18514e17d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14928" ], "x-ms-correlation-request-id": [ - "8ab45254-be18-4387-beac-9a2208781346" + "bfdcc9bd-016b-4286-81bb-a47b26a26834" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063048Z:8ab45254-be18-4387-beac-9a2208781346" + "WESTUS2:20170320T184426Z:bfdcc9bd-016b-4286-81bb-a47b26a26834" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2364,17 +2456,17 @@ "471" ], "x-ms-client-request-id": [ - "7d672790-5114-465a-9889-db3a1d7cb35d" + "f9113d59-2633-4507-9fa5-41c3b67466d9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1509" @@ -2389,7 +2481,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:49 GMT" + "Mon, 20 Mar 2017 18:40:23 GMT" ], "Pragma": [ "no-cache" @@ -2399,31 +2491,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" + "db051329-684d-4e73-a53e-2ce1d604769a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/db051329-684d-4e73-a53e-2ce1d604769a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "3d78a611-c9a4-4cb9-8efd-8d6fa963fb90" + "3a9d61e2-bf36-4afa-9ae3-62ed922c5356" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063050Z:3d78a611-c9a4-4cb9-8efd-8d6fa963fb90" + "WESTUS2:20170320T184024Z:3a9d61e2-bf36-4afa-9ae3-62ed922c5356" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"name\": \"azsmnet3331\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2432,17 +2524,17 @@ "2046" ], "x-ms-client-request-id": [ - "9a2079e2-b549-4528-8e13-3d7f5d00e741" + "0d3643a1-e045-4791-9957-2ff6a0d3270b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"b39fc270-8250-4b50-a8fd-424b69dc1bb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b39fc270-8250-4b50-a8fd-424b69dc1bb8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"1e44bbad-bc83-48a6-8508-e4311a79fe5d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"1e44bbad-bc83-48a6-8508-e4311a79fe5d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2454,7 +2546,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:51 GMT" + "Mon, 20 Mar 2017 18:44:26 GMT" ], "Pragma": [ "no-cache" @@ -2473,38 +2565,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4a050275-6023-4176-b8b9-1fb4c5495a05" + "4033969c-40d6-4b34-9f88-6305f195888e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "b383ca4c-ba7a-46b9-97e8-286483c0b620" + "8453b598-5b98-4e37-9b10-9f545cef0634" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063052Z:b383ca4c-ba7a-46b9-97e8-286483c0b620" + "WESTUS2:20170320T184426Z:8453b598-5b98-4e37-9b10-9f545cef0634" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2516,7 +2608,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:50 GMT" + "Mon, 20 Mar 2017 18:40:23 GMT" ], "Pragma": [ "no-cache" @@ -2525,7 +2617,7 @@ "chunked" ], "ETag": [ - "W/\"786fc028-5f3c-4a96-9f1b-be41eabc275f\"" + "W/\"2802e74d-0306-417c-bcde-b4aafba7b66d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2535,41 +2627,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0da9e6c0-7c0a-43f4-89b9-c4ea753845e8" + "6663d153-4164-48b8-ac97-fb90c2ddd19f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14938" ], "x-ms-correlation-request-id": [ - "b451dd5d-604e-4758-b006-914c3e7b0aae" + "5190aa11-392f-473b-b425-9925ff8991ce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063050Z:b451dd5d-604e-4758-b006-914c3e7b0aae" + "WESTUS2:20170320T184024Z:5190aa11-392f-473b-b425-9925ff8991ce" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cdc4caa-d37c-4bb5-89d5-86d89d93cb0c" + "6a91b69f-72c4-4c12-a52e-6cc9cb15a1aa" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2581,7 +2673,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:50 GMT" + "Mon, 20 Mar 2017 18:40:24 GMT" ], "Pragma": [ "no-cache" @@ -2590,7 +2682,7 @@ "chunked" ], "ETag": [ - "W/\"786fc028-5f3c-4a96-9f1b-be41eabc275f\"" + "W/\"2802e74d-0306-417c-bcde-b4aafba7b66d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2600,35 +2692,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36b6fc39-6cb3-43a7-9b5d-3286d3f301d7" + "2ca70137-5930-4f92-be2d-2fa788d9f063" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14937" ], "x-ms-correlation-request-id": [ - "2f19e339-325f-4941-a4f1-85c474db9a5d" + "72aa8fab-3c7a-4072-8247-2b0cb192fb2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063051Z:2f19e339-325f-4941-a4f1-85c474db9a5d" + "WESTUS2:20170320T184024Z:72aa8fab-3c7a-4072-8247-2b0cb192fb2b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2640,7 +2732,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:40:30 GMT" + "Mon, 20 Mar 2017 18:48:28 GMT" ], "Pragma": [ "no-cache" @@ -2649,7 +2741,7 @@ "chunked" ], "ETag": [ - "W/\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\"" + "W/\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2659,51 +2751,36 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9a9df301-56aa-4fd0-9532-ef7ded81ed8b" + "26833811-b532-49e1-ae1a-037cf48e0b1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14919" ], "x-ms-correlation-request-id": [ - "bff8845b-fd14-4229-b9e7-e2c8e24cea2e" + "1134b132-c3df-4dfa-a48f-314395f1424d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064030Z:bff8845b-fd14-4229-b9e7-e2c8e24cea2e" + "WESTUS2:20170320T184828Z:1134b132-c3df-4dfa-a48f-314395f1424d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "471" - ], - "x-ms-client-request-id": [ - "38aae05b-e98d-42c5-b530-bda459e7436f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1509" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2714,60 +2791,54 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:51 GMT" + "Mon, 20 Mar 2017 18:40:53 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "31c62262-91c7-45ef-8c21-7d717c337a7c" + "Vary": [ + "Accept-Encoding" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2017-03-01" + "x-ms-request-id": [ + "4f799a62-b21f-4b01-91ef-aeb40b02ed8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" ], "x-ms-correlation-request-id": [ - "e86f1604-569e-47c1-8fec-a98e4c149f0f" + "7428a521-897f-4043-af44-4e7d279047f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063051Z:e86f1604-569e-47c1-8fec-a98e4c149f0f" + "WESTUS2:20170320T184054Z:7428a521-897f-4043-af44-4e7d279047f5" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2046" - ], - "x-ms-client-request-id": [ - "ea41e0bc-544d-4f67-85b0-891f64e2e8ae" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"e50c0a70-0521-4f44-919f-a20ff19228e2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"e50c0a70-0521-4f44-919f-a20ff19228e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2779,7 +2850,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:40:30 GMT" + "Mon, 20 Mar 2017 18:41:23 GMT" ], "Pragma": [ "no-cache" @@ -2798,38 +2869,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5183ed56-0494-4453-a87f-f2fb9526ff4e" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01" + "36990cc4-cae9-47d0-a015-7693329d1596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" ], "x-ms-correlation-request-id": [ - "e63b5c21-6c0a-46c8-b09e-ebd1db27fb2c" + "b05a1fed-27e4-48fb-98d0-c5ea1027bf2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064030Z:e63b5c21-6c0a-46c8-b09e-ebd1db27fb2c" + "WESTUS2:20170320T184124Z:b05a1fed-27e4-48fb-98d0-c5ea1027bf2d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2841,7 +2909,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:51 GMT" + "Mon, 20 Mar 2017 18:41:55 GMT" ], "Pragma": [ "no-cache" @@ -2849,8 +2917,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"46896004-bae1-46c5-9443-58bae607eb26\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2860,41 +2928,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "999b0d3c-537a-4a7c-bc74-3cb8848a8f8e" + "2df53e0e-a8c9-4e19-8279-86e4800e6b76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14934" ], "x-ms-correlation-request-id": [ - "26e61b27-eef6-4bce-b4c1-ff2872ca7f30" + "82c36fa7-e432-416e-bde4-41a57248bf86" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063052Z:26e61b27-eef6-4bce-b4c1-ff2872ca7f30" + "WESTUS2:20170320T184155Z:82c36fa7-e432-416e-bde4-41a57248bf86" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fda72df0-4107-4201-8501-9ac5c68cc895" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2906,7 +2968,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:51 GMT" + "Mon, 20 Mar 2017 18:42:25 GMT" ], "Pragma": [ "no-cache" @@ -2914,8 +2976,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"46896004-bae1-46c5-9443-58bae607eb26\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2925,35 +2987,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0bbef9f2-69ff-4a3c-9f31-8dbda784eca6" + "8111eccb-7304-49ae-8268-c4d525888f6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14933" ], "x-ms-correlation-request-id": [ - "aec1bf95-2577-45db-ac38-8f6944765d82" + "1e940111-781b-4e88-9a6c-2435d6188ff6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063052Z:aec1bf95-2577-45db-ac38-8f6944765d82" + "WESTUS2:20170320T184225Z:1e940111-781b-4e88-9a6c-2435d6188ff6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2965,833 +3027,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "12086126-14f6-4115-94f4-e3fcf6f59beb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "4a815a3c-3c6a-445a-835d-b65a9a5756b7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064404Z:4a815a3c-3c6a-445a-835d-b65a9a5756b7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5d9553fe-326c-49cc-9cf6-6e2594cab7af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "025a039f-15b1-419d-aec3-6bd0a496de38" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063122Z:025a039f-15b1-419d-aec3-6bd0a496de38" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:31:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cf2321c7-59ba-40cf-99ab-6f2bc24f318a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "2d81a75a-f9fa-481f-8b79-9459e513aae5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063153Z:2d81a75a-f9fa-481f-8b79-9459e513aae5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:32:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9f1cebbc-8953-41a3-9703-3247fba99bea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "e3fe1b0a-21b8-40c5-ba6f-ef6136501c95" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063223Z:e3fe1b0a-21b8-40c5-ba6f-ef6136501c95" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:32:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "99cc3cef-c2a2-4fca-88eb-831e81f96ad8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "1ee5b5d2-8bdd-4311-a876-2ed62663f238" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063253Z:1ee5b5d2-8bdd-4311-a876-2ed62663f238" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:33:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "76d399fd-eabd-416e-a33c-f0e30a0b56aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "8dd5429e-5f68-46bd-aff5-3614f4f7701c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063324Z:8dd5429e-5f68-46bd-aff5-3614f4f7701c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:33:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1f6f930f-dd88-4a90-8ba4-e73b2fcef1b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "fa3a26e8-a72b-4600-8507-623ed59bbb15" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063354Z:fa3a26e8-a72b-4600-8507-623ed59bbb15" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:34:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "422aef92-fea8-4234-93b8-898478412b27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "f3ad4300-a3e7-41c4-8672-fce49f090d5f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063424Z:f3ad4300-a3e7-41c4-8672-fce49f090d5f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:34:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "89048c86-ad82-4eb4-8e01-0390816aa5e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "b6168ec2-beb5-416e-a6ac-54f96c330212" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063455Z:b6168ec2-beb5-416e-a6ac-54f96c330212" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:35:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "79073859-567e-4974-ad7e-d40a4620bb3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "13dcc8cc-c212-4240-a2ce-90666b0881e5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063525Z:13dcc8cc-c212-4240-a2ce-90666b0881e5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:35:56 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "75044b96-b044-42d0-af08-a1d8bbab74b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "ccad75cd-a010-44b0-8acc-dcf691df6371" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063556Z:ccad75cd-a010-44b0-8acc-dcf691df6371" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:36:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "55c79dd9-0834-4ecf-8d35-76dfbb39a509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "1ccbb544-a3a0-4a82-8d18-4a7674388944" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063626Z:1ccbb544-a3a0-4a82-8d18-4a7674388944" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:36:56 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d3508fc5-5fad-4dbd-b51c-9013b2cc720a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "aba1e8ca-9c70-44bd-be5e-b69164df2f6d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063656Z:aba1e8ca-9c70-44bd-be5e-b69164df2f6d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:37:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3a50fb9b-cbc4-4bf9-ba45-c5560eb7d58b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "9f4658ec-a311-4382-801e-a7884383cc36" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063727Z:9f4658ec-a311-4382-801e-a7884383cc36" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:37:56 GMT" + "Mon, 20 Mar 2017 18:42:54 GMT" ], "Pragma": [ "no-cache" @@ -3810,32 +3046,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "775cae85-1eb7-4843-9d43-65d2d06fd9e6" + "dbbb5478-96f5-43c5-843f-c39c5906c80c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14932" ], "x-ms-correlation-request-id": [ - "e63cba51-35a2-4d25-8dab-ea41ce1d30c3" + "e9cfb5a3-ac55-4174-831e-663aab74fe2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063757Z:e63cba51-35a2-4d25-8dab-ea41ce1d30c3" + "WESTUS2:20170320T184255Z:e9cfb5a3-ac55-4174-831e-663aab74fe2d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3850,7 +3086,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:38:27 GMT" + "Mon, 20 Mar 2017 18:43:25 GMT" ], "Pragma": [ "no-cache" @@ -3869,32 +3105,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "59a9d280-8587-4ab7-827d-783dcf6e676a" + "429c5f44-5c8f-4d30-b062-b92d5f4dce2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14931" ], "x-ms-correlation-request-id": [ - "97d40bc0-919b-4fc5-bf25-8c41a8bc3597" + "56805eb7-1601-4b24-a833-9f8154d1b574" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063827Z:97d40bc0-919b-4fc5-bf25-8c41a8bc3597" + "WESTUS2:20170320T184325Z:56805eb7-1601-4b24-a833-9f8154d1b574" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3909,7 +3145,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:38:58 GMT" + "Mon, 20 Mar 2017 18:43:55 GMT" ], "Pragma": [ "no-cache" @@ -3928,35 +3164,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b1d2d3b-5891-474b-9b32-eb442cd92a52" + "62194e52-db8a-44e3-a99d-b8cfc4fe7423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14930" ], "x-ms-correlation-request-id": [ - "47d3a78c-e086-4aee-85e2-e74088bc8e35" + "15dea197-de81-4e48-a884-8abe4e7139b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063858Z:47d3a78c-e086-4aee-85e2-e74088bc8e35" + "WESTUS2:20170320T184355Z:15dea197-de81-4e48-a884-8abe4e7139b1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3968,7 +3204,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:39:28 GMT" + "Mon, 20 Mar 2017 18:44:26 GMT" ], "Pragma": [ "no-cache" @@ -3976,9 +3212,6 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3987,32 +3220,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a33220c7-9d62-40eb-b9b0-63a3891e8c36" + "053fa53f-c378-49f1-8be8-0e9708139700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14929" ], "x-ms-correlation-request-id": [ - "820cb1b2-b90d-4317-9a7d-11fab76bd716" + "48d3087d-4945-47ad-a046-342d99fdb2c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063928Z:820cb1b2-b90d-4317-9a7d-11fab76bd716" + "WESTUS2:20170320T184426Z:48d3087d-4945-47ad-a046-342d99fdb2c9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4027,7 +3260,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:39:58 GMT" + "Mon, 20 Mar 2017 18:44:56 GMT" ], "Pragma": [ "no-cache" @@ -4046,88 +3279,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8660098c-0633-484d-82d4-00501eb0bac9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "1b041af5-71db-49e0-a1c7-696a684aea84" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063959Z:1b041af5-71db-49e0-a1c7-696a684aea84" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:40:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "41e48435-ecc4-4e6d-a80a-4bdb40ee6836" + "7844d083-e2c6-4183-805c-faf01f61c11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14927" ], "x-ms-correlation-request-id": [ - "ef7413fb-67d7-4346-82f5-ad4b4e2d9ce5" + "005f2e1b-76cf-4393-8724-075fb42ca665" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064029Z:ef7413fb-67d7-4346-82f5-ad4b4e2d9ce5" + "WESTUS2:20170320T184456Z:005f2e1b-76cf-4393-8724-075fb42ca665" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4142,7 +3319,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:41:00 GMT" + "Mon, 20 Mar 2017 18:45:26 GMT" ], "Pragma": [ "no-cache" @@ -4161,32 +3338,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "450b8168-e034-41b2-b403-8a36c3378080" + "9146f75c-b526-4576-a15c-d049e72d7d48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14926" ], "x-ms-correlation-request-id": [ - "6283fa3c-13f1-47c2-afc8-005cf23935dd" + "3457d411-f6f5-4874-9793-0cdf90f5dd1c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064101Z:6283fa3c-13f1-47c2-afc8-005cf23935dd" + "WESTUS2:20170320T184527Z:3457d411-f6f5-4874-9793-0cdf90f5dd1c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4201,7 +3378,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:41:30 GMT" + "Mon, 20 Mar 2017 18:45:56 GMT" ], "Pragma": [ "no-cache" @@ -4220,32 +3397,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4bd44328-f2d1-4431-90db-953fec74ab1b" + "fef8b978-ef46-4e74-992f-320fd60b26a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14925" ], "x-ms-correlation-request-id": [ - "4143ee37-f7db-4e08-b0d2-ba5412d9b1cd" + "6794837c-242a-4ff9-b241-6a5671e1c322" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064131Z:4143ee37-f7db-4e08-b0d2-ba5412d9b1cd" + "WESTUS2:20170320T184557Z:6794837c-242a-4ff9-b241-6a5671e1c322" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4260,7 +3437,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:42:01 GMT" + "Mon, 20 Mar 2017 18:46:27 GMT" ], "Pragma": [ "no-cache" @@ -4279,32 +3456,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "007c9cbf-fb24-4f43-84eb-936eb3564e65" + "936dbbeb-19c4-4886-9e31-78f60c64871a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14924" ], "x-ms-correlation-request-id": [ - "1a185cf3-111b-4528-8439-c788e345e271" + "7118f1ae-6390-417c-93b6-3e336f758388" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064201Z:1a185cf3-111b-4528-8439-c788e345e271" + "WESTUS2:20170320T184627Z:7118f1ae-6390-417c-93b6-3e336f758388" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4319,7 +3496,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:42:32 GMT" + "Mon, 20 Mar 2017 18:46:57 GMT" ], "Pragma": [ "no-cache" @@ -4338,32 +3515,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "03c54ead-fa6a-485f-b31e-afcd61e0dd07" + "760506c7-19d1-49f1-a62b-14ef42897a80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14923" ], "x-ms-correlation-request-id": [ - "7c3e0380-d7cd-46ca-beed-23121070b5fd" + "5f69a5b3-b88d-4781-829a-f9c1db0bcca2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064232Z:7c3e0380-d7cd-46ca-beed-23121070b5fd" + "WESTUS2:20170320T184657Z:5f69a5b3-b88d-4781-829a-f9c1db0bcca2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4378,7 +3555,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:43:02 GMT" + "Mon, 20 Mar 2017 18:47:27 GMT" ], "Pragma": [ "no-cache" @@ -4397,32 +3574,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9c0349f1-5646-4e83-80df-dca41c53064b" + "e45bf5f5-1b12-4eec-a151-bec13340765c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14922" ], "x-ms-correlation-request-id": [ - "01db4140-0b8a-4dcf-9c24-0d253a48a99c" + "5107fba9-96ee-433f-b6b8-591bc591a6bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064302Z:01db4140-0b8a-4dcf-9c24-0d253a48a99c" + "WESTUS2:20170320T184727Z:5107fba9-96ee-433f-b6b8-591bc591a6bc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4437,7 +3614,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:43:32 GMT" + "Mon, 20 Mar 2017 18:47:57 GMT" ], "Pragma": [ "no-cache" @@ -4456,32 +3633,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "85819383-0eb1-4cdc-ab8c-03bf2de6a814" + "b8629352-0df2-4efe-8723-d7a0ef0c4248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14921" ], "x-ms-correlation-request-id": [ - "35d638f5-6ae9-4f21-8281-cef8d0f03ebd" + "e4a197e7-848a-480f-8d6b-98a96228d122" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064333Z:35d638f5-6ae9-4f21-8281-cef8d0f03ebd" + "WESTUS2:20170320T184758Z:e4a197e7-848a-480f-8d6b-98a96228d122" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4496,7 +3673,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:03 GMT" + "Mon, 20 Mar 2017 18:48:28 GMT" ], "Pragma": [ "no-cache" @@ -4512,38 +3689,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3e05fed9-1a32-4a66-ac70-7e170645b844" + "fe726313-485e-409f-91bd-d3149bdf228f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14920" ], "x-ms-correlation-request-id": [ - "8e1844ee-e11c-43c9-b9e8-ced4f57c53fc" + "4e6d2fda-f4b3-4032-9728-59d503e18b25" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064403Z:8e1844ee-e11c-43c9-b9e8-ced4f57c53fc" + "WESTUS2:20170320T184828Z:4e6d2fda-f4b3-4032-9728-59d503e18b25" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28a6eea0-faab-466c-8991-c9592396d220" + "7e51950e-8d15-4585-98c2-b36633fd5511" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "", @@ -4558,54 +3735,54 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:04 GMT" + "Mon, 20 Mar 2017 18:48:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/1f9896d4-b69c-4277-80f0-8bd7bef87769?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "796a9be1-c827-490e-b609-a4ad9394d044" + "1f9896d4-b69c-4277-80f0-8bd7bef87769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/1f9896d4-b69c-4277-80f0-8bd7bef87769?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1190" ], "x-ms-correlation-request-id": [ - "862caf86-6e94-4e1d-bbe1-0980783d6381" + "52bedd86-4d74-4584-b855-e9c28e34b11f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064404Z:862caf86-6e94-4e1d-bbe1-0980783d6381" + "WESTUS2:20170320T184829Z:52bedd86-4d74-4584-b855-e9c28e34b11f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da8b1d86-c53c-4ec8-8bb6-a706c30a22ab" + "88f48fe8-f135-4e7d-8015-192594509110" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "", @@ -4620,13 +3797,13 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:05 GMT" + "Mon, 20 Mar 2017 18:48:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4636,35 +3813,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a3f3b726-de0a-4182-9301-e00e9195aba1" + "09e10dcb-3fb0-4036-97c9-9420cc720bb7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1189" ], "x-ms-correlation-request-id": [ - "bb0f4506-dfaf-4279-b000-3eee7134515a" + "7a5e893d-ea2b-434e-8af2-452d0e7267a7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064405Z:bb0f4506-dfaf-4279-b000-3eee7134515a" + "WESTUS2:20170320T184829Z:7a5e893d-ea2b-434e-8af2-452d0e7267a7" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4679,7 +3856,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:35 GMT" + "Mon, 20 Mar 2017 18:48:59 GMT" ], "Pragma": [ "no-cache" @@ -4698,32 +3875,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "43a3c893-9fe4-4a65-9074-e974f4afdb93" + "d19212d5-73d1-496e-8b18-a9dbdd78d356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14917" ], "x-ms-correlation-request-id": [ - "3eb11df9-e9aa-44d4-b409-56fd417396bc" + "412b2840-6af6-4bfd-9f2b-0868a4ac157e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064435Z:3eb11df9-e9aa-44d4-b409-56fd417396bc" + "WESTUS2:20170320T184859Z:412b2840-6af6-4bfd-9f2b-0868a4ac157e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4738,7 +3915,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:45:05 GMT" + "Mon, 20 Mar 2017 18:49:29 GMT" ], "Pragma": [ "no-cache" @@ -4757,32 +3934,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dba3b76e-a8e1-4207-a48e-a71fc6445d3f" + "238f98cd-59f1-4bc7-8d01-6087dca04a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14916" ], "x-ms-correlation-request-id": [ - "a03e2bed-226b-4c21-9f85-1c7faf5ca753" + "39172f04-fe7d-4ce1-a601-22dd3627b450" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064506Z:a03e2bed-226b-4c21-9f85-1c7faf5ca753" + "WESTUS2:20170320T184930Z:39172f04-fe7d-4ce1-a601-22dd3627b450" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4797,7 +3974,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:45:36 GMT" + "Mon, 20 Mar 2017 18:49:59 GMT" ], "Pragma": [ "no-cache" @@ -4816,32 +3993,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b31e572-145c-4255-8cf0-8da3163c213a" + "d9d57609-a16e-412d-a936-2a9982f355e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14915" ], "x-ms-correlation-request-id": [ - "58764999-f236-4207-bde3-1524f70ef9a7" + "6086ca03-4dc8-46c6-8f10-35c6d39fbbc5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064536Z:58764999-f236-4207-bde3-1524f70ef9a7" + "WESTUS2:20170320T185000Z:6086ca03-4dc8-46c6-8f10-35c6d39fbbc5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4856,7 +4033,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:46:06 GMT" + "Mon, 20 Mar 2017 18:50:29 GMT" ], "Pragma": [ "no-cache" @@ -4872,38 +4049,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bba89165-3e48-4246-aadf-76c872485ab0" + "754fd0ac-d4af-45d7-a24a-d03bb6d012a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14914" ], "x-ms-correlation-request-id": [ - "419f83e4-5448-4b8a-a7bd-240a21056c82" + "60cb780d-672f-46b7-9b3d-e246ddded87a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064607Z:419f83e4-5448-4b8a-a7bd-240a21056c82" + "WESTUS2:20170320T185030Z:60cb780d-672f-46b7-9b3d-e246ddded87a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26a37aba-7ddf-4b09-b56d-a6ab3a908002" + "17ac7490-10d7-4a76-af5f-32d16397ec5f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "", @@ -4918,13 +4095,13 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:46:07 GMT" + "Mon, 20 Mar 2017 18:50:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4934,94 +4111,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2f925788-a452-4929-b3ca-ea32aa3a2049" + "44b9f1fb-5e69-4836-9cde-431b82315b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1188" ], "x-ms-correlation-request-id": [ - "f80f1bc2-5468-418d-ae64-131e6f1f959f" + "eb0ee3bf-4afc-49cc-a0a4-1b3e43e30bc5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064607Z:f80f1bc2-5468-418d-ae64-131e6f1f959f" + "WESTUS2:20170320T185031Z:eb0ee3bf-4afc-49cc-a0a4-1b3e43e30bc5" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:46:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "27928e5f-f661-4b60-8416-2c649e9bb4ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "b1013732-7544-4b27-95f1-4080b1ad73b5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064638Z:b1013732-7544-4b27-95f1-4080b1ad73b5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80NGI5ZjFmYi01ZTY5LTQ4MzYtOWNkZS00MzFiODIzMTViMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5036,7 +4154,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:47:07 GMT" + "Mon, 20 Mar 2017 18:51:01 GMT" ], "Pragma": [ "no-cache" @@ -5055,32 +4173,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7c754182-d2e5-4e91-a739-7576f67eb9a0" + "a7abeea8-161e-456d-87cd-52ef0ebaa524" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14913" ], "x-ms-correlation-request-id": [ - "6182935e-7800-4d81-9258-dadb60464787" + "8bcaf0ae-7379-4a14-8f83-a65cdd89a482" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064708Z:6182935e-7800-4d81-9258-dadb60464787" + "WESTUS2:20170320T185101Z:8bcaf0ae-7379-4a14-8f83-a65cdd89a482" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80NGI5ZjFmYi01ZTY5LTQ4MzYtOWNkZS00MzFiODIzMTViMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -5095,7 +4213,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:47:38 GMT" + "Mon, 20 Mar 2017 18:51:31 GMT" ], "Pragma": [ "no-cache" @@ -5111,19 +4229,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1a97006-4989-4aa5-8cfb-440d174a51f7" + "034ed006-4c28-45db-84ad-f2d4c07feb2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14912" ], "x-ms-correlation-request-id": [ - "26e78f73-2837-4960-a0c4-d88f01211ad1" + "c7f64b00-c6fa-49c9-8fe5-9ac5d3ed7bc3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064738Z:26e78f73-2837-4960-a0c4-d88f01211ad1" + "WESTUS2:20170320T185131Z:c7f64b00-c6fa-49c9-8fe5-9ac5d3ed7bc3" ] }, "StatusCode": 200 @@ -5131,33 +4249,33 @@ ], "Names": { "ApplicationGatewayApiTest": [ - "csmrg1399", - "azsmnet8548", - "azsmnet5890", - "azsmnet5901", - "azsmnet5344", - "azsmnet4961", - "azsmnet6912" + "csmrg7667", + "azsmnet5723", + "azsmnet2045", + "azsmnet3830", + "azsmnet9819", + "azsmnet132", + "azsmnet3331" ], "CreateApplicationGateway": [ - "azsmnet3365", - "azsmnet6124", - "azsmnet2727", - "azsmnet9197", - "azsmnet9593", - "azsmnet6875", - "azsmnet1710", - "azsmnet9515", - "azsmnet1800", - "azsmnet3533", - "azsmnet5067", - "azsmnet8609", - "azsmnet2218", - "azsmnet1430", - "azsmnet4388" + "azsmnet790", + "azsmnet6486", + "azsmnet5694", + "azsmnet57", + "azsmnet1047", + "azsmnet2873", + "azsmnet4293", + "azsmnet8504", + "azsmnet129", + "azsmnet3623", + "azsmnet2535", + "azsmnet1579", + "azsmnet4411", + "azsmnet4106", + "azsmnet2995" ] }, "Variables": { "SubscriptionId": "70a5cb48-f9db-44e5-b819-936d54cc83d4" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 70f57d9158f2..3294f6718183 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -98,21 +98,21 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn var appGw = new ApplicationGateway() { - Location = location, + Location = location, SslPolicy = new ApplicationGatewaySslPolicy() - { - DisabledSslProtocols = new List() + { + DisabledSslProtocols = new List() { ApplicationGatewaySslProtocol.TLSv10, ApplicationGatewaySslProtocol.TLSv11 } - }, + }, Sku = new ApplicationGatewaySku() - { - Name = ApplicationGatewaySkuName.WAFMedium, - Tier = ApplicationGatewayTier.WAF, - Capacity = 2 - }, + { + Name = ApplicationGatewaySkuName.WAFMedium, + Tier = ApplicationGatewayTier.WAF, + Capacity = 2 + }, GatewayIPConfigurations = new List() { new ApplicationGatewayIPConfiguration() @@ -124,8 +124,8 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn } } }, - FrontendIPConfigurations = new List() - { + FrontendIPConfigurations = new List() + { new ApplicationGatewayFrontendIPConfiguration() { Name = frontendIPConfigName, @@ -133,8 +133,8 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn Subnet = new SubResource() { Id = subnet.Id - } - } + } + } }, FrontendPorts = new List { @@ -189,7 +189,7 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn Name = nicBackendAddressPoolName, } }, - BackendHttpSettingsCollection = new List + BackendHttpSettingsCollection = new List { new ApplicationGatewayBackendHttpSettings() { @@ -214,7 +214,7 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn Name = backendHttpSettings2Name, Port = 443, Protocol = ApplicationGatewayProtocol.Https, - CookieBasedAffinity = ApplicationGatewayCookieBasedAffinity.Enabled, + CookieBasedAffinity = ApplicationGatewayCookieBasedAffinity.Enabled, AuthenticationCertificates = new List() { new SubResource() @@ -389,23 +389,40 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn { Enabled = true, FirewallMode = ApplicationGatewayFirewallMode.Prevention, - }, + RuleSetType = "OWASP", + RuleSetVersion = "2.2.9", + DisabledRuleGroups = new List() + { + new ApplicationGatewayFirewallDisabledRuleGroup( + "crs_41_sql_injection_attacks", + new List() { 981318 }) + } + } }; return appGw; } private void CompareApplicationGateway(ApplicationGateway gw1, ApplicationGateway gw2) { - Assert.Equal(gw1.Sku.Name, gw2.Sku.Name); - Assert.Equal(gw1.Sku.Tier, gw2.Sku.Tier); - Assert.Equal(gw1.Sku.Capacity, gw2.Sku.Capacity); + // compare count of child resources Assert.Equal(gw1.GatewayIPConfigurations.Count, gw2.GatewayIPConfigurations.Count); Assert.Equal(gw1.FrontendIPConfigurations.Count, gw2.FrontendIPConfigurations.Count); Assert.Equal(gw1.FrontendPorts.Count, gw2.FrontendPorts.Count); Assert.Equal(gw1.Probes.Count, gw2.Probes.Count); Assert.Equal(gw1.BackendAddressPools.Count, gw2.BackendAddressPools.Count); Assert.Equal(gw1.BackendHttpSettingsCollection.Count, gw2.BackendHttpSettingsCollection.Count); - for(int i = 0; i < gw1.BackendHttpSettingsCollection.Count; i++) + Assert.Equal(gw1.HttpListeners.Count, gw2.HttpListeners.Count); + Assert.Equal(gw1.RequestRoutingRules.Count, gw2.RequestRoutingRules.Count); + Assert.Equal(gw1.SslPolicy.DisabledSslProtocols.Count, gw2.SslPolicy.DisabledSslProtocols.Count); + Assert.Equal(gw1.AuthenticationCertificates.Count, gw2.AuthenticationCertificates.Count); + + // compare sku + Assert.Equal(gw1.Sku.Name, gw2.Sku.Name); + Assert.Equal(gw1.Sku.Tier, gw2.Sku.Tier); + Assert.Equal(gw1.Sku.Capacity, gw2.Sku.Capacity); + + // compare connectionDraining + for (int i = 0; i < gw1.BackendHttpSettingsCollection.Count; i++) { if(gw1.BackendHttpSettingsCollection[i].ConnectionDraining != null) { @@ -418,12 +435,26 @@ private void CompareApplicationGateway(ApplicationGateway gw1, ApplicationGatewa Assert.Null(gw2.BackendHttpSettingsCollection[i].ConnectionDraining); } } - Assert.Equal(gw1.HttpListeners.Count, gw2.HttpListeners.Count); - Assert.Equal(gw1.RequestRoutingRules.Count, gw2.RequestRoutingRules.Count); - Assert.Equal(gw1.SslPolicy.DisabledSslProtocols.Count, gw2.SslPolicy.DisabledSslProtocols.Count); - Assert.Equal(gw1.AuthenticationCertificates.Count, gw2.AuthenticationCertificates.Count); + + //compare WAF Assert.Equal(gw1.WebApplicationFirewallConfiguration.Enabled, gw2.WebApplicationFirewallConfiguration.Enabled); Assert.Equal(gw1.WebApplicationFirewallConfiguration.FirewallMode, gw2.WebApplicationFirewallConfiguration.FirewallMode); + Assert.Equal(gw1.WebApplicationFirewallConfiguration.RuleSetType, gw2.WebApplicationFirewallConfiguration.RuleSetType); + Assert.Equal(gw1.WebApplicationFirewallConfiguration.RuleSetVersion, gw2.WebApplicationFirewallConfiguration.RuleSetVersion); + if (gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups != null) + { + Assert.NotNull(gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups); + Assert.Equal(gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups.Count, gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups.Count); + for(int i = 0; i < gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups.Count; i++) + { + Assert.Equal(gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups[i].RuleGroupName, gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups[i].RuleGroupName); + Assert.Equal(gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups[i].Rules, gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups[i].Rules); + } + } + else + { + Assert.Empty(gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups); + } } [Fact] @@ -506,11 +537,26 @@ public void ApplicationGatewayApiTest() Assert.Equal(appGwName, getGateway.Name); CompareApplicationGateway(appGw, getGateway); - //Get AppGw backend health + // Get AppGw backend health var backendHealth = networkManagementClient.ApplicationGateways.BackendHealth(resourceGroupName, appGwName); Assert.Equal(1, backendHealth.BackendAddressPools.Count); Assert.Equal(2, backendHealth.BackendAddressPools[0].BackendHttpSettingsCollection.Count); + // Get available WAF rule sets (validate first result set) + var availableWAFRuleSets = networkManagementClient.ApplicationGateways.GetAvailableWafRuleSets(); + Assert.NotNull(availableWAFRuleSets); + Assert.NotEmpty(availableWAFRuleSets.Value); + Assert.NotNull(availableWAFRuleSets.Value[0].Name); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleSetType); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleSetVersion); + Assert.NotEmpty(availableWAFRuleSets.Value[0].RuleGroups); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Description); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].RuleGroupName); + Assert.NotEmpty(availableWAFRuleSets.Value[0].RuleGroups[0].Rules); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Rules[0].Description); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Rules[0].RuleId); + + // Create Nics string nic1name = TestUtilities.GenerateName(); string nic2name = TestUtilities.GenerateName(); From 86b2b89b57f3348c22750207e1a804e6776fd4c1 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 20 Mar 2017 18:56:26 -0700 Subject: [PATCH 113/137] #WAF removed unneccessary file ending changes created by the PS script for updating the api version number in SessionRecords. --- .../Compute.Tests.AvailabilitySetTests/TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json | 2 +- .../Compute.Tests.ExtImgTests/TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index c90d66618049..41d56c39d77b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 0d03fdb6250b..9f1f1e8233ad 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index bd443a53e6ff..e8045406bdd2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index 2c1a98ed6570..fc3756c3a85c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index 2343de8f650a..abc449435cb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index bfb318f6ef31..d76a89158bb8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index bc9057da8c35..a164c1a3195c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index 7bc95fedbe54..e90bf7aad7ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file From ae215230461809fb8a10b58e9851892eb831d3b1 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 20 Mar 2017 19:20:56 -0700 Subject: [PATCH 114/137] #WAF updated comment for ApplicationGatewayFirewallDisabledRuleGroup.rules. --- .../Models/ApplicationGatewayFirewallDisabledRuleGroup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs index eb9e127d9bbd..adc055c12b67 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs @@ -35,7 +35,7 @@ public ApplicationGatewayFirewallDisabledRuleGroup() { } /// The name of the rule group that will be /// disabled. /// The list of rules that will be disabled. If - /// empty, all rules of the rule group will be disabled. + /// null, all rules of the rule group will be disabled. public ApplicationGatewayFirewallDisabledRuleGroup(string ruleGroupName, IList rules = default(IList)) { RuleGroupName = ruleGroupName; @@ -49,7 +49,7 @@ public ApplicationGatewayFirewallDisabledRuleGroup() { } public string RuleGroupName { get; set; } /// - /// Gets or sets the list of rules that will be disabled. If empty, all + /// Gets or sets the list of rules that will be disabled. If null, all /// rules of the rule group will be disabled. /// [JsonProperty(PropertyName = "rules")] From 91ea4b3d88528ad1164ceff5a797daec1c1efdc3 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 20 Mar 2017 19:40:08 -0700 Subject: [PATCH 115/137] #WAF incremented assembly version. --- .../Properties/AssemblyInfo.cs | 4 ++-- .../Network/Microsoft.Azure.Management.Network/project.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 31b13a51ad32..3a079d1447c2 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("9.1.0.0")] -[assembly: AssemblyFileVersion("9.1.0.0")] +[assembly: AssemblyVersion("9.2.0.0")] +[assembly: AssemblyFileVersion("9.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index d8484bf93b04..93058cacb507 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,6 +1,6 @@ { - "version": "9.1.0-preview", + "version": "9.2.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From 86f6cd39b32cb1224805179c25549195228ee870 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Tue, 21 Mar 2017 09:11:41 -0700 Subject: [PATCH 116/137] Update Network test versions to 2017-03-01 --- .../TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../TestExtImgGet.json | 2 +- .../TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- .../TestVMExtensionOperations.json | 50 +- .../TestImageOperations.json | 50 +- .../TestListVMInSubscription.json | 100 +-- .../TestVMWithLinuxOSProfile.json | 50 +- .../TestVMWithWindowsOSProfile.json | 104 +-- .../TestListUsages.json | 50 +- .../TestVMCertificatesOperations.json | 30 +- .../TestVMDataDiskScenario.json | 50 +- .../TestVMBootDiagnostics.json | 50 +- .../TestVMDiskEncryption.json | 26 +- .../TestVMDiskSizeScenario.json | 50 +- .../TestVMBYOL.json | 50 +- .../TestVMMarketplace.json | 50 +- .../TestEffectiveRouteAndAcls.json | 78 +- .../TestMultiIpConfigForMultiNICVM.json | 54 +- .../TestMultiNicVirtualMachineReference.json | 54 +- .../TestNicVirtualMachineReference.json | 36 +- .../TestVMOperations.json | 100 +-- .../TestVMOperations_Redeploy.json | 50 +- .../TestVMScaleSetMarketplace.json | 46 +- .../TestVMScaleSetWithApplciationGateway.json | 184 ++--- .../TestVMScaleSetBatchOperations.json | 50 +- .../TestVMScaleSetOperations.json | 50 +- ...TestVMScaleSetOperations_ManagedDisks.json | 50 +- .../TestVMScaleSetScenarioOperations.json | 50 +- ...narioOperations_ManagedDisks_PirImage.json | 50 +- .../TestVMScaleSetScalingOperations.json | 50 +- .../TestVMScaleSetUpdateOperations.json | 50 +- .../TestVMScaleSetVMOperations.json | 50 +- ...stVMScaleSetVMOperations_ManagedDisks.json | 50 +- .../TestVMScenarioOperations.json | 50 +- ...TestVMScenarioOperations_ManagedDisks.json | 50 +- .../NetworkWatcherApiTest.json | 34 +- .../NextHopApiTest.json | 30 +- .../PacketCaptureApiTest.json | 86 +-- .../EmptyRouteTableTest.json | 40 +- .../RouteTableApiTest.json | 72 +- .../SubnetRouteTableTest.json | 42 +- .../RoutesApiTest.json | 98 +-- .../RoutesHopTypeTest.json | 82 +- .../TopologyApiTest.json | 14 +- .../TroubleshootApiTest.json | 308 ++++---- .../VerifyIpFlowApiTest.json | 36 +- .../ViewNsgRuleApiTest.json | 36 +- .../ApplicationGatewayApiTest.json | 364 ++++----- .../CheckDnsAvailabilityTest.json | 4 +- .../ExpandResourceTest.json | 224 +++--- ...ocalNettworkGatewayOperationsApisTest.json | 34 +- ...NetworkGatewayActiveActiveFeatureTest.json | 730 +++++++++--------- .../VirtualNetworkGatewayBgpRouteApiTest.json | 650 ++++++++-------- ...rkGatewayConnectionOperationsApisTest.json | 202 ++--- ...ConnectionSharedKeyOperationsApisTest.json | 194 ++--- ...alNetworkGatewayConnectionWithBgpTest.json | 384 ++++----- ...atewayConnectionWithIpsecPoliciesTest.json | 4 +- ...rtualNetworkGatewayOperationsApisTest.json | 256 +++--- ...alNetworkGatewayP2SOperationsApisTest.json | 224 +++--- .../CreateEmptyLoadBalancer.json | 32 +- .../LoadBalancerApiNicAssociationTest.json | 204 ++--- .../LoadBalancerApiTest.json | 70 +- ...BalancerApiTestWithDistributionPolicy.json | 94 +-- .../LoadBalancerApiTestWithDynamicIp.json | 70 +- .../LoadBalancerApiTestWithStaticIp.json | 70 +- .../LoadBalancerNatPoolTest.json | 72 +- .../LoadBalancerOutboundNatRuleTest.json | 62 +- .../UpdateLoadBalancerRule.json | 76 +- ...rtMultiIpConfigOnDifferentSubnetFails.json | 28 +- .../NetworkInterfaceApiTest.json | 100 +-- .../NetworkInterfaceApiTestIPv6.json | 100 +-- .../NetworkInterfaceDnsSettingsTest.json | 62 +- ...orkInterfaceDnsSettingsTestIdnsSuffix.json | 62 +- ...faceEffectiveNetworkSecurityGroupTest.json | 52 +- ...etworkInterfaceEnableIPForwardingTest.json | 76 +- .../NetworkInterfaceMultiIpConfigTest.json | 100 +-- ...workInterfaceNetworkSecurityGroupTest.json | 88 +-- ...nterfaceWithAcceleratedNetworkingTest.json | 24 +- .../NetworkSecurityGroupApiTest.json | 44 +- .../NetworkSecurityGroupWithRulesApiTest.json | 36 +- .../PublicIpAddressApiTest.json | 26 +- .../PublicIpAddressApiTestIPv6.json | 74 +- ...ApiTestWithIdletTimeoutAndReverseFqdn.json | 36 +- .../SecurityRuleWithRulesApiTest.json | 82 +- .../SubnetApiTest.json | 34 +- .../SubnetResourceNavigationLinksTest.json | 24 +- .../Networks.Tests.UsageTests/UsageTest.json | 24 +- .../VirtualNetworkPeeringApiTest.json | 106 +-- .../VirtualNetworkApiTest.json | 44 +- ...NetworkCheckIpAddressAvailabilityTest.json | 62 +- .../VirtualNetworkPeeringTest.json | 104 +-- 96 files changed, 4082 insertions(+), 4082 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index 41d56c39d77b..c90d66618049 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 9f1f1e8233ad..0d03fdb6250b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index e8045406bdd2..bd443a53e6ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index fc3756c3a85c..2c1a98ed6570 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index abc449435cb7..2343de8f650a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index d76a89158bb8..bfb318f6ef31 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index a164c1a3195c..bc9057da8c35 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index e90bf7aad7ff..7bc95fedbe54 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json index 7b51902196c4..0a2e78ddd7e3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9607\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6636e9ed-13b1-43c5-a732-2887eca688b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "7e286ad3-e71a-4d8b-806f-ca8598fdd719" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip219\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2885\",\r\n \"etag\": \"W/\\\"216e9617-87f7-4b32-b6fa-5142ab44799b\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "e80bc784-fc35-4952-b020-e1621d0bf8a7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json index a69ada7e46b9..1992ecada87d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn95\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "39693354-72da-4b98-912c-0543840dabb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "74ff459b-e193-46be-957b-5dc4b1502e9c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2603\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3745\",\r\n \"etag\": \"W/\\\"e31795eb-9431-42b9-96d8-fc44fbb6b67a\\\"\",\r\n \"id\": \"/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -929,7 +929,7 @@ "8b8876a7-f4cb-4d78-811c-e45cd8fe3c30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json index 9f3d7f1636b1..8ab6f8f85bb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5539\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "4c4ef2f1-1edb-4cc5-ba59-8747661ac781" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "81c704c5-1a6c-4dc9-bf88-74afe2a418c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6468\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2379\",\r\n \"etag\": \"W/\\\"09124712-1dc7-43e1-a2e6-3126e9a76e54\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2188,8 +2188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2924\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "8efdc1fe-e795-43dd-9479-ded9e5a47ad9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,8 +2258,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2313,8 +2313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2371,8 +2371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2435,8 +2435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2487,7 +2487,7 @@ "ac9b713b-6eff-4e4c-ba24-0d82224e4a79" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,8 +2505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2560,8 +2560,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2682,8 +2682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7345\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn4669\",\r\n \"etag\": \"W/\\\"f16b3546-733c-405b-9c3e-542b5dacf471\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2731,7 +2731,7 @@ "d9756ef5-b2b2-4814-9c1c-e70e981d4e9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,8 +2749,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2807,8 +2807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json index 5a9a58b22790..bf4dec1f61d3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8223\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d51a812f-0f0f-43b5-a4c8-0c8be66ddd86" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3362\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn637\",\r\n \"etag\": \"W/\\\"b12f0d00-284c-4afc-84d5-bfa2ac1437de\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "882e78bc-fa42-4b1b-85de-954de4f8fbd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json index d18ba0cde08c..8d0a6f72550e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json @@ -1637,7 +1637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1678,7 +1678,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1706,7 +1706,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1747,7 +1747,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1775,7 +1775,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1816,7 +1816,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,7 +1844,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1885,7 +1885,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,7 +1913,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1964,7 +1964,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2015,7 +2015,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2066,7 +2066,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2117,7 +2117,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2171,7 +2171,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2225,7 +2225,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2279,7 +2279,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2333,7 +2333,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2453,7 +2453,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2573,7 +2573,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2614,7 +2614,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2642,7 +2642,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2683,7 +2683,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2711,7 +2711,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2752,7 +2752,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2780,7 +2780,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2849,7 +2849,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3161,7 +3161,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3215,7 +3215,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3269,7 +3269,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3389,7 +3389,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3449,7 +3449,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3509,7 +3509,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3547,7 +3547,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3575,7 +3575,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3613,7 +3613,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3641,7 +3641,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3679,7 +3679,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3707,7 +3707,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3745,7 +3745,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3773,7 +3773,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3833,7 +3833,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3893,7 +3893,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3953,7 +3953,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json index e31e6dd1e481..c0516ccd4ff6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8029\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "994ef8d3-0ac7-4a32-90bd-0df1f017983f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "28ad7faf-ccb1-45c9-b3a5-bee442bb02ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9892\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5051\",\r\n \"etag\": \"W/\\\"e390030a-9b9c-4215-9f89-6e13f66b5e5f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "9cdb43a7-671b-4bfa-a7ff-4debe63a5560" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json index 943c588a56a7..d2e6d376615f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json @@ -341,7 +341,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3075\"\r\n }\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -376,7 +376,7 @@ "80c4066a-ebd2-4caa-aaad-68871f8585ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,12 +404,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -458,7 +458,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -512,7 +512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -547,7 +547,7 @@ "e2d620bb-8279-45da-b8de-5a21a32126b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,12 +575,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -629,7 +629,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -683,7 +683,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualNetworks/azsmnet7824/subnets/azsmnet5000\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062\"\r\n }\r\n },\r\n \"name\": \"azsmnet7651\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet6511\",\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -718,7 +718,7 @@ "bfdd585b-89c3-4940-9896-4253781658b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,12 +746,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -800,7 +800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json index cc669591681f..65eb1d7665b2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8464\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d56c878a-38f1-4da1-ae6e-ddf675e0fb70" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9da20380-b57e-47ac-9bc1-443d5399f32a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9679\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7187\",\r\n \"etag\": \"W/\\\"da8250cc-8608-4a5f-be2a-6da45670caf0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "de247dca-53d2-4573-94cc-01e65fd1fc7f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json index f9ec7b96f0e7..f12a62aa579f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1593\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d7c2562b-e785-415a-9688-fef7ccbaa06d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9cbff61d-7049-4ed5-8f85-7ee3c41f919f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5437\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7677\",\r\n \"etag\": \"W/\\\"7d8534a4-69a9-4cee-b681-077fca187496\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "3a9d081b-8a92-401d-a802-6e73054d3a41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json index c51908d49888..5578452f9551 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json @@ -407,7 +407,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9021\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -448,7 +448,7 @@ "c3ff3024-263e-4233-bb1e-5f70638c0791" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -476,7 +476,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -527,7 +527,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "e237b881-ddbc-4325-aa80-228a59600b22" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -815,7 +815,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -875,7 +875,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3879\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn936\",\r\n \"etag\": \"W/\\\"15a0ea2d-97d4-4630-a984-5254777a1a75\\\"\",\r\n \"id\": \"/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualNetworks/vn3782/subnets/sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -913,7 +913,7 @@ "4e22ec02-1666-463b-bb77-96399ed3431b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,7 +941,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json index 7eb4047d430c..0b79ff8a3a58 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9166\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "ea8294d9-40db-47e5-b805-ef87b4a12e2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "9a33cc62-b116-4432-b93f-81126bd08197" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,8 +984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3443\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8501\",\r\n \"etag\": \"W/\\\"10a352e0-7b29-4928-a52a-679aedb25eb6\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1033,7 +1033,7 @@ "18f5cc6d-346e-4f66-b765-573eb950e1a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,8 +1051,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1109,8 +1109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json index 7a928f3972ab..a8b217a38c22 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3046\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -420,7 +420,7 @@ "a80a4050-fd45-499d-9ed3-fd2e55db1d66" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,8 +438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -493,8 +493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -667,7 +667,7 @@ "403bb37b-9d4f-4711-a2af-20e373c1d7dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,8 +685,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -740,8 +740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3834\",\r\n \"etag\": \"W/\\\"f18e1229-16c3-4246-9af5-d2dfe51925f0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -911,7 +911,7 @@ "7e328178-6311-4522-8e21-9413a3451485" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,8 +929,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json index 69a4cc544414..123ecc068932 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6298\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -603,7 +603,7 @@ "84da3aac-dd98-400f-b27d-da784d0989da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,8 +621,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -850,7 +850,7 @@ "73697911-5120-4e19-b0e5-7f182991944f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,8 +868,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn6013\",\r\n \"etag\": \"W/\\\"cfe5e54a-75df-4ad2-a5a2-8fe583ed14be\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "4347fe14-c13e-4892-9de8-1c974820ecde" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1112,8 +1112,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1170,8 +1170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json index 4faa0edcb4c3..dcea29f91250 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn3213\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "8654168d-aa01-415e-b701-740a896b258e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "4a5504d2-1005-4476-9b4b-17b4fe52d078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"875dc796-a63c-40a7-adcd-61639d94c346\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878\",\r\n \"location\": \"southeastasia\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn3213\",\r\n \"etag\": \"W/\\\"1fa85aa4-d945-4932-8271-c9b2ccda90e7\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213\"\r\n }\r\n },\r\n \"name\": \"ip2684\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "303a1a67-97e6-4deb-a885-e58f8a9fc538" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1112,8 +1112,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2308,8 +2308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2344,7 +2344,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2372,8 +2372,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2408,7 +2408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2436,8 +2436,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2466,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2494,8 +2494,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,7 +2524,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json index 763d211ad96d..d7067d72862a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "bbf2ee81-a708-465f-ab38-0bbf854c6397" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6347\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip23520\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a6539b36-087c-46fc-885d-73bfaa84757d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7139\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip21965\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "98169df6-ba37-4496-bee5-79f47beeb013" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json index 82ddcb931ba2..bf21199a5dbf 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "337fb129-529f-4643-a826-b3ed73bb1b7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9564\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "f3f1a2c0-4e36-4695-a3fd-061b0131e522" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "102888f0-a1bd-4ca8-a6d5-18908a0b0516" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json index e2139287c0b3..a4f941794281 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "2dc7ea7b-d165-45b3-9978-ac843843a8aa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5746\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5961\",\r\n \"etag\": \"W/\\\"bd2aed07-e14c-40f0-a7dd-4b22b6185f61\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a450fac6-ae9c-41fd-bc66-148f9cda4883" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index f568bcf40d9b..41b926cf4eca 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -492,8 +492,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8133\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -544,7 +544,7 @@ "5f63c140-65af-4671-8059-f064fabc83be" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,8 +562,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -617,8 +617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -675,8 +675,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -739,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -791,7 +791,7 @@ "e6754412-902f-4285-9d98-e3abea367247" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,8 +809,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -864,8 +864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -986,8 +986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7212\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7804\",\r\n \"etag\": \"W/\\\"b30468c9-5ebf-4f38-bea7-a6a2354ae10e\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1035,7 +1035,7 @@ "76e05b02-e233-4f14-8a86-6d87844e90a6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,8 +1053,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1111,8 +1111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3683,8 +3683,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7945\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -3735,7 +3735,7 @@ "304afb2c-100c-4420-96f6-519e50214408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,8 +3753,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3808,8 +3808,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,8 +3866,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3930,8 +3930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3982,7 +3982,7 @@ "f124a6aa-8ff4-44de-9a2c-55cc8d035926" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4000,8 +4000,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4055,8 +4055,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4113,8 +4113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4177,8 +4177,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6968\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2271\",\r\n \"etag\": \"W/\\\"daaa0816-ade5-4405-8b35-96b32c5610ce\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -4226,7 +4226,7 @@ "1780921b-6db3-46d5-bde3-139d1615b367" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4244,8 +4244,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4302,8 +4302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json index 68ccfc09256c..696c3e77e0d5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn4808\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "47a47f5f-fa54-4ac3-b001-4cc476eff4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "26eed63d-ddfd-4113-9aa8-e8bc80362e13" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9690\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8395\",\r\n \"etag\": \"W/\\\"055220a9-8c65-4920-9ab2-28fc8ebfd619\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "d76e9f46-d499-4819-801b-45ff74cfc2a5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json index 38a91b91e568..78397188f46d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json @@ -530,8 +530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2658\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -572,7 +572,7 @@ "06fa6a94-8bba-4693-a01f-ce4143272113" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,8 +600,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -707,8 +707,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -768,8 +768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -810,7 +810,7 @@ "2ee238c4-cbf5-4e03-8fa8-c934e7c46334" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -838,8 +838,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -945,8 +945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1006,8 +1006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7639\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3505\",\r\n \"etag\": \"W/\\\"938ab6d1-5c0f-47f1-89ee-6dcdabe7d802\\\"\",\r\n \"id\": \"/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualNetworks/vn6769/subnets/sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "2ae3f188-e69c-4a4b-a4ad-2821589e07f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1073,8 +1073,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json index d7edb379779d..86a60e40872e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"sn18098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"sn24269\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "44fe5922-bec0-4e35-8656-6d00f3c019a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"gwIp3235\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"fIp916\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"fPort5719\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"pool8495\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\"\r\n },\r\n \"name\": \"setting4841\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendIPConfigurations/fIp916\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendPorts/fPort5719\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"listener418\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendAddressPools/pool8495\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendHttpSettingsCollection/setting4841\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/httpListeners/listener418\"\r\n }\r\n },\r\n \"name\": \"rule4776\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -675,7 +675,7 @@ "0f1710a9-9b53-4323-9afd-6b59429cf0ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,8 +693,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,8 +988,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1106,8 +1106,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1165,8 +1165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1224,8 +1224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,8 +1283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1342,8 +1342,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1401,8 +1401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,8 +1460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1519,8 +1519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1578,8 +1578,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1637,8 +1637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1696,8 +1696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1755,8 +1755,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1814,8 +1814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1873,8 +1873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1932,8 +1932,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1991,8 +1991,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2050,8 +2050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2109,8 +2109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2168,8 +2168,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,8 +2227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2286,8 +2286,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2345,8 +2345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2404,8 +2404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2460,8 +2460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2519,8 +2519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,8 +2584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2649,8 +2649,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3681\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2702,7 +2702,7 @@ "38870625-8082-4853-b530-4a242e83efd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,8 +2720,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2776,8 +2776,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2835,8 +2835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,8 +2900,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn24269\",\r\n \"etag\": \"W/\\\"150ae5ac-97a7-41fb-b256-0a2fca784095\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn24269\"\r\n }\r\n },\r\n \"name\": \"ip9271\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2950,7 +2950,7 @@ "0c0ac95e-e324-4552-add6-9caaa3218d5c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2968,8 +2968,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3027,8 +3027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json index d933f67f40c9..4d2d9be26cb6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9414\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "78f60a92-eefa-40f5-93cb-43b8a8ee7167" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,8 +687,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn8550\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -740,7 +740,7 @@ "0ec17ca2-2425-4609-a936-11bb1591b92d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,8 +758,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -873,8 +873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn8550\",\r\n \"etag\": \"W/\\\"a366937d-2fa2-40b4-8aea-7f0fe553ac57\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550\"\r\n }\r\n },\r\n \"name\": \"ip9581\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -988,7 +988,7 @@ "82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,8 +1006,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1065,8 +1065,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json index 27b1188e2c10..1e74dd9b2d3f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9086\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "da9b1a55-b312-468d-8096-46f9d2d84c31" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "ace514d6-4d1a-4531-adaa-22341e2af8ff" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json index 86321f1b9e71..25e49b104910 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2213\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "c67351d2-991e-4b2b-a4a2-c4255eb4fd0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9982\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "cf87eff0-e701-4779-9199-51c0843ed22a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json index aa3f952450a4..3c9acdd0c005 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6753\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn1959\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "40dc0178-41da-4050-b3de-1b9cda61769f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1959\",\r\n \"etag\": \"W/\\\"315b667b-e5a5-4bf7-9ca1-3c756c990556\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959\"\r\n }\r\n },\r\n \"name\": \"ip8495\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "fdc47062-3147-4d64-a558-aeddaa06d489" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json index 65efff3fd90c..7ce305e78d3e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json @@ -462,8 +462,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8427\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -504,7 +504,7 @@ "5a7be3e7-4917-4fc3-adb4-f0f30862b743" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,8 +532,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,8 +584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,8 +639,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -700,8 +700,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3544\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -742,7 +742,7 @@ "97e39527-4fe2-4f11-a000-30b224522828" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -770,8 +770,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -822,8 +822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9831\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7797\",\r\n \"etag\": \"W/\\\"00863957-ff3e-4def-b190-536068ab6b8a\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn3361/subnets/sn7797\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -987,7 +987,7 @@ "63fc8e68-5baa-42d3-a024-786c8ac4c237" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,8 +1005,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json index 3c51a0f0c79f..caec2953f73e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7283\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "d98b0164-8811-4992-bc62-12ae2f6a4d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn2617\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2617\",\r\n \"etag\": \"W/\\\"07fd8634-fb1c-4560-89b4-44446884430c\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617\"\r\n }\r\n },\r\n \"name\": \"ip6264\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "9b7ae149-a4b7-4c0a-9785-a2eab99093b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json index b206bfd84303..517e17290055 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5561\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "e96a5be1-467d-476e-9ba7-f0f30a9dd71c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn7161\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "99c8c91d-bf0a-4441-8d95-a5c0225e8a8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn7161\",\r\n \"etag\": \"W/\\\"92758a28-66c5-46b6-b246-72ef99ff89fd\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161\"\r\n }\r\n },\r\n \"name\": \"ip6687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "078149f6-abf2-45e7-94a3-6c8ff2392c8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json index 808d6f748fe9..46d6de9d08b1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2964\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "1c3a79d8-d438-43d2-a925-ddaaea134ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "084b22a4-d2a9-487c-8839-bcc275001c17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json index b324bef7e566..e2341e061f0f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2011\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "3f7e6f04-1fe3-44ef-b97e-70134912daa5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5066\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "88051c1a-684c-4042-ac22-1252651e0fa9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index 15864e8cbfd9..7ecb02018219 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -525,8 +525,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8116\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -577,7 +577,7 @@ "d265798f-874e-433f-b8ab-3641f409dd93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,8 +595,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,8 +650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -708,8 +708,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -772,8 +772,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -824,7 +824,7 @@ "026fbcdb-fd10-4808-9f9c-d173cbd731ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,8 +842,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -897,8 +897,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -955,8 +955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,8 +1019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3862\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2745\",\r\n \"etag\": \"W/\\\"4020128b-b57c-4960-8176-a5d57670fcbf\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "9c622174-7a10-47b6-8f63-24820e573a2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,8 +1086,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1144,8 +1144,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index e6274efd6a1e..742ef8be988d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -119,8 +119,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3148\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -161,7 +161,7 @@ "a0947abc-4d83-40ff-b67e-fc6cca95679b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,8 +189,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -241,8 +241,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -296,8 +296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -357,8 +357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -399,7 +399,7 @@ "393cefed-f783-4c10-9d9f-95056de294cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,8 +427,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -479,8 +479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,8 +534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,8 +595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9759\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7781\",\r\n \"etag\": \"W/\\\"a8b9d9fd-ede0-4d06-88a3-d2b857e42136\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -634,7 +634,7 @@ "b3e5bcca-6047-432c-9abc-0ec1597b463a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,8 +662,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -717,8 +717,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json index 483ad99cb2b6..1f5782cd10a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -112,7 +112,7 @@ "9351b98e-77c4-44e2-bf8e-d990ae99baad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,8 +130,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,8 +195,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -257,8 +257,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,8 +316,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -412,7 +412,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -425,7 +425,7 @@ "fb2a42c3-0444-493f-a0fa-9621aa519be3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,8 +443,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json index 2a1a14579d64..e5e91146f35e 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json @@ -665,8 +665,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -715,7 +715,7 @@ "e5869a87-83b3-42bd-bf33-e9f605fae491" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +733,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"10.1.3.6\"\r\n}", "RequestHeaders": { @@ -906,7 +906,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -919,7 +919,7 @@ "9cc07329-1fde-4065-a053-e40cec04b207" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,8 +937,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -980,7 +980,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -993,7 +993,7 @@ "7631bf51-f6c8-44ce-b10f-eb7a4f2b911a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,8 +1011,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json index c41050e1476a..5004e272b142 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -1097,7 +1097,7 @@ "d475e169-eb3a-4ff1-85fd-1034f270cd84" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1115,8 +1115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1168,7 +1168,7 @@ "538eea79-b0ec-4dba-92e0-7c509ef0b7ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1186,8 +1186,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1242,8 +1242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1366,8 +1366,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1403,7 +1403,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1416,7 +1416,7 @@ "ec9bb288-408a-41d0-ae84-f94fd6fedf27" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,8 +1434,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1496,8 +1496,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1552,8 +1552,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1605,7 +1605,7 @@ "4b310bbd-c281-4968-9e9a-b77e26e00f6e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,8 +1623,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,8 +1679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1738,8 +1738,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1862,8 +1862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1896,7 +1896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1909,7 +1909,7 @@ "c0703af9-ffc0-44bb-a758-a3ad480b26ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1927,8 +1927,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2017,7 +2017,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2030,7 +2030,7 @@ "8702f3e3-43b6-4375-91cb-2702b45111c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2048,8 +2048,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json index 2bd834c02f21..adeee1464ac0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "35da7f93-8db2-43da-aaee-cbee33c4e92f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -510,7 +510,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -523,7 +523,7 @@ "2b8e410d-5522-437c-8e5f-16426f3e2b5a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,8 +541,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json index 7d7c856175ba..821324b2d08f 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "55728bff-dfad-4ff4-8aad-4ed50245308d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9901\",\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet9901\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -240,7 +240,7 @@ "5fc2c695-c0aa-4819-8ab7-2398c2fc9815" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,8 +258,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet640\",\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -313,7 +313,7 @@ "b7ab5b3a-9865-44ad-b846-198e40e424bf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,8 +331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -444,8 +444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -566,8 +566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,8 +630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,8 +688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -807,8 +807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -895,7 +895,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -908,7 +908,7 @@ "0b9039be-45a5-44ea-a8b3-7fe457a1cd33" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,8 +926,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json index 024c07448d3a..6b8c7b0306d1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet1701\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "db718a7a-2819-4a41-bffb-5feb27c54cd5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616\"\r\n }\r\n },\r\n \"name\": \"azsmnet5364\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "3effea22-c97a-441b-bb82-cfb69337e2da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json index c902904a598a..d98a8c9107da 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet8055\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "76a65d58-ba0b-4e45-bfe8-c136db94de75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet7452\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "e16412d4-be93-44d3-adb5-c57c17c4b04b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -953,7 +953,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -966,7 +966,7 @@ "7ceea8ac-c52e-4ae5-9538-04668b6876d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,8 +984,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1072,7 +1072,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1085,7 +1085,7 @@ "eb05162d-43fa-4257-a64e-cf2042a84145" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,8 +1103,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1158,8 +1158,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1191,7 +1191,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1204,7 +1204,7 @@ "1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,8 +1222,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1277,8 +1277,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json index 8760a80a1ab2..02ee66eae483 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9157\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet9228\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "bc0aef85-92ff-4497-91b2-395dbe161889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"azsmnet9790\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "47dc13fe-9612-4fd4-87bd-175568585ebe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n },\r\n \"name\": \"azsmnet4509\"\r\n}", "RequestHeaders": { @@ -844,7 +844,7 @@ "6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,8 +862,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -917,8 +917,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -975,8 +975,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1008,7 +1008,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1021,7 +1021,7 @@ "c12dc6cd-d1e1-4085-8d86-3eac68fdc33d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,8 +1039,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,8 +1094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json index cd7c02ce37cb..1b27c1501acd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json @@ -726,8 +726,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -776,7 +776,7 @@ "212074f1-8a6c-46e3-ba4f-d964fbe2c7c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceGroupName\": \"azsmnet2771\"\r\n}", "RequestHeaders": { @@ -902,7 +902,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -918,7 +918,7 @@ "977c0f9b-3ef5-4b33-a841-46dbcee82fe1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json index 382e7c76626d..90da17bb11b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet15\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "1ca0e867-c51b-4fef-851d-418988eaf043" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -366,7 +366,7 @@ "1cbebe68-0826-45e7-9f5d-870381f3a44c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,8 +384,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -440,8 +440,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -564,8 +564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -629,8 +629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376\"\r\n }\r\n },\r\n \"name\": \"azsmnet1522\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "df09e118-3cc2-460c-8c31-14fef8a5b18d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,8 +700,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,8 +759,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -818,8 +818,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -936,8 +936,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -995,8 +995,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1113,8 +1113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1172,8 +1172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,8 +1231,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1290,8 +1290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1349,8 +1349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,8 +1408,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,8 +1467,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,8 +1526,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1585,8 +1585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1644,8 +1644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1703,8 +1703,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1762,8 +1762,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1821,8 +1821,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,8 +1880,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1939,8 +1939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1998,8 +1998,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,8 +2057,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2116,8 +2116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2175,8 +2175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2234,8 +2234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2293,8 +2293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,8 +2411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2470,8 +2470,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2529,8 +2529,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2588,8 +2588,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2647,8 +2647,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2706,8 +2706,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2765,8 +2765,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,8 +2824,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2883,8 +2883,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2942,8 +2942,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3001,8 +3001,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,8 +3060,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3119,8 +3119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,8 +3178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3237,8 +3237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3296,8 +3296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3414,8 +3414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3473,8 +3473,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,8 +3532,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,8 +3591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3650,8 +3650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3709,8 +3709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3768,8 +3768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3827,8 +3827,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3886,8 +3886,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3945,8 +3945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4004,8 +4004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,8 +4063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4119,8 +4119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4175,8 +4175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4237,8 +4237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -4287,7 +4287,7 @@ "e7ecc344-7735-4bcd-876b-2ba738043a92" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4429,8 +4429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Storage/storageAccounts/azsmnet62\",\r\n \"storagePath\": \"https://nwtestdbdzq4xsvskrei6.blob.core.windows.net/vhds\"\r\n }\r\n}", "RequestHeaders": { @@ -4472,7 +4472,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4485,7 +4485,7 @@ "de538d0a-5abe-455c-87cf-ad8890184879" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,8 +4503,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,8 +4562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json index 5d04662ccffa..b1352a40cb04 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json @@ -714,8 +714,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -764,7 +764,7 @@ "c8656941-8f2e-429f-a1d8-e8b3f2cb69f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,8 +847,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,8 +912,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -977,8 +977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet3313\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000\"\r\n }\r\n ],\r\n \"resourceGuid\": \"a62c6ffb-62da-4576-82e9-a68a189ac62e\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg\",\r\n \"name\": \"azsmnet8060-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -1092,7 +1092,7 @@ "f6cbe102-c2a0-4c0f-89bf-f1b687a94704" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,8 +1110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,8 +1166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Compute/virtualMachines/azsmnet8060\",\r\n \"direction\": \"Outbound\",\r\n \"protocol\": \"TCP\",\r\n \"localPort\": \"80\",\r\n \"remotePort\": \"80\",\r\n \"localIPAddress\": \"10.17.3.4\",\r\n \"remoteIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -1209,7 +1209,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1222,7 +1222,7 @@ "4264c957-2faa-4692-8c38-242a692e9799" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json index 1706ef515653..9a621745b15b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json @@ -616,8 +616,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -666,7 +666,7 @@ "45676481-77c2-4ebe-bceb-39d71832bc4b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,8 +879,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet1718\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197\"\r\n }\r\n ],\r\n \"resourceGuid\": \"f93d2782-b4c9-4d0b-86d0-598825130420\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg\",\r\n \"name\": \"azsmnet2019-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -994,7 +994,7 @@ "6311637f-6802-48cb-b2df-da99aef9e651" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,8 +1068,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Compute/virtualMachines/azsmnet2019\"\r\n}", "RequestHeaders": { @@ -1111,7 +1111,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1124,7 +1124,7 @@ "eb1dc242-8ea0-44d9-abb5-711a6565abdb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 211e7bf6dd4c..0efc306131f2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "71222849-9014-4ff9-9246-f27a40349b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -431,7 +431,7 @@ "8248159d-4703-478e-a374-caf55cf6018e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,8 +449,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -567,8 +567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -626,8 +626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -685,8 +685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -744,8 +744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -803,8 +803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -921,8 +921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -980,8 +980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,8 +1098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1157,8 +1157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1216,8 +1216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1275,8 +1275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1334,8 +1334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,8 +1393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1452,8 +1452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1511,8 +1511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1570,8 +1570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1629,8 +1629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1747,8 +1747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1806,8 +1806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1865,8 +1865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1924,8 +1924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2039,8 +2039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2098,8 +2098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2163,8 +2163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2228,8 +2228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2265,7 +2265,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2293,8 +2293,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2324,7 +2324,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2402,7 +2402,7 @@ "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2420,8 +2420,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2476,7 +2476,7 @@ "4a050275-6023-4176-b8b9-1fb4c5495a05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2494,8 +2494,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2553,8 +2553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2677,8 +2677,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2727,7 +2727,7 @@ "31c62262-91c7-45ef-8c21-7d717c337a7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,8 +2745,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "5183ed56-0494-4453-a87f-f2fb9526ff4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,8 +2819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2878,8 +2878,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2943,8 +2943,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,8 +3002,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3120,8 +3120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3179,8 +3179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3238,8 +3238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3297,8 +3297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3356,8 +3356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3415,8 +3415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3474,8 +3474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,8 +3533,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3592,8 +3592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3651,8 +3651,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3710,8 +3710,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3769,8 +3769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3828,8 +3828,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3887,8 +3887,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3946,8 +3946,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4005,8 +4005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4064,8 +4064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4120,8 +4120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4238,8 +4238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4297,8 +4297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4356,8 +4356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,8 +4415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4474,8 +4474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4530,8 +4530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4564,7 +4564,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4574,7 +4574,7 @@ "796a9be1-c827-490e-b609-a4ad9394d044" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4592,8 +4592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4626,7 +4626,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4639,7 +4639,7 @@ "a3f3b726-de0a-4182-9301-e00e9195aba1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4657,8 +4657,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,8 +4716,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,8 +4775,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4834,8 +4834,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4890,8 +4890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4924,7 +4924,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4937,7 +4937,7 @@ "2f925788-a452-4929-b3ca-ea32aa3a2049" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4955,8 +4955,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5014,8 +5014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5073,8 +5073,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json index 0efb805f49d7..6a6241b721d6 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -54,7 +54,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json index 27c907ea12ce..f60d98a40441 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3972\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "63049a58-9deb-4787-8a83-b3a45a2c5fe7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet8767\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "9f8c9c9e-889f-4fc1-b65d-8f015db88f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "95323aac-1af9-4bea-9208-20a3ff24e430" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet3666\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet3666\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"6b94f5c4-a02b-433e-8301-ad3edf808428\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "b970f182-e80e-40bd-ae0b-8565ec8d6362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "34e7814c-9cc7-488b-a77c-b8fdae0a8309" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"2dab4ece-7a8f-44b3-b328-2f6b34c8914c\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "57608f26-9c56-4a31-8690-b11106b25ef7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet7454\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet7454\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"044c708c-5c2f-434a-b7db-782cab3e1457\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "9735026c-2b5d-4417-885b-5eb7a95dddf5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752\"\r\n }\r\n },\r\n \"name\": \"azsmnet8571\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/probes/azsmnet359\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet8160\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n },\r\n \"name\": \"azsmnet359\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet3666\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7454\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "78dbe39e-320d-43c2-89f7-2599d29feafe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=InboundNatRules%2FbackendIPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=InboundNatRules%2FbackendIPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=BackendAddressPools%2FbackendIPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=BackendAddressPools%2FbackendIPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2069,8 +2069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2133,8 +2133,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01&$expand=IPConfigurations%2FSubnet", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01&$expand=IPConfigurations%2FSubnet", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,8 +2197,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2016-12-01&$expand=IPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2017-03-01&$expand=IPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2261,8 +2261,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01&$expand=IPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01&$expand=IPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,8 +2325,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2358,7 +2358,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2371,7 +2371,7 @@ "c194265f-1af9-4890-9dd6-2f6bf311b1f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2389,8 +2389,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,8 +2444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2498,8 +2498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2531,7 +2531,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2544,7 +2544,7 @@ "f449f276-f45b-4305-915f-47738bf7f6fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,8 +2562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,8 +2617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2650,7 +2650,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2663,7 +2663,7 @@ "8d49efb4-581f-4f95-a034-432313b88536" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2681,8 +2681,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2736,8 +2736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2769,7 +2769,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2782,7 +2782,7 @@ "b5d64b99-24d4-4fea-a1e4-60997d40b62c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,8 +2800,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2855,8 +2855,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2888,7 +2888,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2901,7 +2901,7 @@ "bf7ed969-af60-45e7-8c7b-f8d27b559259" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,8 +2919,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json index 232c2b5408a0..2f8b5baed7d9 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9f9e478c-17a1-4c67-a1d8-6f5dbe36c7da\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"daf1ad3d-f575-4d15-84e5-170a27964e4d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "bf766e1a-499b-4db3-9a49-7af4156734ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json index 082078034fb3..83aac86fff61 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4458\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "30d02c07-62ad-4558-98d6-1cd51b453cfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet29\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "6a608085-a8b7-4e79-91fc-57eef8cbe0b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "3fe7da97-a9b9-4adf-a265-5597f385db0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n }\r\n },\r\n \"name\": \"azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "5414d5de-e04b-4b9a-ba01-72731d714424" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.4,10.0.0.5\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "190d20ca-f34d-4676-a46f-939e0784cec4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "60437720-65a0-4ec6-8b38-cace67f6995d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,8 +1136,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1191,8 +1191,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,8 +1246,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,8 +1356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,8 +1411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1466,8 +1466,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1521,8 +1521,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1576,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1631,8 +1631,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1686,8 +1686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1796,8 +1796,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1851,8 +1851,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1906,8 +1906,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1961,8 +1961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2016,8 +2016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2071,8 +2071,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2126,8 +2126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2181,8 +2181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,8 +2236,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,8 +2291,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2346,8 +2346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2401,8 +2401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2456,8 +2456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2511,8 +2511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,8 +2566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2621,8 +2621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2676,8 +2676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2731,8 +2731,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2786,8 +2786,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2841,8 +2841,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2896,8 +2896,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,8 +2951,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3006,8 +3006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3116,8 +3116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3171,8 +3171,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3226,8 +3226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3281,8 +3281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3336,8 +3336,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3391,8 +3391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3446,8 +3446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3501,8 +3501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3556,8 +3556,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3611,8 +3611,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3666,8 +3666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3727,8 +3727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3782,8 +3782,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3843,8 +3843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3898,8 +3898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,8 +3959,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,8 +4014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4069,8 +4069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4124,8 +4124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4234,8 +4234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,8 +4289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4344,8 +4344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4399,8 +4399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4454,8 +4454,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4509,8 +4509,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4564,8 +4564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,8 +4619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4674,8 +4674,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4729,8 +4729,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4784,8 +4784,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4839,8 +4839,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4894,8 +4894,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4949,8 +4949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5004,8 +5004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5059,8 +5059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5114,8 +5114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5169,8 +5169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5224,8 +5224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5279,8 +5279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5334,8 +5334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,8 +5389,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5444,8 +5444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5499,8 +5499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5554,8 +5554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5609,8 +5609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5664,8 +5664,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5719,8 +5719,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5774,8 +5774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5829,8 +5829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5884,8 +5884,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5939,8 +5939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5994,8 +5994,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6049,8 +6049,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6159,8 +6159,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6214,8 +6214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6269,8 +6269,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6324,8 +6324,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6379,8 +6379,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6434,8 +6434,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6489,8 +6489,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6544,8 +6544,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6599,8 +6599,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6654,8 +6654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6709,8 +6709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6764,8 +6764,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6819,8 +6819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6874,8 +6874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6929,8 +6929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6984,8 +6984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7039,8 +7039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7094,8 +7094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7149,8 +7149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7204,8 +7204,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7259,8 +7259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7314,8 +7314,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7369,8 +7369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7424,8 +7424,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7479,8 +7479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7534,8 +7534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7589,8 +7589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7644,8 +7644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7699,8 +7699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7754,8 +7754,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7809,8 +7809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7864,8 +7864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7919,8 +7919,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7974,8 +7974,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8029,8 +8029,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8084,8 +8084,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8139,8 +8139,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8194,8 +8194,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8249,8 +8249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8304,8 +8304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8359,8 +8359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8414,8 +8414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8469,8 +8469,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8524,8 +8524,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8579,8 +8579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8634,8 +8634,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8689,8 +8689,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8744,8 +8744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8799,8 +8799,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8854,8 +8854,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8909,8 +8909,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8964,8 +8964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9019,8 +9019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9074,8 +9074,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9129,8 +9129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9184,8 +9184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9239,8 +9239,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9294,8 +9294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9349,8 +9349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9404,8 +9404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9459,8 +9459,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9514,8 +9514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9569,8 +9569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9624,8 +9624,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9679,8 +9679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9734,8 +9734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9789,8 +9789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9844,8 +9844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9899,8 +9899,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9954,8 +9954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10009,8 +10009,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10064,8 +10064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json index 5b8d5fb67820..b2744435592a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet545\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "63285282-cbb8-4a5b-876f-aa4b1a163faa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7547\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -241,7 +241,7 @@ "a7656262-acdf-45ca-9be7-124d86e5fff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,8 +259,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -315,8 +315,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -371,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,8 +430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -495,8 +495,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -619,8 +619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "4a9c52ec-5191-49a1-b13c-a1690815ab65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.2.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -808,7 +808,7 @@ "8663122b-5345-4a32-963d-2d0a08729eee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,8 +826,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -882,8 +882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1056,8 +1056,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1121,8 +1121,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1186,8 +1186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n }\r\n },\r\n \"name\": \"azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1239,7 +1239,7 @@ "b132e059-7eb1-469f-914d-25c56708cedf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,8 +1257,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n }\r\n },\r\n \"name\": \"azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1310,7 +1310,7 @@ "6e41a746-ca55-49e5-88f9-fe74998f1c05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,8 +1328,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,8 +1387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1446,8 +1446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1505,8 +1505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1564,8 +1564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1623,8 +1623,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1682,8 +1682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1859,8 +1859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1918,8 +1918,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1977,8 +1977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,8 +2036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2095,8 +2095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2154,8 +2154,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2213,8 +2213,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2272,8 +2272,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2331,8 +2331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,8 +2390,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2449,8 +2449,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2508,8 +2508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2567,8 +2567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2626,8 +2626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2685,8 +2685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2744,8 +2744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2803,8 +2803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2862,8 +2862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,8 +2921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2980,8 +2980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3039,8 +3039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,8 +3098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3157,8 +3157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3216,8 +3216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3275,8 +3275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3334,8 +3334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3393,8 +3393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3452,8 +3452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3511,8 +3511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3570,8 +3570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3629,8 +3629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,8 +3688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3747,8 +3747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3806,8 +3806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3865,8 +3865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3924,8 +3924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3983,8 +3983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4042,8 +4042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4101,8 +4101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4160,8 +4160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4219,8 +4219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4278,8 +4278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4337,8 +4337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4396,8 +4396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4455,8 +4455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4514,8 +4514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4573,8 +4573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,8 +4632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4691,8 +4691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4747,8 +4747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4865,8 +4865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4924,8 +4924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4983,8 +4983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5042,8 +5042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5160,8 +5160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5219,8 +5219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5278,8 +5278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5337,8 +5337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5396,8 +5396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5455,8 +5455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5514,8 +5514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5573,8 +5573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5632,8 +5632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5691,8 +5691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5750,8 +5750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5809,8 +5809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5868,8 +5868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5927,8 +5927,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5986,8 +5986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6045,8 +6045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6163,8 +6163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6222,8 +6222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6281,8 +6281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6340,8 +6340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6399,8 +6399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6458,8 +6458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6517,8 +6517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6576,8 +6576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6635,8 +6635,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6694,8 +6694,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6753,8 +6753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6812,8 +6812,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6871,8 +6871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6930,8 +6930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6989,8 +6989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7048,8 +7048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7107,8 +7107,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7166,8 +7166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7225,8 +7225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7284,8 +7284,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7343,8 +7343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7402,8 +7402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7461,8 +7461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7520,8 +7520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7579,8 +7579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7638,8 +7638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7697,8 +7697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7756,8 +7756,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7815,8 +7815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7874,8 +7874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7933,8 +7933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7992,8 +7992,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8051,8 +8051,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8110,8 +8110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8169,8 +8169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8228,8 +8228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8287,8 +8287,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8346,8 +8346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8402,8 +8402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8458,8 +8458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8520,8 +8520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8576,8 +8576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8638,8 +8638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8691,7 +8691,7 @@ "34bf47da-6691-4dbd-9400-89cb5668f526" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8709,8 +8709,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8762,7 +8762,7 @@ "ad4396c8-658d-4849-afd3-e0f31838df91" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8780,8 +8780,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8836,8 +8836,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8892,8 +8892,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8948,8 +8948,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9004,8 +9004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9041,7 +9041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9069,8 +9069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9100,7 +9100,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9128,8 +9128,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9165,7 +9165,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9193,8 +9193,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9224,7 +9224,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9252,8 +9252,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9289,7 +9289,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9317,8 +9317,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9348,7 +9348,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json index d6ff23ddebdf..37cf76274276 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "4b8f4da0-a5eb-4322-a768-7897aee4afb8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6654\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "5c7f3c04-22aa-4bcb-9b3f-b37081b187cd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -622,7 +622,7 @@ "6058ae5d-6bc6-4d0a-af6f-db9aa1f92372" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "3c0f845a-886c-4824-98d7-99892538c8d2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "d92cddce-5df0-46b3-b974-40633cde5f4a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1115,7 +1115,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,7 +1166,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1217,7 +1217,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1268,7 +1268,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1319,7 +1319,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1370,7 +1370,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1421,7 +1421,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1472,7 +1472,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1523,7 +1523,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1574,7 +1574,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1625,7 +1625,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1676,7 +1676,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1727,7 +1727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1778,7 +1778,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1829,7 +1829,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,7 +1880,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1931,7 +1931,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2033,7 +2033,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2084,7 +2084,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2186,7 +2186,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2237,7 +2237,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2288,7 +2288,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2339,7 +2339,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,7 +2390,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2441,7 +2441,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2492,7 +2492,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2543,7 +2543,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2594,7 +2594,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2645,7 +2645,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2696,7 +2696,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2747,7 +2747,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2798,7 +2798,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2849,7 +2849,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3104,7 +3104,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3155,7 +3155,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,7 +3206,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3257,7 +3257,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3308,7 +3308,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3359,7 +3359,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,7 +3410,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3461,7 +3461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3512,7 +3512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3563,7 +3563,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3614,7 +3614,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3665,7 +3665,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3716,7 +3716,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3767,7 +3767,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3818,7 +3818,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3869,7 +3869,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3926,7 +3926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3977,7 +3977,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4034,7 +4034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -4075,7 +4075,7 @@ "432d7bf3-ed0f-47af-abde-683f1d4d9614" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4103,7 +4103,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n }\r\n}", "RequestHeaders": { @@ -4144,7 +4144,7 @@ "f11e8b40-095e-45e9-a2ac-4e54f2ce0750" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4172,7 +4172,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4223,7 +4223,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4274,7 +4274,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4325,7 +4325,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4382,7 +4382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4433,7 +4433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4490,7 +4490,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4541,7 +4541,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4592,7 +4592,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4643,7 +4643,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4694,7 +4694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,7 +4751,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,7 +4804,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4836,7 +4836,7 @@ "56c95b9b-4460-4322-9a54-fd1d830bfd6b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4845,7 +4845,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4867,7 +4867,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +4918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json index a948a5e446bf..132f707c3425 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6309\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "eb5f29b8-5fab-44b4-b927-5466cfb76a3f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "6e2f0013-ed22-4360-b73f-5bd09a4ace9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -518,7 +518,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -632,7 +632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -692,7 +692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", "RequestHeaders": { @@ -733,7 +733,7 @@ "8c869573-fa12-4c39-b527-1d87586fb4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -761,7 +761,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -812,7 +812,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,7 +863,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,7 +914,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,7 +965,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1016,7 +1016,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1067,7 +1067,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,7 +1169,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1220,7 +1220,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1271,7 +1271,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1322,7 +1322,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1373,7 +1373,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1424,7 +1424,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1475,7 +1475,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,7 +1526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1577,7 +1577,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1628,7 +1628,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,7 +1679,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1730,7 +1730,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1781,7 +1781,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1832,7 +1832,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1883,7 +1883,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1985,7 +1985,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +2036,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2087,7 +2087,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2138,7 +2138,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2189,7 +2189,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,7 +2291,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2342,7 +2342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,7 +2444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2495,7 +2495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2546,7 +2546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2597,7 +2597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2648,7 +2648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2699,7 +2699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,7 +2750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2852,7 +2852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2903,7 +2903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2954,7 +2954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3005,7 +3005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3056,7 +3056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3158,7 +3158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3209,7 +3209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3260,7 +3260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3311,7 +3311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3362,7 +3362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3413,7 +3413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,7 +3464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3515,7 +3515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3566,7 +3566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3617,7 +3617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,7 +3674,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -3715,7 +3715,7 @@ "b8001171-5f00-409e-87fa-e09c8a5b6379" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3743,7 +3743,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3794,7 +3794,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3848,7 +3848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390/ipConfigurations/azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"80eb4542-6628-4989-a71d-39c6f068cd88\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4ab7c1aa-4feb-4aea-8359-f841f6196a5d\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"65b63583-7d30-4f32-acad-93ec0d844814\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -3949,7 +3949,7 @@ "1a59d7cd-2129-4c2a-a110-32a47303d041" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,7 +3977,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4028,7 +4028,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4079,7 +4079,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4130,7 +4130,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4181,7 +4181,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4232,7 +4232,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,7 +4289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyLength\": 50\r\n}", "RequestHeaders": { @@ -4327,7 +4327,7 @@ "b69cde55-32c9-4a0e-af56-dcdb6dbce3c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4336,7 +4336,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4358,7 +4358,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4409,7 +4409,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4460,7 +4460,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4511,7 +4511,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,7 +4562,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,7 +4619,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4670,7 +4670,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4727,7 +4727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "RequestHeaders": { @@ -4765,7 +4765,7 @@ "bb963c2b-266c-4f13-9b03-5fc08f2b72e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json index 6897cd7e9f13..4bb8134e88dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "78d32121-6ff0-4710-a9e8-2f78bea12c93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5521\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "8beafd91-d79d-4589-97b2-5b325389aefc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "a6b8605e-b2cb-41c1-b1aa-e513acca5f3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1100,8 +1100,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,8 +1210,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1265,8 +1265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1320,8 +1320,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1375,8 +1375,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,8 +1430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1485,8 +1485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1540,8 +1540,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,8 +1595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,8 +1650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1705,8 +1705,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1760,8 +1760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1815,8 +1815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1870,8 +1870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1925,8 +1925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,8 +1980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2035,8 +2035,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2090,8 +2090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,8 +2145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,8 +2200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2255,8 +2255,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2310,8 +2310,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2365,8 +2365,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2420,8 +2420,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2475,8 +2475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2530,8 +2530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2585,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2640,8 +2640,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,8 +2695,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,8 +2750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,8 +2805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,8 +2860,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2915,8 +2915,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2970,8 +2970,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,8 +3025,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3080,8 +3080,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3135,8 +3135,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3190,8 +3190,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3245,8 +3245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3300,8 +3300,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,8 +3410,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3465,8 +3465,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3520,8 +3520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3575,8 +3575,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3630,8 +3630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,8 +3685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3740,8 +3740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3795,8 +3795,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3850,8 +3850,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3905,8 +3905,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3960,8 +3960,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4015,8 +4015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4070,8 +4070,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4125,8 +4125,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4180,8 +4180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4235,8 +4235,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4290,8 +4290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4345,8 +4345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4400,8 +4400,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4461,8 +4461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443/ipConfigurations/azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"c71d5327-5c99-4026-ab58-7ffc07376d0e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"63abf0e6-b040-4de6-a636-cbd4774187c7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n },\r\n \"resourceGuid\": \"ba330a4b-c210-44c5-97af-d1e51b107ff8\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true\r\n }\r\n}", "RequestHeaders": { @@ -4513,7 +4513,7 @@ "eb58d262-bbdf-45a2-a70d-70193aa3ee9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4531,8 +4531,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4586,8 +4586,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4641,8 +4641,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,8 +4696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,8 +4751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4867,8 +4867,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,8 +4928,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4982,8 +4982,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5015,7 +5015,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -5028,7 +5028,7 @@ "51dc46ba-57d0-4629-b51f-aac4c79cd525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5046,8 +5046,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5156,8 +5156,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5211,8 +5211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5266,8 +5266,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json index 7568b934988f..36fd5f5e3db8 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5537,4 +5537,4 @@ "Variables": { "SubscriptionId": "87a5ac72-534b-4d65-a553-b9b956d6b8d8" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json index 4ff06a86938b..44f72614b643 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5620\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "9efcedaf-872b-4cd4-b72f-8eee2e7e207c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "4710b952-c826-4161-8f27-50bdd7631b76" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -751,7 +751,7 @@ "2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -779,7 +779,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -830,7 +830,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -881,7 +881,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -932,7 +932,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -983,7 +983,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1034,7 +1034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1085,7 +1085,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1136,7 +1136,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1187,7 +1187,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1238,7 +1238,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1289,7 +1289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1340,7 +1340,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1391,7 +1391,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1442,7 +1442,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1493,7 +1493,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1544,7 +1544,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,7 +1595,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1697,7 +1697,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1748,7 +1748,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1799,7 +1799,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1850,7 +1850,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1901,7 +1901,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1952,7 +1952,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2003,7 +2003,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2054,7 +2054,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2105,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2156,7 +2156,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2207,7 +2207,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2258,7 +2258,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2309,7 +2309,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2360,7 +2360,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,7 +2411,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2462,7 +2462,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2564,7 +2564,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2615,7 +2615,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2666,7 +2666,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,7 +2717,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2768,7 +2768,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2819,7 +2819,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2870,7 +2870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,7 +2921,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2972,7 +2972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3023,7 +3023,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3074,7 +3074,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3125,7 +3125,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3176,7 +3176,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3227,7 +3227,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3278,7 +3278,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3380,7 +3380,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3431,7 +3431,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3482,7 +3482,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,7 +3533,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3584,7 +3584,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3635,7 +3635,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3692,7 +3692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3743,7 +3743,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3800,7 +3800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3857,7 +3857,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,7 +3959,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4010,7 +4010,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4061,7 +4061,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4112,7 +4112,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4163,7 +4163,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4214,7 +4214,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4265,7 +4265,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4316,7 +4316,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4367,7 +4367,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4418,7 +4418,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4469,7 +4469,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4520,7 +4520,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4571,7 +4571,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4622,7 +4622,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4673,7 +4673,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4724,7 +4724,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,7 +4775,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4826,7 +4826,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4877,7 +4877,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,7 +4928,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4979,7 +4979,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5030,7 +5030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5081,7 +5081,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5132,7 +5132,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5183,7 +5183,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5234,7 +5234,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5285,7 +5285,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5336,7 +5336,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5387,7 +5387,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5438,7 +5438,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5489,7 +5489,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5540,7 +5540,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5591,7 +5591,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5642,7 +5642,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,7 +5693,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -5731,7 +5731,7 @@ "6e321e8b-08a6-4dac-9cc1-8538d6076418" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,7 +5740,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5762,7 +5762,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5813,7 +5813,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5864,7 +5864,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5915,7 +5915,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5972,7 +5972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6025,7 +6025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6057,7 +6057,7 @@ "b9215e35-1973-47d3-82e9-3b589a195598" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6066,7 +6066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -6088,7 +6088,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6139,7 +6139,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6190,7 +6190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6241,7 +6241,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6292,7 +6292,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json index 52e4f2ba7502..b760fd2e4448 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "df7c664a-b966-4896-a71c-e9b69c5d241d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7750\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "4c6e88f6-ad73-44ae-8ef4-a6eb09648889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -622,7 +622,7 @@ "218ab0aa-28e0-4540-ad17-302f788f97f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "725a8207-73b2-4243-8160-027ecd1459c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "548cbf18-9be7-408e-8dd7-c88eea8ccc44" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", @@ -1107,7 +1107,7 @@ "d9502d1c-0779-47c8-8eb8-dc11d001b75c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,7 +1135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1176,7 +1176,7 @@ "20852412-192d-4114-8fa5-30be5be0038d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,7 +1204,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ]\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1245,7 +1245,7 @@ "24ba035c-dcb5-46a8-a399-149fc7a893f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1314,7 +1314,7 @@ "8c6beedd-bd46-4d6a-b918-68dd9df39270" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,7 +1342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,7 +1393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1444,7 +1444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1495,7 +1495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1546,7 +1546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1597,7 +1597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1648,7 +1648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1699,7 +1699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1750,7 +1750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1852,7 +1852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1903,7 +1903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1954,7 +1954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,7 +2005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2056,7 +2056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2107,7 +2107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2158,7 +2158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2209,7 +2209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2260,7 +2260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2311,7 +2311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2362,7 +2362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2413,7 +2413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2464,7 +2464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2515,7 +2515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,7 +2566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,7 +2617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,7 +2668,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2719,7 +2719,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2770,7 +2770,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2872,7 +2872,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,7 +2923,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2974,7 +2974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,7 +3025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3076,7 +3076,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3127,7 +3127,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,7 +3178,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3229,7 +3229,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3280,7 +3280,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3331,7 +3331,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3382,7 +3382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3433,7 +3433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,7 +3484,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3535,7 +3535,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3586,7 +3586,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3637,7 +3637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,7 +3688,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,7 +3739,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3790,7 +3790,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3841,7 +3841,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3892,7 +3892,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3943,7 +3943,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +3994,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4045,7 +4045,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4096,7 +4096,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4147,7 +4147,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4198,7 +4198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4255,7 +4255,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4306,7 +4306,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4363,7 +4363,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,7 +4415,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4473,7 +4473,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4524,7 +4524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4581,7 +4581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,7 +4632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4689,7 +4689,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4740,7 +4740,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4797,7 +4797,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4848,7 +4848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4899,7 +4899,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4950,7 +4950,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5001,7 +5001,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5052,7 +5052,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"ProcessorArchitecture\": \"Amd64\"\r\n}", "RequestHeaders": { @@ -5093,7 +5093,7 @@ "434bbfd2-b60a-4b02-98a5-d395c70cf5b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5102,7 +5102,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5124,7 +5124,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5175,7 +5175,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5226,7 +5226,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5277,7 +5277,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5328,7 +5328,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5379,7 +5379,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5430,7 +5430,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json index 27bd1568b9a4..ef8b88ae4458 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\"\r\n}", "RequestHeaders": { @@ -164,7 +164,7 @@ "fbb24308-d599-45e4-a362-a999ca8fc477" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,8 +182,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,8 +304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -337,7 +337,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -350,7 +350,7 @@ "0efa3a1b-3d5e-4924-8bfb-be23c225d20e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json index e680c3d9052f..7aaf0bc4f44d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6884\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3dad47db-7a5d-4764-b1a8-45e4c54ecb14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3892\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "33b0df37-361c-4610-a62c-2d0bd11d537e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "5cd1d728-5a6d-42ea-9e42-2cef079e7d37" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "d42fc5c0-cca6-4177-bd4d-8308ba4890c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "7efab2e5-175c-433e-9f27-b08984133322" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9b45499d-e838-4b4e-9ce1-01e6d473764c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "278e7e1b-2137-4663-9235-2bad3fdfc102" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "ede67ae0-aeba-49e6-90df-5a5b53c7f6ce" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "f8b75ac4-426a-4583-9e9c-4676d5661dfd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2038,7 +2038,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2051,7 +2051,7 @@ "892ddc33-a56a-451c-9f96-b4cf3dc159d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,8 +2069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2124,8 +2124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2178,8 +2178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2211,7 +2211,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2224,7 +2224,7 @@ "d91d7f13-838b-49b3-a16c-9fc285b57bd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2242,8 +2242,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2297,8 +2297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2330,7 +2330,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2343,7 +2343,7 @@ "1a21769a-b229-45d2-a730-3d208ae11c57" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,8 +2361,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2416,8 +2416,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2449,7 +2449,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2462,7 +2462,7 @@ "fd9fc03d-a4bb-43e4-9397-c11e79c53925" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,8 +2480,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2535,8 +2535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2568,7 +2568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2581,7 +2581,7 @@ "5fbb2994-1d41-4726-ae24-018ff2a4399b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2599,8 +2599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json index b09cbc549551..579f06f4a955 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9199\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9a4ad2fd-6e62-424d-b1ec-14962cca9cf4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bef8bf1d-d1fc-4068-8735-3977bb3c34d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -727,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -760,7 +760,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -773,7 +773,7 @@ "7adb7a95-e3c0-45ff-8fc1-1180b47ae47c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -791,8 +791,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -846,8 +846,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -879,7 +879,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -892,7 +892,7 @@ "d02ab371-ea0c-4a29-b3c1-a316877805ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,8 +910,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json index 557cc9bd3c91..33094a5f9c57 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "963fb0d9-d9da-442b-ba19-ed37d225501f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "5409a23a-b969-4ec0-b876-2d7fa5fd4bbc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIP\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "11fc7019-b17b-489e-b2b3-0f1f043f637b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIPProtocol\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "0e5113c6-d8c6-4379-b111-8af4d1de4ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -627,8 +627,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -691,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,8 +813,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -871,8 +871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,8 +996,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,8 +1050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1083,7 +1083,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1096,7 +1096,7 @@ "53c70c1f-f3bc-49bc-82ad-3567f6427a52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,8 +1114,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,8 +1169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1202,7 +1202,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1215,7 +1215,7 @@ "e27bbc83-c3a8-4eee-91c5-f17a3aef9423" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,8 +1233,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json index 1e89d8c1eae2..ad4c27c5ed16 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "264ff5ef-2d86-4608-8e76-eac955cb406e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9826\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1606\",\r\n \"etag\": \"W/\\\"08dd095e-7a95-4523-9219-23493907e2af\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239/subnets/azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2958\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet6449\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/backendAddressPools/azsmnet2958\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/probes/azsmnet2286\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2286\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet3126\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2299\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "04b85831-52ed-4f78-b0ab-a589450ebbdc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "4b0345cf-ec91-4ace-9cca-e9431a22067d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "b6f5aa51-c004-419b-bff0-20344fcaf8ae" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json index 84e64b13d512..6d5bc862829a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5e54fcf7-11ac-48da-aac5-2fa0ba445a1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6881\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet4614\",\r\n \"etag\": \"W/\\\"c27c3a4a-61b2-471d-bc8e-e21fa2a01e7c\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103/subnets/azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1565\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet2497\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/backendAddressPools/azsmnet1565\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/probes/azsmnet914\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet914\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet6108\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4420\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9132b8e7-7535-4edc-93b0-8098b908e34e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "6e738e9c-4fb2-4b3d-a5dd-02972e66cde3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "32b8cf10-7428-4325-a94d-cb75ba3084dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json index 36470fd821d7..a27371ae40b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6030\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9ef85cc4-df4b-4966-ab96-bfaeb3811312" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\",\r\n \"properties\": {\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\"\r\n }\r\n ],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5745\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 107,\r\n \"frontendPortRangeEnd\": 110,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"3b977636-5d80-427b-914a-bf079a283b97\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "a9d5f4ef-f803-4914-aa56-9d99163a25b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -712,7 +712,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -725,7 +725,7 @@ "275fb0d7-293f-4025-8841-d3bd66ce4d17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -852,8 +852,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -885,7 +885,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -898,7 +898,7 @@ "bd3187d4-a3d1-4118-88b2-0938e6beb75e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,8 +916,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json index fd2b26e6eb40..05d2aa7931dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet339\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5eacd067-d3d7-4e2a-89a8-8b633e85d30e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609\"\r\n }\r\n },\r\n \"name\": \"azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet4688\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7538\"\r\n }\r\n ],\r\n \"outboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"allocatedOutboundPorts\": 1000,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/backendAddressPools/azsmnet4688\"\r\n }\r\n },\r\n \"name\": \"azsmnet8413\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "afa88ff0-3c18-4dcf-bf65-4c0fae290cba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "6f62b5b3-4ebe-4797-9fdd-e945b7728203" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "632e498b-bc6b-4467-a71a-f7ed2ceece4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json index e44730dcf956..e4028768b739 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "08de78f1-3bc7-493f-bc67-f4597fb79770" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet2252\",\r\n \"etag\": \"W/\\\"ff72dc07-42e5-4d32-bcd1-6d92b4911872\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "e136fa58-0f19-4a46-9e35-a6a7d24e223d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/probes/azsmnet6266\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet6266\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"0296cf87-5d50-4fce-9fb0-055dae5af2de\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6beeefcf-99bd-4697-828a-71ea9ab26d3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "6cd22eff-f535-476e-895b-85418749a134" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "6bf37bbe-9cc4-4b2c-8776-e67472f3b824" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json index ba20fb509f42..9dd530e44ea1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8249\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2177\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2f3e4c16-6339-4b37-b653-d4317887a159" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1712\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json index da8c945d43ac..0e5630780761 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1938\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "12fbba8e-ab04-436d-84a1-625f46c202f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet4813\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "d494c757-68f0-45d0-9cf0-dba5c2cdcd05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n }\r\n },\r\n \"name\": \"azsmnet6862\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "59f8cc76-3006-45fc-a35f-52a40040e9b4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,8 +976,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1009,7 +1009,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1022,7 +1022,7 @@ "aa4769b3-0555-4b4d-bf93-ec75ac59336f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,8 +1040,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,8 +1095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1128,7 +1128,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1141,7 +1141,7 @@ "ec9b9318-944d-4129-9cc4-ac5b9aec2f4d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,8 +1159,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1214,8 +1214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1247,7 +1247,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1260,7 +1260,7 @@ "26a085d4-53bb-4078-b6ae-c11c9ff3337d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,8 +1278,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json index 7b9d10e3c6b3..fab8774ff389 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5051\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3881820c-25c4-43bc-a03a-305b8451d77f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9491\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "406304b5-998f-438a-8b94-4f8e4c068d71" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipv4ipconfig792\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ipv6ipconfig4450\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv6\",\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "bf2587c6-c933-42bf-8114-047fb0033458" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "c8341a35-6cc2-49f2-8d26-351acab85730" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "bb6bebcd-c58f-481e-9924-778276ae0606" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "ddd5be95-00cf-4031-993d-c2ec96e3812d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json index 673f1e1b90e3..6f00311ba6ef 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet9996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3618ebb7-24be-434f-bbfc-3aeea1ed27e2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996\"\r\n }\r\n },\r\n \"name\": \"azsmnet5670\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f273ca10-2b73-4b7a-adcb-843d2cf4894c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "999431c8-2c8c-40b2-9dd2-285624e3a112" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "610d0d8b-e937-4a27-806e-182f67105689" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json index 57b19b3557fb..b4e1ec9c6c64 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet7512\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "53e216aa-b677-4c58-9fc9-e541fdf21d11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512\"\r\n }\r\n },\r\n \"name\": \"azsmnet6647\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f86d4fc2-8e02-4294-b8bd-e381115a3769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "930e8b36-b134-4dd6-9411-8b5e80fcfec0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "24b51407-43bc-4eb7-b256-69f74a70212d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json index aa9fbdfdfa34..22581ad6d0c2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet1289\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7b73f3ff-87d1-4336-9503-1ecadcd8be0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet9761\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "d3d925f7-f43d-403b-b5e0-aafde256930d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9761\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/securityRules/azsmnet9761\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"df2612a2-9f2c-4641-ae62-31982ad26eec\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980\",\r\n \"location\": \"eastus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612/subnets/azsmnet1289\"\r\n }\r\n },\r\n \"name\": \"azsmnet9385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "f2de0f45-a61a-436c-a77f-f6f1cfa32749" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json index 81fd106807d0..756a58f041fe 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet6595\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "e16aeb62-7174-4d4b-9e7b-9dc47d3b300b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "eb361df5-f998-4434-bf5a-062492302f90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8404\",\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682/ipConfigurations/azsmnet8404\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vlmtkxhqcrjuppuzwmwcy12tbb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": true,\r\n \"resourceGuid\": \"7d6b5cca-b79f-4864-9ef4-c15a17a31419\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "37174060-7b1b-4ece-a928-3094a8d18845" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "e0c0e99b-cd17-43b6-bcfa-73ece75e9605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json index a44bf35a0643..c9f0f48cfeae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9820\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "445ecc2b-8cab-47c6-8cf5-f27ef58c6f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3029\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "2db579ed-ab30-4409-abed-01079ed6aadb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3794\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "cbefd58a-85af-4671-b8ef-8267d4df4747" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "a4354010-5717-4653-af48-020895676b17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "5cc2a384-0a40-4da2-9c34-859484e09efe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "0038f628-e452-4f45-812d-7efd6d0cac2d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json index aef34f068bfb..820a70192902 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet2837\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "bc9a8556-b961-40a0-9019-770a3478bece" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet40\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "72821b37-7181-4fba-ac9f-666e4ae59d4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet40\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/securityRules/azsmnet40\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"934e8452-0070-43cf-9b4c-1e68110717eb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465\",\r\n \"location\": \"westus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053/subnets/azsmnet2837\"\r\n }\r\n },\r\n \"name\": \"azsmnet5652\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "ca2465ca-7e5f-4d68-9014-559fd9ea6deb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -780,7 +780,7 @@ "1a83fd25-aad9-4b8c-8589-7b5470a4193c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,8 +798,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -853,8 +853,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -907,8 +907,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -940,7 +940,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -953,7 +953,7 @@ "41bd6817-bafa-41a2-9972-7f4fee825cea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,8 +971,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,8 +1026,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1059,7 +1059,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1072,7 +1072,7 @@ "fb7d529e-41e0-4aff-8e3e-21c68e56fd0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1090,8 +1090,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json index efe657a09e5a..85475b1cd318 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5615\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "944f01c2-77b2-40f8-82a9-e045b2d480b3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"azsmnet1333\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": true\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json index c0873c483e65..cad22f4219a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7120bd31-52fd-4930-8efa-92cca097ff1c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "5643405a-4d6b-4219-99ec-4f36cefb7a10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json index f1753246321b..fcccf5847bff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "a57f505b-b51f-4237-9476-5550060e76c9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5872\",\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6d429732-cf6e-4850-b7a9-9540b533611f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,7 +587,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -644,7 +644,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,7 +705,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -756,7 +756,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -788,7 +788,7 @@ "ada432fe-0599-42de-9762-823b41e02fec" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,7 +797,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -819,7 +819,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json index a55bc2d58572..3b434935429b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9769\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "d3b1ceb3-fc95-45e0-874d-0553b5bab53b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -404,7 +404,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -461,7 +461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -524,7 +524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -556,7 +556,7 @@ "13308a66-8897-44ea-8df9-b12ca1d98e21" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +565,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -587,7 +587,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json index 14847b6bb2a5..f20929eaa5fd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv6\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "d39b9d63-14ac-4cb8-8bc6-629171fc57a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "fc579ad7-d1fe-49a3-99ca-9e301fbc0796" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -654,8 +654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -706,7 +706,7 @@ "83a5dde1-2b52-4c78-99bb-7ee5001ab69c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,8 +724,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -779,8 +779,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -837,8 +837,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -901,8 +901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -934,7 +934,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -947,7 +947,7 @@ "a0b157e4-ac6d-46d0-9a73-dbc3fc69280c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -965,8 +965,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json index 0a8a05544ddc..aa335f46a5c0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\"\r\n },\r\n \"idleTimeoutInMinutes\": 16\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "3250be31-367d-4a1a-96ad-e25adb1815b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"ee1883f7-8770-41a4-a42a-514f7b1ee87d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\",\r\n \"fqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\",\r\n \"reverseFqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\"\r\n },\r\n \"idleTimeoutInMinutes\": 16,\r\n \"resourceGuid\": \"565a8af7-d851-4520-8442-5901971e7630\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6b3e5417-f2af-47bb-a8b4-11ca41ec00f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,7 +759,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -791,7 +791,7 @@ "2ece8ab6-7318-4954-b1ce-93646466f555" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -800,7 +800,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -822,7 +822,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json index ffb17767f641..d9b8ac02be8d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet8397\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9300ca35-e10e-4803-9a19-ccbe70a88005" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet816\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "b54f2a54-7610-4887-a5e4-3facc44b6e4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -892,7 +892,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -905,7 +905,7 @@ "b6870c53-cd86-4331-93a0-7049be9a172d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,8 +923,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,8 +978,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1011,7 +1011,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1024,7 +1024,7 @@ "8a91f8d2-0056-477a-9c1e-ebc67ec78aaa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1042,8 +1042,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1097,8 +1097,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json index bf091c25077e..dcb278467ec5 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8334\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "2fcae6d6-c43b-4e96-b23c-61c0228b165a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azsmnet5369\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "8b7446cd-d269-455b-a81c-29f8cd144774" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "f78e960c-8975-4d9e-84fa-c28eea2d0bd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json index cce327763e55..81c9236fa178 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet3524\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "ae5fd15b-d60b-4b34-9452-57746445103a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json index 5557a7e08d3a..2a677d5647cf 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "15044d4c-3df8-4152-a39c-c0255289b846" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json index a94124495b22..59cbd63f4bae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json @@ -61,8 +61,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -113,7 +113,7 @@ "bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -131,8 +131,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -308,8 +308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -369,8 +369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -475,7 +475,7 @@ "6f1e3332-1c7e-49be-8de6-e0d05d150ff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,8 +493,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -606,8 +606,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -667,8 +667,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -789,8 +789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowVirtualNetworkAccess\": false,\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391\"\r\n }\r\n },\r\n \"name\": \"azsmnet3453\"\r\n}", "RequestHeaders": { @@ -841,7 +841,7 @@ "d5541592-049c-4c84-8b93-2f151349c8f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,8 +914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -972,8 +972,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1069,7 +1069,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1082,7 +1082,7 @@ "6684a1f4-8428-45c0-bb6b-c25a44d4833c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1100,8 +1100,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1188,7 +1188,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1201,7 +1201,7 @@ "c401ba88-eaec-4651-8550-e2b8795b28c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,8 +1219,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1274,8 +1274,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1307,7 +1307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1320,7 +1320,7 @@ "fbe9a49e-ee49-4cd2-9e6b-aec391eb8078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,8 +1338,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json index 5719245c7dc1..b77db5b654ff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet1873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet997\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "0d9b13a2-9865-4553-b38c-899a1b7f170f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -553,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -586,7 +586,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -599,7 +599,7 @@ "da3c92e3-ca15-4330-9719-bd5536d2cda5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,8 +617,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json index 0513cf5598ba..58834bc64100 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3416\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3995e6e8-2a31-4716-9e9d-e974fdc5cee9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.9\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416\"\r\n }\r\n },\r\n \"name\": \"azsmnet4903\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bcea5bd3-3988-4c94-8988-ce1128de88bc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -642,7 +642,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -655,7 +655,7 @@ "d894dfdd-726f-461c-95b3-564fba881898" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,8 +673,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -774,7 +774,7 @@ "de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,8 +792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json index 632369a5eeb3..93160a190fb7 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet7820\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "e9c55f19-519e-4c28-a7c2-38d4c48caf56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -433,8 +433,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,8 +498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "53c9e2d1-865d-4bc5-9cab-925bf0afb411" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -625,8 +625,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "abbc845f-7549-4105-9ab5-ed3270f676c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1059,8 +1059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1093,7 +1093,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1106,7 +1106,7 @@ "72f70e8c-36a1-4482-87ea-8576fcf7f823" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,8 +1124,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,8 +1180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1214,7 +1214,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1227,7 +1227,7 @@ "bf6e70fe-9654-4caa-ab74-9a2a50cf683c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,8 +1245,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1335,7 +1335,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1348,7 +1348,7 @@ "1e1eff12-10ca-460f-9ff5-098c619eae9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1366,8 +1366,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From 2cd92aaba197847e5f3ba7ab7d1eaf6ef05f0628 Mon Sep 17 00:00:00 2001 From: matthchr Date: Tue, 21 Mar 2017 10:13:27 -0700 Subject: [PATCH 117/137] Update releasenotes to clarify breaking changes --- src/Batch/Client/changelog.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Batch/Client/changelog.md b/src/Batch/Client/changelog.md index 6a76870e9e01..b45d1f9df7e0 100644 --- a/src/Batch/Client/changelog.md +++ b/src/Batch/Client/changelog.md @@ -18,8 +18,11 @@ This version of the Batch .NET client library targets version 2017-01-01.4.0 of This version of the Batch .NET client library targets version 2017-01-01.4.0 of the Azure Batch REST API. #### Features -- Moved `FileToStage` implementation to the [Azure.Batch.FileStaging](https://www.nuget.org/packages/Azure.Batch.FileStaging) NuGet package and removed the dependency on `WindowsAzure.Storage` from the `Azure.Batch` package. This gives more flexibility on what version of `WindowsAzure.Storage` to use for users who do not use the `FileToStage` features. +##### Breaking changes - Added support for running a task under a configurable user identity via the `UserIdentity` property on all task objects (`CloudTask`, `JobPreparationTask`, `StartTask`, etc). `UserIdentity` replaces `RunElevated`. `UserIdentity` supports running a task as a predefined named user (via `UserIdentity.UserName`) or an automatically created user. The `AutoUserSpecification` specifies an automatically created user account under which to run the task. To translate existing code, change `RunElevated = true` to `UserIdentity = new UserIdentity(new AutoUserSpecification(elevationLevel: ElevationLevel.Admin))` and `RunElevated = false` to `UserIdentity = new UserIdentity(new AutoUserSpecification(elevationLevel: ElevationLevel.NonAdmin))`. +- Moved `FileToStage` implementation to the [Azure.Batch.FileStaging](https://www.nuget.org/packages/Azure.Batch.FileStaging) NuGet package and removed the dependency on `WindowsAzure.Storage` from the `Azure.Batch` package. This gives more flexibility on what version of `WindowsAzure.Storage` to use for users who do not use the `FileToStage` features. + +##### Non-breaking changes - Added support for defining pool-wide users, via the `UserAccounts` property on `CloudPool` and `PoolSpecification`. You can run a task as such a user using the `UserIdentity` constructor that takes a user name. - Added support for requesting the Batch service provide an authentication token to the task when it runs. This is done using the `AuthenticationTokenSettings` on `CloudTask` and `JobManagerTask`. This avoids the need to pass Batch account keys to the task in order to issue requests to the Batch service. - Added support for specifying an action to take on a task's dependencies if the task fails using the `DependencyAction` property of `ExitOptions`. From 9cac2895fcd1eb0b4e1695924609ab2155ec2fe1 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Tue, 21 Mar 2017 10:19:01 -0700 Subject: [PATCH 118/137] corrected Assembly version for 2017-03-01 --- .../Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 3a079d1447c2..0983ca2bb40b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("9.2.0.0")] +[assembly: AssemblyVersion("9.0.0.0")] [assembly: AssemblyFileVersion("9.2.0.0")] [assembly: AssemblyConfiguration("")] From 35f83bd5b116b488ae33f90a4d14c7fe9f6e4203 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 10:21:27 -0700 Subject: [PATCH 119/137] #WAF removed redundancy in description of enums. --- .../Generated/Models/ApplicationGateway.cs | 10 ++++------ .../ApplicationGatewayBackendHealthServer.cs | 10 ++++------ ...plicationGatewayBackendHealthServerHealth.cs | 1 + .../ApplicationGatewayBackendHttpSettings.cs | 14 ++++++-------- ...ApplicationGatewayFrontendIpConfiguration.cs | 8 +++----- .../Models/ApplicationGatewayHttpListener.cs | 7 +++---- .../Generated/Models/ApplicationGatewayProbe.cs | 7 +++---- .../ApplicationGatewayRequestRoutingRule.cs | 6 ++---- .../Generated/Models/ApplicationGatewaySku.cs | 17 ++++++----------- .../Models/ApplicationGatewaySslPolicy.cs | 4 +--- ...atewayWebApplicationFirewallConfiguration.cs | 8 +++----- 11 files changed, 36 insertions(+), 56 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs index 4e956405a223..4635f0d15b9e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs @@ -41,9 +41,8 @@ public ApplicationGateway() { } /// SSL policy of the application gateway /// resource. /// Operational state of the application - /// gateway resource. Possible values are: 'Stopped', 'Started', - /// 'Running', and 'Stopping'. Possible values include: 'Stopped', - /// 'Starting', 'Running', 'Stopping' + /// gateway resource. Possible values include: 'Stopped', 'Starting', + /// 'Running', 'Stopping' /// Subnets of application the /// gateway resource. /// Authentication @@ -112,9 +111,8 @@ public ApplicationGateway() { } /// /// Gets operational state of the application gateway resource. - /// Possible values are: 'Stopped', 'Started', 'Running', and - /// 'Stopping'. Possible values include: 'Stopped', 'Starting', - /// 'Running', 'Stopping' + /// Possible values include: 'Stopped', 'Starting', 'Running', + /// 'Stopping' /// [JsonProperty(PropertyName = "properties.operationalState")] public string OperationalState { get; protected set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs index 6005cd2f240d..bda3c476ece3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs @@ -32,9 +32,8 @@ public ApplicationGatewayBackendHealthServer() { } /// IP address or FQDN of backend server. /// Reference of IP configuration of /// backend server. - /// Health of backend server. Possible values are: - /// 'Unknown', 'Up', 'Down', and 'Partial'. Possible values include: - /// 'Unknown', 'Up', 'Down', 'Partial' + /// Health of backend server. Possible values + /// include: 'Unknown', 'Up', 'Down', 'Partial', 'Draining' public ApplicationGatewayBackendHealthServer(string address = default(string), SubResource ipConfiguration = default(SubResource), string health = default(string)) { Address = address; @@ -55,9 +54,8 @@ public ApplicationGatewayBackendHealthServer() { } public SubResource IpConfiguration { get; set; } /// - /// Gets or sets health of backend server. Possible values are: - /// 'Unknown', 'Up', 'Down', and 'Partial'. Possible values include: - /// 'Unknown', 'Up', 'Down', 'Partial' + /// Gets or sets health of backend server. Possible values include: + /// 'Unknown', 'Up', 'Down', 'Partial', 'Draining' /// [JsonProperty(PropertyName = "health")] public string Health { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs index db0321dc0ffe..4826b7f88fa7 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs @@ -21,6 +21,7 @@ public static class ApplicationGatewayBackendHealthServerHealth public const string Up = "Up"; public const string Down = "Down"; public const string Partial = "Partial"; + public const string Draining = "Draining"; } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs index 1f6e27130b67..b5d7b1bb203d 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs @@ -36,11 +36,10 @@ public ApplicationGatewayBackendHttpSettings() { } /// /// Resource ID. /// Port - /// Protocol. Possible values are: 'Http' and - /// 'Https'. Possible values include: 'Http', 'Https' + /// Protocol. Possible values include: 'Http', + /// 'Https' /// Cookie based affinity. Possible - /// values are: 'Enabled' and 'Disabled'. Possible values include: - /// 'Enabled', 'Disabled' + /// values include: 'Enabled', 'Disabled' /// Request timeout in seconds. /// Application Gateway will fail the request if response is not /// received within RequestTimeout. Acceptable values are from 1 second @@ -81,15 +80,14 @@ public ApplicationGatewayBackendHttpSettings() { } public int? Port { get; set; } /// - /// Gets or sets protocol. Possible values are: 'Http' and 'Https'. - /// Possible values include: 'Http', 'Https' + /// Gets or sets protocol. Possible values include: 'Http', 'Https' /// [JsonProperty(PropertyName = "properties.protocol")] public string Protocol { get; set; } /// - /// Gets or sets cookie based affinity. Possible values are: 'Enabled' - /// and 'Disabled'. Possible values include: 'Enabled', 'Disabled' + /// Gets or sets cookie based affinity. Possible values include: + /// 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.cookieBasedAffinity")] public string CookieBasedAffinity { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs index 15365ef7e9e7..d7d8319c80e8 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs @@ -36,8 +36,7 @@ public ApplicationGatewayFrontendIPConfiguration() { } /// PrivateIPAddress of the network /// interface IP Configuration. /// PrivateIP allocation - /// method. Possible values are: 'Static' and 'Dynamic'. Possible - /// values include: 'Static', 'Dynamic' + /// method. Possible values include: 'Static', 'Dynamic' /// Reference of the subnet resource. /// Reference of the PublicIP /// resource. @@ -69,9 +68,8 @@ public ApplicationGatewayFrontendIPConfiguration() { } public string PrivateIPAddress { get; set; } /// - /// Gets or sets privateIP allocation method. Possible values are: - /// 'Static' and 'Dynamic'. Possible values include: 'Static', - /// 'Dynamic' + /// Gets or sets privateIP allocation method. Possible values include: + /// 'Static', 'Dynamic' /// [JsonProperty(PropertyName = "properties.privateIPAllocationMethod")] public string PrivateIPAllocationMethod { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs index 330341e08193..6a710d1f50f0 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs @@ -37,8 +37,8 @@ public ApplicationGatewayHttpListener() { } /// resource of an application gateway. /// Frontend port resource of an application /// gateway. - /// Protocol. Possible values are: 'Http' and - /// 'Https'. Possible values include: 'Http', 'Https' + /// Protocol. Possible values include: 'Http', + /// 'Https' /// Host name of HTTP listener. /// SSL certificate resource of an /// application gateway. @@ -80,8 +80,7 @@ public ApplicationGatewayHttpListener() { } public SubResource FrontendPort { get; set; } /// - /// Gets or sets protocol. Possible values are: 'Http' and 'Https'. - /// Possible values include: 'Http', 'Https' + /// Gets or sets protocol. Possible values include: 'Http', 'Https' /// [JsonProperty(PropertyName = "properties.protocol")] public string Protocol { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayProbe.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayProbe.cs index 6f8786ca36f6..e59131e3d863 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayProbe.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayProbe.cs @@ -31,8 +31,8 @@ public ApplicationGatewayProbe() { } /// Initializes a new instance of the ApplicationGatewayProbe class. /// /// Resource ID. - /// Protocol. Possible values are: 'Http' and - /// 'Https'. Possible values include: 'Http', 'Https' + /// Protocol. Possible values include: 'Http', + /// 'Https' /// Host name to send the probe to. /// Relative path of probe. Valid path starts from /// '/'. Probe is sent to @@ -70,8 +70,7 @@ public ApplicationGatewayProbe() { } } /// - /// Gets or sets protocol. Possible values are: 'Http' and 'Https'. - /// Possible values include: 'Http', 'Https' + /// Gets or sets protocol. Possible values include: 'Http', 'Https' /// [JsonProperty(PropertyName = "properties.protocol")] public string Protocol { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs index 542b6a384fbf..050ef10fe078 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs @@ -33,8 +33,7 @@ public ApplicationGatewayRequestRoutingRule() { } /// ApplicationGatewayRequestRoutingRule class. /// /// Resource ID. - /// Rule type. Possible values are: 'Basic' and - /// 'PathBasedRouting'. Possible values include: 'Basic', + /// Rule type. Possible values include: 'Basic', /// 'PathBasedRouting' /// Backend address pool resource of /// the application gateway. @@ -66,8 +65,7 @@ public ApplicationGatewayRequestRoutingRule() { } } /// - /// Gets or sets rule type. Possible values are: 'Basic' and - /// 'PathBasedRouting'. Possible values include: 'Basic', + /// Gets or sets rule type. Possible values include: 'Basic', /// 'PathBasedRouting' /// [JsonProperty(PropertyName = "properties.ruleType")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySku.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySku.cs index 117e1bf1e4d0..66fbc579b29f 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySku.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySku.cs @@ -28,13 +28,10 @@ public ApplicationGatewaySku() { } /// Initializes a new instance of the ApplicationGatewaySku class. /// /// Name of an application gateway SKU. Possible - /// values are: 'Standard_Small', 'Standard_Medium', 'Standard_Large', - /// 'WAF_Medium', and 'WAF_Large'. Possible values include: - /// 'Standard_Small', 'Standard_Medium', 'Standard_Large', - /// 'WAF_Medium', 'WAF_Large' + /// values include: 'Standard_Small', 'Standard_Medium', + /// 'Standard_Large', 'WAF_Medium', 'WAF_Large' /// Tier of an application gateway. Possible values - /// are: 'Standard' and 'WAF'. Possible values include: 'Standard', - /// 'WAF' + /// include: 'Standard', 'WAF' /// Capacity (instance count) of an application /// gateway. public ApplicationGatewaySku(string name = default(string), string tier = default(string), int? capacity = default(int?)) @@ -46,17 +43,15 @@ public ApplicationGatewaySku() { } /// /// Gets or sets name of an application gateway SKU. Possible values - /// are: 'Standard_Small', 'Standard_Medium', 'Standard_Large', - /// 'WAF_Medium', and 'WAF_Large'. Possible values include: - /// 'Standard_Small', 'Standard_Medium', 'Standard_Large', + /// include: 'Standard_Small', 'Standard_Medium', 'Standard_Large', /// 'WAF_Medium', 'WAF_Large' /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Gets or sets tier of an application gateway. Possible values are: - /// 'Standard' and 'WAF'. Possible values include: 'Standard', 'WAF' + /// Gets or sets tier of an application gateway. Possible values + /// include: 'Standard', 'WAF' /// [JsonProperty(PropertyName = "tier")] public string Tier { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs index 459001255b6b..34b9b0de698b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs @@ -32,8 +32,7 @@ public ApplicationGatewaySslPolicy() { } /// class. /// /// SSL protocols to be disabled on - /// application gateway. Possible values are: 'TLSv1_0', 'TLSv1_1', and - /// 'TLSv1_2'. + /// application gateway. public ApplicationGatewaySslPolicy(IList disabledSslProtocols = default(IList)) { DisabledSslProtocols = disabledSslProtocols; @@ -41,7 +40,6 @@ public ApplicationGatewaySslPolicy() { } /// /// Gets or sets SSL protocols to be disabled on application gateway. - /// Possible values are: 'TLSv1_0', 'TLSv1_1', and 'TLSv1_2'. /// [JsonProperty(PropertyName = "disabledSslProtocols")] public IList DisabledSslProtocols { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs index 2cc6b90e6ed1..da6bc7e1062c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs @@ -35,8 +35,7 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } /// Whether the web application firewall is /// enabled or not. /// Web application firewall mode. Possible - /// values are: 'Detection' and 'Prevention'. Possible values include: - /// 'Detection', 'Prevention' + /// values include: 'Detection', 'Prevention' /// The type of the web application firewall /// rule set. Possible values are: 'OWASP'. /// The version of the rule set @@ -59,9 +58,8 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } public bool Enabled { get; set; } /// - /// Gets or sets web application firewall mode. Possible values are: - /// 'Detection' and 'Prevention'. Possible values include: 'Detection', - /// 'Prevention' + /// Gets or sets web application firewall mode. Possible values + /// include: 'Detection', 'Prevention' /// [JsonProperty(PropertyName = "firewallMode")] public string FirewallMode { get; set; } From 4f55aa459be403da238c3101e095d64dec6ec6cb Mon Sep 17 00:00:00 2001 From: matthchr Date: Tue, 21 Mar 2017 10:57:20 -0700 Subject: [PATCH 120/137] Fix Batch management plane releasenotes reference --- .../Batch/Microsoft.Azure.Management.Batch/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json index dd5ecbeacfb2..8d9f84a4c939 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json @@ -11,7 +11,7 @@ "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true, - "releaseNotes": "See https://github.com/matthchr/azure-sdk-for-net/blob/AutoRest/src/ResourceManagement/Batch/changelog.md for release notes." + "releaseNotes": "See https://github.com/Azure/azure-sdk-for-net/blob/AutoRest/src/ResourceManagement/Batch/changelog.md for release notes." }, "buildOptions": { From 354816e5aebacd7a07d80edc7d4818fa819235a3 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 11:53:42 -0700 Subject: [PATCH 121/137] #WAF updated required fields for getBackendHealth Api result. --- ...icationGatewayFirewallDisabledRuleGroup.cs | 4 +- .../Models/ApplicationGatewayFirewallRule.cs | 14 +++++- .../ApplicationGatewayFirewallRuleGroup.cs | 34 ++++++++++++-- .../ApplicationGatewayFirewallRuleSet.cs | 45 ++++++++++++++++--- .../Tests/ApplicationGatewayTests.cs | 4 +- 5 files changed, 84 insertions(+), 17 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs index adc055c12b67..b372058801c9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs @@ -36,7 +36,7 @@ public ApplicationGatewayFirewallDisabledRuleGroup() { } /// disabled. /// The list of rules that will be disabled. If /// null, all rules of the rule group will be disabled. - public ApplicationGatewayFirewallDisabledRuleGroup(string ruleGroupName, IList rules = default(IList)) + public ApplicationGatewayFirewallDisabledRuleGroup(string ruleGroupName, IList rules = default(IList)) { RuleGroupName = ruleGroupName; Rules = rules; @@ -53,7 +53,7 @@ public ApplicationGatewayFirewallDisabledRuleGroup() { } /// rules of the rule group will be disabled. /// [JsonProperty(PropertyName = "rules")] - public IList Rules { get; set; } + public IList Rules { get; set; } /// /// Validate the object. diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs index cdb517e97dc4..d459f0495ca6 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs @@ -33,7 +33,7 @@ public ApplicationGatewayFirewallRule() { } /// rule. /// The description of the web application /// firewall rule. - public ApplicationGatewayFirewallRule(int? ruleId = default(int?), string description = default(string)) + public ApplicationGatewayFirewallRule(int ruleId, string description = default(string)) { RuleId = ruleId; Description = description; @@ -43,7 +43,7 @@ public ApplicationGatewayFirewallRule() { } /// Gets or sets the identifier of the web application firewall rule. /// [JsonProperty(PropertyName = "ruleId")] - public int? RuleId { get; set; } + public int RuleId { get; set; } /// /// Gets or sets the description of the web application firewall rule. @@ -51,6 +51,16 @@ public ApplicationGatewayFirewallRule() { } [JsonProperty(PropertyName = "description")] public string Description { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs index daa89f41a263..56c131e61842 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network.Models using Azure; using Management; using Network; + using Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -33,11 +34,11 @@ public ApplicationGatewayFirewallRuleGroup() { } /// /// The name of the web application /// firewall rule group. - /// The description of the web application - /// firewall rule group. /// The rules of the web application firewall rule /// group. - public ApplicationGatewayFirewallRuleGroup(string ruleGroupName = default(string), string description = default(string), IList rules = default(IList)) + /// The description of the web application + /// firewall rule group. + public ApplicationGatewayFirewallRuleGroup(string ruleGroupName, IList rules, string description = default(string)) { RuleGroupName = ruleGroupName; Description = description; @@ -63,6 +64,33 @@ public ApplicationGatewayFirewallRuleGroup() { } [JsonProperty(PropertyName = "rules")] public IList Rules { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RuleGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleGroupName"); + } + if (Rules == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Rules"); + } + if (Rules != null) + { + foreach (var element in Rules) + { + if (element != null) + { + element.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs index 15bd9c15b359..56b42aae6476 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs @@ -34,6 +34,12 @@ public ApplicationGatewayFirewallRuleSet() { } /// Initializes a new instance of the ApplicationGatewayFirewallRuleSet /// class. /// + /// The type of the web application firewall + /// rule set. + /// The version of the web application + /// firewall rule set type. + /// The rule groups of the web application + /// firewall rule set. /// Resource ID. /// Resource name. /// Resource type. @@ -41,13 +47,7 @@ public ApplicationGatewayFirewallRuleSet() { } /// Resource tags. /// The provisioning state of the web /// application firewall rule set. - /// The type of the web application firewall - /// rule set. - /// The version of the web application - /// firewall rule set type. - /// The rule groups of the web application - /// firewall rule set. - public ApplicationGatewayFirewallRuleSet(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string ruleSetType = default(string), string ruleSetVersion = default(string), IList ruleGroups = default(IList)) + public ApplicationGatewayFirewallRuleSet(string ruleSetType, string ruleSetVersion, IList ruleGroups, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string)) : base(id, name, type, location, tags) { ProvisioningState = provisioningState; @@ -83,6 +83,37 @@ public ApplicationGatewayFirewallRuleSet() { } [JsonProperty(PropertyName = "properties.ruleGroups")] public IList RuleGroups { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RuleSetType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleSetType"); + } + if (RuleSetVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleSetVersion"); + } + if (RuleGroups == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleGroups"); + } + if (RuleGroups != null) + { + foreach (var element in RuleGroups) + { + if (element != null) + { + element.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 3294f6718183..26033b7b5b48 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -395,7 +395,7 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn { new ApplicationGatewayFirewallDisabledRuleGroup( "crs_41_sql_injection_attacks", - new List() { 981318 }) + new List() { 981318 }) } } }; @@ -550,10 +550,8 @@ public void ApplicationGatewayApiTest() Assert.NotNull(availableWAFRuleSets.Value[0].RuleSetType); Assert.NotNull(availableWAFRuleSets.Value[0].RuleSetVersion); Assert.NotEmpty(availableWAFRuleSets.Value[0].RuleGroups); - Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Description); Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].RuleGroupName); Assert.NotEmpty(availableWAFRuleSets.Value[0].RuleGroups[0].Rules); - Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Rules[0].Description); Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Rules[0].RuleId); From dce29a75f3d493cefc37d757e5d58debc75502f4 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:14:24 -0700 Subject: [PATCH 122/137] #INIT updated the api-version to 2016-03-01 in the Network *Operation.cs files. --- .../ApplicationGatewaysOperations.cs | 16 ++++++------ .../BgpServiceCommunitiesOperations.cs | 2 +- ...essRouteCircuitAuthorizationsOperations.cs | 8 +++--- .../ExpressRouteCircuitPeeringsOperations.cs | 8 +++--- .../ExpressRouteCircuitsOperations.cs | 20 +++++++------- .../ExpressRouteServiceProvidersOperations.cs | 2 +- .../Generated/LoadBalancersOperations.cs | 10 +++---- .../LocalNetworkGatewaysOperations.cs | 8 +++--- .../Generated/NetworkInterfacesOperations.cs | 14 +++++----- .../Generated/NetworkManagementClient.cs | 2 +- .../NetworkSecurityGroupsOperations.cs | 10 +++---- .../Generated/NetworkWatchersOperations.cs | 26 +++++++++---------- .../Generated/PacketCapturesOperations.cs | 12 ++++----- .../Generated/PublicIpAddressesOperations.cs | 10 +++---- .../Generated/RouteFilterRulesOperations.cs | 10 +++---- .../Generated/RouteFiltersOperations.cs | 12 ++++----- .../Generated/RouteTablesOperations.cs | 10 +++---- .../Generated/RoutesOperations.cs | 8 +++--- .../Generated/SecurityRulesOperations.cs | 8 +++--- .../Generated/SubnetsOperations.cs | 8 +++--- .../Generated/UsagesOperations.cs | 2 +- ...tualNetworkGatewayConnectionsOperations.cs | 14 +++++----- .../VirtualNetworkGatewaysOperations.cs | 18 ++++++------- .../VirtualNetworkPeeringsOperations.cs | 8 +++--- .../Generated/VirtualNetworksOperations.cs | 12 ++++----- 25 files changed, 129 insertions(+), 129 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index 1304539a2f17..eac66811a1e3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -116,7 +116,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -328,7 +328,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -506,7 +506,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -764,7 +764,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -943,7 +943,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1159,7 +1159,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1324,7 +1324,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1497,7 +1497,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs index fbf6072faf89..0f239babdefb 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs @@ -80,7 +80,7 @@ internal BgpServiceCommunitiesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs index 415877929d59..a7915b341560 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs @@ -127,7 +127,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -352,7 +352,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -551,7 +551,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs index 57bc445de11a..0bb703b7a23c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs @@ -126,7 +126,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs index 25af2d5fa863..6b52e1e9fb92 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs @@ -116,7 +116,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -423,7 +423,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -624,7 +624,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -813,7 +813,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -991,7 +991,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1178,7 +1178,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1354,7 +1354,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1588,7 +1588,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1801,7 +1801,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2014,7 +2014,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs index d14c8cb79dac..3fff7273ca3e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs @@ -80,7 +80,7 @@ internal ExpressRouteServiceProvidersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs index 13b32fbe0c2e..9204f6baaea7 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs @@ -119,7 +119,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 482a33ce2fcc..5b990240d851 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -533,7 +533,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -749,7 +749,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs index 40a02eb86e16..525d96aceb34 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs @@ -119,7 +119,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1363,7 +1363,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1538,7 +1538,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1757,7 +1757,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1951,7 +1951,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs index c391afbcc5bb..d67a6eaf2fbd 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs @@ -492,7 +492,7 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs index aeca4d060053..e19347f56e70 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs @@ -119,7 +119,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -331,7 +331,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -703,7 +703,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -880,7 +880,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs index 070dc4e02b9e..9a5badd7b810 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs @@ -101,7 +101,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -320,7 +320,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -529,7 +529,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -908,7 +908,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1282,7 +1282,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1462,7 +1462,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1692,7 +1692,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1922,7 +1922,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2152,7 +2152,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2382,7 +2382,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2612,7 +2612,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2842,7 +2842,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs index d0991beed77d..f4c6230ac541 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs @@ -129,7 +129,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -400,7 +400,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -612,7 +612,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -819,7 +819,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -993,7 +993,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1170,7 +1170,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs index a7824035e5a0..b3c24481d2a9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs @@ -119,7 +119,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs index d0d79d3e759c..df48c96625a5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs @@ -126,7 +126,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -378,7 +378,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -576,7 +576,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -768,7 +768,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new RouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1007,7 +1007,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new PatchRouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs index 2e88eb338d9e..b1503a90165e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs @@ -119,7 +119,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -361,7 +361,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -539,7 +539,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -726,7 +726,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -901,7 +901,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1127,7 +1127,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs index cdf2aeeb916f..f932e1b31272 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs @@ -119,7 +119,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -336,7 +336,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs index 49913de1c6f5..3c1c572df681 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs @@ -126,7 +126,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -350,7 +350,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,7 +548,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs index 8fce4b56a92e..32f094919c35 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs @@ -126,7 +126,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +738,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs index e6ba2ddfeaac..011c231e0b09 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs @@ -129,7 +129,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -358,7 +358,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -740,7 +740,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs index 7565dd077bdd..51bf83fdccd5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs @@ -94,7 +94,7 @@ internal UsagesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs index c17abfa1ae4e..c0cfd3175707 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -121,7 +121,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -368,7 +368,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -790,7 +790,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1423,7 +1423,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index eb992e20de22..129061612af9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -561,7 +561,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1064,7 +1064,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1237,7 +1237,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1439,7 +1439,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1639,7 +1639,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1841,7 +1841,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs index e9249a583ea6..308efbfb5b0b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs @@ -126,7 +126,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs index 8dc887aadf03..b2fe8e257173 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs @@ -119,7 +119,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -903,7 +903,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; From f9160944092bdf284fc789d74e8fde07fdf2243e Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:17:27 -0700 Subject: [PATCH 123/137] #INIT Updated Version number to 10.0.0 (next major version) since there will be breaking changes for application gateway. --- .../Properties/AssemblyInfo.cs | 4 ++-- .../Network/Microsoft.Azure.Management.Network/project.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 31b13a51ad32..7e657ccc25ce 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("9.1.0.0")] -[assembly: AssemblyFileVersion("9.1.0.0")] +[assembly: AssemblyVersion("10.0.0.0")] +[assembly: AssemblyFileVersion("10.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index d8484bf93b04..46699e29357c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,6 +1,6 @@ { - "version": "9.1.0-preview", + "version": "10.0.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From b0ec56585dd06e0982404819d2c4d265f6292b3d Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:22:26 -0700 Subject: [PATCH 124/137] #INIT Changed version number to 2017-03-01 in Network/SessionRecordings. --- .../NetworkWatcherApiTest.json | 34 +- .../NextHopApiTest.json | 30 +- .../PacketCaptureApiTest.json | 86 +-- .../EmptyRouteTableTest.json | 40 +- .../RouteTableApiTest.json | 72 +- .../SubnetRouteTableTest.json | 42 +- .../RoutesApiTest.json | 98 +-- .../RoutesHopTypeTest.json | 82 +- .../TopologyApiTest.json | 14 +- .../TroubleshootApiTest.json | 308 ++++---- .../VerifyIpFlowApiTest.json | 36 +- .../ViewNsgRuleApiTest.json | 36 +- .../ApplicationGatewayApiTest.json | 364 ++++----- .../CheckDnsAvailabilityTest.json | 4 +- .../ExpandResourceTest.json | 224 +++--- ...ocalNettworkGatewayOperationsApisTest.json | 34 +- ...NetworkGatewayActiveActiveFeatureTest.json | 730 +++++++++--------- .../VirtualNetworkGatewayBgpRouteApiTest.json | 650 ++++++++-------- ...rkGatewayConnectionOperationsApisTest.json | 202 ++--- ...ConnectionSharedKeyOperationsApisTest.json | 194 ++--- ...alNetworkGatewayConnectionWithBgpTest.json | 384 ++++----- ...rtualNetworkGatewayOperationsApisTest.json | 256 +++--- ...alNetworkGatewayP2SOperationsApisTest.json | 224 +++--- .../CreateEmptyLoadBalancer.json | 32 +- .../LoadBalancerApiNicAssociationTest.json | 204 ++--- .../LoadBalancerApiTest.json | 70 +- ...BalancerApiTestWithDistributionPolicy.json | 94 +-- .../LoadBalancerApiTestWithDynamicIp.json | 70 +- .../LoadBalancerApiTestWithStaticIp.json | 70 +- .../LoadBalancerNatPoolTest.json | 72 +- .../LoadBalancerOutboundNatRuleTest.json | 62 +- .../UpdateLoadBalancerRule.json | 76 +- ...rtMultiIpConfigOnDifferentSubnetFails.json | 28 +- .../NetworkInterfaceApiTest.json | 100 +-- .../NetworkInterfaceApiTestIPv6.json | 100 +-- .../NetworkInterfaceDnsSettingsTest.json | 62 +- ...orkInterfaceDnsSettingsTestIdnsSuffix.json | 62 +- ...faceEffectiveNetworkSecurityGroupTest.json | 52 +- ...etworkInterfaceEnableIPForwardingTest.json | 76 +- .../NetworkInterfaceMultiIpConfigTest.json | 100 +-- ...workInterfaceNetworkSecurityGroupTest.json | 88 +-- ...nterfaceWithAcceleratedNetworkingTest.json | 24 +- .../NetworkSecurityGroupApiTest.json | 44 +- .../NetworkSecurityGroupWithRulesApiTest.json | 36 +- .../PublicIpAddressApiTest.json | 26 +- .../PublicIpAddressApiTestIPv6.json | 74 +- ...ApiTestWithIdletTimeoutAndReverseFqdn.json | 36 +- .../SecurityRuleWithRulesApiTest.json | 82 +- .../SubnetApiTest.json | 34 +- .../SubnetResourceNavigationLinksTest.json | 24 +- .../Networks.Tests.UsageTests/UsageTest.json | 24 +- .../VirtualNetworkPeeringApiTest.json | 106 +-- .../VirtualNetworkApiTest.json | 44 +- ...NetworkCheckIpAddressAvailabilityTest.json | 62 +- .../VirtualNetworkPeeringTest.json | 104 +-- 55 files changed, 3141 insertions(+), 3141 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json index 483ad99cb2b6..1f5782cd10a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -112,7 +112,7 @@ "9351b98e-77c4-44e2-bf8e-d990ae99baad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,8 +130,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,8 +195,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -257,8 +257,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,8 +316,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -412,7 +412,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -425,7 +425,7 @@ "fb2a42c3-0444-493f-a0fa-9621aa519be3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,8 +443,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json index 2a1a14579d64..e5e91146f35e 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json @@ -665,8 +665,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -715,7 +715,7 @@ "e5869a87-83b3-42bd-bf33-e9f605fae491" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +733,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"10.1.3.6\"\r\n}", "RequestHeaders": { @@ -906,7 +906,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -919,7 +919,7 @@ "9cc07329-1fde-4065-a053-e40cec04b207" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,8 +937,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -980,7 +980,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -993,7 +993,7 @@ "7631bf51-f6c8-44ce-b10f-eb7a4f2b911a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,8 +1011,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json index c41050e1476a..5004e272b142 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -1097,7 +1097,7 @@ "d475e169-eb3a-4ff1-85fd-1034f270cd84" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1115,8 +1115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1168,7 +1168,7 @@ "538eea79-b0ec-4dba-92e0-7c509ef0b7ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1186,8 +1186,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1242,8 +1242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1366,8 +1366,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1403,7 +1403,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1416,7 +1416,7 @@ "ec9bb288-408a-41d0-ae84-f94fd6fedf27" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,8 +1434,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1496,8 +1496,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1552,8 +1552,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1605,7 +1605,7 @@ "4b310bbd-c281-4968-9e9a-b77e26e00f6e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,8 +1623,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,8 +1679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1738,8 +1738,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1862,8 +1862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1896,7 +1896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1909,7 +1909,7 @@ "c0703af9-ffc0-44bb-a758-a3ad480b26ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1927,8 +1927,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2017,7 +2017,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2030,7 +2030,7 @@ "8702f3e3-43b6-4375-91cb-2702b45111c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2048,8 +2048,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json index 2bd834c02f21..adeee1464ac0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "35da7f93-8db2-43da-aaee-cbee33c4e92f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -510,7 +510,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -523,7 +523,7 @@ "2b8e410d-5522-437c-8e5f-16426f3e2b5a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,8 +541,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json index 7d7c856175ba..821324b2d08f 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "55728bff-dfad-4ff4-8aad-4ed50245308d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9901\",\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet9901\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -240,7 +240,7 @@ "5fc2c695-c0aa-4819-8ab7-2398c2fc9815" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,8 +258,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet640\",\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -313,7 +313,7 @@ "b7ab5b3a-9865-44ad-b846-198e40e424bf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,8 +331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -444,8 +444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -566,8 +566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,8 +630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,8 +688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -807,8 +807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -895,7 +895,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -908,7 +908,7 @@ "0b9039be-45a5-44ea-a8b3-7fe457a1cd33" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,8 +926,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json index 024c07448d3a..6b8c7b0306d1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet1701\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "db718a7a-2819-4a41-bffb-5feb27c54cd5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"routeTable\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616\"\r\n }\r\n },\r\n \"name\": \"azsmnet5364\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "3effea22-c97a-441b-bb82-cfb69337e2da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json index c902904a598a..d98a8c9107da 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet8055\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "76a65d58-ba0b-4e45-bfe8-c136db94de75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet7452\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "e16412d4-be93-44d3-adb5-c57c17c4b04b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -953,7 +953,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -966,7 +966,7 @@ "7ceea8ac-c52e-4ae5-9538-04668b6876d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,8 +984,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1072,7 +1072,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1085,7 +1085,7 @@ "eb05162d-43fa-4257-a64e-cf2042a84145" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,8 +1103,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1158,8 +1158,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1191,7 +1191,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1204,7 +1204,7 @@ "1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,8 +1222,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1277,8 +1277,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json index 8760a80a1ab2..02ee66eae483 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9157\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet9228\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "bc0aef85-92ff-4497-91b2-395dbe161889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"azsmnet9790\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "47dc13fe-9612-4fd4-87bd-175568585ebe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n },\r\n \"name\": \"azsmnet4509\"\r\n}", "RequestHeaders": { @@ -844,7 +844,7 @@ "6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,8 +862,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -917,8 +917,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -975,8 +975,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1008,7 +1008,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1021,7 +1021,7 @@ "c12dc6cd-d1e1-4085-8d86-3eac68fdc33d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,8 +1039,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,8 +1094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json index cd7c02ce37cb..1b27c1501acd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json @@ -726,8 +726,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -776,7 +776,7 @@ "212074f1-8a6c-46e3-ba4f-d964fbe2c7c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceGroupName\": \"azsmnet2771\"\r\n}", "RequestHeaders": { @@ -902,7 +902,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -918,7 +918,7 @@ "977c0f9b-3ef5-4b33-a841-46dbcee82fe1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json index 382e7c76626d..90da17bb11b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet15\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "1ca0e867-c51b-4fef-851d-418988eaf043" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -366,7 +366,7 @@ "1cbebe68-0826-45e7-9f5d-870381f3a44c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,8 +384,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -440,8 +440,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -564,8 +564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -629,8 +629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376\"\r\n }\r\n },\r\n \"name\": \"azsmnet1522\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "df09e118-3cc2-460c-8c31-14fef8a5b18d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,8 +700,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,8 +759,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -818,8 +818,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -936,8 +936,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -995,8 +995,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1113,8 +1113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1172,8 +1172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,8 +1231,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1290,8 +1290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1349,8 +1349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,8 +1408,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,8 +1467,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,8 +1526,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1585,8 +1585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1644,8 +1644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1703,8 +1703,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1762,8 +1762,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1821,8 +1821,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,8 +1880,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1939,8 +1939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1998,8 +1998,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,8 +2057,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2116,8 +2116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2175,8 +2175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2234,8 +2234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2293,8 +2293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,8 +2411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2470,8 +2470,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2529,8 +2529,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2588,8 +2588,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2647,8 +2647,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2706,8 +2706,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2765,8 +2765,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,8 +2824,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2883,8 +2883,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2942,8 +2942,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3001,8 +3001,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,8 +3060,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3119,8 +3119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,8 +3178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3237,8 +3237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3296,8 +3296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3414,8 +3414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3473,8 +3473,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,8 +3532,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,8 +3591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3650,8 +3650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3709,8 +3709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3768,8 +3768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3827,8 +3827,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3886,8 +3886,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3945,8 +3945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4004,8 +4004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,8 +4063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4119,8 +4119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4175,8 +4175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4237,8 +4237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -4287,7 +4287,7 @@ "e7ecc344-7735-4bcd-876b-2ba738043a92" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4429,8 +4429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Storage/storageAccounts/azsmnet62\",\r\n \"storagePath\": \"https://nwtestdbdzq4xsvskrei6.blob.core.windows.net/vhds\"\r\n }\r\n}", "RequestHeaders": { @@ -4472,7 +4472,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4485,7 +4485,7 @@ "de538d0a-5abe-455c-87cf-ad8890184879" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,8 +4503,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,8 +4562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json index 5d04662ccffa..b1352a40cb04 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json @@ -714,8 +714,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -764,7 +764,7 @@ "c8656941-8f2e-429f-a1d8-e8b3f2cb69f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,8 +847,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,8 +912,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -977,8 +977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet3313\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000\"\r\n }\r\n ],\r\n \"resourceGuid\": \"a62c6ffb-62da-4576-82e9-a68a189ac62e\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg\",\r\n \"name\": \"azsmnet8060-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -1092,7 +1092,7 @@ "f6cbe102-c2a0-4c0f-89bf-f1b687a94704" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,8 +1110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,8 +1166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Compute/virtualMachines/azsmnet8060\",\r\n \"direction\": \"Outbound\",\r\n \"protocol\": \"TCP\",\r\n \"localPort\": \"80\",\r\n \"remotePort\": \"80\",\r\n \"localIPAddress\": \"10.17.3.4\",\r\n \"remoteIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -1209,7 +1209,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1222,7 +1222,7 @@ "4264c957-2faa-4692-8c38-242a692e9799" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json index 1706ef515653..9a621745b15b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json @@ -616,8 +616,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -666,7 +666,7 @@ "45676481-77c2-4ebe-bceb-39d71832bc4b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,8 +879,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet1718\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197\"\r\n }\r\n ],\r\n \"resourceGuid\": \"f93d2782-b4c9-4d0b-86d0-598825130420\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg\",\r\n \"name\": \"azsmnet2019-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -994,7 +994,7 @@ "6311637f-6802-48cb-b2df-da99aef9e651" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,8 +1068,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Compute/virtualMachines/azsmnet2019\"\r\n}", "RequestHeaders": { @@ -1111,7 +1111,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1124,7 +1124,7 @@ "eb1dc242-8ea0-44d9-abb5-711a6565abdb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 211e7bf6dd4c..0efc306131f2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "71222849-9014-4ff9-9246-f27a40349b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -431,7 +431,7 @@ "8248159d-4703-478e-a374-caf55cf6018e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,8 +449,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -567,8 +567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -626,8 +626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -685,8 +685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -744,8 +744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -803,8 +803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -921,8 +921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -980,8 +980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,8 +1098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1157,8 +1157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1216,8 +1216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1275,8 +1275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1334,8 +1334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,8 +1393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1452,8 +1452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1511,8 +1511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1570,8 +1570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1629,8 +1629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1747,8 +1747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1806,8 +1806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1865,8 +1865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1924,8 +1924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2039,8 +2039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2098,8 +2098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2163,8 +2163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2228,8 +2228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2265,7 +2265,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2293,8 +2293,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2324,7 +2324,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2402,7 +2402,7 @@ "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2420,8 +2420,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2476,7 +2476,7 @@ "4a050275-6023-4176-b8b9-1fb4c5495a05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2494,8 +2494,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2553,8 +2553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2677,8 +2677,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2727,7 +2727,7 @@ "31c62262-91c7-45ef-8c21-7d717c337a7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,8 +2745,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "5183ed56-0494-4453-a87f-f2fb9526ff4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,8 +2819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2878,8 +2878,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2943,8 +2943,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,8 +3002,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3120,8 +3120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3179,8 +3179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3238,8 +3238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3297,8 +3297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3356,8 +3356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3415,8 +3415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3474,8 +3474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,8 +3533,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3592,8 +3592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3651,8 +3651,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3710,8 +3710,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3769,8 +3769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3828,8 +3828,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3887,8 +3887,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3946,8 +3946,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4005,8 +4005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4064,8 +4064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4120,8 +4120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4238,8 +4238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4297,8 +4297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4356,8 +4356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,8 +4415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4474,8 +4474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4530,8 +4530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4564,7 +4564,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4574,7 +4574,7 @@ "796a9be1-c827-490e-b609-a4ad9394d044" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4592,8 +4592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4626,7 +4626,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4639,7 +4639,7 @@ "a3f3b726-de0a-4182-9301-e00e9195aba1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4657,8 +4657,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,8 +4716,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,8 +4775,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4834,8 +4834,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4890,8 +4890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4924,7 +4924,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4937,7 +4937,7 @@ "2f925788-a452-4929-b3ca-ea32aa3a2049" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4955,8 +4955,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5014,8 +5014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5073,8 +5073,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json index 0efb805f49d7..6a6241b721d6 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -54,7 +54,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json index 27c907ea12ce..f60d98a40441 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3972\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "63049a58-9deb-4787-8a83-b3a45a2c5fe7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet8767\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "9f8c9c9e-889f-4fc1-b65d-8f015db88f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "95323aac-1af9-4bea-9208-20a3ff24e430" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet3666\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet3666\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"6b94f5c4-a02b-433e-8301-ad3edf808428\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "b970f182-e80e-40bd-ae0b-8565ec8d6362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "34e7814c-9cc7-488b-a77c-b8fdae0a8309" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"2dab4ece-7a8f-44b3-b328-2f6b34c8914c\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "57608f26-9c56-4a31-8690-b11106b25ef7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet7454\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet7454\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"044c708c-5c2f-434a-b7db-782cab3e1457\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "9735026c-2b5d-4417-885b-5eb7a95dddf5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752\"\r\n }\r\n },\r\n \"name\": \"azsmnet8571\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/probes/azsmnet359\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet8160\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n },\r\n \"name\": \"azsmnet359\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet3666\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7454\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "78dbe39e-320d-43c2-89f7-2599d29feafe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=InboundNatRules%2FbackendIPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=InboundNatRules%2FbackendIPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=BackendAddressPools%2FbackendIPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=BackendAddressPools%2FbackendIPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2069,8 +2069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2133,8 +2133,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01&$expand=IPConfigurations%2FSubnet", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01&$expand=IPConfigurations%2FSubnet", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,8 +2197,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2016-12-01&$expand=IPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2017-03-01&$expand=IPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2261,8 +2261,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01&$expand=IPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01&$expand=IPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,8 +2325,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2358,7 +2358,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2371,7 +2371,7 @@ "c194265f-1af9-4890-9dd6-2f6bf311b1f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2389,8 +2389,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,8 +2444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2498,8 +2498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2531,7 +2531,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2544,7 +2544,7 @@ "f449f276-f45b-4305-915f-47738bf7f6fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,8 +2562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,8 +2617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2650,7 +2650,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2663,7 +2663,7 @@ "8d49efb4-581f-4f95-a034-432313b88536" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2681,8 +2681,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2736,8 +2736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2769,7 +2769,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2782,7 +2782,7 @@ "b5d64b99-24d4-4fea-a1e4-60997d40b62c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,8 +2800,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2855,8 +2855,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2888,7 +2888,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2901,7 +2901,7 @@ "bf7ed969-af60-45e7-8c7b-f8d27b559259" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,8 +2919,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json index 232c2b5408a0..2f8b5baed7d9 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9f9e478c-17a1-4c67-a1d8-6f5dbe36c7da\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"daf1ad3d-f575-4d15-84e5-170a27964e4d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "bf766e1a-499b-4db3-9a49-7af4156734ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json index 082078034fb3..83aac86fff61 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4458\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "30d02c07-62ad-4558-98d6-1cd51b453cfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet29\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "6a608085-a8b7-4e79-91fc-57eef8cbe0b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "3fe7da97-a9b9-4adf-a265-5597f385db0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n }\r\n },\r\n \"name\": \"azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "5414d5de-e04b-4b9a-ba01-72731d714424" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.4,10.0.0.5\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "190d20ca-f34d-4676-a46f-939e0784cec4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "60437720-65a0-4ec6-8b38-cace67f6995d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,8 +1136,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1191,8 +1191,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,8 +1246,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,8 +1356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,8 +1411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1466,8 +1466,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1521,8 +1521,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1576,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1631,8 +1631,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1686,8 +1686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1796,8 +1796,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1851,8 +1851,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1906,8 +1906,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1961,8 +1961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2016,8 +2016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2071,8 +2071,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2126,8 +2126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2181,8 +2181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,8 +2236,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,8 +2291,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2346,8 +2346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2401,8 +2401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2456,8 +2456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2511,8 +2511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,8 +2566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2621,8 +2621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2676,8 +2676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2731,8 +2731,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2786,8 +2786,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2841,8 +2841,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2896,8 +2896,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,8 +2951,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3006,8 +3006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3116,8 +3116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3171,8 +3171,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3226,8 +3226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3281,8 +3281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3336,8 +3336,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3391,8 +3391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3446,8 +3446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3501,8 +3501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3556,8 +3556,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3611,8 +3611,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3666,8 +3666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3727,8 +3727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3782,8 +3782,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3843,8 +3843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3898,8 +3898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,8 +3959,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,8 +4014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4069,8 +4069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4124,8 +4124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4234,8 +4234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,8 +4289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4344,8 +4344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4399,8 +4399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4454,8 +4454,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4509,8 +4509,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4564,8 +4564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,8 +4619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4674,8 +4674,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4729,8 +4729,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4784,8 +4784,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4839,8 +4839,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4894,8 +4894,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4949,8 +4949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5004,8 +5004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5059,8 +5059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5114,8 +5114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5169,8 +5169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5224,8 +5224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5279,8 +5279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5334,8 +5334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,8 +5389,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5444,8 +5444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5499,8 +5499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5554,8 +5554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5609,8 +5609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5664,8 +5664,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5719,8 +5719,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5774,8 +5774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5829,8 +5829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5884,8 +5884,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5939,8 +5939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5994,8 +5994,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6049,8 +6049,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6159,8 +6159,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6214,8 +6214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6269,8 +6269,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6324,8 +6324,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6379,8 +6379,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6434,8 +6434,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6489,8 +6489,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6544,8 +6544,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6599,8 +6599,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6654,8 +6654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6709,8 +6709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6764,8 +6764,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6819,8 +6819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6874,8 +6874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6929,8 +6929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6984,8 +6984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7039,8 +7039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7094,8 +7094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7149,8 +7149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7204,8 +7204,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7259,8 +7259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7314,8 +7314,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7369,8 +7369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7424,8 +7424,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7479,8 +7479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7534,8 +7534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7589,8 +7589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7644,8 +7644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7699,8 +7699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7754,8 +7754,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7809,8 +7809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7864,8 +7864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7919,8 +7919,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7974,8 +7974,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8029,8 +8029,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8084,8 +8084,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8139,8 +8139,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8194,8 +8194,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8249,8 +8249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8304,8 +8304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8359,8 +8359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8414,8 +8414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8469,8 +8469,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8524,8 +8524,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8579,8 +8579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8634,8 +8634,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8689,8 +8689,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8744,8 +8744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8799,8 +8799,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8854,8 +8854,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8909,8 +8909,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8964,8 +8964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9019,8 +9019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9074,8 +9074,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9129,8 +9129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9184,8 +9184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9239,8 +9239,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9294,8 +9294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9349,8 +9349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9404,8 +9404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9459,8 +9459,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9514,8 +9514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9569,8 +9569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9624,8 +9624,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9679,8 +9679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9734,8 +9734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9789,8 +9789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9844,8 +9844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9899,8 +9899,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9954,8 +9954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10009,8 +10009,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10064,8 +10064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json index 5b8d5fb67820..b2744435592a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet545\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "63285282-cbb8-4a5b-876f-aa4b1a163faa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7547\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -241,7 +241,7 @@ "a7656262-acdf-45ca-9be7-124d86e5fff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,8 +259,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -315,8 +315,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -371,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,8 +430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -495,8 +495,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -619,8 +619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "4a9c52ec-5191-49a1-b13c-a1690815ab65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.2.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -808,7 +808,7 @@ "8663122b-5345-4a32-963d-2d0a08729eee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,8 +826,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -882,8 +882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1056,8 +1056,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1121,8 +1121,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1186,8 +1186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n }\r\n },\r\n \"name\": \"azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1239,7 +1239,7 @@ "b132e059-7eb1-469f-914d-25c56708cedf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,8 +1257,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n }\r\n },\r\n \"name\": \"azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1310,7 +1310,7 @@ "6e41a746-ca55-49e5-88f9-fe74998f1c05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,8 +1328,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,8 +1387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1446,8 +1446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1505,8 +1505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1564,8 +1564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1623,8 +1623,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1682,8 +1682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1859,8 +1859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1918,8 +1918,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1977,8 +1977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,8 +2036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2095,8 +2095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2154,8 +2154,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2213,8 +2213,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2272,8 +2272,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2331,8 +2331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,8 +2390,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2449,8 +2449,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2508,8 +2508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2567,8 +2567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2626,8 +2626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2685,8 +2685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2744,8 +2744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2803,8 +2803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2862,8 +2862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,8 +2921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2980,8 +2980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3039,8 +3039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,8 +3098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3157,8 +3157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3216,8 +3216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3275,8 +3275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3334,8 +3334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3393,8 +3393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3452,8 +3452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3511,8 +3511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3570,8 +3570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3629,8 +3629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,8 +3688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3747,8 +3747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3806,8 +3806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3865,8 +3865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3924,8 +3924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3983,8 +3983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4042,8 +4042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4101,8 +4101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4160,8 +4160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4219,8 +4219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4278,8 +4278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4337,8 +4337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4396,8 +4396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4455,8 +4455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4514,8 +4514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4573,8 +4573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,8 +4632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4691,8 +4691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4747,8 +4747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4865,8 +4865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4924,8 +4924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4983,8 +4983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5042,8 +5042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5160,8 +5160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5219,8 +5219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5278,8 +5278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5337,8 +5337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5396,8 +5396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5455,8 +5455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5514,8 +5514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5573,8 +5573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5632,8 +5632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5691,8 +5691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5750,8 +5750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5809,8 +5809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5868,8 +5868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5927,8 +5927,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5986,8 +5986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6045,8 +6045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6163,8 +6163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6222,8 +6222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6281,8 +6281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6340,8 +6340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6399,8 +6399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6458,8 +6458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6517,8 +6517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6576,8 +6576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6635,8 +6635,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6694,8 +6694,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6753,8 +6753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6812,8 +6812,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6871,8 +6871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6930,8 +6930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6989,8 +6989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7048,8 +7048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7107,8 +7107,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7166,8 +7166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7225,8 +7225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7284,8 +7284,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7343,8 +7343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7402,8 +7402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7461,8 +7461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7520,8 +7520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7579,8 +7579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7638,8 +7638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7697,8 +7697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7756,8 +7756,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7815,8 +7815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7874,8 +7874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7933,8 +7933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7992,8 +7992,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8051,8 +8051,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8110,8 +8110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8169,8 +8169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8228,8 +8228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8287,8 +8287,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8346,8 +8346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8402,8 +8402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8458,8 +8458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8520,8 +8520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8576,8 +8576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8638,8 +8638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8691,7 +8691,7 @@ "34bf47da-6691-4dbd-9400-89cb5668f526" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8709,8 +8709,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8762,7 +8762,7 @@ "ad4396c8-658d-4849-afd3-e0f31838df91" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8780,8 +8780,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8836,8 +8836,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8892,8 +8892,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8948,8 +8948,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9004,8 +9004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9041,7 +9041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9069,8 +9069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9100,7 +9100,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9128,8 +9128,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9165,7 +9165,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9193,8 +9193,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9224,7 +9224,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9252,8 +9252,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9289,7 +9289,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9317,8 +9317,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9348,7 +9348,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json index d6ff23ddebdf..37cf76274276 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "4b8f4da0-a5eb-4322-a768-7897aee4afb8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6654\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "5c7f3c04-22aa-4bcb-9b3f-b37081b187cd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -622,7 +622,7 @@ "6058ae5d-6bc6-4d0a-af6f-db9aa1f92372" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "3c0f845a-886c-4824-98d7-99892538c8d2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "d92cddce-5df0-46b3-b974-40633cde5f4a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1115,7 +1115,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,7 +1166,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1217,7 +1217,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1268,7 +1268,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1319,7 +1319,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1370,7 +1370,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1421,7 +1421,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1472,7 +1472,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1523,7 +1523,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1574,7 +1574,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1625,7 +1625,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1676,7 +1676,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1727,7 +1727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1778,7 +1778,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1829,7 +1829,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,7 +1880,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1931,7 +1931,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2033,7 +2033,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2084,7 +2084,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2186,7 +2186,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2237,7 +2237,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2288,7 +2288,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2339,7 +2339,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,7 +2390,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2441,7 +2441,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2492,7 +2492,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2543,7 +2543,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2594,7 +2594,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2645,7 +2645,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2696,7 +2696,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2747,7 +2747,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2798,7 +2798,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2849,7 +2849,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3104,7 +3104,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3155,7 +3155,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,7 +3206,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3257,7 +3257,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3308,7 +3308,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3359,7 +3359,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,7 +3410,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3461,7 +3461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3512,7 +3512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3563,7 +3563,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3614,7 +3614,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3665,7 +3665,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3716,7 +3716,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3767,7 +3767,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3818,7 +3818,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3869,7 +3869,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3926,7 +3926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3977,7 +3977,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4034,7 +4034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -4075,7 +4075,7 @@ "432d7bf3-ed0f-47af-abde-683f1d4d9614" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4103,7 +4103,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6576\",\r\n \"etag\": \"W/\\\"9d6086d8-0a89-4464-bddd-e24d11773f63\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830/ipConfigurations/azsmnet6576\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"5d2295b2-4708-43ff-bf9d-4a2ac1dfe04c\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"3059310d-826c-48d7-a60e-a659c7899dcd\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"40985b67-82b6-44b8-98dc-8ae704fa7bf3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 4,\r\n \"sharedKey\": \"xyz\"\r\n }\r\n}", "RequestHeaders": { @@ -4144,7 +4144,7 @@ "f11e8b40-095e-45e9-a2ac-4e54f2ce0750" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4172,7 +4172,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4223,7 +4223,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4274,7 +4274,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4325,7 +4325,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4382,7 +4382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4433,7 +4433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4490,7 +4490,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4541,7 +4541,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4592,7 +4592,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4643,7 +4643,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4694,7 +4694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,7 +4751,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,7 +4804,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4836,7 +4836,7 @@ "56c95b9b-4460-4322-9a54-fd1d830bfd6b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4845,7 +4845,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4867,7 +4867,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +4918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json index a948a5e446bf..132f707c3425 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6309\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "eb5f29b8-5fab-44b4-b927-5466cfb76a3f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "6e2f0013-ed22-4360-b73f-5bd09a4ace9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -518,7 +518,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -632,7 +632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -692,7 +692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", "RequestHeaders": { @@ -733,7 +733,7 @@ "8c869573-fa12-4c39-b527-1d87586fb4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -761,7 +761,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -812,7 +812,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,7 +863,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,7 +914,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,7 +965,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1016,7 +1016,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1067,7 +1067,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,7 +1169,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1220,7 +1220,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1271,7 +1271,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1322,7 +1322,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1373,7 +1373,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1424,7 +1424,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1475,7 +1475,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,7 +1526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1577,7 +1577,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1628,7 +1628,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,7 +1679,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1730,7 +1730,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1781,7 +1781,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1832,7 +1832,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1883,7 +1883,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1985,7 +1985,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +2036,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2087,7 +2087,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2138,7 +2138,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2189,7 +2189,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,7 +2291,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2342,7 +2342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,7 +2444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2495,7 +2495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2546,7 +2546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2597,7 +2597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2648,7 +2648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2699,7 +2699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,7 +2750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2852,7 +2852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2903,7 +2903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2954,7 +2954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3005,7 +3005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3056,7 +3056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3158,7 +3158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3209,7 +3209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3260,7 +3260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3311,7 +3311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3362,7 +3362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3413,7 +3413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,7 +3464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3515,7 +3515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3566,7 +3566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3617,7 +3617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,7 +3674,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -3715,7 +3715,7 @@ "b8001171-5f00-409e-87fa-e09c8a5b6379" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3743,7 +3743,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3794,7 +3794,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3848,7 +3848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390/ipConfigurations/azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"80eb4542-6628-4989-a71d-39c6f068cd88\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4ab7c1aa-4feb-4aea-8359-f841f6196a5d\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"65b63583-7d30-4f32-acad-93ec0d844814\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -3949,7 +3949,7 @@ "1a59d7cd-2129-4c2a-a110-32a47303d041" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,7 +3977,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4028,7 +4028,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4079,7 +4079,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4130,7 +4130,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4181,7 +4181,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4232,7 +4232,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,7 +4289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyLength\": 50\r\n}", "RequestHeaders": { @@ -4327,7 +4327,7 @@ "b69cde55-32c9-4a0e-af56-dcdb6dbce3c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4336,7 +4336,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4358,7 +4358,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4409,7 +4409,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4460,7 +4460,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4511,7 +4511,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,7 +4562,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,7 +4619,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4670,7 +4670,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4727,7 +4727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "RequestHeaders": { @@ -4765,7 +4765,7 @@ "bb963c2b-266c-4f13-9b03-5fc08f2b72e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json index 6897cd7e9f13..4bb8134e88dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "78d32121-6ff0-4710-a9e8-2f78bea12c93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5521\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "8beafd91-d79d-4589-97b2-5b325389aefc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "a6b8605e-b2cb-41c1-b1aa-e513acca5f3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1100,8 +1100,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,8 +1210,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1265,8 +1265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1320,8 +1320,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1375,8 +1375,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,8 +1430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1485,8 +1485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1540,8 +1540,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,8 +1595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,8 +1650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1705,8 +1705,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1760,8 +1760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1815,8 +1815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1870,8 +1870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1925,8 +1925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,8 +1980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2035,8 +2035,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2090,8 +2090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,8 +2145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,8 +2200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2255,8 +2255,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2310,8 +2310,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2365,8 +2365,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2420,8 +2420,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2475,8 +2475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2530,8 +2530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2585,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2640,8 +2640,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,8 +2695,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,8 +2750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,8 +2805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,8 +2860,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2915,8 +2915,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2970,8 +2970,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,8 +3025,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3080,8 +3080,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3135,8 +3135,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3190,8 +3190,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3245,8 +3245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3300,8 +3300,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,8 +3410,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3465,8 +3465,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3520,8 +3520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3575,8 +3575,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3630,8 +3630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,8 +3685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3740,8 +3740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3795,8 +3795,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3850,8 +3850,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3905,8 +3905,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3960,8 +3960,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4015,8 +4015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4070,8 +4070,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4125,8 +4125,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4180,8 +4180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4235,8 +4235,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4290,8 +4290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4345,8 +4345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4400,8 +4400,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4461,8 +4461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443/ipConfigurations/azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"c71d5327-5c99-4026-ab58-7ffc07376d0e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"63abf0e6-b040-4de6-a636-cbd4774187c7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n },\r\n \"resourceGuid\": \"ba330a4b-c210-44c5-97af-d1e51b107ff8\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true\r\n }\r\n}", "RequestHeaders": { @@ -4513,7 +4513,7 @@ "eb58d262-bbdf-45a2-a70d-70193aa3ee9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4531,8 +4531,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4586,8 +4586,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4641,8 +4641,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,8 +4696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,8 +4751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4867,8 +4867,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,8 +4928,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4982,8 +4982,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5015,7 +5015,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -5028,7 +5028,7 @@ "51dc46ba-57d0-4629-b51f-aac4c79cd525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5046,8 +5046,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5156,8 +5156,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5211,8 +5211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5266,8 +5266,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json index 4ff06a86938b..44f72614b643 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5620\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "9efcedaf-872b-4cd4-b72f-8eee2e7e207c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "4710b952-c826-4161-8f27-50bdd7631b76" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -751,7 +751,7 @@ "2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -779,7 +779,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -830,7 +830,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -881,7 +881,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -932,7 +932,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -983,7 +983,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1034,7 +1034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1085,7 +1085,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1136,7 +1136,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1187,7 +1187,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1238,7 +1238,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1289,7 +1289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1340,7 +1340,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1391,7 +1391,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1442,7 +1442,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1493,7 +1493,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1544,7 +1544,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,7 +1595,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1697,7 +1697,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1748,7 +1748,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1799,7 +1799,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1850,7 +1850,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1901,7 +1901,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1952,7 +1952,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2003,7 +2003,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2054,7 +2054,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2105,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2156,7 +2156,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2207,7 +2207,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2258,7 +2258,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2309,7 +2309,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2360,7 +2360,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,7 +2411,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2462,7 +2462,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2564,7 +2564,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2615,7 +2615,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2666,7 +2666,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,7 +2717,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2768,7 +2768,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2819,7 +2819,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2870,7 +2870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,7 +2921,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2972,7 +2972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3023,7 +3023,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3074,7 +3074,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3125,7 +3125,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3176,7 +3176,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3227,7 +3227,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3278,7 +3278,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3380,7 +3380,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3431,7 +3431,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3482,7 +3482,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,7 +3533,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3584,7 +3584,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3635,7 +3635,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3692,7 +3692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3743,7 +3743,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3800,7 +3800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3857,7 +3857,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,7 +3959,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4010,7 +4010,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4061,7 +4061,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4112,7 +4112,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4163,7 +4163,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4214,7 +4214,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4265,7 +4265,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4316,7 +4316,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4367,7 +4367,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4418,7 +4418,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4469,7 +4469,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4520,7 +4520,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4571,7 +4571,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4622,7 +4622,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4673,7 +4673,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4724,7 +4724,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,7 +4775,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4826,7 +4826,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4877,7 +4877,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,7 +4928,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4979,7 +4979,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5030,7 +5030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5081,7 +5081,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5132,7 +5132,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5183,7 +5183,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5234,7 +5234,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5285,7 +5285,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5336,7 +5336,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5387,7 +5387,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5438,7 +5438,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5489,7 +5489,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5540,7 +5540,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5591,7 +5591,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5642,7 +5642,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,7 +5693,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -5731,7 +5731,7 @@ "6e321e8b-08a6-4dac-9cc1-8538d6076418" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,7 +5740,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5762,7 +5762,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5813,7 +5813,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5864,7 +5864,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5915,7 +5915,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5972,7 +5972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6025,7 +6025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6057,7 +6057,7 @@ "b9215e35-1973-47d3-82e9-3b589a195598" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6066,7 +6066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -6088,7 +6088,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6139,7 +6139,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6190,7 +6190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6241,7 +6241,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6292,7 +6292,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json index 52e4f2ba7502..b760fd2e4448 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "df7c664a-b966-4896-a71c-e9b69c5d241d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7750\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "4c6e88f6-ad73-44ae-8ef4-a6eb09648889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -622,7 +622,7 @@ "218ab0aa-28e0-4540-ad17-302f788f97f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "725a8207-73b2-4243-8160-027ecd1459c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "548cbf18-9be7-408e-8dd7-c88eea8ccc44" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", @@ -1107,7 +1107,7 @@ "d9502d1c-0779-47c8-8eb8-dc11d001b75c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,7 +1135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1176,7 +1176,7 @@ "20852412-192d-4114-8fa5-30be5be0038d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,7 +1204,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ]\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1245,7 +1245,7 @@ "24ba035c-dcb5-46a8-a399-149fc7a893f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"gatewayDefaultSite\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1314,7 +1314,7 @@ "8c6beedd-bd46-4d6a-b918-68dd9df39270" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,7 +1342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,7 +1393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1444,7 +1444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1495,7 +1495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1546,7 +1546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1597,7 +1597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1648,7 +1648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1699,7 +1699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1750,7 +1750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1852,7 +1852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1903,7 +1903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1954,7 +1954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,7 +2005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2056,7 +2056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2107,7 +2107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2158,7 +2158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2209,7 +2209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2260,7 +2260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2311,7 +2311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2362,7 +2362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2413,7 +2413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2464,7 +2464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2515,7 +2515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,7 +2566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,7 +2617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,7 +2668,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2719,7 +2719,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2770,7 +2770,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2872,7 +2872,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,7 +2923,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2974,7 +2974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,7 +3025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3076,7 +3076,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3127,7 +3127,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,7 +3178,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3229,7 +3229,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3280,7 +3280,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3331,7 +3331,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3382,7 +3382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3433,7 +3433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,7 +3484,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3535,7 +3535,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3586,7 +3586,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3637,7 +3637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,7 +3688,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,7 +3739,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3790,7 +3790,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3841,7 +3841,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3892,7 +3892,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3943,7 +3943,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +3994,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4045,7 +4045,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4096,7 +4096,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4147,7 +4147,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4198,7 +4198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4255,7 +4255,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4306,7 +4306,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4363,7 +4363,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,7 +4415,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4473,7 +4473,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4524,7 +4524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4581,7 +4581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,7 +4632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4689,7 +4689,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4740,7 +4740,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4797,7 +4797,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4848,7 +4848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4899,7 +4899,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4950,7 +4950,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5001,7 +5001,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5052,7 +5052,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"ProcessorArchitecture\": \"Amd64\"\r\n}", "RequestHeaders": { @@ -5093,7 +5093,7 @@ "434bbfd2-b60a-4b02-98a5-d395c70cf5b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5102,7 +5102,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5124,7 +5124,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5175,7 +5175,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5226,7 +5226,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5277,7 +5277,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5328,7 +5328,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5379,7 +5379,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5430,7 +5430,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json index 27bd1568b9a4..ef8b88ae4458 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\"\r\n}", "RequestHeaders": { @@ -164,7 +164,7 @@ "fbb24308-d599-45e4-a362-a999ca8fc477" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,8 +182,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,8 +304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -337,7 +337,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -350,7 +350,7 @@ "0efa3a1b-3d5e-4924-8bfb-be23c225d20e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json index e680c3d9052f..7aaf0bc4f44d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6884\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3dad47db-7a5d-4764-b1a8-45e4c54ecb14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3892\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "33b0df37-361c-4610-a62c-2d0bd11d537e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "5cd1d728-5a6d-42ea-9e42-2cef079e7d37" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"96937ace-13d3-4c8e-b23a-e2ef2d0f046d\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"a0039943-18f4-4033-a04c-1b3c15f02e6d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "d42fc5c0-cca6-4177-bd4d-8308ba4890c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "7efab2e5-175c-433e-9f27-b08984133322" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"df2e5d77-c323-4f7b-897f-e70ad4299002\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/loadBalancingRules/azsmnet1645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"d28a6a35-8d37-49a2-946c-37fe04f37acc\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9b45499d-e838-4b4e-9ce1-01e6d473764c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "278e7e1b-2137-4663-9235-2bad3fdfc102" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"c43bb5bd-1ea6-4664-b6ac-19d07a21344f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894/ipConfigurations/ipconfig\",\r\n \"properties\": {\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"etag\": \"W/\\\"7fdcc4dc-873e-4005-bf1a-68b732624f73\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/inboundNatRules/azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244/subnets/azsmnet3892\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cwc5dhmyybvuthnxjkjifbstjd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"89c06edb-81d0-4104-9bc6-a1199e9ea01b\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "ede67ae0-aeba-49e6-90df-5a5b53c7f6ce" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9647\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet3325\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1645\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/backendAddressPools/azsmnet3325\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/probes/azsmnet9912\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet9912\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet5822\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5381\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522/frontendIPConfigurations/azsmnet9647\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "f8b75ac4-426a-4583-9e9c-4676d5661dfd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2038,7 +2038,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2051,7 +2051,7 @@ "892ddc33-a56a-451c-9f96-b4cf3dc159d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,8 +2069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2124,8 +2124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2178,8 +2178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2211,7 +2211,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2224,7 +2224,7 @@ "d91d7f13-838b-49b3-a16c-9fc285b57bd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2242,8 +2242,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2297,8 +2297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2330,7 +2330,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2343,7 +2343,7 @@ "1a21769a-b229-45d2-a730-3d208ae11c57" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,8 +2361,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2416,8 +2416,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2449,7 +2449,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2462,7 +2462,7 @@ "fd9fc03d-a4bb-43e4-9397-c11e79c53925" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,8 +2480,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2535,8 +2535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2568,7 +2568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2581,7 +2581,7 @@ "5fbb2994-1d41-4726-ae24-018ff2a4399b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2599,8 +2599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json index b09cbc549551..579f06f4a955 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9199\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9a4ad2fd-6e62-424d-b1ec-14962cca9cf4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9262\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9105\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet1692\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/backendAddressPools/azsmnet9105\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/probes/azsmnet3839\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet3839\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet9425\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9566\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672/frontendIPConfigurations/azsmnet9262\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bef8bf1d-d1fc-4068-8735-3977bb3c34d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -727,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -760,7 +760,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -773,7 +773,7 @@ "7adb7a95-e3c0-45ff-8fc1-1180b47ae47c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -791,8 +791,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -846,8 +846,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -879,7 +879,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -892,7 +892,7 @@ "d02ab371-ea0c-4a29-b3c1-a316877805ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,8 +910,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json index 557cc9bd3c91..33094a5f9c57 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "963fb0d9-d9da-442b-ba19-ed37d225501f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "5409a23a-b969-4ec0-b876-2d7fa5fd4bbc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIP\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "11fc7019-b17b-489e-b2b3-0f1f043f637b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIPProtocol\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "0e5113c6-d8c6-4379-b111-8af4d1de4ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -627,8 +627,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -691,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,8 +813,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -871,8 +871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,8 +996,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,8 +1050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1083,7 +1083,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1096,7 +1096,7 @@ "53c70c1f-f3bc-49bc-82ad-3567f6427a52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,8 +1114,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,8 +1169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1202,7 +1202,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1215,7 +1215,7 @@ "e27bbc83-c3a8-4eee-91c5-f17a3aef9423" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,8 +1233,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json index 1e89d8c1eae2..ad4c27c5ed16 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "264ff5ef-2d86-4608-8e76-eac955cb406e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9826\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1606\",\r\n \"etag\": \"W/\\\"08dd095e-7a95-4523-9219-23493907e2af\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239/subnets/azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2958\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet6449\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/backendAddressPools/azsmnet2958\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/probes/azsmnet2286\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2286\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet3126\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2299\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "04b85831-52ed-4f78-b0ab-a589450ebbdc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "4b0345cf-ec91-4ace-9cca-e9431a22067d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "b6f5aa51-c004-419b-bff0-20344fcaf8ae" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json index 84e64b13d512..6d5bc862829a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5e54fcf7-11ac-48da-aac5-2fa0ba445a1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6881\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet4614\",\r\n \"etag\": \"W/\\\"c27c3a4a-61b2-471d-bc8e-e21fa2a01e7c\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103/subnets/azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1565\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet2497\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/backendAddressPools/azsmnet1565\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/probes/azsmnet914\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet914\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"azsmnet6108\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4420\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9132b8e7-7535-4edc-93b0-8098b908e34e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "6e738e9c-4fb2-4b3d-a5dd-02972e66cde3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "32b8cf10-7428-4325-a94d-cb75ba3084dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json index 36470fd821d7..a27371ae40b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6030\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9ef85cc4-df4b-4966-ab96-bfaeb3811312" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\",\r\n \"properties\": {\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\"\r\n }\r\n ],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5745\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 107,\r\n \"frontendPortRangeEnd\": 110,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"3b977636-5d80-427b-914a-bf079a283b97\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "a9d5f4ef-f803-4914-aa56-9d99163a25b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -712,7 +712,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -725,7 +725,7 @@ "275fb0d7-293f-4025-8841-d3bd66ce4d17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -852,8 +852,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -885,7 +885,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -898,7 +898,7 @@ "bd3187d4-a3d1-4118-88b2-0938e6beb75e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,8 +916,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json index fd2b26e6eb40..05d2aa7931dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet339\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5eacd067-d3d7-4e2a-89a8-8b633e85d30e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609\"\r\n }\r\n },\r\n \"name\": \"azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet4688\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"enableFloatingIP\": false\r\n },\r\n \"name\": \"azsmnet7538\"\r\n }\r\n ],\r\n \"outboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"allocatedOutboundPorts\": 1000,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/backendAddressPools/azsmnet4688\"\r\n }\r\n },\r\n \"name\": \"azsmnet8413\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "afa88ff0-3c18-4dcf-bf65-4c0fae290cba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "6f62b5b3-4ebe-4797-9fdd-e945b7728203" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "632e498b-bc6b-4467-a71a-f7ed2ceece4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json index e44730dcf956..e4028768b739 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "08de78f1-3bc7-493f-bc67-f4597fb79770" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet2252\",\r\n \"etag\": \"W/\\\"ff72dc07-42e5-4d32-bcd1-6d92b4911872\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "e136fa58-0f19-4a46-9e35-a6a7d24e223d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/probes/azsmnet6266\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet6266\",\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 10,\r\n \"numberOfProbes\": 2,\r\n \"requestPath\": \"healthcheck.aspx\"\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"0296cf87-5d50-4fce-9fb0-055dae5af2de\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6beeefcf-99bd-4697-828a-71ea9ab26d3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "6cd22eff-f535-476e-895b-85418749a134" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "6bf37bbe-9cc4-4b2c-8776-e67472f3b824" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json index ba20fb509f42..9dd530e44ea1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8249\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2177\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2f3e4c16-6339-4b37-b653-d4317887a159" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1712\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json index da8c945d43ac..0e5630780761 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1938\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "12fbba8e-ab04-436d-84a1-625f46c202f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet4813\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "d494c757-68f0-45d0-9cf0-dba5c2cdcd05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341\"\r\n }\r\n },\r\n \"name\": \"azsmnet6862\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "59f8cc76-3006-45fc-a35f-52a40040e9b4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,8 +976,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1009,7 +1009,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1022,7 +1022,7 @@ "aa4769b3-0555-4b4d-bf93-ec75ac59336f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,8 +1040,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,8 +1095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1128,7 +1128,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1141,7 +1141,7 @@ "ec9b9318-944d-4129-9cc4-ac5b9aec2f4d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,8 +1159,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1214,8 +1214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1247,7 +1247,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1260,7 +1260,7 @@ "26a085d4-53bb-4078-b6ae-c11c9ff3337d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,8 +1278,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json index 7b9d10e3c6b3..fab8774ff389 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5051\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3881820c-25c4-43bc-a03a-305b8451d77f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9491\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "406304b5-998f-438a-8b94-4f8e4c068d71" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipv4ipconfig792\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ipv6ipconfig4450\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv6\",\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "bf2587c6-c933-42bf-8114-047fb0033458" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "c8341a35-6cc2-49f2-8d26-351acab85730" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "bb6bebcd-c58f-481e-9924-778276ae0606" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "ddd5be95-00cf-4031-993d-c2ec96e3812d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json index 673f1e1b90e3..6f00311ba6ef 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet9996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3618ebb7-24be-434f-bbfc-3aeea1ed27e2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996\"\r\n }\r\n },\r\n \"name\": \"azsmnet5670\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f273ca10-2b73-4b7a-adcb-843d2cf4894c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "999431c8-2c8c-40b2-9dd2-285624e3a112" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "610d0d8b-e937-4a27-806e-182f67105689" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json index 57b19b3557fb..b4e1ec9c6c64 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet7512\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "53e216aa-b677-4c58-9fc9-e541fdf21d11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512\"\r\n }\r\n },\r\n \"name\": \"azsmnet6647\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f86d4fc2-8e02-4294-b8bd-e381115a3769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "930e8b36-b134-4dd6-9411-8b5e80fcfec0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "24b51407-43bc-4eb7-b256-69f74a70212d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json index aa9fbdfdfa34..22581ad6d0c2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet1289\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7b73f3ff-87d1-4336-9503-1ecadcd8be0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet9761\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "d3d925f7-f43d-403b-b5e0-aafde256930d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9761\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/securityRules/azsmnet9761\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"df2612a2-9f2c-4641-ae62-31982ad26eec\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980\",\r\n \"location\": \"eastus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612/subnets/azsmnet1289\"\r\n }\r\n },\r\n \"name\": \"azsmnet9385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "f2de0f45-a61a-436c-a77f-f6f1cfa32749" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json index 81fd106807d0..756a58f041fe 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet6595\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "e16aeb62-7174-4d4b-9e7b-9dc47d3b300b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "eb361df5-f998-4434-bf5a-062492302f90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8404\",\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682/ipConfigurations/azsmnet8404\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vlmtkxhqcrjuppuzwmwcy12tbb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": true,\r\n \"resourceGuid\": \"7d6b5cca-b79f-4864-9ef4-c15a17a31419\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "37174060-7b1b-4ece-a928-3094a8d18845" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "e0c0e99b-cd17-43b6-bcfa-73ece75e9605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json index a44bf35a0643..c9f0f48cfeae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9820\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "445ecc2b-8cab-47c6-8cf5-f27ef58c6f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3029\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "2db579ed-ab30-4409-abed-01079ed6aadb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3794\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "cbefd58a-85af-4671-b8ef-8267d4df4747" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "a4354010-5717-4653-af48-020895676b17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "5cc2a384-0a40-4da2-9c34-859484e09efe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "0038f628-e452-4f45-812d-7efd6d0cac2d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json index aef34f068bfb..820a70192902 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet2837\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "bc9a8556-b961-40a0-9019-770a3478bece" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet40\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "72821b37-7181-4fba-ac9f-666e4ae59d4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet40\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/securityRules/azsmnet40\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"934e8452-0070-43cf-9b4c-1e68110717eb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465\",\r\n \"location\": \"westus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053/subnets/azsmnet2837\"\r\n }\r\n },\r\n \"name\": \"azsmnet5652\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "ca2465ca-7e5f-4d68-9014-559fd9ea6deb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -780,7 +780,7 @@ "1a83fd25-aad9-4b8c-8589-7b5470a4193c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,8 +798,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -853,8 +853,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -907,8 +907,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -940,7 +940,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -953,7 +953,7 @@ "41bd6817-bafa-41a2-9972-7f4fee825cea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,8 +971,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,8 +1026,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1059,7 +1059,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1072,7 +1072,7 @@ "fb7d529e-41e0-4aff-8e3e-21c68e56fd0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1090,8 +1090,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json index efe657a09e5a..85475b1cd318 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5615\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "944f01c2-77b2-40f8-82a9-e045b2d480b3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"azsmnet1333\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": true\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json index c0873c483e65..cad22f4219a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7120bd31-52fd-4930-8efa-92cca097ff1c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "5643405a-4d6b-4219-99ec-4f36cefb7a10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json index f1753246321b..fcccf5847bff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "a57f505b-b51f-4237-9476-5550060e76c9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"name\": \"azsmnet9774\",\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5872\",\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6d429732-cf6e-4850-b7a9-9540b533611f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,7 +587,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -644,7 +644,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,7 +705,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -756,7 +756,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -788,7 +788,7 @@ "ada432fe-0599-42de-9762-823b41e02fec" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,7 +797,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -819,7 +819,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json index a55bc2d58572..3b434935429b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9769\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "d3b1ceb3-fc95-45e0-874d-0553b5bab53b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -404,7 +404,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -461,7 +461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -524,7 +524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -556,7 +556,7 @@ "13308a66-8897-44ea-8df9-b12ca1d98e21" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +565,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -587,7 +587,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json index 14847b6bb2a5..f20929eaa5fd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv6\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "d39b9d63-14ac-4cb8-8bc6-629171fc57a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "fc579ad7-d1fe-49a3-99ca-9e301fbc0796" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -654,8 +654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -706,7 +706,7 @@ "83a5dde1-2b52-4c78-99bb-7ee5001ab69c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,8 +724,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -779,8 +779,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -837,8 +837,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -901,8 +901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -934,7 +934,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -947,7 +947,7 @@ "a0b157e4-ac6d-46d0-9a73-dbc3fc69280c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -965,8 +965,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json index 0a8a05544ddc..aa335f46a5c0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\"\r\n },\r\n \"idleTimeoutInMinutes\": 16\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "3250be31-367d-4a1a-96ad-e25adb1815b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"ee1883f7-8770-41a4-a42a-514f7b1ee87d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\",\r\n \"fqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\",\r\n \"reverseFqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\"\r\n },\r\n \"idleTimeoutInMinutes\": 16,\r\n \"resourceGuid\": \"565a8af7-d851-4520-8442-5901971e7630\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6b3e5417-f2af-47bb-a8b4-11ca41ec00f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,7 +759,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -791,7 +791,7 @@ "2ece8ab6-7318-4954-b1ce-93646466f555" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -800,7 +800,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -822,7 +822,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json index ffb17767f641..d9b8ac02be8d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Test security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"655\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 500,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"azsmnet8397\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9300ca35-e10e-4803-9a19-ccbe70a88005" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Udp\",\r\n \"sourcePortRange\": \"656\",\r\n \"destinationPortRange\": \"123-3500\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet816\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "b54f2a54-7610-4887-a5e4-3facc44b6e4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -892,7 +892,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -905,7 +905,7 @@ "b6870c53-cd86-4331-93a0-7049be9a172d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,8 +923,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,8 +978,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1011,7 +1011,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1024,7 +1024,7 @@ "8a91f8d2-0056-477a-9c1e-ebc67ec78aaa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1042,8 +1042,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1097,8 +1097,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json index bf091c25077e..dcb278467ec5 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8334\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "2fcae6d6-c43b-4e96-b23c-61c0228b165a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azsmnet5369\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "8b7446cd-d269-455b-a81c-29f8cd144774" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "f78e960c-8975-4d9e-84fa-c28eea2d0bd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json index cce327763e55..81c9236fa178 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet3524\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "ae5fd15b-d60b-4b34-9452-57746445103a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json index 5557a7e08d3a..2a677d5647cf 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "15044d4c-3df8-4152-a39c-c0255289b846" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json index a94124495b22..59cbd63f4bae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json @@ -61,8 +61,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -113,7 +113,7 @@ "bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -131,8 +131,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -308,8 +308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -369,8 +369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -475,7 +475,7 @@ "6f1e3332-1c7e-49be-8de6-e0d05d150ff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,8 +493,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -606,8 +606,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -667,8 +667,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -789,8 +789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowVirtualNetworkAccess\": false,\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391\"\r\n }\r\n },\r\n \"name\": \"azsmnet3453\"\r\n}", "RequestHeaders": { @@ -841,7 +841,7 @@ "d5541592-049c-4c84-8b93-2f151349c8f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,8 +914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -972,8 +972,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1069,7 +1069,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1082,7 +1082,7 @@ "6684a1f4-8428-45c0-bb6b-c25a44d4833c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1100,8 +1100,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1188,7 +1188,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1201,7 +1201,7 @@ "c401ba88-eaec-4651-8550-e2b8795b28c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,8 +1219,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1274,8 +1274,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1307,7 +1307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1320,7 +1320,7 @@ "fbe9a49e-ee49-4cd2-9e6b-aec391eb8078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,8 +1338,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json index 5719245c7dc1..b77db5b654ff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet1873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet997\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "0d9b13a2-9865-4553-b38c-899a1b7f170f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -553,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -586,7 +586,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -599,7 +599,7 @@ "da3c92e3-ca15-4330-9719-bd5536d2cda5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,8 +617,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json index 0513cf5598ba..58834bc64100 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3416\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3995e6e8-2a31-4716-9e9d-e974fdc5cee9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.9\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416\"\r\n }\r\n },\r\n \"name\": \"azsmnet4903\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bcea5bd3-3988-4c94-8988-ce1128de88bc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -642,7 +642,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -655,7 +655,7 @@ "d894dfdd-726f-461c-95b3-564fba881898" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,8 +673,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -774,7 +774,7 @@ "de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,8 +792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json index 632369a5eeb3..93160a190fb7 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet7820\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "e9c55f19-519e-4c28-a7c2-38d4c48caf56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -433,8 +433,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,8 +498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "53c9e2d1-865d-4bc5-9cab-925bf0afb411" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -625,8 +625,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "abbc845f-7549-4105-9ab5-ed3270f676c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1059,8 +1059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1093,7 +1093,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1106,7 +1106,7 @@ "72f70e8c-36a1-4482-87ea-8576fcf7f823" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,8 +1124,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,8 +1180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1214,7 +1214,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1227,7 +1227,7 @@ "bf6e70fe-9654-4caa-ab74-9a2a50cf683c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,8 +1245,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1335,7 +1335,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1348,7 +1348,7 @@ "1e1eff12-10ca-460f-9ff5-098c619eae9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1366,8 +1366,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From d6151b3d3646cc7c75668d891f6819ca93470b69 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:24:55 -0700 Subject: [PATCH 125/137] #INIT Changed version number to 2017-03-01 in Compute/SessionRecordings. --- .../TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../TestExtImgGet.json | 2 +- .../TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- .../TestVMExtensionOperations.json | 50 ++--- .../TestImageOperations.json | 50 ++--- .../TestListVMInSubscription.json | 100 +++++----- .../TestVMWithLinuxOSProfile.json | 50 ++--- .../TestVMWithWindowsOSProfile.json | 104 +++++----- .../TestListUsages.json | 50 ++--- .../TestVMCertificatesOperations.json | 30 +-- .../TestVMDataDiskScenario.json | 50 ++--- .../TestVMBootDiagnostics.json | 50 ++--- .../TestVMDiskEncryption.json | 26 +-- .../TestVMDiskSizeScenario.json | 50 ++--- .../TestVMBYOL.json | 50 ++--- .../TestVMMarketplace.json | 50 ++--- .../TestEffectiveRouteAndAcls.json | 78 ++++---- .../TestMultiIpConfigForMultiNICVM.json | 54 ++--- .../TestMultiNicVirtualMachineReference.json | 54 ++--- .../TestNicVirtualMachineReference.json | 36 ++-- .../TestVMOperations.json | 100 +++++----- .../TestVMOperations_Redeploy.json | 50 ++--- .../TestVMScaleSetMarketplace.json | 46 ++--- .../TestVMScaleSetWithApplciationGateway.json | 184 +++++++++--------- .../TestVMScaleSetBatchOperations.json | 50 ++--- .../TestVMScaleSetOperations.json | 50 ++--- ...TestVMScaleSetOperations_ManagedDisks.json | 50 ++--- .../TestVMScaleSetScenarioOperations.json | 50 ++--- ...narioOperations_ManagedDisks_PirImage.json | 50 ++--- .../TestVMScaleSetScalingOperations.json | 50 ++--- .../TestVMScaleSetUpdateOperations.json | 50 ++--- .../TestVMScaleSetVMOperations.json | 50 ++--- ...stVMScaleSetVMOperations_ManagedDisks.json | 50 ++--- .../TestVMScenarioOperations.json | 50 ++--- ...TestVMScenarioOperations_ManagedDisks.json | 50 ++--- 40 files changed, 939 insertions(+), 939 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index 41d56c39d77b..c90d66618049 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 9f1f1e8233ad..0d03fdb6250b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index e8045406bdd2..bd443a53e6ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index fc3756c3a85c..2c1a98ed6570 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index abc449435cb7..2343de8f650a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index d76a89158bb8..bfb318f6ef31 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index a164c1a3195c..bc9057da8c35 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index e90bf7aad7ff..7bc95fedbe54 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json index 7b51902196c4..0a2e78ddd7e3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9607\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6636e9ed-13b1-43c5-a732-2887eca688b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "7e286ad3-e71a-4d8b-806f-ca8598fdd719" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip219\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2885\",\r\n \"etag\": \"W/\\\"216e9617-87f7-4b32-b6fa-5142ab44799b\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "e80bc784-fc35-4952-b020-e1621d0bf8a7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json index a69ada7e46b9..1992ecada87d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn95\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "39693354-72da-4b98-912c-0543840dabb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "74ff459b-e193-46be-957b-5dc4b1502e9c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2603\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3745\",\r\n \"etag\": \"W/\\\"e31795eb-9431-42b9-96d8-fc44fbb6b67a\\\"\",\r\n \"id\": \"/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -929,7 +929,7 @@ "8b8876a7-f4cb-4d78-811c-e45cd8fe3c30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json index 9f3d7f1636b1..8ab6f8f85bb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5539\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "4c4ef2f1-1edb-4cc5-ba59-8747661ac781" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "81c704c5-1a6c-4dc9-bf88-74afe2a418c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6468\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2379\",\r\n \"etag\": \"W/\\\"09124712-1dc7-43e1-a2e6-3126e9a76e54\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2188,8 +2188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2924\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "8efdc1fe-e795-43dd-9479-ded9e5a47ad9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,8 +2258,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2313,8 +2313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2371,8 +2371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2435,8 +2435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2487,7 +2487,7 @@ "ac9b713b-6eff-4e4c-ba24-0d82224e4a79" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,8 +2505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2560,8 +2560,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2682,8 +2682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7345\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn4669\",\r\n \"etag\": \"W/\\\"f16b3546-733c-405b-9c3e-542b5dacf471\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2731,7 +2731,7 @@ "d9756ef5-b2b2-4814-9c1c-e70e981d4e9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,8 +2749,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2807,8 +2807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json index 5a9a58b22790..bf4dec1f61d3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8223\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d51a812f-0f0f-43b5-a4c8-0c8be66ddd86" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3362\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn637\",\r\n \"etag\": \"W/\\\"b12f0d00-284c-4afc-84d5-bfa2ac1437de\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "882e78bc-fa42-4b1b-85de-954de4f8fbd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json index d18ba0cde08c..8d0a6f72550e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json @@ -1637,7 +1637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1678,7 +1678,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1706,7 +1706,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1747,7 +1747,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1775,7 +1775,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1816,7 +1816,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,7 +1844,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1885,7 +1885,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,7 +1913,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1964,7 +1964,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2015,7 +2015,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2066,7 +2066,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2117,7 +2117,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2171,7 +2171,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2225,7 +2225,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2279,7 +2279,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2333,7 +2333,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2453,7 +2453,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2573,7 +2573,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2614,7 +2614,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2642,7 +2642,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2683,7 +2683,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2711,7 +2711,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2752,7 +2752,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2780,7 +2780,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2849,7 +2849,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3161,7 +3161,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3215,7 +3215,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3269,7 +3269,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3389,7 +3389,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3449,7 +3449,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3509,7 +3509,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3547,7 +3547,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3575,7 +3575,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3613,7 +3613,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3641,7 +3641,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3679,7 +3679,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3707,7 +3707,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3745,7 +3745,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3773,7 +3773,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3833,7 +3833,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3893,7 +3893,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3953,7 +3953,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json index e31e6dd1e481..c0516ccd4ff6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8029\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "994ef8d3-0ac7-4a32-90bd-0df1f017983f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "28ad7faf-ccb1-45c9-b3a5-bee442bb02ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9892\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5051\",\r\n \"etag\": \"W/\\\"e390030a-9b9c-4215-9f89-6e13f66b5e5f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "9cdb43a7-671b-4bfa-a7ff-4debe63a5560" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json index 943c588a56a7..d2e6d376615f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json @@ -341,7 +341,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3075\"\r\n }\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -376,7 +376,7 @@ "80c4066a-ebd2-4caa-aaad-68871f8585ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,12 +404,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -458,7 +458,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -512,7 +512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -547,7 +547,7 @@ "e2d620bb-8279-45da-b8de-5a21a32126b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,12 +575,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -629,7 +629,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -683,7 +683,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualNetworks/azsmnet7824/subnets/azsmnet5000\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062\"\r\n }\r\n },\r\n \"name\": \"azsmnet7651\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet6511\",\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -718,7 +718,7 @@ "bfdd585b-89c3-4940-9896-4253781658b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,12 +746,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -800,7 +800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json index cc669591681f..65eb1d7665b2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8464\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d56c878a-38f1-4da1-ae6e-ddf675e0fb70" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9da20380-b57e-47ac-9bc1-443d5399f32a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9679\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7187\",\r\n \"etag\": \"W/\\\"da8250cc-8608-4a5f-be2a-6da45670caf0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "de247dca-53d2-4573-94cc-01e65fd1fc7f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json index f9ec7b96f0e7..f12a62aa579f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1593\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d7c2562b-e785-415a-9688-fef7ccbaa06d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9cbff61d-7049-4ed5-8f85-7ee3c41f919f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5437\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7677\",\r\n \"etag\": \"W/\\\"7d8534a4-69a9-4cee-b681-077fca187496\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "3a9d081b-8a92-401d-a802-6e73054d3a41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json index c51908d49888..5578452f9551 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json @@ -407,7 +407,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9021\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -448,7 +448,7 @@ "c3ff3024-263e-4233-bb1e-5f70638c0791" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -476,7 +476,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -527,7 +527,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "e237b881-ddbc-4325-aa80-228a59600b22" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -815,7 +815,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -875,7 +875,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3879\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn936\",\r\n \"etag\": \"W/\\\"15a0ea2d-97d4-4630-a984-5254777a1a75\\\"\",\r\n \"id\": \"/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualNetworks/vn3782/subnets/sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -913,7 +913,7 @@ "4e22ec02-1666-463b-bb77-96399ed3431b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,7 +941,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json index 7eb4047d430c..0b79ff8a3a58 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9166\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "ea8294d9-40db-47e5-b805-ef87b4a12e2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "9a33cc62-b116-4432-b93f-81126bd08197" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,8 +984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3443\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8501\",\r\n \"etag\": \"W/\\\"10a352e0-7b29-4928-a52a-679aedb25eb6\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1033,7 +1033,7 @@ "18f5cc6d-346e-4f66-b765-573eb950e1a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,8 +1051,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1109,8 +1109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json index 7a928f3972ab..a8b217a38c22 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3046\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -420,7 +420,7 @@ "a80a4050-fd45-499d-9ed3-fd2e55db1d66" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,8 +438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -493,8 +493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -667,7 +667,7 @@ "403bb37b-9d4f-4711-a2af-20e373c1d7dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,8 +685,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -740,8 +740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3834\",\r\n \"etag\": \"W/\\\"f18e1229-16c3-4246-9af5-d2dfe51925f0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -911,7 +911,7 @@ "7e328178-6311-4522-8e21-9413a3451485" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,8 +929,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json index 69a4cc544414..123ecc068932 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6298\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -603,7 +603,7 @@ "84da3aac-dd98-400f-b27d-da784d0989da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,8 +621,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -850,7 +850,7 @@ "73697911-5120-4e19-b0e5-7f182991944f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,8 +868,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn6013\",\r\n \"etag\": \"W/\\\"cfe5e54a-75df-4ad2-a5a2-8fe583ed14be\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "4347fe14-c13e-4892-9de8-1c974820ecde" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1112,8 +1112,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1170,8 +1170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json index 4faa0edcb4c3..dcea29f91250 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn3213\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "8654168d-aa01-415e-b701-740a896b258e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "4a5504d2-1005-4476-9b4b-17b4fe52d078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"875dc796-a63c-40a7-adcd-61639d94c346\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878\",\r\n \"location\": \"southeastasia\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn3213\",\r\n \"etag\": \"W/\\\"1fa85aa4-d945-4932-8271-c9b2ccda90e7\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213\"\r\n }\r\n },\r\n \"name\": \"ip2684\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "303a1a67-97e6-4deb-a885-e58f8a9fc538" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1112,8 +1112,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2308,8 +2308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2344,7 +2344,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2372,8 +2372,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2408,7 +2408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2436,8 +2436,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2466,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2494,8 +2494,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,7 +2524,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json index 763d211ad96d..d7067d72862a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "bbf2ee81-a708-465f-ab38-0bbf854c6397" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6347\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip23520\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a6539b36-087c-46fc-885d-73bfaa84757d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7139\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip21965\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "98169df6-ba37-4496-bee5-79f47beeb013" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json index 82ddcb931ba2..bf21199a5dbf 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "337fb129-529f-4643-a826-b3ed73bb1b7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9564\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "f3f1a2c0-4e36-4695-a3fd-061b0131e522" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "102888f0-a1bd-4ca8-a6d5-18908a0b0516" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json index e2139287c0b3..a4f941794281 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "2dc7ea7b-d165-45b3-9978-ac843843a8aa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5746\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5961\",\r\n \"etag\": \"W/\\\"bd2aed07-e14c-40f0-a7dd-4b22b6185f61\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a450fac6-ae9c-41fd-bc66-148f9cda4883" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index f568bcf40d9b..41b926cf4eca 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -492,8 +492,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8133\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -544,7 +544,7 @@ "5f63c140-65af-4671-8059-f064fabc83be" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,8 +562,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -617,8 +617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -675,8 +675,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -739,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -791,7 +791,7 @@ "e6754412-902f-4285-9d98-e3abea367247" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,8 +809,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -864,8 +864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -986,8 +986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7212\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7804\",\r\n \"etag\": \"W/\\\"b30468c9-5ebf-4f38-bea7-a6a2354ae10e\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1035,7 +1035,7 @@ "76e05b02-e233-4f14-8a86-6d87844e90a6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,8 +1053,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1111,8 +1111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3683,8 +3683,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7945\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -3735,7 +3735,7 @@ "304afb2c-100c-4420-96f6-519e50214408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,8 +3753,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3808,8 +3808,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,8 +3866,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3930,8 +3930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3982,7 +3982,7 @@ "f124a6aa-8ff4-44de-9a2c-55cc8d035926" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4000,8 +4000,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4055,8 +4055,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4113,8 +4113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4177,8 +4177,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6968\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2271\",\r\n \"etag\": \"W/\\\"daaa0816-ade5-4405-8b35-96b32c5610ce\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -4226,7 +4226,7 @@ "1780921b-6db3-46d5-bde3-139d1615b367" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4244,8 +4244,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4302,8 +4302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json index 68ccfc09256c..696c3e77e0d5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn4808\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "47a47f5f-fa54-4ac3-b001-4cc476eff4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "26eed63d-ddfd-4113-9aa8-e8bc80362e13" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9690\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8395\",\r\n \"etag\": \"W/\\\"055220a9-8c65-4920-9ab2-28fc8ebfd619\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "d76e9f46-d499-4819-801b-45ff74cfc2a5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json index 38a91b91e568..78397188f46d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json @@ -530,8 +530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2658\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -572,7 +572,7 @@ "06fa6a94-8bba-4693-a01f-ce4143272113" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,8 +600,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -707,8 +707,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -768,8 +768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -810,7 +810,7 @@ "2ee238c4-cbf5-4e03-8fa8-c934e7c46334" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -838,8 +838,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -945,8 +945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1006,8 +1006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7639\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3505\",\r\n \"etag\": \"W/\\\"938ab6d1-5c0f-47f1-89ee-6dcdabe7d802\\\"\",\r\n \"id\": \"/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualNetworks/vn6769/subnets/sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "2ae3f188-e69c-4a4b-a4ad-2821589e07f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1073,8 +1073,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json index d7edb379779d..86a60e40872e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"sn18098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"sn24269\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "44fe5922-bec0-4e35-8656-6d00f3c019a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"gwIp3235\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"fIp916\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"fPort5719\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"pool8495\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\"\r\n },\r\n \"name\": \"setting4841\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendIPConfigurations/fIp916\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendPorts/fPort5719\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"listener418\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendAddressPools/pool8495\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendHttpSettingsCollection/setting4841\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/httpListeners/listener418\"\r\n }\r\n },\r\n \"name\": \"rule4776\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -675,7 +675,7 @@ "0f1710a9-9b53-4323-9afd-6b59429cf0ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,8 +693,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,8 +988,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1106,8 +1106,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1165,8 +1165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1224,8 +1224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,8 +1283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1342,8 +1342,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1401,8 +1401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,8 +1460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1519,8 +1519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1578,8 +1578,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1637,8 +1637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1696,8 +1696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1755,8 +1755,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1814,8 +1814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1873,8 +1873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1932,8 +1932,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1991,8 +1991,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2050,8 +2050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2109,8 +2109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2168,8 +2168,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,8 +2227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2286,8 +2286,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2345,8 +2345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2404,8 +2404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2460,8 +2460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2519,8 +2519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,8 +2584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2649,8 +2649,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3681\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2702,7 +2702,7 @@ "38870625-8082-4853-b530-4a242e83efd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,8 +2720,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2776,8 +2776,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2835,8 +2835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,8 +2900,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn24269\",\r\n \"etag\": \"W/\\\"150ae5ac-97a7-41fb-b256-0a2fca784095\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn24269\"\r\n }\r\n },\r\n \"name\": \"ip9271\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2950,7 +2950,7 @@ "0c0ac95e-e324-4552-add6-9caaa3218d5c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2968,8 +2968,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3027,8 +3027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json index d933f67f40c9..4d2d9be26cb6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9414\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "78f60a92-eefa-40f5-93cb-43b8a8ee7167" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,8 +687,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn8550\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -740,7 +740,7 @@ "0ec17ca2-2425-4609-a936-11bb1591b92d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,8 +758,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -873,8 +873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn8550\",\r\n \"etag\": \"W/\\\"a366937d-2fa2-40b4-8aea-7f0fe553ac57\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550\"\r\n }\r\n },\r\n \"name\": \"ip9581\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -988,7 +988,7 @@ "82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,8 +1006,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1065,8 +1065,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json index 27b1188e2c10..1e74dd9b2d3f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9086\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "da9b1a55-b312-468d-8096-46f9d2d84c31" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "ace514d6-4d1a-4531-adaa-22341e2af8ff" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json index 86321f1b9e71..25e49b104910 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2213\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "c67351d2-991e-4b2b-a4a2-c4255eb4fd0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9982\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "cf87eff0-e701-4779-9199-51c0843ed22a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json index aa3f952450a4..3c9acdd0c005 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6753\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn1959\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "40dc0178-41da-4050-b3de-1b9cda61769f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1959\",\r\n \"etag\": \"W/\\\"315b667b-e5a5-4bf7-9ca1-3c756c990556\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959\"\r\n }\r\n },\r\n \"name\": \"ip8495\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "fdc47062-3147-4d64-a558-aeddaa06d489" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json index 65efff3fd90c..7ce305e78d3e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json @@ -462,8 +462,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8427\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -504,7 +504,7 @@ "5a7be3e7-4917-4fc3-adb4-f0f30862b743" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,8 +532,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,8 +584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,8 +639,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -700,8 +700,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3544\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -742,7 +742,7 @@ "97e39527-4fe2-4f11-a000-30b224522828" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -770,8 +770,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -822,8 +822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9831\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7797\",\r\n \"etag\": \"W/\\\"00863957-ff3e-4def-b190-536068ab6b8a\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn3361/subnets/sn7797\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -987,7 +987,7 @@ "63fc8e68-5baa-42d3-a024-786c8ac4c237" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,8 +1005,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json index 3c51a0f0c79f..caec2953f73e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7283\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "d98b0164-8811-4992-bc62-12ae2f6a4d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn2617\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2617\",\r\n \"etag\": \"W/\\\"07fd8634-fb1c-4560-89b4-44446884430c\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617\"\r\n }\r\n },\r\n \"name\": \"ip6264\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "9b7ae149-a4b7-4c0a-9785-a2eab99093b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json index b206bfd84303..517e17290055 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5561\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "e96a5be1-467d-476e-9ba7-f0f30a9dd71c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn7161\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "99c8c91d-bf0a-4441-8d95-a5c0225e8a8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn7161\",\r\n \"etag\": \"W/\\\"92758a28-66c5-46b6-b246-72ef99ff89fd\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161\"\r\n }\r\n },\r\n \"name\": \"ip6687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "078149f6-abf2-45e7-94a3-6c8ff2392c8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json index 808d6f748fe9..46d6de9d08b1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2964\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "1c3a79d8-d438-43d2-a925-ddaaea134ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "084b22a4-d2a9-487c-8839-bcc275001c17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json index b324bef7e566..e2341e061f0f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2011\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "3f7e6f04-1fe3-44ef-b97e-70134912daa5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5066\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "88051c1a-684c-4042-ac22-1252651e0fa9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index 15864e8cbfd9..7ecb02018219 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -525,8 +525,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8116\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -577,7 +577,7 @@ "d265798f-874e-433f-b8ab-3641f409dd93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,8 +595,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,8 +650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -708,8 +708,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -772,8 +772,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -824,7 +824,7 @@ "026fbcdb-fd10-4808-9f9c-d173cbd731ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,8 +842,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -897,8 +897,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -955,8 +955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,8 +1019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3862\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2745\",\r\n \"etag\": \"W/\\\"4020128b-b57c-4960-8176-a5d57670fcbf\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "9c622174-7a10-47b6-8f63-24820e573a2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,8 +1086,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1144,8 +1144,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index e6274efd6a1e..742ef8be988d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -119,8 +119,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3148\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -161,7 +161,7 @@ "a0947abc-4d83-40ff-b67e-fc6cca95679b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,8 +189,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -241,8 +241,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -296,8 +296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -357,8 +357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -399,7 +399,7 @@ "393cefed-f783-4c10-9d9f-95056de294cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,8 +427,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -479,8 +479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,8 +534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,8 +595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9759\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7781\",\r\n \"etag\": \"W/\\\"a8b9d9fd-ede0-4d06-88a3-d2b857e42136\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -634,7 +634,7 @@ "b3e5bcca-6047-432c-9abc-0ec1597b463a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,8 +662,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -717,8 +717,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From 34fd7c6dc1e6b60dff429cb4f9228175f0f9cac3 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:33:11 -0700 Subject: [PATCH 126/137] #INIT Removed unneccessary changes where only end of file chagned. --- .../Compute.Tests.AvailabilitySetTests/TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json | 2 +- .../Compute.Tests.ExtImgTests/TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index c90d66618049..41d56c39d77b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 0d03fdb6250b..9f1f1e8233ad 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index bd443a53e6ff..e8045406bdd2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index 2c1a98ed6570..fc3756c3a85c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index 2343de8f650a..abc449435cb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index bfb318f6ef31..d76a89158bb8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index bc9057da8c35..a164c1a3195c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index 7bc95fedbe54..e90bf7aad7ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file From 05e52a95e9af9e32c9a71311faec79bb8746c9bf Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Tue, 21 Mar 2017 22:52:42 -0700 Subject: [PATCH 127/137] AssemblyInfo revert AssemblyVersion to original as requested --- .../Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 0983ca2bb40b..f4470b904d40 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("9.0.0.0")] +[assembly: AssemblyVersion("9.1.0.0")] [assembly: AssemblyFileVersion("9.2.0.0")] [assembly: AssemblyConfiguration("")] From 4d44fec415fe3e02f433b65df61421bb7d79073a Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 22 Mar 2017 15:05:28 -0700 Subject: [PATCH 128/137] #WAF Renamed GetAvailableWafRuleSets to ListAvailableWafRuleSets. --- .../Generated/ApplicationGatewaysOperations.cs | 6 +++--- .../ApplicationGatewaysOperationsExtensions.cs | 12 ++++++------ .../Generated/IApplicationGatewaysOperations.cs | 4 ++-- .../Network.Tests/Tests/ApplicationGatewayTests.cs | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index a42e9a17a111..bc2aec7da5d8 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -724,7 +724,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) } /// - /// Gets all available web application firewall rule sets. + /// Lists all available web application firewall rule sets. /// /// /// Headers that will be added to request. @@ -747,7 +747,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -763,7 +763,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAvailableWafRuleSets", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAvailableWafRuleSets", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs index 3c37e2e28762..8899ee92f34d 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs @@ -331,18 +331,18 @@ public static void Stop(this IApplicationGatewaysOperations operations, string r } /// - /// Gets all available web application firewall rule sets. + /// Lists all available web application firewall rule sets. /// /// /// The operations group for this extension method. /// - public static ApplicationGatewayAvailableWafRuleSetsResult GetAvailableWafRuleSets(this IApplicationGatewaysOperations operations) + public static ApplicationGatewayAvailableWafRuleSetsResult ListAvailableWafRuleSets(this IApplicationGatewaysOperations operations) { - return operations.GetAvailableWafRuleSetsAsync().GetAwaiter().GetResult(); + return operations.ListAvailableWafRuleSetsAsync().GetAwaiter().GetResult(); } /// - /// Gets all available web application firewall rule sets. + /// Lists all available web application firewall rule sets. /// /// /// The operations group for this extension method. @@ -350,9 +350,9 @@ public static ApplicationGatewayAvailableWafRuleSetsResult GetAvailableWafRuleSe /// /// The cancellation token. /// - public static async Task GetAvailableWafRuleSetsAsync(this IApplicationGatewaysOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAvailableWafRuleSetsAsync(this IApplicationGatewaysOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAvailableWafRuleSetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAvailableWafRuleSetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs index d1673d465aa3..303e70b688c1 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs @@ -215,7 +215,7 @@ public partial interface IApplicationGatewaysOperations /// Task> BackendHealthWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all available web application firewall rule sets. + /// Lists all available web application firewall rule sets. /// /// /// The headers that will be added to request. @@ -232,7 +232,7 @@ public partial interface IApplicationGatewaysOperations /// /// Thrown when a required parameter is null /// - Task> GetAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the specified application gateway. /// diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 26033b7b5b48..881b32869033 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -542,8 +542,8 @@ public void ApplicationGatewayApiTest() Assert.Equal(1, backendHealth.BackendAddressPools.Count); Assert.Equal(2, backendHealth.BackendAddressPools[0].BackendHttpSettingsCollection.Count); - // Get available WAF rule sets (validate first result set) - var availableWAFRuleSets = networkManagementClient.ApplicationGateways.GetAvailableWafRuleSets(); + // Get available WAF rule sets (validate first result set/group) + var availableWAFRuleSets = networkManagementClient.ApplicationGateways.ListAvailableWafRuleSets(); Assert.NotNull(availableWAFRuleSets); Assert.NotEmpty(availableWAFRuleSets.Value); Assert.NotNull(availableWAFRuleSets.Value[0].Name); From 2108694dcf09b0a9a97a63ef2bdcd8c843e27b2d Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Wed, 22 Mar 2017 15:56:07 -0700 Subject: [PATCH 129/137] removed EOF-only changes --- .../Compute.Tests.AvailabilitySetTests/TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json | 2 +- .../Compute.Tests.ExtImgTests/TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index c90d66618049..41d56c39d77b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 0d03fdb6250b..9f1f1e8233ad 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index bd443a53e6ff..e8045406bdd2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index 2c1a98ed6570..fc3756c3a85c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index 2343de8f650a..abc449435cb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index bfb318f6ef31..d76a89158bb8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index bc9057da8c35..a164c1a3195c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index 7bc95fedbe54..e90bf7aad7ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file From f6ecaf89520b809215b2079536cfdf2b435cff1d Mon Sep 17 00:00:00 2001 From: Jared Moore Date: Wed, 22 Mar 2017 16:26:56 -0700 Subject: [PATCH 130/137] Reverted global.json changes --- global.json | 5 +---- src/ResourceManagement/SqlManagement/global.json | 5 +---- src/TestFramework/global.json | 5 +---- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/global.json b/global.json index 1457d8710890..b3bc428c4cdb 100644 --- a/global.json +++ b/global.json @@ -27,8 +27,5 @@ "src/ResourceManagement/Insights/Microsoft.Azure.Insights", "src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis", "src/ResourceManagement/Monitor/Microsoft.Azure.Monitor" - ], - "sdk": { - "version": "1.0.0-preview2-003121" - } + ] } \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/global.json b/src/ResourceManagement/SqlManagement/global.json index 5ab2c4ce8197..4bd0e6191091 100644 --- a/src/ResourceManagement/SqlManagement/global.json +++ b/src/ResourceManagement/SqlManagement/global.json @@ -1,6 +1,3 @@ { - "projects": [ "../../TestFramework", "Microsoft.Azure.Management.Sql", "Sql.Tests" ], - "sdk": { - "version": "1.0.0-preview2-003121" - } + "projects": [ "../../TestFramework", "Microsoft.Azure.Management.Sql", "Sql.Tests" ] } \ No newline at end of file diff --git a/src/TestFramework/global.json b/src/TestFramework/global.json index d61ce31b4fb8..012e710aa49e 100644 --- a/src/TestFramework/global.json +++ b/src/TestFramework/global.json @@ -1,6 +1,3 @@ { - "projects": [ "Microsoft.Rest.ClientRuntime.Azure.TestFramework", "Microsoft.Azure.Test.HttpRecorder" ], - "sdk": { - "version": "1.0.0-preview2-003121" - } + "projects": [ "Microsoft.Rest.ClientRuntime.Azure.TestFramework", "Microsoft.Azure.Test.HttpRecorder" ] } \ No newline at end of file From 0baef6d1a0d1ad825e3a2c7f6c5672f293af5ba4 Mon Sep 17 00:00:00 2001 From: Nilambari Date: Fri, 24 Mar 2017 11:23:07 -0700 Subject: [PATCH 131/137] #12345: Updating generated files after fixing virtualNetworkGateway resource swagger to remove unnecessary required params. --- .../LocalNetworkGatewaysOperations.cs | 4 -- .../Generated/Models/LocalNetworkGateway.cs | 19 ++------ .../Generated/Models/VirtualNetworkGateway.cs | 47 +++---------------- .../Models/VirtualNetworkGatewayConnection.cs | 12 ----- .../VirtualNetworkGatewayIpConfiguration.cs | 25 ++-------- .../Models/VirtualNetworkGatewaySku.cs | 20 +------- .../VirtualNetworkGatewaysOperations.cs | 4 -- 7 files changed, 14 insertions(+), 117 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 5b990240d851..f79cfa9d6153 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -525,10 +525,6 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/LocalNetworkGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/LocalNetworkGateway.cs index e64b047c1e97..b63968991d67 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/LocalNetworkGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/LocalNetworkGateway.cs @@ -32,13 +32,13 @@ public LocalNetworkGateway() { } /// /// Initializes a new instance of the LocalNetworkGateway class. /// - /// Local network site address - /// space. /// Resource ID. /// Resource name. /// Resource type. /// Resource location. /// Resource tags. + /// Local network site address + /// space. /// IP address of local network /// gateway. /// Local network gateway's BGP speaker @@ -50,7 +50,7 @@ public LocalNetworkGateway() { } /// 'Deleting', and 'Failed'. /// A unique read-only string that changes whenever /// the resource is updated. - public LocalNetworkGateway(AddressSpace localNetworkAddressSpace, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string gatewayIpAddress = default(string), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public LocalNetworkGateway(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), AddressSpace localNetworkAddressSpace = default(AddressSpace), string gatewayIpAddress = default(string), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { LocalNetworkAddressSpace = localNetworkAddressSpace; @@ -100,19 +100,6 @@ public LocalNetworkGateway() { } [JsonProperty(PropertyName = "etag")] public string Etag { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (LocalNetworkAddressSpace == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "LocalNetworkAddressSpace"); - } - } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs index ec6849f3713a..88563723dce5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs @@ -32,6 +32,11 @@ public VirtualNetworkGateway() { } /// /// Initializes a new instance of the VirtualNetworkGateway class. /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. /// IP configurations for virtual /// network gateway. /// The type of this virtual network gateway. @@ -40,11 +45,6 @@ public VirtualNetworkGateway() { } /// The type of this virtual network gateway. /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible /// values include: 'PolicyBased', 'RouteBased' - /// Resource ID. - /// Resource name. - /// Resource type. - /// Resource location. - /// Resource tags. /// Whether BGP is enabled for this virtual /// network gateway or not. /// ActiveActive flag @@ -67,7 +67,7 @@ public VirtualNetworkGateway() { } /// 'Deleting', and 'Failed'. /// Gets a unique read-only string that changes /// whenever the resource is updated. - public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string vpnType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public VirtualNetworkGateway(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IList ipConfigurations = default(IList), string gatewayType = default(string), string vpnType = default(string), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { IpConfigurations = ipConfigurations; @@ -168,41 +168,6 @@ public VirtualNetworkGateway() { } [JsonProperty(PropertyName = "etag")] public string Etag { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (IpConfigurations == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "IpConfigurations"); - } - if (GatewayType == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "GatewayType"); - } - if (VpnType == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "VpnType"); - } - if (IpConfigurations != null) - { - foreach (var element in IpConfigurations) - { - if (element != null) - { - element.Validate(); - } - } - } - if (Sku != null) - { - Sku.Validate(); - } - } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs index f9a3f9166660..ae8d4e3a7b18 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs @@ -223,18 +223,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "ConnectionType"); } - if (VirtualNetworkGateway1 != null) - { - VirtualNetworkGateway1.Validate(); - } - if (VirtualNetworkGateway2 != null) - { - VirtualNetworkGateway2.Validate(); - } - if (LocalNetworkGateway2 != null) - { - LocalNetworkGateway2.Validate(); - } if (IpsecPolicies != null) { foreach (var element in IpsecPolicies) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs index 2a2154d0a837..a693a533c9ca 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs @@ -32,13 +32,13 @@ public VirtualNetworkGatewayIPConfiguration() { } /// Initializes a new instance of the /// VirtualNetworkGatewayIPConfiguration class. /// - /// The reference of the subnet resource. - /// The reference of the public IP - /// resource. /// Resource ID. /// The private IP allocation /// method. Possible values are: 'Static' and 'Dynamic'. Possible /// values include: 'Static', 'Dynamic' + /// The reference of the subnet resource. + /// The reference of the public IP + /// resource. /// The provisioning state of the /// public IP resource. Possible values are: 'Updating', 'Deleting', /// and 'Failed'. @@ -47,7 +47,7 @@ public VirtualNetworkGatewayIPConfiguration() { } /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - public VirtualNetworkGatewayIPConfiguration(SubResource subnet, SubResource publicIPAddress, string id = default(string), string privateIPAllocationMethod = default(string), string provisioningState = default(string), string name = default(string), string etag = default(string)) + public VirtualNetworkGatewayIPConfiguration(string id = default(string), string privateIPAllocationMethod = default(string), SubResource subnet = default(SubResource), SubResource publicIPAddress = default(SubResource), string provisioningState = default(string), string name = default(string), string etag = default(string)) : base(id) { PrivateIPAllocationMethod = privateIPAllocationMethod; @@ -99,23 +99,6 @@ public VirtualNetworkGatewayIPConfiguration() { } [JsonProperty(PropertyName = "etag")] public string Etag { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Subnet == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Subnet"); - } - if (PublicIPAddress == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "PublicIPAddress"); - } - } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs index bdf95f3f3081..7e5ddd39ecf1 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Network.Models using Azure; using Management; using Network; - using Rest; using Newtonsoft.Json; using System.Linq; @@ -37,7 +36,7 @@ public VirtualNetworkGatewaySku() { } /// values include: 'Basic', 'HighPerformance', 'Standard', /// 'UltraPerformance' /// The capacity. - public VirtualNetworkGatewaySku(string name, string tier, int? capacity = default(int?)) + public VirtualNetworkGatewaySku(string name = default(string), string tier = default(string), int? capacity = default(int?)) { Name = name; Tier = tier; @@ -68,23 +67,6 @@ public VirtualNetworkGatewaySku() { } [JsonProperty(PropertyName = "capacity")] public int? Capacity { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } - if (Tier == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Tier"); - } - } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index 129061612af9..9a215952fc29 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -840,10 +840,6 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); From d51092b299bc6ca12d90e1aa87536303e488a1d4 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 24 Mar 2017 13:54:27 -0700 Subject: [PATCH 132/137] #WAF improved tests. --- .../Network/Network.Tests/Tests/ApplicationGatewayTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 26033b7b5b48..bb91c06842b1 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -395,7 +395,8 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn { new ApplicationGatewayFirewallDisabledRuleGroup( "crs_41_sql_injection_attacks", - new List() { 981318 }) + new List() { 981318, 981320 }), + new ApplicationGatewayFirewallDisabledRuleGroup("crs_35_bad_robots") } } }; From 53c772a8cedcfebe6577c52f7d445bc256b3eea5 Mon Sep 17 00:00:00 2001 From: Abhijeet Date: Sun, 26 Mar 2017 13:54:37 -0700 Subject: [PATCH 133/137] Updated RepoTask module with new supported KeyValue pairs (#2919) * Updated RepoTask module with new supported KeyVaule pairs * Updating properties of the manifest file --- tools/Repo-Tasks.psd1 | 14 ++--- tools/Repo-Tasks.psm1 | 143 +++++++++++++++++++++++++++++++++++++++--- 2 files changed, 141 insertions(+), 16 deletions(-) diff --git a/tools/Repo-Tasks.psd1 b/tools/Repo-Tasks.psd1 index 1a9d668e1649..4216f44a2935 100644 --- a/tools/Repo-Tasks.psd1 +++ b/tools/Repo-Tasks.psd1 @@ -3,13 +3,13 @@ # # Generated by: shahabhijeet # -# Generated on: 11/2/2016 +# Generated on: 3/11/2017 # @{ # Script module or binary module file associated with this manifest. -RootModule = 'Repo-Tasks.psm1' +RootModule = '.\Repo-Tasks.psm1' # Version number of this module. ModuleVersion = '1.0' @@ -30,10 +30,10 @@ CompanyName = 'Microsoft' Copyright = '(c) 2016 shahabhijeet. All rights reserved.' # Description of the functionality provided by this module -# Description = 'Provides set of cmdlets for common repository tasks' +# Description = '' # Minimum version of the Windows PowerShell engine required by this module -# PowerShellVersion = '5.1' +PowerShellVersion = '5.1' # Name of the Windows PowerShell host required by this module # PowerShellHostName = '' @@ -42,13 +42,13 @@ Copyright = '(c) 2016 shahabhijeet. All rights reserved.' # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# DotNetFrameworkVersion = '4.5' +# DotNetFrameworkVersion = '' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# CLRVersion = '4.0' +# CLRVersion = '' # Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = 'x86, Amd64' +# ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module # RequiredModules = @() diff --git a/tools/Repo-Tasks.psm1 b/tools/Repo-Tasks.psm1 index 51dc8ffd2c4e..edc69d039264 100644 --- a/tools/Repo-Tasks.psm1 +++ b/tools/Repo-Tasks.psm1 @@ -14,7 +14,7 @@ In order to successfully run a test, you will need SubscriptionId, TenantId This cmdlet will only prompt you for Subscription and Tenant information, rest all other parameters are optional #> - [CmdletBinding(DefaultParameterSetName='UserIdParamSet')] + [CmdletBinding(DefaultParameterSetName='SpnParamSet')] param( [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "UserId (OrgId) you would like to use")] [ValidateNotNullOrEmpty()] @@ -44,11 +44,23 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a [ValidateSet("Playback", "Record", "None")] [string]$RecordMode='Playback', - [ValidateSet("Prod", "Dogfood", "Current", "Next")] - [string]$TargetEnvironment='Prod' + [ValidateSet("Prod", "Dogfood", "Current", "Next", "Custom")] + [string]$TargetEnvironment='Prod', + + [string]$ResourceManagementUri, + [string]$GraphUri, + [string]$AADAuthUri, + [string]$AADTokenAudienceUri, + [string]$GraphTokenAudienceUri, + [string]$IbizaPortalUri, + [string]$ServiceManagementUri, + [string]$RdfePortalUri, + [string]$GalleryUri, + [string]$DataLakeStoreServiceUri, + [string]$DataLakeAnalyticsJobAndCatalogServiceUri ) - [string]$uris="https://management.azure.com/" + [string]$uris="" $formattedConnStr = [string]::Format("SubscriptionId={0};HttpRecorderMode={1};Environment={2}", $SubscriptionId, $RecordMode, $TargetEnvironment) @@ -76,11 +88,69 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a { $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServicePrincipalSecret={0}"), $ServicePrincipalSecret) } + + #Uris + if([string]::IsNullOrEmpty($ResourceManagementUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ResourceManagementUri={0}"), $ResourceManagementUri) + } + + if([string]::IsNullOrEmpty($GraphUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GraphUri={0}"), $GraphUri) + } + + if([string]::IsNullOrEmpty($AADAuthUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";AADAuthUri={0}"), $AADAuthUri) + } + + if([string]::IsNullOrEmpty($AADTokenAudienceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";AADTokenAudienceUri={0}"), $AADTokenAudienceUri) + } + + if([string]::IsNullOrEmpty($GraphTokenAudienceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GraphTokenAudienceUri={0}"), $GraphTokenAudienceUri) + } + + if([string]::IsNullOrEmpty($IbizaPortalUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";IbizaPortalUri={0}"), $IbizaPortalUri) + } + + if([string]::IsNullOrEmpty($ServiceManagementUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServiceManagementUri={0}"), $ServiceManagementUri) + } + + if([string]::IsNullOrEmpty($RdfePortalUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";RdfePortalUri={0}"), $RdfePortalUri) + } + + if([string]::IsNullOrEmpty($GalleryUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GalleryUri={0}"), $GalleryUri) + } + + if([string]::IsNullOrEmpty($DataLakeStoreServiceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";DataLakeStoreServiceUri={0}"), $DataLakeStoreServiceUri) + } + + if([string]::IsNullOrEmpty($DataLakeAnalyticsJobAndCatalogServiceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";DataLakeAnalyticsJobAndCatalogServiceUri={0}"), $DataLakeAnalyticsJobAndCatalogServiceUri) + } + - $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";BaseUri={0}"), $uris) + #$formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";BaseUri={0}"), $uris) Write-Host "Below connection string is ready to be set" - Print-ConnectionString $UserId $Password $SubscriptionId $TenantId $ServicePrincipal $ServicePrincipalSecret $RecordMode $TargetEnvironment $uris + #Print-ConnectionString $UserId $Password $SubscriptionId $TenantId $ServicePrincipal $ServicePrincipalSecret $RecordMode $TargetEnvironment $uris + Print-ConnectionString $UserId $Password $SubscriptionId $TenantId $ServicePrincipal $ServicePrincipalSecret $RecordMode $TargetEnvironment $uris $ResourceManagementUri $GraphUri $AADAuthUri $AADTokenAudienceUri $GraphTokenAudienceUri $IbizaPortalUri $ServiceManagementUri $RdfePortalUri $GalleryUri $DataLakeStoreServiceUri $DataLakeAnalyticsJobAndCatalogServiceUri #Set connection string to Environment variable $env:TEST_CSM_ORGID_AUTHENTICATION=$formattedConnStr @@ -149,11 +219,66 @@ Function Print-ConnectionString([string]$uid, [string]$pwd, [string]$subId, [str Write-Host "Environment=" -ForegroundColor Green -NoNewline Write-Host $targetEnvironment";" -NoNewline } + + #======================================== + if([string]::IsNullOrEmpty($ResourceManagementUri) -eq $false) + { + Write-Host "ResourceManagementUri=" -ForegroundColor Green -NoNewline + Write-Host $ResourceManagementUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($GraphUri) -eq $false) + { + Write-Host "GraphUri=" -ForegroundColor Green -NoNewline + Write-Host $GraphUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($AADTokenAudienceUri) -eq $false) + { + Write-Host "AADTokenAudienceUri=" -ForegroundColor Green -NoNewline + Write-Host $AADTokenAudienceUri";" -NoNewline + } - if([string]::IsNullOrEmpty($uris) -eq $false) + if([string]::IsNullOrEmpty($GraphTokenAudienceUri) -eq $false) + { + Write-Host "GraphTokenAudienceUri=" -ForegroundColor Green -NoNewline + Write-Host $GraphTokenAudienceUri -NoNewline + } + + if([string]::IsNullOrEmpty($IbizaPortalUri) -eq $false) + { + Write-Host "IbizaPortalUri=" -ForegroundColor Green -NoNewline + Write-Host $IbizaPortalUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($ServiceManagementUri) -eq $false) + { + Write-Host "ServiceManagementUri=" -ForegroundColor Green -NoNewline + Write-Host $ServiceManagementUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($RdfePortalUri) -eq $false) + { + Write-Host "RdfePortalUri=" -ForegroundColor Green -NoNewline + Write-Host $RdfePortalUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($GalleryUri) -eq $false) + { + Write-Host "GalleryUri=" -ForegroundColor Green -NoNewline + Write-Host $GalleryUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($DataLakeStoreServiceUri) -eq $false) + { + Write-Host "DataLakeStoreServiceUri=" -ForegroundColor Green -NoNewline + Write-Host $DataLakeStoreServiceUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($DataLakeAnalyticsJobAndCatalogServiceUri) -eq $false) { - Write-Host "BaseUri=" -ForegroundColor Green -NoNewline - Write-Host $uris -NoNewline + Write-Host "DataLakeAnalyticsJobAndCatalogServiceUri=" -ForegroundColor Green -NoNewline + Write-Host $DataLakeAnalyticsJobAndCatalogServiceUri";" -NoNewline } Write-Host "" From 4ca8d8acb9711de9a99535bdba6a75065e30386f Mon Sep 17 00:00:00 2001 From: Aaron Roney Date: Sun, 26 Mar 2017 16:54:26 -0700 Subject: [PATCH 134/137] Generate XML documentation for all libraries. (#2959) * Turn XML generation on for all projects. * Exclude Batch due to lack of proper XML comments. --- .../project.json | 3 ++- .../Microsoft.Rest.ClientRuntime.Azure.Tests/project.json | 2 +- .../Microsoft.Rest.ClientRuntime.Azure/project.json | 3 ++- .../Microsoft.Rest.ClientRuntime.Etw/project.json | 5 +++-- .../Microsoft.Rest.ClientRuntime.Log4Net/project.json | 5 +++-- src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json | 3 ++- src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json | 3 ++- .../Microsoft.Azure.KeyVault.Cryptography/project.json | 3 ++- .../Microsoft.Azure.KeyVault.Extensions/project.json | 3 ++- .../Microsoft.Azure.KeyVault.TestFramework/project.json | 3 ++- src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json | 3 ++- src/KeyVault/Microsoft.Azure.KeyVault/project.json | 3 ++- .../Microsoft.Azure.Management.Analysis/project.json | 3 ++- .../Microsoft.Azure.Management.Authorization/project.json | 3 ++- .../Batch/Microsoft.Azure.Management.Batch/project.json | 3 ++- .../Billing/Microsoft.Azure.Management.Billing/project.json | 3 ++- .../Cdn/Microsoft.Azure.Management.Cdn/project.json | 3 ++- .../project.json | 3 ++- .../Compute/Microsoft.Azure.Management.Compute/project.json | 3 ++- .../project.json | 3 ++- .../Microsoft.Azure.Management.CustomerInsights/project.json | 3 ++- .../project.json | 3 ++- .../Microsoft.Azure.Management.DataLake.Store/project.json | 3 ++- .../Microsoft.Azure.Management.DevTestLabs/project.json | 3 ++- .../Dns/Microsoft.Azure.Management.Dns/project.json | 3 ++- .../Microsoft.Azure.Management.EventHub/project.json | 3 ++- .../Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json | 3 ++- .../Insights/Microsoft.Azure.Insights/project.json | 3 ++- .../IotHub/Microsoft.Azure.Management.IotHub/project.json | 3 ++- .../Microsoft.Azure.Management.KeyVault/project.json | 3 ++- .../Logic/Microsoft.Azure.Management.Logic/project.json | 3 ++- .../Microsoft.Azure.Management.MachineLearning/project.json | 3 ++- .../Media/Microsoft.Azure.Management.Media/project.json | 3 ++- .../Monitor/Microsoft.Azure.Monitor/project.json | 3 ++- .../Network/Microsoft.Azure.Management.Network/project.json | 3 ++- .../Microsoft.Azure.Management.NotificationHubs/project.json | 3 ++- .../project.json | 3 ++- .../OperationalInsights.Test/project.json | 5 +++-- .../Microsoft.Azure.Management.PowerBIEmbedded/project.json | 3 ++- .../project.json | 3 ++- .../Microsoft.Azure.Management.RecoveryServices/project.json | 3 ++- .../RedisCache/Microsoft.Azure.Management.Redis/project.json | 3 ++- .../Microsoft.Azure.Management.ResourceManager/project.json | 3 ++- .../Microsoft.Azure.Management.Scheduler/project.json | 3 ++- src/ResourceManagement/Scheduler/Scheduler.Test/project.json | 5 +++-- .../Microsoft.Azure.Management.ServerManagement/project.json | 3 ++- .../Microsoft.Azure.Management.ServiceBus/project.json | 3 ++- .../Microsoft.Azure.Management.Sql/project.json | 3 ++- .../Microsoft.Azure.Management.TrafficManager/project.json | 3 ++- .../Microsoft.Azure.Management.Websites/project.json | 3 ++- src/Search/Microsoft.Azure.Management.Search/project.json | 3 ++- tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json | 3 ++- .../ProjectTemplates/AzureDotNetSDK-TestProject/project.json | 3 ++- 53 files changed, 109 insertions(+), 57 deletions(-) diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json index 629fbec197a9..dfa23bf7c1a2 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json index 122ae6dd931a..53627f9beb7b 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json @@ -6,7 +6,7 @@ "summary": "ClientRuntime Tests.", "tags": [ "Microsoft AutoRest ClientRuntime REST" ], "projectUrl": "https://github.com/Azure/AutoRest", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE" }, "testRunner": "xunit", diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure/project.json index 5a38d62a230d..4de939ef3cd8 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Etw/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Etw/project.json index 3f5c1404bfd9..3154026e3926 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Etw/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Etw/project.json @@ -11,13 +11,14 @@ "projectUrl": "https://github.com/Azure/AutoRest", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "tags": [ "Microsoft AutoRest ClientRuntime REST ETW" ], - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Log4Net/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Log4Net/project.json index f1ea0da8e799..8c1c28c84211 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Log4Net/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Log4Net/project.json @@ -11,12 +11,13 @@ "projectUrl": "https://github.com/Azure/AutoRest", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "tags": [ "Microsoft AutoRest ClientRuntime REST ETW" ], - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { "delaySign": true, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json index 37220fea58ea..16b625dfc069 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "frameworks": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json index 31cebf43a7e5..314ddd0edfb2 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Cryptography/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Cryptography/project.json index 489551a786fa..920f3ff36483 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Cryptography/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Cryptography/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json index f7ee7fab49b7..0d1039c81752 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json index 53f6beb565a9..a4f50b02e348 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json @@ -7,7 +7,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json index aaed11053163..da9a2ebc2912 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "frameworks": { "net45": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/project.json b/src/KeyVault/Microsoft.Azure.KeyVault/project.json index 63d009e09ab5..39306a5116c3 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json index e15819b241bc..4a9a36f314c3 100644 --- a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json +++ b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json b/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json index 0aa112cc6cf4..21c2dc7928a8 100644 --- a/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json +++ b/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json index 8d9f84a4c939..8e7bb33ae091 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json index fa7b1742f2be..fef1ac475e59 100644 --- a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json index bc5691ce8da2..5f51323aeaf1 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json b/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json index 874a6fc94371..7bfcb079df51 100644 --- a/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json +++ b/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json index 6bcf3c73503a..c9b13cad5cb2 100644 --- a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json +++ b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json index 03311b2e0a75..09fac67195b3 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json index 1fe3eb632101..bf1f90d8ea10 100644 --- a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json +++ b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json index 97572587aaf5..4f2aa50bd7f2 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json index 8105ae800f3d..4beccefbad1e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json b/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json index bc22af392bef..c1056af4e8e6 100644 --- a/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json +++ b/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json b/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json index 15a4506ddfb3..6a2cc301211f 100644 --- a/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json +++ b/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json index 4b1e6c5ecd97..a452b48e7514 100644 --- a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json +++ b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json b/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json index 7d6b93e32e29..3e49b864547a 100644 --- a/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json +++ b/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json index 2ae4868f7c7a..5b7046701c80 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json b/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json index 7f162ef49e90..9d5d26acac17 100644 --- a/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json +++ b/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json index 10d14eaa0a06..e3217d31f599 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json index c7bb6520d441..b9d874621233 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json index 5144484051e2..387e39b3d1a1 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json b/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json index e1a6da154d42..62681c9bf28a 100644 --- a/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json +++ b/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json index 988598f3748e..e33d04ea397a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index d8484bf93b04..d9978de025f5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json b/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json index fa587b025dec..e8a94c45a52e 100644 --- a/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json +++ b/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json index 0a23195c1b8c..8462501146ec 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json index 879405fd5bf7..555206e25247 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json @@ -7,14 +7,15 @@ "summary": "OperationalInsights.Tests Tests.", "tags": [ "" ], "projectUrl": "", - "licenseUrl": "", + "licenseUrl": "" }, "buildOptions": { "delaySign": true, "publicSign": false, "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" + "compile": "../../../../tools/DisableTestRunParallel.cs", + "xmlDoc": true }, "testRunner": "xunit", diff --git a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json index 32e3ce3a410c..b3d25d46b8ea 100644 --- a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json +++ b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json @@ -21,7 +21,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json b/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json index 76f5e22b8a4d..7f4a5a9941da 100644 --- a/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json +++ b/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json @@ -13,7 +13,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json b/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json index 5f48d01fb33b..18a1294b59e3 100644 --- a/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json +++ b/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json @@ -13,7 +13,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json b/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json index 7d22463e03ca..4e2567ae5704 100644 --- a/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json +++ b/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json b/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json index 94db79646572..5219e229dad1 100644 --- a/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json +++ b/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json b/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json index 1d8b38e99b69..f268381feebc 100644 --- a/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json +++ b/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/Scheduler/Scheduler.Test/project.json b/src/ResourceManagement/Scheduler/Scheduler.Test/project.json index f93873c6b6c1..6d8d0e115a91 100644 --- a/src/ResourceManagement/Scheduler/Scheduler.Test/project.json +++ b/src/ResourceManagement/Scheduler/Scheduler.Test/project.json @@ -7,14 +7,15 @@ "summary": "Scheduler.Tests Tests.", "tags": [ "" ], "projectUrl": "", - "licenseUrl": "", + "licenseUrl": "" }, "buildOptions": { "delaySign": true, "publicSign": false, "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" + "compile": "../../../../tools/DisableTestRunParallel.cs", + "xmlDoc": true }, "testRunner": "xunit", diff --git a/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json b/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json index 6a654cba9ac3..c947f7495eee 100644 --- a/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json +++ b/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json b/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json index e89632c977f2..34fd875992d9 100644 --- a/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json +++ b/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json index ea76ed113cfe..6f1ab3d6bace 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json @@ -14,7 +14,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json index 759b945a1c87..f6a9faaa171b 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json b/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json index c0ecac7b06fd..c794816a8402 100644 --- a/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json +++ b/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/Search/Microsoft.Azure.Management.Search/project.json b/src/Search/Microsoft.Azure.Management.Search/project.json index 77bcc7c9a332..6e626b06e83c 100644 --- a/src/Search/Microsoft.Azure.Management.Search/project.json +++ b/src/Search/Microsoft.Azure.Management.Search/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json b/tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json index 8eef845d816a..353f558e7671 100644 --- a/tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json +++ b/tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json @@ -12,7 +12,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "MSSharedLibKey.snk" + "keyFile": "MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/tools/ProjectTemplates/AzureDotNetSDK-TestProject/project.json b/tools/ProjectTemplates/AzureDotNetSDK-TestProject/project.json index f48ce3eeac5e..af7658014102 100644 --- a/tools/ProjectTemplates/AzureDotNetSDK-TestProject/project.json +++ b/tools/ProjectTemplates/AzureDotNetSDK-TestProject/project.json @@ -3,7 +3,8 @@ "buildOptions": { "delaySign": true, - "publicSign": false + "publicSign": false, + "xmlDoc": true }, "testRunner": "xunit", From 10b0785fa26fa4bce71dad6eb0cd884fde5d1137 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 27 Mar 2017 09:51:50 -0700 Subject: [PATCH 135/137] #WAF Recorded new ApplicationGateway tests. --- .../ApplicationGatewayApiTest.json | 1410 ++++++++--------- 1 file changed, 705 insertions(+), 705 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index a31a2c72432a..36d721243d46 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg7667?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnNzY2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg7781?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnNzc4MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "29" ], "x-ms-client-request-id": [ - "1cc41b83-f589-41ec-86af-5ab5b9f93a6c" + "ffc78b7e-b207-4176-9b1a-06315f6a816a" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667\",\r\n \"name\": \"csmrg7667\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781\",\r\n \"name\": \"csmrg7781\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:10 GMT" + "Sat, 25 Mar 2017 00:58:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "374be73c-c3d4-4572-a8a5-f19dbeaafe1b" + "495571c7-50ed-49af-b947-b41e228706e6" ], "x-ms-correlation-request-id": [ - "374be73c-c3d4-4572-a8a5-f19dbeaafe1b" + "495571c7-50ed-49af-b947-b41e228706e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182810Z:374be73c-c3d4-4572-a8a5-f19dbeaafe1b" + "CENTRALUS:20170325T005842Z:495571c7-50ed-49af-b947-b41e228706e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,10 +62,10 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NzU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet2045\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3830\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet7453\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet2882\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "530" ], "x-ms-client-request-id": [ - "bfeaadb1-4d53-47f7-992a-92cc59f2c072" + "e206b719-95e9-4c98-bcfa-e6e87a8c1ec2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7758\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758\",\r\n \"etag\": \"W/\\\"2b294486-e7e8-41f7-a163-b226a0fc58b8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5f027416-158b-4dbb-87d9-cb70a723d1aa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7453\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\",\r\n \"etag\": \"W/\\\"2b294486-e7e8-41f7-a163-b226a0fc58b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2882\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\",\r\n \"etag\": \"W/\\\"2b294486-e7e8-41f7-a163-b226a0fc58b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1495" @@ -99,7 +99,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:11 GMT" + "Sat, 25 Mar 2017 00:58:56 GMT" ], "Pragma": [ "no-cache" @@ -112,35 +112,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "698b709a-65ad-41d4-8e15-8b288e49d56b" + "009d963f-d66c-4438-b759-40eee8c596c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/698b709a-65ad-41d4-8e15-8b288e49d56b?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/009d963f-d66c-4438-b759-40eee8c596c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "5510930c-627b-4bb4-bcc1-79a308647b34" + "c39d87b3-8b71-47d2-9856-048f5dec76ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182812Z:5510930c-627b-4bb4-bcc1-79a308647b34" + "CENTRALUS:20170325T005856Z:c39d87b3-8b71-47d2-9856-048f5dec76ff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/698b709a-65ad-41d4-8e15-8b288e49d56b?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82OThiNzA5YS02NWFkLTQxZDQtOGUxNS04YjI4OGU0OWQ1NmI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/009d963f-d66c-4438-b759-40eee8c596c7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wMDlkOTYzZi1kNjZjLTQ0MzgtYjc1OS00MGVlZThjNTk2Yzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -155,7 +155,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:41 GMT" + "Sat, 25 Mar 2017 00:59:26 GMT" ], "Pragma": [ "no-cache" @@ -171,35 +171,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d3544c15-586a-4c3b-954e-74160aa1f80d" + "f173ca86-8482-41ec-b8e1-4da580334ecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14999" ], "x-ms-correlation-request-id": [ - "0a86abd0-3cb5-49bb-94a8-033e45ccc461" + "1a97dc13-f797-4c88-8a3d-e293725e8d27" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182842Z:0a86abd0-3cb5-49bb-94a8-033e45ccc461" + "CENTRALUS:20170325T005927Z:1a97dc13-f797-4c88-8a3d-e293725e8d27" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NzU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7758\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f027416-158b-4dbb-87d9-cb70a723d1aa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7453\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2882\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -211,7 +211,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:41 GMT" + "Sat, 25 Mar 2017 00:59:27 GMT" ], "Pragma": [ "no-cache" @@ -220,7 +220,7 @@ "chunked" ], "ETag": [ - "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" + "W/\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -230,41 +230,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "373e11bb-13a5-45c9-b18c-b951f822f914" + "176899db-f31c-4b3f-8418-e04ddbd9e32a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14998" ], "x-ms-correlation-request-id": [ - "a8deb92c-358f-4efe-88e3-f61c1ee1bee1" + "9627e807-9478-4308-8483-a5b01d16a108" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182842Z:a8deb92c-358f-4efe-88e3-f61c1ee1bee1" + "CENTRALUS:20170325T005927Z:9627e807-9478-4308-8483-a5b01d16a108" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NzU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cdf7a4a-483f-489f-a753-e085e71c56e7" + "41d6ce3f-d649-4804-8452-9d19fb75bb0c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7758\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f027416-158b-4dbb-87d9-cb70a723d1aa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7453\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2882\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:42 GMT" + "Sat, 25 Mar 2017 00:59:27 GMT" ], "Pragma": [ "no-cache" @@ -285,7 +285,7 @@ "chunked" ], "ETag": [ - "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" + "W/\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -295,41 +295,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3645bdf4-701d-49f1-9ce8-8c211069b113" + "b936d272-ace0-42b6-a2dd-184512b3ed5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14997" ], "x-ms-correlation-request-id": [ - "97ef57e6-0378-4a96-b715-89a69df8432c" + "553cbdf9-00e5-4755-9ddf-72d9a75fc1a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182842Z:97ef57e6-0378-4a96-b715-89a69df8432c" + "CENTRALUS:20170325T005928Z:553cbdf9-00e5-4755-9ddf-72d9a75fc1a5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzL3N1Ym5ldHMvYXpzbW5ldDIwNDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NzU4L3N1Ym5ldHMvYXpzbW5ldDc0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f33ee02-4da3-4d15-b91f-47ea9b237ac9" + "9a57ece6-05d0-4990-98c5-07d3df03ce16" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7453\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -341,7 +341,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:42 GMT" + "Sat, 25 Mar 2017 00:59:27 GMT" ], "Pragma": [ "no-cache" @@ -350,7 +350,7 @@ "chunked" ], "ETag": [ - "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" + "W/\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -360,50 +360,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2bc05fd8-7008-471c-a6f5-197e610333da" + "43adccce-a292-4b3f-9e31-ba1930e9f6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14996" ], "x-ms-correlation-request-id": [ - "8d97b74a-0f67-4b40-b188-3a8cdc923d7c" + "1f7772ea-b98b-4cb0-9419-9496014e0885" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182842Z:8d97b74a-0f67-4b40-b188-3a8cdc923d7c" + "CENTRALUS:20170325T005928Z:1f7772ea-b98b-4cb0-9419-9496014e0885" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n },\r\n \"name\": \"azsmnet790\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet2995\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n },\r\n \"name\": \"azsmnet6486\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet5694\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet57\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet4411\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet1047\"\r\n },\r\n {\r\n \"name\": \"azsmnet2873\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet4293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet8504\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet2535\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet1579\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n },\r\n \"name\": \"azsmnet129\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n },\r\n \"name\": \"azsmnet3623\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n },\r\n \"name\": \"azsmnet6709\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet6145\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n },\r\n \"name\": \"azsmnet6558\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet5555\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet3427\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet4263\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet949\"\r\n },\r\n {\r\n \"name\": \"azsmnet8377\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1467\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet8901\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet1241\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8027\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n },\r\n \"name\": \"azsmnet6603\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n },\r\n \"name\": \"azsmnet3937\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "7528" + "7623" ], "x-ms-client-request-id": [ - "0417e481-0641-47d6-8736-8f017fbf46a8" + "472d8cdd-d232-4980-b868-d899960c1d19" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3564\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"29127229-2d52-4c79-a597-b0cbf241b92d\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6709\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/gatewayIPConfigurations/azsmnet6709\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet6145\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6558\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5555\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3427\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet949\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8377\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1467\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet1241\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8027\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6603\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3937\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4263\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "15452" + "15553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -415,7 +415,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:42 GMT" + "Sat, 25 Mar 2017 00:59:37 GMT" ], "Pragma": [ "no-cache" @@ -428,35 +428,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "88e5a493-f938-4a9c-9319-e1465ab17d5e" + "2ee33df3-27c1-45d8-b238-512579943242" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "6f644e0d-1175-4350-b163-7b8e662d0aa6" + "b54316ba-95b1-469f-b396-607adbd9db92" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182843Z:6f644e0d-1175-4350-b163-7b8e662d0aa6" + "CENTRALUS:20170325T005938Z:b54316ba-95b1-469f-b396-607adbd9db92" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -471,7 +471,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:29:13 GMT" + "Sat, 25 Mar 2017 01:00:08 GMT" ], "Pragma": [ "no-cache" @@ -490,32 +490,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "af46dfe3-0808-4087-a2aa-547603d3da8e" + "6bf4bcd6-fc6f-4687-bdbe-68b9dd627a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14995" ], "x-ms-correlation-request-id": [ - "03209232-d362-4a88-ad8a-16234e1a2ad2" + "7fc24c80-e91a-4f08-9126-d09d044f0bb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182913Z:03209232-d362-4a88-ad8a-16234e1a2ad2" + "CENTRALUS:20170325T010008Z:7fc24c80-e91a-4f08-9126-d09d044f0bb4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -530,7 +530,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:29:43 GMT" + "Sat, 25 Mar 2017 01:00:38 GMT" ], "Pragma": [ "no-cache" @@ -549,32 +549,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "abbdcf5e-1d6a-4353-97ec-23fff1f0e560" + "63f814cb-3636-4bb5-a5d3-8d5efa796c23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14994" ], "x-ms-correlation-request-id": [ - "4301223a-2fc2-48f3-86d8-599cc195a9a0" + "d87d0d78-04dd-4ebf-a265-fe6cf0584a1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182944Z:4301223a-2fc2-48f3-86d8-599cc195a9a0" + "CENTRALUS:20170325T010038Z:d87d0d78-04dd-4ebf-a265-fe6cf0584a1a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -589,7 +589,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:30:13 GMT" + "Sat, 25 Mar 2017 01:01:08 GMT" ], "Pragma": [ "no-cache" @@ -608,32 +608,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "029003db-d5c4-42b0-8256-69341d71f095" + "202ba757-bb0d-4ad5-ae2b-d0d3594d4565" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14993" ], "x-ms-correlation-request-id": [ - "25a30940-e82d-4d04-aeeb-8d7aed4b0d9e" + "13f46862-f656-4ade-8ad9-ace1b73e1ecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183014Z:25a30940-e82d-4d04-aeeb-8d7aed4b0d9e" + "CENTRALUS:20170325T010109Z:13f46862-f656-4ade-8ad9-ace1b73e1ecb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -648,7 +648,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:30:43 GMT" + "Sat, 25 Mar 2017 01:01:38 GMT" ], "Pragma": [ "no-cache" @@ -667,32 +667,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "49ae3c34-cac9-4dd2-a883-fa97c49a991e" + "92eaffb2-0386-45a9-864e-ac2606b88549" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14992" ], "x-ms-correlation-request-id": [ - "3533479e-63bc-441d-9005-690daf926571" + "383c0697-6abe-449f-b405-91080eb3d248" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183044Z:3533479e-63bc-441d-9005-690daf926571" + "CENTRALUS:20170325T010139Z:383c0697-6abe-449f-b405-91080eb3d248" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -707,7 +707,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:31:13 GMT" + "Sat, 25 Mar 2017 01:02:09 GMT" ], "Pragma": [ "no-cache" @@ -726,32 +726,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc0c7229-974d-4e0a-ab7b-bb1d4d3fd69d" + "2647cd2c-c5c0-4fe2-8740-22114cbfb6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14991" ], "x-ms-correlation-request-id": [ - "e3831d8a-476f-45ae-92b5-37462c03b150" + "5e12eac0-d400-406f-ae96-45389716305e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183114Z:e3831d8a-476f-45ae-92b5-37462c03b150" + "CENTRALUS:20170325T010210Z:5e12eac0-d400-406f-ae96-45389716305e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -766,7 +766,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:31:44 GMT" + "Sat, 25 Mar 2017 01:02:40 GMT" ], "Pragma": [ "no-cache" @@ -785,32 +785,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d0488317-6c73-4806-a8a6-3f88bb94f90c" + "0e8ca04d-9da4-412a-9843-bb4c519a0577" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14990" ], "x-ms-correlation-request-id": [ - "1084f2bc-d27b-49ab-bbec-2f0535e9d188" + "3b3e1705-48bb-45e6-83ec-f012dda52f7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183145Z:1084f2bc-d27b-49ab-bbec-2f0535e9d188" + "CENTRALUS:20170325T010240Z:3b3e1705-48bb-45e6-83ec-f012dda52f7b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -825,7 +825,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:32:14 GMT" + "Sat, 25 Mar 2017 01:03:10 GMT" ], "Pragma": [ "no-cache" @@ -844,32 +844,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d0fb25f8-c2c5-433e-8461-e23c2a4aa8a5" + "55ee59f9-d537-4bb9-bd99-c80dd7dbc0d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14989" ], "x-ms-correlation-request-id": [ - "a8cf075a-424f-434b-8550-716c9b82dc4c" + "54567bd1-1255-4054-ac07-77f95481a8c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183215Z:a8cf075a-424f-434b-8550-716c9b82dc4c" + "CENTRALUS:20170325T010310Z:54567bd1-1255-4054-ac07-77f95481a8c7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -884,7 +884,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:32:44 GMT" + "Sat, 25 Mar 2017 01:03:40 GMT" ], "Pragma": [ "no-cache" @@ -903,32 +903,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a3d996e2-a94a-4a74-8600-a188658e8a3a" + "1ffda9e6-58ef-46b5-98f6-f540ecdd71ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14988" ], "x-ms-correlation-request-id": [ - "472e4769-f8eb-4293-bc77-fb7e9d429fc8" + "1f314a94-adeb-4ae3-a211-529f2463daab" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183245Z:472e4769-f8eb-4293-bc77-fb7e9d429fc8" + "CENTRALUS:20170325T010341Z:1f314a94-adeb-4ae3-a211-529f2463daab" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -943,7 +943,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:33:15 GMT" + "Sat, 25 Mar 2017 01:04:10 GMT" ], "Pragma": [ "no-cache" @@ -962,32 +962,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "75486a68-d683-4ef3-ba05-c396e56507d0" + "35199606-d9ca-4f1f-bff5-b71f1c46557a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14987" ], "x-ms-correlation-request-id": [ - "d0ce09a3-bf50-4736-8c75-4ed80f232171" + "fff2e31a-b504-4284-893e-46af94f5c701" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183315Z:d0ce09a3-bf50-4736-8c75-4ed80f232171" + "CENTRALUS:20170325T010411Z:fff2e31a-b504-4284-893e-46af94f5c701" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:33:45 GMT" + "Sat, 25 Mar 2017 01:04:40 GMT" ], "Pragma": [ "no-cache" @@ -1021,32 +1021,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dc6d9c68-e837-4c38-9fc7-b3ff9ccaf0cb" + "eaed502e-e6dc-4f36-b213-65ac6665075f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14986" ], "x-ms-correlation-request-id": [ - "315bb53e-269c-491c-b1df-4efdf0844bdb" + "9a94644e-6ee9-4433-906f-60bffaa2ab76" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183345Z:315bb53e-269c-491c-b1df-4efdf0844bdb" + "CENTRALUS:20170325T010441Z:9a94644e-6ee9-4433-906f-60bffaa2ab76" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1061,7 +1061,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:34:15 GMT" + "Sat, 25 Mar 2017 01:05:12 GMT" ], "Pragma": [ "no-cache" @@ -1080,32 +1080,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a9566ce8-f323-4fca-8dd3-134e1af168a7" + "912ef3b7-660e-478f-9294-aaeed6ad3bd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14985" ], "x-ms-correlation-request-id": [ - "0a63d531-525a-4b42-88b7-7b9701322187" + "485c60e4-1acf-4011-b979-f8d8f4c4389b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183416Z:0a63d531-525a-4b42-88b7-7b9701322187" + "CENTRALUS:20170325T010512Z:485c60e4-1acf-4011-b979-f8d8f4c4389b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1120,7 +1120,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:34:46 GMT" + "Sat, 25 Mar 2017 01:05:42 GMT" ], "Pragma": [ "no-cache" @@ -1139,32 +1139,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "259b41d7-ed6c-47b8-8c0d-fbc170fafb80" + "a466434b-015c-4c9d-9994-9c8d094de573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14984" ], "x-ms-correlation-request-id": [ - "fd24f3c3-0c0d-44aa-a925-58b16e34ee39" + "07c62ba2-1613-4bb3-9a91-f7013f1293ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183446Z:fd24f3c3-0c0d-44aa-a925-58b16e34ee39" + "CENTRALUS:20170325T010542Z:07c62ba2-1613-4bb3-9a91-f7013f1293ef" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1179,7 +1179,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:35:16 GMT" + "Sat, 25 Mar 2017 01:06:12 GMT" ], "Pragma": [ "no-cache" @@ -1198,32 +1198,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5aedb890-15ae-48e7-bc7a-42b7355430ee" + "b05006d0-4137-48b5-b1f9-a444a2209593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14983" ], "x-ms-correlation-request-id": [ - "7e11adaf-357f-4b87-b9d8-5cc3aa82ced3" + "c4a063f7-0083-48df-9b0b-0ae465514d6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183516Z:7e11adaf-357f-4b87-b9d8-5cc3aa82ced3" + "CENTRALUS:20170325T010612Z:c4a063f7-0083-48df-9b0b-0ae465514d6d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1238,7 +1238,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:35:46 GMT" + "Sat, 25 Mar 2017 01:06:42 GMT" ], "Pragma": [ "no-cache" @@ -1257,32 +1257,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "96ee560e-ab2d-417c-9058-f2c9287668bc" + "88d988e6-f5d9-4b08-a3ac-9989b32f0e66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14982" ], "x-ms-correlation-request-id": [ - "c31bd90d-743d-4ebb-aec2-0929c44b136f" + "1608bf4a-9c50-4392-9f98-01038e1deb79" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183547Z:c31bd90d-743d-4ebb-aec2-0929c44b136f" + "CENTRALUS:20170325T010643Z:1608bf4a-9c50-4392-9f98-01038e1deb79" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1297,7 +1297,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:36:16 GMT" + "Sat, 25 Mar 2017 01:07:12 GMT" ], "Pragma": [ "no-cache" @@ -1316,32 +1316,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b3e1cab2-beb5-4648-a1ca-d26d0be9c035" + "2e45c000-f95c-4af0-be2e-88d2d52250d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14981" ], "x-ms-correlation-request-id": [ - "b0524977-b267-4708-8fcd-bad494f55fd4" + "3c43808e-700e-406b-b3a2-d304916451f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183617Z:b0524977-b267-4708-8fcd-bad494f55fd4" + "CENTRALUS:20170325T010713Z:3c43808e-700e-406b-b3a2-d304916451f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1356,7 +1356,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:36:47 GMT" + "Sat, 25 Mar 2017 01:07:43 GMT" ], "Pragma": [ "no-cache" @@ -1375,32 +1375,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3d035c12-f6a8-46ba-bbc8-420ef545a8c2" + "0f8004a7-fc71-4ae0-bad2-95f116c75d72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14980" ], "x-ms-correlation-request-id": [ - "d4976d95-53cf-4e23-b2e1-89e775ff98f8" + "01757bb0-dd8b-4c5c-8b1c-78c7976bf163" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183648Z:d4976d95-53cf-4e23-b2e1-89e775ff98f8" + "CENTRALUS:20170325T010743Z:01757bb0-dd8b-4c5c-8b1c-78c7976bf163" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1415,7 +1415,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:37:17 GMT" + "Sat, 25 Mar 2017 01:08:13 GMT" ], "Pragma": [ "no-cache" @@ -1434,32 +1434,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c61e3129-f6ed-4c53-8f48-d0b368131bc5" + "f9fd3373-92eb-4d92-837e-c4f754cb71be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14979" ], "x-ms-correlation-request-id": [ - "effbbf7e-366e-4c6c-8410-672b37f72ca1" + "b400a6f9-fe37-4fa2-8634-753a04af941c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183718Z:effbbf7e-366e-4c6c-8410-672b37f72ca1" + "CENTRALUS:20170325T010814Z:b400a6f9-fe37-4fa2-8634-753a04af941c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1474,7 +1474,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:37:48 GMT" + "Sat, 25 Mar 2017 01:08:43 GMT" ], "Pragma": [ "no-cache" @@ -1493,32 +1493,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f6fac953-1972-435a-9745-e24d7c5f4494" + "8c653ea0-41bd-4180-b49e-ff3f4064b244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14978" ], "x-ms-correlation-request-id": [ - "afc936c8-906b-4c7b-b7e2-3369f1e31e2d" + "d8a9b503-58b7-4547-bc24-1ba6e48c4a92" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183748Z:afc936c8-906b-4c7b-b7e2-3369f1e31e2d" + "CENTRALUS:20170325T010844Z:d8a9b503-58b7-4547-bc24-1ba6e48c4a92" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1533,7 +1533,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:38:18 GMT" + "Sat, 25 Mar 2017 01:09:14 GMT" ], "Pragma": [ "no-cache" @@ -1552,32 +1552,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "94366163-0125-416d-a290-e9975591d291" + "821f81e4-3b44-4396-ab27-3a9c6a5acb98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14977" ], "x-ms-correlation-request-id": [ - "f78b0a9e-8cf1-4b0a-a846-6d97cab0682e" + "c8266dbc-c9aa-4daa-8e5d-bc1812108ce4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183818Z:f78b0a9e-8cf1-4b0a-a846-6d97cab0682e" + "CENTRALUS:20170325T010914Z:c8266dbc-c9aa-4daa-8e5d-bc1812108ce4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1592,7 +1592,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:38:48 GMT" + "Sat, 25 Mar 2017 01:09:44 GMT" ], "Pragma": [ "no-cache" @@ -1611,32 +1611,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8542d0bd-c091-4285-b200-1a97e940df31" + "c98f9fd2-5d0a-478e-ab5d-e3154448f828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14976" ], "x-ms-correlation-request-id": [ - "cb3354de-11c6-41db-9284-70e75ae7c709" + "00b0f43f-baa7-46c0-920d-4479df4de3d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183848Z:cb3354de-11c6-41db-9284-70e75ae7c709" + "CENTRALUS:20170325T010945Z:00b0f43f-baa7-46c0-920d-4479df4de3d8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1651,7 +1651,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:18 GMT" + "Sat, 25 Mar 2017 01:10:15 GMT" ], "Pragma": [ "no-cache" @@ -1670,32 +1670,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "34fb2f43-2095-42ea-804c-3b6bc4014eee" + "435c3e6e-a71b-4ecc-933e-d6adea56e591" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14975" ], "x-ms-correlation-request-id": [ - "12c98d13-a2b9-4850-8184-7b0ead542237" + "3d341962-c5ac-4dda-9ef8-2cd0c9d287f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183919Z:12c98d13-a2b9-4850-8184-7b0ead542237" + "CENTRALUS:20170325T011015Z:3d341962-c5ac-4dda-9ef8-2cd0c9d287f7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1710,7 +1710,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:49 GMT" + "Sat, 25 Mar 2017 01:10:46 GMT" ], "Pragma": [ "no-cache" @@ -1726,35 +1726,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "94eae946-eaba-41f9-8c22-5fc468bcd2d5" + "9fedfeeb-cced-4e37-8b0b-52c69950e211" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14974" ], "x-ms-correlation-request-id": [ - "c63c15a5-e15b-49c2-bedc-4f3f60984534" + "bbbfafba-a623-4297-8379-063c0cb939e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183949Z:c63c15a5-e15b-49c2-bedc-4f3f60984534" + "CENTRALUS:20170325T011046Z:bbbfafba-a623-4297-8379-063c0cb939e6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3564\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29127229-2d52-4c79-a597-b0cbf241b92d\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6709\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/gatewayIPConfigurations/azsmnet6709\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet6145\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6558\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5555\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3427\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet949\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8377\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1467\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet1241\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8027\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6603\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3937\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4263\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1766,7 +1766,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:49 GMT" + "Sat, 25 Mar 2017 01:10:46 GMT" ], "Pragma": [ "no-cache" @@ -1775,7 +1775,7 @@ "chunked" ], "ETag": [ - "W/\"0cdab41d-75f6-49e8-826e-0ffeec80865e\"" + "W/\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1785,41 +1785,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2365205a-72c2-476a-95ca-35927681b0b7" + "c996473c-cf35-470f-8c43-e6d442d0f675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14973" ], "x-ms-correlation-request-id": [ - "93bf33b7-5a6c-4790-954a-694b5362bd08" + "cc5f664b-8990-422f-8004-d6bdb3be89f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183949Z:93bf33b7-5a6c-4790-954a-694b5362bd08" + "CENTRALUS:20170325T011046Z:cc5f664b-8990-422f-8004-d6bdb3be89f4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8403b1e1-b8aa-40a9-a17d-6a20f0d28f99" + "21d02e51-5135-4be9-a988-0483a914af60" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3564\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29127229-2d52-4c79-a597-b0cbf241b92d\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6709\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/gatewayIPConfigurations/azsmnet6709\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet6145\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6558\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5555\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3427\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet949\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8377\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1467\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet1241\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8027\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6603\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3937\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4263\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1831,7 +1831,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:49 GMT" + "Sat, 25 Mar 2017 01:19:38 GMT" ], "Pragma": [ "no-cache" @@ -1840,7 +1840,7 @@ "chunked" ], "ETag": [ - "W/\"0cdab41d-75f6-49e8-826e-0ffeec80865e\"" + "W/\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1850,41 +1850,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "851b19a5-2815-4d34-96a3-f6070c57461e" + "395f7473-041e-46a6-ac0e-cf1e99bc30b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14999" ], "x-ms-correlation-request-id": [ - "975e765a-5e66-46d2-a453-6b471a29e52e" + "bf0ab9d5-e39a-46ac-aa8a-c07603a6e4bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183949Z:975e765a-5e66-46d2-a453-6b471a29e52e" + "WESTUS2:20170325T011939Z:bf0ab9d5-e39a-46ac-aa8a-c07603a6e4bd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1bf7ea9-a8c0-4a7b-903d-717ec5447541" + "3d936eac-1c64-41e6-afb2-0adc891bcc13" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3564\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29127229-2d52-4c79-a597-b0cbf241b92d\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6709\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/gatewayIPConfigurations/azsmnet6709\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet6145\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6558\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5555\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3427\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet949\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8377\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1467\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet1241\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8027\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6603\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3937\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4263\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1896,7 +1896,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:29 GMT" + "Sat, 25 Mar 2017 01:27:50 GMT" ], "Pragma": [ "no-cache" @@ -1905,7 +1905,7 @@ "chunked" ], "ETag": [ - "W/\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\"" + "W/\"b4e2511b-dda6-456b-a135-758337e6ce52\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1915,38 +1915,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d673d73a-92ae-4b3a-9d6c-02264209cd0a" + "2d3c4ba2-4135-4892-b8a4-1c23d0642f5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14975" ], "x-ms-correlation-request-id": [ - "df5d74c4-9225-49c4-8482-a14d76b966a9" + "45693cb3-6770-42bd-8db4-4b02829477c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184829Z:df5d74c4-9225-49c4-8482-a14d76b966a9" + "WESTUS2:20170325T012751Z:45693cb3-6770-42bd-8db4-4b02829477c3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendhealth?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed9426ad-82d7-4aa1-be55-a759346589cf" + "60eb410d-67be-49dc-9550-b47927892018" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "null", @@ -1964,13 +1964,13 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:49 GMT" + "Sat, 25 Mar 2017 01:19:39 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a32fed5e-d27e-4477-b693-0f6e7b78722f?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1980,35 +1980,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b6b485d2-d161-4ebe-8012-f412458d37f9" + "a32fed5e-d27e-4477-b693-0f6e7b78722f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "c98de22d-d022-4587-b2d0-e6c4e9ee6f6c" + "f0937f91-dff4-4c29-acc8-fa8f21bc7fd5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183950Z:c98de22d-d022-4587-b2d0-e6c4e9ee6f6c" + "WESTUS2:20170325T011939Z:f0937f91-dff4-4c29-acc8-fa8f21bc7fd5" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9iNmI0ODVkMi1kMTYxLTRlYmUtODAxMi1mNDEyNDU4ZDM3Zjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a32fed5e-d27e-4477-b693-0f6e7b78722f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9hMzJmZWQ1ZS1kMjdlLTQ0NzctYjY5My0wZjZlN2I3ODcyMmY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Partial\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Partial\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Unhealthy\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2020,7 +2020,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:20 GMT" + "Sat, 25 Mar 2017 01:20:09 GMT" ], "Pragma": [ "no-cache" @@ -2029,7 +2029,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a32fed5e-d27e-4477-b693-0f6e7b78722f?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2039,19 +2039,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b6b485d2-d161-4ebe-8012-f412458d37f9" + "a32fed5e-d27e-4477-b693-0f6e7b78722f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14998" ], "x-ms-correlation-request-id": [ - "c20ae109-f4fa-4cca-9f55-8d76d829f9e0" + "de4de023-6855-4ea0-ab71-7f78c356b72b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184020Z:c20ae109-f4fa-4cca-9f55-8d76d829f9e0" + "WESTUS2:20170325T012010Z:de4de023-6855-4ea0-ab71-7f78c356b72b" ] }, "StatusCode": 200 @@ -2063,17 +2063,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bf825d3-2576-4343-b0ad-408c3bca4759" + "380e6634-bbac-4844-9f8d-1e48a53b9422" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"OWASP_3.0\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"3.0\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"REQUEST-910-IP-REPUTATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 910011,\r\n \"description\": \"Rule 910011\"\r\n },\r\n {\r\n \"ruleId\": 910012,\r\n \"description\": \"Rule 910012\"\r\n },\r\n {\r\n \"ruleId\": 910000,\r\n \"description\": \"Request from Known Malicious Client (Based on previous traffic violations).\"\r\n },\r\n {\r\n \"ruleId\": 910100,\r\n \"description\": \"Client IP is from a HIGH Risk Country Location.\"\r\n },\r\n {\r\n \"ruleId\": 910120,\r\n \"description\": \"Rule 910120\"\r\n },\r\n {\r\n \"ruleId\": 910130,\r\n \"description\": \"Rule 910130\"\r\n },\r\n {\r\n \"ruleId\": 910150,\r\n \"description\": \"HTTP Blacklist match for search engine IP\"\r\n },\r\n {\r\n \"ruleId\": 910160,\r\n \"description\": \"HTTP Blacklist match for spammer IP\"\r\n },\r\n {\r\n \"ruleId\": 910170,\r\n \"description\": \"HTTP Blacklist match for suspicious IP\"\r\n },\r\n {\r\n \"ruleId\": 910180,\r\n \"description\": \"HTTP Blacklist match for harvester IP\"\r\n },\r\n {\r\n \"ruleId\": 910013,\r\n \"description\": \"Rule 910013\"\r\n },\r\n {\r\n \"ruleId\": 910014,\r\n \"description\": \"Rule 910014\"\r\n },\r\n {\r\n \"ruleId\": 910015,\r\n \"description\": \"Rule 910015\"\r\n },\r\n {\r\n \"ruleId\": 910016,\r\n \"description\": \"Rule 910016\"\r\n },\r\n {\r\n \"ruleId\": 910017,\r\n \"description\": \"Rule 910017\"\r\n },\r\n {\r\n \"ruleId\": 910018,\r\n \"description\": \"Rule 910018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-911-METHOD-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 911011,\r\n \"description\": \"Rule 911011\"\r\n },\r\n {\r\n \"ruleId\": 911012,\r\n \"description\": \"Rule 911012\"\r\n },\r\n {\r\n \"ruleId\": 911100,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 911013,\r\n \"description\": \"Rule 911013\"\r\n },\r\n {\r\n \"ruleId\": 911014,\r\n \"description\": \"Rule 911014\"\r\n },\r\n {\r\n \"ruleId\": 911015,\r\n \"description\": \"Rule 911015\"\r\n },\r\n {\r\n \"ruleId\": 911016,\r\n \"description\": \"Rule 911016\"\r\n },\r\n {\r\n \"ruleId\": 911017,\r\n \"description\": \"Rule 911017\"\r\n },\r\n {\r\n \"ruleId\": 911018,\r\n \"description\": \"Rule 911018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-912-DOS-PROTECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 912100,\r\n \"description\": \"Rule 912100\"\r\n },\r\n {\r\n \"ruleId\": 912012,\r\n \"description\": \"Rule 912012\"\r\n },\r\n {\r\n \"ruleId\": 912120,\r\n \"description\": \"Denial of Service (DoS) attack identified from %{tx.real_ip} (%{tx.dos_block_counter} hits since last alert)\"\r\n },\r\n {\r\n \"ruleId\": 912130,\r\n \"description\": \"Rule 912130\"\r\n },\r\n {\r\n \"ruleId\": 912140,\r\n \"description\": \"Rule 912140\"\r\n },\r\n {\r\n \"ruleId\": 912150,\r\n \"description\": \"Rule 912150\"\r\n },\r\n {\r\n \"ruleId\": 912160,\r\n \"description\": \"Rule 912160\"\r\n },\r\n {\r\n \"ruleId\": 912170,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912013,\r\n \"description\": \"Rule 912013\"\r\n },\r\n {\r\n \"ruleId\": 912014,\r\n \"description\": \"Rule 912014\"\r\n },\r\n {\r\n \"ruleId\": 912019,\r\n \"description\": \"Rule 912019\"\r\n },\r\n {\r\n \"ruleId\": 912171,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912015,\r\n \"description\": \"Rule 912015\"\r\n },\r\n {\r\n \"ruleId\": 912016,\r\n \"description\": \"Rule 912016\"\r\n },\r\n {\r\n \"ruleId\": 912017,\r\n \"description\": \"Rule 912017\"\r\n },\r\n {\r\n \"ruleId\": 912018,\r\n \"description\": \"Rule 912018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-913-SCANNER-DETECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 913011,\r\n \"description\": \"Rule 913011\"\r\n },\r\n {\r\n \"ruleId\": 913012,\r\n \"description\": \"Rule 913012\"\r\n },\r\n {\r\n \"ruleId\": 913100,\r\n \"description\": \"Found User-Agent associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913110,\r\n \"description\": \"Found request header associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913120,\r\n \"description\": \"Found request filename/argument associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913013,\r\n \"description\": \"Rule 913013\"\r\n },\r\n {\r\n \"ruleId\": 913014,\r\n \"description\": \"Rule 913014\"\r\n },\r\n {\r\n \"ruleId\": 913101,\r\n \"description\": \"Found User-Agent associated with scripting/generic HTTP client\"\r\n },\r\n {\r\n \"ruleId\": 913102,\r\n \"description\": \"Found User-Agent associated with web crawler/bot\"\r\n },\r\n {\r\n \"ruleId\": 913015,\r\n \"description\": \"Rule 913015\"\r\n },\r\n {\r\n \"ruleId\": 913016,\r\n \"description\": \"Rule 913016\"\r\n },\r\n {\r\n \"ruleId\": 913017,\r\n \"description\": \"Rule 913017\"\r\n },\r\n {\r\n \"ruleId\": 913018,\r\n \"description\": \"Rule 913018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-920-PROTOCOL-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 920011,\r\n \"description\": \"Rule 920011\"\r\n },\r\n {\r\n \"ruleId\": 920012,\r\n \"description\": \"Rule 920012\"\r\n },\r\n {\r\n \"ruleId\": 920100,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 920130,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 920140,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 920160,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 920170,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 920180,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 920190,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 920210,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 920220,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920240,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920250,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920260,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920270,\r\n \"description\": \"Invalid character in request (null character)\"\r\n },\r\n {\r\n \"ruleId\": 920280,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920290,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920310,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920311,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920330,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920340,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 920350,\r\n \"description\": \"Host header is a numeric IP address\"\r\n },\r\n {\r\n \"ruleId\": 920380,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 920360,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 920370,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 920390,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 920400,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 920410,\r\n \"description\": \"Total uploaded files size too large\"\r\n },\r\n {\r\n \"ruleId\": 920420,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920430,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920440,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 920450,\r\n \"description\": \"HTTP header is restricted by policy (%{MATCHED_VAR})\"\r\n },\r\n {\r\n \"ruleId\": 920013,\r\n \"description\": \"Rule 920013\"\r\n },\r\n {\r\n \"ruleId\": 920014,\r\n \"description\": \"Rule 920014\"\r\n },\r\n {\r\n \"ruleId\": 920200,\r\n \"description\": \"Range: Too many fields (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920201,\r\n \"description\": \"Range: Too many fields for pdf request (35 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920230,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 920300,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920271,\r\n \"description\": \"Invalid character in request (non printable characters)\"\r\n },\r\n {\r\n \"ruleId\": 920320,\r\n \"description\": \"Missing User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920015,\r\n \"description\": \"Rule 920015\"\r\n },\r\n {\r\n \"ruleId\": 920016,\r\n \"description\": \"Rule 920016\"\r\n },\r\n {\r\n \"ruleId\": 920272,\r\n \"description\": \"Invalid character in request (outside of printable chars below ascii 127)\"\r\n },\r\n {\r\n \"ruleId\": 920017,\r\n \"description\": \"Rule 920017\"\r\n },\r\n {\r\n \"ruleId\": 920018,\r\n \"description\": \"Rule 920018\"\r\n },\r\n {\r\n \"ruleId\": 920202,\r\n \"description\": \"Range: Too many fields for pdf request (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920273,\r\n \"description\": \"Invalid character in request (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920274,\r\n \"description\": \"Invalid character in request headers (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920460,\r\n \"description\": \"Rule 920460\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-921-PROTOCOL-ATTACK\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 921011,\r\n \"description\": \"Rule 921011\"\r\n },\r\n {\r\n \"ruleId\": 921012,\r\n \"description\": \"Rule 921012\"\r\n },\r\n {\r\n \"ruleId\": 921100,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 921110,\r\n \"description\": \"HTTP Request Smuggling Attack\"\r\n },\r\n {\r\n \"ruleId\": 921120,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921130,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921140,\r\n \"description\": \"HTTP Header Injection Attack via headers\"\r\n },\r\n {\r\n \"ruleId\": 921150,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921160,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF and header-name detected)\"\r\n },\r\n {\r\n \"ruleId\": 921013,\r\n \"description\": \"Rule 921013\"\r\n },\r\n {\r\n \"ruleId\": 921014,\r\n \"description\": \"Rule 921014\"\r\n },\r\n {\r\n \"ruleId\": 921151,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921015,\r\n \"description\": \"Rule 921015\"\r\n },\r\n {\r\n \"ruleId\": 921016,\r\n \"description\": \"Rule 921016\"\r\n },\r\n {\r\n \"ruleId\": 921170,\r\n \"description\": \"Rule 921170\"\r\n },\r\n {\r\n \"ruleId\": 921180,\r\n \"description\": \"HTTP Parameter Pollution (%{TX.1})\"\r\n },\r\n {\r\n \"ruleId\": 921017,\r\n \"description\": \"Rule 921017\"\r\n },\r\n {\r\n \"ruleId\": 921018,\r\n \"description\": \"Rule 921018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-930-APPLICATION-ATTACK-LFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 930011,\r\n \"description\": \"Rule 930011\"\r\n },\r\n {\r\n \"ruleId\": 930012,\r\n \"description\": \"Rule 930012\"\r\n },\r\n {\r\n \"ruleId\": 930100,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930110,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930120,\r\n \"description\": \"OS File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930130,\r\n \"description\": \"Restricted File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930013,\r\n \"description\": \"Rule 930013\"\r\n },\r\n {\r\n \"ruleId\": 930014,\r\n \"description\": \"Rule 930014\"\r\n },\r\n {\r\n \"ruleId\": 930015,\r\n \"description\": \"Rule 930015\"\r\n },\r\n {\r\n \"ruleId\": 930016,\r\n \"description\": \"Rule 930016\"\r\n },\r\n {\r\n \"ruleId\": 930017,\r\n \"description\": \"Rule 930017\"\r\n },\r\n {\r\n \"ruleId\": 930018,\r\n \"description\": \"Rule 930018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-931-APPLICATION-ATTACK-RFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 931011,\r\n \"description\": \"Rule 931011\"\r\n },\r\n {\r\n \"ruleId\": 931012,\r\n \"description\": \"Rule 931012\"\r\n },\r\n {\r\n \"ruleId\": 931100,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Parameter using IP Address\"\r\n },\r\n {\r\n \"ruleId\": 931110,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Common RFI Vulnerable Parameter Name used w/URL Payload\"\r\n },\r\n {\r\n \"ruleId\": 931120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Payload Used w/Trailing Question Mark Character (?)\"\r\n },\r\n {\r\n \"ruleId\": 931013,\r\n \"description\": \"Rule 931013\"\r\n },\r\n {\r\n \"ruleId\": 931014,\r\n \"description\": \"Rule 931014\"\r\n },\r\n {\r\n \"ruleId\": 931130,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 931015,\r\n \"description\": \"Rule 931015\"\r\n },\r\n {\r\n \"ruleId\": 931016,\r\n \"description\": \"Rule 931016\"\r\n },\r\n {\r\n \"ruleId\": 931017,\r\n \"description\": \"Rule 931017\"\r\n },\r\n {\r\n \"ruleId\": 931018,\r\n \"description\": \"Rule 931018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-932-APPLICATION-ATTACK-RCE\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 932011,\r\n \"description\": \"Rule 932011\"\r\n },\r\n {\r\n \"ruleId\": 932012,\r\n \"description\": \"Rule 932012\"\r\n },\r\n {\r\n \"ruleId\": 932120,\r\n \"description\": \"Remote Command Execution: Windows PowerShell Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932130,\r\n \"description\": \"Remote Command Execution: Unix Shell Expression Found\"\r\n },\r\n {\r\n \"ruleId\": 932140,\r\n \"description\": \"Remote Command Execution: Windows FOR/IF Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932160,\r\n \"description\": \"Remote Command Execution: Unix Shell Code Found\"\r\n },\r\n {\r\n \"ruleId\": 932170,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932171,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932013,\r\n \"description\": \"Rule 932013\"\r\n },\r\n {\r\n \"ruleId\": 932014,\r\n \"description\": \"Rule 932014\"\r\n },\r\n {\r\n \"ruleId\": 932015,\r\n \"description\": \"Rule 932015\"\r\n },\r\n {\r\n \"ruleId\": 932016,\r\n \"description\": \"Rule 932016\"\r\n },\r\n {\r\n \"ruleId\": 932017,\r\n \"description\": \"Rule 932017\"\r\n },\r\n {\r\n \"ruleId\": 932018,\r\n \"description\": \"Rule 932018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-933-APPLICATION-ATTACK-PHP\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 933011,\r\n \"description\": \"Rule 933011\"\r\n },\r\n {\r\n \"ruleId\": 933012,\r\n \"description\": \"Rule 933012\"\r\n },\r\n {\r\n \"ruleId\": 933100,\r\n \"description\": \"PHP Injection Attack: Opening/Closing Tag Found\"\r\n },\r\n {\r\n \"ruleId\": 933110,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933120,\r\n \"description\": \"PHP Injection Attack: Configuration Directive Found\"\r\n },\r\n {\r\n \"ruleId\": 933130,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933150,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933160,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933180,\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933013,\r\n \"description\": \"Rule 933013\"\r\n },\r\n {\r\n \"ruleId\": 933014,\r\n \"description\": \"Rule 933014\"\r\n },\r\n {\r\n \"ruleId\": 933151,\r\n \"description\": \"PHP Injection Attack: Medium-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933015,\r\n \"description\": \"Rule 933015\"\r\n },\r\n {\r\n \"ruleId\": 933016,\r\n \"description\": \"Rule 933016\"\r\n },\r\n {\r\n \"ruleId\": 933131,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933161,\r\n \"description\": \"PHP Injection Attack: Low-Value PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933111,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933017,\r\n \"description\": \"Rule 933017\"\r\n },\r\n {\r\n \"ruleId\": 933018,\r\n \"description\": \"Rule 933018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-941-APPLICATION-ATTACK-XSS\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 941011,\r\n \"description\": \"Rule 941011\"\r\n },\r\n {\r\n \"ruleId\": 941012,\r\n \"description\": \"Rule 941012\"\r\n },\r\n {\r\n \"ruleId\": 941100,\r\n \"description\": \"XSS Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 941110,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 941130,\r\n \"description\": \"XSS Filter - Category 3: Attribute Vector\"\r\n },\r\n {\r\n \"ruleId\": 941140,\r\n \"description\": \"XSS Filter - Category 4: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 941150,\r\n \"description\": \"XSS Filter - Category 5: Disallowed HTML Attributes\"\r\n },\r\n {\r\n \"ruleId\": 941180,\r\n \"description\": \"Node-Validator Blacklist Keywords\"\r\n },\r\n {\r\n \"ruleId\": 941190,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941200,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941210,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941220,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941230,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941240,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941260,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941270,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941280,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941290,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941300,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941310,\r\n \"description\": \"US-ASCII Malformed Encoding XSS Filter - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941350,\r\n \"description\": \"UTF-7 Encoding IE XSS - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941013,\r\n \"description\": \"Rule 941013\"\r\n },\r\n {\r\n \"ruleId\": 941014,\r\n \"description\": \"Rule 941014\"\r\n },\r\n {\r\n \"ruleId\": 941320,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 941015,\r\n \"description\": \"Rule 941015\"\r\n },\r\n {\r\n \"ruleId\": 941016,\r\n \"description\": \"Rule 941016\"\r\n },\r\n {\r\n \"ruleId\": 941017,\r\n \"description\": \"Rule 941017\"\r\n },\r\n {\r\n \"ruleId\": 941018,\r\n \"description\": \"Rule 941018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-942-APPLICATION-ATTACK-SQLI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 942011,\r\n \"description\": \"Rule 942011\"\r\n },\r\n {\r\n \"ruleId\": 942012,\r\n \"description\": \"Rule 942012\"\r\n },\r\n {\r\n \"ruleId\": 942100,\r\n \"description\": \"SQL Injection Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 942140,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 942160,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 942170,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 942230,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942270,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 942290,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942320,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 942350,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n },\r\n {\r\n \"ruleId\": 942013,\r\n \"description\": \"Rule 942013\"\r\n },\r\n {\r\n \"ruleId\": 942014,\r\n \"description\": \"Rule 942014\"\r\n },\r\n {\r\n \"ruleId\": 942150,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942410,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942440,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 942450,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 942015,\r\n \"description\": \"Rule 942015\"\r\n },\r\n {\r\n \"ruleId\": 942016,\r\n \"description\": \"Rule 942016\"\r\n },\r\n {\r\n \"ruleId\": 942251,\r\n \"description\": \"Detects HAVING injections\"\r\n },\r\n {\r\n \"ruleId\": 942460,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetitive Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 942017,\r\n \"description\": \"Rule 942017\"\r\n },\r\n {\r\n \"ruleId\": 942018,\r\n \"description\": \"Rule 942018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 943011,\r\n \"description\": \"Rule 943011\"\r\n },\r\n {\r\n \"ruleId\": 943012,\r\n \"description\": \"Rule 943012\"\r\n },\r\n {\r\n \"ruleId\": 943100,\r\n \"description\": \"Possible Session Fixation Attack: Setting Cookie Values in HTML\"\r\n },\r\n {\r\n \"ruleId\": 943110,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with Off-Domain Referer\"\r\n },\r\n {\r\n \"ruleId\": 943120,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with No Referer\"\r\n },\r\n {\r\n \"ruleId\": 943013,\r\n \"description\": \"Rule 943013\"\r\n },\r\n {\r\n \"ruleId\": 943014,\r\n \"description\": \"Rule 943014\"\r\n },\r\n {\r\n \"ruleId\": 943015,\r\n \"description\": \"Rule 943015\"\r\n },\r\n {\r\n \"ruleId\": 943016,\r\n \"description\": \"Rule 943016\"\r\n },\r\n {\r\n \"ruleId\": 943017,\r\n \"description\": \"Rule 943017\"\r\n },\r\n {\r\n \"ruleId\": 943018,\r\n \"description\": \"Rule 943018\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"OWASP_2.2.9\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_20_protocol_violations\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960911,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 981227,\r\n \"description\": \"Apache Error: Invalid URI in Request.\"\r\n },\r\n {\r\n \"ruleId\": 960912,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 960914,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 960915,\r\n \"description\": \"Multipart parser detected a possible unmatched boundary.\"\r\n },\r\n {\r\n \"ruleId\": 960016,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 960011,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 960012,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 960902,\r\n \"description\": \"Invalid Use of Identity Encoding.\"\r\n },\r\n {\r\n \"ruleId\": 960022,\r\n \"description\": \"Expect Header Not Allowed for HTTP 1.0.\"\r\n },\r\n {\r\n \"ruleId\": 960020,\r\n \"description\": \"Pragma Header requires Cache-Control Header for HTTP/1.1 requests.\"\r\n },\r\n {\r\n \"ruleId\": 958291,\r\n \"description\": \"Range: field exists and begins with 0.\"\r\n },\r\n {\r\n \"ruleId\": 958230,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 958295,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 950107,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950109,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 950108,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950801,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950116,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 960901,\r\n \"description\": \"Invalid character in request\"\r\n },\r\n {\r\n \"ruleId\": 960018,\r\n \"description\": \"Invalid character in request\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_21_protocol_anomalies\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960008,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960007,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960015,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960021,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960009,\r\n \"description\": \"Request Missing a User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960006,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960904,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 960017,\r\n \"description\": \"Host header is a numeric IP address\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_23_request_limits\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960209,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 960208,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 960335,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 960341,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 960342,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 960343,\r\n \"description\": \"Total uploaded files size too large\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_30_http_policy\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960032,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960010,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960034,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960035,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 960038,\r\n \"description\": \"HTTP header is restricted by policy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 990002,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990901,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990902,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990012,\r\n \"description\": \"Rogue web site crawler\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_40_generic_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960024,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetative Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 950008,\r\n \"description\": \"Injection of Undocumented ColdFusion Tags\"\r\n },\r\n {\r\n \"ruleId\": 950010,\r\n \"description\": \"LDAP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950011,\r\n \"description\": \"SSI injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950018,\r\n \"description\": \"Universal PDF XSS URL Detected.\"\r\n },\r\n {\r\n \"ruleId\": 950019,\r\n \"description\": \"Email Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950012,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 950910,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950911,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950117,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950118,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950119,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 981133,\r\n \"description\": \"Rule 981133\"\r\n },\r\n {\r\n \"ruleId\": 981134,\r\n \"description\": \"Rule 981134\"\r\n },\r\n {\r\n \"ruleId\": 950009,\r\n \"description\": \"Session Fixation Attack\"\r\n },\r\n {\r\n \"ruleId\": 950003,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950000,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950005,\r\n \"description\": \"Remote File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950002,\r\n \"description\": \"System Command Access\"\r\n },\r\n {\r\n \"ruleId\": 950006,\r\n \"description\": \"System Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 959151,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958976,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958977,\r\n \"description\": \"PHP Injection Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 981231,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 981260,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 981320,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 981300,\r\n \"description\": \"Rule 981300\"\r\n },\r\n {\r\n \"ruleId\": 981301,\r\n \"description\": \"Rule 981301\"\r\n },\r\n {\r\n \"ruleId\": 981302,\r\n \"description\": \"Rule 981302\"\r\n },\r\n {\r\n \"ruleId\": 981303,\r\n \"description\": \"Rule 981303\"\r\n },\r\n {\r\n \"ruleId\": 981304,\r\n \"description\": \"Rule 981304\"\r\n },\r\n {\r\n \"ruleId\": 981305,\r\n \"description\": \"Rule 981305\"\r\n },\r\n {\r\n \"ruleId\": 981306,\r\n \"description\": \"Rule 981306\"\r\n },\r\n {\r\n \"ruleId\": 981307,\r\n \"description\": \"Rule 981307\"\r\n },\r\n {\r\n \"ruleId\": 981308,\r\n \"description\": \"Rule 981308\"\r\n },\r\n {\r\n \"ruleId\": 981309,\r\n \"description\": \"Rule 981309\"\r\n },\r\n {\r\n \"ruleId\": 981310,\r\n \"description\": \"Rule 981310\"\r\n },\r\n {\r\n \"ruleId\": 981311,\r\n \"description\": \"Rule 981311\"\r\n },\r\n {\r\n \"ruleId\": 981312,\r\n \"description\": \"Rule 981312\"\r\n },\r\n {\r\n \"ruleId\": 981313,\r\n \"description\": \"Rule 981313\"\r\n },\r\n {\r\n \"ruleId\": 981314,\r\n \"description\": \"Rule 981314\"\r\n },\r\n {\r\n \"ruleId\": 981315,\r\n \"description\": \"Rule 981315\"\r\n },\r\n {\r\n \"ruleId\": 981316,\r\n \"description\": \"Rule 981316\"\r\n },\r\n {\r\n \"ruleId\": 981317,\r\n \"description\": \"SQL SELECT Statement Anomaly Detection Alert\"\r\n },\r\n {\r\n \"ruleId\": 950007,\r\n \"description\": \"Blind SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950001,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950908,\r\n \"description\": \"SQL Injection Attack.\"\r\n },\r\n {\r\n \"ruleId\": 959073,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 981272,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 981250,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 981241,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981276,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 981270,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981253,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 981251,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_xss_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 973336,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 973338,\r\n \"description\": \"XSS Filter - Category 3: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 981136,\r\n \"description\": \"Rule 981136\"\r\n },\r\n {\r\n \"ruleId\": 981018,\r\n \"description\": \"Rule 981018\"\r\n },\r\n {\r\n \"ruleId\": 958016,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958414,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958032,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958026,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958027,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958054,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958418,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958034,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958019,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958013,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958408,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958012,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958423,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958002,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958017,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958007,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958047,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958410,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958415,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958022,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958405,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958419,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958028,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958057,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958031,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958006,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958033,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958038,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958409,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958001,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958005,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958404,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958023,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958010,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958411,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958422,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958036,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958000,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958018,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958406,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958040,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958052,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958037,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958049,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958030,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958041,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958416,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958024,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958059,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958417,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958020,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958045,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958004,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958421,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958009,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958025,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958413,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958051,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958420,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958407,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958056,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958011,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958412,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958008,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958046,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958039,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958003,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 973300,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 973301,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973302,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973303,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973304,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973305,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973306,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973307,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973308,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973309,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973311,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973313,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973314,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973331,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973315,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973330,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973327,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973326,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973346,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973345,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973324,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973323,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973348,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973321,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973320,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973318,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973317,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973329,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973328,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_42_tight_security\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950103,\r\n \"description\": \"Path Traversal Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_45_trojans\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950110,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950921,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950922,\r\n \"description\": \"Backdoor access\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"OWASP_3.0\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"3.0\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"REQUEST-910-IP-REPUTATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 910011,\r\n \"description\": \"Rule 910011\"\r\n },\r\n {\r\n \"ruleId\": 910012,\r\n \"description\": \"Rule 910012\"\r\n },\r\n {\r\n \"ruleId\": 910000,\r\n \"description\": \"Request from Known Malicious Client (Based on previous traffic violations).\"\r\n },\r\n {\r\n \"ruleId\": 910100,\r\n \"description\": \"Client IP is from a HIGH Risk Country Location.\"\r\n },\r\n {\r\n \"ruleId\": 910120,\r\n \"description\": \"Rule 910120\"\r\n },\r\n {\r\n \"ruleId\": 910130,\r\n \"description\": \"Rule 910130\"\r\n },\r\n {\r\n \"ruleId\": 910150,\r\n \"description\": \"HTTP Blacklist match for search engine IP\"\r\n },\r\n {\r\n \"ruleId\": 910160,\r\n \"description\": \"HTTP Blacklist match for spammer IP\"\r\n },\r\n {\r\n \"ruleId\": 910170,\r\n \"description\": \"HTTP Blacklist match for suspicious IP\"\r\n },\r\n {\r\n \"ruleId\": 910180,\r\n \"description\": \"HTTP Blacklist match for harvester IP\"\r\n },\r\n {\r\n \"ruleId\": 910013,\r\n \"description\": \"Rule 910013\"\r\n },\r\n {\r\n \"ruleId\": 910014,\r\n \"description\": \"Rule 910014\"\r\n },\r\n {\r\n \"ruleId\": 910015,\r\n \"description\": \"Rule 910015\"\r\n },\r\n {\r\n \"ruleId\": 910016,\r\n \"description\": \"Rule 910016\"\r\n },\r\n {\r\n \"ruleId\": 910017,\r\n \"description\": \"Rule 910017\"\r\n },\r\n {\r\n \"ruleId\": 910018,\r\n \"description\": \"Rule 910018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-911-METHOD-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 911011,\r\n \"description\": \"Rule 911011\"\r\n },\r\n {\r\n \"ruleId\": 911012,\r\n \"description\": \"Rule 911012\"\r\n },\r\n {\r\n \"ruleId\": 911100,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 911013,\r\n \"description\": \"Rule 911013\"\r\n },\r\n {\r\n \"ruleId\": 911014,\r\n \"description\": \"Rule 911014\"\r\n },\r\n {\r\n \"ruleId\": 911015,\r\n \"description\": \"Rule 911015\"\r\n },\r\n {\r\n \"ruleId\": 911016,\r\n \"description\": \"Rule 911016\"\r\n },\r\n {\r\n \"ruleId\": 911017,\r\n \"description\": \"Rule 911017\"\r\n },\r\n {\r\n \"ruleId\": 911018,\r\n \"description\": \"Rule 911018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-912-DOS-PROTECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 912100,\r\n \"description\": \"Rule 912100\"\r\n },\r\n {\r\n \"ruleId\": 912012,\r\n \"description\": \"Rule 912012\"\r\n },\r\n {\r\n \"ruleId\": 912120,\r\n \"description\": \"Denial of Service (DoS) attack identified from %{tx.real_ip} (%{tx.dos_block_counter} hits since last alert)\"\r\n },\r\n {\r\n \"ruleId\": 912130,\r\n \"description\": \"Rule 912130\"\r\n },\r\n {\r\n \"ruleId\": 912140,\r\n \"description\": \"Rule 912140\"\r\n },\r\n {\r\n \"ruleId\": 912150,\r\n \"description\": \"Rule 912150\"\r\n },\r\n {\r\n \"ruleId\": 912160,\r\n \"description\": \"Rule 912160\"\r\n },\r\n {\r\n \"ruleId\": 912170,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912013,\r\n \"description\": \"Rule 912013\"\r\n },\r\n {\r\n \"ruleId\": 912014,\r\n \"description\": \"Rule 912014\"\r\n },\r\n {\r\n \"ruleId\": 912019,\r\n \"description\": \"Rule 912019\"\r\n },\r\n {\r\n \"ruleId\": 912171,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912015,\r\n \"description\": \"Rule 912015\"\r\n },\r\n {\r\n \"ruleId\": 912016,\r\n \"description\": \"Rule 912016\"\r\n },\r\n {\r\n \"ruleId\": 912017,\r\n \"description\": \"Rule 912017\"\r\n },\r\n {\r\n \"ruleId\": 912018,\r\n \"description\": \"Rule 912018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-913-SCANNER-DETECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 913011,\r\n \"description\": \"Rule 913011\"\r\n },\r\n {\r\n \"ruleId\": 913012,\r\n \"description\": \"Rule 913012\"\r\n },\r\n {\r\n \"ruleId\": 913100,\r\n \"description\": \"Found User-Agent associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913110,\r\n \"description\": \"Found request header associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913120,\r\n \"description\": \"Found request filename/argument associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913013,\r\n \"description\": \"Rule 913013\"\r\n },\r\n {\r\n \"ruleId\": 913014,\r\n \"description\": \"Rule 913014\"\r\n },\r\n {\r\n \"ruleId\": 913101,\r\n \"description\": \"Found User-Agent associated with scripting/generic HTTP client\"\r\n },\r\n {\r\n \"ruleId\": 913102,\r\n \"description\": \"Found User-Agent associated with web crawler/bot\"\r\n },\r\n {\r\n \"ruleId\": 913015,\r\n \"description\": \"Rule 913015\"\r\n },\r\n {\r\n \"ruleId\": 913016,\r\n \"description\": \"Rule 913016\"\r\n },\r\n {\r\n \"ruleId\": 913017,\r\n \"description\": \"Rule 913017\"\r\n },\r\n {\r\n \"ruleId\": 913018,\r\n \"description\": \"Rule 913018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-920-PROTOCOL-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 920011,\r\n \"description\": \"Rule 920011\"\r\n },\r\n {\r\n \"ruleId\": 920012,\r\n \"description\": \"Rule 920012\"\r\n },\r\n {\r\n \"ruleId\": 920100,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 920120,\r\n \"description\": \"Attempted multipart/form-data bypass\"\r\n },\r\n {\r\n \"ruleId\": 920130,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 920140,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 920160,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 920170,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 920180,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 920190,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 920210,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 920220,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920240,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920250,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920260,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920270,\r\n \"description\": \"Invalid character in request (null character)\"\r\n },\r\n {\r\n \"ruleId\": 920280,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920290,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920310,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920311,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920330,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920340,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 920350,\r\n \"description\": \"Host header is a numeric IP address\"\r\n },\r\n {\r\n \"ruleId\": 920380,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 920360,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 920370,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 920390,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 920400,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 920410,\r\n \"description\": \"Total uploaded files size too large\"\r\n },\r\n {\r\n \"ruleId\": 920420,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920430,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920440,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 920450,\r\n \"description\": \"HTTP header is restricted by policy (%{MATCHED_VAR})\"\r\n },\r\n {\r\n \"ruleId\": 920013,\r\n \"description\": \"Rule 920013\"\r\n },\r\n {\r\n \"ruleId\": 920014,\r\n \"description\": \"Rule 920014\"\r\n },\r\n {\r\n \"ruleId\": 920200,\r\n \"description\": \"Range: Too many fields (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920201,\r\n \"description\": \"Range: Too many fields for pdf request (35 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920230,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 920300,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920271,\r\n \"description\": \"Invalid character in request (non printable characters)\"\r\n },\r\n {\r\n \"ruleId\": 920320,\r\n \"description\": \"Missing User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920015,\r\n \"description\": \"Rule 920015\"\r\n },\r\n {\r\n \"ruleId\": 920016,\r\n \"description\": \"Rule 920016\"\r\n },\r\n {\r\n \"ruleId\": 920272,\r\n \"description\": \"Invalid character in request (outside of printable chars below ascii 127)\"\r\n },\r\n {\r\n \"ruleId\": 920017,\r\n \"description\": \"Rule 920017\"\r\n },\r\n {\r\n \"ruleId\": 920018,\r\n \"description\": \"Rule 920018\"\r\n },\r\n {\r\n \"ruleId\": 920202,\r\n \"description\": \"Range: Too many fields for pdf request (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920273,\r\n \"description\": \"Invalid character in request (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920274,\r\n \"description\": \"Invalid character in request headers (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920460,\r\n \"description\": \"Rule 920460\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-921-PROTOCOL-ATTACK\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 921011,\r\n \"description\": \"Rule 921011\"\r\n },\r\n {\r\n \"ruleId\": 921012,\r\n \"description\": \"Rule 921012\"\r\n },\r\n {\r\n \"ruleId\": 921100,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 921110,\r\n \"description\": \"HTTP Request Smuggling Attack\"\r\n },\r\n {\r\n \"ruleId\": 921120,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921130,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921140,\r\n \"description\": \"HTTP Header Injection Attack via headers\"\r\n },\r\n {\r\n \"ruleId\": 921150,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921160,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF and header-name detected)\"\r\n },\r\n {\r\n \"ruleId\": 921013,\r\n \"description\": \"Rule 921013\"\r\n },\r\n {\r\n \"ruleId\": 921014,\r\n \"description\": \"Rule 921014\"\r\n },\r\n {\r\n \"ruleId\": 921151,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921015,\r\n \"description\": \"Rule 921015\"\r\n },\r\n {\r\n \"ruleId\": 921016,\r\n \"description\": \"Rule 921016\"\r\n },\r\n {\r\n \"ruleId\": 921170,\r\n \"description\": \"Rule 921170\"\r\n },\r\n {\r\n \"ruleId\": 921180,\r\n \"description\": \"HTTP Parameter Pollution (%{TX.1})\"\r\n },\r\n {\r\n \"ruleId\": 921017,\r\n \"description\": \"Rule 921017\"\r\n },\r\n {\r\n \"ruleId\": 921018,\r\n \"description\": \"Rule 921018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-930-APPLICATION-ATTACK-LFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 930011,\r\n \"description\": \"Rule 930011\"\r\n },\r\n {\r\n \"ruleId\": 930012,\r\n \"description\": \"Rule 930012\"\r\n },\r\n {\r\n \"ruleId\": 930100,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930110,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930120,\r\n \"description\": \"OS File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930130,\r\n \"description\": \"Restricted File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930013,\r\n \"description\": \"Rule 930013\"\r\n },\r\n {\r\n \"ruleId\": 930014,\r\n \"description\": \"Rule 930014\"\r\n },\r\n {\r\n \"ruleId\": 930015,\r\n \"description\": \"Rule 930015\"\r\n },\r\n {\r\n \"ruleId\": 930016,\r\n \"description\": \"Rule 930016\"\r\n },\r\n {\r\n \"ruleId\": 930017,\r\n \"description\": \"Rule 930017\"\r\n },\r\n {\r\n \"ruleId\": 930018,\r\n \"description\": \"Rule 930018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-931-APPLICATION-ATTACK-RFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 931011,\r\n \"description\": \"Rule 931011\"\r\n },\r\n {\r\n \"ruleId\": 931012,\r\n \"description\": \"Rule 931012\"\r\n },\r\n {\r\n \"ruleId\": 931100,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Parameter using IP Address\"\r\n },\r\n {\r\n \"ruleId\": 931110,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Common RFI Vulnerable Parameter Name used w/URL Payload\"\r\n },\r\n {\r\n \"ruleId\": 931120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Payload Used w/Trailing Question Mark Character (?)\"\r\n },\r\n {\r\n \"ruleId\": 931013,\r\n \"description\": \"Rule 931013\"\r\n },\r\n {\r\n \"ruleId\": 931014,\r\n \"description\": \"Rule 931014\"\r\n },\r\n {\r\n \"ruleId\": 931130,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 931015,\r\n \"description\": \"Rule 931015\"\r\n },\r\n {\r\n \"ruleId\": 931016,\r\n \"description\": \"Rule 931016\"\r\n },\r\n {\r\n \"ruleId\": 931017,\r\n \"description\": \"Rule 931017\"\r\n },\r\n {\r\n \"ruleId\": 931018,\r\n \"description\": \"Rule 931018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-932-APPLICATION-ATTACK-RCE\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 932011,\r\n \"description\": \"Rule 932011\"\r\n },\r\n {\r\n \"ruleId\": 932012,\r\n \"description\": \"Rule 932012\"\r\n },\r\n {\r\n \"ruleId\": 932100,\r\n \"description\": \"Remote Command Execution: Unix Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 932105,\r\n \"description\": \"Remote Command Execution: Unix Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 932110,\r\n \"description\": \"Remote Command Execution: Windows Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 932115,\r\n \"description\": \"Remote Command Execution: Windows Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 932120,\r\n \"description\": \"Remote Command Execution: Windows PowerShell Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932130,\r\n \"description\": \"Remote Command Execution: Unix Shell Expression Found\"\r\n },\r\n {\r\n \"ruleId\": 932140,\r\n \"description\": \"Remote Command Execution: Windows FOR/IF Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932150,\r\n \"description\": \"Remote Command Execution: Direct Unix Command Execution\"\r\n },\r\n {\r\n \"ruleId\": 932160,\r\n \"description\": \"Remote Command Execution: Unix Shell Code Found\"\r\n },\r\n {\r\n \"ruleId\": 932170,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932171,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932013,\r\n \"description\": \"Rule 932013\"\r\n },\r\n {\r\n \"ruleId\": 932014,\r\n \"description\": \"Rule 932014\"\r\n },\r\n {\r\n \"ruleId\": 932015,\r\n \"description\": \"Rule 932015\"\r\n },\r\n {\r\n \"ruleId\": 932016,\r\n \"description\": \"Rule 932016\"\r\n },\r\n {\r\n \"ruleId\": 932017,\r\n \"description\": \"Rule 932017\"\r\n },\r\n {\r\n \"ruleId\": 932018,\r\n \"description\": \"Rule 932018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-933-APPLICATION-ATTACK-PHP\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 933011,\r\n \"description\": \"Rule 933011\"\r\n },\r\n {\r\n \"ruleId\": 933012,\r\n \"description\": \"Rule 933012\"\r\n },\r\n {\r\n \"ruleId\": 933100,\r\n \"description\": \"PHP Injection Attack: Opening/Closing Tag Found\"\r\n },\r\n {\r\n \"ruleId\": 933110,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933120,\r\n \"description\": \"PHP Injection Attack: Configuration Directive Found\"\r\n },\r\n {\r\n \"ruleId\": 933130,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933150,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933160,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933180,\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933013,\r\n \"description\": \"Rule 933013\"\r\n },\r\n {\r\n \"ruleId\": 933014,\r\n \"description\": \"Rule 933014\"\r\n },\r\n {\r\n \"ruleId\": 933151,\r\n \"description\": \"PHP Injection Attack: Medium-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933015,\r\n \"description\": \"Rule 933015\"\r\n },\r\n {\r\n \"ruleId\": 933016,\r\n \"description\": \"Rule 933016\"\r\n },\r\n {\r\n \"ruleId\": 933131,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933161,\r\n \"description\": \"PHP Injection Attack: Low-Value PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933111,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933017,\r\n \"description\": \"Rule 933017\"\r\n },\r\n {\r\n \"ruleId\": 933018,\r\n \"description\": \"Rule 933018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-941-APPLICATION-ATTACK-XSS\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 941011,\r\n \"description\": \"Rule 941011\"\r\n },\r\n {\r\n \"ruleId\": 941012,\r\n \"description\": \"Rule 941012\"\r\n },\r\n {\r\n \"ruleId\": 941100,\r\n \"description\": \"XSS Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 941110,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 941120,\r\n \"description\": \"XSS Filter - Category 2: Event Handler Vector\"\r\n },\r\n {\r\n \"ruleId\": 941130,\r\n \"description\": \"XSS Filter - Category 3: Attribute Vector\"\r\n },\r\n {\r\n \"ruleId\": 941140,\r\n \"description\": \"XSS Filter - Category 4: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 941150,\r\n \"description\": \"XSS Filter - Category 5: Disallowed HTML Attributes\"\r\n },\r\n {\r\n \"ruleId\": 941170,\r\n \"description\": \"NoScript XSS InjectionChecker: Attribute Injection\"\r\n },\r\n {\r\n \"ruleId\": 941180,\r\n \"description\": \"Node-Validator Blacklist Keywords\"\r\n },\r\n {\r\n \"ruleId\": 941190,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941200,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941210,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941220,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941230,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941240,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941250,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941260,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941270,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941280,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941290,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941300,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941310,\r\n \"description\": \"US-ASCII Malformed Encoding XSS Filter - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941350,\r\n \"description\": \"UTF-7 Encoding IE XSS - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941013,\r\n \"description\": \"Rule 941013\"\r\n },\r\n {\r\n \"ruleId\": 941014,\r\n \"description\": \"Rule 941014\"\r\n },\r\n {\r\n \"ruleId\": 941320,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 941330,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941340,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941015,\r\n \"description\": \"Rule 941015\"\r\n },\r\n {\r\n \"ruleId\": 941016,\r\n \"description\": \"Rule 941016\"\r\n },\r\n {\r\n \"ruleId\": 941017,\r\n \"description\": \"Rule 941017\"\r\n },\r\n {\r\n \"ruleId\": 941018,\r\n \"description\": \"Rule 941018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-942-APPLICATION-ATTACK-SQLI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 942011,\r\n \"description\": \"Rule 942011\"\r\n },\r\n {\r\n \"ruleId\": 942012,\r\n \"description\": \"Rule 942012\"\r\n },\r\n {\r\n \"ruleId\": 942100,\r\n \"description\": \"SQL Injection Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 942140,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 942160,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 942170,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 942190,\r\n \"description\": \"Detects MSSQL code execution and information gathering attempts\"\r\n },\r\n {\r\n \"ruleId\": 942220,\r\n \"description\": \"Looking for intiger overflow attacks, these are taken from skipfish, except 3.0.00738585072007e-308 is the \\\\\\\"magic number\\\\\\\" crash\"\r\n },\r\n {\r\n \"ruleId\": 942230,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942240,\r\n \"description\": \"Detects MySQL charset switch and MSSQL DoS attempts\"\r\n },\r\n {\r\n \"ruleId\": 942250,\r\n \"description\": \"Detects MATCH AGAINST, MERGE and EXECUTE IMMEDIATE injections\"\r\n },\r\n {\r\n \"ruleId\": 942270,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 942280,\r\n \"description\": \"Detects Postgres pg_sleep injection, waitfor delay attacks and database shutdown attempts\"\r\n },\r\n {\r\n \"ruleId\": 942290,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942320,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 942350,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n },\r\n {\r\n \"ruleId\": 942360,\r\n \"description\": \"Detects concatenated basic SQL injection and SQLLFI attempts\"\r\n },\r\n {\r\n \"ruleId\": 942013,\r\n \"description\": \"Rule 942013\"\r\n },\r\n {\r\n \"ruleId\": 942014,\r\n \"description\": \"Rule 942014\"\r\n },\r\n {\r\n \"ruleId\": 942110,\r\n \"description\": \"SQL Injection Attack: Common Injection Testing Detected\"\r\n },\r\n {\r\n \"ruleId\": 942120,\r\n \"description\": \"SQL Injection Attack: SQL Operator Detected\"\r\n },\r\n {\r\n \"ruleId\": 942130,\r\n \"description\": \"SQL Injection Attack: SQL Tautology Detected.\"\r\n },\r\n {\r\n \"ruleId\": 942150,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942180,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 1/3\"\r\n },\r\n {\r\n \"ruleId\": 942200,\r\n \"description\": \"Detects MySQL comment-/space-obfuscated injections and backtick termination\"\r\n },\r\n {\r\n \"ruleId\": 942210,\r\n \"description\": \"Detects chained SQL injection attempts 1/2\"\r\n },\r\n {\r\n \"ruleId\": 942260,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 2/3\"\r\n },\r\n {\r\n \"ruleId\": 942300,\r\n \"description\": \"Detects MySQL comments, conditions and ch(a)r injections\"\r\n },\r\n {\r\n \"ruleId\": 942310,\r\n \"description\": \"Detects chained SQL injection attempts 2/2\"\r\n },\r\n {\r\n \"ruleId\": 942330,\r\n \"description\": \"Detects classic SQL injection probings 1/2\"\r\n },\r\n {\r\n \"ruleId\": 942340,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 3/3\"\r\n },\r\n {\r\n \"ruleId\": 942370,\r\n \"description\": \"Detects classic SQL injection probings 2/2\"\r\n },\r\n {\r\n \"ruleId\": 942380,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942390,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942400,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942410,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942430,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (12)\"\r\n },\r\n {\r\n \"ruleId\": 942440,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 942450,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 942015,\r\n \"description\": \"Rule 942015\"\r\n },\r\n {\r\n \"ruleId\": 942016,\r\n \"description\": \"Rule 942016\"\r\n },\r\n {\r\n \"ruleId\": 942251,\r\n \"description\": \"Detects HAVING injections\"\r\n },\r\n {\r\n \"ruleId\": 942420,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (cookies): # of special characters exceeded (8)\"\r\n },\r\n {\r\n \"ruleId\": 942431,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (6)\"\r\n },\r\n {\r\n \"ruleId\": 942460,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetitive Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 942017,\r\n \"description\": \"Rule 942017\"\r\n },\r\n {\r\n \"ruleId\": 942018,\r\n \"description\": \"Rule 942018\"\r\n },\r\n {\r\n \"ruleId\": 942421,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (cookies): # of special characters exceeded (3)\"\r\n },\r\n {\r\n \"ruleId\": 942432,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (2)\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 943011,\r\n \"description\": \"Rule 943011\"\r\n },\r\n {\r\n \"ruleId\": 943012,\r\n \"description\": \"Rule 943012\"\r\n },\r\n {\r\n \"ruleId\": 943100,\r\n \"description\": \"Possible Session Fixation Attack: Setting Cookie Values in HTML\"\r\n },\r\n {\r\n \"ruleId\": 943110,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with Off-Domain Referer\"\r\n },\r\n {\r\n \"ruleId\": 943120,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with No Referer\"\r\n },\r\n {\r\n \"ruleId\": 943013,\r\n \"description\": \"Rule 943013\"\r\n },\r\n {\r\n \"ruleId\": 943014,\r\n \"description\": \"Rule 943014\"\r\n },\r\n {\r\n \"ruleId\": 943015,\r\n \"description\": \"Rule 943015\"\r\n },\r\n {\r\n \"ruleId\": 943016,\r\n \"description\": \"Rule 943016\"\r\n },\r\n {\r\n \"ruleId\": 943017,\r\n \"description\": \"Rule 943017\"\r\n },\r\n {\r\n \"ruleId\": 943018,\r\n \"description\": \"Rule 943018\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"OWASP_2.2.9\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_20_protocol_violations\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960911,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 981227,\r\n \"description\": \"Apache Error: Invalid URI in Request.\"\r\n },\r\n {\r\n \"ruleId\": 960000,\r\n \"description\": \"Attempted multipart/form-data bypass\"\r\n },\r\n {\r\n \"ruleId\": 960912,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 960914,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 960915,\r\n \"description\": \"Multipart parser detected a possible unmatched boundary.\"\r\n },\r\n {\r\n \"ruleId\": 960016,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 960011,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 960012,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 960902,\r\n \"description\": \"Invalid Use of Identity Encoding.\"\r\n },\r\n {\r\n \"ruleId\": 960022,\r\n \"description\": \"Expect Header Not Allowed for HTTP 1.0.\"\r\n },\r\n {\r\n \"ruleId\": 960020,\r\n \"description\": \"Pragma Header requires Cache-Control Header for HTTP/1.1 requests.\"\r\n },\r\n {\r\n \"ruleId\": 958291,\r\n \"description\": \"Range: field exists and begins with 0.\"\r\n },\r\n {\r\n \"ruleId\": 958230,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 958295,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 950107,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950109,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 950108,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950801,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950116,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 960901,\r\n \"description\": \"Invalid character in request\"\r\n },\r\n {\r\n \"ruleId\": 960018,\r\n \"description\": \"Invalid character in request\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_21_protocol_anomalies\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960008,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960007,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960015,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960021,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960009,\r\n \"description\": \"Request Missing a User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960006,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960904,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 960017,\r\n \"description\": \"Host header is a numeric IP address\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_23_request_limits\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960209,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 960208,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 960335,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 960341,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 960342,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 960343,\r\n \"description\": \"Total uploaded files size too large\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_30_http_policy\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960032,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960010,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960034,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960035,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 960038,\r\n \"description\": \"HTTP header is restricted by policy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 990002,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990901,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990902,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990012,\r\n \"description\": \"Rogue web site crawler\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_40_generic_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950907,\r\n \"description\": \"System Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 960024,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetative Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 950008,\r\n \"description\": \"Injection of Undocumented ColdFusion Tags\"\r\n },\r\n {\r\n \"ruleId\": 950010,\r\n \"description\": \"LDAP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950011,\r\n \"description\": \"SSI injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950018,\r\n \"description\": \"Universal PDF XSS URL Detected.\"\r\n },\r\n {\r\n \"ruleId\": 950019,\r\n \"description\": \"Email Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950012,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 950910,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950911,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950117,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950118,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950119,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 981133,\r\n \"description\": \"Rule 981133\"\r\n },\r\n {\r\n \"ruleId\": 981134,\r\n \"description\": \"Rule 981134\"\r\n },\r\n {\r\n \"ruleId\": 950009,\r\n \"description\": \"Session Fixation Attack\"\r\n },\r\n {\r\n \"ruleId\": 950003,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950000,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950005,\r\n \"description\": \"Remote File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950002,\r\n \"description\": \"System Command Access\"\r\n },\r\n {\r\n \"ruleId\": 950006,\r\n \"description\": \"System Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 959151,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958976,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958977,\r\n \"description\": \"PHP Injection Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 981231,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 981260,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 981318,\r\n \"description\": \"SQL Injection Attack: Common Injection Testing Detected\"\r\n },\r\n {\r\n \"ruleId\": 981319,\r\n \"description\": \"SQL Injection Attack: SQL Operator Detected\"\r\n },\r\n {\r\n \"ruleId\": 950901,\r\n \"description\": \"SQL Injection Attack: SQL Tautology Detected.\"\r\n },\r\n {\r\n \"ruleId\": 981320,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 981300,\r\n \"description\": \"Rule 981300\"\r\n },\r\n {\r\n \"ruleId\": 981301,\r\n \"description\": \"Rule 981301\"\r\n },\r\n {\r\n \"ruleId\": 981302,\r\n \"description\": \"Rule 981302\"\r\n },\r\n {\r\n \"ruleId\": 981303,\r\n \"description\": \"Rule 981303\"\r\n },\r\n {\r\n \"ruleId\": 981304,\r\n \"description\": \"Rule 981304\"\r\n },\r\n {\r\n \"ruleId\": 981305,\r\n \"description\": \"Rule 981305\"\r\n },\r\n {\r\n \"ruleId\": 981306,\r\n \"description\": \"Rule 981306\"\r\n },\r\n {\r\n \"ruleId\": 981307,\r\n \"description\": \"Rule 981307\"\r\n },\r\n {\r\n \"ruleId\": 981308,\r\n \"description\": \"Rule 981308\"\r\n },\r\n {\r\n \"ruleId\": 981309,\r\n \"description\": \"Rule 981309\"\r\n },\r\n {\r\n \"ruleId\": 981310,\r\n \"description\": \"Rule 981310\"\r\n },\r\n {\r\n \"ruleId\": 981311,\r\n \"description\": \"Rule 981311\"\r\n },\r\n {\r\n \"ruleId\": 981312,\r\n \"description\": \"Rule 981312\"\r\n },\r\n {\r\n \"ruleId\": 981313,\r\n \"description\": \"Rule 981313\"\r\n },\r\n {\r\n \"ruleId\": 981314,\r\n \"description\": \"Rule 981314\"\r\n },\r\n {\r\n \"ruleId\": 981315,\r\n \"description\": \"Rule 981315\"\r\n },\r\n {\r\n \"ruleId\": 981316,\r\n \"description\": \"Rule 981316\"\r\n },\r\n {\r\n \"ruleId\": 981317,\r\n \"description\": \"SQL SELECT Statement Anomaly Detection Alert\"\r\n },\r\n {\r\n \"ruleId\": 950007,\r\n \"description\": \"Blind SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950001,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 959070,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 959071,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 959072,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950908,\r\n \"description\": \"SQL Injection Attack.\"\r\n },\r\n {\r\n \"ruleId\": 959073,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 981172,\r\n \"description\": \"Restricted SQL Character Anomaly Detection Alert - Total # of special characters exceeded\"\r\n },\r\n {\r\n \"ruleId\": 981173,\r\n \"description\": \"Restricted SQL Character Anomaly Detection Alert - Total # of special characters exceeded\"\r\n },\r\n {\r\n \"ruleId\": 981272,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 981244,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 1/3\"\r\n },\r\n {\r\n \"ruleId\": 981255,\r\n \"description\": \"Detects MSSQL code execution and information gathering attempts\"\r\n },\r\n {\r\n \"ruleId\": 981257,\r\n \"description\": \"Detects MySQL comment-/space-obfuscated injections and backtick termination\"\r\n },\r\n {\r\n \"ruleId\": 981248,\r\n \"description\": \"Detects chained SQL injection attempts 1/2\"\r\n },\r\n {\r\n \"ruleId\": 981277,\r\n \"description\": \"Looking for integer overflow attacks, these are taken from skipfish, except 2.2.90738585072007e-308 is the \\\\\\\"magic number\\\\\\\" crash\"\r\n },\r\n {\r\n \"ruleId\": 981250,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 981241,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981252,\r\n \"description\": \"Detects MySQL charset switch and MSSQL DoS attempts\"\r\n },\r\n {\r\n \"ruleId\": 981256,\r\n \"description\": \"Detects MATCH AGAINST, MERGE, EXECUTE IMMEDIATE and HAVING injections\"\r\n },\r\n {\r\n \"ruleId\": 981245,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 2/3\"\r\n },\r\n {\r\n \"ruleId\": 981276,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 981254,\r\n \"description\": \"Detects Postgres pg_sleep injection, waitfor delay attacks and database shutdown attempts\"\r\n },\r\n {\r\n \"ruleId\": 981270,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981240,\r\n \"description\": \"Detects MySQL comments, conditions and ch(a)r injections\"\r\n },\r\n {\r\n \"ruleId\": 981249,\r\n \"description\": \"Detects chained SQL injection attempts 2/2\"\r\n },\r\n {\r\n \"ruleId\": 981253,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 981242,\r\n \"description\": \"Detects classic SQL injection probings 1/2\"\r\n },\r\n {\r\n \"ruleId\": 981246,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 3/3\"\r\n },\r\n {\r\n \"ruleId\": 981251,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n },\r\n {\r\n \"ruleId\": 981247,\r\n \"description\": \"Detects concatenated basic SQL injection and SQLLFI attempts\"\r\n },\r\n {\r\n \"ruleId\": 981243,\r\n \"description\": \"Detects classic SQL injection probings 2/2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_xss_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 973336,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 973337,\r\n \"description\": \"XSS Filter - Category 2: Event Handler Vector\"\r\n },\r\n {\r\n \"ruleId\": 973338,\r\n \"description\": \"XSS Filter - Category 3: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 981136,\r\n \"description\": \"Rule 981136\"\r\n },\r\n {\r\n \"ruleId\": 981018,\r\n \"description\": \"Rule 981018\"\r\n },\r\n {\r\n \"ruleId\": 958016,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958414,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958032,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958026,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958027,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958054,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958418,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958034,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958019,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958013,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958408,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958012,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958423,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958002,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958017,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958007,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958047,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958410,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958415,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958022,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958405,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958419,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958028,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958057,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958031,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958006,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958033,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958038,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958409,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958001,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958005,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958404,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958023,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958010,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958411,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958422,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958036,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958000,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958018,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958406,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958040,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958052,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958037,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958049,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958030,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958041,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958416,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958024,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958059,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958417,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958020,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958045,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958004,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958421,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958009,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958025,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958413,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958051,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958420,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958407,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958056,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958011,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958412,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958008,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958046,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958039,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958003,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 973300,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 973301,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973302,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973303,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973304,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973305,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973306,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973307,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973308,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973309,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973310,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973311,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973312,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973313,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973314,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973331,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973315,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973330,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973327,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973326,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973346,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973345,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973324,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973323,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973322,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973348,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973321,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973320,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973318,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973317,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973347,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973335,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973334,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973333,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973344,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973332,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973329,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973328,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973316,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973325,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973319,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_42_tight_security\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950103,\r\n \"description\": \"Path Traversal Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_45_trojans\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950110,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950921,\r\n \"description\": \"Backdoor access\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_49_inbound_blocking\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 981175,\r\n \"description\": \"Inbound Attack Targeting OSVDB Flagged Resource.\"\r\n },\r\n {\r\n \"ruleId\": 981176,\r\n \"description\": \"Inbound Anomaly Score Exceeded (Total Score: %{TX.ANOMALY_SCORE}, SQLi=%{TX.SQL_INJECTION_SCORE}, XSS=%{TX.XSS_SCORE}): Last Matched Message: %{tx.msg}\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2085,7 +2085,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:21 GMT" + "Sat, 25 Mar 2017 01:20:10 GMT" ], "Pragma": [ "no-cache" @@ -2101,28 +2101,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5a244f95-9b46-4376-ba0b-5496952aca6d" + "a8c414bf-7698-4734-a677-8bcdad5367cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14997" ], "x-ms-correlation-request-id": [ - "f5efdb20-377e-47fe-b68f-7c16aacfcbf9" + "f63adf56-6b2a-42fc-b9be-26d4bf09e049" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184022Z:f5efdb20-377e-47fe-b68f-7c16aacfcbf9" + "WESTUS2:20170325T012011Z:f63adf56-6b2a-42fc-b9be-26d4bf09e049" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2131,20 +2131,20 @@ "471" ], "x-ms-client-request-id": [ - "8fd838dd-c1bb-46d5-abd8-71a9851e8153" + "7c7c8a3a-71b1-4b76-aa30-21a18d859f44" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1506" + "1509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2156,7 +2156,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:22 GMT" + "Sat, 25 Mar 2017 01:20:11 GMT" ], "Pragma": [ "no-cache" @@ -2166,50 +2166,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5e84c760-5a76-4408-ade5-d7f33c89686a" + "54effb8b-4adb-4d50-8c68-7dabb880e297" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5e84c760-5a76-4408-ade5-d7f33c89686a?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/54effb8b-4adb-4d50-8c68-7dabb880e297?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "f952cfce-8302-4fe0-a8bd-599c7a160f41" + "f17110a6-0427-4a8f-b218-08cf8f8a1854" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184023Z:f952cfce-8302-4fe0-a8bd-599c7a160f41" + "WESTUS2:20170325T012012Z:f17110a6-0427-4a8f-b218-08cf8f8a1854" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"name\": \"azsmnet132\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8377\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"name\": \"azsmnet6714\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2043" + "2046" ], "x-ms-client-request-id": [ - "28fb2499-15c5-4d06-a8b3-d1a8a54bc089" + "76ae072c-bb94-4681-907d-0f1cbab67c7e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"14c9c011-3b17-4a8d-a2b6-ec273bea52b1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"14c9c011-3b17-4a8d-a2b6-ec273bea52b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"04fa884c-7350-41e9-af2a-2abbcaeb32cf\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"04fa884c-7350-41e9-af2a-2abbcaeb32cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2221,7 +2221,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:24 GMT" + "Sat, 25 Mar 2017 01:20:13 GMT" ], "Pragma": [ "no-cache" @@ -2240,38 +2240,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f54a9526-0e12-4d82-a0dd-1e07f32276e8" + "c3063729-ff95-4b0b-9434-3fccec53c362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "447c1304-289f-4bc6-ad41-3ddfde83cbf0" + "cca4b630-7c48-410d-85c0-a1cbf81c5795" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184024Z:447c1304-289f-4bc6-ad41-3ddfde83cbf0" + "WESTUS2:20170325T012014Z:cca4b630-7c48-410d-85c0-a1cbf81c5795" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2283,7 +2283,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:23 GMT" + "Sat, 25 Mar 2017 01:20:11 GMT" ], "Pragma": [ "no-cache" @@ -2292,7 +2292,7 @@ "chunked" ], "ETag": [ - "W/\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\"" + "W/\"ddda093d-23b3-4995-bff7-68eb1d997c9b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2302,41 +2302,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5ee6a394-d3d6-4492-9e91-da7692202105" + "f5f614d5-a511-440b-9a78-ba0e81ab5978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14996" ], "x-ms-correlation-request-id": [ - "1d0f8124-16a0-474c-915f-c1dbc41dc944" + "b9aae2e0-3b6f-49b2-8adc-5f698186b3f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184023Z:1d0f8124-16a0-474c-915f-c1dbc41dc944" + "WESTUS2:20170325T012012Z:b9aae2e0-3b6f-49b2-8adc-5f698186b3f6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "641fcc15-e13d-441c-8dd6-437ec6667b1c" + "e125b0ef-22f9-4bea-bf59-3309177cb258" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2348,7 +2348,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:23 GMT" + "Sat, 25 Mar 2017 01:20:12 GMT" ], "Pragma": [ "no-cache" @@ -2357,7 +2357,7 @@ "chunked" ], "ETag": [ - "W/\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\"" + "W/\"ddda093d-23b3-4995-bff7-68eb1d997c9b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2367,35 +2367,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9ae8c8c3-c295-4777-bc4d-72f30c81a277" + "4f0fcd74-0f2e-4630-9f7b-dcba3b99ec02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14995" ], "x-ms-correlation-request-id": [ - "52f5b721-6aaa-4e10-abf5-839160ff3b89" + "2b4889e8-f30a-407b-a277-36cc4bc1af2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184023Z:52f5b721-6aaa-4e10-abf5-839160ff3b89" + "WESTUS2:20170325T012012Z:2b4889e8-f30a-407b-a277-36cc4bc1af2f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"f410d174-66bc-4b1e-a93c-dad782e12f94\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f410d174-66bc-4b1e-a93c-dad782e12f94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2407,7 +2407,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:44:26 GMT" + "Sat, 25 Mar 2017 01:24:17 GMT" ], "Pragma": [ "no-cache" @@ -2416,7 +2416,7 @@ "chunked" ], "ETag": [ - "W/\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\"" + "W/\"f410d174-66bc-4b1e-a93c-dad782e12f94\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2426,28 +2426,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "76979272-8b96-4eaf-999f-ef18514e17d9" + "c4270c6e-70c1-4f8f-a227-68b91269310f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14984" ], "x-ms-correlation-request-id": [ - "bfdcc9bd-016b-4286-81bb-a47b26a26834" + "7f191d5b-3066-4048-ac85-3e40807a8330" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184426Z:bfdcc9bd-016b-4286-81bb-a47b26a26834" + "WESTUS2:20170325T012417Z:7f191d5b-3066-4048-ac85-3e40807a8330" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2456,17 +2456,17 @@ "471" ], "x-ms-client-request-id": [ - "f9113d59-2633-4507-9fa5-41c3b67466d9" + "82477add-506f-49e9-a85e-0699162f03d5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1509" @@ -2481,7 +2481,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:23 GMT" + "Sat, 25 Mar 2017 01:20:12 GMT" ], "Pragma": [ "no-cache" @@ -2491,31 +2491,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "db051329-684d-4e73-a53e-2ce1d604769a" + "73bd8fd0-fbf8-45e7-9019-b3359382cf8b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/db051329-684d-4e73-a53e-2ce1d604769a?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/73bd8fd0-fbf8-45e7-9019-b3359382cf8b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "3a9d61e2-bf36-4afa-9ae3-62ed922c5356" + "b19fe6a3-2d73-40de-95a7-c411babb7fb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184024Z:3a9d61e2-bf36-4afa-9ae3-62ed922c5356" + "WESTUS2:20170325T012013Z:b19fe6a3-2d73-40de-95a7-c411babb7fb5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"name\": \"azsmnet3331\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8377\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"name\": \"azsmnet4640\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2524,17 +2524,17 @@ "2046" ], "x-ms-client-request-id": [ - "0d3643a1-e045-4791-9957-2ff6a0d3270b" + "b2bd82b2-b5d4-4e31-93f9-a59c6ff51bf6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"1e44bbad-bc83-48a6-8508-e4311a79fe5d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"1e44bbad-bc83-48a6-8508-e4311a79fe5d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"d5798e78-14bf-410e-9884-771f710110ee\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"d5798e78-14bf-410e-9884-771f710110ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2546,7 +2546,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:44:26 GMT" + "Sat, 25 Mar 2017 01:24:17 GMT" ], "Pragma": [ "no-cache" @@ -2565,38 +2565,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4033969c-40d6-4b34-9f88-6305f195888e" + "e0f15234-720e-4277-8660-90d1d3a2fd34" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-correlation-request-id": [ - "8453b598-5b98-4e37-9b10-9f545cef0634" + "53d33425-9d07-4893-b013-bf95b23163bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184426Z:8453b598-5b98-4e37-9b10-9f545cef0634" + "WESTUS2:20170325T012418Z:53d33425-9d07-4893-b013-bf95b23163bd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2608,7 +2608,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:23 GMT" + "Sat, 25 Mar 2017 01:20:12 GMT" ], "Pragma": [ "no-cache" @@ -2617,7 +2617,7 @@ "chunked" ], "ETag": [ - "W/\"2802e74d-0306-417c-bcde-b4aafba7b66d\"" + "W/\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2627,41 +2627,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6663d153-4164-48b8-ac97-fb90c2ddd19f" + "76f464b4-da14-4796-b820-f132ad57d816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14994" ], "x-ms-correlation-request-id": [ - "5190aa11-392f-473b-b425-9925ff8991ce" + "0f72ed19-254b-49bd-b738-9bd8ad8966af" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184024Z:5190aa11-392f-473b-b425-9925ff8991ce" + "WESTUS2:20170325T012013Z:0f72ed19-254b-49bd-b738-9bd8ad8966af" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a91b69f-72c4-4c12-a52e-6cc9cb15a1aa" + "c339b1a3-be16-4a6d-8ae1-db69d102dbad" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2673,7 +2673,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:24 GMT" + "Sat, 25 Mar 2017 01:20:13 GMT" ], "Pragma": [ "no-cache" @@ -2682,7 +2682,7 @@ "chunked" ], "ETag": [ - "W/\"2802e74d-0306-417c-bcde-b4aafba7b66d\"" + "W/\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2692,35 +2692,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2ca70137-5930-4f92-be2d-2fa788d9f063" + "3464ca9b-5306-4e14-8e0b-a3dbbf04f018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14993" ], "x-ms-correlation-request-id": [ - "72aa8fab-3c7a-4072-8247-2b0cb192fb2b" + "32a79c72-023d-4a2b-98fd-59bc439ba4de" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184024Z:72aa8fab-3c7a-4072-8247-2b0cb192fb2b" + "WESTUS2:20170325T012013Z:32a79c72-023d-4a2b-98fd-59bc439ba4de" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"7593fa9b-d460-450e-85ef-f0275e006786\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7593fa9b-d460-450e-85ef-f0275e006786\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2732,7 +2732,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:28 GMT" + "Sat, 25 Mar 2017 01:27:50 GMT" ], "Pragma": [ "no-cache" @@ -2741,7 +2741,7 @@ "chunked" ], "ETag": [ - "W/\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\"" + "W/\"7593fa9b-d460-450e-85ef-f0275e006786\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2751,32 +2751,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26833811-b532-49e1-ae1a-037cf48e0b1c" + "b9d0f411-7dc3-49d3-9e8b-931abdfee9d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14976" ], "x-ms-correlation-request-id": [ - "1134b132-c3df-4dfa-a48f-314395f1424d" + "356c926d-2904-40eb-84f4-e00800007f28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184828Z:1134b132-c3df-4dfa-a48f-314395f1424d" + "WESTUS2:20170325T012750Z:356c926d-2904-40eb-84f4-e00800007f28" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2791,7 +2791,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:53 GMT" + "Sat, 25 Mar 2017 01:20:44 GMT" ], "Pragma": [ "no-cache" @@ -2810,32 +2810,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4f799a62-b21f-4b01-91ef-aeb40b02ed8f" + "0155a13f-bc20-4fb1-8e08-024624827c11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14992" ], "x-ms-correlation-request-id": [ - "7428a521-897f-4043-af44-4e7d279047f5" + "ad33c425-7c64-4550-8ca7-463fbec7c25d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184054Z:7428a521-897f-4043-af44-4e7d279047f5" + "WESTUS2:20170325T012044Z:ad33c425-7c64-4550-8ca7-463fbec7c25d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2850,7 +2850,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:41:23 GMT" + "Sat, 25 Mar 2017 01:21:15 GMT" ], "Pragma": [ "no-cache" @@ -2869,32 +2869,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36990cc4-cae9-47d0-a015-7693329d1596" + "9a463441-c786-4f5e-b749-e4352da393d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14991" ], "x-ms-correlation-request-id": [ - "b05a1fed-27e4-48fb-98d0-c5ea1027bf2d" + "3b39d2b5-98d5-4c13-b0be-a1aeccecbc14" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184124Z:b05a1fed-27e4-48fb-98d0-c5ea1027bf2d" + "WESTUS2:20170325T012115Z:3b39d2b5-98d5-4c13-b0be-a1aeccecbc14" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2909,7 +2909,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:41:55 GMT" + "Sat, 25 Mar 2017 01:21:45 GMT" ], "Pragma": [ "no-cache" @@ -2928,32 +2928,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2df53e0e-a8c9-4e19-8279-86e4800e6b76" + "703fecda-76e1-4bb3-a48a-ccfbc3a76cd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14990" ], "x-ms-correlation-request-id": [ - "82c36fa7-e432-416e-bde4-41a57248bf86" + "228682b4-f216-4729-a40a-e30d7ddeb7fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184155Z:82c36fa7-e432-416e-bde4-41a57248bf86" + "WESTUS2:20170325T012146Z:228682b4-f216-4729-a40a-e30d7ddeb7fb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2968,7 +2968,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:42:25 GMT" + "Sat, 25 Mar 2017 01:22:16 GMT" ], "Pragma": [ "no-cache" @@ -2987,32 +2987,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8111eccb-7304-49ae-8268-c4d525888f6d" + "fe04f3d4-068f-4f4e-9d0b-d0a3f3ab309a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14989" ], "x-ms-correlation-request-id": [ - "1e940111-781b-4e88-9a6c-2435d6188ff6" + "274d80b9-71d9-4681-ac8c-ed59062548a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184225Z:1e940111-781b-4e88-9a6c-2435d6188ff6" + "WESTUS2:20170325T012216Z:274d80b9-71d9-4681-ac8c-ed59062548a8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3027,7 +3027,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:42:54 GMT" + "Sat, 25 Mar 2017 01:22:46 GMT" ], "Pragma": [ "no-cache" @@ -3046,32 +3046,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dbbb5478-96f5-43c5-843f-c39c5906c80c" + "8583ede7-edb6-4894-b148-cf8598e87a3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14988" ], "x-ms-correlation-request-id": [ - "e9cfb5a3-ac55-4174-831e-663aab74fe2d" + "63d570c8-9967-4340-8c90-e5248da39205" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184255Z:e9cfb5a3-ac55-4174-831e-663aab74fe2d" + "WESTUS2:20170325T012246Z:63d570c8-9967-4340-8c90-e5248da39205" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3086,7 +3086,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:43:25 GMT" + "Sat, 25 Mar 2017 01:23:16 GMT" ], "Pragma": [ "no-cache" @@ -3105,32 +3105,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "429c5f44-5c8f-4d30-b062-b92d5f4dce2a" + "eda07fa4-5a60-4e3e-8203-2d01bb94c1a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14987" ], "x-ms-correlation-request-id": [ - "56805eb7-1601-4b24-a833-9f8154d1b574" + "00582577-8dae-4b6d-8396-9fe0a0963205" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184325Z:56805eb7-1601-4b24-a833-9f8154d1b574" + "WESTUS2:20170325T012316Z:00582577-8dae-4b6d-8396-9fe0a0963205" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3145,7 +3145,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:43:55 GMT" + "Sat, 25 Mar 2017 01:23:46 GMT" ], "Pragma": [ "no-cache" @@ -3164,32 +3164,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "62194e52-db8a-44e3-a99d-b8cfc4fe7423" + "c1d75a38-3370-45c0-89e0-e0f441d8e3dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14986" ], "x-ms-correlation-request-id": [ - "15dea197-de81-4e48-a884-8abe4e7139b1" + "0a10de8a-c8c9-43da-82cd-06f2985ad5b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184355Z:15dea197-de81-4e48-a884-8abe4e7139b1" + "WESTUS2:20170325T012347Z:0a10de8a-c8c9-43da-82cd-06f2985ad5b5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -3204,7 +3204,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:44:26 GMT" + "Sat, 25 Mar 2017 01:24:17 GMT" ], "Pragma": [ "no-cache" @@ -3220,32 +3220,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "053fa53f-c378-49f1-8be8-0e9708139700" + "a4724bd8-5233-4c67-ba68-5c7b6391452e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14985" ], "x-ms-correlation-request-id": [ - "48d3087d-4945-47ad-a046-342d99fdb2c9" + "6fc4c61c-7636-4130-8700-6ad0540f82d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184426Z:48d3087d-4945-47ad-a046-342d99fdb2c9" + "WESTUS2:20170325T012417Z:6fc4c61c-7636-4130-8700-6ad0540f82d1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3260,7 +3260,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:44:56 GMT" + "Sat, 25 Mar 2017 01:24:47 GMT" ], "Pragma": [ "no-cache" @@ -3279,32 +3279,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7844d083-e2c6-4183-805c-faf01f61c11a" + "666c3716-ffc7-407d-82b6-08bff9c51c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14983" ], "x-ms-correlation-request-id": [ - "005f2e1b-76cf-4393-8724-075fb42ca665" + "ffe2d417-8ad1-4536-af6a-74878ba9618c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184456Z:005f2e1b-76cf-4393-8724-075fb42ca665" + "WESTUS2:20170325T012448Z:ffe2d417-8ad1-4536-af6a-74878ba9618c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3319,7 +3319,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:45:26 GMT" + "Sat, 25 Mar 2017 01:25:17 GMT" ], "Pragma": [ "no-cache" @@ -3338,32 +3338,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9146f75c-b526-4576-a15c-d049e72d7d48" + "289b76b4-e389-4e8c-ba63-09090cacf9e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14982" ], "x-ms-correlation-request-id": [ - "3457d411-f6f5-4874-9793-0cdf90f5dd1c" + "94feab79-887f-4fd0-a961-81aa74b0f703" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184527Z:3457d411-f6f5-4874-9793-0cdf90f5dd1c" + "WESTUS2:20170325T012518Z:94feab79-887f-4fd0-a961-81aa74b0f703" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3378,7 +3378,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:45:56 GMT" + "Sat, 25 Mar 2017 01:25:48 GMT" ], "Pragma": [ "no-cache" @@ -3397,32 +3397,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fef8b978-ef46-4e74-992f-320fd60b26a8" + "e55e3f5e-5478-4e39-9da3-42b63b26631c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14981" ], "x-ms-correlation-request-id": [ - "6794837c-242a-4ff9-b241-6a5671e1c322" + "eff8f378-8928-43ef-9a69-3eb877a6e194" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184557Z:6794837c-242a-4ff9-b241-6a5671e1c322" + "WESTUS2:20170325T012549Z:eff8f378-8928-43ef-9a69-3eb877a6e194" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3437,7 +3437,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:46:27 GMT" + "Sat, 25 Mar 2017 01:26:18 GMT" ], "Pragma": [ "no-cache" @@ -3456,32 +3456,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "936dbbeb-19c4-4886-9e31-78f60c64871a" + "0d022776-1f3e-4426-bccc-b182fa13a9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14980" ], "x-ms-correlation-request-id": [ - "7118f1ae-6390-417c-93b6-3e336f758388" + "dfe339d0-a391-456a-84a2-158f22bdfdf9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184627Z:7118f1ae-6390-417c-93b6-3e336f758388" + "WESTUS2:20170325T012619Z:dfe339d0-a391-456a-84a2-158f22bdfdf9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3496,7 +3496,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:46:57 GMT" + "Sat, 25 Mar 2017 01:26:48 GMT" ], "Pragma": [ "no-cache" @@ -3515,32 +3515,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "760506c7-19d1-49f1-a62b-14ef42897a80" + "5b74eaf8-0408-4a1d-9d0f-71d71a807fe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14979" ], "x-ms-correlation-request-id": [ - "5f69a5b3-b88d-4781-829a-f9c1db0bcca2" + "678b2605-fb1e-491d-8939-4fedee87597d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184657Z:5f69a5b3-b88d-4781-829a-f9c1db0bcca2" + "WESTUS2:20170325T012649Z:678b2605-fb1e-491d-8939-4fedee87597d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3555,7 +3555,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:47:27 GMT" + "Sat, 25 Mar 2017 01:27:18 GMT" ], "Pragma": [ "no-cache" @@ -3574,91 +3574,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e45bf5f5-1b12-4eec-a151-bec13340765c" + "e534d603-6063-4ee5-8fb4-d5a475e2ff0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14978" ], "x-ms-correlation-request-id": [ - "5107fba9-96ee-433f-b6b8-591bc591a6bc" + "d4a208ae-5674-430e-a9e1-2d3a497dd3ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184727Z:5107fba9-96ee-433f-b6b8-591bc591a6bc" + "WESTUS2:20170325T012719Z:d4a208ae-5674-430e-a9e1-2d3a497dd3ba" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 20 Mar 2017 18:47:57 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "b8629352-0df2-4efe-8723-d7a0ef0c4248" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "e4a197e7-848a-480f-8d6b-98a96228d122" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170320T184758Z:e4a197e7-848a-480f-8d6b-98a96228d122" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -3673,7 +3614,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:28 GMT" + "Sat, 25 Mar 2017 01:27:49 GMT" ], "Pragma": [ "no-cache" @@ -3689,38 +3630,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fe726313-485e-409f-91bd-d3149bdf228f" + "932b0ff7-537e-49cd-82cd-30cb27527bb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14977" ], "x-ms-correlation-request-id": [ - "4e6d2fda-f4b3-4032-9728-59d503e18b25" + "ee7c1fd4-c3e6-4861-bf9a-eb8286821497" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184828Z:4e6d2fda-f4b3-4032-9728-59d503e18b25" + "WESTUS2:20170325T012750Z:ee7c1fd4-c3e6-4861-bf9a-eb8286821497" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/start?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e51950e-8d15-4585-98c2-b36633fd5511" + "24f3102e-3241-4040-bfc4-5c19bb2978d0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "", @@ -3735,54 +3676,54 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:29 GMT" + "Sat, 25 Mar 2017 01:27:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/1f9896d4-b69c-4277-80f0-8bd7bef87769?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/d7ab9a60-fe49-44f4-ac3c-c89fe499a41d?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1f9896d4-b69c-4277-80f0-8bd7bef87769" + "d7ab9a60-fe49-44f4-ac3c-c89fe499a41d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/1f9896d4-b69c-4277-80f0-8bd7bef87769?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/d7ab9a60-fe49-44f4-ac3c-c89fe499a41d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1194" ], "x-ms-correlation-request-id": [ - "52bedd86-4d74-4584-b855-e9c28e34b11f" + "4d47b55f-4ada-4407-b102-23ce0b85e44d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184829Z:52bedd86-4d74-4584-b855-e9c28e34b11f" + "WESTUS2:20170325T012750Z:4d47b55f-4ada-4407-b102-23ce0b85e44d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/stop?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88f48fe8-f135-4e7d-8015-192594509110" + "7bd2c68e-0e0e-4a3b-a3ca-7296a503c7f8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "", @@ -3797,13 +3738,13 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:29 GMT" + "Sat, 25 Mar 2017 01:27:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -3813,35 +3754,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "09e10dcb-3fb0-4036-97c9-9420cc720bb7" + "e99de0c4-9a50-42d0-a8dd-28d1237b2331" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1193" ], "x-ms-correlation-request-id": [ - "7a5e893d-ea2b-434e-8af2-452d0e7267a7" + "67550d55-a68e-464e-812d-31d48a5bf4a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184829Z:7a5e893d-ea2b-434e-8af2-452d0e7267a7" + "WESTUS2:20170325T012751Z:67550d55-a68e-464e-812d-31d48a5bf4a6" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lOTlkZTBjNC05YTUwLTQyZDAtYThkZC0yOGQxMjM3YjIzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3856,7 +3797,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:59 GMT" + "Sat, 25 Mar 2017 01:28:21 GMT" ], "Pragma": [ "no-cache" @@ -3875,32 +3816,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d19212d5-73d1-496e-8b18-a9dbdd78d356" + "225e4ee7-7750-4aca-972e-65a9a9d70567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14974" ], "x-ms-correlation-request-id": [ - "412b2840-6af6-4bfd-9f2b-0868a4ac157e" + "39896f62-0925-4c9c-8288-4e846131eb35" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184859Z:412b2840-6af6-4bfd-9f2b-0868a4ac157e" + "WESTUS2:20170325T012821Z:39896f62-0925-4c9c-8288-4e846131eb35" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lOTlkZTBjNC05YTUwLTQyZDAtYThkZC0yOGQxMjM3YjIzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3915,7 +3856,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:49:29 GMT" + "Sat, 25 Mar 2017 01:28:50 GMT" ], "Pragma": [ "no-cache" @@ -3934,32 +3875,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "238f98cd-59f1-4bc7-8d01-6087dca04a86" + "c7b90a48-bb49-4ee1-98ac-cb36af71d167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14973" ], "x-ms-correlation-request-id": [ - "39172f04-fe7d-4ce1-a601-22dd3627b450" + "85629156-174f-4539-ab1e-bc24a5ff0f4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184930Z:39172f04-fe7d-4ce1-a601-22dd3627b450" + "WESTUS2:20170325T012851Z:85629156-174f-4539-ab1e-bc24a5ff0f4a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lOTlkZTBjNC05YTUwLTQyZDAtYThkZC0yOGQxMjM3YjIzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3974,7 +3915,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:49:59 GMT" + "Sat, 25 Mar 2017 01:29:21 GMT" ], "Pragma": [ "no-cache" @@ -3993,32 +3934,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d9d57609-a16e-412d-a936-2a9982f355e7" + "92ec6f5c-43a9-4b4d-9447-8fa507f07792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14972" ], "x-ms-correlation-request-id": [ - "6086ca03-4dc8-46c6-8f10-35c6d39fbbc5" + "86636110-e974-44ed-98cd-051376386663" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185000Z:6086ca03-4dc8-46c6-8f10-35c6d39fbbc5" + "WESTUS2:20170325T012922Z:86636110-e974-44ed-98cd-051376386663" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lOTlkZTBjNC05YTUwLTQyZDAtYThkZC0yOGQxMjM3YjIzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4033,7 +3974,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:50:29 GMT" + "Sat, 25 Mar 2017 01:29:51 GMT" ], "Pragma": [ "no-cache" @@ -4049,38 +3990,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "754fd0ac-d4af-45d7-a24a-d03bb6d012a1" + "cc2f126a-ac0e-49fc-b97b-7ac2b4e1624b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14971" ], "x-ms-correlation-request-id": [ - "60cb780d-672f-46b7-9b3d-e246ddded87a" + "1ea8b062-c115-42a9-ae87-e94d9c36939c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185030Z:60cb780d-672f-46b7-9b3d-e246ddded87a" + "WESTUS2:20170325T012952Z:1ea8b062-c115-42a9-ae87-e94d9c36939c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17ac7490-10d7-4a76-af5f-32d16397ec5f" + "92481912-809f-40ef-8ce8-989c6c2b6f6f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "", @@ -4095,13 +4036,13 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:50:30 GMT" + "Sat, 25 Mar 2017 01:29:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4111,35 +4052,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "44b9f1fb-5e69-4836-9cde-431b82315b03" + "c880da57-f0af-44f5-bbc1-a52b6030ad67" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1192" ], "x-ms-correlation-request-id": [ - "eb0ee3bf-4afc-49cc-a0a4-1b3e43e30bc5" + "8cd05812-8a1c-4181-bf1e-85a3295ebf17" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185031Z:eb0ee3bf-4afc-49cc-a0a4-1b3e43e30bc5" + "WESTUS2:20170325T012953Z:8cd05812-8a1c-4181-bf1e-85a3295ebf17" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80NGI5ZjFmYi01ZTY5LTQ4MzYtOWNkZS00MzFiODIzMTViMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jODgwZGE1Ny1mMGFmLTQ0ZjUtYmJjMS1hNTJiNjAzMGFkNjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Mar 2017 01:30:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "42735052-c76a-4f79-9d5a-8920f410272b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "cefbf2fa-0b3b-4def-8325-594c8bcfae2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170325T013023Z:cefbf2fa-0b3b-4def-8325-594c8bcfae2a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jODgwZGE1Ny1mMGFmLTQ0ZjUtYmJjMS1hNTJiNjAzMGFkNjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4154,7 +4154,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:51:01 GMT" + "Sat, 25 Mar 2017 01:30:53 GMT" ], "Pragma": [ "no-cache" @@ -4173,32 +4173,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a7abeea8-161e-456d-87cd-52ef0ebaa524" + "44e58e9f-a6eb-4ed6-b724-fdac408cc1fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14969" ], "x-ms-correlation-request-id": [ - "8bcaf0ae-7379-4a14-8f83-a65cdd89a482" + "1e5258dc-518d-44c5-9491-5db72262ce5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185101Z:8bcaf0ae-7379-4a14-8f83-a65cdd89a482" + "WESTUS2:20170325T013053Z:1e5258dc-518d-44c5-9491-5db72262ce5f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80NGI5ZjFmYi01ZTY5LTQ4MzYtOWNkZS00MzFiODIzMTViMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jODgwZGE1Ny1mMGFmLTQ0ZjUtYmJjMS1hNTJiNjAzMGFkNjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4213,7 +4213,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:51:31 GMT" + "Sat, 25 Mar 2017 01:31:23 GMT" ], "Pragma": [ "no-cache" @@ -4229,19 +4229,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "034ed006-4c28-45db-84ad-f2d4c07feb2d" + "45979373-9eb4-48d7-96f9-ef2bad95d55e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14968" ], "x-ms-correlation-request-id": [ - "c7f64b00-c6fa-49c9-8fe5-9ac5d3ed7bc3" + "608ad902-cd12-4d30-8681-f98dd6a52e47" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185131Z:c7f64b00-c6fa-49c9-8fe5-9ac5d3ed7bc3" + "WESTUS2:20170325T013123Z:608ad902-cd12-4d30-8681-f98dd6a52e47" ] }, "StatusCode": 200 @@ -4249,30 +4249,30 @@ ], "Names": { "ApplicationGatewayApiTest": [ - "csmrg7667", - "azsmnet5723", - "azsmnet2045", - "azsmnet3830", - "azsmnet9819", - "azsmnet132", - "azsmnet3331" + "csmrg7781", + "azsmnet7758", + "azsmnet7453", + "azsmnet2882", + "azsmnet3564", + "azsmnet6714", + "azsmnet4640" ], "CreateApplicationGateway": [ - "azsmnet790", - "azsmnet6486", - "azsmnet5694", - "azsmnet57", - "azsmnet1047", - "azsmnet2873", - "azsmnet4293", - "azsmnet8504", - "azsmnet129", - "azsmnet3623", - "azsmnet2535", - "azsmnet1579", - "azsmnet4411", - "azsmnet4106", - "azsmnet2995" + "azsmnet6709", + "azsmnet6558", + "azsmnet5555", + "azsmnet3427", + "azsmnet949", + "azsmnet8377", + "azsmnet1467", + "azsmnet8901", + "azsmnet6603", + "azsmnet3937", + "azsmnet1241", + "azsmnet8027", + "azsmnet4263", + "azsmnet8052", + "azsmnet6145" ] }, "Variables": { From 2716b60e592d7eaef00cc1d388aa2acf732208c7 Mon Sep 17 00:00:00 2001 From: begoldsm Date: Tue, 28 Mar 2017 16:14:27 -0700 Subject: [PATCH 136/137] Swagger and test update for ADL (#2995) * Swagger and test update for ADL This also uses the latest nightly AutoRest generator, which results in a touch of every file. * missed recording one test. * Update version of the ADL packages before PR merge --- .../ScenarioTests/AccountOperationTests.cs | 4 +- .../ScenarioTests/CatalogOperationTests.cs | 41 +- .../ScenarioTests/JobOperationTests.cs | 2 - .../CreateGetUpdateDeleteTest.json | 1496 ++++------- .../FirewallTest.json | 598 +++-- .../CredentialCRUDTest.json | 854 +++---- .../GetCatalogItemsTest.json | 937 +++---- .../SecretAndCredentialCRUDTest.json | 2101 ++-------------- .../SecretCRUDTest.json | 2237 +++++++++++++++++ .../SubmitGetListCancelTest.json | 844 +++---- .../DataLakeAnalyticsManagementHelper.cs | 2 +- .../DataLakeAnalytics.Tests/project.json | 4 +- .../DataLakeAnalyticsCustomizationHelper.cs | 2 +- .../Generated/AccountOperations.cs | 134 +- .../Generated/AccountOperationsExtensions.cs | 24 +- .../Generated/CatalogOperations.cs | 647 +++-- .../Generated/CatalogOperationsExtensions.cs | 29 +- ...ataLakeAnalyticsAccountManagementClient.cs | 48 +- ...ataLakeAnalyticsCatalogManagementClient.cs | 35 +- .../DataLakeAnalyticsJobManagementClient.cs | 39 +- .../DataLakeStoreAccountsOperations.cs | 102 +- ...taLakeStoreAccountsOperationsExtensions.cs | 26 +- .../Generated/FirewallRulesOperations.cs | 104 +- .../FirewallRulesOperationsExtensions.cs | 20 +- .../Generated/IAccountOperations.cs | 82 +- .../Generated/ICatalogOperations.cs | 15 +- ...ataLakeAnalyticsAccountManagementClient.cs | 22 +- ...ataLakeAnalyticsCatalogManagementClient.cs | 17 +- .../IDataLakeAnalyticsJobManagementClient.cs | 21 +- .../IDataLakeStoreAccountsOperations.cs | 46 +- .../Generated/IFirewallRulesOperations.cs | 52 +- .../Generated/IJobOperations.cs | 65 +- .../Generated/IStorageAccountsOperations.cs | 80 +- .../Generated/JobOperations.cs | 129 +- .../Generated/JobOperationsExtensions.cs | 21 +- .../Models/AddDataLakeStoreParameters.cs | 34 +- .../Models/AddStorageAccountParameters.cs | 34 +- .../Generated/Models/CatalogItem.cs | 22 +- .../Generated/Models/CatalogItemList.cs | 22 +- .../Generated/Models/CompileMode.cs | 18 +- .../Models/DataLakeAnalyticsAccount.cs | 50 +- .../Models/DataLakeAnalyticsAccountState.cs | 19 +- .../Models/DataLakeAnalyticsAccountStatus.cs | 19 +- ...ataLakeAnalyticsAccountUpdateParameters.cs | 34 +- ...lyticsCatalogCredentialCreateParameters.cs | 24 +- ...lyticsCatalogCredentialDeleteParameters.cs | 22 +- ...lyticsCatalogCredentialUpdateParameters.cs | 22 +- ...csCatalogSecretCreateOrUpdateParameters.cs | 24 +- .../Models/DataLakeStoreAccountInfo.cs | 34 +- .../Generated/Models/DdlName.cs | 22 +- .../Generated/Models/Diagnostics.cs | 39 +- .../Generated/Models/EntityId.cs | 22 +- .../Generated/Models/ExternalTable.cs | 22 +- .../Generated/Models/FileType.cs | 13 +- .../Models/FirewallAllowAzureIpsState.cs | 19 +- .../Generated/Models/FirewallRule.cs | 34 +- .../Generated/Models/FirewallState.cs | 19 +- .../Generated/Models/HiveJobProperties.cs | 35 +- .../Generated/Models/JobDataPath.cs | 33 +- .../Generated/Models/JobErrorDetails.cs | 55 +- .../Generated/Models/JobInformation.cs | 49 +- .../Generated/Models/JobInnerError.cs | 49 +- .../Generated/Models/JobProperties.cs | 29 +- .../Generated/Models/JobResource.cs | 27 +- .../Generated/Models/JobResourceType.cs | 18 +- .../Generated/Models/JobResult.cs | 18 +- .../Generated/Models/JobState.cs | 18 +- .../Generated/Models/JobStateAuditRecord.cs | 35 +- .../Generated/Models/JobStatistics.cs | 33 +- .../Models/JobStatisticsVertexStage.cs | 67 +- .../Generated/Models/JobType.cs | 18 +- .../Generated/Models/OptionalSubResource.cs | 32 +- .../Generated/Models/Page.cs | 15 +- .../Generated/Models/Resource.cs | 38 +- .../Generated/Models/SasTokenInfo.cs | 30 +- .../Generated/Models/SeverityTypes.cs | 18 +- .../Generated/Models/StorageAccountInfo.cs | 34 +- .../Generated/Models/StorageContainer.cs | 42 +- .../Generated/Models/SubResource.cs | 34 +- .../Generated/Models/TierType.cs | 19 +- .../Generated/Models/TypeFieldInfo.cs | 22 +- .../Generated/Models/USqlAssembly.cs | 22 +- .../Generated/Models/USqlAssemblyClr.cs | 22 +- .../Models/USqlAssemblyDependencyInfo.cs | 22 +- .../Generated/Models/USqlAssemblyFileInfo.cs | 22 +- .../Generated/Models/USqlCredential.cs | 22 +- .../Generated/Models/USqlDatabase.cs | 22 +- .../Generated/Models/USqlDirectedColumn.cs | 22 +- .../Generated/Models/USqlDistributionInfo.cs | 22 +- .../Models/USqlExternalDataSource.cs | 22 +- .../Generated/Models/USqlIndex.cs | 22 +- .../Generated/Models/USqlJobProperties.cs | 43 +- .../Generated/Models/USqlProcedure.cs | 22 +- .../Generated/Models/USqlSchema.cs | 22 +- .../Generated/Models/USqlSecret.cs | 22 +- .../Generated/Models/USqlTable.cs | 22 +- .../Generated/Models/USqlTableColumn.cs | 22 +- .../Generated/Models/USqlTablePartition.cs | 22 +- .../Generated/Models/USqlTableStatistics.cs | 22 +- .../Generated/Models/USqlTableType.cs | 24 +- .../Models/USqlTableValuedFunction.cs | 22 +- .../Generated/Models/USqlType.cs | 22 +- .../Generated/Models/USqlView.cs | 22 +- .../Models/UpdateFirewallRuleParameters.cs | 34 +- .../Models/UpdateStorageAccountParameters.cs | 34 +- .../Generated/StorageAccountsOperations.cs | 186 +- .../StorageAccountsOperationsExtensions.cs | 28 +- .../Properties/AssemblyInfo.cs | 2 +- .../generate.cmd | 14 +- .../project.json | 2 +- .../ScenarioTests/AccountOperationTests.cs | 4 +- .../ScenarioTests/FileSystemOperationTests.cs | 84 +- .../CreateGetUpdateDeleteTest.json | 532 ++-- .../FirewallAndTrustedProviderTest.json | 548 ++-- ...aLakeStoreDownloadUploadFileAndFolder.json | 882 +++---- .../DataLakeStoreFileSystemAppendToFile.json | 298 ++- ...reFileSystemAppendToFileWithBadOffset.json | 295 ++- ...StoreFileSystemAppendToFileWithOffset.json | 338 ++- ...taLakeStoreFileSystemConcatenateFiles.json | 391 ++- ...eFileSystemConcurrentAppendCreateFile.json | 388 +-- ...StoreFileSystemConcurrentAppendToFile.json | 380 +-- .../DataLakeStoreFileSystemDeleteFile.json | 292 ++- .../DataLakeStoreFileSystemDeleteFolder.json | 371 ++- ...ataLakeStoreFileSystemEmptyFileCreate.json | 280 +-- ...aLakeStoreFileSystemFileAlreadyExists.json | 293 ++- ...StoreFileSystemFileCreateWithContents.json | 321 ++- .../DataLakeStoreFileSystemFolderCreate.json | 266 +- .../DataLakeStoreFileSystemGetAcl.json | 311 +-- .../DataLakeStoreFileSystemGetAndSetAcl.json | 324 ++- ...stemGetContentSummaryForFileAndFolder.json | 312 ++- ...LakeStoreFileSystemGetNonExistentFile.json | 251 +- ...LakeStoreFileSystemListFolderContents.json | 321 ++- ...aLakeStoreFileSystemMoveFileAndFolder.json | 412 ++- ...aLakeStoreFileSystemMsConcatDeleteDir.json | 406 ++- ...LakeStoreFileSystemMsConcatenateFiles.json | 393 ++- ...oreFileSystemNegativeConcurrentAppend.json | 317 ++- ...DataLakeStoreFileSystemNegativeExpiry.json | 357 ++- .../DataLakeStoreFileSystemSetAcl.json | 291 ++- ...LakeStoreFileSystemSetAndRemoveExpiry.json | 419 ++- ...aLakeStoreFileSystemSetDeleteAclEntry.json | 329 ++- ...aLakeStoreFileSystemSetFileProperties.json | 298 ++- .../DataLakeStoreFileSystemTestFile.json | 283 +-- ...StoreFileSystemValidateDefaultTimeout.json | 236 +- .../DataLakeStore.Tests/project.json | 4 +- .../DataLakeStoreCustomizationHelper.cs | 2 +- .../DataTransfer/Common/StringExtensions.cs | 2 +- .../Generated/AccountOperations.cs | 155 +- .../Generated/AccountOperationsExtensions.cs | 25 +- .../DataLakeStoreAccountManagementClient.cs | 47 +- ...DataLakeStoreFileSystemManagementClient.cs | 35 +- .../Generated/FileSystemOperations.cs | 382 ++- .../FileSystemOperationsExtensions.cs | 209 +- .../Generated/FirewallRulesOperations.cs | 103 +- .../FirewallRulesOperationsExtensions.cs | 19 +- .../Generated/IAccountOperations.cs | 85 +- .../IDataLakeStoreAccountManagementClient.cs | 21 +- ...DataLakeStoreFileSystemManagementClient.cs | 17 +- .../Generated/IFileSystemOperations.cs | 87 +- .../Generated/IFirewallRulesOperations.cs | 51 +- .../ITrustedIdProvidersOperations.cs | 51 +- .../Generated/Models/AclStatus.cs | 24 +- .../Generated/Models/AclStatusResult.cs | 22 +- .../Models/AdlsAccessControlException.cs | 22 +- .../Models/AdlsBadOffsetException.cs | 22 +- .../Generated/Models/AdlsError.cs | 24 +- .../Generated/Models/AdlsErrorException.cs | 24 +- .../Models/AdlsFileAlreadyExistsException.cs | 22 +- .../Models/AdlsFileNotFoundException.cs | 22 +- .../Generated/Models/AdlsIOException.cs | 22 +- .../Models/AdlsIllegalArgumentException.cs | 22 +- .../Generated/Models/AdlsRemoteException.cs | 26 +- .../Generated/Models/AdlsRuntimeException.cs | 22 +- .../Generated/Models/AdlsSecurityException.cs | 22 +- .../Models/AdlsThrottledException.cs | 22 +- .../AdlsUnsupportedOperationException.cs | 22 +- .../Generated/Models/AppendModeType.cs | 13 +- .../Generated/Models/ContentSummary.cs | 30 +- .../Generated/Models/ContentSummaryResult.cs | 24 +- .../Generated/Models/DataLakeStoreAccount.cs | 43 +- .../Models/DataLakeStoreAccountState.cs | 18 +- .../Models/DataLakeStoreAccountStatus.cs | 18 +- .../DataLakeStoreAccountUpdateParameters.cs | 33 +- .../Generated/Models/EncryptionConfig.cs | 27 +- .../Generated/Models/EncryptionConfigType.cs | 18 +- .../Generated/Models/EncryptionIdentity.cs | 31 +- .../Models/EncryptionProvisioningState.cs | 18 +- .../Generated/Models/EncryptionState.cs | 18 +- .../Generated/Models/ErrorDetails.cs | 33 +- .../Generated/Models/ExpiryOptionType.cs | 13 +- .../Generated/Models/FileOperationResult.cs | 24 +- .../Generated/Models/FileStatusProperties.cs | 57 +- .../Generated/Models/FileStatusResult.cs | 24 +- .../Generated/Models/FileStatuses.cs | 24 +- .../Generated/Models/FileStatusesResult.cs | 24 +- .../Generated/Models/FileType.cs | 13 +- .../Models/FirewallAllowAzureIpsState.cs | 18 +- .../Generated/Models/FirewallRule.cs | 33 +- .../Generated/Models/FirewallState.cs | 18 +- .../Generated/Models/KeyVaultMetaInfo.cs | 29 +- .../Generated/Models/Page.cs | 20 +- .../Generated/Models/Resource.cs | 37 +- .../Generated/Models/SubResource.cs | 31 +- .../Generated/Models/SyncFlag.cs | 13 +- .../Generated/Models/TierType.cs | 18 +- .../Generated/Models/TrustedIdProvider.cs | 33 +- .../Models/TrustedIdProviderState.cs | 18 +- .../Models/UpdateFirewallRuleParameters.cs | 33 +- .../UpdateTrustedIdProviderParameters.cs | 33 +- .../Generated/TrustedIdProvidersOperations.cs | 103 +- .../TrustedIdProvidersOperationsExtensions.cs | 19 +- .../Properties/AssemblyInfo.cs | 2 +- .../generate.cmd | 10 +- .../project.json | 2 +- 213 files changed, 13599 insertions(+), 13255 deletions(-) create mode 100644 src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs index e8b8196d4a2f..698b548d4596 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs @@ -294,7 +294,9 @@ public void FirewallTest() Assert.Equal(firewallStart, responseGet.FirewallRules[0].StartIpAddress); Assert.Equal(firewallEnd, responseGet.FirewallRules[0].EndIpAddress); Assert.Equal(firewallRuleName1, responseGet.FirewallRules[0].Name); - Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps); + + // TODO: re-enable when this is re-enabled on the server side. + //Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps); // Test getting the specific firewall rules var firewallRule = clientToUse.FirewallRules.Get(commonData.ResourceGroupName, adlaAcocunt, firewallRuleName1); diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs index d2350fb60294..3cb0c2239c63 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs @@ -27,7 +27,7 @@ public void GetCatalogItemsTest() commonData.HostUrl = commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName, commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName); - TestUtilities.Wait(120000); // Sleep for two minutes to give the account a chance to provision the queue + commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName, commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName); using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context)) @@ -160,7 +160,7 @@ public void CredentialCRUDTest() commonData.HostUrl = commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName, commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName); - TestUtilities.Wait(120000); // Sleep for two minutes to give the account a chance to provision the queue + commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName, commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName); using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context)) @@ -261,7 +261,7 @@ public void CredentialCRUDTest() } [Fact] - public void SecretAndCredentialCRUDTest() + public void SecretCRUDTest() { // NOTE: This is deprecated and will be removed in a future release using (var context = MockContext.Start(this.GetType().FullName)) @@ -270,7 +270,7 @@ public void SecretAndCredentialCRUDTest() commonData.HostUrl = commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName, commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName); - TestUtilities.Wait(120000); // Sleep for two minutes to give the account a chance to provision the queue + commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName, commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName); using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context)) @@ -308,6 +308,7 @@ public void SecretAndCredentialCRUDTest() Password = commonData.SecretPwd, Uri = "https://adlasecrettest.contoso.com:443" }); + // Get the secret and ensure the response contains a date. var secretGetResponse = clientToUse.Catalog.GetSecret( commonData.SecondDataLakeAnalyticsAccountName, @@ -316,38 +317,6 @@ public void SecretAndCredentialCRUDTest() Assert.NotNull(secretGetResponse); Assert.NotNull(secretGetResponse.CreationTime); - // Create a credential with the secret - var credentialCreationScript = - string.Format( - @"USE {0}; CREATE CREDENTIAL {1} WITH USER_NAME = ""scope@rkm4grspxa"", IDENTITY = ""{2}"";", - commonData.DatabaseName, commonData.CredentialName, commonData.SecretName); - commonData.DataLakeAnalyticsManagementHelper.RunJobToCompletion(jobClient, - commonData.SecondDataLakeAnalyticsAccountName, TestUtilities.GenerateGuid(), - credentialCreationScript); - - // Get the Credential list - var credListResponse = clientToUse.Catalog.ListCredentials( - commonData.SecondDataLakeAnalyticsAccountName, - commonData.DatabaseName); - Assert.True(credListResponse.Count() >= 1); - - // look for the credential we created - Assert.True(credListResponse.Any(cred => cred.Name.Equals(commonData.CredentialName))); - - // Get the specific credential as well - var credGetResponse = clientToUse.Catalog.GetCredential( - commonData.SecondDataLakeAnalyticsAccountName, - commonData.DatabaseName, commonData.CredentialName); - Assert.Equal(commonData.CredentialName, credGetResponse.Name); - - // Drop the credential (to enable secret deletion) - var credentialDropScript = - string.Format( - @"USE {0}; DROP CREDENTIAL {1};", commonData.DatabaseName, commonData.CredentialName); - commonData.DataLakeAnalyticsManagementHelper.RunJobToCompletion(jobClient, - commonData.SecondDataLakeAnalyticsAccountName, TestUtilities.GenerateGuid(), - credentialDropScript); - // Delete the secret clientToUse.Catalog.DeleteSecret( commonData.SecondDataLakeAnalyticsAccountName, diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs index 5623b57fc0a9..fd724a900682 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs @@ -28,8 +28,6 @@ public void SubmitGetListCancelTest() commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName, commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName); - // TODO: Remove this sleep once defect 5022906 is fixed - TestUtilities.Wait(120000); // Sleep for two minutes to give the account a chance to provision the queue var clientToUse = this.GetDataLakeAnalyticsJobManagementClient(context); Guid jobId = TestUtilities.GenerateGuid(); diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json index a7d1738f4d5c..6b2f67b22f76 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "932dd78b-f10c-431a-926a-7b507c1f942e" + "397bd1fb-7086-44bf-b7d3-c91ff796dd20" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:33 GMT" + "Mon, 27 Mar 2017 19:54:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "1c4bbe2b-885e-4b09-a36f-df4b57924ad3" + "7add856d-d6db-4573-9183-006ce475afec" ], "x-ms-correlation-request-id": [ - "1c4bbe2b-885e-4b09-a36f-df4b57924ad3" + "7add856d-d6db-4573-9183-006ce475afec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194433Z:1c4bbe2b-885e-4b09-a36f-df4b57924ad3" + "WESTUS2:20170327T195436Z:7add856d-d6db-4573-9183-006ce475afec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecbbecc0-775e-4bcb-962d-c84291ebe578" + "6f53e9d6-475c-4c6a-a5e9-7c60420a96b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:33 GMT" + "Mon, 27 Mar 2017 19:54:36 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14977" ], "x-ms-request-id": [ - "a8475ec2-33a2-4072-8d90-b48075ef09f7" + "95a8906a-5b14-45db-8224-c28f5256ef45" ], "x-ms-correlation-request-id": [ - "a8475ec2-33a2-4072-8d90-b48075ef09f7" + "95a8906a-5b14-45db-8224-c28f5256ef45" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194433Z:a8475ec2-33a2-4072-8d90-b48075ef09f7" + "WESTUS2:20170327T195436Z:95a8906a-5b14-45db-8224-c28f5256ef45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03b279e5-3b2e-4ab2-a252-ba2162f96d14" + "18c126b1-f14c-492b-9559-d8ee70f3bbf8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:34 GMT" + "Mon, 27 Mar 2017 19:54:38 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "eea11e15-f3bb-44ac-93d7-7fa7ac1661be" + "d71a40e8-9789-4ff9-a8e1-5b6cf9443242" ], "x-ms-correlation-request-id": [ - "eea11e15-f3bb-44ac-93d7-7fa7ac1661be" + "d71a40e8-9789-4ff9-a8e1-5b6cf9443242" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194434Z:eea11e15-f3bb-44ac-93d7-7fa7ac1661be" + "WESTUS2:20170327T195438Z:d71a40e8-9789-4ff9-a8e1-5b6cf9443242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f9fabff-bc87-4660-8fa8-9573ad650c5e" + "0acf9a5c-8556-4e4d-90b5-2a87930cf14e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:34 GMT" + "Mon, 27 Mar 2017 19:54:38 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14976" ], "x-ms-request-id": [ - "690ad787-aab0-4a1c-909c-4d669f5446bf" + "94350470-0c79-443b-9036-3d5fd5104e90" ], "x-ms-correlation-request-id": [ - "690ad787-aab0-4a1c-909c-4d669f5446bf" + "94350470-0c79-443b-9036-3d5fd5104e90" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194434Z:690ad787-aab0-4a1c-909c-4d669f5446bf" + "WESTUS2:20170327T195438Z:94350470-0c79-443b-9036-3d5fd5104e90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee20de27-a513-4b15-9e34-d6a60da353e8" + "0240afd7-e9e9-404a-8a74-02f9a04aa773" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:35 GMT" + "Mon, 27 Mar 2017 19:54:39 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-request-id": [ - "96235861-478f-43d4-9617-c4f9f84c3c6f" + "e9c27abc-b93e-4b29-8556-2db6b6cd92e9" ], "x-ms-correlation-request-id": [ - "96235861-478f-43d4-9617-c4f9f84c3c6f" + "e9c27abc-b93e-4b29-8556-2db6b6cd92e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194435Z:96235861-478f-43d4-9617-c4f9f84c3c6f" + "WESTUS2:20170327T195439Z:e9c27abc-b93e-4b29-8556-2db6b6cd92e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e551e405-2c78-4e98-ad64-825101ac2e7b" + "e36076f6-a1b8-427f-8422-29df29447b27" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:35 GMT" + "Mon, 27 Mar 2017 19:54:39 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14975" ], "x-ms-request-id": [ - "a2d1d42e-49da-4240-b733-9dca6010e940" + "719cf68a-57e6-4876-a145-c371d8b9fa25" ], "x-ms-correlation-request-id": [ - "a2d1d42e-49da-4240-b733-9dca6010e940" + "719cf68a-57e6-4876-a145-c371d8b9fa25" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194435Z:a2d1d42e-49da-4240-b733-9dca6010e940" + "WESTUS2:20170327T195439Z:719cf68a-57e6-4876-a145-c371d8b9fa25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQ5NzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyNDY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8139ad15-92d3-4fe8-b738-79ea14d224f7" + "871f2482-c9cd-424e-8ae6-cad948503e86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba14971' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba19246' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:35 GMT" + "Mon, 27 Mar 2017 19:54:39 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14974" ], "x-ms-request-id": [ - "c1e875d6-5ff1-4fe5-b1ec-f2ec7a8a0d57" + "7ea7da6a-aa98-4c8a-8ead-7106a062753d" ], "x-ms-correlation-request-id": [ - "c1e875d6-5ff1-4fe5-b1ec-f2ec7a8a0d57" + "7ea7da6a-aa98-4c8a-8ead-7106a062753d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194435Z:c1e875d6-5ff1-4fe5-b1ec-f2ec7a8a0d57" + "WESTUS2:20170327T195439Z:7ea7da6a-aa98-4c8a-8ead-7106a062753d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQ5NzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyNDY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08c6ac3a-bbe3-413c-a990-a8cd147fdfd5" + "1a1f4b5a-a1af-4360-8358-cf63361c7af6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971\",\r\n \"name\": \"rgaba14971\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246\",\r\n \"name\": \"rgaba19246\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:37 GMT" + "Mon, 27 Mar 2017 19:54:41 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14973" ], "x-ms-request-id": [ - "c4a08880-2bfe-43eb-81b8-3efd30735a37" + "e6087f07-dfdb-4aa4-9bce-3c4522c8e46b" ], "x-ms-correlation-request-id": [ - "c4a08880-2bfe-43eb-81b8-3efd30735a37" + "e6087f07-dfdb-4aa4-9bce-3c4522c8e46b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194437Z:c4a08880-2bfe-43eb-81b8-3efd30735a37" + "WESTUS2:20170327T195441Z:e6087f07-dfdb-4aa4-9bce-3c4522c8e46b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQ5NzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyNDY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "e4220300-0da5-4699-9bcb-42ce81cf7ad3" + "d962a5b4-7191-4220-86fa-77193b667f4a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971\",\r\n \"name\": \"rgaba14971\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246\",\r\n \"name\": \"rgaba19246\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:37 GMT" + "Mon, 27 Mar 2017 19:54:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-request-id": [ - "6b7bc5a6-f90f-4994-b4f9-02bd26a990b6" + "3cda1082-fbd8-4c66-b1e0-975d081c9d8f" ], "x-ms-correlation-request-id": [ - "6b7bc5a6-f90f-4994-b4f9-02bd26a990b6" + "3cda1082-fbd8-4c66-b1e0-975d081c9d8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194437Z:6b7bc5a6-f90f-4994-b4f9-02bd26a990b6" + "WESTUS2:20170327T195441Z:3cda1082-fbd8-4c66-b1e0-975d081c9d8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,8 +505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTUxMjQ/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTE5MjI/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -517,13 +517,12 @@ "99" ], "x-ms-client-request-id": [ - "344a5e2e-4e25-4222-891e-1a803f97c5a5" + "88c917fa-3a25-4eab-b251-fbd29bd11a14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, @@ -539,13 +538,13 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:37 GMT" + "Mon, 27 Mar 2017 19:54:43 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/e70e5c07-1284-4eb7-8780-5f74f864e00c?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/5b5952f3-75ab-4005-8f76-833ea352ea48?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -555,16 +554,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "47c9e742-3b2b-4754-9b07-cd25c32c64c7" + "54a6782e-6368-407f-a321-2ffb8951852d" ], "x-ms-correlation-request-id": [ - "47c9e742-3b2b-4754-9b07-cd25c32c64c7" + "54a6782e-6368-407f-a321-2ffb8951852d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194438Z:47c9e742-3b2b-4754-9b07-cd25c32c64c7" + "WESTUS2:20170327T195443Z:54a6782e-6368-407f-a321-2ffb8951852d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,17 +572,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/e70e5c07-1284-4eb7-8780-5f74f864e00c?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2U3MGU1YzA3LTEyODQtNGViNy04NzgwLTVmNzRmODY0ZTAwYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/5b5952f3-75ab-4005-8f76-833ea352ea48?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzViNTk1MmYzLTc1YWItNDAwNS04Zjc2LTgzM2VhMzUyZWE0OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob15124\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-01-05T19:44:38.3825414Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob15124.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob15124.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob15124.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob15124.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob11922\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-27T19:54:43.7397561Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob11922.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob11922.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob11922.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob11922.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -595,7 +593,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:08 GMT" + "Mon, 27 Mar 2017 19:55:13 GMT" ], "Pragma": [ "no-cache" @@ -611,16 +609,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "015f6680-c3ca-497b-9430-98fdad62e341" + "73e2ba6f-b96a-4fea-a976-0828bc891f47" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-correlation-request-id": [ - "015f6680-c3ca-497b-9430-98fdad62e341" + "73e2ba6f-b96a-4fea-a976-0828bc891f47" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194508Z:015f6680-c3ca-497b-9430-98fdad62e341" + "WESTUS2:20170327T195514Z:73e2ba6f-b96a-4fea-a976-0828bc891f47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,23 +627,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTUxMjQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTE5MjIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54c32b5f-63f8-472c-8164-82fa43a0fa9c" + "72b70a58-66f6-412f-b969-892569f9aab3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"yQ/DxMh2BtDNHZyNqJ3zNzBdeQ7nxD7/t42uPWPTIWIfAdGGnG4eA6zu58oxFCql8xr4/8rQ2hGY3z2fvTI+hA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"GQRabM6aLg7Kk+jv5U3Ydl0DjjBn+GrGQazFJG9zmycDgTfmruNTKV1K52Kilul52GqdXoOiIoLnYsaY4+kvLg==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"+rWcrDb+L9Gag5otj/Rn5jov+EQZFSmTJ6cpzBqAPkDlx5DCS4NoOMifGxPAns98JkVoNSq0lni5NOEp4snhpA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"0DpZqxrx8VcFdPIm1mZm1SkxPotbV3HRzWKewMkU49u4y2gKCRnQgPkeaz+Ba3Jm1ltjCkuhr91iH+6QUKim/Q==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -657,7 +654,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:09 GMT" + "Mon, 27 Mar 2017 19:55:13 GMT" ], "Pragma": [ "no-cache" @@ -673,16 +670,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8ae9d18c-0fc0-4ee0-a048-fc52187c8997" + "16bc2083-fca0-4cab-a4f3-6575d1149c5c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-correlation-request-id": [ - "8ae9d18c-0fc0-4ee0-a048-fc52187c8997" + "16bc2083-fca0-4cab-a4f3-6575d1149c5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194509Z:8ae9d18c-0fc0-4ee0-a048-fc52187c8997" + "WESTUS2:20170327T195514Z:16bc2083-fca0-4cab-a4f3-6575d1149c5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,23 +688,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTUxMjQ/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTE5MjI/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "573a905c-5e86-449f-97ec-da146a00dbe3" + "738531f6-aa45-4fb1-9cb6-375d81fe73d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob15124\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-01-05T19:44:38.3825414Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob15124.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob15124.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob15124.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob15124.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob11922\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-27T19:54:43.7397561Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob11922.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob11922.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob11922.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob11922.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -719,7 +715,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:09 GMT" + "Mon, 27 Mar 2017 19:55:13 GMT" ], "Pragma": [ "no-cache" @@ -735,16 +731,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4eac81c4-73ef-4142-9e85-f2d4cf02074f" + "16ed6d71-0b90-4f10-ae9f-4667fbaeb15c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14986" ], "x-ms-correlation-request-id": [ - "4eac81c4-73ef-4142-9e85-f2d4cf02074f" + "16ed6d71-0b90-4f10-ae9f-4667fbaeb15c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194509Z:4eac81c4-73ef-4142-9e85-f2d4cf02074f" + "WESTUS2:20170327T195514Z:16ed6d71-0b90-4f10-ae9f-4667fbaeb15c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -753,23 +749,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Njc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e5a68b0-0f0d-4a24-8195-a612e6148d19" + "421d1d57-a786-4e62-961f-7467bda2ddcb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake12545' under resource group 'rgaba14971' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16677' under resource group 'rgaba19246' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -784,7 +779,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:08 GMT" + "Mon, 27 Mar 2017 19:55:13 GMT" ], "Pragma": [ "no-cache" @@ -793,13 +788,13 @@ "gateway" ], "x-ms-request-id": [ - "6f47df8f-c199-4634-b91d-758a00b89c82" + "d87c5f45-f8cf-4edd-bd2f-e7029c091ac6" ], "x-ms-correlation-request-id": [ - "6f47df8f-c199-4634-b91d-758a00b89c82" + "d87c5f45-f8cf-4edd-bd2f-e7029c091ac6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194509Z:6f47df8f-c199-4634-b91d-758a00b89c82" + "WESTUS2:20170327T195514Z:d87c5f45-f8cf-4edd-bd2f-e7029c091ac6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -808,17 +803,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Njc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12545.azuredatalakestore.net\",\r\n \"accountId\": \"ddd0c097-17c8-4f97-ada1-2dd691a995f0\",\r\n \"creationTime\": \"2017-01-05T19:45:11.8247695Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:45:11.8247695Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16677.azuredatalakestore.net\",\r\n \"accountId\": \"c729fe85-ae03-4c3d-b5bb-df66aef8e4b9\",\r\n \"creationTime\": \"2017-03-27T19:55:14.2945701Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:55:14.2945701Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -833,7 +827,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:41 GMT" + "Mon, 27 Mar 2017 19:55:45 GMT" ], "Pragma": [ "no-cache" @@ -845,7 +839,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f26d8e73-e602-45ee-94be-69109049abb3" + "6d795f70-bea6-4fd1-ac56-e4ba3e41b4b5" ], "X-Content-Type-Options": [ "nosniff" @@ -857,13 +851,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14972" ], "x-ms-correlation-request-id": [ - "bbc1a66f-f6de-4e94-9764-5830ce639969" + "fa6e59f3-14e5-4b7e-8cd3-3dde70aa4288" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194542Z:bbc1a66f-f6de-4e94-9764-5830ce639969" + "WESTUS2:20170327T195546Z:fa6e59f3-14e5-4b7e-8cd3-3dde70aa4288" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -872,23 +866,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Njc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68408aef-6166-4fcd-90d1-834bc992ffe7" + "ec3c39ce-f105-452a-b4e5-81082acfc52f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12545.azuredatalakestore.net\",\r\n \"accountId\": \"ddd0c097-17c8-4f97-ada1-2dd691a995f0\",\r\n \"creationTime\": \"2017-01-05T19:45:11.8247695Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:45:11.8247695Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16677.azuredatalakestore.net\",\r\n \"accountId\": \"c729fe85-ae03-4c3d-b5bb-df66aef8e4b9\",\r\n \"creationTime\": \"2017-03-27T19:55:14.2945701Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:55:14.2945701Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -903,7 +896,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:42 GMT" + "Mon, 27 Mar 2017 19:55:46 GMT" ], "Pragma": [ "no-cache" @@ -915,7 +908,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7d013f57-917b-445a-916a-be1a5c83c8b5" + "b8038065-33ea-4277-a1d0-ea2eac6d818e" ], "X-Content-Type-Options": [ "nosniff" @@ -927,13 +920,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-correlation-request-id": [ - "19747644-9754-47a9-be34-2163198f30d7" + "4623a624-4d95-4f2a-8fc4-be85b7679755" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194543Z:19747644-9754-47a9-be34-2163198f30d7" + "WESTUS2:20170327T195547Z:4623a624-4d95-4f2a-8fc4-be85b7679755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Njc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -954,17 +947,16 @@ "31" ], "x-ms-client-request-id": [ - "4ccd2408-45f2-4d92-bfb8-16c020e25d4e" + "e6a51f86-ed4d-4778-9751-aad9d02ce9d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ddd0c097-17c8-4f97-ada1-2dd691a995f0\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c729fe85-ae03-4c3d-b5bb-df66aef8e4b9\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -982,13 +974,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:10 GMT" + "Mon, 27 Mar 2017 19:55:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -997,10 +989,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ddd0c097-17c8-4f97-ada1-2dd691a995f00?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c729fe85-ae03-4c3d-b5bb-df66aef8e4b90?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "dac7827d-407a-4ec6-8fc1-4e78a2de726f" + "bd002827-9324-4137-b488-56bde51d60a4" ], "X-Content-Type-Options": [ "nosniff" @@ -1012,13 +1004,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1178" ], "x-ms-correlation-request-id": [ - "e62aa5a3-7a29-4f2c-97fc-3c4bc8784b30" + "e120ebda-58d5-407e-ac21-8ed1746a6382" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194511Z:e62aa5a3-7a29-4f2c-97fc-3c4bc8784b30" + "WESTUS2:20170327T195515Z:e120ebda-58d5-407e-ac21-8ed1746a6382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1027,14 +1019,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ddd0c097-17c8-4f97-ada1-2dd691a995f00?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RkZDBjMDk3LTE3YzgtNGY5Ny1hZGExLTJkZDY5MWE5OTVmMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c729fe85-ae03-4c3d-b5bb-df66aef8e4b90?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M3MjlmZTg1LWFlMDMtNGMzZC1iNWJiLWRmNjZhZWY4ZTRiOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1052,7 +1043,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:41 GMT" + "Mon, 27 Mar 2017 19:55:45 GMT" ], "Pragma": [ "no-cache" @@ -1064,7 +1055,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3cdb96b6-7151-4809-8325-887dd463a993" + "296a682f-7127-47e5-b4f6-33da66cef659" ], "X-Content-Type-Options": [ "nosniff" @@ -1076,13 +1067,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14980" ], "x-ms-correlation-request-id": [ - "a6dd7b88-5bf1-4e87-874d-0cbb7b629056" + "d273c4db-c4f3-48f4-bd8d-573eba2e1f56" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194542Z:a6dd7b88-5bf1-4e87-874d-0cbb7b629056" + "WESTUS2:20170327T195546Z:d273c4db-c4f3-48f4-bd8d-573eba2e1f56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1091,23 +1082,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09477611-d8c9-4586-9163-591624cc215e" + "52f076e9-5033-4a7d-8414-4ea2d8de96ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake29426' under resource group 'rgaba14971' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake29664' under resource group 'rgaba19246' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -1122,7 +1112,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:43 GMT" + "Mon, 27 Mar 2017 19:55:47 GMT" ], "Pragma": [ "no-cache" @@ -1131,13 +1121,13 @@ "gateway" ], "x-ms-request-id": [ - "23c47d82-2803-4d16-8713-875ecb3c7025" + "319ce24f-3fb0-4d3d-8a90-f5ce1fa48f3b" ], "x-ms-correlation-request-id": [ - "23c47d82-2803-4d16-8713-875ecb3c7025" + "319ce24f-3fb0-4d3d-8a90-f5ce1fa48f3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194543Z:23c47d82-2803-4d16-8713-875ecb3c7025" + "WESTUS2:20170327T195547Z:319ce24f-3fb0-4d3d-8a90-f5ce1fa48f3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,17 +1136,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29426.azuredatalakestore.net\",\r\n \"accountId\": \"03450a15-91c1-4c43-8250-133de886cbef\",\r\n \"creationTime\": \"2017-01-05T19:45:46.2277039Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:45:46.2277039Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29664.azuredatalakestore.net\",\r\n \"accountId\": \"8c818548-90c5-4593-b50f-631335b4edca\",\r\n \"creationTime\": \"2017-03-27T19:55:49.4540802Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:55:49.4540802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1171,7 +1160,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:46:16 GMT" + "Mon, 27 Mar 2017 19:56:20 GMT" ], "Pragma": [ "no-cache" @@ -1183,7 +1172,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ee0f4204-a16e-475b-8b3c-c2673fe57c00" + "23eab638-41b9-4764-9793-d11d9b7295a5" ], "X-Content-Type-Options": [ "nosniff" @@ -1195,13 +1184,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14989" ], "x-ms-correlation-request-id": [ - "cdd77fec-7063-4a49-a7ef-5a0d8ae320f6" + "92d47823-4e32-419e-8bb7-61385f113295" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194616Z:cdd77fec-7063-4a49-a7ef-5a0d8ae320f6" + "WESTUS2:20170327T195620Z:92d47823-4e32-419e-8bb7-61385f113295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1210,23 +1199,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "547e52aa-8a7d-4a2b-8e39-4c4f666d9d75" + "b1f3fb02-3486-4e07-8edf-e1efbdeb76b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29426.azuredatalakestore.net\",\r\n \"accountId\": \"03450a15-91c1-4c43-8250-133de886cbef\",\r\n \"creationTime\": \"2017-01-05T19:45:46.2277039Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:45:46.2277039Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29664.azuredatalakestore.net\",\r\n \"accountId\": \"8c818548-90c5-4593-b50f-631335b4edca\",\r\n \"creationTime\": \"2017-03-27T19:55:49.4540802Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:55:49.4540802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1241,7 +1229,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:46:16 GMT" + "Mon, 27 Mar 2017 19:56:20 GMT" ], "Pragma": [ "no-cache" @@ -1253,7 +1241,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8c3a4d22-2136-494d-bad7-beb277c8265c" + "4f1bf361-d0c8-4f49-84a8-88128958803c" ], "X-Content-Type-Options": [ "nosniff" @@ -1265,13 +1253,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14980" ], "x-ms-correlation-request-id": [ - "82c65ba5-dcd5-4cd9-8ea3-11285bc7ab8f" + "4b8b9b49-4718-4b53-96df-18fd25ed4a8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194617Z:82c65ba5-dcd5-4cd9-8ea3-11285bc7ab8f" + "WESTUS2:20170327T195621Z:4b8b9b49-4718-4b53-96df-18fd25ed4a8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1280,8 +1268,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1292,17 +1280,16 @@ "31" ], "x-ms-client-request-id": [ - "2c6cc1b4-4755-4721-9d85-721c8aa00005" + "324e92a9-69cb-4e66-8b48-6c5809e0b586" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"03450a15-91c1-4c43-8250-133de886cbef\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8c818548-90c5-4593-b50f-631335b4edca\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -1320,13 +1307,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:45 GMT" + "Mon, 27 Mar 2017 19:55:49 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1335,10 +1322,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/03450a15-91c1-4c43-8250-133de886cbef0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8c818548-90c5-4593-b50f-631335b4edca0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "c141a875-dd3a-4b38-804e-cdada4ae0791" + "332460b4-dbcd-459c-a697-7a1ffa742c63" ], "X-Content-Type-Options": [ "nosniff" @@ -1350,13 +1337,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "e03732a2-14a4-4ac6-ab67-60b9946ee178" + "4ef6877a-e5d7-4a4b-97ba-c60032132650" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194545Z:e03732a2-14a4-4ac6-ab67-60b9946ee178" + "WESTUS2:20170327T195549Z:4ef6877a-e5d7-4a4b-97ba-c60032132650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,14 +1352,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/03450a15-91c1-4c43-8250-133de886cbef0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzAzNDUwYTE1LTkxYzEtNGM0My04MjUwLTEzM2RlODg2Y2JlZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8c818548-90c5-4593-b50f-631335b4edca0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzhjODE4NTQ4LTkwYzUtNDU5My1iNTBmLTYzMTMzNWI0ZWRjYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1390,7 +1376,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:46:15 GMT" + "Mon, 27 Mar 2017 19:56:19 GMT" ], "Pragma": [ "no-cache" @@ -1402,7 +1388,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a4bbad87-d340-4f0a-92d7-8aadfa561841" + "887a9da2-68e0-4309-a20a-430303580c3f" ], "X-Content-Type-Options": [ "nosniff" @@ -1414,13 +1400,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14963" ], "x-ms-correlation-request-id": [ - "c6be1ea3-59c3-41d1-9f62-6ccc54655dcd" + "d75caf38-2911-44f3-a4e3-5b878f039792" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194616Z:c6be1ea3-59c3-41d1-9f62-6ccc54655dcd" + "WESTUS2:20170327T195619Z:d75caf38-2911-44f3-a4e3-5b878f039792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1429,23 +1415,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "147edd48-4ddf-4beb-b251-75c14da6fd09" + "58c48744-497f-4542-801c-ee7fa45632e2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba13253' under resource group 'rgaba14971' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba13568' under resource group 'rgaba19246' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "163" @@ -1460,7 +1445,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:46:16 GMT" + "Mon, 27 Mar 2017 19:56:21 GMT" ], "Pragma": [ "no-cache" @@ -1469,13 +1454,13 @@ "gateway" ], "x-ms-request-id": [ - "f9b8826d-28ff-4142-b66a-acad291bfcd6" + "bbb6d797-f5a5-4b85-aa9a-9fa62a5a3336" ], "x-ms-correlation-request-id": [ - "f9b8826d-28ff-4142-b66a-acad291bfcd6" + "bbb6d797-f5a5-4b85-aa9a-9fa62a5a3336" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194617Z:f9b8826d-28ff-4142-b66a-acad291bfcd6" + "WESTUS2:20170327T195621Z:bbb6d797-f5a5-4b85-aa9a-9fa62a5a3336" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1484,17 +1469,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:01.4603812Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:26.4942579Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1509,7 +1493,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:22 GMT" + "Mon, 27 Mar 2017 19:56:54 GMT" ], "Pragma": [ "no-cache" @@ -1521,7 +1505,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c52d821b-3cf1-4fb6-861a-391b58ce2b39" + "c152779e-a8f6-424a-bc9f-44348c7a8963" ], "X-Content-Type-Options": [ "nosniff" @@ -1533,13 +1517,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14981" ], "x-ms-correlation-request-id": [ - "39a05a42-3251-4ba3-8944-b3507c2ce51c" + "4795005c-ac6e-4f81-8849-ca4a19745d3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194822Z:39a05a42-3251-4ba3-8944-b3507c2ce51c" + "WESTUS2:20170327T195654Z:4795005c-ac6e-4f81-8849-ca4a19745d3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1548,23 +1532,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fbc9b3b-7e26-4cbf-a713-741bbf2f217f" + "6c5956a2-bb6c-4dac-8229-f159aabc81c9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:01.4603812Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:26.4942579Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1579,7 +1562,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:22 GMT" + "Mon, 27 Mar 2017 19:56:54 GMT" ], "Pragma": [ "no-cache" @@ -1591,7 +1574,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "20cf18c0-da14-4dba-8ed0-8c019129a733" + "0a25e850-94d5-46e3-9272-cc48905c297e" ], "X-Content-Type-Options": [ "nosniff" @@ -1603,13 +1586,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14977" ], "x-ms-correlation-request-id": [ - "5e23d0ca-7f5f-4adc-86b3-5fe585ae3356" + "edb375d6-778c-4ded-b411-ea6406bc9ec0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194823Z:5e23d0ca-7f5f-4adc-86b3-5fe585ae3356" + "WESTUS2:20170327T195655Z:edb375d6-778c-4ded-b411-ea6406bc9ec0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1618,23 +1601,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4783a0c-f520-4150-a81c-0347295d791c" + "01b137aa-d2e6-478d-951b-70ea7c4bc331" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:01.4603812Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:26.4942579Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1649,7 +1631,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:22 GMT" + "Mon, 27 Mar 2017 19:56:55 GMT" ], "Pragma": [ "no-cache" @@ -1661,7 +1643,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eb187c67-ac7f-47e7-91c0-ae52ff0c3060" + "855e6ebc-1d02-4896-bd4b-7adbacd35e65" ], "X-Content-Type-Options": [ "nosniff" @@ -1673,13 +1655,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14991" ], "x-ms-correlation-request-id": [ - "3ddcf1e2-bd8d-400e-a78d-054618d5d427" + "fe87926e-d93c-432c-817d-ea9d131aa89d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194823Z:3ddcf1e2-bd8d-400e-a78d-054618d5d427" + "WESTUS2:20170327T195656Z:fe87926e-d93c-432c-817d-ea9d131aa89d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,23 +1670,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52e52118-320e-435e-af6e-20524fc3fb34" + "362ea02b-bd94-47b7-b08d-2b739631a89d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1719,7 +1700,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:25 GMT" + "Mon, 27 Mar 2017 19:56:57 GMT" ], "Pragma": [ "no-cache" @@ -1731,7 +1712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8710e1c9-21e3-49be-bbcf-1f67ea424d52" + "c1c06934-b84d-4e22-a9d5-088c9400fb28" ], "X-Content-Type-Options": [ "nosniff" @@ -1743,13 +1724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14985" ], "x-ms-correlation-request-id": [ - "899f445a-be73-40ba-b8c0-30a85d63b1a4" + "7a8e8eb8-5fcf-4c8f-95c4-b36e2a26d009" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194826Z:899f445a-be73-40ba-b8c0-30a85d63b1a4" + "WESTUS2:20170327T195658Z:7a8e8eb8-5fcf-4c8f-95c4-b36e2a26d009" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1758,23 +1739,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c30e52-15a1-4416-b7a8-a21f9961250b" + "536cd195-7f65-45b6-8a11-e6e288cf6cea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1789,7 +1769,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:26 GMT" + "Mon, 27 Mar 2017 19:56:58 GMT" ], "Pragma": [ "no-cache" @@ -1801,7 +1781,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "51059548-012e-4db2-8c1a-b25ff737e114" + "f6cfea52-d8fc-4d30-a7e0-e84263a867c1" ], "X-Content-Type-Options": [ "nosniff" @@ -1813,13 +1793,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-correlation-request-id": [ - "358bc7ec-da8c-44b6-86eb-369b14e12f6a" + "1ffaed70-1f44-4d91-b993-980ed490520f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194826Z:358bc7ec-da8c-44b6-86eb-369b14e12f6a" + "WESTUS2:20170327T195658Z:1ffaed70-1f44-4d91-b993-980ed490520f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1828,10 +1808,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1840,17 +1820,16 @@ "378" ], "x-ms-client-request-id": [ - "6521b4cb-3f41-44cc-965e-101fa1508cdb" + "705025dd-0891-48ea-a14f-72b648838f14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "626" @@ -1868,13 +1847,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:46:19 GMT" + "Mon, 27 Mar 2017 19:56:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1883,10 +1862,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f509e9c0-b783-4a7e-83e1-29772bdf32f90?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4ad52591-8a1a-41d0-b96a-50371b4b3696" + "2d260124-1ae3-412e-8c9e-14c676875c4d" ], "X-Content-Type-Options": [ "nosniff" @@ -1898,13 +1877,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "7bb07af9-dd49-45a6-9b9b-b3231055ba3b" + "f177dec0-517f-45f1-8dd0-6fdbfb5d51b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194620Z:7bb07af9-dd49-45a6-9b9b-b3231055ba3b" + "WESTUS2:20170327T195623Z:f177dec0-517f-45f1-8dd0-6fdbfb5d51b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,206 +1892,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84M2NkODc4Ni0wM2MyLTQ5NjktOWUyZi0xZjE0Y2RmOWUzZmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f509e9c0-b783-4a7e-83e1-29772bdf32f90?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9mNTA5ZTljMC1iNzgzLTRhN2UtODNlMS0yOTc3MmJkZjMyZjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:46:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "718a3a11-fd2d-470d-b4cb-459e22ac9197" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "e3e22bea-0d12-40ee-b95b-e0742ae11e7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194650Z:e3e22bea-0d12-40ee-b95b-e0742ae11e7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84M2NkODc4Ni0wM2MyLTQ5NjktOWUyZi0xZjE0Y2RmOWUzZmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:47:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f9e2a38d-e810-4e5c-b072-ae6a4b53fbe2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "8f5cddf0-522c-47cf-8d66-4d09f625d978" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194721Z:8f5cddf0-522c-47cf-8d66-4d09f625d978" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84M2NkODc4Ni0wM2MyLTQ5NjktOWUyZi0xZjE0Y2RmOWUzZmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:47:51 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2bb43966-13c4-4c88-b3c0-92bd4b7d04f4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "c491e1b7-8031-45e0-b8fa-3b0de9da81d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194751Z:c491e1b7-8031-45e0-b8fa-3b0de9da81d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84M2NkODc4Ni0wM2MyLTQ5NjktOWUyZi0xZjE0Y2RmOWUzZmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2130,7 +1916,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:21 GMT" + "Mon, 27 Mar 2017 19:56:53 GMT" ], "Pragma": [ "no-cache" @@ -2142,7 +1928,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "075d8bb7-ad80-455a-8e42-6a8a53ae07fe" + "cc46dd48-74e0-45b1-83ab-7a768b518428" ], "X-Content-Type-Options": [ "nosniff" @@ -2154,13 +1940,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14971" ], "x-ms-correlation-request-id": [ - "5cbdde8f-0f12-49e3-9d8a-0215e848b58b" + "9a0db3ae-582b-4719-b617-08e11d3cb430" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194822Z:5cbdde8f-0f12-49e3-9d8a-0215e848b58b" + "WESTUS2:20170327T195654Z:9a0db3ae-582b-4719-b617-08e11d3cb430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,8 +1955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"properties\": {\r\n \"newTier\": \"Consumption\"\r\n }\r\n}", "RequestHeaders": { @@ -2181,17 +1967,16 @@ "111" ], "x-ms-client-request-id": [ - "cbac00f5-abf5-45d6-ad78-9ff035089388" + "a8ee860e-3ca2-4260-9cc2-a9a92b052c12" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2206,7 +1991,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:25 GMT" + "Mon, 27 Mar 2017 19:56:57 GMT" ], "Pragma": [ "no-cache" @@ -2218,7 +2003,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5baa2f40-6516-481d-aca8-eee3c967b8f9" + "f93f6136-248a-4f7c-8f29-4254b3e86751" ], "X-Content-Type-Options": [ "nosniff" @@ -2230,13 +2015,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "8644537e-b411-482c-baa4-6e4302510341" + "6b42bdb2-e583-4531-a008-3878891180ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194825Z:8644537e-b411-482c-baa4-6e4302510341" + "WESTUS2:20170327T195657Z:6b42bdb2-e583-4531-a008-3878891180ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2245,10 +2030,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTNzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjhzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2257,17 +2042,16 @@ "290" ], "x-ms-client-request-id": [ - "a7110240-6436-456a-ab66-059ac71ee416" + "36710ad5-f86d-4bff-92c9-0e465b8306a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"493174b6-3fa1-4daa-9982-0e246fdcdf83\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct\",\r\n \"name\": \"testaba13253secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"915c79dd-c974-4d02-9da3-2bbef9657cb5\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct\",\r\n \"name\": \"testaba13568secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "593" @@ -2285,13 +2069,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:27 GMT" + "Mon, 27 Mar 2017 19:57:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -2300,10 +2084,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/915c79dd-c974-4d02-9da3-2bbef9657cb50?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ca2c0b2f-7c0c-4254-8275-894e6d6a5650" + "27927fdb-140d-446f-8216-7054912ff98f" ], "X-Content-Type-Options": [ "nosniff" @@ -2315,13 +2099,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1183" ], "x-ms-correlation-request-id": [ - "852994b9-2d36-4fbe-8ad3-a01193f9dea1" + "152e98c4-dcf3-47b3-a93f-14ccee877648" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194828Z:852994b9-2d36-4fbe-8ad3-a01193f9dea1" + "WESTUS2:20170327T195700Z:152e98c4-dcf3-47b3-a93f-14ccee877648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2330,206 +2114,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80OTMxNzRiNi0zZmExLTRkYWEtOTk4Mi0wZTI0NmZkY2RmODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:48:58 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "13554e47-dc4e-4492-8dda-6c649c5a1f84" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "501e110f-bd7c-44c4-956c-a56ae0baa3da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194859Z:501e110f-bd7c-44c4-956c-a56ae0baa3da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80OTMxNzRiNi0zZmExLTRkYWEtOTk4Mi0wZTI0NmZkY2RmODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:49:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c793cab4-7cc5-4127-8afc-573958cc7978" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "c850cf4e-741b-4347-ba76-4b6880aefb80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194929Z:c850cf4e-741b-4347-ba76-4b6880aefb80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80OTMxNzRiNi0zZmExLTRkYWEtOTk4Mi0wZTI0NmZkY2RmODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:50:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "31f2aaab-8661-40f6-8e66-6c37d216251f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "55ab110d-4ce5-427c-b7e8-c65f25804b5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T195000Z:55ab110d-4ce5-427c-b7e8-c65f25804b5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80OTMxNzRiNi0zZmExLTRkYWEtOTk4Mi0wZTI0NmZkY2RmODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/915c79dd-c974-4d02-9da3-2bbef9657cb50?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy85MTVjNzlkZC1jOTc0LTRkMDItOWRhMy0yYmJlZjk2NTdjYjUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2547,7 +2138,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:30 GMT" + "Mon, 27 Mar 2017 19:57:31 GMT" ], "Pragma": [ "no-cache" @@ -2559,7 +2150,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e4612516-076d-4617-8330-a11290cdf69d" + "62084bc9-7c83-4d7b-8fca-28fedaba8a09" ], "X-Content-Type-Options": [ "nosniff" @@ -2571,13 +2162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14985" ], "x-ms-correlation-request-id": [ - "39069e15-6ae1-4a67-b454-b9de8f71f876" + "ac96d659-4b64-4eef-93da-2121ae5f1f9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195030Z:39069e15-6ae1-4a67-b454-b9de8f71f876" + "WESTUS2:20170327T195731Z:ac96d659-4b64-4eef-93da-2121ae5f1f9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2586,17 +2177,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTNzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjhzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"493174b6-3fa1-4daa-9982-0e246fdcdf83\",\r\n \"creationTime\": \"2017-01-05T19:50:09.2391645Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:50:09.2391645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct\",\r\n \"name\": \"testaba13253secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"915c79dd-c974-4d02-9da3-2bbef9657cb5\",\r\n \"creationTime\": \"2017-03-27T19:57:04.1706463Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:57:04.1706463Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct\",\r\n \"name\": \"testaba13568secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2611,7 +2201,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:31 GMT" + "Mon, 27 Mar 2017 19:57:31 GMT" ], "Pragma": [ "no-cache" @@ -2623,7 +2213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "50861962-2100-46f7-9ce7-12b3909ed5b9" + "72c8068d-eac9-4c5c-9c15-840ccfdc4769" ], "X-Content-Type-Options": [ "nosniff" @@ -2635,13 +2225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14985" ], "x-ms-correlation-request-id": [ - "d282d667-a042-4a5a-8f1d-e309e01f7d71" + "ca4e24b1-340b-44fa-abf5-44062f461de1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195031Z:d282d667-a042-4a5a-8f1d-e309e01f7d71" + "WESTUS2:20170327T195731Z:ca4e24b1-340b-44fa-abf5-44062f461de1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2656,17 +2246,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a2e4c49-4923-4fc3-8cb2-10b5063a99e9" + "37e627ee-692d-485e-9c1b-d5b8f3df06ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlapysample01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"3d01b8f3-98a6-4412-8490-257bdc6e1cff\",\r\n \"creationTime\": \"2016-09-07T18:14:49.4919192Z\",\r\n \"lastModifiedTime\": \"2016-09-07T18:14:49.4919192Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlpysamplerg01/providers/Microsoft.DataLakeAnalytics/accounts/adlapysample01\",\r\n \"name\": \"adlapysample01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"493174b6-3fa1-4daa-9982-0e246fdcdf83\",\r\n \"creationTime\": \"2017-01-05T19:50:09.2391645Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:50:09.2391645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct\",\r\n \"name\": \"testaba13253secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"pyarmadla25e621603.azuredatalakeanalytics.net\",\r\n \"accountId\": \"005e965d-f953-4157-aad4-d75a5f20dbf4\",\r\n \"creationTime\": \"2016-11-10T19:32:24.278054Z\",\r\n \"lastModifiedTime\": \"2016-11-10T19:32:24.278054Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/test_mgmt_datalake_analytics_test_adla_catalog_secrets5e621603/providers/Microsoft.DataLakeAnalytics/accounts/pyarmadla25e621603\",\r\n \"name\": \"pyarmadla25e621603\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"915c79dd-c974-4d02-9da3-2bbef9657cb5\",\r\n \"creationTime\": \"2017-03-27T19:57:04.1706463Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:57:04.1706463Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct\",\r\n \"name\": \"testaba13568secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2681,7 +2270,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:31 GMT" + "Mon, 27 Mar 2017 19:57:31 GMT" ], "Pragma": [ "no-cache" @@ -2693,7 +2282,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "71dd3c7b-e68b-474c-ba23-3138d09d5756" + "dfbbac34-98a1-4125-9377-7c754850027e" ], "X-Content-Type-Options": [ "nosniff" @@ -2705,13 +2294,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14979" ], "x-ms-correlation-request-id": [ - "565e4ad7-a4ac-41f8-8366-c0bf5496b01b" + "40326b60-7d50-4059-b69e-63cbac77c0b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195031Z:565e4ad7-a4ac-41f8-8366-c0bf5496b01b" + "WESTUS2:20170327T195732Z:40326b60-7d50-4059-b69e-63cbac77c0b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,23 +2309,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ceeefd83-69bb-4bd4-98ae-712a1c8bb89a" + "562ef9e6-f1c8-404b-b95e-31b9dbff467b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"493174b6-3fa1-4daa-9982-0e246fdcdf83\",\r\n \"creationTime\": \"2017-01-05T19:50:09.2391645Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:50:09.2391645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct\",\r\n \"name\": \"testaba13253secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"915c79dd-c974-4d02-9da3-2bbef9657cb5\",\r\n \"creationTime\": \"2017-03-27T19:57:04.1706463Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:57:04.1706463Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct\",\r\n \"name\": \"testaba13568secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2751,7 +2339,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:32 GMT" + "Mon, 27 Mar 2017 19:57:32 GMT" ], "Pragma": [ "no-cache" @@ -2763,7 +2351,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4b96eb32-316d-4a0f-81b6-1d4e8c9cf279" + "96431b83-1f93-4577-978a-1179ddc6509e" ], "X-Content-Type-Options": [ "nosniff" @@ -2775,13 +2363,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14970" ], "x-ms-correlation-request-id": [ - "1106a393-a1fa-4a08-baaa-c42a7727317c" + "270f1902-72f7-435b-b0ee-ec525bc8eaad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195032Z:1106a393-a1fa-4a08-baaa-c42a7727317c" + "WESTUS2:20170327T195732Z:270f1902-72f7-435b-b0ee-ec525bc8eaad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2790,20 +2378,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bec74469-cff4-49b5-8a9b-90bc1e72e048" + "bdb548ce-c755-409b-8de9-2ff9661d0598" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"DataLakeStore Account does not exist.\"\r\n }\r\n}", @@ -2824,7 +2411,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:32 GMT" + "Mon, 27 Mar 2017 19:57:32 GMT" ], "Pragma": [ "no-cache" @@ -2833,7 +2420,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "747f45cd-c2fe-47ac-8197-928372d967eb" + "8f24d6c7-857d-4f54-a908-3c21a1a88f21" ], "X-Content-Type-Options": [ "nosniff" @@ -2845,13 +2432,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14980" ], "x-ms-correlation-request-id": [ - "93f8b7f2-d5ac-4457-84b8-d30a2e1c8223" + "aa6484e5-2432-4c04-93b0-7ad56d2924cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195033Z:93f8b7f2-d5ac-4457-84b8-d30a2e1c8223" + "WESTUS2:20170327T195733Z:aa6484e5-2432-4c04-93b0-7ad56d2924cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2860,23 +2447,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c489139a-f1b4-49a7-b144-987b0710b1fa" + "051db54c-7cfa-4ebe-80cb-e955833570dc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2891,7 +2477,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:33 GMT" + "Mon, 27 Mar 2017 19:57:34 GMT" ], "Pragma": [ "no-cache" @@ -2903,7 +2489,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "138bdcfe-7385-44a5-b22b-c63c59522af4" + "dd406331-c307-417c-b4d2-2c3e5549f639" ], "X-Content-Type-Options": [ "nosniff" @@ -2915,13 +2501,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14990" ], "x-ms-correlation-request-id": [ - "68ab9491-3da1-45db-8157-e854c7f04b17" + "3013c54d-79e2-4d23-b41f-d5769910cf11" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195034Z:68ab9491-3da1-45db-8157-e854c7f04b17" + "WESTUS2:20170327T195734Z:3013c54d-79e2-4d23-b41f-d5769910cf11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2930,23 +2516,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4af49cb4-e80f-4aba-ab80-27a897eb15e0" + "0baa7fc2-5a2f-4e1a-ace4-1898eaa5254e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2961,7 +2546,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:35 GMT" + "Mon, 27 Mar 2017 19:57:35 GMT" ], "Pragma": [ "no-cache" @@ -2973,7 +2558,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "04aee8e0-530d-49aa-b956-d5abb97df494" + "516b2981-1a9c-4c6f-94d8-4501245ab4aa" ], "X-Content-Type-Options": [ "nosniff" @@ -2985,13 +2570,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14984" ], "x-ms-correlation-request-id": [ - "9a9e23a0-823a-4992-b801-de2a556a96a2" + "f8059350-9e5f-4165-9f1a-2c81851380cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195035Z:9a9e23a0-823a-4992-b801-de2a556a96a2" + "WESTUS2:20170327T195735Z:f8059350-9e5f-4165-9f1a-2c81851380cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3000,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n}", "RequestHeaders": { @@ -3012,17 +2597,16 @@ "68" ], "x-ms-client-request-id": [ - "660695b2-12de-410d-aab5-25a9c7fda950" + "0a9dbcf0-382c-4b73-b28b-112c311a7f36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3037,7 +2621,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:33 GMT" + "Mon, 27 Mar 2017 19:57:33 GMT" ], "Pragma": [ "no-cache" @@ -3049,7 +2633,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4e00faa7-7128-4700-8efa-6ec0229d2fa6" + "87f87092-42e5-485a-b7ab-9c2b492d2cf0" ], "X-Content-Type-Options": [ "nosniff" @@ -3061,13 +2645,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1186" ], "x-ms-correlation-request-id": [ - "e98df333-5939-4529-a138-70859c604cdb" + "9ae684ee-fd2d-425e-9341-ecad59dda91f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195033Z:e98df333-5939-4529-a138-70859c604cdb" + "WESTUS2:20170327T195734Z:9ae684ee-fd2d-425e-9341-ecad59dda91f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3076,23 +2660,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c194666c-9460-4e56-8d6f-0fa837622d47" + "175e3d12-93e2-42bc-833a-837f7e62a82c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3107,7 +2690,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:34 GMT" + "Mon, 27 Mar 2017 19:57:34 GMT" ], "Pragma": [ "no-cache" @@ -3119,7 +2702,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "494744a0-26cb-4f68-b72c-03ba35bb226a" + "78f0ce54-0726-4f82-9163-76dd501f979a" ], "X-Content-Type-Options": [ "nosniff" @@ -3131,13 +2714,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14986" ], "x-ms-correlation-request-id": [ - "5e5d6f78-7052-4256-b537-2cd3feeef488" + "b3634bd7-d8a8-40bc-be9c-7d27fb760ad7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195035Z:5e5d6f78-7052-4256-b537-2cd3feeef488" + "WESTUS2:20170327T195735Z:b3634bd7-d8a8-40bc-be9c-7d27fb760ad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3146,23 +2729,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b05320ca-7651-4eb3-993f-a1414dc5d687" + "b01f2092-5ce8-405c-9585-23dea7f1c291" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3177,7 +2759,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:35 GMT" + "Mon, 27 Mar 2017 19:57:36 GMT" ], "Pragma": [ "no-cache" @@ -3189,7 +2771,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ce7c4015-beeb-4eb1-8ad6-20cc0a8c55d9" + "3eb39ba9-6350-42a9-bb18-eac2ef404a9f" ], "X-Content-Type-Options": [ "nosniff" @@ -3201,13 +2783,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14968" ], "x-ms-correlation-request-id": [ - "e44a4200-ea5e-4bf7-a85f-e32e70647847" + "28dfe033-8bfa-4078-b1e3-14e575a3ff56" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195036Z:e44a4200-ea5e-4bf7-a85f-e32e70647847" + "WESTUS2:20170327T195737Z:28dfe033-8bfa-4078-b1e3-14e575a3ff56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3216,20 +2798,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07ddfc90-9588-41ae-9a95-1890ff846150" + "105ec700-cc91-4a7e-882e-8b18201df5ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3247,7 +2828,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:35 GMT" + "Mon, 27 Mar 2017 19:57:36 GMT" ], "Pragma": [ "no-cache" @@ -3256,7 +2837,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "d65eed26-9f95-4f87-8d5c-0fd29acc810c" + "c79d524c-be72-4061-ac3b-9a4e9582c74b" ], "X-AspNet-Version": [ "4.0.30319" @@ -3265,13 +2846,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "2601c0d1-87d0-43a7-9b88-c66bba58b114" + "ab95e508-49fc-450f-a2d9-ecd2c7132879" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195036Z:2601c0d1-87d0-43a7-9b88-c66bba58b114" + "WESTUS2:20170327T195736Z:ab95e508-49fc-450f-a2d9-ecd2c7132879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,20 +2861,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aed6312b-9b8d-403b-ba59-b46f49693fd8" + "e1eaf294-65fa-4f2e-9645-3fed27c64225" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Storage Account does not exist.\"\r\n }\r\n}", @@ -3314,7 +2894,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:37 GMT" + "Mon, 27 Mar 2017 19:57:37 GMT" ], "Pragma": [ "no-cache" @@ -3323,7 +2903,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "b17a7f44-eab8-44ff-92d1-0b29932fc19b" + "66fe9d34-6e3c-4a23-ba32-19dd07bf6aee" ], "X-Content-Type-Options": [ "nosniff" @@ -3335,13 +2915,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14962" ], "x-ms-correlation-request-id": [ - "a89d87f8-8f16-44df-b018-faf662448962" + "1579888f-428c-4c04-9fd5-c36d85290e55" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195037Z:a89d87f8-8f16-44df-b018-faf662448962" + "WESTUS2:20170327T195737Z:1579888f-428c-4c04-9fd5-c36d85290e55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3350,23 +2930,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5abd4d83-7346-48a6-83f9-cce839f6d0af" + "b398dba0-e1d1-407b-b92b-62db604b695a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/storageAccounts/testazureblob15124\",\r\n \"name\": \"testazureblob15124\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/storageAccounts/testazureblob11922\",\r\n \"name\": \"testazureblob11922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3381,7 +2960,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:39 GMT" + "Mon, 27 Mar 2017 19:57:40 GMT" ], "Pragma": [ "no-cache" @@ -3393,7 +2972,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e8250520-1851-46d7-96f7-3291c5fa8529" + "3b8cf345-0662-4928-9d7a-a3324ffc3b58" ], "X-Content-Type-Options": [ "nosniff" @@ -3405,13 +2984,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14979" ], "x-ms-correlation-request-id": [ - "a9879b15-2ad3-4404-b806-31a8ad36f4f0" + "8446a8ac-02e6-4bfe-9e0a-23751fde1e79" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195039Z:a9879b15-2ad3-4404-b806-31a8ad36f4f0" + "WESTUS2:20170327T195741Z:8446a8ac-02e6-4bfe-9e0a-23751fde1e79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3420,23 +2999,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef6e7e40-ba52-4826-9fa7-128dbfe7afdf" + "a6253ea4-a228-4fa8-ab3e-4cda8e331c41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/storageAccounts/testazureblob15124\",\r\n \"name\": \"testazureblob15124\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/storageAccounts/testazureblob11922\",\r\n \"name\": \"testazureblob11922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3451,7 +3029,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:40 GMT" + "Mon, 27 Mar 2017 19:57:41 GMT" ], "Pragma": [ "no-cache" @@ -3463,7 +3041,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92fd1715-f49c-4989-ac92-7178b6ef6dc0" + "de6cadb5-27b1-487c-a9c5-a727d1e60dfe" ], "X-Content-Type-Options": [ "nosniff" @@ -3475,13 +3053,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-correlation-request-id": [ - "6705c0b5-92b1-4c0d-bee8-d0a1bfbade58" + "0a7eb17a-3fd7-40c1-ac4c-d7938a6285ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195040Z:6705c0b5-92b1-4c0d-bee8-d0a1bfbade58" + "WESTUS2:20170327T195742Z:0a7eb17a-3fd7-40c1-ac4c-d7938a6285ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3490,10 +3068,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"yQ/DxMh2BtDNHZyNqJ3zNzBdeQ7nxD7/t42uPWPTIWIfAdGGnG4eA6zu58oxFCql8xr4/8rQ2hGY3z2fvTI+hA==\",\r\n \"suffix\": \"core.windows.net\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"+rWcrDb+L9Gag5otj/Rn5jov+EQZFSmTJ6cpzBqAPkDlx5DCS4NoOMifGxPAns98JkVoNSq0lni5NOEp4snhpA==\",\r\n \"suffix\": \"core.windows.net\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3502,17 +3080,16 @@ "172" ], "x-ms-client-request-id": [ - "a05ebc95-2fe5-4b73-8922-21efac8ef7e5" + "77af27aa-6189-447c-8245-d4d1ff13bb17" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/storageAccounts/testazureblob15124\",\r\n \"name\": \"testazureblob15124\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/storageAccounts/testazureblob11922\",\r\n \"name\": \"testazureblob11922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3527,7 +3104,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:38 GMT" + "Mon, 27 Mar 2017 19:57:39 GMT" ], "Pragma": [ "no-cache" @@ -3539,7 +3116,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "25c03f2c-1ac3-47bb-bd60-0a0bcad87551" + "e3daabd6-874d-4e81-93c4-986017b16879" ], "X-Content-Type-Options": [ "nosniff" @@ -3551,13 +3128,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "79c1fc7d-5f4d-4459-b5ac-a8ccf94f6073" + "33bb79c7-4901-4268-936c-af4a2ed1a3bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195039Z:79c1fc7d-5f4d-4459-b5ac-a8ccf94f6073" + "WESTUS2:20170327T195739Z:33bb79c7-4901-4268-936c-af4a2ed1a3bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3566,23 +3143,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d2627f9-5424-47f7-8fea-70899debb7c4" + "dd13b64a-7832-4eb9-8225-98b93a8ae43a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/storageAccounts/testazureblob15124\",\r\n \"name\": \"testazureblob15124\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/storageAccounts/testazureblob11922\",\r\n \"name\": \"testazureblob11922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3597,7 +3173,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:39 GMT" + "Mon, 27 Mar 2017 19:57:41 GMT" ], "Pragma": [ "no-cache" @@ -3609,7 +3185,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2c99d37c-1779-4972-9dbd-df9785842b5a" + "e8bd17c5-7f18-4aa1-8815-810f68fb2ef4" ], "X-Content-Type-Options": [ "nosniff" @@ -3621,13 +3197,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14984" ], "x-ms-correlation-request-id": [ - "9a0404b2-524c-4c80-be1c-51f8c77ded4c" + "c72525c0-4110-41be-9a89-d9b1452e3b14" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195040Z:9a0404b2-524c-4c80-be1c-51f8c77ded4c" + "WESTUS2:20170327T195741Z:c72525c0-4110-41be-9a89-d9b1452e3b14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3636,20 +3212,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be26ec79-508d-4b06-82de-b50eff9b0ce7" + "dc95500b-7a6e-4a10-9597-5d5ed5cec727" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3667,7 +3242,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:41 GMT" + "Mon, 27 Mar 2017 19:57:43 GMT" ], "Pragma": [ "no-cache" @@ -3679,7 +3254,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b2963da8-cfed-48d4-a9b0-bc6ac7e5334b" + "275d2582-3893-442f-b515-5e5320bbf68c" ], "X-Content-Type-Options": [ "nosniff" @@ -3691,13 +3266,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14969" ], "x-ms-correlation-request-id": [ - "639f7cc2-f21c-479f-a7a3-dd70dc512779" + "7599de99-437b-4672-96d8-f85fd4f67e67" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195041Z:639f7cc2-f21c-479f-a7a3-dd70dc512779" + "WESTUS2:20170327T195743Z:7599de99-437b-4672-96d8-f85fd4f67e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3706,20 +3281,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "105908c2-e05f-4d74-9ec7-8fffa1f228af" + "9ec0781e-f8c7-42de-b2e5-0ca186366ed6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3737,7 +3311,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:41 GMT" + "Mon, 27 Mar 2017 19:57:42 GMT" ], "Pragma": [ "no-cache" @@ -3746,7 +3320,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "5b1d6b9a-b395-4e2a-9f7b-a5648b2d6ac7" + "551be30b-aced-4c58-81da-2064ca072135" ], "X-AspNet-Version": [ "4.0.30319" @@ -3755,13 +3329,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1187" ], "x-ms-correlation-request-id": [ - "05e0beef-de67-4ad7-98fb-d0946bc2110d" + "71bbff09-89b3-4a50-a8d0-4b80f3982ae1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195041Z:05e0beef-de67-4ad7-98fb-d0946bc2110d" + "WESTUS2:20170327T195743Z:71bbff09-89b3-4a50-a8d0-4b80f3982ae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3770,20 +3344,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8819dfe9-e588-4346-84bc-92626f71f43b" + "84f6a772-66e8-442e-a404-fbb25ba40168" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3801,7 +3374,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:45 GMT" + "Mon, 27 Mar 2017 19:57:46 GMT" ], "Pragma": [ "no-cache" @@ -3810,7 +3383,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "f81dec8b-528a-4029-9f45-6385b984e6f0" + "7414fc15-b407-42b4-bec2-276bcddfdb5a" ], "X-AspNet-Version": [ "4.0.30319" @@ -3819,13 +3392,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "f50cc1ae-5bfc-4d32-81c5-177c835c08a2" + "939bd65e-b422-4611-a684-96480a7676f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195046Z:f50cc1ae-5bfc-4d32-81c5-177c835c08a2" + "WESTUS2:20170327T195747Z:939bd65e-b422-4611-a684-96480a7676f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3834,20 +3407,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e0ef8d2-7588-4257-ab6b-be4c8a855064" + "47e232c3-c459-486e-b933-ea45276553ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3859,22 +3431,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:50:46 GMT" + "Mon, 27 Mar 2017 19:57:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1185" ], "x-ms-request-id": [ - "b525443d-9d64-4255-a832-1ef4f85bd06b" + "3d9e5995-e11b-43c3-a3d7-f1520b43286d" ], "x-ms-correlation-request-id": [ - "b525443d-9d64-4255-a832-1ef4f85bd06b" + "3d9e5995-e11b-43c3-a3d7-f1520b43286d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195046Z:b525443d-9d64-4255-a832-1ef4f85bd06b" + "WESTUS2:20170327T195747Z:3d9e5995-e11b-43c3-a3d7-f1520b43286d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3883,20 +3455,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "695b1371-1b5e-4dba-84a7-8df1fb9e40d2" + "16d9e2ce-31a4-4b5e-9a91-73eb1fa7557c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3908,22 +3479,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:50:46 GMT" + "Mon, 27 Mar 2017 19:57:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1184" ], "x-ms-request-id": [ - "dbe02045-4ea9-48bc-ba8e-1d0c6b74cf11" + "33a71819-ae82-49df-a7fe-f2b9d142d4ff" ], "x-ms-correlation-request-id": [ - "dbe02045-4ea9-48bc-ba8e-1d0c6b74cf11" + "33a71819-ae82-49df-a7fe-f2b9d142d4ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195046Z:dbe02045-4ea9-48bc-ba8e-1d0c6b74cf11" + "WESTUS2:20170327T195747Z:33a71819-ae82-49df-a7fe-f2b9d142d4ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3932,20 +3503,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7590c928-d1d2-4713-9d93-cac8cd65529f" + "15e56905-1b4a-4070-a115-bdd42c1e219e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3957,22 +3527,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:50:46 GMT" + "Mon, 27 Mar 2017 19:57:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1183" ], "x-ms-request-id": [ - "ae603000-0721-400e-aac7-38b77b2a8009" + "a477942f-2bcf-41b6-a8f1-887050be83ae" ], "x-ms-correlation-request-id": [ - "ae603000-0721-400e-aac7-38b77b2a8009" + "a477942f-2bcf-41b6-a8f1-887050be83ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195046Z:ae603000-0721-400e-aac7-38b77b2a8009" + "WESTUS2:20170327T195747Z:a477942f-2bcf-41b6-a8f1-887050be83ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3983,21 +3553,21 @@ ], "Names": { ".ctor": [ - "rgaba14971", - "testaba13253", - "testaba29188", - "teststorage19707", - "testdatalake12545", - "testdatalake29426", - "testazureblob15124", - "testdb17166", - "testtbl17651", - "testtvf18821", - "testproc14472", - "testview1701", - "testcred19877", - "testsecret15866", - "testsecretpwd18662" + "rgaba19246", + "testaba13568", + "testaba28225", + "teststorage1565", + "testdatalake16677", + "testdatalake29664", + "testazureblob11922", + "testdb19233", + "testtbl15999", + "testtvf13248", + "testproc17303", + "testview17851", + "testcred17603", + "testsecret12540", + "testsecretpwd11630" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json index 1cc2fcd0507e..80a62be9bf4b 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json @@ -1,23 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8eaea465-bd70-4a28-82be-26a9e23aa13a" + "bfb9a890-7961-4513-9f1d-3839841d6264" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +28,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:42 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +40,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1193" ], "x-ms-request-id": [ - "9efe6b76-c093-4e3e-ae47-4e14829d06d9" + "54bb36d8-5580-4e23-bfa6-aa562c727787" ], "x-ms-correlation-request-id": [ - "9efe6b76-c093-4e3e-ae47-4e14829d06d9" + "54bb36d8-5580-4e23-bfa6-aa562c727787" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005728Z:9efe6b76-c093-4e3e-ae47-4e14829d06d9" + "WESTUS2:20170327T200742Z:54bb36d8-5580-4e23-bfa6-aa562c727787" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,23 +58,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99f35b36-af45-4b74-9705-3498967f8461" + "dff1be36-8aa0-44f6-a197-9bdc81b47caa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:42 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14978" ], "x-ms-request-id": [ - "e9630a3f-d09d-4bf9-b4a2-18fd0f4fb41c" + "2362cbfb-db06-4698-a7dd-b75a540c507b" ], "x-ms-correlation-request-id": [ - "e9630a3f-d09d-4bf9-b4a2-18fd0f4fb41c" + "2362cbfb-db06-4698-a7dd-b75a540c507b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005728Z:e9630a3f-d09d-4bf9-b4a2-18fd0f4fb41c" + "WESTUS2:20170327T200742Z:2362cbfb-db06-4698-a7dd-b75a540c507b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,23 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage/register?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac7d5045-8ff2-4ebd-8d66-11fcec57a2fd" + "7a91b667-63c0-4de3-9b38-6b969f717247" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"cd0cad5c-ac96-4c4c-99cd-cfafc285ba36\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/customKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listReadOnlyKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/generateSasCredentials\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +139,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:43 GMT" ], "Pragma": [ "no-cache" @@ -154,16 +151,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1192" ], "x-ms-request-id": [ - "cc2edf6a-472d-4e91-8a5d-b48e45518678" + "d9d4c10b-3d71-4eaa-9c09-ad7b35707a10" ], "x-ms-correlation-request-id": [ - "cc2edf6a-472d-4e91-8a5d-b48e45518678" + "d9d4c10b-3d71-4eaa-9c09-ad7b35707a10" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:cc2edf6a-472d-4e91-8a5d-b48e45518678" + "WESTUS2:20170327T200743Z:d9d4c10b-3d71-4eaa-9c09-ad7b35707a10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +169,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe4f9091-0894-451f-9d5f-f38aad4f9ce3" + "97610ad4-bc5d-493f-8060-661bbb89f0a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"cd0cad5c-ac96-4c4c-99cd-cfafc285ba36\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/customKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listReadOnlyKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/generateSasCredentials\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:43 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14977" ], "x-ms-request-id": [ - "ad3a0b89-5c31-4f64-b27e-030604686d44" + "afc049bd-89c8-4407-a2b3-bbadb8b9880a" ], "x-ms-correlation-request-id": [ - "ad3a0b89-5c31-4f64-b27e-030604686d44" + "afc049bd-89c8-4407-a2b3-bbadb8b9880a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:ad3a0b89-5c31-4f64-b27e-030604686d44" + "WESTUS2:20170327T200743Z:afc049bd-89c8-4407-a2b3-bbadb8b9880a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/register?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "834f0fbe-b436-4ff9-91fc-6f18496d5374" + "1152b78c-9d96-42f3-a948-b73c0de50340" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"41c47f4b-8b45-4522-a73a-d20b16f0f1ec\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -255,7 +250,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:44 GMT" ], "Pragma": [ "no-cache" @@ -267,16 +262,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1191" ], "x-ms-request-id": [ - "0551c5a8-2089-4b3e-b843-a48c2289f829" + "3db134a7-ff59-42ab-ab95-3aee35d07b22" ], "x-ms-correlation-request-id": [ - "0551c5a8-2089-4b3e-b843-a48c2289f829" + "3db134a7-ff59-42ab-ab95-3aee35d07b22" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:0551c5a8-2089-4b3e-b843-a48c2289f829" + "WESTUS2:20170327T200744Z:3db134a7-ff59-42ab-ab95-3aee35d07b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,23 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4ede27f-9495-4082-a15c-bef073537400" + "6a57517e-495e-4606-a72b-4679bf7c61ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"41c47f4b-8b45-4522-a73a-d20b16f0f1ec\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -313,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:44 GMT" ], "Pragma": [ "no-cache" @@ -322,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14976" ], "x-ms-request-id": [ - "f3b112a7-ffc3-4d63-b0f5-1cc41e9e13ee" + "4b678c23-7ed7-4455-ade8-777aa21aab22" ], "x-ms-correlation-request-id": [ - "f3b112a7-ffc3-4d63-b0f5-1cc41e9e13ee" + "4b678c23-7ed7-4455-ade8-777aa21aab22" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:f3b112a7-ffc3-4d63-b0f5-1cc41e9e13ee" + "WESTUS2:20170327T200744Z:4b678c23-7ed7-4455-ade8-777aa21aab22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTI5MzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMxOTY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d15ff59e-7093-43c0-9590-3325c8bcbfea" + "7d9f8e26-2f17-43e4-97aa-7df95612beb4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba12931' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba13196' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -371,7 +364,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:44 GMT" ], "Pragma": [ "no-cache" @@ -380,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14975" ], "x-ms-request-id": [ - "c0deaec1-6cf6-497a-a2c1-2ac2388a263c" + "761b605f-13f3-4bfe-b28c-f0e874e5c95a" ], "x-ms-correlation-request-id": [ - "c0deaec1-6cf6-497a-a2c1-2ac2388a263c" + "761b605f-13f3-4bfe-b28c-f0e874e5c95a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:c0deaec1-6cf6-497a-a2c1-2ac2388a263c" + "WESTUS2:20170327T200744Z:761b605f-13f3-4bfe-b28c-f0e874e5c95a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -398,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTI5MzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMxOTY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b7c9b53-795d-4802-b2a1-44c4dbb791ae" + "c3e15978-9adc-4449-9fcf-e9c200b9c0dc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931\",\r\n \"name\": \"rgaba12931\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196\",\r\n \"name\": \"rgaba13196\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +418,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:45 GMT" ], "Pragma": [ "no-cache" @@ -435,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14974" ], "x-ms-request-id": [ - "fd038865-2695-4b47-965c-c590457e5435" + "029dfda1-43ff-4dbd-8784-08c87359cfaa" ], "x-ms-correlation-request-id": [ - "fd038865-2695-4b47-965c-c590457e5435" + "029dfda1-43ff-4dbd-8784-08c87359cfaa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:fd038865-2695-4b47-965c-c590457e5435" + "WESTUS2:20170327T200745Z:029dfda1-43ff-4dbd-8784-08c87359cfaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTI5MzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMxOTY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -465,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "a3dba4d8-8193-4f62-83e1-7490fb6fdd85" + "631c42bd-6c9e-4604-925e-e45f07675d92" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931\",\r\n \"name\": \"rgaba12931\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196\",\r\n \"name\": \"rgaba13196\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -490,22 +481,22 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1190" ], "x-ms-request-id": [ - "74f81537-f0f9-45fd-a9ca-f31f4760add3" + "1cc0d71d-7c54-45ba-b6d8-90a0c3cc21e7" ], "x-ms-correlation-request-id": [ - "74f81537-f0f9-45fd-a9ca-f31f4760add3" + "1cc0d71d-7c54-45ba-b6d8-90a0c3cc21e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:74f81537-f0f9-45fd-a9ca-f31f4760add3" + "WESTUS2:20170327T200745Z:1cc0d71d-7c54-45ba-b6d8-90a0c3cc21e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +505,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3ODk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzUzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac63b629-fa62-4152-b3ed-91d28529fea7" + "f787a8f8-59c6-4ccd-b411-ca9e8bcba41d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake17894' under resource group 'rgaba12931' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18353' under resource group 'rgaba13196' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -545,7 +535,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:45 GMT" ], "Pragma": [ "no-cache" @@ -554,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "4ed2aa46-a282-4f3e-bd43-cae52ac03eb6" + "2bfe3c1f-d3c2-4d69-8c39-2851f5f1c080" ], "x-ms-correlation-request-id": [ - "4ed2aa46-a282-4f3e-bd43-cae52ac03eb6" + "2bfe3c1f-d3c2-4d69-8c39-2851f5f1c080" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005730Z:4ed2aa46-a282-4f3e-bd43-cae52ac03eb6" + "WESTUS2:20170327T200746Z:2bfe3c1f-d3c2-4d69-8c39-2851f5f1c080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3ODk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzUzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake17894.caboaccountdogfood.net\",\r\n \"accountId\": \"e130250b-7de9-41f9-98fd-7751b5136107\",\r\n \"creationTime\": \"2017-02-09T00:57:32.2481764Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:57:32.2481764Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894\",\r\n \"name\": \"testdatalake17894\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18353.azuredatalakestore.net\",\r\n \"accountId\": \"e365ae3d-62e8-4cd5-a0bb-5d33eb6d3512\",\r\n \"creationTime\": \"2017-03-27T20:07:48.0007007Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:07:48.0007007Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353\",\r\n \"name\": \"testdatalake18353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -594,7 +583,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:01 GMT" + "Mon, 27 Mar 2017 20:08:18 GMT" ], "Pragma": [ "no-cache" @@ -606,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26cd3627-ce4f-4ad7-bed6-18c65dc8ae2f" + "421f43f1-21e1-4405-897f-d7ad6f03d08a" ], "X-Content-Type-Options": [ "nosniff" @@ -618,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14979" ], "x-ms-correlation-request-id": [ - "5403db96-d75b-43f1-9730-80671d336bdb" + "78c52422-8b50-4172-8cbf-70dd348c6155" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005801Z:5403db96-d75b-43f1-9730-80671d336bdb" + "WESTUS2:20170327T200818Z:78c52422-8b50-4172-8cbf-70dd348c6155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3ODk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzUzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8ba0a74-2b94-4e64-ba8c-fa762e362395" + "89bbbfcc-7df1-47ee-bfc2-225c4a4c4279" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake17894.caboaccountdogfood.net\",\r\n \"accountId\": \"e130250b-7de9-41f9-98fd-7751b5136107\",\r\n \"creationTime\": \"2017-02-09T00:57:32.2481764Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:57:32.2481764Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894\",\r\n \"name\": \"testdatalake17894\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18353.azuredatalakestore.net\",\r\n \"accountId\": \"e365ae3d-62e8-4cd5-a0bb-5d33eb6d3512\",\r\n \"creationTime\": \"2017-03-27T20:07:48.0007007Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:07:48.0007007Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353\",\r\n \"name\": \"testdatalake18353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -664,7 +652,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:02 GMT" + "Mon, 27 Mar 2017 20:08:18 GMT" ], "Pragma": [ "no-cache" @@ -676,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "850466a3-ce1a-4fd5-9324-773326adf89b" + "a3817187-68bd-4ccc-a36e-20fa4c50dbbf" ], "X-Content-Type-Options": [ "nosniff" @@ -688,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14980" ], "x-ms-correlation-request-id": [ - "40270ec3-2923-4192-b390-5fddcc4c8af5" + "3850c114-6b12-4710-8557-ec4baa1276a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005802Z:40270ec3-2923-4192-b390-5fddcc4c8af5" + "WESTUS2:20170327T200819Z:3850c114-6b12-4710-8557-ec4baa1276a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -703,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3ODk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzUzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -715,17 +703,16 @@ "31" ], "x-ms-client-request-id": [ - "5d27ef8b-8544-4809-a7ae-517e2b55bf9e" + "cab59ddf-7fa6-4810-801a-d6ff77dbdbc1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e130250b-7de9-41f9-98fd-7751b5136107\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894\",\r\n \"name\": \"testdatalake17894\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e365ae3d-62e8-4cd5-a0bb-5d33eb6d3512\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353\",\r\n \"name\": \"testdatalake18353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -743,13 +730,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -758,10 +745,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e130250b-7de9-41f9-98fd-7751b51361070?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e365ae3d-62e8-4cd5-a0bb-5d33eb6d35120?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "6c66f98b-d8f2-4c6b-94c8-699bcbdb22b6" + "5ddd5f4a-5a9b-4405-8171-6332da075a9e" ], "X-Content-Type-Options": [ "nosniff" @@ -773,13 +760,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1108" + "1179" ], "x-ms-correlation-request-id": [ - "560c4b24-7454-4412-80a1-78d77eba5f16" + "1dfb9879-1094-4dc1-a82d-b214cdceb5bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005730Z:560c4b24-7454-4412-80a1-78d77eba5f16" + "WESTUS2:20170327T200747Z:1dfb9879-1094-4dc1-a82d-b214cdceb5bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,14 +775,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e130250b-7de9-41f9-98fd-7751b51361070?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2UxMzAyNTBiLTdkZTktNDFmOS05OGZkLTc3NTFiNTEzNjEwNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e365ae3d-62e8-4cd5-a0bb-5d33eb6d35120?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2UzNjVhZTNkLTYyZTgtNGNkNS1hMGJiLTVkMzNlYjZkMzUxMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -813,7 +799,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:01 GMT" + "Mon, 27 Mar 2017 20:08:18 GMT" ], "Pragma": [ "no-cache" @@ -825,7 +811,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e90ddcb0-0ca7-4636-af30-98c090e181fa" + "e7110c64-3b4f-4a8e-b369-04b8d3a84a83" ], "X-Content-Type-Options": [ "nosniff" @@ -837,13 +823,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14972" ], "x-ms-correlation-request-id": [ - "b5db0dae-0181-4afa-ba09-db04a53e1437" + "45b296dd-b286-4a77-a55c-10b58104f550" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005801Z:b5db0dae-0181-4afa-ba09-db04a53e1437" + "WESTUS2:20170327T200818Z:45b296dd-b286-4a77-a55c-10b58104f550" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,23 +838,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0MDUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05a5d5ad-9548-428c-a370-3dd9d12cb416" + "29161cc7-fbe1-4d32-846a-0b2567e06599" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake29778' under resource group 'rgaba12931' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake24051' under resource group 'rgaba13196' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -883,7 +868,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:58:02 GMT" + "Mon, 27 Mar 2017 20:08:19 GMT" ], "Pragma": [ "no-cache" @@ -892,13 +877,13 @@ "gateway" ], "x-ms-request-id": [ - "91e1e40b-6fde-4faf-a21f-9b3f1d4790bd" + "a308567d-0955-4794-9211-e731b0f7adf7" ], "x-ms-correlation-request-id": [ - "91e1e40b-6fde-4faf-a21f-9b3f1d4790bd" + "a308567d-0955-4794-9211-e731b0f7adf7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005802Z:91e1e40b-6fde-4faf-a21f-9b3f1d4790bd" + "WESTUS2:20170327T200819Z:a308567d-0955-4794-9211-e731b0f7adf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,17 +892,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0MDUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29778.caboaccountdogfood.net\",\r\n \"accountId\": \"e4a2edba-2951-4034-85cb-fdc28a8cf180\",\r\n \"creationTime\": \"2017-02-09T00:58:04.8180921Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:58:04.8180921Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778\",\r\n \"name\": \"testdatalake29778\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24051.azuredatalakestore.net\",\r\n \"accountId\": \"9059f9e4-275d-47d0-a30f-3a736b2f5216\",\r\n \"creationTime\": \"2017-03-27T20:08:20.8430813Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:08:20.8430813Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051\",\r\n \"name\": \"testdatalake24051\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -932,7 +916,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:32 GMT" + "Mon, 27 Mar 2017 20:08:51 GMT" ], "Pragma": [ "no-cache" @@ -944,7 +928,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9746b818-221f-44c9-80dc-1b0ec617a119" + "96816b05-e990-4beb-a322-9ac3a8c74380" ], "X-Content-Type-Options": [ "nosniff" @@ -956,13 +940,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14983" ], "x-ms-correlation-request-id": [ - "a725c4f7-cd9f-4371-825a-4f68dfbdcec4" + "d8e8d3a1-a160-4911-bb50-85e8ca9520c2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005833Z:a725c4f7-cd9f-4371-825a-4f68dfbdcec4" + "WESTUS2:20170327T200852Z:d8e8d3a1-a160-4911-bb50-85e8ca9520c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,23 +955,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0MDUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce5235f7-e00d-4ce1-8cd2-f791abebd06f" + "8693baa0-0383-4d8e-b6ae-318201c29757" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29778.caboaccountdogfood.net\",\r\n \"accountId\": \"e4a2edba-2951-4034-85cb-fdc28a8cf180\",\r\n \"creationTime\": \"2017-02-09T00:58:04.8180921Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:58:04.8180921Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778\",\r\n \"name\": \"testdatalake29778\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24051.azuredatalakestore.net\",\r\n \"accountId\": \"9059f9e4-275d-47d0-a30f-3a736b2f5216\",\r\n \"creationTime\": \"2017-03-27T20:08:20.8430813Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:08:20.8430813Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051\",\r\n \"name\": \"testdatalake24051\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1002,7 +985,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:33 GMT" + "Mon, 27 Mar 2017 20:08:52 GMT" ], "Pragma": [ "no-cache" @@ -1014,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a554598a-f6c4-46f0-8882-279824f13c7b" + "44a291ab-0fa2-4b57-820b-69b4930bdb8a" ], "X-Content-Type-Options": [ "nosniff" @@ -1026,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "14982" ], "x-ms-correlation-request-id": [ - "eff33e82-f659-4aba-af64-41f925344421" + "f69a88b7-3213-4640-9c16-9a89aac9927a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005834Z:eff33e82-f659-4aba-af64-41f925344421" + "WESTUS2:20170327T200852Z:f69a88b7-3213-4640-9c16-9a89aac9927a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,8 +1024,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0MDUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1053,17 +1036,16 @@ "31" ], "x-ms-client-request-id": [ - "c31ad513-0e60-4603-8084-9364c5a92f9f" + "4592fde6-2f0d-46f4-acd8-e055f70ec51a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e4a2edba-2951-4034-85cb-fdc28a8cf180\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778\",\r\n \"name\": \"testdatalake29778\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"9059f9e4-275d-47d0-a30f-3a736b2f5216\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051\",\r\n \"name\": \"testdatalake24051\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -1081,13 +1063,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:02 GMT" + "Mon, 27 Mar 2017 20:08:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1096,10 +1078,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e4a2edba-2951-4034-85cb-fdc28a8cf1800?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9059f9e4-275d-47d0-a30f-3a736b2f52160?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "6139bf61-c131-4877-a6a1-2a152945cc74" + "08e1aa68-ff46-4dd7-990e-2cf40f185a79" ], "X-Content-Type-Options": [ "nosniff" @@ -1111,13 +1093,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1107" + "1185" ], "x-ms-correlation-request-id": [ - "aaf16de3-81a4-403f-acb4-e394be223551" + "c746866a-3a21-4d33-a478-8acfef7287ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005803Z:aaf16de3-81a4-403f-acb4-e394be223551" + "WESTUS2:20170327T200821Z:c746866a-3a21-4d33-a478-8acfef7287ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1126,14 +1108,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e4a2edba-2951-4034-85cb-fdc28a8cf1800?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U0YTJlZGJhLTI5NTEtNDAzNC04NWNiLWZkYzI4YThjZjE4MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9059f9e4-275d-47d0-a30f-3a736b2f52160?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzkwNTlmOWU0LTI3NWQtNDdkMC1hMzBmLTNhNzM2YjJmNTIxNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1151,7 +1132,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:32 GMT" + "Mon, 27 Mar 2017 20:08:51 GMT" ], "Pragma": [ "no-cache" @@ -1163,7 +1144,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "106d84fc-b296-48ac-bda8-58a56e77acba" + "b26a745e-cb2e-40e6-99ed-9b2bf876d9b4" ], "X-Content-Type-Options": [ "nosniff" @@ -1175,13 +1156,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14986" ], "x-ms-correlation-request-id": [ - "fa018c7a-b29f-4694-b96f-4bbb9fae8b04" + "5cb1cadd-3d8f-4e4e-8afc-4e49a153aebc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005833Z:fa018c7a-b29f-4694-b96f-4bbb9fae8b04" + "WESTUS2:20170327T200851Z:5cb1cadd-3d8f-4e4e-8afc-4e49a153aebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1190,10 +1171,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17894\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"testdatalake17894\"\r\n }\r\n ],\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule16199\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18353\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18353\"\r\n }\r\n ],\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule13535\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1202,17 +1183,16 @@ "565" ], "x-ms-client-request-id": [ - "edbcda05-eb70-413a-ba94-b1be14240007" + "6161403c-70c6-4575-8fb7-e38413cc0ec6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule16199\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17894\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"testdatalake17894\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"332e952d-805b-45a5-9e05-4748a9396113\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194\",\r\n \"name\": \"adla017194\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule13535\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18353\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18353\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2277ec07-b358-4363-9669-36b2f2ddc62f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111\",\r\n \"name\": \"adla018111\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "743" @@ -1230,13 +1210,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:34 GMT" + "Mon, 27 Mar 2017 20:08:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1245,10 +1225,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/332e952d-805b-45a5-9e05-4748a93961130?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/2277ec07-b358-4363-9669-36b2f2ddc62f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ae4a6bef-6f19-478c-ba36-736a2df0f12f" + "4aaedc4c-1985-4bdf-a19a-e1ef36c36f1b" ], "X-Content-Type-Options": [ "nosniff" @@ -1260,13 +1240,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1179" ], "x-ms-correlation-request-id": [ - "b785f341-c72f-4c8c-b0be-23f697c53536" + "4d38fc45-ed6d-4b2e-b70e-199014265d47" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005835Z:b785f341-c72f-4c8c-b0be-23f697c53536" + "WESTUS2:20170327T200854Z:4d38fc45-ed6d-4b2e-b70e-199014265d47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,14 +1255,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/332e952d-805b-45a5-9e05-4748a93961130?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zMzJlOTUyZC04MDViLTQ1YTUtOWUwNS00NzQ4YTkzOTYxMTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/2277ec07-b358-4363-9669-36b2f2ddc62f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yMjc3ZWMwNy1iMzU4LTQzNjMtOTY2OS0zNmIyZjJkZGM2MmYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1300,7 +1279,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:05 GMT" + "Mon, 27 Mar 2017 20:09:24 GMT" ], "Pragma": [ "no-cache" @@ -1312,7 +1291,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2821c10d-d27b-4432-a669-00c3da08e1ed" + "0d7f53a5-5ad7-41b1-b5a9-2f04e5bc46d2" ], "X-Content-Type-Options": [ "nosniff" @@ -1324,13 +1303,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14979" ], "x-ms-correlation-request-id": [ - "01c7f52f-f5b7-42b2-ba62-b91203d7ad30" + "d955159d-0677-42b9-a8f2-19c1b26a57aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005905Z:01c7f52f-f5b7-42b2-ba62-b91203d7ad30" + "WESTUS2:20170327T200925Z:d955159d-0677-42b9-a8f2-19c1b26a57aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1339,17 +1318,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule16199\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17894\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"testdatalake17894\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 63,\r\n \"maxJobCount\": 3,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla017194.konaaccountdogfood.net\",\r\n \"accountId\": \"332e952d-805b-45a5-9e05-4748a9396113\",\r\n \"creationTime\": \"2017-02-09T00:58:40.2731661Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:58:40.2731661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194\",\r\n \"name\": \"adla017194\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule13535\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18353\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18353\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla018111.azuredatalakeanalytics.net\",\r\n \"accountId\": \"2277ec07-b358-4363-9669-36b2f2ddc62f\",\r\n \"creationTime\": \"2017-03-27T20:08:56.032894Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:08:56.032894Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111\",\r\n \"name\": \"adla018111\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1364,7 +1342,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:06 GMT" + "Mon, 27 Mar 2017 20:09:25 GMT" ], "Pragma": [ "no-cache" @@ -1376,7 +1354,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "914430d6-e1a8-4569-be47-518f1db96601" + "00c70748-92c8-4397-8574-a2525fa23e24" ], "X-Content-Type-Options": [ "nosniff" @@ -1388,13 +1366,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14978" ], "x-ms-correlation-request-id": [ - "35e4ea4b-5c39-42e7-aad2-8259ba6ea457" + "89baf1f4-44d9-4042-8603-43e73b36f018" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005906Z:35e4ea4b-5c39-42e7-aad2-8259ba6ea457" + "WESTUS2:20170327T200926Z:89baf1f4-44d9-4042-8603-43e73b36f018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1403,23 +1381,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5eabd96f-20f7-4f5c-abe6-e39809826957" + "cea40344-9204-4030-b8ef-c71eb10113d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule16199\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17894\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"testdatalake17894\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 63,\r\n \"maxJobCount\": 3,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla017194.konaaccountdogfood.net\",\r\n \"accountId\": \"332e952d-805b-45a5-9e05-4748a9396113\",\r\n \"creationTime\": \"2017-02-09T00:58:40.2731661Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:58:40.2731661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194\",\r\n \"name\": \"adla017194\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule13535\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18353\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18353\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla018111.azuredatalakeanalytics.net\",\r\n \"accountId\": \"2277ec07-b358-4363-9669-36b2f2ddc62f\",\r\n \"creationTime\": \"2017-03-27T20:08:56.032894Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:08:56.032894Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111\",\r\n \"name\": \"adla018111\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1434,7 +1411,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:06 GMT" + "Mon, 27 Mar 2017 20:09:26 GMT" ], "Pragma": [ "no-cache" @@ -1446,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bda2e76b-8225-496b-b067-67a17c362e77" + "873c66c9-d3a2-4f82-939f-ae316c61ccfb" ], "X-Content-Type-Options": [ "nosniff" @@ -1458,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "14966" ], "x-ms-correlation-request-id": [ - "3dfd7976-dd75-483f-9f2b-1fd8177be7cd" + "72812ef0-6a1d-48a1-b0f4-51b89988acec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005906Z:3dfd7976-dd75-483f-9f2b-1fd8177be7cd" + "WESTUS2:20170327T200926Z:72812ef0-6a1d-48a1-b0f4-51b89988acec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c894fbe-adff-4781-b06c-f14a38c9b637" + "c303241d-3042-4c3d-8a28-b688074cb8d6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199\",\r\n \"name\": \"firerule16199\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535\",\r\n \"name\": \"firerule13535\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1504,7 +1480,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:07 GMT" + "Mon, 27 Mar 2017 20:09:26 GMT" ], "Pragma": [ "no-cache" @@ -1516,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8c628ac6-bc39-4246-acb7-2415e7cc0473" + "d96bb873-00f7-4235-92b9-8818471c073a" ], "X-Content-Type-Options": [ "nosniff" @@ -1528,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" + "14970" ], "x-ms-correlation-request-id": [ - "b3182c48-1179-43c1-8d27-95c41c2dd996" + "ac0f596a-c00c-4c58-b1e2-ffcdae15a59b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005907Z:b3182c48-1179-43c1-8d27-95c41c2dd996" + "WESTUS2:20170327T200927Z:ac0f596a-c00c-4c58-b1e2-ffcdae15a59b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1543,20 +1519,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0a1fa63-9d0d-491d-a23a-f24e040eddd6" + "c0564ef7-48fb-4944-974e-1aa23502b7d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Firewall Rule does not exist.\"\r\n }\r\n}", @@ -1577,7 +1552,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:09 GMT" + "Mon, 27 Mar 2017 20:09:29 GMT" ], "Pragma": [ "no-cache" @@ -1586,7 +1561,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "8268c84a-f66b-48ff-a0b5-e82372a9b358" + "07719d9a-9fa6-4de3-a874-c6ce1c464f69" ], "X-Content-Type-Options": [ "nosniff" @@ -1598,13 +1573,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14971" ], "x-ms-correlation-request-id": [ - "0f73d278-75c7-46c3-bdb6-4a88780a7bd2" + "817a4ebb-858e-48c2-9f4b-ab30135344d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005910Z:0f73d278-75c7-46c3-bdb6-4a88780a7bd2" + "WESTUS2:20170327T200930Z:817a4ebb-858e-48c2-9f4b-ab30135344d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1613,29 +1588,28 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199\",\r\n \"name\": \"firerule16199\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"name\": \"firerule13535\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "370" + "129" ], "x-ms-client-request-id": [ - "ec125aeb-e83a-4afc-a1af-852a12154724" + "dbdee514-7838-490d-a6a1-1a06f1fd5e09" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199\",\r\n \"name\": \"firerule16199\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535\",\r\n \"name\": \"firerule13535\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1650,7 +1624,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:07 GMT" + "Mon, 27 Mar 2017 20:09:27 GMT" ], "Pragma": [ "no-cache" @@ -1662,7 +1636,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "65943f82-5c84-4522-8226-5ea639fb9b5e" + "ba1b3aaf-a15c-43db-b014-4acb15d7d39a" ], "X-Content-Type-Options": [ "nosniff" @@ -1674,13 +1648,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1181" ], "x-ms-correlation-request-id": [ - "87e2f560-7f42-48a2-98c4-b452f480ee2e" + "a79fcf75-07f7-4d72-b158-5f38392d16c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005908Z:87e2f560-7f42-48a2-98c4-b452f480ee2e" + "WESTUS2:20170327T200927Z:a79fcf75-07f7-4d72-b158-5f38392d16c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1689,8 +1663,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\"\r\n }\r\n}", "RequestHeaders": { @@ -1701,17 +1675,16 @@ "63" ], "x-ms-client-request-id": [ - "66f6f239-b8ff-4845-836e-9b96c2cbbfe9" + "8e9e64cd-5a60-4b08-8a49-39341b26ed8a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199\",\r\n \"name\": \"firerule16199\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535\",\r\n \"name\": \"firerule13535\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1726,7 +1699,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:08 GMT" + "Mon, 27 Mar 2017 20:09:27 GMT" ], "Pragma": [ "no-cache" @@ -1738,7 +1711,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6603b072-24b4-4113-ab8c-a0494e8ca89c" + "797f51f7-af9d-4102-97bd-e67e0707c326" ], "X-Content-Type-Options": [ "nosniff" @@ -1750,13 +1723,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1094" + "1189" ], "x-ms-correlation-request-id": [ - "9bf742e0-b1e3-4e67-8c94-df7c0d872db3" + "4ae4b670-e60d-474f-bd1e-42031a69fe83" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005909Z:9bf742e0-b1e3-4e67-8c94-df7c0d872db3" + "WESTUS2:20170327T200928Z:4ae4b670-e60d-474f-bd1e-42031a69fe83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1765,20 +1738,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22b23cd6-ff45-4023-a1b6-0bf2ca2eaf84" + "40a5f2cf-1e7f-43db-84e8-471605000820" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1796,7 +1768,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:09 GMT" + "Mon, 27 Mar 2017 20:09:29 GMT" ], "Pragma": [ "no-cache" @@ -1805,7 +1777,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "c567e538-4c8c-4cea-84b2-1b3ef363c63f" + "f5d8d45e-e8be-4b11-9a7c-6dd2a2bf4b0c" ], "X-AspNet-Version": [ "4.0.30319" @@ -1814,13 +1786,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1117" + "1178" ], "x-ms-correlation-request-id": [ - "f591de15-5a2b-4a02-99f5-6feeeef749ac" + "04dfa87e-0bce-4c26-9a3a-3288c2a0709f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005909Z:f591de15-5a2b-4a02-99f5-6feeeef749ac" + "WESTUS2:20170327T200929Z:04dfa87e-0bce-4c26-9a3a-3288c2a0709f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1831,28 +1803,28 @@ ], "Names": { ".ctor": [ - "rgaba12931", - "testaba18423", - "testaba24535", - "teststorage15609", - "testdatalake17894", - "testdatalake29778", - "testazureblob19059", - "testdb16583", - "testtbl11696", - "testtvf18636", - "testproc11077", - "testview14399", - "testcred15240", - "testsecret11927", - "testsecretpwd14827" + "rgaba13196", + "testaba13111", + "testaba21208", + "teststorage17623", + "testdatalake18353", + "testdatalake24051", + "testazureblob17712", + "testdb13182", + "testtbl12897", + "testtvf11789", + "testproc12646", + "testview19466", + "testcred18093", + "testsecret1876", + "testsecretpwd15552" ], "FirewallTest": [ - "firerule16199", - "adla017194" + "firerule13535", + "adla018111" ] }, "Variables": { - "SubscriptionId": "90585f39-ab85-4921-bb37-0468f7efd1dd" + "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" } } \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json index 91ba936e6e4c..d4511731fffe 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d62d76-1881-4222-ba8c-930de5a0a14e" + "14de18e7-9059-4a43-acde-3f531a4175b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:52 GMT" + "Mon, 27 Mar 2017 20:14:08 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1179" ], "x-ms-request-id": [ - "01e42cd3-c7d9-41cf-b787-4d6569212975" + "b34f66f7-695b-44e6-b8f4-19789d07eb6a" ], "x-ms-correlation-request-id": [ - "01e42cd3-c7d9-41cf-b787-4d6569212975" + "b34f66f7-695b-44e6-b8f4-19789d07eb6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181153Z:01e42cd3-c7d9-41cf-b787-4d6569212975" + "WESTUS2:20170327T201408Z:b34f66f7-695b-44e6-b8f4-19789d07eb6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3743098e-6314-4d6a-8a0e-b4ab1761ee7c" + "6f7ce604-d91a-488f-b043-a5b7895bff48" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:52 GMT" + "Mon, 27 Mar 2017 20:14:08 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14964" ], "x-ms-request-id": [ - "1edc91dd-c0d3-42c2-a09b-b5f0d511f6a9" + "e1590ad1-1dd4-4d06-b7b7-c5aa3dfbc92d" ], "x-ms-correlation-request-id": [ - "1edc91dd-c0d3-42c2-a09b-b5f0d511f6a9" + "e1590ad1-1dd4-4d06-b7b7-c5aa3dfbc92d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181153Z:1edc91dd-c0d3-42c2-a09b-b5f0d511f6a9" + "WESTUS2:20170327T201408Z:e1590ad1-1dd4-4d06-b7b7-c5aa3dfbc92d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63401c7f-0b85-4d69-84b7-cca4ce1527c9" + "8fbdace2-d387-42e4-ac93-a85b8d393c09" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:53 GMT" + "Mon, 27 Mar 2017 20:14:09 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1178" ], "x-ms-request-id": [ - "59625a08-6c47-4411-a121-0051c4b4b089" + "48a72ab4-b425-47b3-a868-6e20f41b5d6d" ], "x-ms-correlation-request-id": [ - "59625a08-6c47-4411-a121-0051c4b4b089" + "48a72ab4-b425-47b3-a868-6e20f41b5d6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:59625a08-6c47-4411-a121-0051c4b4b089" + "WESTUS2:20170327T201409Z:48a72ab4-b425-47b3-a868-6e20f41b5d6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f68dcb6-621a-43ec-aede-95ee031db131" + "5876035f-21c8-416a-acdc-c08ef3c2045e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:53 GMT" + "Mon, 27 Mar 2017 20:14:09 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14963" ], "x-ms-request-id": [ - "64208c8e-e071-404a-8670-ae3302165eb8" + "50c76ffe-003a-4852-8c2b-c7881681b6c7" ], "x-ms-correlation-request-id": [ - "64208c8e-e071-404a-8670-ae3302165eb8" + "50c76ffe-003a-4852-8c2b-c7881681b6c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:64208c8e-e071-404a-8670-ae3302165eb8" + "WESTUS2:20170327T201409Z:50c76ffe-003a-4852-8c2b-c7881681b6c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46a06b05-55fc-48d1-8ff2-5254d85199c7" + "1c834221-e2e7-4804-b80a-d5cfaa85a566" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:54 GMT" + "Mon, 27 Mar 2017 20:14:10 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1177" ], "x-ms-request-id": [ - "ced3ef49-b7ae-4532-9bac-848b0b9cdbe1" + "a2d91e3a-82c1-4de3-965b-595761ac6fa6" ], "x-ms-correlation-request-id": [ - "ced3ef49-b7ae-4532-9bac-848b0b9cdbe1" + "a2d91e3a-82c1-4de3-965b-595761ac6fa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:ced3ef49-b7ae-4532-9bac-848b0b9cdbe1" + "WESTUS2:20170327T201410Z:a2d91e3a-82c1-4de3-965b-595761ac6fa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "888cb5a8-8957-4ec8-b42c-2cd704e37676" + "76a52012-4704-465d-8f65-ce1a00798608" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:54 GMT" + "Mon, 27 Mar 2017 20:14:10 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14962" ], "x-ms-request-id": [ - "31eafe1a-3dee-41e5-85b5-fb8b416da21e" + "467e2a7f-7827-4de7-bc32-731fb424bd4e" ], "x-ms-correlation-request-id": [ - "31eafe1a-3dee-41e5-85b5-fb8b416da21e" + "467e2a7f-7827-4de7-bc32-731fb424bd4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:31eafe1a-3dee-41e5-85b5-fb8b416da21e" + "WESTUS2:20170327T201410Z:467e2a7f-7827-4de7-bc32-731fb424bd4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,26 +334,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE0MTU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUwNz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db600a2b-2cf4-4cda-a8d5-1c1ff364b603" + "f23f3334-d8ae-4735-a445-cfbca86abfd2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba11415' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba1507' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:54 GMT" + "Mon, 27 Mar 2017 20:14:10 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14961" ], "x-ms-request-id": [ - "9b924644-66de-4e4b-acb1-f78bf0cfaf8b" + "e82f27c8-829b-4b70-aae8-366cada7c2ad" ], "x-ms-correlation-request-id": [ - "9b924644-66de-4e4b-acb1-f78bf0cfaf8b" + "e82f27c8-829b-4b70-aae8-366cada7c2ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:9b924644-66de-4e4b-acb1-f78bf0cfaf8b" + "WESTUS2:20170327T201410Z:e82f27c8-829b-4b70-aae8-366cada7c2ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE0MTU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUwNz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b2fddd-7971-4d85-8358-0a125662d97d" + "ae426f8c-a1e9-43a2-bbf4-046fa4fe3e67" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415\",\r\n \"name\": \"rgaba11415\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507\",\r\n \"name\": \"rgaba1507\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:55 GMT" + "Mon, 27 Mar 2017 20:14:11 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14960" ], "x-ms-request-id": [ - "ed0999c3-3a5a-4ca9-ad5e-faca84cd49a9" + "fbccb375-7f45-4296-b601-a0110c70bf3e" ], "x-ms-correlation-request-id": [ - "ed0999c3-3a5a-4ca9-ad5e-faca84cd49a9" + "fbccb375-7f45-4296-b601-a0110c70bf3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181156Z:ed0999c3-3a5a-4ca9-ad5e-faca84cd49a9" + "WESTUS2:20170327T201411Z:fbccb375-7f45-4296-b601-a0110c70bf3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE0MTU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUwNz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,20 +457,19 @@ "31" ], "x-ms-client-request-id": [ - "19459df4-abe3-4738-8482-39a9f7379910" + "e395a2b4-5b1b-44d3-b115-c1cc88c487cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415\",\r\n \"name\": \"rgaba11415\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507\",\r\n \"name\": \"rgaba1507\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "174" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:55 GMT" + "Mon, 27 Mar 2017 20:14:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1176" ], "x-ms-request-id": [ - "4b9e0393-caf7-4695-9775-17b26dddf50d" + "532f09bf-62a4-4b1a-8af2-7547e34e0f53" ], "x-ms-correlation-request-id": [ - "4b9e0393-caf7-4695-9775-17b26dddf50d" + "532f09bf-62a4-4b1a-8af2-7547e34e0f53" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181156Z:4b9e0393-caf7-4695-9775-17b26dddf50d" + "WESTUS2:20170327T201411Z:532f09bf-62a4-4b1a-8af2-7547e34e0f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,26 +505,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de2d3718-4adb-4aa6-b05a-98167a620505" + "7d14f91f-a763-4cfc-bc67-4cd92c3e05ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16861' under resource group 'rgaba11415' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11687' under resource group 'rgaba1507' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -536,7 +535,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:56 GMT" + "Mon, 27 Mar 2017 20:14:11 GMT" ], "Pragma": [ "no-cache" @@ -545,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "adc9100f-f8ad-488d-9345-be0fa023cc98" + "f9499b5a-c0ee-49d2-a198-d2526dd46930" ], "x-ms-correlation-request-id": [ - "adc9100f-f8ad-488d-9345-be0fa023cc98" + "f9499b5a-c0ee-49d2-a198-d2526dd46930" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181156Z:adc9100f-f8ad-488d-9345-be0fa023cc98" + "WESTUS2:20170327T201412Z:f9499b5a-c0ee-49d2-a198-d2526dd46930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16861.azuredatalakestore.net\",\r\n \"accountId\": \"13246a5f-2a48-4f82-bc64-c472ef4f0892\",\r\n \"creationTime\": \"2016-11-28T18:12:03.4756208Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:03.4756208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861\",\r\n \"name\": \"testdatalake16861\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11687.azuredatalakestore.net\",\r\n \"accountId\": \"c1a507cd-f86b-4cb1-bf3a-c1ceeb864c35\",\r\n \"creationTime\": \"2017-03-27T20:14:13.7256629Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:13.7256629Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687\",\r\n \"name\": \"testdatalake11687\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -585,7 +583,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:12:29 GMT" + "Mon, 27 Mar 2017 20:14:44 GMT" ], "Pragma": [ "no-cache" @@ -597,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1959cf27-4a04-4f57-9c7c-74a2463d94d2" + "61b1b2fb-aa4e-46e2-9de7-b61882e9a74d" ], "X-Content-Type-Options": [ "nosniff" @@ -609,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14979" ], "x-ms-correlation-request-id": [ - "c52b6482-411f-43b8-9b4a-869d13faa8a0" + "28a4214c-4093-4c77-98f3-06290ce6b860" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181230Z:c52b6482-411f-43b8-9b4a-869d13faa8a0" + "WESTUS2:20170327T201445Z:28a4214c-4093-4c77-98f3-06290ce6b860" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e05b01e5-97f9-4cb0-b242-8c967c9c5e9e" + "4b70cff6-00ac-44fa-84c6-9fae2805e641" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16861.azuredatalakestore.net\",\r\n \"accountId\": \"13246a5f-2a48-4f82-bc64-c472ef4f0892\",\r\n \"creationTime\": \"2016-11-28T18:12:03.4756208Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:03.4756208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861\",\r\n \"name\": \"testdatalake16861\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11687.azuredatalakestore.net\",\r\n \"accountId\": \"c1a507cd-f86b-4cb1-bf3a-c1ceeb864c35\",\r\n \"creationTime\": \"2017-03-27T20:14:13.7256629Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:13.7256629Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687\",\r\n \"name\": \"testdatalake11687\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -655,7 +652,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:12:30 GMT" + "Mon, 27 Mar 2017 20:14:45 GMT" ], "Pragma": [ "no-cache" @@ -667,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "21b72827-d4a0-414c-a513-204b6e2caf58" + "6af55611-08dc-4d7c-9947-3afd3355565f" ], "X-Content-Type-Options": [ "nosniff" @@ -679,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14977" ], "x-ms-correlation-request-id": [ - "86b74b12-6233-4516-98c6-5806c57937d7" + "60ac7341-d6dd-44ce-b8cb-e956f5eb0b45" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181230Z:86b74b12-6233-4516-98c6-5806c57937d7" + "WESTUS2:20170327T201445Z:60ac7341-d6dd-44ce-b8cb-e956f5eb0b45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,23 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6ee2434-908b-447b-9329-646d3e02643a" + "a3f9df37-3bde-4c56-b8c3-a3e4d36e8a86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16861.azuredatalakestore.net\",\r\n \"accountId\": \"13246a5f-2a48-4f82-bc64-c472ef4f0892\",\r\n \"creationTime\": \"2016-11-28T18:12:03.4756208Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:03.4756208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861\",\r\n \"name\": \"testdatalake16861\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11687.azuredatalakestore.net\",\r\n \"accountId\": \"c1a507cd-f86b-4cb1-bf3a-c1ceeb864c35\",\r\n \"creationTime\": \"2017-03-27T20:14:13.7256629Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:13.7256629Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687\",\r\n \"name\": \"testdatalake11687\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -725,7 +721,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:05 GMT" + "Mon, 27 Mar 2017 20:15:20 GMT" ], "Pragma": [ "no-cache" @@ -737,7 +733,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a2dcde69-13bd-495a-a491-b46e72564789" + "98c5a587-487c-4910-a5b6-dbdc643f75cf" ], "X-Content-Type-Options": [ "nosniff" @@ -749,13 +745,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14982" ], "x-ms-correlation-request-id": [ - "a1342377-8f26-4f77-b4f3-7090a3477a90" + "ad21e6b2-ef7a-429e-96c4-550ffc3ec069" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181305Z:a1342377-8f26-4f77-b4f3-7090a3477a90" + "WESTUS2:20170327T201520Z:ad21e6b2-ef7a-429e-96c4-550ffc3ec069" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,8 +760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -776,20 +772,19 @@ "31" ], "x-ms-client-request-id": [ - "5cce67b9-10bb-4088-8a62-e598a3be92e0" + "5e6c5e31-5a9a-48ea-a1d9-df545d8da814" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"13246a5f-2a48-4f82-bc64-c472ef4f0892\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861\",\r\n \"name\": \"testdatalake16861\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c1a507cd-f86b-4cb1-bf3a-c1ceeb864c35\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687\",\r\n \"name\": \"testdatalake11687\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "421" + "420" ], "Content-Type": [ "application/json" @@ -804,13 +799,13 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:11:58 GMT" + "Mon, 27 Mar 2017 20:14:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -819,10 +814,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13246a5f-2a48-4f82-bc64-c472ef4f08920?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c1a507cd-f86b-4cb1-bf3a-c1ceeb864c350?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "7c3ba44b-2f98-4518-9d59-5afff8e68db1" + "12340bc3-f56e-4210-8e29-1dac2c4209e5" ], "X-Content-Type-Options": [ "nosniff" @@ -834,13 +829,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "bc4c29a0-f5d3-4caa-81eb-58b94cc00c84" + "aa30614f-5e45-4ad1-8fed-59d4a0d8e49a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181158Z:bc4c29a0-f5d3-4caa-81eb-58b94cc00c84" + "WESTUS2:20170327T201414Z:aa30614f-5e45-4ad1-8fed-59d4a0d8e49a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +844,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13246a5f-2a48-4f82-bc64-c472ef4f08920?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzMjQ2YTVmLTJhNDgtNGY4Mi1iYzY0LWM0NzJlZjRmMDg5MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c1a507cd-f86b-4cb1-bf3a-c1ceeb864c350?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2MxYTUwN2NkLWY4NmItNGNiMS1iZjNhLWMxY2VlYjg2NGMzNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -874,7 +868,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:12:29 GMT" + "Mon, 27 Mar 2017 20:14:44 GMT" ], "Pragma": [ "no-cache" @@ -886,7 +880,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e05797df-4c15-46c3-bf70-5eac9db3568d" + "eb810849-de90-4aa5-8063-0f7c6d6f929c" ], "X-Content-Type-Options": [ "nosniff" @@ -898,13 +892,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14978" ], "x-ms-correlation-request-id": [ - "5941ad49-58e3-43bd-8cba-eb8fab39704c" + "370c082d-84c0-4663-b35e-30a56157c740" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181229Z:5941ad49-58e3-43bd-8cba-eb8fab39704c" + "WESTUS2:20170327T201444Z:370c082d-84c0-4663-b35e-30a56157c740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,23 +907,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjg2NjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18b3fddf-d3e2-4c51-860a-7a1eefa92713" + "b6145fa7-1237-4ecd-a785-a483340043f0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake2309' under resource group 'rgaba11415' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake28663' under resource group 'rgaba1507' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "163" @@ -944,7 +937,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:12:31 GMT" + "Mon, 27 Mar 2017 20:14:46 GMT" ], "Pragma": [ "no-cache" @@ -953,13 +946,13 @@ "gateway" ], "x-ms-request-id": [ - "dfd3dd6f-0280-459a-a987-65787f97525d" + "d8cb8027-3add-4da9-900f-e1380fb6781e" ], "x-ms-correlation-request-id": [ - "dfd3dd6f-0280-459a-a987-65787f97525d" + "d8cb8027-3add-4da9-900f-e1380fb6781e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181231Z:dfd3dd6f-0280-459a-a987-65787f97525d" + "WESTUS2:20170327T201446Z:d8cb8027-3add-4da9-900f-e1380fb6781e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -968,17 +961,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjg2NjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake2309.azuredatalakestore.net\",\r\n \"accountId\": \"65fc7e61-86d8-4b71-9053-017d19366178\",\r\n \"creationTime\": \"2016-11-28T18:12:36.9555424Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:36.9555424Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309\",\r\n \"name\": \"testdatalake2309\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28663.azuredatalakestore.net\",\r\n \"accountId\": \"47d1c397-b244-4125-b557-003ee155895b\",\r\n \"creationTime\": \"2017-03-27T20:14:47.6748783Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:47.6748783Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663\",\r\n \"name\": \"testdatalake28663\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -993,7 +985,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:03 GMT" + "Mon, 27 Mar 2017 20:15:18 GMT" ], "Pragma": [ "no-cache" @@ -1005,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cb428d17-c6ef-4aa1-92f1-867387bd1208" + "b56a7785-c7e4-4f36-aa54-b0b7a0d6e48c" ], "X-Content-Type-Options": [ "nosniff" @@ -1017,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14986" ], "x-ms-correlation-request-id": [ - "99575bff-fd9a-479f-9f3d-85add7af34e4" + "3074206f-691e-49dc-81f9-31fe4efe98df" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181304Z:99575bff-fd9a-479f-9f3d-85add7af34e4" + "WESTUS2:20170327T201519Z:3074206f-691e-49dc-81f9-31fe4efe98df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,23 +1024,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjg2NjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d4cd5aa-ab2c-4b7c-97b4-718c05f0a899" + "3126e5cf-69bc-4f58-b3d6-2386f8fbc3ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake2309.azuredatalakestore.net\",\r\n \"accountId\": \"65fc7e61-86d8-4b71-9053-017d19366178\",\r\n \"creationTime\": \"2016-11-28T18:12:36.9555424Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:36.9555424Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309\",\r\n \"name\": \"testdatalake2309\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28663.azuredatalakestore.net\",\r\n \"accountId\": \"47d1c397-b244-4125-b557-003ee155895b\",\r\n \"creationTime\": \"2017-03-27T20:14:47.6748783Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:47.6748783Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663\",\r\n \"name\": \"testdatalake28663\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1063,7 +1054,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:04 GMT" + "Mon, 27 Mar 2017 20:15:19 GMT" ], "Pragma": [ "no-cache" @@ -1075,7 +1066,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9aee3116-ab3a-4ef1-a8d3-43243e86c284" + "c3ec96e3-4ed5-4162-8e7c-a669c2a8eb0b" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,13 +1078,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14983" ], "x-ms-correlation-request-id": [ - "47a66478-db35-434c-9d54-83ff71a3692e" + "03947785-4159-45db-8b95-06d6a87f9fa9" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181304Z:47a66478-db35-434c-9d54-83ff71a3692e" + "WESTUS2:20170327T201519Z:03947785-4159-45db-8b95-06d6a87f9fa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjg2NjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1114,20 +1105,19 @@ "31" ], "x-ms-client-request-id": [ - "b9d9f7f0-0d00-4e30-b6dc-f700f92a67a9" + "f67124ec-a1c7-4add-b352-2ea79a671a80" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"65fc7e61-86d8-4b71-9053-017d19366178\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309\",\r\n \"name\": \"testdatalake2309\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"47d1c397-b244-4125-b557-003ee155895b\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663\",\r\n \"name\": \"testdatalake28663\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "420" ], "Content-Type": [ "application/json" @@ -1142,13 +1132,13 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:12:32 GMT" + "Mon, 27 Mar 2017 20:14:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1157,10 +1147,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/65fc7e61-86d8-4b71-9053-017d193661780?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/47d1c397-b244-4125-b557-003ee155895b0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "dfbf0cc2-2f50-4053-a161-c65522da8e68" + "808f0405-dc7b-4475-ad77-ee5c8bf85f75" ], "X-Content-Type-Options": [ "nosniff" @@ -1172,13 +1162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1187" ], "x-ms-correlation-request-id": [ - "cd69b205-b4a3-46cf-b135-8188cc2e845e" + "c227a406-49eb-4727-92fc-b7c8d28d44ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181233Z:cd69b205-b4a3-46cf-b135-8188cc2e845e" + "WESTUS2:20170327T201448Z:c227a406-49eb-4727-92fc-b7c8d28d44ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,14 +1177,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/65fc7e61-86d8-4b71-9053-017d193661780?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY1ZmM3ZTYxLTg2ZDgtNGI3MS05MDUzLTAxN2QxOTM2NjE3ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/47d1c397-b244-4125-b557-003ee155895b0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQ3ZDFjMzk3LWIyNDQtNDEyNS1iNTU3LTAwM2VlMTU1ODk1YjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1212,7 +1201,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:02 GMT" + "Mon, 27 Mar 2017 20:15:17 GMT" ], "Pragma": [ "no-cache" @@ -1224,7 +1213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4a030940-1e48-485e-a813-38e2c657ba0d" + "4f18e427-441f-4235-ba13-6dcd70e0ca63" ], "X-Content-Type-Options": [ "nosniff" @@ -1236,13 +1225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14974" ], "x-ms-correlation-request-id": [ - "da46fe88-e512-4b48-b991-af9e92f56fa4" + "b98610b8-5a5d-4a6a-b432-aeb6a1348264" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181303Z:da46fe88-e512-4b48-b991-af9e92f56fa4" + "WESTUS2:20170327T201518Z:b98610b8-5a5d-4a6a-b432-aeb6a1348264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1240,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNjQ4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16861\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"testdatalake16861\",\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11687\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1263,20 +1252,19 @@ "290" ], "x-ms-client-request-id": [ - "00c4157c-b405-427e-8520-7b6d0bf5fb39" + "43644ded-3be7-4dda-b08e-fab2491118a4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16861\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16861\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b92d7ca8-ca3b-40fd-9864-1757e3c1368a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448\",\r\n \"name\": \"testaba23448\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11687\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11687\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fe560807-0f34-4ae0-9a98-27a984e51f2e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488\",\r\n \"name\": \"testaba26488\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "573" + "572" ], "Content-Type": [ "application/json" @@ -1291,13 +1279,13 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:06 GMT" + "Mon, 27 Mar 2017 20:15:21 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1306,10 +1294,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b92d7ca8-ca3b-40fd-9864-1757e3c1368a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/fe560807-0f34-4ae0-9a98-27a984e51f2e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "88abdeaf-89f7-4f5e-81bf-442169cb2bea" + "1f9b72a8-de39-4dcd-a19a-00ab35ee76b5" ], "X-Content-Type-Options": [ "nosniff" @@ -1321,13 +1309,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1175" ], "x-ms-correlation-request-id": [ - "1dae1eb2-2ff7-4548-8c39-d90c77d51b91" + "7d00cdb6-b200-4862-a9eb-5cd3ba305a88" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181307Z:1dae1eb2-2ff7-4548-8c39-d90c77d51b91" + "WESTUS2:20170327T201521Z:7d00cdb6-b200-4862-a9eb-5cd3ba305a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1336,14 +1324,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b92d7ca8-ca3b-40fd-9864-1757e3c1368a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iOTJkN2NhOC1jYTNiLTQwZmQtOTg2NC0xNzU3ZTNjMTM2OGEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/fe560807-0f34-4ae0-9a98-27a984e51f2e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9mZTU2MDgwNy0wZjM0LTRhZTAtOWE5OC0yN2E5ODRlNTFmMmUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1361,7 +1348,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:37 GMT" + "Mon, 27 Mar 2017 20:15:52 GMT" ], "Pragma": [ "no-cache" @@ -1373,7 +1360,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d59cd3c4-8aa5-44cb-892b-46db33f45807" + "b92a1a32-6e2f-45b3-b2b2-9b1736aed428" ], "X-Content-Type-Options": [ "nosniff" @@ -1385,13 +1372,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14984" ], "x-ms-correlation-request-id": [ - "bd395f2d-aa6b-471d-8ba5-0d24adce302b" + "b06401a6-7050-4de2-8156-d9d0abe8abcb" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181338Z:bd395f2d-aa6b-471d-8ba5-0d24adce302b" + "WESTUS2:20170327T201552Z:b06401a6-7050-4de2-8156-d9d0abe8abcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,17 +1387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNjQ4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16861\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16861\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba23448.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b92d7ca8-ca3b-40fd-9864-1757e3c1368a\",\r\n \"creationTime\": \"2016-11-28T18:13:09.7252371Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:13:09.7252371Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448\",\r\n \"name\": \"testaba23448\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11687\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11687\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba26488.azuredatalakeanalytics.net\",\r\n \"accountId\": \"fe560807-0f34-4ae0-9a98-27a984e51f2e\",\r\n \"creationTime\": \"2017-03-27T20:15:24.02601Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:15:24.02601Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488\",\r\n \"name\": \"testaba26488\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1425,7 +1411,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:38 GMT" + "Mon, 27 Mar 2017 20:15:52 GMT" ], "Pragma": [ "no-cache" @@ -1437,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "22f6ee2c-38a6-495b-a7b4-b526dc83ef0d" + "e971c441-4ba4-467c-9d36-1c7811390df5" ], "X-Content-Type-Options": [ "nosniff" @@ -1449,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14970" ], "x-ms-correlation-request-id": [ - "40539c08-f11e-47a5-8621-7846eb12df5c" + "8eb597be-b9bc-491e-b4f1-326dfa2edd31" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181338Z:40539c08-f11e-47a5-8621-7846eb12df5c" + "WESTUS2:20170327T201552Z:8eb597be-b9bc-491e-b4f1-326dfa2edd31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNjQ4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe312e9-d9aa-4e84-839e-1f2f56d49487" + "cd6321d0-9b76-4ce4-af8a-59b3553bc0fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16861\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16861\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba23448.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b92d7ca8-ca3b-40fd-9864-1757e3c1368a\",\r\n \"creationTime\": \"2016-11-28T18:13:09.7252371Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:13:09.7252371Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448\",\r\n \"name\": \"testaba23448\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11687\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11687\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba26488.azuredatalakeanalytics.net\",\r\n \"accountId\": \"fe560807-0f34-4ae0-9a98-27a984e51f2e\",\r\n \"creationTime\": \"2017-03-27T20:15:24.02601Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:15:24.02601Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488\",\r\n \"name\": \"testaba26488\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1495,7 +1480,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:39 GMT" + "Mon, 27 Mar 2017 20:15:53 GMT" ], "Pragma": [ "no-cache" @@ -1507,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ef798bde-3bef-4369-abb1-66687d391632" + "3a3484c1-5414-4fca-a1b9-b31b9aa09c7f" ], "X-Content-Type-Options": [ "nosniff" @@ -1519,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14977" ], "x-ms-correlation-request-id": [ - "01b50086-3d8b-4611-881e-dddfbdd7133c" + "144e68ff-1b8c-4b45-9e3f-49d934cf0307" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181339Z:01b50086-3d8b-4611-881e-dddfbdd7133c" + "WESTUS2:20170327T201553Z:144e68ff-1b8c-4b45-9e3f-49d934cf0307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1534,75 +1519,28 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\r\\n//Create Table\\r\\nCREATE TABLE testdb13618.dbo.testtbl19292\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb13618.dbo.testview14347 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb13618.dbo.testview14347 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\r\\n//Create Table\\r\\nCREATE TABLE testdb14427.dbo.testtbl1499\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb14427.dbo.testview19846 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb14427.dbo.testview19846 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2537" - ], - "x-ms-client-request-id": [ - "42d9d9c2-dafa-40ab-95f6-d1b5bddc926c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Mon, 28 Nov 2016 18:15:42 GMT" + "2527" ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "cdb78c19-61a8-4337-b588-9cd7aaf8a33a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "x-ms-client-request-id": [ - "62ad5dd2-3411-4d47-a6cf-1e80e71c4447" + "021c87b4-c34c-4cb9-a6b7-e4e530d3a056" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2056449S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1614,13 +1552,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:15:43 GMT" + "Mon, 27 Mar 2017 20:15:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "844c9dda-bd31-4b91-9350-bcf96540c27c" + "429f48b4-107f-4e17-a0cf-5c9439d7f369" ], "X-Content-Type-Options": [ "nosniff" @@ -1632,23 +1570,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffe97930-7f04-44bd-8292-2bc7a29b38d6" + "f9370b4e-7fe7-49a9-926f-5b193ff02ac7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6620902S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2398108S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1660,13 +1597,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:15:48 GMT" + "Mon, 27 Mar 2017 20:15:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "6e81e197-dbae-4226-90e4-006f12e41572" + "acb4858e-3052-4591-8ad6-29935fbb0bc0" ], "X-Content-Type-Options": [ "nosniff" @@ -1678,23 +1615,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8142e5-8918-4d9f-b845-f2674ab4785b" + "3c2a7403-08c0-4301-8fc8-f80fa2ff3239" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.1760557S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.7033535S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1706,13 +1642,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:15:53 GMT" + "Mon, 27 Mar 2017 20:16:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "8a81c817-4c1e-46b8-bf9d-a0d0c06a54e6" + "006307c2-051d-4c5d-958a-08188de92405" ], "X-Content-Type-Options": [ "nosniff" @@ -1724,23 +1660,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b5bd802-965e-4154-a769-ca7361393804" + "f10a2d53-46b6-4834-8dcc-625d9843a35b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.9118722S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1752,13 +1687,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:15:59 GMT" + "Mon, 27 Mar 2017 20:16:08 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "b96b0b0b-bd3f-434f-93f5-080de329a66d" + "2d411dea-1cf6-4fdb-9284-b864563cb4bd" ], "X-Content-Type-Options": [ "nosniff" @@ -1770,23 +1705,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54869236-50f8-4b01-bddd-484482006e46" + "267a4963-cb4a-4481-9a4d-c5f883370365" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3808093-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3964115-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:34319170-10e9-40e5-ad38-82cf2244a3a7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.4120484-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"34319170-10e9-40e5-ad38-82cf2244a3a7\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"yarnApplicationId\": 90824,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9534986S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156022S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1798,13 +1732,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:04 GMT" + "Mon, 27 Mar 2017 20:16:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "104c2669-832b-461e-9340-1b6677db63ba" + "e119274c-32de-47d9-aef5-221b89dddc6c" ], "X-Content-Type-Options": [ "nosniff" @@ -1816,23 +1750,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f541c5e-0909-4436-baf9-7dd26821d65c" + "113f8189-4f32-4f1a-96e1-02a374c3ef6d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"startTime\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT1.0822013S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3808093-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3964115-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:34319170-10e9-40e5-ad38-82cf2244a3a7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.4120484-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"34319170-10e9-40e5-ad38-82cf2244a3a7\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"yarnApplicationId\": 90824,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9534986S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156022S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1844,13 +1777,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:10 GMT" + "Mon, 27 Mar 2017 20:16:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "d3a984e9-92ff-4db3-b5d5-043c27bc0317" + "ea0bb73e-8e69-48a2-a5fc-a340847d0eed" ], "X-Content-Type-Options": [ "nosniff" @@ -1862,23 +1795,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00d826c2-719c-4d0a-bba0-81cf193b9385" + "fb8fb049-4d76-494d-858d-58a468b81fef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"startTime\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT6.2885126S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"startTime\": \"2017-03-27T13:16:21.9434515-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3808093-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3964115-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:34319170-10e9-40e5-ad38-82cf2244a3a7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.4120484-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T13:16:21.9434515-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"34319170-10e9-40e5-ad38-82cf2244a3a7\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"yarnApplicationId\": 90824,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9534986S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156022S\",\r\n \"totalRunningTime\": \"PT2.1189859S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1890,13 +1822,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:15 GMT" + "Mon, 27 Mar 2017 20:16:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "c7e2c7fe-da79-4b8e-b0e7-ef19bf6c78a4" + "fca9d769-ef0e-4f77-8c89-67441442f657" ], "X-Content-Type-Options": [ "nosniff" @@ -1908,23 +1840,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c679185c-80d7-4570-88db-5561f0b2611b" + "b8cfc32d-f30e-4190-a296-e807b392d75a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"startTime\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"endTime\": \"2016-11-28T10:16:15.5805206-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-28T10:16:15.5805206-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT6.2344279S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"startTime\": \"2017-03-27T13:16:21.9434515-07:00\",\r\n \"endTime\": \"2017-03-27T13:16:27.9904653-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3808093-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3964115-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:34319170-10e9-40e5-ad38-82cf2244a3a7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.4120484-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T13:16:21.9434515-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T13:16:27.9904653-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"34319170-10e9-40e5-ad38-82cf2244a3a7\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"yarnApplicationId\": 90824,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9534986S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156022S\",\r\n \"totalRunningTime\": \"PT6.0470138S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1936,13 +1867,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:20 GMT" + "Mon, 27 Mar 2017 20:16:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "780aec5c-de0a-4931-85ae-2370e54d7431" + "00fc9bc8-03b3-4442-8e8e-bfc12b2ef66c" ], "X-Content-Type-Options": [ "nosniff" @@ -1954,10 +1885,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"18a4e406-9ebb-47ab-b13f-07ecdbdcafb3\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"bb6d3742-82d8-4bde-8a8d-b0efa8c0789b\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1966,14 +1897,13 @@ "145" ], "x-ms-client-request-id": [ - "f78818ee-624d-4b49-ac96-d563b42f31f0" + "c74c0550-fec5-4d3e-9fdb-a9218c9c56f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1985,13 +1915,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:22 GMT" + "Mon, 27 Mar 2017 20:16:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "f8615ea2-f1c6-4ab9-a6f0-777c18139df8" + "454515be-7778-4d9e-9cdf-82bc87a3cd0b" ], "X-Content-Type-Options": [ "nosniff" @@ -2003,10 +1933,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"104c170d-c13b-46ea-9962-930665506426\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"7496d639-54fe-4c0c-8436-ae7af32845df\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2015,17 +1945,16 @@ "145" ], "x-ms-client-request-id": [ - "44499375-20fc-4b3f-bc37-bd6d10298722" + "24046405-6c91-44cd-9158-0c9e52490b0f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'testsecret1615' already exists. Trace: 52654d5b-aa66-4f47-b1cc-c40fcb85ee75 Time: 2016-11-28T10:16:23.3658010-08:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'testsecret12100' already exists. Trace: 13c0869f-a7b8-4034-8983-1de31efa7c6a Time: 2017-03-27T13:16:32.3053044-07:00\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2037,13 +1966,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:23 GMT" + "Mon, 27 Mar 2017 20:16:32 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "52654d5b-aa66-4f47-b1cc-c40fcb85ee75" + "13c0869f-a7b8-4034-8983-1de31efa7c6a" ], "X-Content-Type-Options": [ "nosniff" @@ -2055,10 +1984,10 @@ "StatusCode": 409 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"18074053-480d-4bf5-8f67-4dccda70cd1c\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"2351d7b3-03f6-40f0-ae12-d907eba5eeb2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2067,14 +1996,13 @@ "145" ], "x-ms-client-request-id": [ - "efe9873a-13b8-4166-9d38-6ad98418b51a" + "8cfb744c-198b-47fb-8156-2d946fbc62f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2086,13 +2014,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:26 GMT" + "Mon, 27 Mar 2017 20:16:35 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "fa860d95-95ba-43ba-bec1-952950a53a64" + "862578cf-6232-414a-98a9-cfdc67a22191" ], "X-Content-Type-Options": [ "nosniff" @@ -2104,10 +2032,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615dup?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTVkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100dup?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"fedca0a0-f5ce-4384-870e-ca16a40e4665\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"616b1864-65ae-4a58-884b-05bd1a25f1f3\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2116,14 +2044,13 @@ "145" ], "x-ms-client-request-id": [ - "8bab57ee-2fd2-45bc-a4ac-5aff5866117a" + "dac3d489-8e70-4909-88c2-7ed887098d20" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2135,13 +2062,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:24 GMT" + "Mon, 27 Mar 2017 20:16:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "b70c9691-3f7b-449a-a124-9f32a6c08f08" + "90dfe686-2fc2-499a-be50-5af9f5de3496" ], "X-Content-Type-Options": [ "nosniff" @@ -2153,23 +2080,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8937d3f6-f88a-4a62-8428-5503047d4c47" + "f327fd76-4940-4577-8a95-673b288da2b2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"credentialName\": \"testsecret1615\"\r\n}", + "ResponseBody": "{\r\n \"credentialName\": \"testsecret12100\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2181,13 +2107,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:24 GMT" + "Mon, 27 Mar 2017 20:16:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "0ce4f885-f969-4a83-a50c-1ac02d20e4be" + "8f6781a6-26e2-42e0-b885-04e43e445bfb" ], "X-Content-Type-Options": [ "nosniff" @@ -2199,23 +2125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b795c49e-483a-4430-a8fe-08d0e41c477b" + "de1c4fee-9784-45a5-8f08-1b16b7946499" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"credentialName\": \"testsecret1615\"\r\n}", + "ResponseBody": "{\r\n \"credentialName\": \"testsecret12100\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2227,13 +2152,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:25 GMT" + "Mon, 27 Mar 2017 20:16:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "034d932c-66cc-42e2-91f3-49888a9e8e3f" + "73468cc8-0473-499a-869c-8b162962a150" ], "X-Content-Type-Options": [ "nosniff" @@ -2245,23 +2170,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6cc45bd-c47b-4e32-87a0-b7f947b04ac9" + "e3e1d5cc-a149-4b62-b65b-34b6aee63978" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret1615' does not exist. Trace: 41c4090f-d93c-46c2-80a4-7394247a7b16 Time: 2016-11-28T10:16:26.1314612-08:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret12100' does not exist. Trace: de32857a-cf4e-417d-bf1c-cfa5359c49b2 Time: 2017-03-27T13:16:35.1647436-07:00\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2273,13 +2197,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:25 GMT" + "Mon, 27 Mar 2017 20:16:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "41c4090f-d93c-46c2-80a4-7394247a7b16" + "de32857a-cf4e-417d-bf1c-cfa5359c49b2" ], "X-Content-Type-Options": [ "nosniff" @@ -2291,23 +2215,22 @@ "StatusCode": 404 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37af07af-fea0-4ce6-9f23-de4c883fce98" + "8199f147-54d4-4215-8ba4-6d512ac1e9ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret1615' does not exist. Trace: ebf1aa73-4de1-4d5b-a289-53ca043eaf05 Time: 2016-11-28T10:16:27.9752537-08:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret12100' does not exist. Trace: 2f209298-0885-4c39-accd-2f0d762a6df4 Time: 2017-03-27T13:16:37.3678913-07:00\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2319,13 +2242,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:27 GMT" + "Mon, 27 Mar 2017 20:16:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "ebf1aa73-4de1-4d5b-a289-53ca043eaf05" + "2f209298-0885-4c39-accd-2f0d762a6df4" ], "X-Content-Type-Options": [ "nosniff" @@ -2337,23 +2260,22 @@ "StatusCode": 404 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb706257-1027-4a71-9870-b20e4dbcfd4a" + "29e90d3d-7ca1-48cc-a414-6aecfeb43935" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"testsecret1615\"\r\n },\r\n {\r\n \"credentialName\": \"testsecret1615dup\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"testsecret12100\"\r\n },\r\n {\r\n \"credentialName\": \"testsecret12100dup\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2365,13 +2287,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:24 GMT" + "Mon, 27 Mar 2017 20:16:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "ec29133f-0789-40ed-9c1f-f79c240fd2d9" + "b9562eca-f7bc-441c-91aa-e650a3ebf44b" ], "X-Content-Type-Options": [ "nosniff" @@ -2383,10 +2305,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?cascade=false&api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/Y2FzY2FkZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?cascade=false&api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2Nhc2NhZGU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2395,14 +2317,13 @@ "40" ], "x-ms-client-request-id": [ - "a4ed4ed1-efcb-4aac-ad20-291140ae041d" + "33c31694-0efa-402e-93cb-c7923fc025da" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2414,13 +2335,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:25 GMT" + "Mon, 27 Mar 2017 20:16:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "149e7700-8ad2-4ed8-a2a1-5a9bbc7e611f" + "d5228615-c887-4266-b219-69cd7c77109b" ], "X-Content-Type-Options": [ "nosniff" @@ -2432,10 +2353,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?cascade=true&api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/Y2FzY2FkZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?cascade=true&api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2Nhc2NhZGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2444,14 +2365,13 @@ "40" ], "x-ms-client-request-id": [ - "4bf703fe-e81c-4aad-90e6-3ba1a96174e4" + "d9249f6a-0163-4973-98ff-53f612da908f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2463,13 +2383,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:27 GMT" + "Mon, 27 Mar 2017 20:16:36 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "d8db3d5e-10d7-4c25-99a6-c207d63e7c3a" + "97f56527-e598-4330-aaf2-bf7cb5ada054" ], "X-Content-Type-Options": [ "nosniff" @@ -2483,37 +2403,37 @@ ], "Names": { ".ctor": [ - "rgaba11415", - "testaba17740", - "testaba23448", - "teststorage13373", - "testdatalake16861", - "testdatalake2309", - "testazureblob11375", - "testdb13618", - "testtbl19292", - "testtvf1691", - "testproc11700", - "testview14347", - "testcred16140", - "testsecret1615", - "testsecretpwd15917" + "rgaba1507", + "testaba16209", + "testaba26488", + "teststorage1291", + "testdatalake11687", + "testdatalake28663", + "testazureblob16071", + "testdb14427", + "testtbl1499", + "testtvf1378", + "testproc14653", + "testview19846", + "testcred11608", + "testsecret12100", + "testsecretpwd12784" ], "CreateCatalog": [ - "590ddb2c-8363-4fa0-b267-7bca03604efc" + "00c4b84b-6579-4d41-9ab9-990d7b33791e" ], "RunJobToCompletion": [ - "testjob16968" + "testjob17080" ], "fakeUserId01": [ - "18a4e406-9ebb-47ab-b13f-07ecdbdcafb3", - "18074053-480d-4bf5-8f67-4dccda70cd1c" + "bb6d3742-82d8-4bde-8a8d-b0efa8c0789b", + "2351d7b3-03f6-40f0-ae12-d907eba5eeb2" ], "fakeUserId02": [ - "104c170d-c13b-46ea-9962-930665506426" + "7496d639-54fe-4c0c-8436-ae7af32845df" ], "fakeUserId03": [ - "fedca0a0-f5ce-4384-870e-ca16a40e4665" + "616b1864-65ae-4a58-884b-05bd1a25f1f3" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json index 8c2b22368d5e..199eb315b5af 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e3e382f-0620-45cf-8cb4-1eded9bf9f45" + "0cb42f25-eb03-45b9-9e47-66aad683fc50" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:43 GMT" + "Mon, 27 Mar 2017 20:01:00 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-request-id": [ - "e12ac1b8-154a-4ad2-9733-02546e5a800d" + "238ede0b-79c4-4061-8f33-d03e6c3b3c12" ], "x-ms-correlation-request-id": [ - "e12ac1b8-154a-4ad2-9733-02546e5a800d" + "238ede0b-79c4-4061-8f33-d03e6c3b3c12" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040643Z:e12ac1b8-154a-4ad2-9733-02546e5a800d" + "WESTUS2:20170327T200100Z:238ede0b-79c4-4061-8f33-d03e6c3b3c12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7b1d8b1-20a3-4668-9689-502d96324101" + "5d8d251a-76a7-49f5-b70b-ee29dd62e739" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:43 GMT" + "Mon, 27 Mar 2017 20:01:00 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14978" ], "x-ms-request-id": [ - "e7a7debc-0a1d-49da-8359-3d26a87b9faa" + "3593ae11-47ed-4e3e-bf45-01a8c8d034fc" ], "x-ms-correlation-request-id": [ - "e7a7debc-0a1d-49da-8359-3d26a87b9faa" + "3593ae11-47ed-4e3e-bf45-01a8c8d034fc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040643Z:e7a7debc-0a1d-49da-8359-3d26a87b9faa" + "WESTUS2:20170327T200100Z:3593ae11-47ed-4e3e-bf45-01a8c8d034fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73807b8e-9ccc-4aaf-863b-aa92656af120" + "11ac0303-6795-4419-acd9-e3295fea1527" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:44 GMT" + "Mon, 27 Mar 2017 20:01:01 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-request-id": [ - "e6103eaa-3473-4e07-b8d7-9f5fb121f9b4" + "162fbce2-a31d-47b8-a3cf-5d5c3f62cb48" ], "x-ms-correlation-request-id": [ - "e6103eaa-3473-4e07-b8d7-9f5fb121f9b4" + "162fbce2-a31d-47b8-a3cf-5d5c3f62cb48" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040644Z:e6103eaa-3473-4e07-b8d7-9f5fb121f9b4" + "WESTUS2:20170327T200101Z:162fbce2-a31d-47b8-a3cf-5d5c3f62cb48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd743666-21cb-4c66-83e3-539175e4e98a" + "1b291e3c-879d-4e95-bf5e-102173c62ec5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:44 GMT" + "Mon, 27 Mar 2017 20:01:01 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14977" ], "x-ms-request-id": [ - "f69c47bc-f030-4c11-9b27-2a753d828d21" + "488b71dc-99e8-4e3b-beeb-76ae1a6556c7" ], "x-ms-correlation-request-id": [ - "f69c47bc-f030-4c11-9b27-2a753d828d21" + "488b71dc-99e8-4e3b-beeb-76ae1a6556c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040644Z:f69c47bc-f030-4c11-9b27-2a753d828d21" + "WESTUS2:20170327T200101Z:488b71dc-99e8-4e3b-beeb-76ae1a6556c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be0bf134-3cab-4858-ba01-f0f1e8ced93a" + "e4507261-826a-4a20-9a68-c159db3f1c29" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:02 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-request-id": [ - "7cb696cf-e48e-4fd9-b575-c0644ec53608" + "1b0679a6-9a7d-4176-80aa-782eef100e5a" ], "x-ms-correlation-request-id": [ - "7cb696cf-e48e-4fd9-b575-c0644ec53608" + "1b0679a6-9a7d-4176-80aa-782eef100e5a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040645Z:7cb696cf-e48e-4fd9-b575-c0644ec53608" + "WESTUS2:20170327T200102Z:1b0679a6-9a7d-4176-80aa-782eef100e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a0d359a-9e11-4d4f-8d7d-ea4251beba9c" + "431cf295-175c-4d4f-b676-571794297c9d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:02 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14976" ], "x-ms-request-id": [ - "ac75d212-8722-4378-8da7-e3fd467ddf07" + "a1288e72-7177-4800-9eb4-41ef172e3f16" ], "x-ms-correlation-request-id": [ - "ac75d212-8722-4378-8da7-e3fd467ddf07" + "a1288e72-7177-4800-9eb4-41ef172e3f16" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040645Z:ac75d212-8722-4378-8da7-e3fd467ddf07" + "WESTUS2:20170327T200102Z:a1288e72-7177-4800-9eb4-41ef172e3f16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk2Nzc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIwNjI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a492fd3c-c27e-4d79-b42b-6b586bfe0949" + "b933dd41-88b5-447d-9d2b-c57f9e95e14f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba19677' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba12062' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:02 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14975" ], "x-ms-request-id": [ - "eb1db2a6-4e25-4a47-9f12-c1c513874093" + "2d783fd0-cede-4a5e-8714-4e8133254270" ], "x-ms-correlation-request-id": [ - "eb1db2a6-4e25-4a47-9f12-c1c513874093" + "2d783fd0-cede-4a5e-8714-4e8133254270" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040645Z:eb1db2a6-4e25-4a47-9f12-c1c513874093" + "WESTUS2:20170327T200102Z:2d783fd0-cede-4a5e-8714-4e8133254270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk2Nzc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIwNjI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82cde8dc-0d4f-4af9-a9fb-848c87db5ab2" + "5fb0e148-04a8-4ef3-90d0-966d965e1174" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677\",\r\n \"name\": \"rgaba19677\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062\",\r\n \"name\": \"rgaba12062\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:03 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14974" ], "x-ms-request-id": [ - "554e4911-5ea2-44c1-9766-0b9892470f36" + "61a4f0e0-c6f0-479e-8758-6fe77645039a" ], "x-ms-correlation-request-id": [ - "554e4911-5ea2-44c1-9766-0b9892470f36" + "61a4f0e0-c6f0-479e-8758-6fe77645039a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040646Z:554e4911-5ea2-44c1-9766-0b9892470f36" + "WESTUS2:20170327T200104Z:61a4f0e0-c6f0-479e-8758-6fe77645039a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk2Nzc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIwNjI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "df7c9a95-0e6c-463b-a70d-c490b3879c19" + "efb8e7b9-0411-499c-8fe2-0a133ebe642b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677\",\r\n \"name\": \"rgaba19677\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062\",\r\n \"name\": \"rgaba12062\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-request-id": [ - "497b5665-49da-45a0-8a27-c01f19ffe6da" + "7de5efdc-1278-495c-802d-d756a11147bf" ], "x-ms-correlation-request-id": [ - "497b5665-49da-45a0-8a27-c01f19ffe6da" + "7de5efdc-1278-495c-802d-d756a11147bf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040646Z:497b5665-49da-45a0-8a27-c01f19ffe6da" + "WESTUS2:20170327T200104Z:7de5efdc-1278-495c-802d-d756a11147bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,23 +505,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3d9070b-9db5-4f0d-99f0-f8c7a060cea4" + "e701e513-f6ad-4d58-a61e-9e70ad3b91d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake12038' under resource group 'rgaba19677' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18414' under resource group 'rgaba12062' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -536,7 +535,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:46 GMT" + "Mon, 27 Mar 2017 20:01:04 GMT" ], "Pragma": [ "no-cache" @@ -545,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "e97d4500-8ea3-4597-8f75-f51862087851" + "6f6b9ee9-7608-4cf3-ab7f-1a0d0dfb932b" ], "x-ms-correlation-request-id": [ - "e97d4500-8ea3-4597-8f75-f51862087851" + "6f6b9ee9-7608-4cf3-ab7f-1a0d0dfb932b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040646Z:e97d4500-8ea3-4597-8f75-f51862087851" + "WESTUS2:20170327T200104Z:6f6b9ee9-7608-4cf3-ab7f-1a0d0dfb932b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12038.azuredatalakestore.net\",\r\n \"accountId\": \"67217cb6-5eba-46af-9420-44d0df4bee6e\",\r\n \"creationTime\": \"2016-11-08T04:06:47.5453058Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:06:47.5453058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038\",\r\n \"name\": \"testdatalake12038\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18414.azuredatalakestore.net\",\r\n \"accountId\": \"6b24d269-afea-4043-80e1-73b30a0a348e\",\r\n \"creationTime\": \"2017-03-27T20:01:05.3742699Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:05.3742699Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414\",\r\n \"name\": \"testdatalake18414\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -585,7 +583,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:07:17 GMT" + "Mon, 27 Mar 2017 20:01:36 GMT" ], "Pragma": [ "no-cache" @@ -597,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ebea4740-6607-48e5-b988-784899e51f43" + "6051f2cb-5f9c-4aa9-8e4b-9812b49b3cb9" ], "X-Content-Type-Options": [ "nosniff" @@ -609,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14983" ], "x-ms-correlation-request-id": [ - "b49f591f-6737-478c-b0db-696bb42b8f72" + "f65070d6-4981-48e7-894c-63d3273b2cde" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040718Z:b49f591f-6737-478c-b0db-696bb42b8f72" + "WESTUS2:20170327T200137Z:f65070d6-4981-48e7-894c-63d3273b2cde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9971b15a-6b7d-45c5-8ff0-9b58ebae6420" + "a1336e4f-1356-4d36-a8e9-0b2265cbc7eb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12038.azuredatalakestore.net\",\r\n \"accountId\": \"67217cb6-5eba-46af-9420-44d0df4bee6e\",\r\n \"creationTime\": \"2016-11-08T04:06:47.5453058Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:06:47.5453058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038\",\r\n \"name\": \"testdatalake12038\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18414.azuredatalakestore.net\",\r\n \"accountId\": \"6b24d269-afea-4043-80e1-73b30a0a348e\",\r\n \"creationTime\": \"2017-03-27T20:01:05.3742699Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:05.3742699Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414\",\r\n \"name\": \"testdatalake18414\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -655,7 +652,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:07:18 GMT" + "Mon, 27 Mar 2017 20:01:37 GMT" ], "Pragma": [ "no-cache" @@ -667,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c0ad5d89-b925-47a1-ad7f-c897f75140d4" + "0dccec82-ee18-422b-9a61-95ef2379866a" ], "X-Content-Type-Options": [ "nosniff" @@ -679,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14987" ], "x-ms-correlation-request-id": [ - "eb45e500-6533-4dad-8cea-899429b740a8" + "dac64897-370e-4ddf-a5bd-eef5e2ad954a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040718Z:eb45e500-6533-4dad-8cea-899429b740a8" + "WESTUS2:20170327T200138Z:dac64897-370e-4ddf-a5bd-eef5e2ad954a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,23 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "536a9d93-fd2d-4885-9fde-02738941522b" + "77b93a01-3920-4cc3-aa58-91013fd94da2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12038.azuredatalakestore.net\",\r\n \"accountId\": \"67217cb6-5eba-46af-9420-44d0df4bee6e\",\r\n \"creationTime\": \"2016-11-08T04:06:47.5453058Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:06:47.5453058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038\",\r\n \"name\": \"testdatalake12038\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18414.azuredatalakestore.net\",\r\n \"accountId\": \"6b24d269-afea-4043-80e1-73b30a0a348e\",\r\n \"creationTime\": \"2017-03-27T20:01:05.3742699Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:05.3742699Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414\",\r\n \"name\": \"testdatalake18414\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -725,7 +721,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:22 GMT" + "Mon, 27 Mar 2017 20:02:12 GMT" ], "Pragma": [ "no-cache" @@ -737,7 +733,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4dae4aea-35c8-420f-9ae0-b27ba459fefd" + "e4ba7b48-a57c-426f-b3ea-582c717641f9" ], "X-Content-Type-Options": [ "nosniff" @@ -749,13 +745,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14980" ], "x-ms-correlation-request-id": [ - "c6a3ba41-8ff9-4fe7-9b35-071d3bde50a9" + "910a8956-a132-469a-a763-bfb2f7c7308b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040822Z:c6a3ba41-8ff9-4fe7-9b35-071d3bde50a9" + "WESTUS2:20170327T200212Z:910a8956-a132-469a-a763-bfb2f7c7308b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,8 +760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -776,17 +772,16 @@ "31" ], "x-ms-client-request-id": [ - "fdf71655-6f53-4a80-8e71-f2ffe68b26b5" + "221d7f6b-f538-49e8-a8ee-6b67e358cc83" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"67217cb6-5eba-46af-9420-44d0df4bee6e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038\",\r\n \"name\": \"testdatalake12038\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"6b24d269-afea-4043-80e1-73b30a0a348e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414\",\r\n \"name\": \"testdatalake18414\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -804,13 +799,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:06:46 GMT" + "Mon, 27 Mar 2017 20:01:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -819,10 +814,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/67217cb6-5eba-46af-9420-44d0df4bee6e0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6b24d269-afea-4043-80e1-73b30a0a348e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "0121440a-67c3-4502-a8ad-bb676240b5b8" + "fcd5417b-83c7-49dc-8435-b390da89fe64" ], "X-Content-Type-Options": [ "nosniff" @@ -834,13 +829,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1182" ], "x-ms-correlation-request-id": [ - "7dfab0ff-f7bc-4317-8fc3-7953a9ca0688" + "04a56051-a0da-41b5-8f8c-ba4c47b69364" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040647Z:7dfab0ff-f7bc-4317-8fc3-7953a9ca0688" + "WESTUS2:20170327T200106Z:04a56051-a0da-41b5-8f8c-ba4c47b69364" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +844,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/67217cb6-5eba-46af-9420-44d0df4bee6e0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY3MjE3Y2I2LTVlYmEtNDZhZi05NDIwLTQ0ZDBkZjRiZWU2ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6b24d269-afea-4043-80e1-73b30a0a348e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZiMjRkMjY5LWFmZWEtNDA0My04MGUxLTczYjMwYTBhMzQ4ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -874,7 +868,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:07:17 GMT" + "Mon, 27 Mar 2017 20:01:36 GMT" ], "Pragma": [ "no-cache" @@ -886,7 +880,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fe9b0a6f-3829-4247-8fd6-691a2dadd2c9" + "f5ab4d2d-1c20-4e34-a28b-098baaf9f701" ], "X-Content-Type-Options": [ "nosniff" @@ -898,13 +892,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14984" ], "x-ms-correlation-request-id": [ - "8a39cf67-e1a3-43a5-bf33-a941ee73b645" + "092477de-ec5d-4daf-b8e8-949043973c03" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040717Z:8a39cf67-e1a3-43a5-bf33-a941ee73b645" + "WESTUS2:20170327T200137Z:092477de-ec5d-4daf-b8e8-949043973c03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,23 +907,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5OTY2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzE5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e75ec67-9eca-4aca-8020-051d0ce30653" + "e0e6e14b-0738-4a36-a08b-d17f2f453f0e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake29966' under resource group 'rgaba19677' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake26319' under resource group 'rgaba12062' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -944,7 +937,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:07:18 GMT" + "Mon, 27 Mar 2017 20:01:38 GMT" ], "Pragma": [ "no-cache" @@ -953,13 +946,13 @@ "gateway" ], "x-ms-request-id": [ - "f1f6e158-ca8f-41cf-aa22-25806a384a94" + "440a2c19-2583-4c2a-ba05-0f4f586263f2" ], "x-ms-correlation-request-id": [ - "f1f6e158-ca8f-41cf-aa22-25806a384a94" + "440a2c19-2583-4c2a-ba05-0f4f586263f2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040719Z:f1f6e158-ca8f-41cf-aa22-25806a384a94" + "WESTUS2:20170327T200138Z:440a2c19-2583-4c2a-ba05-0f4f586263f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -968,17 +961,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5OTY2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzE5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29966.azuredatalakestore.net\",\r\n \"accountId\": \"9fae142b-99d5-49d5-9798-0b5c2993def5\",\r\n \"creationTime\": \"2016-11-08T04:07:20.7196565Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:07:20.7196565Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966\",\r\n \"name\": \"testdatalake29966\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake26319.azuredatalakestore.net\",\r\n \"accountId\": \"76c4d631-03c6-4e69-9fea-344270358fc1\",\r\n \"creationTime\": \"2017-03-27T20:01:41.0239612Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:41.0239612Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319\",\r\n \"name\": \"testdatalake26319\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -993,7 +985,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:20 GMT" + "Mon, 27 Mar 2017 20:02:11 GMT" ], "Pragma": [ "no-cache" @@ -1005,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1b90f936-6621-4fcb-bb1f-9a95c2c932c0" + "96ffc6b1-568c-441d-a549-fa276d2cbe60" ], "X-Content-Type-Options": [ "nosniff" @@ -1017,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14966" ], "x-ms-correlation-request-id": [ - "39cc412b-f4b2-4c5b-9ed5-717d5f11197b" + "0a54d898-7006-425c-94a2-063340d6d5bf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040821Z:39cc412b-f4b2-4c5b-9ed5-717d5f11197b" + "WESTUS2:20170327T200211Z:0a54d898-7006-425c-94a2-063340d6d5bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,23 +1024,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5OTY2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzE5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3aed6b0-93a4-4185-8a7b-3066a16820c2" + "86c7368e-e7b4-4b47-aeaf-685a3e7ba5ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29966.azuredatalakestore.net\",\r\n \"accountId\": \"9fae142b-99d5-49d5-9798-0b5c2993def5\",\r\n \"creationTime\": \"2016-11-08T04:07:20.7196565Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:07:20.7196565Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966\",\r\n \"name\": \"testdatalake29966\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake26319.azuredatalakestore.net\",\r\n \"accountId\": \"76c4d631-03c6-4e69-9fea-344270358fc1\",\r\n \"creationTime\": \"2017-03-27T20:01:41.0239612Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:41.0239612Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319\",\r\n \"name\": \"testdatalake26319\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1063,7 +1054,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:20 GMT" + "Mon, 27 Mar 2017 20:02:11 GMT" ], "Pragma": [ "no-cache" @@ -1075,7 +1066,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5c253757-0434-4e8a-a665-aaf02dc84750" + "6371f01e-2cf7-440b-8759-3c5f340ba62b" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,13 +1078,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14988" ], "x-ms-correlation-request-id": [ - "e548ebd3-e3f1-4ed2-81dd-1cabfde1d301" + "05f66e72-170c-4b24-a12c-c61a1a119590" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040821Z:e548ebd3-e3f1-4ed2-81dd-1cabfde1d301" + "WESTUS2:20170327T200212Z:05f66e72-170c-4b24-a12c-c61a1a119590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5OTY2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzE5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1114,17 +1105,16 @@ "31" ], "x-ms-client-request-id": [ - "f7037524-ab04-44c5-b5c0-7dfeb377fa26" + "84b0dcc7-57e2-4950-b82f-1826364ef44f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"9fae142b-99d5-49d5-9798-0b5c2993def5\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966\",\r\n \"name\": \"testdatalake29966\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"76c4d631-03c6-4e69-9fea-344270358fc1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319\",\r\n \"name\": \"testdatalake26319\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -1142,13 +1132,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:07:19 GMT" + "Mon, 27 Mar 2017 20:01:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1157,10 +1147,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9fae142b-99d5-49d5-9798-0b5c2993def50?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/76c4d631-03c6-4e69-9fea-344270358fc10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "56963808-e7e2-48e3-90b6-6c20dd302d8c" + "19d8883f-1a77-48cd-b5a9-5dacd2591410" ], "X-Content-Type-Options": [ "nosniff" @@ -1172,13 +1162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1182" ], "x-ms-correlation-request-id": [ - "37e44ce1-12c4-42c6-94a0-a13bf687c27f" + "654b63c4-3edd-44f2-8f38-318f3fbd0735" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040719Z:37e44ce1-12c4-42c6-94a0-a13bf687c27f" + "WESTUS2:20170327T200140Z:654b63c4-3edd-44f2-8f38-318f3fbd0735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,78 +1177,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9fae142b-99d5-49d5-9798-0b5c2993def50?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzlmYWUxNDJiLTk5ZDUtNDlkNS05Nzk4LTBiNWMyOTkzZGVmNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/76c4d631-03c6-4e69-9fea-344270358fc10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc2YzRkNjMxLTAzYzYtNGU2OS05ZmVhLTM0NDI3MDM1OGZjMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Tue, 08 Nov 2016 04:07:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "65e92f56-a979-4821-8afd-f61348fad2ce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "229248ec-ff76-451d-b069-0a903c465b68" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040750Z:229248ec-ff76-451d-b069-0a903c465b68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9fae142b-99d5-49d5-9798-0b5c2993def50?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzlmYWUxNDJiLTk5ZDUtNDlkNS05Nzk4LTBiNWMyOTkzZGVmNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1276,7 +1201,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:20 GMT" + "Mon, 27 Mar 2017 20:02:11 GMT" ], "Pragma": [ "no-cache" @@ -1288,7 +1213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2211c1ef-fe93-4257-ae3a-1b1b187a80e7" + "fbe33c06-b3b9-4a5e-a824-d626890a0d6b" ], "X-Content-Type-Options": [ "nosniff" @@ -1300,13 +1225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14986" ], "x-ms-correlation-request-id": [ - "65854f41-88bc-4ea7-86bd-83e9535c9e2a" + "e4ac9835-acee-4b62-8d0e-4ea079e20005" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040820Z:65854f41-88bc-4ea7-86bd-83e9535c9e2a" + "WESTUS2:20170327T200211Z:e4ac9835-acee-4b62-8d0e-4ea079e20005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1315,10 +1240,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjU2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQ4NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12038\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"testdatalake12038\",\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18414\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18414\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1327,17 +1252,16 @@ "290" ], "x-ms-client-request-id": [ - "c4ac5b29-9f32-4925-93e9-03c170f740e6" + "3ae9fbc3-6cd4-4f1d-8a3e-cccd0f1ef939" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12038\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12038\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610\",\r\n \"name\": \"testaba25610\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18414\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18414\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858\",\r\n \"name\": \"testaba24858\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "573" @@ -1355,13 +1279,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:24 GMT" + "Mon, 27 Mar 2017 20:02:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1370,10 +1294,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/2b70f130-c3f1-4f2a-845b-5cdf733f31310?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4ebb4031-a323-4746-a6ec-fbab5be038200?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "17dff3b3-395b-454d-8aa9-a1d5dd1a1c41" + "5025484f-eaa6-4744-9288-3945dd3cf52a" ], "X-Content-Type-Options": [ "nosniff" @@ -1385,13 +1309,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "2939befd-b03a-4fee-8ec5-bb3696b8ff2d" + "5b81bd86-b26c-4eb0-b73c-976d2251bf83" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040824Z:2939befd-b03a-4fee-8ec5-bb3696b8ff2d" + "CENTRALUS:20170327T200215Z:5b81bd86-b26c-4eb0-b73c-976d2251bf83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,14 +1324,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/2b70f130-c3f1-4f2a-845b-5cdf733f31310?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yYjcwZjEzMC1jM2YxLTRmMmEtODQ1Yi01Y2RmNzMzZjMxMzEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4ebb4031-a323-4746-a6ec-fbab5be038200?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80ZWJiNDAzMS1hMzIzLTQ3NDYtYTZlYy1mYmFiNWJlMDM4MjAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1425,7 +1348,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:54 GMT" + "Mon, 27 Mar 2017 20:02:44 GMT" ], "Pragma": [ "no-cache" @@ -1437,7 +1360,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bcfc4dff-46ff-4a07-9d1d-ed9e318488d6" + "fb5e86a5-30da-4d98-bfbc-01445e1eb397" ], "X-Content-Type-Options": [ "nosniff" @@ -1449,13 +1372,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14992" ], "x-ms-correlation-request-id": [ - "b88aadce-bdd4-4248-9627-4aae59f3e29b" + "ee77b841-8509-482e-b295-4479d8cf2fe9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040855Z:b88aadce-bdd4-4248-9627-4aae59f3e29b" + "CENTRALUS:20170327T200245Z:ee77b841-8509-482e-b295-4479d8cf2fe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,17 +1387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjU2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQ4NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12038\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12038\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba25610.azuredatalakeanalytics.net\",\r\n \"accountId\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"creationTime\": \"2016-11-08T04:08:27.324033Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:08:27.324033Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610\",\r\n \"name\": \"testaba25610\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18414\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18414\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24858.azuredatalakeanalytics.net\",\r\n \"accountId\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"creationTime\": \"2017-03-27T20:02:17.7965133Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:02:17.7965133Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858\",\r\n \"name\": \"testaba24858\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1489,7 +1411,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:55 GMT" + "Mon, 27 Mar 2017 20:02:46 GMT" ], "Pragma": [ "no-cache" @@ -1501,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5022c169-c788-4680-a8e5-7d6e59fa4e85" + "c805eb6b-38ab-479d-878d-1f30943d2bcf" ], "X-Content-Type-Options": [ "nosniff" @@ -1513,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-correlation-request-id": [ - "9331fd57-0e4d-43fe-b3ef-e9597e81e613" + "e1b69f1f-ac43-441c-b470-6c1b1977d4fb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040855Z:9331fd57-0e4d-43fe-b3ef-e9597e81e613" + "CENTRALUS:20170327T200246Z:e1b69f1f-ac43-441c-b470-6c1b1977d4fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1528,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjU2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQ4NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79316445-3236-444a-aa8a-50654493e334" + "d9613bbb-98c0-4cce-b41a-2f3354250179" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12038\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12038\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba25610.azuredatalakeanalytics.net\",\r\n \"accountId\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"creationTime\": \"2016-11-08T04:08:27.324033Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:08:27.324033Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610\",\r\n \"name\": \"testaba25610\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18414\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18414\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24858.azuredatalakeanalytics.net\",\r\n \"accountId\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"creationTime\": \"2017-03-27T20:02:17.7965133Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:02:17.7965133Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858\",\r\n \"name\": \"testaba24858\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1559,7 +1480,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:56 GMT" + "Mon, 27 Mar 2017 20:02:45 GMT" ], "Pragma": [ "no-cache" @@ -1571,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b97dda5-1712-4d0f-b68b-aebdf55fa355" + "7d8a08e6-39e9-4a45-bfc8-1baed4eca7f6" ], "X-Content-Type-Options": [ "nosniff" @@ -1583,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14996" ], "x-ms-correlation-request-id": [ - "5a7329ff-6e8d-483d-84c9-0e7ab433dbc3" + "ceecc342-66e9-4dc5-9611-d173762af55a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040856Z:5a7329ff-6e8d-483d-84c9-0e7ab433dbc3" + "CENTRALUS:20170327T200246Z:ceecc342-66e9-4dc5-9611-d173762af55a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1598,75 +1519,28 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\r\\n//Create Table\\r\\nCREATE TABLE testdb15849.dbo.testtbl13852\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb15849.dbo.testview16733 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb15849.dbo.testview16733 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\r\\n//Create Table\\r\\nCREATE TABLE testdb18438.dbo.testtbl17545\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb18438.dbo.testview15912 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb18438.dbo.testview15912 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2538" - ], - "x-ms-client-request-id": [ - "a85bf48e-df12-4485-83ad-a670a3ed813e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 04:10:58 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "2531" ], - "x-ms-request-id": [ - "5e83e1f3-1e69-4676-a2ca-c9b32545c740" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "x-ms-client-request-id": [ - "584e9ed1-83e0-492f-919e-af42fa259329" + "ecbab512-e57b-4bed-a479-faa8ae3fc7e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1887993S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1678,13 +1552,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:10:58 GMT" + "Mon, 27 Mar 2017 20:02:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "40867e9a-3b1e-4aa3-abf5-899c922ffd9b" + "fc3afb8d-23eb-4f9d-807a-16b89e47fbb6" ], "X-Content-Type-Options": [ "nosniff" @@ -1696,23 +1570,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9afd1134-bb3b-432d-b83c-63b3b59d9fb5" + "58068923-33cb-4c4f-be8a-740193305f4f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.3607824S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2349367S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1724,13 +1597,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:03 GMT" + "Mon, 27 Mar 2017 20:02:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "925b38b5-14f4-4c1c-9b32-eed5da45e1b7" + "6b54e334-142b-4391-b374-fd07bbbd737e" ], "X-Content-Type-Options": [ "nosniff" @@ -1742,23 +1615,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e419783f-1b62-464f-9a52-f5107cd95b33" + "790a8dfb-c912-4d00-8216-7143d6a24014" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.5729052S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5319214S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1770,13 +1642,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:08 GMT" + "Mon, 27 Mar 2017 20:02:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "db5b7540-6074-4d3f-9746-81db07548de6" + "30f5eaa7-82eb-4612-abfd-ab93d48fc93f" ], "X-Content-Type-Options": [ "nosniff" @@ -1788,23 +1660,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e667f9d2-3724-47c0-b98b-2e6320ee5030" + "56c48245-a7cc-4466-8df7-5b766608a73a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.7195389S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1816,13 +1687,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:13 GMT" + "Mon, 27 Mar 2017 20:03:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "27827806-1994-4ad2-8ce9-4ff4158f2b9f" + "1e0f3d2f-8c87-4d89-a227-549b0ea4566f" ], "X-Content-Type-Options": [ "nosniff" @@ -1834,23 +1705,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9e29148-25ab-4a94-89db-34a95a290858" + "23402612-bd4b-4edc-b3c6-2b6703536dd8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.4909094-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"yarnApplicationId\": 90649,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7235161S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156104S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1862,13 +1732,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:18 GMT" + "Mon, 27 Mar 2017 20:03:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "cab22a18-f84f-456b-a2b9-136608b37fae" + "fd6b97bf-1443-4c95-8fb0-f1445ffc8609" ], "X-Content-Type-Options": [ "nosniff" @@ -1880,23 +1750,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81d7b0e6-740b-46d6-8646-f1e7ada3e137" + "a779c82a-21ac-4d15-bb65-3adb015bc117" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.4909094-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"yarnApplicationId\": 90649,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7235161S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156104S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1908,13 +1777,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:23 GMT" + "Mon, 27 Mar 2017 20:03:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "be990f03-440f-4550-9eff-d079dff62164" + "92ce2193-97cd-4110-a84a-d7c98b1a1b64" ], "X-Content-Type-Options": [ "nosniff" @@ -1926,23 +1795,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6385217-c045-4c57-9c40-14a901de3681" + "8cb381cd-4c87-45fe-b5ba-5ba54edc522b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"startTime\": \"2016-11-07T20:11:29.6681165-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-07T20:11:29.6681165-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0.2670253S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.4909094-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"yarnApplicationId\": 90649,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7235161S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156104S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1954,13 +1822,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:29 GMT" + "Mon, 27 Mar 2017 20:03:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "78126738-7ea9-4f23-81da-0fa22b458a60" + "7d83296b-6304-41c3-a523-09e0459f612a" ], "X-Content-Type-Options": [ "nosniff" @@ -1972,23 +1840,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f81aa09-7f94-48e6-97ed-00a061dc497e" + "e416d956-0ed1-48b5-835e-f6a95152870d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"startTime\": \"2016-11-07T20:11:29.6681165-08:00\",\r\n \"endTime\": \"2016-11-07T20:11:29.6837194-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-07T20:11:29.6681165-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-07T20:11:29.6837194-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0.0156029S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"startTime\": \"2017-03-27T13:03:19.0693374-07:00\",\r\n \"endTime\": \"2017-03-27T13:03:19.084964-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.4909094-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T13:03:19.0693374-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T13:03:19.084964-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"yarnApplicationId\": 90649,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7235161S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156104S\",\r\n \"totalRunningTime\": \"PT0.0156266S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2000,13 +1867,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:35 GMT" + "Mon, 27 Mar 2017 20:03:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "f7cab878-231f-4eee-ac67-3b25538f70b4" + "bf31ff44-8d90-4eee-8e99-d4a6fd298915" ], "X-Content-Type-Options": [ "nosniff" @@ -2024,17 +1891,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c070f749-64d1-4779-8e89-0a678ab6ce26" + "a75d3e2e-6882-4a28-aa97-cc6af0f9f473" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"8364f838-9e4d-4586-b148-0b6c19d55382\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"version\": \"71eb7bb6-c1dd-47df-88cf-ce1972c273d7\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"0285c445-83f8-4ab2-b875-cdc4de7b6e0f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"version\": \"9f69665f-a126-490b-8dda-dbf62089f96f\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2046,13 +1912,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:35 GMT" + "Mon, 27 Mar 2017 20:03:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "7913250a-b3cf-4f65-b387-0c63ba896ab3" + "95fb486b-0019-4f12-84c3-8a1bd1380cb1" ], "OData-Version": [ "4.0" @@ -2067,23 +1933,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb3c419a-b6ac-4d11-9f13-b856013b2cbf" + "7c1a4170-2db5-4b23-8627-7215dde4b975" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"version\": \"71eb7bb6-c1dd-47df-88cf-ce1972c273d7\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"version\": \"9f69665f-a126-490b-8dda-dbf62089f96f\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2095,13 +1960,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:35 GMT" + "Mon, 27 Mar 2017 20:03:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "b36cb4e9-afdb-4198-982b-fba13ba12da1" + "4da7327e-d63d-4478-abdf-c7bb2e235db4" ], "OData-Version": [ "4.0" @@ -2116,23 +1981,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tables?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGVzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tables?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGVzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7625581a-f512-4ed8-8e8b-e266f9a93a7a" + "8039f5b7-e3c0-43a1-b279-dcff853f6daa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl13852\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"aae5d43a-cd22-4a1e-9579-9bf820273c81\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"28fd08f8-debd-468f-916e-6ba9aaf032d1\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl17545\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"b513a70e-4e21-4951-ad04-095af21068d8\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"89dbeb68-94bc-4da3-95d0-8ec93935a89a\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2144,13 +2008,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "4981288b-a2cc-41f3-8766-156d5d023b40" + "60c1445b-c7aa-42c7-ae17-a53fc9109c21" ], "OData-Version": [ "4.0" @@ -2165,23 +2029,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tables/testtbl13852?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzg1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tables/testtbl17545?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxNzU0NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1436309-be91-4e43-96b7-d39b1a848c34" + "38311e7f-f687-4bfb-b881-56873e28c6ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl13852\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"aae5d43a-cd22-4a1e-9579-9bf820273c81\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"28fd08f8-debd-468f-916e-6ba9aaf032d1\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl17545\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"b513a70e-4e21-4951-ad04-095af21068d8\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"89dbeb68-94bc-4da3-95d0-8ec93935a89a\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2193,13 +2056,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "06228dd4-754a-4428-b4cb-e8e471e24ae3" + "89a91e73-2104-40f9-bd68-d4fef2380de6" ], "OData-Version": [ "4.0" @@ -2214,23 +2077,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f6f900d-4912-462c-a339-a3f301a0c883" + "1f7f327d-c131-4128-be46-23c2729bbe4b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf12607\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"d3c62b5c-109e-4ef7-9784-5a30d7f403ce\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf12667\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"47834a00-1a6e-4029-9e74-af38bd1de13b\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2242,13 +2104,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "30746ee1-bf9c-4b2e-970c-8ccb7c76389a" + "ab0534b2-a48f-48e6-ace3-80728d58d458" ], "OData-Version": [ "4.0" @@ -2263,23 +2125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tablevaluedfunctions/testtvf12607?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnMvdGVzdHR2ZjEyNjA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tablevaluedfunctions/testtvf12667?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnMvdGVzdHR2ZjEyNjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb042cc3-ecad-4090-839c-bfedffd00623" + "f4804122-34e1-4a23-b817-cb992dd295c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf12607\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"d3c62b5c-109e-4ef7-9784-5a30d7f403ce\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf12667\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"47834a00-1a6e-4029-9e74-af38bd1de13b\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2291,13 +2152,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "3f0d29ee-83dc-4740-be5f-20a9cceb0e20" + "d75e946a-d182-4aec-96b9-dcfce64afb5a" ], "OData-Version": [ "4.0" @@ -2312,23 +2173,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/views?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdmlld3M/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/views?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdmlld3M/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3eeb2bd9-31da-43e6-bd9d-9e1442615b86" + "c8781715-5cf1-433e-aa24-ee34dd3586ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview16733\",\r\n \"definition\": \"CREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"6cdb2e4c-d90e-44dc-9996-fc5d82b3b3c3\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview15912\",\r\n \"definition\": \"CREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"17e15e3b-aebe-4c67-a94d-90dfba59790b\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2340,13 +2200,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "55ebd271-8621-4547-b013-e99c29a657fc" + "d4841b02-df8c-4f48-ba56-3b4bd6623458" ], "OData-Version": [ "4.0" @@ -2361,23 +2221,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/views/testview16733?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdmlld3MvdGVzdHZpZXcxNjczMz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/views/testview15912?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdmlld3MvdGVzdHZpZXcxNTkxMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2b832ad-2c9a-4f10-abe4-efc1c0c403fb" + "5102de56-2591-4f47-90c5-cd33e1d84729" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview16733\",\r\n \"definition\": \"CREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"6cdb2e4c-d90e-44dc-9996-fc5d82b3b3c3\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview15912\",\r\n \"definition\": \"CREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"17e15e3b-aebe-4c67-a94d-90dfba59790b\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2389,13 +2248,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "ed011330-f61f-4352-a40a-fddccb6990b4" + "d40eb461-3af9-48c3-962f-c7db6bd8e246" ], "OData-Version": [ "4.0" @@ -2410,23 +2269,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/procedures?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/procedures?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "002e797b-5b72-471d-9377-57ba2c113416" + "67001b17-fe3d-4f92-b120-37adf9e5e7b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc1345\",\r\n \"definition\": \"CREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"1b84ac98-f28e-464d-b6a0-625cd2f6e0af\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc19005\",\r\n \"definition\": \"CREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"f54d58e7-90fe-4431-9af7-7042af3c6604\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2438,13 +2296,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "579aeec5-004b-4902-aad0-975cc6ef05fe" + "a2806bfc-9ed9-406d-8981-8d1a56b6ef57" ], "OData-Version": [ "4.0" @@ -2459,23 +2317,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/procedures/testproc1345?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcy90ZXN0cHJvYzEzNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/procedures/testproc19005?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcy90ZXN0cHJvYzE5MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "730d7cea-0a80-40b9-9cdf-951e5ce37e9d" + "c03f04e6-214e-445a-bef6-b5bd938a994d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc1345\",\r\n \"definition\": \"CREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"1b84ac98-f28e-464d-b6a0-625cd2f6e0af\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc19005\",\r\n \"definition\": \"CREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"f54d58e7-90fe-4431-9af7-7042af3c6604\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2487,13 +2344,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "5c2aef8d-97e8-4621-b3c9-e73deda2fcce" + "d259346c-aa02-4a7f-badf-ad4ae0ac6ed9" ], "OData-Version": [ "4.0" @@ -2508,23 +2365,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tables/testtbl13852/partitions?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzg1Mi9wYXJ0aXRpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tables/testtbl17545/partitions?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxNzU0NS9wYXJ0aXRpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e5a030b-c973-4e98-b217-b4d29a91f7d0" + "9dadccdd-a2a3-4c8a-a86a-c2a7c7732441" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl13852_Partition_6b160950-0910-4a8c-bc39-2dbd60342491\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2016-11-08T04:11:25.71-08:00\",\r\n \"parentName\": {\r\n \"server\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"firstPart\": \"testdb15849\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl13852\"\r\n },\r\n \"version\": \"5f34121f-2f50-4091-8ebc-685b1befa843\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl17545_Partition_b9bdd796-6ee6-4c15-916e-9de16985f6ac\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2017-03-27T20:03:13.537-07:00\",\r\n \"parentName\": {\r\n \"server\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"firstPart\": \"testdb18438\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl17545\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"b154f876-f780-4550-a20a-56c6584fd1a1\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2536,13 +2392,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "9b3f090f-a16a-4878-bbb6-72bfc70a662c" + "aee43c10-a757-4626-8a6e-8da7a7ed0c6a" ], "OData-Version": [ "4.0" @@ -2557,23 +2413,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tables/testtbl13852/partitions/testtbl13852_Partition_6b160950-0910-4a8c-bc39-2dbd60342491?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzg1Mi9wYXJ0aXRpb25zL3Rlc3R0YmwxMzg1Ml9QYXJ0aXRpb25fNmIxNjA5NTAtMDkxMC00YThjLWJjMzktMmRiZDYwMzQyNDkxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tables/testtbl17545/partitions/testtbl17545_Partition_b9bdd796-6ee6-4c15-916e-9de16985f6ac?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxNzU0NS9wYXJ0aXRpb25zL3Rlc3R0YmwxNzU0NV9QYXJ0aXRpb25fYjliZGQ3OTYtNmVlNi00YzE1LTkxNmUtOWRlMTY5ODVmNmFjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4866a5ad-b5a0-435f-a26b-81f083ea10c3" + "09c8de61-dbda-42a0-878e-cede2739fe62" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl13852_Partition_6b160950-0910-4a8c-bc39-2dbd60342491\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2016-11-08T04:11:25.71-08:00\",\r\n \"parentName\": {\r\n \"server\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"firstPart\": \"testdb15849\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl13852\"\r\n },\r\n \"version\": \"5f34121f-2f50-4091-8ebc-685b1befa843\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl17545_Partition_b9bdd796-6ee6-4c15-916e-9de16985f6ac\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2017-03-27T20:03:13.537-07:00\",\r\n \"parentName\": {\r\n \"server\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"firstPart\": \"testdb18438\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl17545\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"b154f876-f780-4550-a20a-56c6584fd1a1\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2585,13 +2440,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "9939ff1c-5ead-4a64-8237-a905ad289bbb" + "0b212b1a-569c-4990-a5dd-29e446c9f868" ], "OData-Version": [ "4.0" @@ -2606,23 +2461,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/types?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdHlwZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/types?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdHlwZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3b6be8f-5809-4100-b5c2-6f12a27018bc" + "f08a3006-3c49-4023-87bd-72fc986af257" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 334,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"1137ad93-d19b-4d4e-b726-011f76d4d833\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 341,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 339,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 338,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 343,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 342,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 344,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 345,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 335,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 336,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 337,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 333,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"18cf5d12-3651-44fe-ad16-cf5068f0b112\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 346,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 347,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 340,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 332,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"f89f413d-bd5f-440a-b069-8fc345643648\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 334,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"1137ad93-d19b-4d4e-b726-011f76d4d833\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 341,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 339,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 338,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 343,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 342,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 344,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 345,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 335,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 336,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 337,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 333,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"18cf5d12-3651-44fe-ad16-cf5068f0b112\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 346,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 347,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 340,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 332,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"f89f413d-bd5f-440a-b069-8fc345643648\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2634,13 +2488,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:38 GMT" + "Mon, 27 Mar 2017 20:03:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "00d80a43-0768-439d-9d16-69588cb6dd9c" + "ab63afab-29d6-463f-bf5b-f921f9062781" ], "OData-Version": [ "4.0" @@ -2655,23 +2509,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/types?$filter=isComplexType%20eq%20false&api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdHlwZXM/JGZpbHRlcj1pc0NvbXBsZXhUeXBlJTIwZXElMjBmYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/types?$filter=isComplexType%20eq%20false&api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdHlwZXM/JGZpbHRlcj1pc0NvbXBsZXhUeXBlJTIwZXElMjBmYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a195c13f-c516-453e-86c6-0755b3364975" + "068205e8-0f6f-4033-8801-292770830de2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 341,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 339,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 338,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 343,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 342,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 344,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 345,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 335,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 336,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 337,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 346,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 347,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 340,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 341,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 339,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 338,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 343,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 342,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 344,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 345,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 335,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 336,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 337,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 346,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 347,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 340,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2683,13 +2536,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:38 GMT" + "Mon, 27 Mar 2017 20:03:27 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "9d4a1317-37c8-4ab0-9708-aa3a52662a07" + "03a6575a-4634-4af0-90e0-d3602222ee8b" ], "OData-Version": [ "4.0" @@ -2706,27 +2559,27 @@ ], "Names": { ".ctor": [ - "rgaba19677", - "testaba11655", - "testaba25610", - "teststorage15300", - "testdatalake12038", - "testdatalake29966", - "testazureblob11125", - "testdb15849", - "testtbl13852", - "testtvf12607", - "testproc1345", - "testview16733", - "testcred12178", - "testsecret12114", - "testsecretpwd15326" + "rgaba12062", + "testaba14276", + "testaba24858", + "teststorage16801", + "testdatalake18414", + "testdatalake26319", + "testazureblob19364", + "testdb18438", + "testtbl17545", + "testtvf12667", + "testproc19005", + "testview15912", + "testcred16578", + "testsecret1897", + "testsecretpwd19446" ], "CreateCatalog": [ - "8c8c0020-38e2-4d9f-a271-f31df03b4063" + "787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3" ], "RunJobToCompletion": [ - "testjob16387" + "testjob13068" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json index a60cd35ed9ba..ce582eddda66 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b9d6ee7-8099-47d0-a585-d75ddde1fedf" + "36fbde0d-ce4a-46d0-893b-019543936b34" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:31 GMT" + "Mon, 27 Mar 2017 19:24:04 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "8b7b2d41-8a33-4c87-9fad-065ecda1ecff" + "4d7cc824-e237-49be-a17c-2531777e381d" ], "x-ms-correlation-request-id": [ - "8b7b2d41-8a33-4c87-9fad-065ecda1ecff" + "4d7cc824-e237-49be-a17c-2531777e381d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213831Z:8b7b2d41-8a33-4c87-9fad-065ecda1ecff" + "WESTUS2:20170327T192404Z:4d7cc824-e237-49be-a17c-2531777e381d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f014d4a4-148b-4977-9287-b8841ecaceb1" + "8a5eb68c-ed85-4eba-818e-26e1d9736eda" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:31 GMT" + "Mon, 27 Mar 2017 19:24:04 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14988" ], "x-ms-request-id": [ - "413f1a34-e8d2-4c0a-8c24-ce3eeed86e34" + "914c8414-bda0-4f74-b804-300db8c52441" ], "x-ms-correlation-request-id": [ - "413f1a34-e8d2-4c0a-8c24-ce3eeed86e34" + "914c8414-bda0-4f74-b804-300db8c52441" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213831Z:413f1a34-e8d2-4c0a-8c24-ce3eeed86e34" + "WESTUS2:20170327T192404Z:914c8414-bda0-4f74-b804-300db8c52441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f770fce9-2117-4c78-a859-c6262ff9a8bc" + "df85651d-bf92-4ceb-87d1-2fbde0bc7f1e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:32 GMT" + "Mon, 27 Mar 2017 19:24:05 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-request-id": [ - "4c4306e5-12d6-4fe7-8d67-db864aa678b5" + "0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4" ], "x-ms-correlation-request-id": [ - "4c4306e5-12d6-4fe7-8d67-db864aa678b5" + "0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213832Z:4c4306e5-12d6-4fe7-8d67-db864aa678b5" + "WESTUS2:20170327T192405Z:0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc4db4bb-cb6e-4d7b-8fb5-dd0cdda16e2b" + "b427e5a7-76db-43b2-af85-2da2426e55ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:32 GMT" + "Mon, 27 Mar 2017 19:24:05 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14987" ], "x-ms-request-id": [ - "f4ab5cc0-f552-4efd-863c-e3982638d876" + "a773929d-c504-49d7-bbd1-255e0d9c7751" ], "x-ms-correlation-request-id": [ - "f4ab5cc0-f552-4efd-863c-e3982638d876" + "a773929d-c504-49d7-bbd1-255e0d9c7751" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213832Z:f4ab5cc0-f552-4efd-863c-e3982638d876" + "WESTUS2:20170327T192405Z:a773929d-c504-49d7-bbd1-255e0d9c7751" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef2251df-6019-48c4-ae32-77cbbc14b636" + "e7c61db9-0abe-4725-8917-603d44a5cd19" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:33 GMT" + "Mon, 27 Mar 2017 19:24:06 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-request-id": [ - "551fe5ca-bdd8-4e93-be58-56f8ee79b59c" + "d3d8afac-386b-44ee-9527-85a3f9642e04" ], "x-ms-correlation-request-id": [ - "551fe5ca-bdd8-4e93-be58-56f8ee79b59c" + "d3d8afac-386b-44ee-9527-85a3f9642e04" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213833Z:551fe5ca-bdd8-4e93-be58-56f8ee79b59c" + "WESTUS2:20170327T192406Z:d3d8afac-386b-44ee-9527-85a3f9642e04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14ac3e7d-d193-45c5-9c50-59de72911bc0" + "397b9c82-d946-41eb-b490-b5d1463df2b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:33 GMT" + "Mon, 27 Mar 2017 19:24:06 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14986" ], "x-ms-request-id": [ - "512f5e50-8540-44dc-b5d3-300127b7c316" + "840b7eb4-901a-46b0-874d-66d7a934a9f7" ], "x-ms-correlation-request-id": [ - "512f5e50-8540-44dc-b5d3-300127b7c316" + "840b7eb4-901a-46b0-874d-66d7a934a9f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213833Z:512f5e50-8540-44dc-b5d3-300127b7c316" + "WESTUS2:20170327T192406Z:840b7eb4-901a-46b0-874d-66d7a934a9f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTg3OTc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28904f0f-e08b-45cb-8a73-37108658854e" + "ead8d9a1-195e-4ce0-a7b5-74296415af8a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba18797' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba15148' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:33 GMT" + "Mon, 27 Mar 2017 19:24:06 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14985" ], "x-ms-request-id": [ - "a1de254a-2d22-4dff-8de7-94601f9fa626" + "2bb536fb-18bb-4a7d-a2a2-28e0849e0798" ], "x-ms-correlation-request-id": [ - "a1de254a-2d22-4dff-8de7-94601f9fa626" + "2bb536fb-18bb-4a7d-a2a2-28e0849e0798" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213833Z:a1de254a-2d22-4dff-8de7-94601f9fa626" + "WESTUS2:20170327T192406Z:2bb536fb-18bb-4a7d-a2a2-28e0849e0798" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTg3OTc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddd86486-d53f-4a25-9505-abad4ebf93e5" + "42a2d228-b83e-4abe-b851-18e74dd2da70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797\",\r\n \"name\": \"rgaba18797\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148\",\r\n \"name\": \"rgaba15148\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:34 GMT" + "Mon, 27 Mar 2017 19:24:07 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14984" ], "x-ms-request-id": [ - "a0052034-a477-4ca7-a00e-131664e8619c" + "39c982a2-f6e1-47ba-b076-b544ad49e7e8" ], "x-ms-correlation-request-id": [ - "a0052034-a477-4ca7-a00e-131664e8619c" + "39c982a2-f6e1-47ba-b076-b544ad49e7e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213834Z:a0052034-a477-4ca7-a00e-131664e8619c" + "WESTUS2:20170327T192407Z:39c982a2-f6e1-47ba-b076-b544ad49e7e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTg3OTc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "4cd49beb-6e8b-4b4a-b0cf-8977b22f4fb1" + "b06a0492-0852-4b0f-853f-91eb4a7b4968" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797\",\r\n \"name\": \"rgaba18797\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148\",\r\n \"name\": \"rgaba15148\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:34 GMT" + "Mon, 27 Mar 2017 19:24:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-request-id": [ - "e4b55acb-29fb-46dd-b5cd-98252532d61a" + "cf516fb3-1274-4739-86ea-692ae21f4488" ], "x-ms-correlation-request-id": [ - "e4b55acb-29fb-46dd-b5cd-98252532d61a" + "cf516fb3-1274-4739-86ea-692ae21f4488" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213834Z:e4b55acb-29fb-46dd-b5cd-98252532d61a" + "WESTUS2:20170327T192407Z:cf516fb3-1274-4739-86ea-692ae21f4488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,23 +505,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d94aa8a0-7552-430b-b088-b973b3210abd" + "ffcc1107-4f6b-4db9-84a9-d6e8ba880ad7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake14794' under resource group 'rgaba18797' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake14460' under resource group 'rgaba15148' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -536,7 +535,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:34 GMT" + "Mon, 27 Mar 2017 19:24:07 GMT" ], "Pragma": [ "no-cache" @@ -545,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "39cc3ec8-7ded-4f9e-83b3-1603e8901b37" + "f952a614-aa22-4d25-a2b6-60bd0a86320e" ], "x-ms-correlation-request-id": [ - "39cc3ec8-7ded-4f9e-83b3-1603e8901b37" + "f952a614-aa22-4d25-a2b6-60bd0a86320e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213835Z:39cc3ec8-7ded-4f9e-83b3-1603e8901b37" + "WESTUS2:20170327T192407Z:f952a614-aa22-4d25-a2b6-60bd0a86320e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14794.azuredatalakestore.net\",\r\n \"accountId\": \"e91cc439-9995-483a-bcb4-08615fd5e9be\",\r\n \"creationTime\": \"2016-11-08T21:38:40.3626257Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:38:40.3626257Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794\",\r\n \"name\": \"testdatalake14794\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -585,7 +583,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:07 GMT" + "Mon, 27 Mar 2017 19:24:40 GMT" ], "Pragma": [ "no-cache" @@ -597,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "821e0181-a6b4-411b-ac78-bb159eddfea5" + "895b77af-f69c-4d5e-bda3-928d25d16cf9" ], "X-Content-Type-Options": [ "nosniff" @@ -609,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14990" ], "x-ms-correlation-request-id": [ - "e7236d57-57c0-4a35-a70c-c7d64e484a31" + "094a9592-0939-46b9-bcac-84c5f63248d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213908Z:e7236d57-57c0-4a35-a70c-c7d64e484a31" + "WESTUS2:20170327T192440Z:094a9592-0939-46b9-bcac-84c5f63248d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15f0c682-5d20-4ede-8f50-4a49ade4238c" + "501023a1-62e9-428d-b4eb-8af750eb8fbd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14794.azuredatalakestore.net\",\r\n \"accountId\": \"e91cc439-9995-483a-bcb4-08615fd5e9be\",\r\n \"creationTime\": \"2016-11-08T21:38:40.3626257Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:38:40.3626257Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794\",\r\n \"name\": \"testdatalake14794\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -655,7 +652,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:08 GMT" + "Mon, 27 Mar 2017 19:24:40 GMT" ], "Pragma": [ "no-cache" @@ -667,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dce38baa-5b74-4266-91da-4c2976ab18d0" + "164bf6ff-c278-41ae-865f-8fc4de6aaefa" ], "X-Content-Type-Options": [ "nosniff" @@ -679,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14977" ], "x-ms-correlation-request-id": [ - "cd44c4c6-f50b-4ece-bad9-50feae7b6efd" + "b3ce9436-bd7e-4be3-a774-3d5a13af5db1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213909Z:cd44c4c6-f50b-4ece-bad9-50feae7b6efd" + "WESTUS2:20170327T192441Z:b3ce9436-bd7e-4be3-a774-3d5a13af5db1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,23 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de4a08a4-a36d-4ddc-86ee-82f0d801a38e" + "e0e5b77d-ee8e-4a28-bf80-9a000a95e7e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14794.azuredatalakestore.net\",\r\n \"accountId\": \"e91cc439-9995-483a-bcb4-08615fd5e9be\",\r\n \"creationTime\": \"2016-11-08T21:38:40.3626257Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:38:40.3626257Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794\",\r\n \"name\": \"testdatalake14794\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -725,7 +721,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:43 GMT" + "Mon, 27 Mar 2017 19:25:15 GMT" ], "Pragma": [ "no-cache" @@ -737,7 +733,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bbce6113-7576-46e3-80ab-0f8f064ff86e" + "ef492456-19dc-4b36-b0fb-24eb15d784dc" ], "X-Content-Type-Options": [ "nosniff" @@ -749,13 +745,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "c5a37807-8855-4324-a96d-ed232753c7f1" + "6b7b4cc5-f40b-49b0-8c03-02cad7dd2015" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213944Z:c5a37807-8855-4324-a96d-ed232753c7f1" + "WESTUS2:20170327T192515Z:6b7b4cc5-f40b-49b0-8c03-02cad7dd2015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,8 +760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -776,17 +772,16 @@ "31" ], "x-ms-client-request-id": [ - "728eb0b8-c030-43f4-ab02-5c8732d7e80f" + "132da82b-1fa1-4860-9f62-f2b6f79d2aaa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e91cc439-9995-483a-bcb4-08615fd5e9be\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794\",\r\n \"name\": \"testdatalake14794\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -804,13 +799,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:38:36 GMT" + "Mon, 27 Mar 2017 19:24:08 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -819,10 +814,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e91cc439-9995-483a-bcb4-08615fd5e9be0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/da29a822-40e7-492b-8af4-6e3a35a1ba400?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "c6eb7856-d6ee-45f0-b61f-e6a80a1dda43" + "98c677e9-7909-428c-864c-c6b22bdeefd3" ], "X-Content-Type-Options": [ "nosniff" @@ -834,13 +829,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "c7375725-6281-4f2c-898c-0a5a5096b47c" + "0d0325b6-6319-4d94-9ef0-cc30a7a4eb35" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213836Z:c7375725-6281-4f2c-898c-0a5a5096b47c" + "WESTUS2:20170327T192409Z:0d0325b6-6319-4d94-9ef0-cc30a7a4eb35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +844,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e91cc439-9995-483a-bcb4-08615fd5e9be0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U5MWNjNDM5LTk5OTUtNDgzYS1iY2I0LTA4NjE1ZmQ1ZTliZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/da29a822-40e7-492b-8af4-6e3a35a1ba400?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RhMjlhODIyLTQwZTctNDkyYi04YWY0LTZlM2EzNWExYmE0MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -874,7 +868,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:07 GMT" + "Mon, 27 Mar 2017 19:24:39 GMT" ], "Pragma": [ "no-cache" @@ -886,7 +880,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "30011cb8-77c5-477f-afb3-a995358a9e9f" + "c9fbde51-5bf6-4577-85af-8e2c4b944e93" ], "X-Content-Type-Options": [ "nosniff" @@ -898,13 +892,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "028c42cc-3b2e-43dd-b2de-ab4babaa3df3" + "aca3bb6e-203f-4908-9124-518e4e307968" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213907Z:028c42cc-3b2e-43dd-b2de-ab4babaa3df3" + "WESTUS2:20170327T192440Z:aca3bb6e-203f-4908-9124-518e4e307968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,26 +907,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMDc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6b71100-99b8-451a-a154-8d1ba6deef46" + "35cb1289-2c79-47a1-a248-d642c5d4abb0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake22079' under resource group 'rgaba18797' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake215' under resource group 'rgaba15148' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "162" ], "Content-Type": [ "application/json; charset=utf-8" @@ -944,7 +937,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:39:09 GMT" + "Mon, 27 Mar 2017 19:24:41 GMT" ], "Pragma": [ "no-cache" @@ -953,13 +946,13 @@ "gateway" ], "x-ms-request-id": [ - "e9366d76-518a-422a-a485-c8da5d154f62" + "5ca0f377-b842-44dd-bcbf-c30869f33bda" ], "x-ms-correlation-request-id": [ - "e9366d76-518a-422a-a485-c8da5d154f62" + "5ca0f377-b842-44dd-bcbf-c30869f33bda" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213909Z:e9366d76-518a-422a-a485-c8da5d154f62" + "WESTUS2:20170327T192441Z:5ca0f377-b842-44dd-bcbf-c30869f33bda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -968,17 +961,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMDc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake22079.azuredatalakestore.net\",\r\n \"accountId\": \"bd4cb07e-0a48-436e-9573-cf4e040bc0db\",\r\n \"creationTime\": \"2016-11-08T21:39:14.844121Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:39:14.844121Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079\",\r\n \"name\": \"testdatalake22079\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake215.azuredatalakestore.net\",\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": \"2017-03-27T19:24:43.1137438Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:43.1137438Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -993,7 +985,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:42 GMT" + "Mon, 27 Mar 2017 19:25:14 GMT" ], "Pragma": [ "no-cache" @@ -1005,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e9a50218-e372-4f53-86ab-7eea81d810df" + "1d4864d7-7d93-4af0-b044-06a3994b34cc" ], "X-Content-Type-Options": [ "nosniff" @@ -1017,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "662ee437-6059-4b33-a18d-9b725c7264da" + "6964aa22-f129-4102-bbd0-ac1b1b2f08eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213943Z:662ee437-6059-4b33-a18d-9b725c7264da" + "WESTUS2:20170327T192514Z:6964aa22-f129-4102-bbd0-ac1b1b2f08eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,23 +1024,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMDc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06001d44-6b70-4409-8dee-d3b7f20fda03" + "0fe7806f-0ed8-42d8-b091-f59b7dfaff10" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake22079.azuredatalakestore.net\",\r\n \"accountId\": \"bd4cb07e-0a48-436e-9573-cf4e040bc0db\",\r\n \"creationTime\": \"2016-11-08T21:39:14.844121Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:39:14.844121Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079\",\r\n \"name\": \"testdatalake22079\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake215.azuredatalakestore.net\",\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": \"2017-03-27T19:24:43.1137438Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:43.1137438Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1063,7 +1054,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:43 GMT" + "Mon, 27 Mar 2017 19:25:14 GMT" ], "Pragma": [ "no-cache" @@ -1075,7 +1066,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "320920c8-b5d5-4bee-90ed-71af86f40b89" + "49cf646b-1ac6-489f-bb19-f226782f14b0" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,13 +1078,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "7262ea1d-77ad-4099-a7af-ab22e0ca428e" + "6bab513b-edea-4b84-9445-f56b44b325be" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213943Z:7262ea1d-77ad-4099-a7af-ab22e0ca428e" + "WESTUS2:20170327T192515Z:6bab513b-edea-4b84-9445-f56b44b325be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMDc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1114,20 +1105,19 @@ "31" ], "x-ms-client-request-id": [ - "c7e31069-1971-4d17-a509-e60fd0f902c1" + "57abb421-bb73-4a33-bf4a-b91fa1077bae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"bd4cb07e-0a48-436e-9573-cf4e040bc0db\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079\",\r\n \"name\": \"testdatalake22079\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "421" + "417" ], "Content-Type": [ "application/json" @@ -1142,13 +1132,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:10 GMT" + "Mon, 27 Mar 2017 19:24:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1157,10 +1147,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bd4cb07e-0a48-436e-9573-cf4e040bc0db0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/01e78156-ca82-4c0a-ac52-ffa718162f4f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "d0809198-7367-44b0-af9b-4fba2ab233c2" + "819fae1d-e720-4b9c-84c4-93d5db56eec6" ], "X-Content-Type-Options": [ "nosniff" @@ -1172,13 +1162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-correlation-request-id": [ - "0f1d69de-378d-47ea-9adf-5cbc412efc01" + "43b0ddf1-c1d4-4e77-af1d-9e029710a9d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213911Z:0f1d69de-378d-47ea-9adf-5cbc412efc01" + "WESTUS2:20170327T192443Z:43b0ddf1-c1d4-4e77-af1d-9e029710a9d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,14 +1177,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bd4cb07e-0a48-436e-9573-cf4e040bc0db0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JkNGNiMDdlLTBhNDgtNDM2ZS05NTczLWNmNGUwNDBiYzBkYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/01e78156-ca82-4c0a-ac52-ffa718162f4f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzAxZTc4MTU2LWNhODItNGMwYS1hYzUyLWZmYTcxODE2MmY0ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1212,7 +1201,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:42 GMT" + "Mon, 27 Mar 2017 19:25:13 GMT" ], "Pragma": [ "no-cache" @@ -1224,7 +1213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "58deb860-f856-4b6a-b5af-bd0823c33588" + "27128e17-035b-4a84-b557-ad358cbaa533" ], "X-Content-Type-Options": [ "nosniff" @@ -1236,13 +1225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "f8d336ae-8b1f-47e8-8995-d79b4eb0466b" + "06ba2866-a3a6-4430-ac19-bdbf1c339ea1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213942Z:f8d336ae-8b1f-47e8-8995-d79b4eb0466b" + "WESTUS2:20170327T192513Z:06ba2866-a3a6-4430-ac19-bdbf1c339ea1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1240,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjgxMzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14794\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"testdatalake14794\",\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1263,17 +1252,16 @@ "290" ], "x-ms-client-request-id": [ - "31914662-6eed-4f8b-9699-6a8d47d0cbc6" + "46cdf1f9-db2b-4962-93d3-b48f150e1b95" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14794\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14794\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"12e2ffa0-b31f-4d0f-a008-74dbc8f190b2\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136\",\r\n \"name\": \"testaba28136\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "573" @@ -1291,13 +1279,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:45 GMT" + "Mon, 27 Mar 2017 19:25:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1306,10 +1294,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/12e2ffa0-b31f-4d0f-a008-74dbc8f190b20?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f2543aff-5522-4f78-9784-94bf99b241750?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "66632e24-ce48-42dd-8b37-b7a913c7824d" + "d5652489-e9fd-4eac-9486-1a61cbaa706c" ], "X-Content-Type-Options": [ "nosniff" @@ -1324,10 +1312,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "d303ce44-7cf8-4bd7-9f55-8cf5a3b8d65b" + "db609642-e890-4dce-8e70-fdb2afa398c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213946Z:d303ce44-7cf8-4bd7-9f55-8cf5a3b8d65b" + "CENTRALUS:20170327T192517Z:db609642-e890-4dce-8e70-fdb2afa398c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1336,14 +1324,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/12e2ffa0-b31f-4d0f-a008-74dbc8f190b20?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xMmUyZmZhMC1iMzFmLTRkMGYtYTAwOC03NGRiYzhmMTkwYjIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f2543aff-5522-4f78-9784-94bf99b241750?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9mMjU0M2FmZi01NTIyLTRmNzgtOTc4NC05NGJmOTliMjQxNzUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1361,7 +1348,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:40:16 GMT" + "Mon, 27 Mar 2017 19:25:48 GMT" ], "Pragma": [ "no-cache" @@ -1373,7 +1360,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b5b996e5-6895-4aa7-8e22-3d61a25db717" + "88a3b3f9-5f67-4908-8fc3-c8e0fc069ad9" ], "X-Content-Type-Options": [ "nosniff" @@ -1388,10 +1375,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "2fce6c6d-0eec-4352-be00-97fcf32f9262" + "a2e80d44-a951-4e58-a07f-92c473ffdaba" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T214016Z:2fce6c6d-0eec-4352-be00-97fcf32f9262" + "CENTRALUS:20170327T192548Z:a2e80d44-a951-4e58-a07f-92c473ffdaba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,17 +1387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjgxMzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14794\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14794\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba28136.azuredatalakeanalytics.net\",\r\n \"accountId\": \"12e2ffa0-b31f-4d0f-a008-74dbc8f190b2\",\r\n \"creationTime\": \"2016-11-08T21:39:48.6324526Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:39:48.6324526Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136\",\r\n \"name\": \"testaba28136\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24303.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": \"2017-03-27T19:25:19.1642971Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:25:19.1642971Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1425,7 +1411,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:40:16 GMT" + "Mon, 27 Mar 2017 19:25:48 GMT" ], "Pragma": [ "no-cache" @@ -1437,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3011d538-c834-4562-b7a2-561e9f517357" + "5a746b82-aca7-400e-8e24-b09496455f1b" ], "X-Content-Type-Options": [ "nosniff" @@ -1449,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "8efde64d-7a1e-43a7-99eb-cf5b0623b775" + "ce4cc79e-c9bc-4d49-8959-e012178ea23a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T214017Z:8efde64d-7a1e-43a7-99eb-cf5b0623b775" + "CENTRALUS:20170327T192548Z:ce4cc79e-c9bc-4d49-8959-e012178ea23a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjgxMzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73bee111-80b2-4e9c-b47b-30911f14f40e" + "8ba2a14d-4542-4661-8902-ba2935f7f40c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14794\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14794\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba28136.azuredatalakeanalytics.net\",\r\n \"accountId\": \"12e2ffa0-b31f-4d0f-a008-74dbc8f190b2\",\r\n \"creationTime\": \"2016-11-08T21:39:48.6324526Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:39:48.6324526Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136\",\r\n \"name\": \"testaba28136\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24303.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": \"2017-03-27T19:25:19.1642971Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:25:19.1642971Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1495,7 +1480,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:40:17 GMT" + "Mon, 27 Mar 2017 19:25:49 GMT" ], "Pragma": [ "no-cache" @@ -1507,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e1e2ce94-7a98-454f-82dd-43bf0155f563" + "73af71d0-0b69-4da8-8fa9-32dd5652fc12" ], "X-Content-Type-Options": [ "nosniff" @@ -1519,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "bdb43424-ced4-45b9-b3ca-506cad444ee3" + "7d6bf6eb-b9ef-41f2-9f52-1439d0181a3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T214017Z:bdb43424-ced4-45b9-b3ca-506cad444ee3" + "CENTRALUS:20170327T192549Z:7d6bf6eb-b9ef-41f2-9f52-1439d0181a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1534,10 +1519,10 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\r\\n//Create Table\\r\\nCREATE TABLE testdb11293.dbo.testtbl16337\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb11293.dbo.testview16794 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb11293.dbo.testview16794 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\r\\n//Create Table\\r\\nCREATE TABLE testdb16550.dbo.testtbl17111\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb16550.dbo.testview11785 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb16550.dbo.testview11785 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1546,247 +1531,16 @@ "2539" ], "x-ms-client-request-id": [ - "dfb146bf-8032-4de4-85f9-b0f18ac082bb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:20 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "22078097-38ac-4066-bbed-6a90259926b2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1db4ed2-9546-44d6-b368-91d73f165114" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1894906S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:20 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "afef82cb-5f73-4eb8-bb6d-d49732122fd7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "11a05b2f-af0b-4b2b-9146-cb608ba61ec4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.658367S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:25 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "efb12c7d-baad-4dcc-8268-3ccf2ae23439" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "61ce67b9-f199-49e7-9d38-e0680656382e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8303246S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "c00d9229-8943-4e3c-b90a-833c7a3f0dd1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9bd4fefb-304d-479b-a342-ac0a2922501f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:36 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "9e9f1917-37a1-4c91-9b90-ce43d8275a91" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb1f5435-c50a-48f1-b968-5a16aabbc07a" + "28dbf331-8cde-4872-962e-5cbb67faaaba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1798,13 +1552,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 21:42:41 GMT" + "Mon, 27 Mar 2017 19:27:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "414a29e7-e3cb-43b6-be6d-54f90e617101" + "a6815787-e67b-4f0b-8b7d-b08642e0cb72" ], "X-Content-Type-Options": [ "nosniff" @@ -1816,23 +1570,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9eed7ea-ad28-41e9-99e1-1354f243cd4f" + "8a8987f2-3dfa-4648-bf47-d9b3c7aed6bf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2429148S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1844,13 +1597,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 21:42:46 GMT" + "Mon, 27 Mar 2017 19:27:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "ab627c35-c06e-4bad-86ef-ddc04dc35234" + "bb4f5cb3-6ac5-45e1-8be6-2abd130a0976" ], "X-Content-Type-Options": [ "nosniff" @@ -1862,23 +1615,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3901836c-f5b3-4fb7-808d-63e0aec8eb1e" + "df9c23b3-4fa1-4958-bc76-3027c9d033b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6179917S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1890,13 +1642,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 21:42:51 GMT" + "Mon, 27 Mar 2017 19:27:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "eaf0834e-fb35-4609-8ee2-dd3472f46fef" + "0a515089-c18a-4427-987e-1cf5a3da6980" ], "X-Content-Type-Options": [ "nosniff" @@ -1908,23 +1660,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4ae8ce5-d73a-4532-a1a0-ee2819a05912" + "652b2102-f487-44da-a1dd-f3b45701a723" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"startTime\": \"2016-11-08T13:42:55.5774554-08:00\",\r\n \"endTime\": \"2016-11-08T13:42:55.593051-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-08T13:42:55.5774554-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-08T13:42:55.593051-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0.0155956S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"endTime\": \"2017-03-27T12:28:00.0705921-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"E_CSC_USER_DEPRECATEDBUCKETS\",\r\n \"severity\": \"Error\",\r\n \"component\": \"CSC\",\r\n \"source\": \"USER\",\r\n \"message\": \"Use of the keyword 'BUCKETS' in this syntax has been deprecated and is no longer supported.\",\r\n \"details\": \"at token 'BUCKETS', line 16\\r\\nnear the ###:\\r\\n**************\\r\\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY ### BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS t\",\r\n \"description\": \"'BUCKETS' is removed from the partitioning clause syntax.\",\r\n \"resolution\": \"Remove the keyword 'BUCKETS' from the partitioning clause. This will not affect its meaning.\",\r\n \"helpLink\": \"\",\r\n \"filePath\": \"\",\r\n \"lineNumber\": 16,\r\n \"startOffset\": 486,\r\n \"endOffset\": 493\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:28:00.0705921-07:00\",\r\n \"details\": \"result:CompilationFailed\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT8.5314519S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1936,13 +1687,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 21:42:57 GMT" + "Mon, 27 Mar 2017 19:28:01 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "b07ca325-eb94-4066-9d1f-7544a84d6d65" + "5350c033-1915-4ae8-ac5d-36506a99a2b4" ], "X-Content-Type-Options": [ "nosniff" @@ -1952,1343 +1703,31 @@ ] }, "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd16470\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "92" - ], - "x-ms-client-request-id": [ - "659d80bd-2897-496e-beb8-582935442d1a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:58 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "2178a608-5742-416b-adb4-53fcf9922652" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd16470\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "92" - ], - "x-ms-client-request-id": [ - "a3a754b5-fa7a-4b4f-b19e-8cd5fc53f93f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'mafs://accounts/testdatalake14794/fs/catalog/database/07eb3cbc-1cf8-4eb4-83e1-c7f156c989bf/credential/testsecret12087' already exists. Trace: 5202ccea-6759-41ab-9926-2ffebc609461 Time: 2016-11-08T13:42:59.4113282-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:58 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "5202ccea-6759-41ab-9926-2ffebc609461" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 409 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087dup?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODdkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd16470\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "92" - ], - "x-ms-client-request-id": [ - "262c13d7-5210-48a3-8cb5-38bcefe1ae34" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:59 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "7262af86-3b1e-48ff-8a38-f4a622499dbc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "da380fac-add7-4fd1-bc95-f02096d3cc3b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"creationTime\": \"2016-11-08T21:42:58.5582658Z\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:59 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "9b49cca8-922b-4019-9c21-591f98034b20" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffa2428a-365d-46a8-af53-c9b2efac2859" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret12087' does not exist. Trace: 475e5523-99b0-437f-b17f-f8ce8d6e01da Time: 2016-11-08T13:44:17.2872188-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "475e5523-99b0-437f-b17f-f8ce8d6e01da" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "261" - ], - "x-ms-client-request-id": [ - "750fbbea-a0ce-4fe1-88dc-344d79cb3741" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:01 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "8dd134d5-3fc4-45b0-8904-43ddc3ad3110" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52b7ccc0-1bbe-4257-b3af-402caf00251e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1488034S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:02 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "f5f33ef2-8809-4ce9-8a75-13d9c5459e9e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bd4abd56-6dfd-4795-ad52-40fa2f0f550a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6181665S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:07 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "da2dc687-67c6-4827-a378-a0702698d390" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c595fa6a-65d5-48fb-aeaf-2238469b63cc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.821352S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:12 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "5d7cfb74-7eda-477e-a34c-de596e87ac51" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c2f21b4-978f-4242-9819-3a3bd2c9969f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "87d501af-06f6-4847-b67b-0576025f095a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "84b0dcb8-dfad-4c28-aba4-744fb5162499" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:23 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "0d71e4c2-eb70-415a-874a-efd8a0a34cb1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f652ae8-f974-49f3-9476-227401c48b6a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:28 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "a666c967-86b3-4fb4-9f4a-46255fc21202" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "956b22e1-e9b9-448d-a9be-4d899c758744" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "a2ec8cd6-387f-46ee-8a29-9cd5814b579d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dda56ddc-a5ab-455a-abb9-6bbeca5bc0b1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"startTime\": \"2016-11-08T13:43:37.0655585-08:00\",\r\n \"endTime\": \"2016-11-08T13:43:37.0811837-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-08T13:43:37.0655585-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-08T13:43:37.0811837-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0.0156252S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:38 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "b1bff7ba-44d6-4775-b12f-2213925daa77" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/credentials?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f627b7cb-240c-4f1b-adc7-5e14eaf18196" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"testcred14052\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:38 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "0b579d4e-430e-4289-90c1-716737cdeaca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/credentials/testcred14052?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvY3JlZGVudGlhbHMvdGVzdGNyZWQxNDA1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a30f98c-3448-43d2-8bb2-c2c08ed73fc7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"credentialName\": \"testcred14052\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:38 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "7a71fb0d-06a4-4326-aa01-19d20cc0ce55" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "189" - ], - "x-ms-client-request-id": [ - "bf2209c4-85df-44f7-9f32-16a7f4673734" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:39 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "07c088b2-0cfb-4b2f-a473-3fec751a311c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc33706a-3e74-49c8-840d-4836f2cd9d17" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.100443S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:39 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "66f53078-e416-4913-8408-74c880771b39" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "855a559e-8402-4360-a25e-e1046dfcba4c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.2567713S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:44 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "f909cec9-5464-4d09-86ce-8407883447fb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68f5bfa5-3f46-4b02-98cd-c65b32658779" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.4599934S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:50 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "907f2135-6c21-4564-874f-f398a16af847" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13266c3a-8613-4345-9eae-9dd0fe98290d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:55 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "8f35c555-7cf0-429b-9fce-add559177ba6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d12bfe0-db27-4647-87b3-c1e10dc327eb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:01 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "712c0cf2-f978-42ce-bb66-b118aaeb4351" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ccd6d4a-af4d-4e61-b60c-3b2eae7c1131" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:05 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "bffaee13-f365-402b-8966-acf0deb6974c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aeead336-f524-4481-bd5d-b56ae2a89c5a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:10 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "9c337e4f-7b55-4562-9206-a6c6fe26847f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "356ad048-6d43-4468-8e3b-6aa731f52bb0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"startTime\": \"2016-11-08T13:44:12.3786522-08:00\",\r\n \"endTime\": \"2016-11-08T13:44:12.3786522-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-08T13:44:12.3786522-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-08T13:44:12.3786522-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "c002c6f5-de46-4229-ac0a-8fce480f6e2d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba8a20aa-c0ba-4c6b-a3a2-80e11f450ea0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "3963cd6b-0864-4424-a73c-1952f89214d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b86754e4-dda3-43ce-a79e-bd499e7b23a1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "1bdcb1de-d84d-4d8b-aabd-086b9fec0fbd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087dup?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODdkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0f47df70-4f78-4f66-b31e-b09fef89eba0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret12087dup' does not exist. Trace: bd967154-5935-43ee-af7e-b74a9af2a83f Time: 2016-11-08T13:44:18.0059637-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "bd967154-5935-43ee-af7e-b74a9af2a83f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 404 } ], "Names": { ".ctor": [ - "rgaba18797", - "testaba18343", - "testaba28136", - "teststorage119", - "testdatalake14794", - "testdatalake22079", - "testazureblob18628", - "testdb11293", - "testtbl16337", - "testtvf12357", - "testproc11043", - "testview16794", - "testcred14052", - "testsecret12087", - "testsecretpwd16470" + "rgaba15148", + "testaba16750", + "testaba24303", + "teststorage15292", + "testdatalake14460", + "testdatalake215", + "testazureblob14049", + "testdb16550", + "testtbl17111", + "testtvf14031", + "testproc12120", + "testview11785", + "testcred18003", + "testsecret12851", + "testsecretpwd15911" ], "CreateCatalog": [ - "1e926f7a-a3d4-44c7-b602-bf6f22b11082" + "917f8f2f-52cb-4c48-b2c5-bf51b13ed580" ], "RunJobToCompletion": [ - "testjob18083", - "testjob17273", - "testjob14895" - ], - "SecretAndCredentialCRUDTest": [ - "aa6535e2-acdc-44c5-89f3-8587da065cd8", - "d356ff5a-456e-4f17-ae73-1e73ee30b22c" + "testjob16405" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json new file mode 100644 index 000000000000..10ad23eb2551 --- /dev/null +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json @@ -0,0 +1,2237 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f219ff2-b4fc-4962-a396-4544c06f8ff9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "6353b5d8-f82f-4e98-bc9e-6358d93316a8" + ], + "x-ms-correlation-request-id": [ + "6353b5d8-f82f-4e98-bc9e-6358d93316a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200331Z:6353b5d8-f82f-4e98-bc9e-6358d93316a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d78355e-739e-48c7-aec0-a82f47d8aaba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "29018091-43c3-47aa-8cbc-7c6a9c559cca" + ], + "x-ms-correlation-request-id": [ + "29018091-43c3-47aa-8cbc-7c6a9c559cca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200331Z:29018091-43c3-47aa-8cbc-7c6a9c559cca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89f22597-e854-4dda-8d7d-ecb18c7d2008" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "42862fdf-70c1-42d0-a5c4-48da0f6d890c" + ], + "x-ms-correlation-request-id": [ + "42862fdf-70c1-42d0-a5c4-48da0f6d890c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200332Z:42862fdf-70c1-42d0-a5c4-48da0f6d890c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e88ff763-ef32-4f12-81ca-b5dc40c0e87f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "e1c5baef-3cf4-45fd-b303-d069c20daef8" + ], + "x-ms-correlation-request-id": [ + "e1c5baef-3cf4-45fd-b303-d069c20daef8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200332Z:e1c5baef-3cf4-45fd-b303-d069c20daef8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6aea84de-8424-43e8-a521-b0ac666ccc8c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "ca55f8b0-fa8d-4a5e-b0b8-e1af89a336a8" + ], + "x-ms-correlation-request-id": [ + "ca55f8b0-fa8d-4a5e-b0b8-e1af89a336a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200333Z:ca55f8b0-fa8d-4a5e-b0b8-e1af89a336a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a5abd88-ca57-4272-b88d-7988d9cefdb9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "6aad8d70-a9f2-4c03-a51c-5702c38fb70b" + ], + "x-ms-correlation-request-id": [ + "6aad8d70-a9f2-4c03-a51c-5702c38fb70b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200333Z:6aad8d70-a9f2-4c03-a51c-5702c38fb70b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMwMjc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4540f5f8-0a17-4880-96c8-5a2b246f5cd7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba13027' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "bbd17b16-51cc-49fc-9a2d-e3df51e792d7" + ], + "x-ms-correlation-request-id": [ + "bbd17b16-51cc-49fc-9a2d-e3df51e792d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200333Z:bbd17b16-51cc-49fc-9a2d-e3df51e792d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMwMjc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cac3a835-b97c-4671-b628-c5d1ca381e37" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027\",\r\n \"name\": \"rgaba13027\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "3a74e332-4130-4f43-9b54-c18708f937b0" + ], + "x-ms-correlation-request-id": [ + "3a74e332-4130-4f43-9b54-c18708f937b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200334Z:3a74e332-4130-4f43-9b54-c18708f937b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMwMjc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "x-ms-client-request-id": [ + "683a92b5-9c96-4e77-94d8-0193c8804c8e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027\",\r\n \"name\": \"rgaba13027\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "0d1e8320-f13a-4649-873c-7c342f53680c" + ], + "x-ms-correlation-request-id": [ + "0d1e8320-f13a-4649-873c-7c342f53680c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200334Z:0d1e8320-f13a-4649-873c-7c342f53680c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e440589-9a74-4205-b8fb-f47a49c823d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18098' under resource group 'rgaba13027' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4b27aa3b-fa20-49c5-88e6-8db0de38594b" + ], + "x-ms-correlation-request-id": [ + "4b27aa3b-fa20-49c5-88e6-8db0de38594b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200335Z:4b27aa3b-fa20-49c5-88e6-8db0de38594b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18098.azuredatalakestore.net\",\r\n \"accountId\": \"209df4c7-cf03-4720-8fc1-bd32f0ca6b02\",\r\n \"creationTime\": \"2017-03-27T20:03:37.3575578Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:03:37.3575578Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098\",\r\n \"name\": \"testdatalake18098\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8c234cf0-dedb-4694-a9d1-cba6d9091bc4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "b230ad81-0121-4877-9e05-497ad744e5a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200407Z:b230ad81-0121-4877-9e05-497ad744e5a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888c87ef-4e18-49f4-b6d7-fd962107f658" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18098.azuredatalakestore.net\",\r\n \"accountId\": \"209df4c7-cf03-4720-8fc1-bd32f0ca6b02\",\r\n \"creationTime\": \"2017-03-27T20:03:37.3575578Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:03:37.3575578Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098\",\r\n \"name\": \"testdatalake18098\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ff35e5cc-deeb-4058-a0b6-e0d6dce95f63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "6a9dbded-9ca1-421e-81fd-e2af60755a69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200408Z:6a9dbded-9ca1-421e-81fd-e2af60755a69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f61f6c38-2d12-4487-b873-f9e09dea89d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18098.azuredatalakestore.net\",\r\n \"accountId\": \"209df4c7-cf03-4720-8fc1-bd32f0ca6b02\",\r\n \"creationTime\": \"2017-03-27T20:03:37.3575578Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:03:37.3575578Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098\",\r\n \"name\": \"testdatalake18098\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "04df4c29-78e1-45dc-802e-7a7684ef9bd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "d2d92020-0410-4b96-94ec-d90e043f355f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200443Z:d2d92020-0410-4b96-94ec-d90e043f355f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "x-ms-client-request-id": [ + "5a9fce4e-16d1-4498-9dc6-e7e6297f4981" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"209df4c7-cf03-4720-8fc1-bd32f0ca6b02\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098\",\r\n \"name\": \"testdatalake18098\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098/operationresults/0?api-version=2016-11-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/209df4c7-cf03-4720-8fc1-bd32f0ca6b020?api-version=2016-11-01&expanded=true" + ], + "x-ms-request-id": [ + "326b4c5f-eacc-43e4-869f-cca44b8c7a22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "dc80b723-eb58-47c8-99bb-7604cb0977b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200336Z:dc80b723-eb58-47c8-99bb-7604cb0977b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/209df4c7-cf03-4720-8fc1-bd32f0ca6b020?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzIwOWRmNGM3LWNmMDMtNDcyMC04ZmMxLWJkMzJmMGNhNmIwMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "46aa21a1-d79c-4a40-96fa-15bb07cd36a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "dc297da0-cc11-4b8f-a9a8-c602f0917fa8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200407Z:dc297da0-cc11-4b8f-a9a8-c602f0917fa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a122ca50-5f41-44ca-9a02-4ece8404cd06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake28879' under resource group 'rgaba13027' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6d731b82-3cc3-47a3-bda4-5cff9e32537c" + ], + "x-ms-correlation-request-id": [ + "6d731b82-3cc3-47a3-bda4-5cff9e32537c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200409Z:6d731b82-3cc3-47a3-bda4-5cff9e32537c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28879.azuredatalakestore.net\",\r\n \"accountId\": \"8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b2\",\r\n \"creationTime\": \"2017-03-27T20:04:10.1220661Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:04:10.1220661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879\",\r\n \"name\": \"testdatalake28879\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "85e9964a-5b26-4610-9e0d-dbbc63e1c802" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "d6d5000f-9ccb-4c0d-ae82-a52d27d7cf94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200441Z:d6d5000f-9ccb-4c0d-ae82-a52d27d7cf94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96e2d4a0-1641-4313-9b06-e4dc16038c0b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28879.azuredatalakestore.net\",\r\n \"accountId\": \"8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b2\",\r\n \"creationTime\": \"2017-03-27T20:04:10.1220661Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:04:10.1220661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879\",\r\n \"name\": \"testdatalake28879\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8ebd94c5-ae4b-4511-a4c7-8e5ade723b48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "b06d1d51-5cd3-4514-9acc-4faa5800e0c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200442Z:b06d1d51-5cd3-4514-9acc-4faa5800e0c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "x-ms-client-request-id": [ + "f7ed0931-7262-42ca-ba56-975b3f372a96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b2\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879\",\r\n \"name\": \"testdatalake28879\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879/operationresults/0?api-version=2016-11-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b20?api-version=2016-11-01&expanded=true" + ], + "x-ms-request-id": [ + "f5498c26-8904-4e66-9fdf-bccd1b811fc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1d1acc2c-8175-45d7-895e-1faf38ee39c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200410Z:1d1acc2c-8175-45d7-895e-1faf38ee39c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b20?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzg3NDZkY2IwLWQ5YjUtNGU2ZS1iOGU5LTY3YTY3MDNhYTZiMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3ff95ba5-8d37-44bb-85fd-b67466bdfe37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "144e6b03-7d3d-49dc-a7c6-f132b488fe57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200441Z:144e6b03-7d3d-49dc-a7c6-f132b488fe57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjEyNDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18098\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18098\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "x-ms-client-request-id": [ + "1f7593b3-01ac-4bbe-b071-c5334e196fad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18098\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18098\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"408a1485-b009-4417-8f92-1421c8398651\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244\",\r\n \"name\": \"testaba21244\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "573" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244/operationresults/0?api-version=2016-11-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/408a1485-b009-4417-8f92-1421c83986510?api-version=2016-11-01&expanded=true" + ], + "x-ms-request-id": [ + "c04f33c4-1e17-45c9-8687-8868619df657" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "c6648017-137e-40fe-9a3a-6aea87f806a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200444Z:c6648017-137e-40fe-9a3a-6aea87f806a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/408a1485-b009-4417-8f92-1421c83986510?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80MDhhMTQ4NS1iMDA5LTQ0MTctOGY5Mi0xNDIxYzgzOTg2NTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e2fcc958-a575-4f85-8ce2-644466e1ef8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "5aa02ba2-af4f-4634-a305-2002c16e431a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200515Z:5aa02ba2-af4f-4634-a305-2002c16e431a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjEyNDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18098\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18098\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba21244.azuredatalakeanalytics.net\",\r\n \"accountId\": \"408a1485-b009-4417-8f92-1421c8398651\",\r\n \"creationTime\": \"2017-03-27T20:04:46.875496Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:04:46.875496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244\",\r\n \"name\": \"testaba21244\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "34a349cb-12ce-4779-acd8-4a451b18da8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "08a83ba8-ea62-4d7a-b23e-027dc4588333" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200516Z:08a83ba8-ea62-4d7a-b23e-027dc4588333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjEyNDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d15f8bb6-6e90-40f6-9bbf-524ae8ffe310" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18098\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18098\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba21244.azuredatalakeanalytics.net\",\r\n \"accountId\": \"408a1485-b009-4417-8f92-1421c8398651\",\r\n \"creationTime\": \"2017-03-27T20:04:46.875496Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:04:46.875496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244\",\r\n \"name\": \"testaba21244\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "63f74d8d-92c9-4ba5-86ce-88ce385c5a5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "a3489cfe-a275-40d4-91ec-9f3591841e8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200516Z:a3489cfe-a275-40d4-91ec-9f3591841e8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\r\\n//Create Table\\r\\nCREATE TABLE testdb13068.dbo.testtbl14154\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb13068.dbo.testview18488 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb13068.dbo.testview18488 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2531" + ], + "x-ms-client-request-id": [ + "b1d3d46b-217c-4be3-b92c-3205f02fe7ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:17 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "66220cf5-96bf-48c3-b40f-9f7d91c99f54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e289b09-57e0-4cd7-ab4b-d0bbd1d3bf3f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2182195S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:17 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "ed7cf276-07e0-4a85-bc2c-48dab84b2897" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a599acf9-d146-408d-833e-921b7dde7403" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5949365S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:22 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "6cfca24b-a846-4194-bab7-749e9556de87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1240ddca-a4f0-4fdd-af8e-2efbcc7c9736" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.7824895S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:28 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "cb463a63-0971-4698-912e-15697c19bbc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c369ff6-ab4a-46ed-b7a8-9cd4733fef98" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0186218-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e15ff793-7854-443e-9455-f9401d599aa6\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"e15ff793-7854-443e-9455-f9401d599aa6\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"yarnApplicationId\": 90682,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9377629S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156245S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "a6b99229-6bed-4902-b5c4-e840d2a27475" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06288669-18ae-438a-9bd9-c1b5eeadea3e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0186218-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e15ff793-7854-443e-9455-f9401d599aa6\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"e15ff793-7854-443e-9455-f9401d599aa6\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"yarnApplicationId\": 90682,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9377629S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156245S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:39 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "1e2c62ba-d2ba-4550-934c-9b52b36952dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1eb123e-2737-41ed-886a-6cf3d73342ea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"startTime\": \"2017-03-27T13:05:44.8001707-07:00\",\r\n \"endTime\": \"2017-03-27T13:05:44.8158162-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0186218-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e15ff793-7854-443e-9455-f9401d599aa6\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T13:05:44.8001707-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T13:05:44.8158162-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"e15ff793-7854-443e-9455-f9401d599aa6\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"yarnApplicationId\": 90682,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9377629S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156245S\",\r\n \"totalRunningTime\": \"PT0.0156455S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:44 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "d6155809-9ded-4a58-961e-45327c2ea8f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"password\": \"testsecretpwd14555\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], + "x-ms-client-request-id": [ + "bb17f3bc-b1c1-4708-9a71-5e783abf745d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:46 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "c8b1115e-12a8-4bf7-9503-12270f57a8d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"password\": \"testsecretpwd14555\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], + "x-ms-client-request-id": [ + "38202c10-378d-4e6e-a442-1fc7996e603d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'mafs://accounts/testdatalake18098/fs/catalog/database/8b5f7f82-600d-402a-a791-8bde67ba08a6/credential/testsecret14009' already exists. Trace: 6c31ce3f-de3c-4a32-a46e-adbbbb718b7b Time: 2017-03-27T13:05:47.8974362-07:00\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:47 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "6c31ce3f-de3c-4a32-a46e-adbbbb718b7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009dup?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDlkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"password\": \"testsecretpwd14555\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], + "x-ms-client-request-id": [ + "2cff032f-2ec0-4411-b16d-db8c2a2cc2b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "001ada49-d29b-40ab-b318-a111597a9382" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fca2be46-6c04-4522-a85e-978c6ba54fa7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"creationTime\": \"2017-03-27T20:05:46.6512964Z\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "627f69a2-adba-4799-92f1-5d00b5fdf064" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25f715e9-d363-4b85-95c5-62a3ba95f759" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret14009' does not exist. Trace: 6908ac01-000a-4330-9b1e-3f29d0aa2489 Time: 2017-03-27T13:05:49.6317955-07:00\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "6908ac01-000a-4330-9b1e-3f29d0aa2489" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c566b09-6155-470a-bc4f-defaa7c50bb2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "265fb287-19e8-4da4-a9f3-6e5659f64428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3041f580-d26a-4810-b258-019edeb60025" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:49 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "57e83b55-8c16-4504-b857-057e7136f721" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009dup?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDlkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9441e119-56a5-4818-8d72-418971bc0b9e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret14009dup' does not exist. Trace: b64dfc8a-7848-4635-afb5-180e147fb233 Time: 2017-03-27T13:05:50.6786826-07:00\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:49 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "b64dfc8a-7848-4635-afb5-180e147fb233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + ".ctor": [ + "rgaba13027", + "testaba11429", + "testaba21244", + "teststorage1191", + "testdatalake18098", + "testdatalake28879", + "testazureblob11378", + "testdb13068", + "testtbl14154", + "testtvf18946", + "testproc18224", + "testview18488", + "testcred12886", + "testsecret14009", + "testsecretpwd14555" + ], + "CreateCatalog": [ + "3a63c3ad-f81b-448f-9d66-5a37466303f8" + ], + "RunJobToCompletion": [ + "testjob19980" + ] + }, + "Variables": { + "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json index 508e9eb33c11..b1f4fa61926e 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "029ad4c0-b54e-4e3d-9c4e-85e581491330" + "266ce0b5-dd01-47f7-b3de-6632b804daa9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:55 GMT" + "Mon, 27 Mar 2017 19:51:53 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1187" ], "x-ms-request-id": [ - "7f77791d-c52a-4abc-b52d-cb6f4c34f15a" + "4c9fcb63-6dfb-4936-8964-6a24b4320884" ], "x-ms-correlation-request-id": [ - "7f77791d-c52a-4abc-b52d-cb6f4c34f15a" + "4c9fcb63-6dfb-4936-8964-6a24b4320884" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041156Z:7f77791d-c52a-4abc-b52d-cb6f4c34f15a" + "WESTUS2:20170327T195154Z:4c9fcb63-6dfb-4936-8964-6a24b4320884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46d9b8a5-e989-4898-bf29-1f3be672be7c" + "1634d2a5-cbf4-4b55-a3f5-28812f20b603" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:55 GMT" + "Mon, 27 Mar 2017 19:51:53 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14973" ], "x-ms-request-id": [ - "72fd71b0-3280-493a-b9b9-00184f29a00d" + "3f098674-4929-4af9-bc43-0ef2de0f2e36" ], "x-ms-correlation-request-id": [ - "72fd71b0-3280-493a-b9b9-00184f29a00d" + "3f098674-4929-4af9-bc43-0ef2de0f2e36" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041156Z:72fd71b0-3280-493a-b9b9-00184f29a00d" + "WESTUS2:20170327T195154Z:3f098674-4929-4af9-bc43-0ef2de0f2e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8fcd81a-687d-4dca-8eb6-c2aea09601ea" + "17a78fff-758b-43a6-90ed-f44f084942a1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:57 GMT" + "Mon, 27 Mar 2017 19:51:54 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1186" ], "x-ms-request-id": [ - "189225a6-68ca-4612-8e97-3e2a9b0ea71c" + "adeb3ad9-49a1-420c-aae0-cb92c78bf17d" ], "x-ms-correlation-request-id": [ - "189225a6-68ca-4612-8e97-3e2a9b0ea71c" + "adeb3ad9-49a1-420c-aae0-cb92c78bf17d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041157Z:189225a6-68ca-4612-8e97-3e2a9b0ea71c" + "WESTUS2:20170327T195155Z:adeb3ad9-49a1-420c-aae0-cb92c78bf17d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df06f305-1749-4984-8b8b-9e1c446be4ee" + "2c47c0c1-6ef5-492d-8a7d-0ec03021b29d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:57 GMT" + "Mon, 27 Mar 2017 19:51:54 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14972" ], "x-ms-request-id": [ - "6dfa2f25-11af-4b59-93d0-9b998d3c7284" + "e58d35a8-4198-46e1-9905-9af03ea2ed1f" ], "x-ms-correlation-request-id": [ - "6dfa2f25-11af-4b59-93d0-9b998d3c7284" + "e58d35a8-4198-46e1-9905-9af03ea2ed1f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041157Z:6dfa2f25-11af-4b59-93d0-9b998d3c7284" + "WESTUS2:20170327T195155Z:e58d35a8-4198-46e1-9905-9af03ea2ed1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45e35fa6-e4eb-4b7f-a2aa-443f128a66d2" + "35d14249-b81d-4429-a4f4-ecce0cfbddff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:55 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1185" ], "x-ms-request-id": [ - "fb1a34e1-00c0-4d72-b870-5be3514b9e4f" + "fa213cf6-2c0b-49e2-8a09-68f21b4a09cf" ], "x-ms-correlation-request-id": [ - "fb1a34e1-00c0-4d72-b870-5be3514b9e4f" + "fa213cf6-2c0b-49e2-8a09-68f21b4a09cf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041158Z:fb1a34e1-00c0-4d72-b870-5be3514b9e4f" + "WESTUS2:20170327T195156Z:fa213cf6-2c0b-49e2-8a09-68f21b4a09cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45638aeb-b1a4-43d6-9926-ddc46254b50c" + "b553b15f-1010-4b54-9fb6-7eb6add9773c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:55 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14971" ], "x-ms-request-id": [ - "cef9448d-392a-4635-995f-cc54cd697d75" + "9b677e6f-89e1-4dea-9a59-236636e22a3d" ], "x-ms-correlation-request-id": [ - "cef9448d-392a-4635-995f-cc54cd697d75" + "9b677e6f-89e1-4dea-9a59-236636e22a3d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041158Z:cef9448d-392a-4635-995f-cc54cd697d75" + "WESTUS2:20170327T195156Z:9b677e6f-89e1-4dea-9a59-236636e22a3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyODk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTYyMDM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bc0c3e8-255d-45d9-911a-39c82ddcfc94" + "91292f77-5a4f-42f3-8fad-af5be00fd003" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba19289' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba16203' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:55 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14970" ], "x-ms-request-id": [ - "3a766510-d60e-49bc-8c19-3998cb18e56e" + "3da2fbbd-321f-49b3-b78e-b29d58a44735" ], "x-ms-correlation-request-id": [ - "3a766510-d60e-49bc-8c19-3998cb18e56e" + "3da2fbbd-321f-49b3-b78e-b29d58a44735" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041158Z:3a766510-d60e-49bc-8c19-3998cb18e56e" + "WESTUS2:20170327T195156Z:3da2fbbd-321f-49b3-b78e-b29d58a44735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyODk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTYyMDM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c379b1f8-cd9e-4619-a3b7-09617b1f20a9" + "cf6d9001-9518-41e9-a5a2-bb3578ce7a46" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289\",\r\n \"name\": \"rgaba19289\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203\",\r\n \"name\": \"rgaba16203\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:56 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14969" ], "x-ms-request-id": [ - "e269f6ff-8367-40cc-94dc-5ba88ac840a6" + "3176103a-ebda-4c3b-a8da-4d136ff395da" ], "x-ms-correlation-request-id": [ - "e269f6ff-8367-40cc-94dc-5ba88ac840a6" + "3176103a-ebda-4c3b-a8da-4d136ff395da" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041159Z:e269f6ff-8367-40cc-94dc-5ba88ac840a6" + "WESTUS2:20170327T195157Z:3176103a-ebda-4c3b-a8da-4d136ff395da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyODk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTYyMDM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "075277ad-7e7e-4d77-a9f3-e9dd6dda4924" + "787e6f10-2029-4922-9abb-5cbe61e81b38" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289\",\r\n \"name\": \"rgaba19289\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203\",\r\n \"name\": \"rgaba16203\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1184" ], "x-ms-request-id": [ - "5dde2593-e8ce-431f-a8d0-8846c1dcfd57" + "be779b97-e074-4745-8536-b9c1b8ac7e36" ], "x-ms-correlation-request-id": [ - "5dde2593-e8ce-431f-a8d0-8846c1dcfd57" + "be779b97-e074-4745-8536-b9c1b8ac7e36" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041159Z:5dde2593-e8ce-431f-a8d0-8846c1dcfd57" + "WESTUS2:20170327T195157Z:be779b97-e074-4745-8536-b9c1b8ac7e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,23 +505,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0f5c564-125d-42fd-99ab-3021e7b97498" + "81e62dc2-e7e9-4f9c-9ac0-ac0d03ab3cdb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake12107' under resource group 'rgaba19289' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18307' under resource group 'rgaba16203' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -536,7 +535,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:59 GMT" + "Mon, 27 Mar 2017 19:51:58 GMT" ], "Pragma": [ "no-cache" @@ -545,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "14ed97e7-4daa-4c4a-b6ca-f6d208a9b892" + "ce23a170-5759-4ba3-bcfd-a2b5c57286fd" ], "x-ms-correlation-request-id": [ - "14ed97e7-4daa-4c4a-b6ca-f6d208a9b892" + "ce23a170-5759-4ba3-bcfd-a2b5c57286fd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041159Z:14ed97e7-4daa-4c4a-b6ca-f6d208a9b892" + "WESTUS2:20170327T195158Z:ce23a170-5759-4ba3-bcfd-a2b5c57286fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12107.azuredatalakestore.net\",\r\n \"accountId\": \"a729befa-d374-40c3-9d39-44bffa991eae\",\r\n \"creationTime\": \"2016-11-08T04:11:59.9135144Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:11:59.9135144Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107\",\r\n \"name\": \"testdatalake12107\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18307.azuredatalakestore.net\",\r\n \"accountId\": \"5d6e203a-a88e-4646-99fa-f3f24d84664d\",\r\n \"creationTime\": \"2017-03-27T19:51:59.525181Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:51:59.525181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307\",\r\n \"name\": \"testdatalake18307\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -585,7 +583,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:31 GMT" + "Mon, 27 Mar 2017 19:52:30 GMT" ], "Pragma": [ "no-cache" @@ -597,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2e6e0496-9397-4fe3-9b0a-4df87a78275f" + "0dd97c7d-0e2f-4081-8492-3eebef3aee47" ], "X-Content-Type-Options": [ "nosniff" @@ -609,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14980" ], "x-ms-correlation-request-id": [ - "0650c4e9-1336-4c15-8ee2-5fccf336e149" + "3e2b8516-0aef-4f0f-96cf-28f5f7622f6e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041231Z:0650c4e9-1336-4c15-8ee2-5fccf336e149" + "WESTUS2:20170327T195230Z:3e2b8516-0aef-4f0f-96cf-28f5f7622f6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbe8a043-8998-4fd9-b08a-de7acceb8ad2" + "69eda080-c21b-4c8b-88b6-cc9e94320d7c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12107.azuredatalakestore.net\",\r\n \"accountId\": \"a729befa-d374-40c3-9d39-44bffa991eae\",\r\n \"creationTime\": \"2016-11-08T04:11:59.9135144Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:11:59.9135144Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107\",\r\n \"name\": \"testdatalake12107\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18307.azuredatalakestore.net\",\r\n \"accountId\": \"5d6e203a-a88e-4646-99fa-f3f24d84664d\",\r\n \"creationTime\": \"2017-03-27T19:51:59.525181Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:51:59.525181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307\",\r\n \"name\": \"testdatalake18307\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -655,7 +652,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:31 GMT" + "Mon, 27 Mar 2017 19:52:31 GMT" ], "Pragma": [ "no-cache" @@ -667,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36b7df4d-028a-4a92-afe4-b191d10154b4" + "29318cc9-050f-4f2a-b0e3-6ba757ef2a5e" ], "X-Content-Type-Options": [ "nosniff" @@ -679,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14984" ], "x-ms-correlation-request-id": [ - "674b8152-da87-4a0d-99bb-4fa43fc1c0fa" + "0073e21a-67eb-4ae3-8a8a-663f86d3c979" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041232Z:674b8152-da87-4a0d-99bb-4fa43fc1c0fa" + "WESTUS2:20170327T195231Z:0073e21a-67eb-4ae3-8a8a-663f86d3c979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,23 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1f1a3d3-6e1e-49b5-af40-319f8d20e9cf" + "32a0fb5b-aca3-4ec5-9b81-83c0739bc199" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12107.azuredatalakestore.net\",\r\n \"accountId\": \"a729befa-d374-40c3-9d39-44bffa991eae\",\r\n \"creationTime\": \"2016-11-08T04:11:59.9135144Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:11:59.9135144Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107\",\r\n \"name\": \"testdatalake12107\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18307.azuredatalakestore.net\",\r\n \"accountId\": \"5d6e203a-a88e-4646-99fa-f3f24d84664d\",\r\n \"creationTime\": \"2017-03-27T19:51:59.525181Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:51:59.525181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307\",\r\n \"name\": \"testdatalake18307\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -725,7 +721,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:05 GMT" + "Mon, 27 Mar 2017 19:53:05 GMT" ], "Pragma": [ "no-cache" @@ -737,7 +733,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9cd7b9f3-ec5e-4909-bf79-5e84c019bf83" + "d1bdf60e-3bcc-4ab7-9874-fef2a254e4f9" ], "X-Content-Type-Options": [ "nosniff" @@ -749,13 +745,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14983" ], "x-ms-correlation-request-id": [ - "52c57127-c69a-48d1-b16f-cf7cd98347c6" + "3aff9cd2-1a19-417a-a1f3-99ea2746bc40" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041305Z:52c57127-c69a-48d1-b16f-cf7cd98347c6" + "WESTUS2:20170327T195306Z:3aff9cd2-1a19-417a-a1f3-99ea2746bc40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,8 +760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -776,17 +772,16 @@ "31" ], "x-ms-client-request-id": [ - "13038e0d-08fd-4011-8ca1-9ef2cde5ce26" + "1a28dafe-f4ec-4458-98c7-4eff598a16db" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a729befa-d374-40c3-9d39-44bffa991eae\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107\",\r\n \"name\": \"testdatalake12107\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5d6e203a-a88e-4646-99fa-f3f24d84664d\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307\",\r\n \"name\": \"testdatalake18307\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -804,13 +799,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:00 GMT" + "Mon, 27 Mar 2017 19:51:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -819,10 +814,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a729befa-d374-40c3-9d39-44bffa991eae0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5d6e203a-a88e-4646-99fa-f3f24d84664d0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "8d884a0f-53c3-47ba-9d96-57df1cc63793" + "1b8c9577-fe3d-4b04-a9ae-cb5cd33c4dc9" ], "X-Content-Type-Options": [ "nosniff" @@ -834,13 +829,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1196" ], "x-ms-correlation-request-id": [ - "95e58855-42da-48e8-b792-02f1b9753562" + "a5980c2c-1d7f-4bb3-b2c0-0a0d13041aec" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041200Z:95e58855-42da-48e8-b792-02f1b9753562" + "WESTUS2:20170327T195159Z:a5980c2c-1d7f-4bb3-b2c0-0a0d13041aec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +844,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a729befa-d374-40c3-9d39-44bffa991eae0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2E3MjliZWZhLWQzNzQtNDBjMy05ZDM5LTQ0YmZmYTk5MWVhZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5d6e203a-a88e-4646-99fa-f3f24d84664d0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzVkNmUyMDNhLWE4OGUtNDY0Ni05OWZhLWYzZjI0ZDg0NjY0ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -874,7 +868,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:30 GMT" + "Mon, 27 Mar 2017 19:52:30 GMT" ], "Pragma": [ "no-cache" @@ -886,7 +880,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "feb46185-101c-43f2-bb38-4f5d742099d8" + "1ebcffdb-ab1c-4628-9464-694603431cad" ], "X-Content-Type-Options": [ "nosniff" @@ -898,13 +892,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14982" ], "x-ms-correlation-request-id": [ - "ec193abe-975b-400c-8479-ecef5a7ce610" + "ef775664-159f-4f16-ac7c-2c26bf833a53" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041231Z:ec193abe-975b-400c-8479-ecef5a7ce610" + "WESTUS2:20170327T195230Z:ef775664-159f-4f16-ac7c-2c26bf833a53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,23 +907,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0Mzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3NDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b108141-e0e8-4669-95c4-d896e6e62047" + "9aa892e7-7660-4906-80ce-7e276df3a767" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake24399' under resource group 'rgaba19289' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake27438' under resource group 'rgaba16203' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -944,7 +937,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:12:32 GMT" + "Mon, 27 Mar 2017 19:52:30 GMT" ], "Pragma": [ "no-cache" @@ -953,13 +946,13 @@ "gateway" ], "x-ms-request-id": [ - "3cca7f3d-ebd8-4e30-9ccd-7676db58ad2e" + "45ff69c3-1740-40e0-9c60-171b4c545bdf" ], "x-ms-correlation-request-id": [ - "3cca7f3d-ebd8-4e30-9ccd-7676db58ad2e" + "45ff69c3-1740-40e0-9c60-171b4c545bdf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041232Z:3cca7f3d-ebd8-4e30-9ccd-7676db58ad2e" + "WESTUS2:20170327T195231Z:45ff69c3-1740-40e0-9c60-171b4c545bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -968,17 +961,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0Mzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3NDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24399.azuredatalakestore.net\",\r\n \"accountId\": \"34d3d24a-dac3-493b-8f3d-858e522c3a01\",\r\n \"creationTime\": \"2016-11-08T04:12:33.7206402Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:12:33.7206402Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399\",\r\n \"name\": \"testdatalake24399\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27438.azuredatalakestore.net\",\r\n \"accountId\": \"7faddefa-32c1-43c3-b338-b47f88ce97d3\",\r\n \"creationTime\": \"2017-03-27T19:52:33.5927375Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:52:33.5927375Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438\",\r\n \"name\": \"testdatalake27438\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -993,7 +985,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:04 GMT" + "Mon, 27 Mar 2017 19:53:04 GMT" ], "Pragma": [ "no-cache" @@ -1005,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7c5c7b65-8401-4036-8126-d497868cb5b3" + "50681371-d99d-4332-8242-d5a56da2eeab" ], "X-Content-Type-Options": [ "nosniff" @@ -1017,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14981" ], "x-ms-correlation-request-id": [ - "4928ec71-a080-4569-9870-ad2fe0f738ed" + "e7e969f3-fcf1-47c5-8cde-318cc3036da4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041304Z:4928ec71-a080-4569-9870-ad2fe0f738ed" + "WESTUS2:20170327T195304Z:e7e969f3-fcf1-47c5-8cde-318cc3036da4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,23 +1024,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0Mzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3NDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69759e65-90a2-4b7e-b8a8-7e8d1076e921" + "cde4ceec-df51-4522-8f76-1ba33c6a3c92" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24399.azuredatalakestore.net\",\r\n \"accountId\": \"34d3d24a-dac3-493b-8f3d-858e522c3a01\",\r\n \"creationTime\": \"2016-11-08T04:12:33.7206402Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:12:33.7206402Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399\",\r\n \"name\": \"testdatalake24399\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27438.azuredatalakestore.net\",\r\n \"accountId\": \"7faddefa-32c1-43c3-b338-b47f88ce97d3\",\r\n \"creationTime\": \"2017-03-27T19:52:33.5927375Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:52:33.5927375Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438\",\r\n \"name\": \"testdatalake27438\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1063,7 +1054,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:05 GMT" + "Mon, 27 Mar 2017 19:53:04 GMT" ], "Pragma": [ "no-cache" @@ -1075,7 +1066,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "76607f89-e5bc-47b1-9939-e2bbac40b7f9" + "0b4e8c15-921e-4a73-99ec-0b2f56bf465e" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,13 +1078,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14979" ], "x-ms-correlation-request-id": [ - "4f6e3c19-40b8-4c9f-a875-200733b0bd47" + "a3a1e22f-5818-44f8-93be-30a3364f57e5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041305Z:4f6e3c19-40b8-4c9f-a875-200733b0bd47" + "WESTUS2:20170327T195305Z:a3a1e22f-5818-44f8-93be-30a3364f57e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0Mzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3NDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1114,17 +1105,16 @@ "31" ], "x-ms-client-request-id": [ - "8e2db15c-5a3c-42f8-9789-cc6718c2e25b" + "2d63968c-435c-4416-845b-c2df715189b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"34d3d24a-dac3-493b-8f3d-858e522c3a01\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399\",\r\n \"name\": \"testdatalake24399\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7faddefa-32c1-43c3-b338-b47f88ce97d3\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438\",\r\n \"name\": \"testdatalake27438\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -1142,13 +1132,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:33 GMT" + "Mon, 27 Mar 2017 19:52:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1157,10 +1147,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/34d3d24a-dac3-493b-8f3d-858e522c3a010?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7faddefa-32c1-43c3-b338-b47f88ce97d30?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "445d7847-811a-4c09-9f41-cb8985f43619" + "9cfcf927-2b84-4c9e-8feb-9a6325c0c439" ], "X-Content-Type-Options": [ "nosniff" @@ -1172,13 +1162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1188" ], "x-ms-correlation-request-id": [ - "02dc192d-e560-454b-ab6c-800a3b088655" + "8f8ba41e-7e6a-4365-b9ae-a6469e8cb9eb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041233Z:02dc192d-e560-454b-ab6c-800a3b088655" + "WESTUS2:20170327T195233Z:8f8ba41e-7e6a-4365-b9ae-a6469e8cb9eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,14 +1177,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/34d3d24a-dac3-493b-8f3d-858e522c3a010?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM0ZDNkMjRhLWRhYzMtNDkzYi04ZjNkLTg1OGU1MjJjM2EwMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7faddefa-32c1-43c3-b338-b47f88ce97d30?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdmYWRkZWZhLTMyYzEtNDNjMy1iMzM4LWI0N2Y4OGNlOTdkMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1212,7 +1201,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:04 GMT" + "Mon, 27 Mar 2017 19:53:04 GMT" ], "Pragma": [ "no-cache" @@ -1224,7 +1213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "32c11088-7510-4f4a-8c3f-cb5325a0ba23" + "b5ae03a6-daa3-4994-83ce-2c2d6f61f583" ], "X-Content-Type-Options": [ "nosniff" @@ -1236,13 +1225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14987" ], "x-ms-correlation-request-id": [ - "070f56e5-a7b1-4df4-adc9-7e44e25fbb89" + "7359612d-f2a4-43c9-a079-2bac7c4ac064" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041304Z:070f56e5-a7b1-4df4-adc9-7e44e25fbb89" + "WESTUS2:20170327T195304Z:7359612d-f2a4-43c9-a079-2bac7c4ac064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1240,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjE1Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12107\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"testdatalake12107\",\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18307\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18307\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1263,17 +1252,16 @@ "290" ], "x-ms-client-request-id": [ - "cfbf31d5-a3dc-43ab-83c0-4db29bada22e" + "01048ac9-c340-44d5-9e79-931b4401a3c3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12107\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12107\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0eeecbcd-8a7f-44ba-8a01-b1f4fda9b883\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528\",\r\n \"name\": \"testaba21528\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18307\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18307\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"12ac0e35-730c-46bd-80c3-ea98c6d216d5\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110\",\r\n \"name\": \"testaba22110\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "573" @@ -1291,13 +1279,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:07 GMT" + "Mon, 27 Mar 2017 19:53:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1306,10 +1294,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0eeecbcd-8a7f-44ba-8a01-b1f4fda9b8830?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/12ac0e35-730c-46bd-80c3-ea98c6d216d50?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4a5c0941-277c-4095-8d2c-dce813fac012" + "e12e3224-908f-4a04-9dbe-3576c4085d0e" ], "X-Content-Type-Options": [ "nosniff" @@ -1321,13 +1309,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1187" ], "x-ms-correlation-request-id": [ - "68aea938-affc-4ca2-941d-29d35f8cc87e" + "c785e1d7-9545-47c6-87fc-e966a971983d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T041307Z:68aea938-affc-4ca2-941d-29d35f8cc87e" + "WESTUS2:20170327T195307Z:c785e1d7-9545-47c6-87fc-e966a971983d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1336,78 +1324,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0eeecbcd-8a7f-44ba-8a01-b1f4fda9b8830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wZWVlY2JjZC04YTdmLTQ0YmEtOGEwMS1iMWY0ZmRhOWI4ODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Tue, 08 Nov 2016 04:13:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f35e0cd2-c940-4979-853c-3059adabca5f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "001be4b2-1465-4a21-a8af-20f3858149d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161108T041338Z:001be4b2-1465-4a21-a8af-20f3858149d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0eeecbcd-8a7f-44ba-8a01-b1f4fda9b8830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wZWVlY2JjZC04YTdmLTQ0YmEtOGEwMS1iMWY0ZmRhOWI4ODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/12ac0e35-730c-46bd-80c3-ea98c6d216d50?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xMmFjMGUzNS03MzBjLTQ2YmQtODBjMy1lYTk4YzZkMjE2ZDUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1425,7 +1348,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:14:08 GMT" + "Mon, 27 Mar 2017 19:53:37 GMT" ], "Pragma": [ "no-cache" @@ -1437,7 +1360,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "57002a2d-1ffd-48ae-b399-cee89ab7eee4" + "c9499822-7251-467e-aa4f-d380b6fdda8d" ], "X-Content-Type-Options": [ "nosniff" @@ -1449,13 +1372,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14978" ], "x-ms-correlation-request-id": [ - "1a732f67-dd4b-4e83-9f49-8c4832467688" + "9c4c0b47-8507-4c82-9e45-26e528c545c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T041409Z:1a732f67-dd4b-4e83-9f49-8c4832467688" + "WESTUS2:20170327T195337Z:9c4c0b47-8507-4c82-9e45-26e528c545c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,17 +1387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjE1Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12107\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12107\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba21528.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0eeecbcd-8a7f-44ba-8a01-b1f4fda9b883\",\r\n \"creationTime\": \"2016-11-08T04:13:09.2007488Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:13:09.2007488Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528\",\r\n \"name\": \"testaba21528\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18307\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18307\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22110.azuredatalakeanalytics.net\",\r\n \"accountId\": \"12ac0e35-730c-46bd-80c3-ea98c6d216d5\",\r\n \"creationTime\": \"2017-03-27T19:53:11.0931491Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:53:11.0931491Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110\",\r\n \"name\": \"testaba22110\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1489,7 +1411,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:14:10 GMT" + "Mon, 27 Mar 2017 19:53:37 GMT" ], "Pragma": [ "no-cache" @@ -1501,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bff4ec6e-dcf0-4901-bed5-94c060bee782" + "02d6afa5-00c7-4380-a043-44e0f7155ce5" ], "X-Content-Type-Options": [ "nosniff" @@ -1513,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14982" ], "x-ms-correlation-request-id": [ - "ee377b7b-ecae-40b9-b595-ab72c0197be6" + "b071d097-607b-48a4-b965-310c1ec7d85f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T041410Z:ee377b7b-ecae-40b9-b595-ab72c0197be6" + "WESTUS2:20170327T195338Z:b071d097-607b-48a4-b965-310c1ec7d85f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1528,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjE1Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83acf470-c0f1-408a-8abf-76d552ca79e6" + "ad8c8d1a-9679-466f-947e-76331b7d27d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12107\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12107\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba21528.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0eeecbcd-8a7f-44ba-8a01-b1f4fda9b883\",\r\n \"creationTime\": \"2016-11-08T04:13:09.2007488Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:13:09.2007488Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528\",\r\n \"name\": \"testaba21528\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18307\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18307\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22110.azuredatalakeanalytics.net\",\r\n \"accountId\": \"12ac0e35-730c-46bd-80c3-ea98c6d216d5\",\r\n \"creationTime\": \"2017-03-27T19:53:11.0931491Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:53:11.0931491Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110\",\r\n \"name\": \"testaba22110\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1559,7 +1480,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:14:09 GMT" + "Mon, 27 Mar 2017 19:53:38 GMT" ], "Pragma": [ "no-cache" @@ -1571,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2bd91e46-e487-4193-940f-8d84f9d43a2d" + "d6eb79e6-3dbb-493a-910b-488ca97ae4e7" ], "X-Content-Type-Options": [ "nosniff" @@ -1583,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14978" ], "x-ms-correlation-request-id": [ - "48695be5-2fe3-46d5-9c3d-e7f59ece992c" + "e2552897-3bd6-45f2-a1aa-c7d161d0c9b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T041410Z:48695be5-2fe3-46d5-9c3d-e7f59ece992c" + "WESTUS2:20170327T195338Z:e2552897-3bd6-45f2-a1aa-c7d161d0c9b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1598,23 +1519,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "573b5e35-991e-425c-941f-ad534499e1b2" + "97e78d4e-dcbb-47d7-a9f5-ae58435bd3f9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"JobNotFound\",\r\n \"message\": \"Cannot find the job with id 294a6ffb-de4e-4c91-9f0b-c80b7c499817. Trace: cab54f0b-4f9f-42c2-87b7-995f5bb272b7 Time: 2016-11-07T20:16:12.5918233-08:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"JobNotFound\",\r\n \"message\": \"Cannot find the job with id ec4242ef-69f7-40bd-b5d1-c6662b89dbdb. Trace: ed3da3f0-739a-40ed-a113-3be22e0f46e0 Time: 2017-03-27T12:53:41.0858385-07:00\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1626,13 +1546,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:11 GMT" + "Mon, 27 Mar 2017 19:53:40 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "cab54f0b-4f9f-42c2-87b7-995f5bb272b7" + "ed3da3f0-739a-40ed-a113-3be22e0f46e0" ], "X-Content-Type-Options": [ "nosniff" @@ -1644,23 +1564,22 @@ "StatusCode": 404 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58ebc168-0f7c-47f0-a395-6477e478e9b9" + "391d814a-8592-40ec-9094-51f263092901" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01@benwgoldoutlook.onmicrosoft.com.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.107694-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.1718769S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"endTime\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01app@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.5683181-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.2187787S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1672,13 +1591,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:13 GMT" + "Mon, 27 Mar 2017 19:53:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "61af5d5d-38e4-47ef-a248-f184b2b6b3f7" + "c273bb48-fa1c-4f32-acbb-2db532436533" ], "X-Content-Type-Options": [ "nosniff" @@ -1690,23 +1609,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43fc97be-5842-4cec-9eb1-9d9c7ab343c6" + "a4a87f35-eb72-45a9-943c-1eb99315d29c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01@benwgoldoutlook.onmicrosoft.com.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.107694-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.1718769S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"endTime\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01app@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.5683181-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.2187787S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1718,13 +1636,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:13 GMT" + "Mon, 27 Mar 2017 19:53:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "4611d4e2-8b0d-405d-ae85-7a94d50574dd" + "859b51bd-bbac-430f-8708-f9bf6bc2a614" ], "X-Content-Type-Options": [ "nosniff" @@ -1736,8 +1654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}", "RequestHeaders": { @@ -1748,17 +1666,16 @@ "218" ], "x-ms-client-request-id": [ - "89a6c7f5-4626-4306-ace9-a94d09966402" + "54026ffd-09bf-4df4-9655-feaf29f8c582" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1770,13 +1687,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:12 GMT" + "Mon, 27 Mar 2017 19:53:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "2a686926-80c9-4092-8dc5-af37405b9bd8" + "dd35ebf1-00e0-4910-869a-b3a85b5749ca" ], "X-Content-Type-Options": [ "nosniff" @@ -1788,20 +1705,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817/CancelJob?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3L0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/CancelJob?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiL0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38ad6c43-e26d-4368-880a-ad1b06990636" + "6ffea376-e674-47f2-9e57-ec8abc2ce18e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1813,13 +1729,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:12 GMT" + "Mon, 27 Mar 2017 19:53:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "c33b9a61-351c-4b06-993d-f60069c4c30a" + "e4ae0d73-b8c9-401e-8452-42cb74f8c315" ], "X-Content-Type-Options": [ "nosniff" @@ -1831,8 +1747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}", "RequestHeaders": { @@ -1843,63 +1759,16 @@ "218" ], "x-ms-client-request-id": [ - "c1d89d9d-ee56-472e-88f2-ead0e0bb2989" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 04:16:13 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "f80f5178-5307-4df8-b937-2bc64279a840" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3757f18a-e639-4b12-ac99-6b03e99ff7dd" + "ea4aba3d-02be-475f-83f6-4327d05717ac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1369778S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1911,13 +1780,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:13 GMT" + "Mon, 27 Mar 2017 19:53:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "66cd9ce5-4553-473f-8838-792345bc9422" + "867d4838-0776-4bf7-9a0f-df3c1ad981fe" ], "X-Content-Type-Options": [ "nosniff" @@ -1929,23 +1798,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c387ab5-a4b8-431b-ab91-7641790b7221" + "d3f0f350-2f7f-48fe-b75d-5585508df369" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.3102357S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1268492S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1957,13 +1825,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:18 GMT" + "Mon, 27 Mar 2017 19:53:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "948b2c02-7882-476c-a615-7a99103fc22a" + "03454f92-10f5-4d04-bce6-83107f40fa16" ], "X-Content-Type-Options": [ "nosniff" @@ -1975,23 +1843,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d69625c4-da9c-400f-8183-49c1e00a7319" + "12e30c12-4f20-4afb-abfe-86a50897ef47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.4687571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.3457193S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2003,13 +1870,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:24 GMT" + "Mon, 27 Mar 2017 19:53:47 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "870bd8c7-1b15-4ea5-8aa0-5a900c092032" + "24d9c79f-f591-4347-b2fb-991629755d2e" ], "X-Content-Type-Options": [ "nosniff" @@ -2021,23 +1888,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13d66d70-f683-47b4-bb20-9c483c01d9c3" + "876598d9-c407-4a14-9ca6-3b9a1101113b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.5176605S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2049,13 +1915,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:29 GMT" + "Mon, 27 Mar 2017 19:53:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "3f659c6b-6f1a-4159-9dfb-daf6ced2dfac" + "04d7c465-2cb2-4c53-9315-aaa77c05fe3e" ], "X-Content-Type-Options": [ "nosniff" @@ -2067,23 +1933,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfc5fcee-90fa-4117-a144-80ab251da1e9" + "6eadc05d-112f-4f54-8a92-50a42acb8233" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9280606-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9436791-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:88098519-5d6b-41ec-94b6-e93cc3c93803\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9592663-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"88098519-5d6b-41ec-94b6-e93cc3c93803\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"yarnApplicationId\": 90529,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8753206S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156185S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2095,13 +1960,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:34 GMT" + "Mon, 27 Mar 2017 19:53:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "38322d6b-80c1-4ea9-9817-94aa5c6c31c4" + "f6aef97f-79c3-4c4c-a7b5-f28d3c5a4e2f" ], "X-Content-Type-Options": [ "nosniff" @@ -2113,23 +1978,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17834336-2ee5-49b3-b138-cbbc832afa7d" + "0164ae9c-d72f-494b-9f4d-add73065fec1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9280606-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9436791-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:88098519-5d6b-41ec-94b6-e93cc3c93803\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9592663-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"88098519-5d6b-41ec-94b6-e93cc3c93803\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"yarnApplicationId\": 90529,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8753206S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156185S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2141,13 +2005,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:39 GMT" + "Mon, 27 Mar 2017 19:54:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "672138ae-1eeb-4f98-a2f5-6d253fa47de2" + "02ef6738-d8be-473c-984c-caa114bc68ec" ], "X-Content-Type-Options": [ "nosniff" @@ -2159,23 +2023,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ebd17af-4f49-4334-8b4d-fb242df94a7c" + "90ce1a4d-0058-4434-a389-06ceb00269fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"startTime\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT4.7691335S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9280606-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9436791-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:88098519-5d6b-41ec-94b6-e93cc3c93803\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9592663-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"88098519-5d6b-41ec-94b6-e93cc3c93803\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"yarnApplicationId\": 90529,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8753206S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156185S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2187,13 +2050,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:45 GMT" + "Mon, 27 Mar 2017 19:54:09 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "5b5300cc-eff6-4689-8315-12f5db2ba909" + "2efc1b9f-236c-4993-a3d3-f0a6fb6ab50b" ], "X-Content-Type-Options": [ "nosniff" @@ -2205,23 +2068,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38a74c2c-721e-41b6-ac85-47726ed827f6" + "1a7d890b-89e1-4c36-9ebe-9ed989b56ee5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"startTime\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:46.2329705-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-07T20:16:46.2329705-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT5.4218966S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"startTime\": \"2017-03-27T12:54:11.6002414-07:00\",\r\n \"endTime\": \"2017-03-27T12:54:11.6158424-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9280606-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9436791-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:88098519-5d6b-41ec-94b6-e93cc3c93803\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9592663-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T12:54:11.6002414-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:54:11.6158424-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"88098519-5d6b-41ec-94b6-e93cc3c93803\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"yarnApplicationId\": 90529,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8753206S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156185S\",\r\n \"totalRunningTime\": \"PT0.015601S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2233,13 +2095,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:50 GMT" + "Mon, 27 Mar 2017 19:54:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "f227eba0-0bf2-4791-b0a6-2155cad7ab26" + "25fb0648-7c73-457f-a6ac-ef1a8739cdfa" ], "X-Content-Type-Options": [ "nosniff" @@ -2257,17 +2119,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25437c6b-5081-4fe2-bddf-92337649c8d4" + "3daf4182-74ca-49db-b567-9d2f561fcf29" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\"\r\n },\r\n {\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"startTime\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:46.2329705-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"startTime\": \"2017-03-27T12:54:11.6002414-07:00\",\r\n \"endTime\": \"2017-03-27T12:54:11.6158424-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\"\r\n },\r\n {\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"endTime\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2279,13 +2140,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:50 GMT" + "Mon, 27 Mar 2017 19:54:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "d357023f-62a1-4f91-ad7e-d24b109d259f" + "6dc62fb1-0851-40d4-9c13-71aaff4bb123" ], "X-Content-Type-Options": [ "nosniff" @@ -2309,17 +2170,16 @@ "218" ], "x-ms-client-request-id": [ - "834b79be-b560-4881-81b4-57cbbde1310d" + "61d70c0b-3e31-4ce9-939f-5b46d6b2a3e2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"f9d64a74-f687-4227-bfb6-8552cd27d4d3\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"properties\": {\r\n \"resources\": [],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"mafs://accounts/testdatalake12107/fs/system/compilationService/jobs/USql/f9d64a74-f687-4227-bfb6-8552cd27d4d3/2016/11/08/04/16/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"diagnostics\": [],\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"aa9e8426-ad9b-4fb2-8ef4-57b9c0d9f8c8\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"properties\": {\r\n \"resources\": [],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"mafs://accounts/testdatalake18307/fs/system/compilationService/jobs/USql/aa9e8426-ad9b-4fb2-8ef4-57b9c0d9f8c8/2017/03/27/19/54/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"diagnostics\": [],\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2331,13 +2191,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:58 GMT" + "Mon, 27 Mar 2017 19:54:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "e08b52b7-58c9-48ba-92ea-39b51e4b3dfb" + "dad73eae-161f-4d0a-8342-829d2599cdd4" ], "X-Content-Type-Options": [ "nosniff" @@ -2361,17 +2221,16 @@ "211" ], "x-ms-client-request-id": [ - "494567b0-9d8c-4695-a44d-95f029b975a5" + "7be56560-e537-4198-87bb-7709bf269981" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"ec118e58-4f2f-43e1-a447-51607ef60932\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"properties\": {\r\n \"resources\": [],\r\n \"runtimeVersion\": \"\",\r\n \"script\": \"DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"diagnostics\": [\r\n {\r\n \"severity\": \"Error\",\r\n \"lineNumber\": 1,\r\n \"columnNumber\": 18,\r\n \"start\": 17,\r\n \"end\": 22,\r\n \"message\": \"E_CSC_USER_SYNTAXERROR: syntax error. Expected one of: EXISTS\"\r\n }\r\n ],\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"9750d74f-b07b-4a38-8ddf-33b0dd2f0084\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"properties\": {\r\n \"resources\": [],\r\n \"runtimeVersion\": \"\",\r\n \"script\": \"DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"diagnostics\": [\r\n {\r\n \"severity\": \"Error\",\r\n \"lineNumber\": 1,\r\n \"columnNumber\": 18,\r\n \"start\": 17,\r\n \"end\": 22,\r\n \"message\": \"E_CSC_USER_SYNTAXERROR: syntax error. Expected one of: EXISTS\"\r\n }\r\n ],\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2383,13 +2242,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:17:05 GMT" + "Mon, 27 Mar 2017 19:54:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "c46965d4-a6fb-4d77-b7b5-b7d55707d741" + "0fb10a5d-c1d4-4df5-b627-b30d9a0cfc6a" ], "X-Content-Type-Options": [ "nosniff" @@ -2407,17 +2266,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd3d79d0-6d25-4b52-952a-f8c64c9bd213" + "cc9f5707-1f66-4411-8617-d2a648af5da1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\"\r\n },\r\n {\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\"\r\n },\r\n {\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2429,13 +2287,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:17:05 GMT" + "Mon, 27 Mar 2017 19:54:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "d975717a-a4fc-4fd5-b93f-a137a1e9af09" + "dced3b1d-b308-40d9-a392-3a1ed7c25222" ], "X-Content-Type-Options": [ "nosniff" @@ -2449,25 +2307,25 @@ ], "Names": { ".ctor": [ - "rgaba19289", - "testaba1165", - "testaba21528", - "teststorage17543", - "testdatalake12107", - "testdatalake24399", - "testazureblob14043", - "testdb19603", - "testtbl19119", - "testtvf14950", - "testproc15116", - "testview11278", - "testcred16326", - "testsecret14348", - "testsecretpwd14407" + "rgaba16203", + "testaba14827", + "testaba22110", + "teststorage19894", + "testdatalake18307", + "testdatalake27438", + "testazureblob1336", + "testdb14807", + "testtbl14382", + "testtvf11476", + "testproc16272", + "testview12268", + "testcred17413", + "testsecret11551", + "testsecretpwd14698" ], "SubmitGetListCancelTest": [ - "294a6ffb-de4e-4c91-9f0b-c80b7c499817", - "32d3a192-9c60-437c-b487-d972d5180290" + "ec4242ef-69f7-40bd-b5d1-c6662b89dbdb", + "371f23e2-058e-455b-8800-68017be3d15c" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs index 5c01b89f7e4b..3fd7ee4da93b 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs @@ -234,7 +234,7 @@ CREATE TABLE {0}.dbo.{1} ClickedUrls string, INDEX idx1 //Name of index CLUSTERED (Region ASC) //Column to cluster by - PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by + PARTITIONED BY (UserId) HASH (Region) //Column to partition by ); ALTER TABLE {0}.dbo.{1} ADD IF NOT EXISTS PARTITION (1); diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/project.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/project.json index fe6bb6f7f41a..401498e7621f 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/project.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/project.json @@ -32,8 +32,8 @@ "type": "platform", "version": "1.0.0" }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", + "Microsoft.Azure.Test.HttpRecorder": "[1.7.0, 2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.6.0, 2.0.0)", "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)", "Microsoft.Rest.ClientRuntime": "[2.3.2,3.0)" , "Microsoft.Azure.Management.Storage": "[5.0.2-preview]", diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs index d8e61fb5cebe..f8583402f625 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs @@ -14,7 +14,7 @@ internal static class DataLakeAnalyticsCustomizationHelper /// This constant is used as the default package version to place in the user agent. /// It should mirror the package version in the project.json file. /// - internal const string PackageVersion = "2.0.1-preview"; + internal const string PackageVersion = "2.1.1-preview"; internal const string DefaultAdlaDnsSuffix = "azuredatalakeanalytics.net"; diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperations.cs index a4551d3bd929..63284a5e2e56 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -155,9 +152,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -172,6 +169,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -219,7 +218,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -256,7 +255,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -363,9 +362,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -380,6 +379,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -427,7 +428,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -464,7 +465,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -558,9 +559,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -575,6 +576,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -622,7 +625,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -659,7 +662,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -829,9 +832,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -846,6 +849,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -883,11 +888,19 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1011,9 +1024,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1028,6 +1041,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1045,7 +1060,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1081,7 +1096,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1118,7 +1133,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1136,7 +1151,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1235,9 +1250,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1252,6 +1267,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1269,7 +1286,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1305,7 +1322,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1342,7 +1359,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1360,7 +1377,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1431,9 +1448,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1448,6 +1465,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1495,7 +1514,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1532,7 +1551,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1603,9 +1622,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1620,6 +1639,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1667,7 +1688,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1704,7 +1725,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1723,6 +1744,3 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs index 8f0eee776898..c728e55fb878 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -222,7 +219,7 @@ public static void Delete(this IAccountOperations operations, string resourceGro /// public static async Task DeleteAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -363,7 +360,7 @@ public static void BeginDelete(this IAccountOperations operations, string resour /// public static async Task BeginDeleteAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -540,6 +537,3 @@ public static IPage ListNext(this IAccountOperations o } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperations.cs index b34994d811ec..677cedbdba83 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperations.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; using System.Collections; @@ -150,9 +150,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -167,6 +167,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -184,7 +186,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -210,11 +212,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -342,9 +352,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -359,6 +369,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -376,7 +388,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -402,11 +414,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -527,9 +547,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -544,6 +564,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -591,7 +613,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -628,7 +650,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -731,9 +753,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -748,6 +770,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -785,11 +809,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -899,9 +931,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -916,6 +948,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -953,11 +987,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1087,9 +1129,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1104,6 +1146,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1121,7 +1165,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1147,11 +1191,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1277,9 +1329,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1294,6 +1346,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1311,7 +1365,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1337,11 +1391,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1461,9 +1523,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1478,6 +1540,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1525,7 +1589,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1562,7 +1626,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1677,9 +1741,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1694,6 +1758,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1711,7 +1777,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1737,11 +1803,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1883,9 +1957,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1900,6 +1974,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1947,7 +2023,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1984,7 +2060,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2088,9 +2164,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2105,6 +2181,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2152,7 +2230,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2189,7 +2267,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2315,9 +2393,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2332,6 +2410,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2379,7 +2459,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2416,7 +2496,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2528,9 +2608,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2545,6 +2625,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2592,7 +2674,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2629,7 +2711,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2763,9 +2845,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2780,6 +2862,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2827,7 +2911,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2864,7 +2948,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2976,9 +3060,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2993,6 +3077,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3040,7 +3126,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3077,7 +3163,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3211,9 +3297,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3228,6 +3314,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3275,7 +3363,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3312,7 +3400,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3424,9 +3512,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3441,6 +3529,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3488,7 +3578,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3525,7 +3615,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3659,9 +3749,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3676,6 +3766,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3723,7 +3815,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3760,7 +3852,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3872,9 +3964,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3889,6 +3981,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3936,7 +4030,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3973,7 +4067,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4107,9 +4201,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4124,6 +4218,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4171,7 +4267,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4208,7 +4304,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4330,9 +4426,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4347,6 +4443,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4394,7 +4492,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4431,7 +4529,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4575,9 +4673,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4592,6 +4690,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4639,7 +4739,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4676,7 +4776,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4798,9 +4898,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4815,6 +4915,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4862,7 +4964,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4899,7 +5001,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5043,9 +5145,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -5060,6 +5162,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5107,7 +5211,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -5144,7 +5248,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5279,9 +5383,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -5296,6 +5400,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5343,7 +5449,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -5380,7 +5486,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5493,9 +5599,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -5510,6 +5616,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5557,7 +5665,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -5594,7 +5702,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5729,9 +5837,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -5746,6 +5854,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5793,7 +5903,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -5830,7 +5940,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5933,9 +6043,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -5950,6 +6060,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5997,7 +6109,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6034,7 +6146,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -6159,9 +6271,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -6176,6 +6288,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -6223,7 +6337,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6260,7 +6374,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -6363,9 +6477,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -6380,6 +6494,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -6427,7 +6543,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6464,7 +6580,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -6589,9 +6705,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -6606,6 +6722,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -6653,7 +6771,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6690,7 +6808,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -6784,9 +6902,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -6801,6 +6919,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -6848,7 +6968,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6885,7 +7005,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7001,9 +7121,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -7018,6 +7138,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7065,7 +7187,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7102,7 +7224,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7172,9 +7294,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -7189,6 +7311,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7236,7 +7360,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7273,7 +7397,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7344,9 +7468,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -7361,6 +7485,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7408,7 +7534,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7445,7 +7571,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7515,9 +7641,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -7532,6 +7658,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7579,7 +7707,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7616,7 +7744,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7686,9 +7814,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -7703,6 +7831,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7750,7 +7880,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7787,7 +7917,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7857,9 +7987,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -7874,6 +8004,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7921,7 +8053,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7958,7 +8090,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8028,9 +8160,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -8045,6 +8177,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8092,7 +8226,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8129,7 +8263,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8200,9 +8334,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -8217,6 +8351,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8264,7 +8400,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8301,7 +8437,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8372,9 +8508,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -8389,6 +8525,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8436,7 +8574,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8473,7 +8611,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8544,9 +8682,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -8561,6 +8699,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8608,7 +8748,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8645,7 +8785,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8716,9 +8856,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -8733,6 +8873,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8780,7 +8922,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8817,7 +8959,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8887,9 +9029,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -8904,6 +9046,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8951,7 +9095,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8988,7 +9132,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -9058,9 +9202,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -9075,6 +9219,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -9122,7 +9268,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -9159,7 +9305,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -9229,9 +9375,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -9246,6 +9392,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -9293,7 +9441,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -9330,7 +9478,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -9349,4 +9497,3 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs index 8260316e989b..3b602e880c42 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using System.Threading; using System.Threading.Tasks; @@ -77,7 +77,7 @@ public static void CreateSecret(this ICatalogOperations operations, string accou [System.Obsolete()] public static async Task CreateSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CreateSecretWithHttpMessagesAsync(accountName, databaseName, secretName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.CreateSecretWithHttpMessagesAsync(accountName, databaseName, secretName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -134,7 +134,7 @@ public static void UpdateSecret(this ICatalogOperations operations, string accou [System.Obsolete()] public static async Task UpdateSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.UpdateSecretWithHttpMessagesAsync(accountName, databaseName, secretName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.UpdateSecretWithHttpMessagesAsync(accountName, databaseName, secretName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -235,7 +235,7 @@ public static void DeleteSecret(this ICatalogOperations operations, string accou [System.Obsolete()] public static async Task DeleteSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteSecretWithHttpMessagesAsync(accountName, databaseName, secretName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteSecretWithHttpMessagesAsync(accountName, databaseName, secretName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -278,7 +278,7 @@ public static void DeleteAllSecrets(this ICatalogOperations operations, string a /// public static async Task DeleteAllSecretsAsync(this ICatalogOperations operations, string accountName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteAllSecretsWithHttpMessagesAsync(accountName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteAllSecretsWithHttpMessagesAsync(accountName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -331,7 +331,7 @@ public static void CreateCredential(this ICatalogOperations operations, string a /// public static async Task CreateCredentialAsync(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CreateCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.CreateCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -384,7 +384,7 @@ public static void UpdateCredential(this ICatalogOperations operations, string a /// public static async Task UpdateCredentialAsync(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.UpdateCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.UpdateCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -495,7 +495,7 @@ public static USqlCredential GetCredential(this ICatalogOperations operations, s /// public static async Task DeleteCredentialAsync(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialDeleteParameters parameters = default(DataLakeAnalyticsCatalogCredentialDeleteParameters), bool? cascade = false, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, cascade, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, cascade, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -2458,4 +2458,3 @@ public static IPage ListDatabasesNext(this ICatalogOperations oper } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs index f27277140b6d..8773e5fb1edc 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -38,12 +35,12 @@ public partial class DataLakeAnalyticsAccountManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -105,7 +102,7 @@ public partial class DataLakeAnalyticsAccountManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsAccountManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeAnalyticsAccountManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -119,7 +116,7 @@ protected DataLakeAnalyticsAccountManagementClient(params System.Net.Http.Delega /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsAccountManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeAnalyticsAccountManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -136,7 +133,7 @@ protected DataLakeAnalyticsAccountManagementClient(System.Net.Http.HttpClientHan /// /// Thrown when a required parameter is null /// - protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -160,7 +157,7 @@ protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, params Sy /// /// Thrown when a required parameter is null /// - protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -181,7 +178,7 @@ protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, System.Ne /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -209,7 +206,7 @@ internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials crede /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -237,7 +234,7 @@ internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials crede /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -273,7 +270,7 @@ internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceCli /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -309,7 +306,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -317,20 +314,20 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; SerializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -341,6 +338,3 @@ private void Initialize() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs index 7de97d9d7f4d..d69bd8ea87be 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; using System.Collections; @@ -35,12 +35,12 @@ public partial class DataLakeAnalyticsCatalogManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -86,7 +86,7 @@ public partial class DataLakeAnalyticsCatalogManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsCatalogManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeAnalyticsCatalogManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -100,7 +100,7 @@ protected DataLakeAnalyticsCatalogManagementClient(params System.Net.Http.Delega /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsCatalogManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeAnalyticsCatalogManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -117,7 +117,7 @@ protected DataLakeAnalyticsCatalogManagementClient(System.Net.Http.HttpClientHan /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -145,7 +145,7 @@ internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials crede /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -174,7 +174,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -182,19 +182,19 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -204,4 +204,3 @@ private void Initialize() } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs index d42d28038ecb..f66acba7e9db 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -38,12 +35,12 @@ public partial class DataLakeAnalyticsJobManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -89,7 +86,7 @@ public partial class DataLakeAnalyticsJobManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsJobManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeAnalyticsJobManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -103,7 +100,7 @@ protected DataLakeAnalyticsJobManagementClient(params System.Net.Http.Delegating /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsJobManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeAnalyticsJobManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -120,7 +117,7 @@ protected DataLakeAnalyticsJobManagementClient(System.Net.Http.HttpClientHandler /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -148,7 +145,7 @@ internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentia /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -177,7 +174,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -185,19 +182,19 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -209,5 +206,3 @@ private void Initialize() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs index 25df6441102e..2eaa2829b9df 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -143,9 +140,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -160,6 +157,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -207,7 +206,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -244,7 +243,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -346,9 +345,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -363,6 +362,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -400,11 +401,19 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -527,9 +536,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -544,6 +553,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -561,7 +572,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -587,11 +598,19 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -736,9 +755,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -753,6 +772,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -800,7 +821,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -837,7 +858,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -909,9 +930,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -926,6 +947,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -973,7 +996,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1010,7 +1033,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1029,6 +1052,3 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs index 1aaa1f8da76b..83156f1b062e 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -124,7 +121,7 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri /// public static async Task DeleteAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -179,7 +176,7 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri /// public static async Task AddAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -212,7 +209,7 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri /// public static IPage ListByAccount(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { - return operations.ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult(); + return ((IDataLakeStoreAccountsOperations)operations).ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult(); } /// @@ -294,6 +291,3 @@ public static IPage ListByAccountNext(this IDataLakeSt } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs index ce14355f1c84..4f2f130c7a58 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -154,9 +151,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -171,6 +168,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -188,7 +187,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -224,7 +223,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -261,7 +260,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -369,9 +368,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -386,6 +385,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -403,7 +404,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -439,7 +440,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -476,7 +477,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -578,9 +579,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -595,6 +596,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -632,11 +635,19 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -757,9 +768,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -774,6 +785,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -821,7 +834,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -858,7 +871,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -954,9 +967,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -971,6 +984,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1018,7 +1033,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1055,7 +1070,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1126,9 +1141,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1143,6 +1158,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1190,7 +1207,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1227,7 +1244,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1246,6 +1263,3 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs index 21f166c3e70f..f43adfeb0e4d 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Threading; using System.Threading.Tasks; @@ -185,7 +182,7 @@ public static void Delete(this IFirewallRulesOperations operations, string resou /// public static async Task DeleteAsync(this IFirewallRulesOperations operations, string resourceGroupName, string accountName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, firewallRuleName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -322,6 +319,3 @@ public static IPage ListByAccountNext(this IFirewallRulesOperation } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IAccountOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IAccountOperations.cs index 26395c62b139..fc83d812da14 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IAccountOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IAccountOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -56,13 +53,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -90,13 +87,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -116,13 +113,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -143,10 +140,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -172,13 +169,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -203,13 +200,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -230,10 +227,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -259,13 +256,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -290,13 +287,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -314,13 +311,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -338,18 +335,15 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/ICatalogOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/ICatalogOperations.cs index 086ad62cc6ab..d3b2f07595e0 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/ICatalogOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/ICatalogOperations.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using System.Collections; using System.Collections.Generic; @@ -1496,4 +1496,3 @@ public partial interface ICatalogOperations Task>> ListDatabasesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs index 3d55380de7cf..511926912856 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; /// /// Creates an Azure Data Lake Analytics account management client. @@ -32,12 +29,12 @@ public partial interface IDataLakeAnalyticsAccountManagementClient : System.IDis /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -96,6 +93,3 @@ public partial interface IDataLakeAnalyticsAccountManagementClient : System.IDis } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs index 2f0bd7fe635c..1bb7693fb546 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; @@ -28,12 +28,12 @@ public partial interface IDataLakeAnalyticsCatalogManagementClient : System.IDis /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -76,4 +76,3 @@ public partial interface IDataLakeAnalyticsCatalogManagementClient : System.IDis } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs index 69743683444d..e51007158989 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; /// /// Creates an Azure Data Lake Analytics job client. @@ -31,12 +28,12 @@ public partial interface IDataLakeAnalyticsJobManagementClient : System.IDisposa /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -79,5 +76,3 @@ public partial interface IDataLakeAnalyticsJobManagementClient : System.IDisposa } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs index 9ba698847fa7..b62c5ec92c10 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -49,13 +46,13 @@ public partial interface IDataLakeStoreAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -80,10 +77,10 @@ public partial interface IDataLakeStoreAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -111,10 +108,10 @@ public partial interface IDataLakeStoreAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -150,13 +147,13 @@ public partial interface IDataLakeStoreAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -174,18 +171,15 @@ public partial interface IDataLakeStoreAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs index 2b9cbbecde7f..116f90aef508 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -52,13 +49,13 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, FirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -85,13 +82,13 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, UpdateFirewallRuleParameters parameters = default(UpdateFirewallRuleParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -116,10 +113,10 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -143,13 +140,13 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -171,13 +168,13 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -194,18 +191,15 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IJobOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IJobOperations.cs index 462cc45fc070..003ddd59634e 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IJobOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IJobOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -43,13 +40,13 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetStatisticsWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -68,13 +65,13 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetDebugDataPathWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -94,13 +91,13 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> BuildWithHttpMessagesAsync(string accountName, JobInformation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -119,10 +116,10 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task CancelWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -141,13 +138,13 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -169,13 +166,13 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, JobInformation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -206,13 +203,13 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -230,17 +227,15 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs index 9a4459c48957..3ea331e90d32 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -50,13 +47,13 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -81,10 +78,10 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -113,10 +110,10 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -145,10 +142,10 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -177,13 +174,13 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetStorageContainerWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, string containerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -211,13 +208,13 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListStorageContainersWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -247,13 +244,13 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListSasTokensWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, string containerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -289,13 +286,13 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -314,13 +311,13 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListStorageContainersNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -337,13 +334,13 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListSasTokensNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -361,18 +358,15 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperations.cs index 4a168f68cb4a..1a44ad802321 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -127,9 +124,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -144,6 +141,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -191,7 +190,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -228,7 +227,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -317,9 +316,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -334,6 +333,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -381,7 +382,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -418,7 +419,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -515,9 +516,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -532,6 +533,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -549,7 +552,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -585,7 +588,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -622,7 +625,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -708,9 +711,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -725,6 +728,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -762,11 +767,19 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -872,9 +885,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -889,6 +902,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -936,7 +951,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -973,7 +988,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1074,9 +1089,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1091,6 +1106,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1108,7 +1125,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1144,7 +1161,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1181,7 +1198,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1297,9 +1314,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1314,6 +1331,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1361,7 +1380,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1398,7 +1417,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1469,9 +1488,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1486,6 +1505,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1533,7 +1554,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1570,7 +1591,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1589,5 +1610,3 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs index 7c197c5078df..909535cf9709 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -182,7 +179,7 @@ public static void Cancel(this IJobOperations operations, string accountName, Sy /// public static async Task CancelAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CancelWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false); + (await operations.CancelWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -369,5 +366,3 @@ public static IPage ListNext(this IJobOperations operations, str } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs index 5901d0dcff88..688ceef795f1 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Additional Data Lake Store parameters. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class AddDataLakeStoreParameters { /// /// Initializes a new instance of the AddDataLakeStoreParameters class. /// - public AddDataLakeStoreParameters() { } + public AddDataLakeStoreParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the AddDataLakeStoreParameters class. @@ -40,8 +39,14 @@ public AddDataLakeStoreParameters() { } public AddDataLakeStoreParameters(string suffix = default(string)) { Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the optional suffix for the Data Lake Store account. /// @@ -50,6 +55,3 @@ public AddDataLakeStoreParameters() { } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs index 3572cd18864b..902e809df05a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs @@ -2,37 +2,36 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Storage account parameters for a storage account being added to a Data /// Lake Analytics account. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class AddStorageAccountParameters { /// /// Initializes a new instance of the AddStorageAccountParameters /// class. /// - public AddStorageAccountParameters() { } + public AddStorageAccountParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the AddStorageAccountParameters @@ -46,8 +45,14 @@ public AddStorageAccountParameters() { } { AccessKey = accessKey; Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the access key associated with this Azure Storage /// account that will be used to connect to it. @@ -76,6 +81,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItem.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItem.cs index 458b95c4239d..233914f2d829 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItem.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItem.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class CatalogItem /// /// Initializes a new instance of the CatalogItem class. /// - public CatalogItem() { } + public CatalogItem() + { + CustomInit(); + } /// /// Initializes a new instance of the CatalogItem class. @@ -35,8 +38,14 @@ public CatalogItem() { } { ComputeAccountName = computeAccountName; Version = version; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the Data Lake Analytics account. /// @@ -51,4 +60,3 @@ public CatalogItem() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs index a3ac3e6d20fe..9ff334ce8f79 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class CatalogItemList /// /// Initializes a new instance of the CatalogItemList class. /// - public CatalogItemList() { } + public CatalogItemList() + { + CustomInit(); + } /// /// Initializes a new instance of the CatalogItemList class. @@ -33,8 +36,14 @@ public CatalogItemList() { } public CatalogItemList(string nextLink = default(string)) { NextLink = nextLink; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the link to the next page of results. /// @@ -43,4 +52,3 @@ public CatalogItemList() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CompileMode.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CompileMode.cs index 04fdd7b31dbb..bc1b5eee3aa9 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CompileMode.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CompileMode.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for CompileMode. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum CompileMode { [EnumMember(Value = "Semantic")] @@ -35,5 +31,3 @@ public enum CompileMode SingleBox } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs index 5890e8ac881e..3bd785d74ac3 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -27,13 +23,16 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// A Data Lake Analytics account object, containing all information /// associated with the named Data Lake Analytics account. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeAnalyticsAccount : Resource { /// /// Initializes a new instance of the DataLakeAnalyticsAccount class. /// - public DataLakeAnalyticsAccount() { } + public DataLakeAnalyticsAccount() + { + CustomInit(); + } /// /// Initializes a new instance of the DataLakeAnalyticsAccount class. @@ -117,8 +116,14 @@ public DataLakeAnalyticsAccount() { } FirewallState = firewallState; FirewallAllowAzureIps = firewallAllowAzureIps; FirewallRules = firewallRules; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the provisioning status of the Data Lake Analytics account. /// Possible values include: 'Failed', 'Creating', 'Running', @@ -126,14 +131,14 @@ public DataLakeAnalyticsAccount() { } /// 'Deleted' /// [JsonProperty(PropertyName = "properties.provisioningState")] - public DataLakeAnalyticsAccountStatus? ProvisioningState { get; protected set; } + public DataLakeAnalyticsAccountStatus? ProvisioningState { get; private set; } /// /// Gets the state of the Data Lake Analytics account. Possible values /// include: 'Active', 'Suspended' /// [JsonProperty(PropertyName = "properties.state")] - public DataLakeAnalyticsAccountState? State { get; protected set; } + public DataLakeAnalyticsAccountState? State { get; private set; } /// /// Gets or sets the default data lake storage account associated with @@ -168,7 +173,7 @@ public DataLakeAnalyticsAccount() { } /// user can set for the account.. /// [JsonProperty(PropertyName = "properties.systemMaxDegreeOfParallelism")] - public int? SystemMaxDegreeOfParallelism { get; protected set; } + public int? SystemMaxDegreeOfParallelism { get; private set; } /// /// Gets the system defined maximum supported jobs running under the @@ -176,7 +181,7 @@ public DataLakeAnalyticsAccount() { } /// running jobs the user can set for the account. /// [JsonProperty(PropertyName = "properties.systemMaxJobCount")] - public int? SystemMaxJobCount { get; protected set; } + public int? SystemMaxJobCount { get; private set; } /// /// Gets or sets the list of Data Lake storage accounts associated with @@ -196,19 +201,19 @@ public DataLakeAnalyticsAccount() { } /// Gets the account creation time. /// [JsonProperty(PropertyName = "properties.creationTime")] - public System.DateTime? CreationTime { get; protected set; } + public System.DateTime? CreationTime { get; private set; } /// /// Gets the account last modified time. /// [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public System.DateTime? LastModifiedTime { get; protected set; } + public System.DateTime? LastModifiedTime { get; private set; } /// /// Gets the full CName endpoint for this account. /// [JsonProperty(PropertyName = "properties.endpoint")] - public string Endpoint { get; protected set; } + public string Endpoint { get; private set; } /// /// Gets or sets the commitment tier for the next month. Possible @@ -230,7 +235,7 @@ public DataLakeAnalyticsAccount() { } /// 'Commitment_500000AUHours' /// [JsonProperty(PropertyName = "properties.currentTier")] - public TierType? CurrentTier { get; protected set; } + public TierType? CurrentTier { get; private set; } /// /// Gets or sets the current state of the IP address firewall for this @@ -322,6 +327,3 @@ public override void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs index f8bc356dca1d..a3889982d786 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for DataLakeAnalyticsAccountState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DataLakeAnalyticsAccountState { [EnumMember(Value = "Active")] @@ -33,6 +29,3 @@ public enum DataLakeAnalyticsAccountState Suspended } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs index 60750fcbbb72..8fd88911c0e8 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for DataLakeAnalyticsAccountStatus. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DataLakeAnalyticsAccountStatus { [EnumMember(Value = "Failed")] @@ -47,6 +43,3 @@ public enum DataLakeAnalyticsAccountStatus Deleted } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs index 4f7143e51bef..a861ec105b91 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -27,14 +23,17 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// The parameters that can be used to update an existing Data Lake /// Analytics account. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeAnalyticsAccountUpdateParameters { /// /// Initializes a new instance of the /// DataLakeAnalyticsAccountUpdateParameters class. /// - public DataLakeAnalyticsAccountUpdateParameters() { } + public DataLakeAnalyticsAccountUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -72,8 +71,14 @@ public DataLakeAnalyticsAccountUpdateParameters() { } FirewallState = firewallState; FirewallAllowAzureIps = firewallAllowAzureIps; FirewallRules = firewallRules; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets resource tags /// @@ -172,6 +177,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs index b53f65bc84be..51e783cae90b 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; - using Rest; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -25,7 +25,10 @@ public partial class DataLakeAnalyticsCatalogCredentialCreateParameters /// Initializes a new instance of the /// DataLakeAnalyticsCatalogCredentialCreateParameters class. /// - public DataLakeAnalyticsCatalogCredentialCreateParameters() { } + public DataLakeAnalyticsCatalogCredentialCreateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -43,8 +46,14 @@ public DataLakeAnalyticsCatalogCredentialCreateParameters(string password, strin Password = password; Uri = uri; UserId = userId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the password for the credential and user with access /// to the data source. @@ -90,4 +99,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs index 4f89bd9a1407..71cb935e370e 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -24,7 +24,10 @@ public partial class DataLakeAnalyticsCatalogCredentialDeleteParameters /// Initializes a new instance of the /// DataLakeAnalyticsCatalogCredentialDeleteParameters class. /// - public DataLakeAnalyticsCatalogCredentialDeleteParameters() { } + public DataLakeAnalyticsCatalogCredentialDeleteParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -36,8 +39,14 @@ public DataLakeAnalyticsCatalogCredentialDeleteParameters() { } public DataLakeAnalyticsCatalogCredentialDeleteParameters(string password = default(string)) { Password = password; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the current password for the credential and user with /// access to the data source. This is required if the requester is not @@ -48,4 +57,3 @@ public DataLakeAnalyticsCatalogCredentialDeleteParameters() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs index 27250fefe820..666f7b4c17fa 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -24,7 +24,10 @@ public partial class DataLakeAnalyticsCatalogCredentialUpdateParameters /// Initializes a new instance of the /// DataLakeAnalyticsCatalogCredentialUpdateParameters class. /// - public DataLakeAnalyticsCatalogCredentialUpdateParameters() { } + public DataLakeAnalyticsCatalogCredentialUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -46,8 +49,14 @@ public DataLakeAnalyticsCatalogCredentialUpdateParameters() { } NewPassword = newPassword; Uri = uri; UserId = userId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the current password for the credential and user with /// access to the data source. This is required if the requester is not @@ -80,4 +89,3 @@ public DataLakeAnalyticsCatalogCredentialUpdateParameters() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs index be56e43ddbe0..88629c04498f 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; - using Rest; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -27,7 +27,10 @@ public partial class DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters /// Initializes a new instance of the /// DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters class. /// - public DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters() { } + public DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -41,8 +44,14 @@ public DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters() { } { Password = password; Uri = uri; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the password for the secret to pass in /// @@ -71,4 +80,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs index 5627154d2dd5..f2097c6b1f09 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Data Lake Store account information. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeStoreAccountInfo : SubResource { /// /// Initializes a new instance of the DataLakeStoreAccountInfo class. /// - public DataLakeStoreAccountInfo() { } + public DataLakeStoreAccountInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the DataLakeStoreAccountInfo class. @@ -44,8 +43,14 @@ public DataLakeStoreAccountInfo() { } : base(name, id, type) { Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the optional suffix for the Data Lake Store account. /// @@ -64,6 +69,3 @@ public override void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DdlName.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DdlName.cs index 2e69c1cdf93f..3cd385889f3f 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DdlName.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DdlName.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class DdlName /// /// Initializes a new instance of the DdlName class. /// - public DdlName() { } + public DdlName() + { + CustomInit(); + } /// /// Initializes a new instance of the DdlName class. @@ -42,8 +45,14 @@ public DdlName() { } SecondPart = secondPart; ThirdPart = thirdPart; Server = server; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the table associated with this database /// and schema. @@ -74,4 +83,3 @@ public DdlName() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Diagnostics.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Diagnostics.cs index 0dae255675ab..cd600731e578 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Diagnostics.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Diagnostics.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class Diagnostics /// /// Initializes a new instance of the Diagnostics class. /// - public Diagnostics() { } + public Diagnostics() + { + CustomInit(); + } /// /// Initializes a new instance of the Diagnostics class. @@ -50,46 +49,50 @@ public Diagnostics() { } Message = message; Severity = severity; Start = start; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the column where the error occured. /// [JsonProperty(PropertyName = "columnNumber")] - public int? ColumnNumber { get; protected set; } + public int? ColumnNumber { get; private set; } /// /// Gets the ending index of the error. /// [JsonProperty(PropertyName = "end")] - public int? End { get; protected set; } + public int? End { get; private set; } /// /// Gets the line number the error occured on. /// [JsonProperty(PropertyName = "lineNumber")] - public int? LineNumber { get; protected set; } + public int? LineNumber { get; private set; } /// /// Gets the error message. /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } /// /// Gets the severity of the error. Possible values include: 'Warning', /// 'Error', 'Info', 'SevereWarning', 'Deprecated', 'UserWarning' /// [JsonProperty(PropertyName = "severity")] - public SeverityTypes? Severity { get; protected set; } + public SeverityTypes? Severity { get; private set; } /// /// Gets the starting index of the error. /// [JsonProperty(PropertyName = "start")] - public int? Start { get; protected set; } + public int? Start { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/EntityId.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/EntityId.cs index 56f18374a941..6cfe92808471 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/EntityId.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/EntityId.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class EntityId /// /// Initializes a new instance of the EntityId class. /// - public EntityId() { } + public EntityId() + { + CustomInit(); + } /// /// Initializes a new instance of the EntityId class. @@ -36,8 +39,14 @@ public EntityId() { } { Name = name; Version = version; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the external table associated with this /// database, schema and table. @@ -53,4 +62,3 @@ public EntityId() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/ExternalTable.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/ExternalTable.cs index d6657a785671..d67b7a663d5b 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/ExternalTable.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/ExternalTable.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class ExternalTable /// /// Initializes a new instance of the ExternalTable class. /// - public ExternalTable() { } + public ExternalTable() + { + CustomInit(); + } /// /// Initializes a new instance of the ExternalTable class. @@ -36,8 +39,14 @@ public ExternalTable() { } { TableName = tableName; DataSource = dataSource; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the table associated with this database /// and schema. @@ -53,4 +62,3 @@ public ExternalTable() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FileType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FileType.cs index 11b532a74b9d..d00f3103f593 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FileType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FileType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for FileType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FileType { [EnumMember(Value = "Assembly")] @@ -29,4 +29,3 @@ public enum FileType Resource } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs index 19c15f61ad03..5d03d937de5c 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for FirewallAllowAzureIpsState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FirewallAllowAzureIpsState { [EnumMember(Value = "Enabled")] @@ -33,6 +29,3 @@ public enum FirewallAllowAzureIpsState Disabled } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallRule.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallRule.cs index e8e1ed9ff7e2..3e35507c0915 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallRule.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallRule.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Data Lake Analytics firewall rule information /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class FirewallRule : OptionalSubResource { /// /// Initializes a new instance of the FirewallRule class. /// - public FirewallRule() { } + public FirewallRule() + { + CustomInit(); + } /// /// Initializes a new instance of the FirewallRule class. @@ -49,8 +48,14 @@ public FirewallRule() { } { StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the start IP address for the firewall rule. This can /// be either ipv4 or ipv6. Start and End should be in the same @@ -85,6 +90,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallState.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallState.cs index 12abb87855ac..e24c81709511 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallState.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallState.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for FirewallState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FirewallState { [EnumMember(Value = "Enabled")] @@ -33,6 +29,3 @@ public enum FirewallState Disabled } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs index 90950d81dfd4..ece625ace857 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -28,7 +24,10 @@ public partial class HiveJobProperties : JobProperties /// /// Initializes a new instance of the HiveJobProperties class. /// - public HiveJobProperties() { } + public HiveJobProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the HiveJobProperties class. @@ -51,33 +50,39 @@ public HiveJobProperties() { } OutputLocation = outputLocation; StatementCount = statementCount; ExecutedStatementCount = executedStatementCount; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the Hive logs location /// [JsonProperty(PropertyName = "logsLocation")] - public string LogsLocation { get; protected set; } + public string LogsLocation { get; private set; } /// /// Gets the location of Hive job output files (both execution output /// and results) /// [JsonProperty(PropertyName = "outputLocation")] - public string OutputLocation { get; protected set; } + public string OutputLocation { get; private set; } /// /// Gets the number of statements that will be run based on the script /// [JsonProperty(PropertyName = "statementCount")] - public int? StatementCount { get; protected set; } + public int? StatementCount { get; private set; } /// /// Gets the number of statements that have been run based on the /// script /// [JsonProperty(PropertyName = "executedStatementCount")] - public int? ExecutedStatementCount { get; protected set; } + public int? ExecutedStatementCount { get; private set; } /// /// Validate the object. @@ -91,5 +96,3 @@ public override void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobDataPath.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobDataPath.cs index b939b2de691f..d64e1093344a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobDataPath.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobDataPath.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -29,7 +25,10 @@ public partial class JobDataPath /// /// Initializes a new instance of the JobDataPath class. /// - public JobDataPath() { } + public JobDataPath() + { + CustomInit(); + } /// /// Initializes a new instance of the JobDataPath class. @@ -44,27 +43,31 @@ public JobDataPath() { } JobId = jobId; Command = command; Paths = paths; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the id of the job this data is for. /// [JsonProperty(PropertyName = "jobId")] - public System.Guid? JobId { get; protected set; } + public System.Guid? JobId { get; private set; } /// /// Gets the command that this job data relates to. /// [JsonProperty(PropertyName = "command")] - public string Command { get; protected set; } + public string Command { get; private set; } /// /// Gets the list of paths to all of the job data. /// [JsonProperty(PropertyName = "paths")] - public IList Paths { get; protected set; } + public IList Paths { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs index 8dae3f4cd723..0a542c78b849 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class JobErrorDetails /// /// Initializes a new instance of the JobErrorDetails class. /// - public JobErrorDetails() { } + public JobErrorDetails() + { + CustomInit(); + } /// /// Initializes a new instance of the JobErrorDetails class. @@ -77,44 +76,50 @@ public JobErrorDetails() { } Severity = severity; Source = source; StartOffset = startOffset; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the error message description /// [JsonProperty(PropertyName = "description")] - public string Description { get; protected set; } + public string Description { get; private set; } /// /// Gets the details of the error message. /// [JsonProperty(PropertyName = "details")] - public string Details { get; protected set; } + public string Details { get; private set; } /// /// Gets the end offset in the job where the error was found. /// [JsonProperty(PropertyName = "endOffset")] - public int? EndOffset { get; protected set; } + public int? EndOffset { get; private set; } /// /// Gets the specific identifier for the type of error encountered in /// the job. /// [JsonProperty(PropertyName = "errorId")] - public string ErrorId { get; protected set; } + public string ErrorId { get; private set; } /// /// Gets the path to any supplemental error files, if any. /// [JsonProperty(PropertyName = "filePath")] - public string FilePath { get; protected set; } + public string FilePath { get; private set; } /// /// Gets the link to MSDN or Azure help for this type of error, if any. /// [JsonProperty(PropertyName = "helpLink")] - public string HelpLink { get; protected set; } + public string HelpLink { get; private set; } /// /// Gets the internal diagnostic stack trace if the user requesting the @@ -122,31 +127,31 @@ public JobErrorDetails() { } /// otherwise it will be empty. /// [JsonProperty(PropertyName = "internalDiagnostics")] - public string InternalDiagnostics { get; protected set; } + public string InternalDiagnostics { get; private set; } /// /// Gets the specific line number in the job where the error occured. /// [JsonProperty(PropertyName = "lineNumber")] - public int? LineNumber { get; protected set; } + public int? LineNumber { get; private set; } /// /// Gets the user friendly error message for the failure. /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } /// /// Gets the recommended resolution for the failure, if any. /// [JsonProperty(PropertyName = "resolution")] - public string Resolution { get; protected set; } + public string Resolution { get; private set; } /// /// Gets the inner error of this specific job error message, if any. /// [JsonProperty(PropertyName = "innerError")] - public JobInnerError InnerError { get; protected set; } + public JobInnerError InnerError { get; private set; } /// /// Gets the severity level of the failure. Possible values include: @@ -154,22 +159,20 @@ public JobErrorDetails() { } /// 'UserWarning' /// [JsonProperty(PropertyName = "severity")] - public SeverityTypes? Severity { get; protected set; } + public SeverityTypes? Severity { get; private set; } /// /// Gets the ultimate source of the failure (usually either SYSTEM or /// USER). /// [JsonProperty(PropertyName = "source")] - public string Source { get; protected set; } + public string Source { get; private set; } /// /// Gets the start offset in the job where the error was found /// [JsonProperty(PropertyName = "startOffset")] - public int? StartOffset { get; protected set; } + public int? StartOffset { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInformation.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInformation.cs index 655c1e13dc7e..2b48704e3803 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInformation.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInformation.cs @@ -2,22 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; - using Rest; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -30,7 +26,10 @@ public partial class JobInformation /// /// Initializes a new instance of the JobInformation class. /// - public JobInformation() { } + public JobInformation() + { + CustomInit(); + } /// /// Initializes a new instance of the JobInformation class. @@ -89,13 +88,19 @@ public JobInformation() { } LogFilePatterns = logFilePatterns; StateAuditRecords = stateAuditRecords; Properties = properties; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the job's unique identifier (a GUID). /// [JsonProperty(PropertyName = "jobId")] - public System.Guid? JobId { get; protected set; } + public System.Guid? JobId { get; private set; } /// /// Gets or sets the friendly name of the job. @@ -114,13 +119,13 @@ public JobInformation() { } /// Gets the user or account that submitted the job. /// [JsonProperty(PropertyName = "submitter")] - public string Submitter { get; protected set; } + public string Submitter { get; private set; } /// /// Gets the error message details for the job, if the job failed. /// [JsonProperty(PropertyName = "errorMessage")] - public IList ErrorMessage { get; protected set; } + public IList ErrorMessage { get; private set; } /// /// Gets or sets the degree of parallelism used for this job. This must @@ -141,19 +146,19 @@ public JobInformation() { } /// Gets the time the job was submitted to the service. /// [JsonProperty(PropertyName = "submitTime")] - public System.DateTimeOffset? SubmitTime { get; protected set; } + public System.DateTimeOffset? SubmitTime { get; private set; } /// /// Gets the start time of the job. /// [JsonProperty(PropertyName = "startTime")] - public System.DateTimeOffset? StartTime { get; protected set; } + public System.DateTimeOffset? StartTime { get; private set; } /// /// Gets the completion time of the job. /// [JsonProperty(PropertyName = "endTime")] - public System.DateTimeOffset? EndTime { get; protected set; } + public System.DateTimeOffset? EndTime { get; private set; } /// /// Gets the job state. When the job is in the Ended state, refer to @@ -162,7 +167,7 @@ public JobInformation() { } /// 'Scheduling', 'Starting', 'Paused', 'WaitingForCapacity' /// [JsonProperty(PropertyName = "state")] - public JobState? State { get; protected set; } + public JobState? State { get; private set; } /// /// Gets the result of job execution or the current result of the @@ -170,14 +175,14 @@ public JobInformation() { } /// 'Cancelled', 'Failed' /// [JsonProperty(PropertyName = "result")] - public JobResult? Result { get; protected set; } + public JobResult? Result { get; private set; } /// /// Gets the log folder path to use in the following format: /// adl://&lt;accountName&gt;.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/. /// [JsonProperty(PropertyName = "logFolder")] - public string LogFolder { get; protected set; } + public string LogFolder { get; private set; } /// /// Gets or sets the list of log file name patterns to find in the @@ -192,7 +197,7 @@ public JobInformation() { } /// operations have been performed on this job. /// [JsonProperty(PropertyName = "stateAuditRecords")] - public IList StateAuditRecords { get; protected set; } + public IList StateAuditRecords { get; private set; } /// /// Gets or sets the job specific properties. @@ -223,5 +228,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInnerError.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInnerError.cs index 380f51306c99..045706d5b74a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInnerError.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInnerError.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class JobInnerError /// /// Initializes a new instance of the JobInnerError class. /// - public JobInnerError() { } + public JobInnerError() + { + CustomInit(); + } /// /// Initializes a new instance of the JobInnerError class. @@ -66,13 +65,19 @@ public JobInnerError() { } Resolution = resolution; Source = source; Description = description; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the diagnostic error code. /// [JsonProperty(PropertyName = "diagnosticCode")] - public int? DiagnosticCode { get; protected set; } + public int? DiagnosticCode { get; private set; } /// /// Gets the severity level of the failure. Possible values include: @@ -80,32 +85,32 @@ public JobInnerError() { } /// 'UserWarning' /// [JsonProperty(PropertyName = "severity")] - public SeverityTypes? Severity { get; protected set; } + public SeverityTypes? Severity { get; private set; } /// /// Gets the details of the error message. /// [JsonProperty(PropertyName = "details")] - public string Details { get; protected set; } + public string Details { get; private set; } /// /// Gets the component that failed. /// [JsonProperty(PropertyName = "component")] - public string Component { get; protected set; } + public string Component { get; private set; } /// /// Gets the specific identifier for the type of error encountered in /// the job. /// [JsonProperty(PropertyName = "errorId")] - public string ErrorId { get; protected set; } + public string ErrorId { get; private set; } /// /// Gets the link to MSDN or Azure help for this type of error, if any. /// [JsonProperty(PropertyName = "helpLink")] - public string HelpLink { get; protected set; } + public string HelpLink { get; private set; } /// /// Gets the internal diagnostic stack trace if the user requesting the @@ -113,34 +118,32 @@ public JobInnerError() { } /// otherwise it will be empty. /// [JsonProperty(PropertyName = "internalDiagnostics")] - public string InternalDiagnostics { get; protected set; } + public string InternalDiagnostics { get; private set; } /// /// Gets the user friendly error message for the failure. /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } /// /// Gets the recommended resolution for the failure, if any. /// [JsonProperty(PropertyName = "resolution")] - public string Resolution { get; protected set; } + public string Resolution { get; private set; } /// /// Gets the ultimate source of the failure (usually either SYSTEM or /// USER). /// [JsonProperty(PropertyName = "source")] - public string Source { get; protected set; } + public string Source { get; private set; } /// /// Gets the error message description /// [JsonProperty(PropertyName = "description")] - public string Description { get; protected set; } + public string Description { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobProperties.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobProperties.cs index a5f4c0614ffd..98f79d0c4c83 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobProperties.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobProperties.cs @@ -2,22 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; - using Rest; using System.Linq; /// @@ -28,7 +24,10 @@ public partial class JobProperties /// /// Initializes a new instance of the JobProperties class. /// - public JobProperties() { } + public JobProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the JobProperties class. @@ -41,8 +40,14 @@ public JobProperties() { } { RuntimeVersion = runtimeVersion; Script = script; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the runtime version of the Data Lake Analytics engine /// to use for the specific type of job being run. @@ -71,5 +76,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResource.cs index 110f3a03c74c..487358c00bb8 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResource.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class JobResource /// /// Initializes a new instance of the JobResource class. /// - public JobResource() { } + public JobResource() + { + CustomInit(); + } /// /// Initializes a new instance of the JobResource class. @@ -43,8 +42,14 @@ public JobResource() { } Name = name; ResourcePath = resourcePath; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the resource. /// @@ -68,5 +73,3 @@ public JobResource() { } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResourceType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResourceType.cs index 89b7d028f2f5..589f1d1fcd3f 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResourceType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResourceType.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for JobResourceType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum JobResourceType { [EnumMember(Value = "VertexResource")] @@ -41,5 +37,3 @@ public enum JobResourceType StatisticsResourceInUserFolder } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResult.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResult.cs index b9d442d556a2..7b5daeda1b49 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResult.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResult.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for JobResult. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum JobResult { [EnumMember(Value = "None")] @@ -37,5 +33,3 @@ public enum JobResult Failed } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobState.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobState.cs index cecaaf44fe2b..9780372889b6 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobState.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobState.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for JobState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum JobState { [EnumMember(Value = "Accepted")] @@ -49,5 +45,3 @@ public enum JobState WaitingForCapacity } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs index 81be3703ff33..b5581b241405 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -28,7 +24,10 @@ public partial class JobStateAuditRecord /// /// Initializes a new instance of the JobStateAuditRecord class. /// - public JobStateAuditRecord() { } + public JobStateAuditRecord() + { + CustomInit(); + } /// /// Initializes a new instance of the JobStateAuditRecord class. @@ -45,33 +44,37 @@ public JobStateAuditRecord() { } TimeStamp = timeStamp; RequestedByUser = requestedByUser; Details = details; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the new state the job is in. /// [JsonProperty(PropertyName = "newState")] - public string NewState { get; protected set; } + public string NewState { get; private set; } /// /// Gets the time stamp that the state change took place. /// [JsonProperty(PropertyName = "timeStamp")] - public System.DateTimeOffset? TimeStamp { get; protected set; } + public System.DateTimeOffset? TimeStamp { get; private set; } /// /// Gets the user who requests the change. /// [JsonProperty(PropertyName = "requestedByUser")] - public string RequestedByUser { get; protected set; } + public string RequestedByUser { get; private set; } /// /// Gets the details of the audit log. /// [JsonProperty(PropertyName = "details")] - public string Details { get; protected set; } + public string Details { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatistics.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatistics.cs index e02e1a2450e1..c83476534325 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatistics.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatistics.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -29,7 +25,10 @@ public partial class JobStatistics /// /// Initializes a new instance of the JobStatistics class. /// - public JobStatistics() { } + public JobStatistics() + { + CustomInit(); + } /// /// Initializes a new instance of the JobStatistics class. @@ -44,27 +43,31 @@ public JobStatistics() { } LastUpdateTimeUtc = lastUpdateTimeUtc; FinalizingTimeUtc = finalizingTimeUtc; Stages = stages; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the last update time for the statistics. /// [JsonProperty(PropertyName = "lastUpdateTimeUtc")] - public System.DateTimeOffset? LastUpdateTimeUtc { get; protected set; } + public System.DateTimeOffset? LastUpdateTimeUtc { get; private set; } /// /// Gets the job finalizing start time. /// [JsonProperty(PropertyName = "finalizingTimeUtc")] - public System.DateTimeOffset? FinalizingTimeUtc { get; protected set; } + public System.DateTimeOffset? FinalizingTimeUtc { get; private set; } /// /// Gets the list of stages for the job. /// [JsonProperty(PropertyName = "stages")] - public IList Stages { get; protected set; } + public IList Stages { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs index c35dbe637c91..873a82036883 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class JobStatisticsVertexStage /// /// Initializes a new instance of the JobStatisticsVertexStage class. /// - public JobStatisticsVertexStage() { } + public JobStatisticsVertexStage() + { + CustomInit(); + } /// /// Initializes a new instance of the JobStatisticsVertexStage class. @@ -93,129 +92,133 @@ public JobStatisticsVertexStage() { } TotalFailedTime = totalFailedTime; TotalProgress = totalProgress; TotalSucceededTime = totalSucceededTime; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the amount of data read, in bytes. /// [JsonProperty(PropertyName = "dataRead")] - public long? DataRead { get; protected set; } + public long? DataRead { get; private set; } /// /// Gets the amount of data read across multiple pods, in bytes. /// [JsonProperty(PropertyName = "dataReadCrossPod")] - public long? DataReadCrossPod { get; protected set; } + public long? DataReadCrossPod { get; private set; } /// /// Gets the amount of data read in one pod, in bytes. /// [JsonProperty(PropertyName = "dataReadIntraPod")] - public long? DataReadIntraPod { get; protected set; } + public long? DataReadIntraPod { get; private set; } /// /// Gets the amount of data remaining to be read, in bytes. /// [JsonProperty(PropertyName = "dataToRead")] - public long? DataToRead { get; protected set; } + public long? DataToRead { get; private set; } /// /// Gets the amount of data written, in bytes. /// [JsonProperty(PropertyName = "dataWritten")] - public long? DataWritten { get; protected set; } + public long? DataWritten { get; private set; } /// /// Gets the number of duplicates that were discarded. /// [JsonProperty(PropertyName = "duplicateDiscardCount")] - public int? DuplicateDiscardCount { get; protected set; } + public int? DuplicateDiscardCount { get; private set; } /// /// Gets the number of failures that occured in this stage. /// [JsonProperty(PropertyName = "failedCount")] - public int? FailedCount { get; protected set; } + public int? FailedCount { get; private set; } /// /// Gets the maximum amount of data read in a single vertex, in bytes. /// [JsonProperty(PropertyName = "maxVertexDataRead")] - public long? MaxVertexDataRead { get; protected set; } + public long? MaxVertexDataRead { get; private set; } /// /// Gets the minimum amount of data read in a single vertex, in bytes. /// [JsonProperty(PropertyName = "minVertexDataRead")] - public long? MinVertexDataRead { get; protected set; } + public long? MinVertexDataRead { get; private set; } /// /// Gets the number of read failures in this stage. /// [JsonProperty(PropertyName = "readFailureCount")] - public int? ReadFailureCount { get; protected set; } + public int? ReadFailureCount { get; private set; } /// /// Gets the number of vertices that were revoked during this stage. /// [JsonProperty(PropertyName = "revocationCount")] - public int? RevocationCount { get; protected set; } + public int? RevocationCount { get; private set; } /// /// Gets the number of currently running vertices in this stage. /// [JsonProperty(PropertyName = "runningCount")] - public int? RunningCount { get; protected set; } + public int? RunningCount { get; private set; } /// /// Gets the number of currently scheduled vertices in this stage /// [JsonProperty(PropertyName = "scheduledCount")] - public int? ScheduledCount { get; protected set; } + public int? ScheduledCount { get; private set; } /// /// Gets the name of this stage in job execution. /// [JsonProperty(PropertyName = "stageName")] - public string StageName { get; protected set; } + public string StageName { get; private set; } /// /// Gets the number of vertices that succeeded in this stage. /// [JsonProperty(PropertyName = "succeededCount")] - public int? SucceededCount { get; protected set; } + public int? SucceededCount { get; private set; } /// /// Gets the amount of temporary data written, in bytes. /// [JsonProperty(PropertyName = "tempDataWritten")] - public long? TempDataWritten { get; protected set; } + public long? TempDataWritten { get; private set; } /// /// Gets the total vertex count for this stage. /// [JsonProperty(PropertyName = "totalCount")] - public int? TotalCount { get; protected set; } + public int? TotalCount { get; private set; } /// /// Gets the amount of time that failed vertices took up in this stage. /// [JsonProperty(PropertyName = "totalFailedTime")] - public System.TimeSpan? TotalFailedTime { get; protected set; } + public System.TimeSpan? TotalFailedTime { get; private set; } /// /// Gets the current progress of this stage, as a percentage. /// [JsonProperty(PropertyName = "totalProgress")] - public int? TotalProgress { get; protected set; } + public int? TotalProgress { get; private set; } /// /// Gets the amount of time all successful vertices took in this stage. /// [JsonProperty(PropertyName = "totalSucceededTime")] - public System.TimeSpan? TotalSucceededTime { get; protected set; } + public System.TimeSpan? TotalSucceededTime { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobType.cs index 0dfa757a66a6..3b9360a6f335 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobType.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for JobType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum JobType { [EnumMember(Value = "USql")] @@ -33,5 +29,3 @@ public enum JobType Hive } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs index e2db0e4217e2..8ad090ad2eb5 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -28,7 +24,10 @@ public partial class OptionalSubResource /// /// Initializes a new instance of the OptionalSubResource class. /// - public OptionalSubResource() { } + public OptionalSubResource() + { + CustomInit(); + } /// /// Initializes a new instance of the OptionalSubResource class. @@ -41,13 +40,19 @@ public OptionalSubResource() { } Id = id; Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets or sets resource name @@ -59,10 +64,7 @@ public OptionalSubResource() { } /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Page.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Page.cs index 5c30018559d3..f98b1be0f534 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Page.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Page.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -53,4 +53,3 @@ IEnumerator IEnumerable.GetEnumerator() } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Resource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Resource.cs index e153e3d244cc..e340c212af5a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Resource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Resource.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -31,7 +27,10 @@ public partial class Resource : IResource /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. @@ -48,25 +47,31 @@ public Resource() { } Type = type; Location = location; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets resource name /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets or sets resource location @@ -95,6 +100,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs index c4a0a2168102..8ecd5a7370cf 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class SasTokenInfo /// /// Initializes a new instance of the SasTokenInfo class. /// - public SasTokenInfo() { } + public SasTokenInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the SasTokenInfo class. @@ -37,16 +36,19 @@ public SasTokenInfo() { } public SasTokenInfo(string accessToken = default(string)) { AccessToken = accessToken; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the access token for the associated Azure Storage Container. /// [JsonProperty(PropertyName = "accessToken")] - public string AccessToken { get; protected set; } + public string AccessToken { get; private set; } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs index a2b61ffced3f..f3d919b0de86 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for SeverityTypes. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum SeverityTypes { [EnumMember(Value = "Warning")] @@ -41,5 +37,3 @@ public enum SeverityTypes UserWarning } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs index e4e8343b95e9..9b48d78d7cfb 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Azure Storage account information. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class StorageAccountInfo : SubResource { /// /// Initializes a new instance of the StorageAccountInfo class. /// - public StorageAccountInfo() { } + public StorageAccountInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the StorageAccountInfo class. @@ -47,8 +46,14 @@ public StorageAccountInfo() { } { AccessKey = accessKey; Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the access key associated with this Azure Storage /// account that will be used to connect to it. @@ -78,6 +83,3 @@ public override void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageContainer.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageContainer.cs index 172d13404637..f706f9cfd92d 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageContainer.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageContainer.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Azure Storage blob container information. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class StorageContainer { /// /// Initializes a new instance of the StorageContainer class. /// - public StorageContainer() { } + public StorageContainer() + { + CustomInit(); + } /// /// Initializes a new instance of the StorageContainer class. @@ -47,34 +46,37 @@ public StorageContainer() { } Id = id; Type = type; LastModifiedTime = lastModifiedTime; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name of the blob container. /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets the unique identifier of the blob container. /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets the type of the blob container. /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets the last modified time of the blob container. /// [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public System.DateTime? LastModifiedTime { get; protected set; } + public System.DateTime? LastModifiedTime { get; private set; } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SubResource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SubResource.cs index 3d4e6e092257..804b51494329 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SubResource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SubResource.cs @@ -2,22 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; - using Rest; using System.Linq; /// @@ -28,7 +24,10 @@ public partial class SubResource /// /// Initializes a new instance of the SubResource class. /// - public SubResource() { } + public SubResource() + { + CustomInit(); + } /// /// Initializes a new instance of the SubResource class. @@ -41,13 +40,19 @@ public SubResource() { } Id = id; Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets or sets resource name @@ -59,7 +64,7 @@ public SubResource() { } /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Validate the object. @@ -76,6 +81,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TierType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TierType.cs index af8eba74dd92..4357bbe2f597 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TierType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TierType.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for TierType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum TierType { [EnumMember(Value = "Consumption")] @@ -47,6 +43,3 @@ public enum TierType Commitment500000AUHours } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs index 0c1a9d6eb0dd..83bc8eaf3a5a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class TypeFieldInfo /// /// Initializes a new instance of the TypeFieldInfo class. /// - public TypeFieldInfo() { } + public TypeFieldInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the TypeFieldInfo class. @@ -35,8 +38,14 @@ public TypeFieldInfo() { } { Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the field associated with this type. /// @@ -51,4 +60,3 @@ public TypeFieldInfo() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs index f3fd66d1c700..b9a912108c70 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlAssembly : CatalogItem /// /// Initializes a new instance of the USqlAssembly class. /// - public USqlAssembly() { } + public USqlAssembly() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlAssembly class. @@ -54,8 +57,14 @@ public USqlAssembly() { } IsUserDefined = isUserDefined; Files = files; Dependencies = dependencies; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -102,4 +111,3 @@ public USqlAssembly() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs index fb55f0825685..c8fd133f8c2a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlAssemblyClr : CatalogItem /// /// Initializes a new instance of the USqlAssemblyClr class. /// - public USqlAssemblyClr() { } + public USqlAssemblyClr() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlAssemblyClr class. @@ -40,8 +43,14 @@ public USqlAssemblyClr() { } DatabaseName = databaseName; Name = name; ClrName = clrName; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -62,4 +71,3 @@ public USqlAssemblyClr() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs index 1db9044e51ea..f76df04dafa3 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlAssemblyDependencyInfo /// /// Initializes a new instance of the USqlAssemblyDependencyInfo class. /// - public USqlAssemblyDependencyInfo() { } + public USqlAssemblyDependencyInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlAssemblyDependencyInfo class. @@ -32,8 +35,14 @@ public USqlAssemblyDependencyInfo() { } public USqlAssemblyDependencyInfo(EntityId entityId = default(EntityId)) { EntityId = entityId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the EntityId of the dependency. /// @@ -42,4 +51,3 @@ public USqlAssemblyDependencyInfo() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs index fdc25eb1718b..1717ad06b1dc 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlAssemblyFileInfo /// /// Initializes a new instance of the USqlAssemblyFileInfo class. /// - public USqlAssemblyFileInfo() { } + public USqlAssemblyFileInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlAssemblyFileInfo class. @@ -39,8 +42,14 @@ public USqlAssemblyFileInfo() { } Type = type; OriginalPath = originalPath; ContentPath = contentPath; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the assembly file type. Possible values include: /// 'Assembly', 'Resource' @@ -62,4 +71,3 @@ public USqlAssemblyFileInfo() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlCredential.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlCredential.cs index 94ce076cea7c..17257c891398 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlCredential.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlCredential.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlCredential : CatalogItem /// /// Initializes a new instance of the USqlCredential class. /// - public USqlCredential() { } + public USqlCredential() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlCredential class. @@ -36,8 +39,14 @@ public USqlCredential() { } : base(computeAccountName, version) { Name = name; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the credential. /// @@ -46,4 +55,3 @@ public USqlCredential() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs index 5ebad403fe5e..db03865c0fad 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlDatabase : CatalogItem /// /// Initializes a new instance of the USqlDatabase class. /// - public USqlDatabase() { } + public USqlDatabase() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlDatabase class. @@ -36,8 +39,14 @@ public USqlDatabase() { } : base(computeAccountName, version) { Name = name; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -46,4 +55,3 @@ public USqlDatabase() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs index b62c5e9e89c4..163407cad26d 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlDirectedColumn /// /// Initializes a new instance of the USqlDirectedColumn class. /// - public USqlDirectedColumn() { } + public USqlDirectedColumn() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlDirectedColumn class. @@ -35,8 +38,14 @@ public USqlDirectedColumn() { } { Name = name; Descending = descending; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the index in the table. /// @@ -52,4 +61,3 @@ public USqlDirectedColumn() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs index b6a91daa02d7..9f618ebc2ab9 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlDistributionInfo /// /// Initializes a new instance of the USqlDistributionInfo class. /// - public USqlDistributionInfo() { } + public USqlDistributionInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlDistributionInfo class. @@ -43,8 +46,14 @@ public USqlDistributionInfo() { } Keys = keys; Count = count; DynamicCount = dynamicCount; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the type of this distribution. /// @@ -71,4 +80,3 @@ public USqlDistributionInfo() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs index f27dd7ade491..812822914932 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlExternalDataSource : CatalogItem /// /// Initializes a new instance of the USqlExternalDataSource class. /// - public USqlExternalDataSource() { } + public USqlExternalDataSource() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlExternalDataSource class. @@ -49,8 +52,14 @@ public USqlExternalDataSource() { } Provider = provider; ProviderString = providerString; PushdownTypes = pushdownTypes; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -85,4 +94,3 @@ public USqlExternalDataSource() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlIndex.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlIndex.cs index 500776179476..22e0e7fdc987 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlIndex.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlIndex.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlIndex /// /// Initializes a new instance of the USqlIndex class. /// - public USqlIndex() { } + public USqlIndex() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlIndex class. @@ -60,8 +63,14 @@ public USqlIndex() { } IsColumnstore = isColumnstore; IndexId = indexId; IsUnique = isUnique; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the index in the table. /// @@ -126,4 +135,3 @@ public USqlIndex() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs index fe209c0de8ef..88a13fe2cc9c 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -30,7 +26,10 @@ public partial class USqlJobProperties : JobProperties /// /// Initializes a new instance of the USqlJobProperties class. /// - public USqlJobProperties() { } + public USqlJobProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlJobProperties class. @@ -89,8 +88,14 @@ public USqlJobProperties() { } YarnApplicationId = yarnApplicationId; YarnApplicationTimeStamp = yarnApplicationTimeStamp; CompileMode = compileMode; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the list of resources that are required by the job /// @@ -119,35 +124,35 @@ public USqlJobProperties() { } /// Gets the algebra file path after the job has completed /// [JsonProperty(PropertyName = "algebraFilePath")] - public string AlgebraFilePath { get; protected set; } + public string AlgebraFilePath { get; private set; } /// /// Gets the total time this job spent compiling. This value should not /// be set by the user and will be ignored if it is. /// [JsonProperty(PropertyName = "totalCompilationTime")] - public System.TimeSpan? TotalCompilationTime { get; protected set; } + public System.TimeSpan? TotalCompilationTime { get; private set; } /// /// Gets the total time this job spent paused. This value should not be /// set by the user and will be ignored if it is. /// [JsonProperty(PropertyName = "totalPauseTime")] - public System.TimeSpan? TotalPauseTime { get; protected set; } + public System.TimeSpan? TotalPauseTime { get; private set; } /// /// Gets the total time this job spent queued. This value should not be /// set by the user and will be ignored if it is. /// [JsonProperty(PropertyName = "totalQueuedTime")] - public System.TimeSpan? TotalQueuedTime { get; protected set; } + public System.TimeSpan? TotalQueuedTime { get; private set; } /// /// Gets the total time this job spent executing. This value should not /// be set by the user and will be ignored if it is. /// [JsonProperty(PropertyName = "totalRunningTime")] - public System.TimeSpan? TotalRunningTime { get; protected set; } + public System.TimeSpan? TotalRunningTime { get; private set; } /// /// Gets the ID used to identify the job manager coordinating job @@ -155,7 +160,7 @@ public USqlJobProperties() { } /// ignored if it is. /// [JsonProperty(PropertyName = "rootProcessNodeId")] - public string RootProcessNodeId { get; protected set; } + public string RootProcessNodeId { get; private set; } /// /// Gets the ID used to identify the yarn application executing the @@ -163,7 +168,7 @@ public USqlJobProperties() { } /// if it is. /// [JsonProperty(PropertyName = "yarnApplicationId")] - public string YarnApplicationId { get; protected set; } + public string YarnApplicationId { get; private set; } /// /// Gets the timestamp (in ticks) for the yarn application executing @@ -171,7 +176,7 @@ public USqlJobProperties() { } /// ignored if it is. /// [JsonProperty(PropertyName = "yarnApplicationTimeStamp")] - public long? YarnApplicationTimeStamp { get; protected set; } + public long? YarnApplicationTimeStamp { get; private set; } /// /// Gets or sets optionally enforces a specific compilation mode for @@ -194,5 +199,3 @@ public override void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs index 6fff898fb7a5..95da5f0fced7 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlProcedure : CatalogItem /// /// Initializes a new instance of the USqlProcedure class. /// - public USqlProcedure() { } + public USqlProcedure() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlProcedure class. @@ -44,8 +47,14 @@ public USqlProcedure() { } SchemaName = schemaName; Name = name; Definition = definition; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -73,4 +82,3 @@ public USqlProcedure() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSchema.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSchema.cs index 735f78850778..b016dcafaa48 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSchema.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSchema.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlSchema : CatalogItem /// /// Initializes a new instance of the USqlSchema class. /// - public USqlSchema() { } + public USqlSchema() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlSchema class. @@ -38,8 +41,14 @@ public USqlSchema() { } { DatabaseName = databaseName; Name = name; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -54,4 +63,3 @@ public USqlSchema() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSecret.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSecret.cs index 6a4936c7a5de..a0886ccff47d 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSecret.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSecret.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlSecret : CatalogItem /// /// Initializes a new instance of the USqlSecret class. /// - public USqlSecret() { } + public USqlSecret() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlSecret class. @@ -48,8 +51,14 @@ public USqlSecret() { } CreationTime = creationTime; Uri = uri; Password = password; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -84,4 +93,3 @@ public USqlSecret() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTable.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTable.cs index 163bba24e0a9..8d0e600f1394 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTable.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTable.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlTable : CatalogItem /// /// Initializes a new instance of the USqlTable class. /// - public USqlTable() { } + public USqlTable() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTable class. @@ -56,8 +59,14 @@ public USqlTable() { } PartitionKeyList = partitionKeyList; ExternalTable = externalTable; DistributionInfo = distributionInfo; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -109,4 +118,3 @@ public USqlTable() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs index 2278919bcc67..cd413e301eed 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlTableColumn /// /// Initializes a new instance of the USqlTableColumn class. /// - public USqlTableColumn() { } + public USqlTableColumn() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTableColumn class. @@ -35,8 +38,14 @@ public USqlTableColumn() { } { Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the column in the table. /// @@ -52,4 +61,3 @@ public USqlTableColumn() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs index 32cc4fc4fe1f..8f46302e177e 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlTablePartition : CatalogItem /// /// Initializes a new instance of the USqlTablePartition class. /// - public USqlTablePartition() { } + public USqlTablePartition() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTablePartition class. @@ -53,8 +56,14 @@ public USqlTablePartition() { } IndexId = indexId; Label = label; CreateDate = createDate; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -100,4 +109,3 @@ public USqlTablePartition() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs index 6f63c8206d35..5134e1dbc8fe 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlTableStatistics : CatalogItem /// /// Initializes a new instance of the USqlTableStatistics class. /// - public USqlTableStatistics() { } + public USqlTableStatistics() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTableStatistics class. @@ -70,8 +73,14 @@ public USqlTableStatistics() { } HasFilter = hasFilter; FilterDefinition = filterDefinition; ColNames = colNames; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -157,4 +166,3 @@ public USqlTableStatistics() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableType.cs index e69cce834cb6..f1fb6ad1a4c6 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlTableType : USqlType /// /// Initializes a new instance of the USqlTableType class. /// - public USqlTableType() { } + public USqlTableType() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTableType class. @@ -62,14 +65,19 @@ public USqlTableType() { } : base(computeAccountName, version, databaseName, schemaName, name, typeFamily, cSharpName, fullCSharpName, systemTypeId, userTypeId, schemaId, principalId, isNullable, isUserDefined, isAssemblyType, isTableType, isComplexType) { Columns = columns; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the type field information associated with this table type. /// [JsonProperty(PropertyName = "columns")] - public IList Columns { get; protected set; } + public IList Columns { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs index c21450a0a619..027687b5c5ae 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlTableValuedFunction : CatalogItem /// /// Initializes a new instance of the USqlTableValuedFunction class. /// - public USqlTableValuedFunction() { } + public USqlTableValuedFunction() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTableValuedFunction class. @@ -44,8 +47,14 @@ public USqlTableValuedFunction() { } SchemaName = schemaName; Name = name; Definition = definition; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -72,4 +81,3 @@ public USqlTableValuedFunction() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlType.cs index bd5457dc19da..2870a1c8ffd3 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlType : CatalogItem /// /// Initializes a new instance of the USqlType class. /// - public USqlType() { } + public USqlType() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlType class. @@ -72,8 +75,14 @@ public USqlType() { } IsAssemblyType = isAssemblyType; IsTableType = isTableType; IsComplexType = isComplexType; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -171,4 +180,3 @@ public USqlType() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlView.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlView.cs index 212efe8bdd3a..f4ab1ed2ac2c 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlView.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlView.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlView : CatalogItem /// /// Initializes a new instance of the USqlView class. /// - public USqlView() { } + public USqlView() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlView class. @@ -43,8 +46,14 @@ public USqlView() { } SchemaName = schemaName; Name = name; Definition = definition; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -72,4 +81,3 @@ public USqlView() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs index 06ca7b3f0c25..e536976ef0f6 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs @@ -2,36 +2,35 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Data Lake Analytics firewall rule update parameters /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class UpdateFirewallRuleParameters { /// /// Initializes a new instance of the UpdateFirewallRuleParameters /// class. /// - public UpdateFirewallRuleParameters() { } + public UpdateFirewallRuleParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the UpdateFirewallRuleParameters @@ -47,8 +46,14 @@ public UpdateFirewallRuleParameters() { } { StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the start IP address for the firewall rule. This can /// be either ipv4 or ipv6. Start and End should be in the same @@ -66,6 +71,3 @@ public UpdateFirewallRuleParameters() { } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs index 1da419c17630..189afc56b628 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs @@ -2,37 +2,36 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Storage account parameters for a storage account being updated in a /// Data Lake Analytics account. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class UpdateStorageAccountParameters { /// /// Initializes a new instance of the UpdateStorageAccountParameters /// class. /// - public UpdateStorageAccountParameters() { } + public UpdateStorageAccountParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the UpdateStorageAccountParameters @@ -46,8 +45,14 @@ public UpdateStorageAccountParameters() { } { AccessKey = accessKey; Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the updated access key associated with this Azure /// Storage account that will be used to connect to it. @@ -63,6 +68,3 @@ public UpdateStorageAccountParameters() { } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs index 13854435e61e..35d1c698ff7f 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -143,9 +140,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -160,6 +157,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -207,7 +206,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -244,7 +243,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -346,9 +345,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -363,6 +362,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -400,11 +401,19 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -527,9 +536,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -544,6 +553,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -561,7 +572,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -587,11 +598,19 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -723,9 +742,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -740,6 +759,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -757,7 +778,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -783,11 +804,19 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -919,9 +948,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -936,6 +965,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -983,7 +1014,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1020,7 +1051,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1126,9 +1157,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1143,6 +1174,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1190,7 +1223,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1227,7 +1260,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1343,9 +1376,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1360,6 +1393,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1407,7 +1442,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1444,7 +1479,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1572,9 +1607,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1589,6 +1624,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1636,7 +1673,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1673,7 +1710,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1745,9 +1782,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1762,6 +1799,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1809,7 +1848,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1846,7 +1885,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1917,9 +1956,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1934,6 +1973,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1981,7 +2022,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2018,7 +2059,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2090,9 +2131,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2107,6 +2148,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2154,7 +2197,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2191,7 +2234,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2210,6 +2253,3 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs index f11e7147b021..0a5487f4c8c3 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -124,7 +121,7 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// public static async Task DeleteAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -179,7 +176,7 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// public static async Task UpdateAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.UpdateWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -236,7 +233,7 @@ public static void Add(this IStorageAccountsOperations operations, string resour /// public static async Task AddAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -445,7 +442,7 @@ public static IPage ListSasTokens(this IStorageAccountsOperations /// public static IPage ListByAccount(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { - return operations.ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult(); + return ((IStorageAccountsOperations)operations).ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult(); } /// @@ -601,6 +598,3 @@ public static IPage ListByAccountNext(this IStorageAccountsO } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs index 3f0ac6c2def7..915f8ff75d15 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Data Lake Analytics management operations including account, catalog and job management.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/generate.cmd b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/generate.cmd index 18d90ebf23b3..b8ff9298672b 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/generate.cmd +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/generate.cmd @@ -5,20 +5,18 @@ @echo off setlocal -set autoRestVersion=1.0.0-Nightly20170104 -set source=-Source https://www.myget.org/F/autorest/api/v2 -set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-analytics/account/2016-11-01/swagger/account.json" -set jobSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-analytics/job/2016-11-01/swagger/job.json" -set catalogSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-analytics/catalog/2016-11-01/swagger/catalog.json" +set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-analytics/account/2016-11-01/swagger/account.json" +set jobSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-analytics/job/2016-11-01/swagger/job.json" +set catalogSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-analytics/catalog/2016-11-01/swagger/catalog.json" set repoRoot=%~dp0..\..\..\.. set generateFolder=%~dp0Generated if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %accountSpecFile% Microsoft.Azure.Management.DataLake.Analytics %autoRestVersion% %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %jobSpecFile% Microsoft.Azure.Management.DataLake.Analytics %autoRestVersion% %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %catalogSpecFile% Microsoft.Azure.Management.DataLake.Analytics %autoRestVersion% %generateFolder% +call autorest --latest -CodeGenerator Azure.CSharp -Input %accountSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Analytics -outputDirectory %generateFolder% -Header MICROSOFT_MIT +call autorest --latest -CodeGenerator Azure.CSharp -Input %jobSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Analytics -outputDirectory %generateFolder% -Header MICROSOFT_MIT +call autorest --latest -CodeGenerator Azure.CSharp -Input %catalogSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Analytics -outputDirectory %generateFolder% -Header MICROSOFT_MIT endlocal \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json index 4f2aa50bd7f2..700a7ec2886c 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0-preview", + "version": "2.1.1-preview", "description": "Provides Data Lake Analytics account, job and catalog management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/AccountOperationTests.cs b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/AccountOperationTests.cs index d115088a75e4..32673308078c 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/AccountOperationTests.cs +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/AccountOperationTests.cs @@ -208,7 +208,9 @@ public void FirewallAndTrustedProviderTest() Assert.Equal(firewallStart, responseGet.FirewallRules[0].StartIpAddress); Assert.Equal(firewallEnd, responseGet.FirewallRules[0].EndIpAddress); Assert.Equal(firewallRuleName1, responseGet.FirewallRules[0].Name); - Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps); + + // TODO: re-enable this once we support this in the server again. + // Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps); // validate trusted identity provider state Assert.Equal(TrustedIdProviderState.Enabled, responseGet.TrustedIdProviderState); diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/FileSystemOperationTests.cs b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/FileSystemOperationTests.cs index 2b9fefd28f26..f3a21769048d 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/FileSystemOperationTests.cs +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/FileSystemOperationTests.cs @@ -754,8 +754,8 @@ public void DataLakeStoreFileSystemGetAndSetAcl() using ( commonData.DataLakeStoreFileSystemClient = commonData.GetDataLakeStoreFileSystemManagementClient(context)) { - var currentAcl = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/"); + var currentAcl = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")); var originalPermission = currentAcl.AclStatus.Permission; var aclToReplaceWith = new List(currentAcl.AclStatus.Entries); var originalOther = string.Empty; @@ -778,9 +778,9 @@ public void DataLakeStoreFileSystemGetAndSetAcl() "/", string.Join(",", aclToReplaceWith)); - var newAcl = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/"); - + var newAcl = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")); + // verify the ACL actually changed // Check the access first and assert that it returns OK (note: this is currently only for the user making the request, so it is not testing "other") commonData.DataLakeStoreFileSystemClient.FileSystem.CheckAccess( @@ -803,8 +803,8 @@ public void DataLakeStoreFileSystemGetAndSetAcl() originalOther); // Now confirm that it equals the original ACL - var finalAclStatus = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/") + var finalAclStatus = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")) .AclStatus; var finalEntries = finalAclStatus.Entries; foreach (var entry in finalEntries) @@ -893,8 +893,8 @@ public void DataLakeStoreFileSystemGetAcl() commonData = new CommonTestFixture(context); using (commonData.DataLakeStoreFileSystemClient = commonData.GetDataLakeStoreFileSystemManagementClient(context)) { - var aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/"); + var aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); @@ -912,9 +912,9 @@ public void DataLakeStoreFileSystemSetAcl() commonData = new CommonTestFixture(context); using (commonData.DataLakeStoreFileSystemClient = commonData.GetDataLakeStoreFileSystemManagementClient(context)) { - var aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + var aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( commonData.DataLakeStoreFileSystemAccountName, - "/"); + "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); @@ -930,13 +930,13 @@ public void DataLakeStoreFileSystemSetAcl() newAcls); // retrieve the ACL again and confirm the new entry is present - aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/"); + aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); - // this is plus two because we do not have a mask until we add a specific user. Adding the specific user also adds the mask. - Assert.Equal(currentCount + 2, aclGetResponse.AclStatus.Entries.Count); + + Assert.Equal(currentCount + 1, aclGetResponse.AclStatus.Entries.Count); Assert.True(aclGetResponse.AclStatus.Entries.Any(entry => entry.Contains(commonData.AclUserId))); } } @@ -950,9 +950,9 @@ public void DataLakeStoreFileSystemSetDeleteAclEntry() commonData = new CommonTestFixture(context); using (commonData.DataLakeStoreFileSystemClient = commonData.GetDataLakeStoreFileSystemManagementClient(context)) { - var aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + var aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( commonData.DataLakeStoreFileSystemAccountName, - "/"); + "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); @@ -967,15 +967,14 @@ public void DataLakeStoreFileSystemSetDeleteAclEntry() newAce); // retrieve the ACL again and confirm the new entry is present - aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( commonData.DataLakeStoreFileSystemAccountName, - "/"); + "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); - // Mask gets created as part of adding the user. - Assert.Equal(currentCount + 2, aclGetResponse.AclStatus.Entries.Count); + Assert.Equal(currentCount + 1, aclGetResponse.AclStatus.Entries.Count); Assert.True(aclGetResponse.AclStatus.Entries.Any(entry => entry.Contains(commonData.AclUserId))); // now remove the entry @@ -985,16 +984,15 @@ public void DataLakeStoreFileSystemSetDeleteAclEntry() "/", aceToRemove); - // retrieve the ACL again and confirm the new entry is present - aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + // retrieve the ACL again and confirm the new entry is gone + aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( commonData.DataLakeStoreFileSystemAccountName, - "/"); + "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); - // Mask does not get removed when the user is removed. - Assert.Equal(currentCount + 1, aclGetResponse.AclStatus.Entries.Count); + Assert.Equal(currentCount, aclGetResponse.AclStatus.Entries.Count); Assert.False(aclGetResponse.AclStatus.Entries.Any(entry => entry.Contains(commonData.AclUserId))); } } @@ -1079,6 +1077,40 @@ public void DataLakeStoreDownloadUploadFileAndFolder() #endregion #region helpers + internal AclStatusResult GetFullAcl(AclStatusResult acl) + { + if(acl.AclStatus.Entries != null && acl.AclStatus.Permission.HasValue && acl.AclStatus.Permission.Value.ToString().Length >= 3) + { + var permissionString = acl.AclStatus.Permission.Value.ToString(); + var permissionLength = permissionString.Length; + var ownerOctal = permissionString.ElementAt(permissionLength - 3).ToString(); + var groupOctal = permissionString.ElementAt(permissionLength - 2).ToString(); + var otherOctal = permissionString.ElementAt(permissionLength - 1).ToString(); + + acl.AclStatus.Entries.Add(string.Format("user::{0}", octalToPermission(int.Parse(ownerOctal)))); + acl.AclStatus.Entries.Add(string.Format("other::{0}", octalToPermission(int.Parse(otherOctal)))); + + if (!string.IsNullOrEmpty(acl.AclStatus.Entries.First(e => e.StartsWith("group::")))) + { + acl.AclStatus.Entries.Add(string.Format("mask::{0}", octalToPermission(int.Parse(groupOctal)))); + } + else + { + acl.AclStatus.Entries.Add(string.Format("group::{0}", octalToPermission(int.Parse(groupOctal)))); + } + } + + return acl; + } + + private string octalToPermission(int octal) + { + return string.Format("{0}{1}{2}", + (octal & 4) > 0 ? "r" : "-", + (octal & 2) > 0 ? "w" : "-", + (octal & 1) > 0 ? "x" : "-"); + } + internal string CreateFolder(DataLakeStoreFileSystemManagementClient dataLakeStoreFileSystemClient, string caboAccountName, bool randomName = false) { // Create a folder diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json index 8b6abf7e1531..5a42e9818a61 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d978108-b97a-42d4-94c7-d281d9712cd9" + "d2841bf1-d3bd-4954-afbb-77a77d204388" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +28,14 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:35 GMT" + "Mon, 27 Mar 2017 18:00:58 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +43,13 @@ "1199" ], "x-ms-request-id": [ - "f1ca3e36-4f66-4c26-9c7e-4bedc6c50522" + "5790755b-8cac-48c4-b0e3-8b1faf2db3c5" ], "x-ms-correlation-request-id": [ - "f1ca3e36-4f66-4c26-9c7e-4bedc6c50522" + "5790755b-8cac-48c4-b0e3-8b1faf2db3c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193036Z:f1ca3e36-4f66-4c26-9c7e-4bedc6c50522" + "WESTUS2:20170327T180059Z:5790755b-8cac-48c4-b0e3-8b1faf2db3c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5d16d18-29f0-4778-bcef-a976d43e8910" + "9f407e5e-4363-45ce-80e5-c390c02881b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:35 GMT" + "Mon, 27 Mar 2017 18:00:58 GMT" ], "Pragma": [ "no-cache" @@ -96,13 +97,13 @@ "14999" ], "x-ms-request-id": [ - "aed67705-bf79-4af1-acc7-a166aff45a82" + "de491c4f-2bfb-4f78-9900-8c9adf259da1" ], "x-ms-correlation-request-id": [ - "aed67705-bf79-4af1-acc7-a166aff45a82" + "de491c4f-2bfb-4f78-9900-8c9adf259da1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193036Z:aed67705-bf79-4af1-acc7-a166aff45a82" + "WESTUS2:20170327T180059Z:de491c4f-2bfb-4f78-9900-8c9adf259da1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "445d6aef-8de6-48ad-9cae-5b5b6f31651b" + "e1e04682-bb40-4754-b5ac-5363b608a02f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,11 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:36 GMT" + "Mon, 27 Mar 2017 18:00:59 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -151,13 +154,13 @@ "1198" ], "x-ms-request-id": [ - "f48e47b5-a250-4bcc-ab29-ed3a89fef063" + "a996e81e-cbbd-4563-9d6c-af99e8cb8df0" ], "x-ms-correlation-request-id": [ - "f48e47b5-a250-4bcc-ab29-ed3a89fef063" + "a996e81e-cbbd-4563-9d6c-af99e8cb8df0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193037Z:f48e47b5-a250-4bcc-ab29-ed3a89fef063" + "WESTUS2:20170327T180059Z:a996e81e-cbbd-4563-9d6c-af99e8cb8df0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12754544-ac08-49a1-998a-bc3827c5dfdb" + "b3499f82-eed4-4397-bae6-7a32f57537b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:36 GMT" + "Mon, 27 Mar 2017 18:00:59 GMT" ], "Pragma": [ "no-cache" @@ -206,13 +208,13 @@ "14998" ], "x-ms-request-id": [ - "ed869635-7b32-4742-87a4-7cd01f4bd2d6" + "f1dac4ba-a39e-4bd3-87b3-0b547274d862" ], "x-ms-correlation-request-id": [ - "ed869635-7b32-4742-87a4-7cd01f4bd2d6" + "f1dac4ba-a39e-4bd3-87b3-0b547274d862" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193037Z:ed869635-7b32-4742-87a4-7cd01f4bd2d6" + "WESTUS2:20170327T180059Z:f1dac4ba-a39e-4bd3-87b3-0b547274d862" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "485cdc8d-6daa-4ddb-b487-518fc99a6149" + "da9f46bc-f166-48f9-8d60-e57bb2413b8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14884' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17619' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:36 GMT" + "Mon, 27 Mar 2017 18:00:59 GMT" ], "Pragma": [ "no-cache" @@ -264,13 +265,13 @@ "14997" ], "x-ms-request-id": [ - "e25001fa-efc1-4edf-afba-865b9a2bfcd0" + "52a6e7c6-dbb5-4703-a051-1997d7bbda26" ], "x-ms-correlation-request-id": [ - "e25001fa-efc1-4edf-afba-865b9a2bfcd0" + "52a6e7c6-dbb5-4703-a051-1997d7bbda26" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193037Z:e25001fa-efc1-4edf-afba-865b9a2bfcd0" + "WESTUS2:20170327T180059Z:52a6e7c6-dbb5-4703-a051-1997d7bbda26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "534a9101-5f79-4d78-8be2-9df238128233" + "2a88839b-cf45-48be-a9e8-f10373b300d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884\",\r\n \"name\": \"datalakerg14884\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619\",\r\n \"name\": \"datalakerg17619\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:38 GMT" + "Mon, 27 Mar 2017 18:01:00 GMT" ], "Pragma": [ "no-cache" @@ -319,13 +319,13 @@ "14996" ], "x-ms-request-id": [ - "85d80d76-563f-4cb5-84cf-d19e8988eccc" + "7750e254-e571-4755-8b08-e52a7872118f" ], "x-ms-correlation-request-id": [ - "85d80d76-563f-4cb5-84cf-d19e8988eccc" + "7750e254-e571-4755-8b08-e52a7872118f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193038Z:85d80d76-563f-4cb5-84cf-d19e8988eccc" + "WESTUS2:20170327T180101Z:7750e254-e571-4755-8b08-e52a7872118f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "ab38462f-be55-4795-b528-9af0ec30dd63" + "89f779e4-b4a8-49c4-b243-e8876049ec38" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884\",\r\n \"name\": \"datalakerg14884\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619\",\r\n \"name\": \"datalakerg17619\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,7 +370,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:38 GMT" + "Mon, 27 Mar 2017 18:01:00 GMT" ], "Pragma": [ "no-cache" @@ -380,13 +379,13 @@ "1197" ], "x-ms-request-id": [ - "ce7a6836-3505-45f5-aba7-8ec63be85607" + "5ad73921-40ad-4df2-8674-f5c278413b08" ], "x-ms-correlation-request-id": [ - "ce7a6836-3505-45f5-aba7-8ec63be85607" + "5ad73921-40ad-4df2-8674-f5c278413b08" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193038Z:ce7a6836-3505-45f5-aba7-8ec63be85607" + "WESTUS2:20170327T180101Z:5ad73921-40ad-4df2-8674-f5c278413b08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxMTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7745a697-8336-4ce8-9712-85eb5a502883" + "4f4ee931-0136-4ced-9044-ed9a80f4d4bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18112' under resource group 'datalakerg14884' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13480' under resource group 'datalakerg17619' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:38 GMT" + "Mon, 27 Mar 2017 18:01:00 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "02022dc5-558a-4e09-809b-140a3f96a38b" + "fa9f5b97-933f-43f5-8237-cede9d3feaa8" ], "x-ms-correlation-request-id": [ - "02022dc5-558a-4e09-809b-140a3f96a38b" + "fa9f5b97-933f-43f5-8237-cede9d3feaa8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193039Z:02022dc5-558a-4e09-809b-140a3f96a38b" + "WESTUS2:20170327T180101Z:fa9f5b97-933f-43f5-8237-cede9d3feaa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxMTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18112.azuredatalakestore.net\",\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": \"2017-01-05T19:30:41.9389286Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:30:41.9389286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13480.azuredatalakestore.net\",\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": \"2017-03-27T18:01:04.4120409Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:04.4120409Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:11 GMT" + "Mon, 27 Mar 2017 18:01:34 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c1c65191-98ad-485a-92af-005d0bea82f8" + "1cb3e6ef-82cf-431d-a4bf-105492d16f76" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "38ff44bb-0132-46f6-8eac-66a05c266f7b" + "0294e10d-fe5e-4dae-bb1a-2cce8d10f3fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193112Z:38ff44bb-0132-46f6-8eac-66a05c266f7b" + "WESTUS2:20170327T180134Z:0294e10d-fe5e-4dae-bb1a-2cce8d10f3fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxMTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c7a0d75-3ffe-4721-80e6-a32ef292a21c" + "8c0ab110-739c-4a22-ad6d-d4240f9ff9e2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18112.azuredatalakestore.net\",\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": \"2017-01-05T19:30:41.9389286Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:30:41.9389286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13480.azuredatalakestore.net\",\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": \"2017-03-27T18:01:04.4120409Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:04.4120409Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:12 GMT" + "Mon, 27 Mar 2017 18:01:35 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2e30cdc2-7909-489e-942b-431369a4bef6" + "6ef52bfc-5305-4016-9f49-a04369cd0f48" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "df6918c6-32a0-42dd-8f91-641cc8bac2b9" + "2a61c508-02d8-4938-b833-e26f2fe9d57c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193112Z:df6918c6-32a0-42dd-8f91-641cc8bac2b9" + "WESTUS2:20170327T180135Z:2a61c508-02d8-4938-b833-e26f2fe9d57c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxMTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "c2f502d6-8732-47d6-bf19-a0bf69d7392b" + "f45db8dd-4441-449e-831f-ffd32897e079" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:30:40 GMT" + "Mon, 27 Mar 2017 18:01:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e4494184-ec85-4dcb-abe6-cfd91bbfce4c0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/392675f4-5e09-47cf-a608-ac2950e140980?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "455b8166-b54b-4a4b-bb9c-3f8c9ee2f19a" + "6ab89eb4-d5f9-4cca-bacf-dcca5c44a0ce" ], "X-Content-Type-Options": [ "nosniff" @@ -657,10 +652,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "10b59677-9923-4585-bcf7-e7a30af3e372" + "3e84f7c2-4edb-4fb2-abe0-404f7e4906ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193041Z:10b59677-9923-4585-bcf7-e7a30af3e372" + "WESTUS2:20170327T180103Z:3e84f7c2-4edb-4fb2-abe0-404f7e4906ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e4494184-ec85-4dcb-abe6-cfd91bbfce4c0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U0NDk0MTg0LWVjODUtNGRjYi1hYmU2LWNmZDkxYmJmY2U0YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/392675f4-5e09-47cf-a608-ac2950e140980?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM5MjY3NWY0LTVlMDktNDdjZi1hNjA4LWFjMjk1MGUxNDA5ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:11 GMT" + "Mon, 27 Mar 2017 18:01:33 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "298bb52f-c7ae-4cec-85eb-873a15557d0f" + "ce16d64f-0f17-42b9-a367-43d12b776507" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "d369e05d-8b3e-44d1-9bfe-234e6cfe809d" + "19383664-4487-457d-9c79-86d8087924a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193111Z:d369e05d-8b3e-44d1-9bfe-234e6cfe809d" + "WESTUS2:20170327T180134Z:19383664-4487-457d-9c79-86d8087924a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"newTier\": \"Commitment_1TB\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", "RequestHeaders": { @@ -745,17 +739,16 @@ "291" ], "x-ms-client-request-id": [ - "41ec21ef-46da-4580-9ae6-54271b889d38" + "200bb8e3-6add-4d63-a77c-daa70620b895" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "685" @@ -773,13 +766,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:17 GMT" + "Mon, 27 Mar 2017 18:01:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -788,10 +781,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f9aa9643-9847-4383-923d-38fa3e06adfb0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bf663b75-34bb-449a-b8dc-e09fd59361fe0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "e20c7303-b601-480a-9194-269cb8adc053" + "3517bd9a-5d7a-4178-9ca6-9cb6bf914141" ], "X-Content-Type-Options": [ "nosniff" @@ -803,13 +796,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "861a9e81-a030-4d60-9905-111c1697850d" + "52dbb320-3308-4e45-b461-e689b0c6a0aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193117Z:861a9e81-a030-4d60-9905-111c1697850d" + "WESTUS2:20170327T180140Z:52dbb320-3308-4e45-b461-e689b0c6a0aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -818,14 +811,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f9aa9643-9847-4383-923d-38fa3e06adfb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2Y5YWE5NjQzLTk4NDctNDM4My05MjNkLTM4ZmEzZTA2YWRmYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bf663b75-34bb-449a-b8dc-e09fd59361fe0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JmNjYzYjc1LTM0YmItNDQ5YS1iOGRjLWUwOWZkNTkzNjFmZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -843,7 +835,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:48 GMT" + "Mon, 27 Mar 2017 18:02:10 GMT" ], "Pragma": [ "no-cache" @@ -855,7 +847,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "254999d6-99e5-48c6-ac28-4ffbadece799" + "b8b5f004-14ac-4767-b505-d3b8fe9592ca" ], "X-Content-Type-Options": [ "nosniff" @@ -867,13 +859,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "794a1fd7-c0b6-4212-badd-32868b1faa00" + "b1e3b269-ab21-40b8-8f5c-66ca2f0966d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193148Z:794a1fd7-c0b6-4212-badd-32868b1faa00" + "WESTUS2:20170327T180211Z:b1e3b269-ab21-40b8-8f5c-66ca2f0966d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -882,17 +874,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:18.1798824Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"42d11224-35d4-4315-ae7f-fb36184f38ed\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:39.8583284Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2addbc3-cbdf-4918-9ec8-68140c572e27\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -907,7 +898,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:48 GMT" + "Mon, 27 Mar 2017 18:02:11 GMT" ], "Pragma": [ "no-cache" @@ -919,7 +910,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ed6ef16d-808d-492f-970e-b8e164ef3c77" + "3ee00e2f-a6b8-4999-8243-5580e504e8ce" ], "X-Content-Type-Options": [ "nosniff" @@ -931,13 +922,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "245fe985-9bb3-4f19-ad2d-fc207ab0f0f5" + "6f537ebc-ac13-46c7-913e-9ee580712d30" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193149Z:245fe985-9bb3-4f19-ad2d-fc207ab0f0f5" + "WESTUS2:20170327T180211Z:6f537ebc-ac13-46c7-913e-9ee580712d30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -946,23 +937,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fb9bf63-9b70-4d30-a2a9-665842cc45e9" + "ba861eab-6dde-4b9b-950b-ddf84b9eef06" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:18.1798824Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"42d11224-35d4-4315-ae7f-fb36184f38ed\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:39.8583284Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2addbc3-cbdf-4918-9ec8-68140c572e27\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -977,7 +967,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:48 GMT" + "Mon, 27 Mar 2017 18:02:12 GMT" ], "Pragma": [ "no-cache" @@ -989,7 +979,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d1f63af6-776e-4e87-b47f-7b06d08f7e9d" + "bc3370d6-91bb-49ec-a4a2-3506b2f96864" ], "X-Content-Type-Options": [ "nosniff" @@ -1001,13 +991,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "6f6a65de-922a-411e-a16c-90b8e94133ca" + "73438196-65ef-49cd-8444-b2f4eb034449" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193149Z:6f6a65de-922a-411e-a16c-90b8e94133ca" + "WESTUS2:20170327T180212Z:73438196-65ef-49cd-8444-b2f4eb034449" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1016,23 +1006,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c0aa19a-6d71-40c5-8066-d469f5835e79" + "8ee32f38-b5be-4ed4-bd8a-75d99efd92fe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"42d11224-35d4-4315-ae7f-fb36184f38ed\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2addbc3-cbdf-4918-9ec8-68140c572e27\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1047,7 +1036,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:52 GMT" + "Mon, 27 Mar 2017 18:02:14 GMT" ], "Pragma": [ "no-cache" @@ -1059,7 +1048,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1725739-4d8b-4bcb-b180-1e1dcca944f3" + "760945ba-80b7-410b-a9c5-75360af9f0fa" ], "X-Content-Type-Options": [ "nosniff" @@ -1071,13 +1060,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "17495d17-b12e-4035-b3ac-419f463b81ee" + "bed32dd6-3a7b-488f-aad2-20bc1205d6bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193152Z:17495d17-b12e-4035-b3ac-419f463b81ee" + "WESTUS2:20170327T180214Z:bed32dd6-3a7b-488f-aad2-20bc1205d6bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,23 +1075,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab5a110c-4e27-455d-8754-e95df4a9a16d" + "d1cd5fbb-0ff1-47ef-8bdf-bdf35b2b366b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"42d11224-35d4-4315-ae7f-fb36184f38ed\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2addbc3-cbdf-4918-9ec8-68140c572e27\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1117,7 +1105,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:27 GMT" + "Mon, 27 Mar 2017 18:02:49 GMT" ], "Pragma": [ "no-cache" @@ -1129,7 +1117,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c60acba9-71fe-456b-967a-5752fbd619dd" + "2a0b8f76-3d1d-4f31-99eb-304149182d93" ], "X-Content-Type-Options": [ "nosniff" @@ -1141,13 +1129,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "68882c7f-1219-4c6f-89f5-45c258b72c5b" + "67a48e5f-1c2d-4bad-bfa7-971a25559edc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193227Z:68882c7f-1219-4c6f-89f5-45c258b72c5b" + "WESTUS2:20170327T180249Z:67a48e5f-1c2d-4bad-bfa7-971a25559edc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1156,23 +1144,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d3dd031-0839-4416-b8a2-190f2cd608dc" + "9f953422-0108-4610-9139-f4c3f3362adb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11517' under resource group 'datalakerg14884' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake13299' under resource group 'datalakerg17619' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -1187,7 +1174,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:32:31 GMT" + "Mon, 27 Mar 2017 18:02:51 GMT" ], "Pragma": [ "no-cache" @@ -1196,13 +1183,13 @@ "gateway" ], "x-ms-request-id": [ - "e421d0d9-662b-4938-825e-05a1d3cc7b00" + "4d27529b-a808-4d7b-a393-0e06baf142b6" ], "x-ms-correlation-request-id": [ - "e421d0d9-662b-4938-825e-05a1d3cc7b00" + "4d27529b-a808-4d7b-a393-0e06baf142b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193232Z:e421d0d9-662b-4938-825e-05a1d3cc7b00" + "WESTUS2:20170327T180252Z:4d27529b-a808-4d7b-a393-0e06baf142b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1211,8 +1198,8 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"properties\": {\r\n \"newTier\": \"Consumption\"\r\n }\r\n}", "RequestHeaders": { @@ -1223,17 +1210,16 @@ "111" ], "x-ms-client-request-id": [ - "3086dc98-b3d9-4981-84ea-f65c1e333ee8" + "85caa632-96a6-43eb-b823-e589e19d9a14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1248,7 +1234,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:51 GMT" + "Mon, 27 Mar 2017 18:02:13 GMT" ], "Pragma": [ "no-cache" @@ -1260,7 +1246,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c6598309-2786-4723-ae3d-9dcf64a4e272" + "b48c2a3b-356d-4c60-8b4f-0d151948fba8" ], "X-Content-Type-Options": [ "nosniff" @@ -1275,10 +1261,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "7e18c564-5d83-4776-9934-c7a94bc1c2bd" + "d8a4996e-6a3f-4f59-8069-6e78310d512c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193152Z:7e18c564-5d83-4776-9934-c7a94bc1c2bd" + "WESTUS2:20170327T180214Z:d8a4996e-6a3f-4f59-8069-6e78310d512c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1287,8 +1273,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTdhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTlhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1299,17 +1285,16 @@ "31" ], "x-ms-client-request-id": [ - "bfd8fb4f-9e57-45c8-9555-1b9d6b79182f" + "1e344f38-e3c5-4868-8407-502d2ad69d6f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3043c789-bee0-4d90-b7ca-916ec523f602\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2\",\r\n \"name\": \"testdatalake11517acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"04fff4d9-69f7-42ae-9813-250e8d5732d4\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2\",\r\n \"name\": \"testdatalake13299acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "436" @@ -1327,13 +1312,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:53 GMT" + "Mon, 27 Mar 2017 18:02:16 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1342,10 +1327,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3043c789-bee0-4d90-b7ca-916ec523f6020?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04fff4d9-69f7-42ae-9813-250e8d5732d40?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "3d7f9974-55e9-486e-a2a2-f760cb48d249" + "dd30c4ac-e2d9-4e8d-b6e2-e0503edf8822" ], "X-Content-Type-Options": [ "nosniff" @@ -1357,13 +1342,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "1a146718-b3fe-4d64-ae41-752c37d0f7fd" + "6349af4d-3342-43cb-85d0-a2c9120c5248" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193154Z:1a146718-b3fe-4d64-ae41-752c37d0f7fd" + "WESTUS2:20170327T180216Z:6349af4d-3342-43cb-85d0-a2c9120c5248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1372,14 +1357,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3043c789-bee0-4d90-b7ca-916ec523f6020?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzMwNDNjNzg5LWJlZTAtNGQ5MC1iN2NhLTkxNmVjNTIzZjYwMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04fff4d9-69f7-42ae-9813-250e8d5732d40?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzA0ZmZmNGQ5LTY5ZjctNDJhZS05ODEzLTI1MGU4ZDU3MzJkNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1397,7 +1381,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:25 GMT" + "Mon, 27 Mar 2017 18:02:47 GMT" ], "Pragma": [ "no-cache" @@ -1409,7 +1393,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "227d6fad-202d-4ecc-8955-a685b2ab05fe" + "e9b9d55c-43f9-4049-a924-4b319e890ed4" ], "X-Content-Type-Options": [ "nosniff" @@ -1421,13 +1405,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "64b07177-272a-4f9c-8ace-b3e61bcd077e" + "e8a11f24-3017-4a8f-8a29-6bc93d311051" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193225Z:64b07177-272a-4f9c-8ace-b3e61bcd077e" + "WESTUS2:20170327T180247Z:e8a11f24-3017-4a8f-8a29-6bc93d311051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,17 +1420,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTdhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTlhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517acct2.azuredatalakestore.net\",\r\n \"accountId\": \"3043c789-bee0-4d90-b7ca-916ec523f602\",\r\n \"creationTime\": \"2017-01-05T19:31:55.8333057Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:55.8333057Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2\",\r\n \"name\": \"testdatalake11517acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299acct2.azuredatalakestore.net\",\r\n \"accountId\": \"04fff4d9-69f7-42ae-9813-250e8d5732d4\",\r\n \"creationTime\": \"2017-03-27T18:02:17.437143Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:17.437143Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2\",\r\n \"name\": \"testdatalake13299acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1461,7 +1444,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:25 GMT" + "Mon, 27 Mar 2017 18:02:47 GMT" ], "Pragma": [ "no-cache" @@ -1473,7 +1456,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c39a275d-a3df-4a7c-afda-024c875addeb" + "607e3d6d-b69b-4087-8ace-91068676321b" ], "X-Content-Type-Options": [ "nosniff" @@ -1485,13 +1468,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "bb72f596-0551-4f2f-9b5f-7314d3636fdf" + "509f6b00-7c28-4d58-9f53-8983ef873ef4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193226Z:bb72f596-0551-4f2f-9b5f-7314d3636fdf" + "WESTUS2:20170327T180247Z:509f6b00-7c28-4d58-9f53-8983ef873ef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1506,17 +1489,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45b85d6e-5649-4dd8-9b97-2497f4c775f3" + "049128ae-a475-41f5-88d1-c65a47d0d553" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlspysample01.azuredatalakestore.net\",\r\n \"accountId\": \"f7a5c302-324f-4e8c-949a-9d9bd37d0560\",\r\n \"creationTime\": \"2016-09-07T18:13:56.9504562Z\",\r\n \"lastModifiedTime\": \"2016-09-07T18:13:56.9504562Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlpysamplerg01/providers/Microsoft.DataLakeStore/accounts/adlspysample01\",\r\n \"name\": \"adlspysample01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlstestencr01.azuredatalakestore.net\",\r\n \"accountId\": \"45bded0c-5881-42e9-9445-63d13ab0d82c\",\r\n \"creationTime\": \"2016-12-12T19:42:53.3419304Z\",\r\n \"lastModifiedTime\": \"2016-12-12T19:42:53.3419304Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlpysamplerg01/providers/Microsoft.DataLakeStore/accounts/adlstestencr01\",\r\n \"name\": \"adlstestencr01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlstestencr02.azuredatalakestore.net\",\r\n \"accountId\": \"8a71155f-8b78-48c7-a8c3-b0599f86ef2c\",\r\n \"creationTime\": \"2016-12-12T19:47:45.2039421Z\",\r\n \"lastModifiedTime\": \"2016-12-12T19:47:45.2039421Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlpysamplerg01/providers/Microsoft.DataLakeStore/accounts/adlstestencr02\",\r\n \"name\": \"adlstestencr02\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18112.azuredatalakestore.net\",\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": \"2017-01-05T19:30:41.9389286Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:30:41.9389286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517acct2.azuredatalakestore.net\",\r\n \"accountId\": \"3043c789-bee0-4d90-b7ca-916ec523f602\",\r\n \"creationTime\": \"2017-01-05T19:31:55.8333057Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:55.8333057Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2\",\r\n \"name\": \"testdatalake11517acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk630.azuredatalakestore.net\",\r\n \"accountId\": \"d95d0d83-cfa8-4d87-b766-13681c2db546\",\r\n \"creationTime\": \"2016-12-06T23:39:15.0079088Z\",\r\n \"lastModifiedTime\": \"2016-12-06T23:39:15.0079088Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1306/providers/Microsoft.DataLakeStore/accounts/onesdk630\",\r\n \"name\": \"onesdk630\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk5713.azuredatalakestore.net\",\r\n \"accountId\": \"fb99a4a6-2fa3-4a27-8217-a0922858076f\",\r\n \"creationTime\": \"2016-12-05T19:17:18.1599516Z\",\r\n \"lastModifiedTime\": \"2016-12-05T19:17:18.1599516Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk2693/providers/Microsoft.DataLakeStore/accounts/onesdk5713\",\r\n \"name\": \"onesdk5713\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"pyarmadlscd761330.azuredatalakestore.net\",\r\n \"accountId\": \"7b92abde-b1fe-4b5b-9f46-fae5adfc2e4d\",\r\n \"creationTime\": \"2016-11-10T21:44:51.2057522Z\",\r\n \"lastModifiedTime\": \"2016-11-10T21:44:51.2057522Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/test_mgmt_datalake_analytics_test_adla_accountscd761330/providers/Microsoft.DataLakeStore/accounts/pyarmadlscd761330\",\r\n \"name\": \"pyarmadlscd761330\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"pyarmadls5e621603.azuredatalakestore.net\",\r\n \"accountId\": \"e7bbd84b-76dc-4ca7-b24e-88fbe4ce36ad\",\r\n \"creationTime\": \"2016-11-10T19:31:45.3226661Z\",\r\n \"lastModifiedTime\": \"2016-11-10T19:31:45.3226661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/test_mgmt_datalake_analytics_test_adla_catalog_secrets5e621603/providers/Microsoft.DataLakeStore/accounts/pyarmadls5e621603\",\r\n \"name\": \"pyarmadls5e621603\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlspytest01.azuredatalakestore.net\",\r\n \"accountId\": \"b898aca7-703c-401c-a082-e4d642d1ab13\",\r\n \"creationTime\": \"2017-03-20T23:56:40.4922183Z\",\r\n \"lastModifiedTime\": \"2017-03-20T23:56:40.4922183Z\"\r\n },\r\n \"location\": \"east us2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlspytestrg01/providers/Microsoft.DataLakeStore/accounts/adlspytest01\",\r\n \"name\": \"adlspytest01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13480.azuredatalakestore.net\",\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": \"2017-03-27T18:01:04.4120409Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:04.4120409Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299acct2.azuredatalakestore.net\",\r\n \"accountId\": \"04fff4d9-69f7-42ae-9813-250e8d5732d4\",\r\n \"creationTime\": \"2017-03-27T18:02:17.437143Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:17.437143Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2\",\r\n \"name\": \"testdatalake13299acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlspyperf01.azuredatalakestore.net\",\r\n \"accountId\": \"e41d9d8b-9c52-4522-8df1-fd51a7658405\",\r\n \"creationTime\": \"2017-03-20T19:10:49.7339872Z\",\r\n \"lastModifiedTime\": \"2017-03-20T19:10:49.7339872Z\"\r\n },\r\n \"location\": \"east us2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/pytest01/providers/Microsoft.DataLakeStore/accounts/adlspyperf01\",\r\n \"name\": \"adlspyperf01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1531,7 +1513,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:26 GMT" + "Mon, 27 Mar 2017 18:02:48 GMT" ], "Pragma": [ "no-cache" @@ -1543,7 +1525,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cec7faba-c2b0-4d1b-8acb-6dd3e644d7b2" + "ff48ca25-3f8e-4c32-8d8e-3ab40e25bf8e" ], "X-Content-Type-Options": [ "nosniff" @@ -1555,13 +1537,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "8033a988-063d-4010-b26c-3e601bf8cf7a" + "1b432143-5e72-4eeb-96c0-dbb495d93601" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193226Z:8033a988-063d-4010-b26c-3e601bf8cf7a" + "WESTUS2:20170327T180248Z:1b432143-5e72-4eeb-96c0-dbb495d93601" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1570,23 +1552,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9d6a807-1efc-4225-b5b7-d286878fac07" + "e4d9ca1e-fe18-4f86-9517-6a172b3eb77f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18112.azuredatalakestore.net\",\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": \"2017-01-05T19:30:41.9389286Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:30:41.9389286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517acct2.azuredatalakestore.net\",\r\n \"accountId\": \"3043c789-bee0-4d90-b7ca-916ec523f602\",\r\n \"creationTime\": \"2017-01-05T19:31:55.8333057Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:55.8333057Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2\",\r\n \"name\": \"testdatalake11517acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13480.azuredatalakestore.net\",\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": \"2017-03-27T18:01:04.4120409Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:04.4120409Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299acct2.azuredatalakestore.net\",\r\n \"accountId\": \"04fff4d9-69f7-42ae-9813-250e8d5732d4\",\r\n \"creationTime\": \"2017-03-27T18:02:17.437143Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:17.437143Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2\",\r\n \"name\": \"testdatalake13299acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1601,7 +1582,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:27 GMT" + "Mon, 27 Mar 2017 18:02:48 GMT" ], "Pragma": [ "no-cache" @@ -1613,7 +1594,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f0023b7b-9510-468f-a786-32bdae879dca" + "c104fa84-d831-453f-8fcd-938c958a71f4" ], "X-Content-Type-Options": [ "nosniff" @@ -1625,13 +1606,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "740466ef-afa7-4baf-81e0-8e9b18fdb9a9" + "d789f7cc-a846-4a32-9dfe-a4aea3dbbfc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193227Z:740466ef-afa7-4baf-81e0-8e9b18fdb9a9" + "WESTUS2:20170327T180249Z:d789f7cc-a846-4a32-9dfe-a4aea3dbbfc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1640,20 +1621,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d211c9f-9c8f-445c-8e33-d513803c72d4" + "6a5f9fc5-b175-406b-99be-a34c50a2ce8e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1671,7 +1651,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:31 GMT" + "Mon, 27 Mar 2017 18:02:51 GMT" ], "Pragma": [ "no-cache" @@ -1680,7 +1660,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "ee083abb-15f6-4ddc-9e89-9242c6c17121" + "b47649b8-c078-4252-b970-146429b09aea" ], "X-AspNet-Version": [ "4.0.30319" @@ -1689,13 +1669,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "bd9241f9-5275-4b5c-beab-8881c00d5b69" + "edb87d6e-4f04-49b1-8803-13822b7510ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193231Z:bd9241f9-5275-4b5c-beab-8881c00d5b69" + "WESTUS2:20170327T180251Z:edb87d6e-4f04-49b1-8803-13822b7510ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,20 +1684,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25f204d0-4a61-409f-affd-deabe59e393f" + "b10171a5-9338-4a01-9e32-7f39d2afdffe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1729,22 +1708,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:32:31 GMT" + "Mon, 27 Mar 2017 18:02:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "7f8753bd-c637-4d2d-89cf-a36fb364a63c" + "1c39b39a-99d1-42a5-9dd8-8d7569b8e732" ], "x-ms-correlation-request-id": [ - "7f8753bd-c637-4d2d-89cf-a36fb364a63c" + "1c39b39a-99d1-42a5-9dd8-8d7569b8e732" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193232Z:7f8753bd-c637-4d2d-89cf-a36fb364a63c" + "WESTUS2:20170327T180252Z:1c39b39a-99d1-42a5-9dd8-8d7569b8e732" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1753,20 +1732,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15399a94-0c00-4c3a-b557-982f7655d796" + "ec605638-aed7-45e9-86aa-74117f058aaf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1778,22 +1756,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:32:31 GMT" + "Mon, 27 Mar 2017 18:02:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "e0a0162f-d368-427a-b326-144d01cbc3c8" + "c8beafcb-9a3e-4a0e-85d1-48b56e81106a" ], "x-ms-correlation-request-id": [ - "e0a0162f-d368-427a-b326-144d01cbc3c8" + "c8beafcb-9a3e-4a0e-85d1-48b56e81106a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193232Z:e0a0162f-d368-427a-b326-144d01cbc3c8" + "WESTUS2:20170327T180252Z:c8beafcb-9a3e-4a0e-85d1-48b56e81106a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1804,9 +1782,9 @@ ], "Names": { ".ctor": [ - "datalakerg14884", - "testdatalake11517", - "testadlfs18112" + "datalakerg17619", + "testdatalake13299", + "testadlfs13480" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json index 84088422e61d..18fb1a6caac0 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json @@ -1,23 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0185d2ea-d226-4137-9176-362c0cd85625" + "a8e40d24-a397-4bf5-9380-3b125e8ace49" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"41c47f4b-8b45-4522-a73a-d20b16f0f1ec\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +28,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:54 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +40,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1196" ], "x-ms-request-id": [ - "6b2c90a1-c5f1-4f8f-9089-aac3ddae331f" + "6b21d90e-6e97-4c98-b4a6-912efda49fe4" ], "x-ms-correlation-request-id": [ - "6b2c90a1-c5f1-4f8f-9089-aac3ddae331f" + "6b21d90e-6e97-4c98-b4a6-912efda49fe4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004829Z:6b2c90a1-c5f1-4f8f-9089-aac3ddae331f" + "WESTUS2:20170327T182755Z:6b21d90e-6e97-4c98-b4a6-912efda49fe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,23 +58,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21eb4948-e4fb-47b0-b930-96e1c01a5da2" + "61e63ce8-234f-4786-82ea-ee5aa11d7012" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"41c47f4b-8b45-4522-a73a-d20b16f0f1ec\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:54 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14992" ], "x-ms-request-id": [ - "33cd6425-f7bd-4833-838e-e7a573ca1483" + "07b3ba63-4776-4abc-b588-f030f03c7e6f" ], "x-ms-correlation-request-id": [ - "33cd6425-f7bd-4833-838e-e7a573ca1483" + "07b3ba63-4776-4abc-b588-f030f03c7e6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004829Z:33cd6425-f7bd-4833-838e-e7a573ca1483" + "WESTUS2:20170327T182755Z:07b3ba63-4776-4abc-b588-f030f03c7e6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,23 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2102a5c0-667e-4db3-aed6-906a9b5fbbbf" + "354a933f-239d-4c13-8f7c-4085f8608f72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"cd0cad5c-ac96-4c4c-99cd-cfafc285ba36\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/customKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listReadOnlyKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/generateSasCredentials\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +139,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:55 GMT" ], "Pragma": [ "no-cache" @@ -154,16 +151,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1195" ], "x-ms-request-id": [ - "0ff21777-066c-4c59-ba9f-3b369858bd3e" + "d2912a3b-650e-4a4a-8331-3c62fb58285b" ], "x-ms-correlation-request-id": [ - "0ff21777-066c-4c59-ba9f-3b369858bd3e" + "d2912a3b-650e-4a4a-8331-3c62fb58285b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004829Z:0ff21777-066c-4c59-ba9f-3b369858bd3e" + "WESTUS2:20170327T182756Z:d2912a3b-650e-4a4a-8331-3c62fb58285b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +169,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6085bebe-2d1d-4a34-91e4-66af72901b9e" + "4801a0be-db84-45ab-8644-2484c08766d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"cd0cad5c-ac96-4c4c-99cd-cfafc285ba36\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/customKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listReadOnlyKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/generateSasCredentials\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:56 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14991" ], "x-ms-request-id": [ - "e789236a-9af1-4b72-be4f-29770ab38a53" + "18cf8909-36b2-4b95-a34d-d176efeb3e49" ], "x-ms-correlation-request-id": [ - "e789236a-9af1-4b72-be4f-29770ab38a53" + "18cf8909-36b2-4b95-a34d-d176efeb3e49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:e789236a-9af1-4b72-be4f-29770ab38a53" + "WESTUS2:20170327T182756Z:18cf8909-36b2-4b95-a34d-d176efeb3e49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk2MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62745887-939a-4e9e-ba66-955a0054d7ed" + "d7b23bed-5931-4b12-bb86-1fe27fa34c65" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18961' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13455' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -258,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:56 GMT" ], "Pragma": [ "no-cache" @@ -267,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14990" ], "x-ms-request-id": [ - "f6cd421f-a8d4-4c83-a9b2-8410b3383143" + "83b8f8b9-0202-4813-906d-340181de92f5" ], "x-ms-correlation-request-id": [ - "f6cd421f-a8d4-4c83-a9b2-8410b3383143" + "83b8f8b9-0202-4813-906d-340181de92f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:f6cd421f-a8d4-4c83-a9b2-8410b3383143" + "WESTUS2:20170327T182756Z:83b8f8b9-0202-4813-906d-340181de92f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk2MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14a800e9-e842-4e42-b0b1-af1f0c75d91a" + "83a5dbc5-9f5b-4a24-8e06-acf22fd98e23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961\",\r\n \"name\": \"datalakerg18961\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455\",\r\n \"name\": \"datalakerg13455\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -313,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:30 GMT" + "Mon, 27 Mar 2017 18:27:57 GMT" ], "Pragma": [ "no-cache" @@ -322,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14989" ], "x-ms-request-id": [ - "3d46ed7e-5575-46b8-bc30-6b442327bdd2" + "9623a54a-4cc2-4c96-b424-79077d0503f9" ], "x-ms-correlation-request-id": [ - "3d46ed7e-5575-46b8-bc30-6b442327bdd2" + "9623a54a-4cc2-4c96-b424-79077d0503f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:3d46ed7e-5575-46b8-bc30-6b442327bdd2" + "WESTUS2:20170327T182758Z:9623a54a-4cc2-4c96-b424-79077d0503f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk2MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -352,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "70127dac-9c92-4c43-91f0-55806b78c74b" + "bec18699-6b0e-4335-9fef-bc52004c77d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961\",\r\n \"name\": \"datalakerg18961\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455\",\r\n \"name\": \"datalakerg13455\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -377,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1194" ], "x-ms-request-id": [ - "15414486-2cec-41e0-9b9f-7c8e45e62607" + "2d930518-93aa-4cbf-b663-aa4f84fac7dc" ], "x-ms-correlation-request-id": [ - "15414486-2cec-41e0-9b9f-7c8e45e62607" + "2d930518-93aa-4cbf-b663-aa4f84fac7dc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:15414486-2cec-41e0-9b9f-7c8e45e62607" + "WESTUS2:20170327T182758Z:2d930518-93aa-4cbf-b663-aa4f84fac7dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU2ODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0862c62d-1416-4a99-9ff9-a522bdda5806" + "ce268e2d-be35-4631-9601-d0984d7d8453" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15683' under resource group 'datalakerg18961' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17607' under resource group 'datalakerg13455' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -432,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:30 GMT" + "Mon, 27 Mar 2017 18:27:57 GMT" ], "Pragma": [ "no-cache" @@ -441,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "16a6ce0c-af9d-460b-bdb0-31c41ef35047" + "457df470-58b5-4aa8-a78a-1f317aa04cb7" ], "x-ms-correlation-request-id": [ - "16a6ce0c-af9d-460b-bdb0-31c41ef35047" + "457df470-58b5-4aa8-a78a-1f317aa04cb7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:16a6ce0c-af9d-460b-bdb0-31c41ef35047" + "WESTUS2:20170327T182758Z:457df470-58b5-4aa8-a78a-1f317aa04cb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU2ODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15683.caboaccountdogfood.net\",\r\n \"accountId\": \"04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a\",\r\n \"creationTime\": \"2017-02-09T00:48:34.4585418Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:48:34.4585418Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683\",\r\n \"name\": \"testadlfs15683\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17607.azuredatalakestore.net\",\r\n \"accountId\": \"72578512-56ca-49f8-ac18-ea6e05e30456\",\r\n \"creationTime\": \"2017-03-27T18:28:00.3493744Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:28:00.3493744Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607\",\r\n \"name\": \"testadlfs17607\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -481,7 +472,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:01 GMT" + "Mon, 27 Mar 2017 18:28:31 GMT" ], "Pragma": [ "no-cache" @@ -493,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6802e05-8da3-41d0-92dd-bb48daf7e721" + "00ea498c-3a76-4b0f-be66-f7cc93d7f681" ], "X-Content-Type-Options": [ "nosniff" @@ -505,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14980" ], "x-ms-correlation-request-id": [ - "9b132531-39ab-49cc-b696-b3c772e296ad" + "f941cf98-25dc-4dd2-b251-e42d690dfad3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004902Z:9b132531-39ab-49cc-b696-b3c772e296ad" + "WESTUS2:20170327T182831Z:f941cf98-25dc-4dd2-b251-e42d690dfad3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU2ODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f692e2af-66bc-428c-bd4b-abf868cb6ba1" + "654d2565-e5cd-472f-ba67-4353ecbc161f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15683.caboaccountdogfood.net\",\r\n \"accountId\": \"04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a\",\r\n \"creationTime\": \"2017-02-09T00:48:34.4585418Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:48:34.4585418Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683\",\r\n \"name\": \"testadlfs15683\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17607.azuredatalakestore.net\",\r\n \"accountId\": \"72578512-56ca-49f8-ac18-ea6e05e30456\",\r\n \"creationTime\": \"2017-03-27T18:28:00.3493744Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:28:00.3493744Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607\",\r\n \"name\": \"testadlfs17607\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -551,7 +541,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:02 GMT" + "Mon, 27 Mar 2017 18:28:32 GMT" ], "Pragma": [ "no-cache" @@ -563,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "47f47d89-6990-4019-b83a-70c64240e38d" + "be834e95-3b22-4472-86a3-6b2c252cb494" ], "X-Content-Type-Options": [ "nosniff" @@ -575,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14690" + "14981" ], "x-ms-correlation-request-id": [ - "7a2da7c8-f71c-4d2a-83af-e626d5271684" + "3a0493b9-d0f3-4dc8-8152-4c12157df1af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004902Z:7a2da7c8-f71c-4d2a-83af-e626d5271684" + "WESTUS2:20170327T182832Z:3a0493b9-d0f3-4dc8-8152-4c12157df1af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU2ODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -602,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "22d0e651-7a71-4116-83e3-35d6090b709d" + "05e4ee45-5f7b-43dc-b4d2-8deaf396dd83" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683\",\r\n \"name\": \"testadlfs15683\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"72578512-56ca-49f8-ac18-ea6e05e30456\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607\",\r\n \"name\": \"testadlfs17607\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -630,13 +619,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:48:31 GMT" + "Mon, 27 Mar 2017 18:27:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -645,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72578512-56ca-49f8-ac18-ea6e05e304560?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "18648907-64c7-4607-b181-9e3d48d7843f" + "ff27fa7d-c3a0-44c3-9be0-acf14ca68bac" ], "X-Content-Type-Options": [ "nosniff" @@ -660,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1091" + "1189" ], "x-ms-correlation-request-id": [ - "f7541246-37c3-496c-9ed3-cde30483eb38" + "651b3430-5c42-49ea-a109-09367abdd40c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004831Z:f7541246-37c3-496c-9ed3-cde30483eb38" + "WESTUS2:20170327T182800Z:651b3430-5c42-49ea-a109-09367abdd40c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzA0YTJkMTUyLTQxZWItNGUyYy1hNWI0LTM4NmVjYmMyYmM1YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72578512-56ca-49f8-ac18-ea6e05e304560?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzcyNTc4NTEyLTU2Y2EtNDlmOC1hYzE4LWVhNmUwNWUzMDQ1NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -700,7 +688,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:01 GMT" + "Mon, 27 Mar 2017 18:28:30 GMT" ], "Pragma": [ "no-cache" @@ -712,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2984de8e-de45-4c12-b916-5057459f1f4c" + "f2d9b877-039c-42be-b820-79de77eab8e5" ], "X-Content-Type-Options": [ "nosniff" @@ -724,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "14985" ], "x-ms-correlation-request-id": [ - "f7ffd755-e30f-41d2-9952-7bab00b919ac" + "f5a30cc6-ee31-4ab8-bd5d-673eb0fa9c0e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004901Z:f7ffd755-e30f-41d2-9952-7bab00b919ac" + "WESTUS2:20170327T182831Z:f5a30cc6-ee31-4ab8-bd5d-673eb0fa9c0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,10 +727,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule12867\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"name\": \"trustedrule13996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17352\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n }\r\n ],\r\n \"firewallAllowAzureIps\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -751,17 +739,16 @@ "588" ], "x-ms-client-request-id": [ - "e812337c-b9c2-4285-8b2c-da2473e39d67" + "a7a92e2e-628b-4d26-a66f-1387af408de0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule12867\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"name\": \"trustedrule13996\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c3d38ff7-81f7-4991-83b9-d3ed6d45efcc\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847\",\r\n \"name\": \"adlsacct6847\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17352\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a16bdc6c-aa23-4548-82b1-fd048e330f9e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386\",\r\n \"name\": \"adlsacct7386\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "767" @@ -779,13 +766,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:09 GMT" + "Mon, 27 Mar 2017 18:28:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -794,10 +781,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c3d38ff7-81f7-4991-83b9-d3ed6d45efcc0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a16bdc6c-aa23-4548-82b1-fd048e330f9e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "53fde7d7-33c4-434e-a5bc-38e437f62b96" + "07a12dc2-f886-4834-aa79-db60139187b2" ], "X-Content-Type-Options": [ "nosniff" @@ -809,13 +796,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1090" + "1189" ], "x-ms-correlation-request-id": [ - "568226e9-b748-46ff-ba65-9f70e5b9d77b" + "5a34b7f5-8c64-49e4-b322-931d37370c3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004909Z:568226e9-b748-46ff-ba65-9f70e5b9d77b" + "WESTUS2:20170327T182835Z:5a34b7f5-8c64-49e4-b322-931d37370c3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -824,14 +811,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c3d38ff7-81f7-4991-83b9-d3ed6d45efcc0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2MzZDM4ZmY3LTgxZjctNDk5MS04M2I5LWQzZWQ2ZDQ1ZWZjYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a16bdc6c-aa23-4548-82b1-fd048e330f9e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ExNmJkYzZjLWFhMjMtNDU0OC04MmIxLWZkMDQ4ZTMzMGY5ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -849,7 +835,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:38 GMT" + "Mon, 27 Mar 2017 18:29:05 GMT" ], "Pragma": [ "no-cache" @@ -861,7 +847,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b4e2ad9f-2b49-4eaf-af1c-ed45ea3168f0" + "76b1bfd0-fc66-4b39-8093-e71afb2c3113" ], "X-Content-Type-Options": [ "nosniff" @@ -873,13 +859,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14979" ], "x-ms-correlation-request-id": [ - "dd399280-ea0c-4392-b7bc-fb3dfcfd8732" + "3efaa844-64d9-4c74-98d1-c7fe8253eec3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004939Z:dd399280-ea0c-4392-b7bc-fb3dfcfd8732" + "WESTUS2:20170327T182906Z:3efaa844-64d9-4c74-98d1-c7fe8253eec3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -888,17 +874,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule12867\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"name\": \"trustedrule13996\"\r\n }\r\n ],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlsacct6847.caboaccountdogfood.net\",\r\n \"accountId\": \"c3d38ff7-81f7-4991-83b9-d3ed6d45efcc\",\r\n \"creationTime\": \"2017-02-09T00:49:10.663371Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:49:10.663371Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847\",\r\n \"name\": \"adlsacct6847\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17352\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n }\r\n ],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlsacct7386.azuredatalakestore.net\",\r\n \"accountId\": \"a16bdc6c-aa23-4548-82b1-fd048e330f9e\",\r\n \"creationTime\": \"2017-03-27T18:28:35.1422939Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:28:35.1422939Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386\",\r\n \"name\": \"adlsacct7386\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -913,7 +898,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:39 GMT" + "Mon, 27 Mar 2017 18:29:06 GMT" ], "Pragma": [ "no-cache" @@ -925,7 +910,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7ad10c9c-d48c-4b54-88a4-45d6f6c53156" + "ff92568b-ccba-422b-bd0d-f37a8b3c7aab" ], "X-Content-Type-Options": [ "nosniff" @@ -937,13 +922,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "14988" ], "x-ms-correlation-request-id": [ - "e1b40202-3125-4215-8d6f-c6a58681a623" + "40b01319-37ef-49bf-953f-c6ca4e8659fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004939Z:e1b40202-3125-4215-8d6f-c6a58681a623" + "WESTUS2:20170327T182906Z:40b01319-37ef-49bf-953f-c6ca4e8659fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -952,23 +937,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa90192c-ef22-4895-b15f-527ae24d2c14" + "15abfb97-6dcd-4490-8bbe-4234d6f5824c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule12867\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"name\": \"trustedrule13996\"\r\n }\r\n ],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlsacct6847.caboaccountdogfood.net\",\r\n \"accountId\": \"c3d38ff7-81f7-4991-83b9-d3ed6d45efcc\",\r\n \"creationTime\": \"2017-02-09T00:49:10.663371Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:49:10.663371Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847\",\r\n \"name\": \"adlsacct6847\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17352\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n }\r\n ],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlsacct7386.azuredatalakestore.net\",\r\n \"accountId\": \"a16bdc6c-aa23-4548-82b1-fd048e330f9e\",\r\n \"creationTime\": \"2017-03-27T18:28:35.1422939Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:28:35.1422939Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386\",\r\n \"name\": \"adlsacct7386\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -983,7 +967,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:40 GMT" + "Mon, 27 Mar 2017 18:29:06 GMT" ], "Pragma": [ "no-cache" @@ -995,7 +979,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1fa873ff-1ab8-4e3c-a1d3-6f18579b7f7c" + "8ad12c96-5f01-43c2-82ba-bd41b081b283" ], "X-Content-Type-Options": [ "nosniff" @@ -1007,13 +991,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14985" ], "x-ms-correlation-request-id": [ - "3bd15637-8b2a-4e59-aa4d-80a3fd9ed3bd" + "e68a8724-6b94-4794-ae49-4544fa732a53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004940Z:3bd15637-8b2a-4e59-aa4d-80a3fd9ed3bd" + "WESTUS2:20170327T182907Z:e68a8724-6b94-4794-ae49-4544fa732a53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1022,23 +1006,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "973f0a20-632d-4a85-b870-9120315f6845" + "688bec39-4215-43db-9839-c6288ef43ae6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867\",\r\n \"name\": \"firerule12867\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352\",\r\n \"name\": \"firerule17352\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1053,7 +1036,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:39 GMT" + "Mon, 27 Mar 2017 18:29:06 GMT" ], "Pragma": [ "no-cache" @@ -1065,7 +1048,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e860b1d8-52ea-41e4-a347-1150aee724e7" + "8723d68e-b00d-43e1-b0d2-fd05f80e16a4" ], "X-Content-Type-Options": [ "nosniff" @@ -1077,13 +1060,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" + "14980" ], "x-ms-correlation-request-id": [ - "2d0a53fd-1e60-4524-bbfb-76d9094453fd" + "670c24fe-81ec-445f-9db7-cada085fdf42" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004940Z:2d0a53fd-1e60-4524-bbfb-76d9094453fd" + "WESTUS2:20170327T182907Z:670c24fe-81ec-445f-9db7-cada085fdf42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,20 +1075,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "add7e366-31de-45a9-9a3d-e6ffc7c3dd86" + "2b1f7e3d-e05f-465b-93a3-2c2f7ae8e87d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Firewall Rule does not exist.\"\r\n }\r\n}", @@ -1126,7 +1108,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:42 GMT" + "Mon, 27 Mar 2017 18:29:10 GMT" ], "Pragma": [ "no-cache" @@ -1135,7 +1117,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "94402756-b994-450c-92b5-fb220fc56828" + "75955d29-9ad6-40a8-9c72-76d4673c28fd" ], "X-Content-Type-Options": [ "nosniff" @@ -1147,13 +1129,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14987" ], "x-ms-correlation-request-id": [ - "d84db1f6-020a-4534-b891-69e0b053578d" + "605f5ad4-ca06-41fd-9ab8-b8bcbd520a11" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004943Z:d84db1f6-020a-4534-b891-69e0b053578d" + "WESTUS2:20170327T182910Z:605f5ad4-ca06-41fd-9ab8-b8bcbd520a11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1162,29 +1144,28 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867\",\r\n \"name\": \"firerule12867\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"name\": \"firerule17352\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "369" + "129" ], "x-ms-client-request-id": [ - "ff29784f-6440-477a-9bc0-4d2946ae694a" + "1160a73a-405c-44b5-a60c-7496304a0bc5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867\",\r\n \"name\": \"firerule12867\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352\",\r\n \"name\": \"firerule17352\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1199,7 +1180,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:41 GMT" + "Mon, 27 Mar 2017 18:29:08 GMT" ], "Pragma": [ "no-cache" @@ -1211,7 +1192,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e4cffe19-9345-4405-9756-d885b95b5724" + "e2041550-1d1a-40db-a8a9-41e3f58d1722" ], "X-Content-Type-Options": [ "nosniff" @@ -1223,13 +1204,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1089" + "1195" ], "x-ms-correlation-request-id": [ - "12a3cc7a-91fd-49d8-bd34-6e28499eaddb" + "7c103cdb-8785-4b61-874c-b2ea66ec9997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004941Z:12a3cc7a-91fd-49d8-bd34-6e28499eaddb" + "WESTUS2:20170327T182908Z:7c103cdb-8785-4b61-874c-b2ea66ec9997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1238,8 +1219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\"\r\n }\r\n}", "RequestHeaders": { @@ -1250,17 +1231,16 @@ "63" ], "x-ms-client-request-id": [ - "1fed6b07-d1a3-44f4-bccf-375f71288eb9" + "b5e856c0-6b69-4ab7-adb5-1896b09075ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867\",\r\n \"name\": \"firerule12867\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352\",\r\n \"name\": \"firerule17352\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1275,7 +1255,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:42 GMT" + "Mon, 27 Mar 2017 18:29:08 GMT" ], "Pragma": [ "no-cache" @@ -1287,7 +1267,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6c716fd7-721a-4cc1-8197-a5ec4ed817eb" + "b05483ee-074d-4b40-b97a-0ecc7eead03c" ], "X-Content-Type-Options": [ "nosniff" @@ -1299,13 +1279,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1118" + "1189" ], "x-ms-correlation-request-id": [ - "e0110c8d-b784-4d24-a37d-684ae425340b" + "d451945a-15aa-4fb3-ad98-94d7d3a0554d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004942Z:e0110c8d-b784-4d24-a37d-684ae425340b" + "WESTUS2:20170327T182909Z:d451945a-15aa-4fb3-ad98-94d7d3a0554d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,20 +1294,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22d027c4-a25f-454e-81a4-9a66871a139b" + "45e63743-1c41-4851-95c7-aae6b3b39118" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1345,7 +1324,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:42 GMT" + "Mon, 27 Mar 2017 18:29:09 GMT" ], "Pragma": [ "no-cache" @@ -1354,7 +1333,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "3c83623b-e186-45ad-89d3-e507dcf6472c" + "6a450578-f3a4-4f4a-91bb-d991b59afae6" ], "X-AspNet-Version": [ "4.0.30319" @@ -1363,13 +1342,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1110" + "1187" ], "x-ms-correlation-request-id": [ - "e3f35d8c-e481-403f-a189-ed911c6ab2a8" + "e2c68f6e-d108-4168-8032-2fc87b284203" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004942Z:e3f35d8c-e481-403f-a189-ed911c6ab2a8" + "WESTUS2:20170327T182910Z:e2c68f6e-d108-4168-8032-2fc87b284203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1378,23 +1357,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c15570b1-db68-4f92-a19a-b39f1d77d9fc" + "99556d6e-5ee1-4a1e-ab93-302e010c98f3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996\",\r\n \"name\": \"trustedrule13996\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110\",\r\n \"name\": \"trustedrule17110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1409,7 +1387,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:43 GMT" + "Mon, 27 Mar 2017 18:29:10 GMT" ], "Pragma": [ "no-cache" @@ -1421,7 +1399,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ddd6f901-07a0-4c0d-bf06-21ae9d5f591e" + "2b0dad22-6a17-496d-8cef-8a1c5bb11e26" ], "X-Content-Type-Options": [ "nosniff" @@ -1433,13 +1411,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14687" + "14984" ], "x-ms-correlation-request-id": [ - "473ea458-c350-4fce-b707-4e0d9a01f56d" + "a0103ed0-7a7b-4272-ab96-7985bab89c35" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004943Z:473ea458-c350-4fce-b707-4e0d9a01f56d" + "WESTUS2:20170327T182911Z:a0103ed0-7a7b-4272-ab96-7985bab89c35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1448,20 +1426,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4aa5f4ed-227b-4697-a414-d3f02ae5c159" + "777a104e-d4af-4cd6-b2c4-28d59c3bd4cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Trusted IdProvider does not exist.\"\r\n }\r\n}", @@ -1482,7 +1459,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:45 GMT" + "Mon, 27 Mar 2017 18:29:14 GMT" ], "Pragma": [ "no-cache" @@ -1491,7 +1468,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "36595345-6780-434f-adf4-761e9a831460" + "93844d62-0748-41eb-9edb-4b702b2a9780" ], "X-Content-Type-Options": [ "nosniff" @@ -1503,13 +1480,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "14979" ], "x-ms-correlation-request-id": [ - "7c847bb1-4ec3-484c-af1f-c6e0ebb78fd3" + "8e224c7b-b4a7-4e34-bd6d-d3a963e2cb90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004945Z:7c847bb1-4ec3-484c-af1f-c6e0ebb78fd3" + "WESTUS2:20170327T182914Z:8e224c7b-b4a7-4e34-bd6d-d3a963e2cb90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,29 +1495,28 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/b1545bb1-802e-4360-9799-4679ef18401d\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996\",\r\n \"name\": \"trustedrule13996\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/d78ea359-c98e-4993-b1b0-40f7e09b0770\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "394" + "141" ], "x-ms-client-request-id": [ - "7e1b35cf-66eb-4a7f-a9a4-327dbaa3c528" + "37496ce6-c9ee-4e16-bb0f-4d497089c329" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/b1545bb1-802e-4360-9799-4679ef18401d\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996\",\r\n \"name\": \"trustedrule13996\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/d78ea359-c98e-4993-b1b0-40f7e09b0770\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110\",\r\n \"name\": \"trustedrule17110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1555,7 +1531,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:44 GMT" + "Mon, 27 Mar 2017 18:29:11 GMT" ], "Pragma": [ "no-cache" @@ -1567,7 +1543,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c74e4164-db4d-4a54-8e3f-3f3301ebc148" + "8e862a0f-16d9-47c6-b1c4-3e7445b1cd3e" ], "X-Content-Type-Options": [ "nosniff" @@ -1579,13 +1555,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1195" ], "x-ms-correlation-request-id": [ - "27972cf8-bcc5-424c-a62e-88d126172173" + "f0ea1dc7-0a2d-4c41-bbe1-08ccfff69392" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004944Z:27972cf8-bcc5-424c-a62e-88d126172173" + "WESTUS2:20170327T182912Z:f0ea1dc7-0a2d-4c41-bbe1-08ccfff69392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1594,10 +1570,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1606,17 +1582,16 @@ "110" ], "x-ms-client-request-id": [ - "1cd92196-0e7e-41e6-ab6c-7dba1a0c3fc0" + "0eeeeec6-9ea8-49a4-8b6b-ee9465a67aba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996\",\r\n \"name\": \"trustedrule13996\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110\",\r\n \"name\": \"trustedrule17110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1631,7 +1606,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:44 GMT" + "Mon, 27 Mar 2017 18:29:12 GMT" ], "Pragma": [ "no-cache" @@ -1643,7 +1618,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9a891fbe-12cd-46ae-ba26-283ce837f1de" + "6509d260-d65b-4386-bc38-6ab2fabfae04" ], "X-Content-Type-Options": [ "nosniff" @@ -1655,13 +1630,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1088" + "1188" ], "x-ms-correlation-request-id": [ - "537561cf-4177-4512-af38-95d6345e78e0" + "7d70df1f-50d6-40a9-99c9-332c14557e7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004944Z:537561cf-4177-4512-af38-95d6345e78e0" + "WESTUS2:20170327T182912Z:7d70df1f-50d6-40a9-99c9-332c14557e7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1670,20 +1645,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa30d9c5-b950-4497-882d-e2282c6a289d" + "a2e739da-e437-43aa-a1dd-f6fe7e8b97c3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1701,7 +1675,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:45 GMT" + "Mon, 27 Mar 2017 18:29:13 GMT" ], "Pragma": [ "no-cache" @@ -1710,7 +1684,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "1cc947c7-e9a5-4025-bb33-73bfa8eda59e" + "237d1484-93d1-40bc-bef1-6e401a80474c" ], "X-AspNet-Version": [ "4.0.30319" @@ -1719,13 +1693,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1117" + "1185" ], "x-ms-correlation-request-id": [ - "cf291945-11af-4ca6-89de-97169dd0a2df" + "86759272-9035-4536-ac5c-a48e59c1f88a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004945Z:cf291945-11af-4ca6-89de-97169dd0a2df" + "WESTUS2:20170327T182913Z:86759272-9035-4536-ac5c-a48e59c1f88a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1736,19 +1710,19 @@ ], "Names": { ".ctor": [ - "datalakerg18961", - "testdatalake18673", - "testadlfs15683" + "datalakerg13455", + "testdatalake1124", + "testadlfs17607" ], "FirewallAndTrustedProviderTest": [ - "firerule12867", - "2d61d1dd-1ec3-4eb7-aa72-4da87b273bee", - "trustedrule13996", - "adlsacct6847", - "b1545bb1-802e-4360-9799-4679ef18401d" + "firerule17352", + "ea9ec534-a3e3-4e45-ad36-3afc5bb291c1", + "trustedrule17110", + "adlsacct7386", + "d78ea359-c98e-4993-b1b0-40f7e09b0770" ] }, "Variables": { - "SubscriptionId": "90585f39-ab85-4921-bb37-0468f7efd1dd" + "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" } } \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json index 771b2cdaafb5..603813460de8 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5affba57-53b9-45c2-b280-f39bb635a908" + "e9d175ed-975d-43da-9554-97318ed3cc07" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +28,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:16 GMT" + "Mon, 27 Mar 2017 21:33:53 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +40,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "67df0480-f46c-45a5-8060-b455865f7523" + "5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" ], "x-ms-correlation-request-id": [ - "67df0480-f46c-45a5-8060-b455865f7523" + "5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033516Z:67df0480-f46c-45a5-8060-b455865f7523" + "CENTRALUS:20170327T213353Z:5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "403813e5-aa3e-447b-85e2-14d309bee096" + "490d41c9-ee65-47e8-b8c8-deaf9ae48919" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:16 GMT" + "Mon, 27 Mar 2017 21:33:53 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-request-id": [ - "4a2f60f8-c432-4a67-b58a-6eae0b23cac3" + "7baac7bf-ba3d-4859-95a5-d4612785af57" ], "x-ms-correlation-request-id": [ - "4a2f60f8-c432-4a67-b58a-6eae0b23cac3" + "7baac7bf-ba3d-4859-95a5-d4612785af57" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033516Z:4a2f60f8-c432-4a67-b58a-6eae0b23cac3" + "CENTRALUS:20170327T213353Z:7baac7bf-ba3d-4859-95a5-d4612785af57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e5ab733-dbec-47f1-bab9-9582fd8877d1" + "e598ab57-35f7-4c8c-8d49-0275bc6467d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +139,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:16 GMT" + "Mon, 27 Mar 2017 21:33:54 GMT" ], "Pragma": [ "no-cache" @@ -154,16 +151,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "71a6a493-6164-4c57-8238-2fd88cfe44d1" + "96d40078-c535-4217-b743-3a1c3d176ff7" ], "x-ms-correlation-request-id": [ - "71a6a493-6164-4c57-8238-2fd88cfe44d1" + "96d40078-c535-4217-b743-3a1c3d176ff7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033517Z:71a6a493-6164-4c57-8238-2fd88cfe44d1" + "CENTRALUS:20170327T213354Z:96d40078-c535-4217-b743-3a1c3d176ff7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bcc356a-8bcf-433d-ba99-70eac8848832" + "65e4c623-9d6c-4868-9987-3422df4bd26a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:16 GMT" + "Mon, 27 Mar 2017 21:33:54 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-request-id": [ - "10a0c2b6-ffda-4c2e-a043-8fddd9b6822b" + "91c8875d-85be-4d7e-a144-a7efb8c49542" ], "x-ms-correlation-request-id": [ - "10a0c2b6-ffda-4c2e-a043-8fddd9b6822b" + "91c8875d-85be-4d7e-a144-a7efb8c49542" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033517Z:10a0c2b6-ffda-4c2e-a043-8fddd9b6822b" + "CENTRALUS:20170327T213354Z:91c8875d-85be-4d7e-a144-a7efb8c49542" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13689?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY4OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39452815-e789-44c2-bd38-ab1a6742dcb1" + "60d4f0ba-075f-42e2-afc7-f86dbb9a160d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13689' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12554' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -258,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:17 GMT" + "Mon, 27 Mar 2017 21:33:54 GMT" ], "Pragma": [ "no-cache" @@ -267,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-request-id": [ - "4c21f891-4e2c-41ea-8af0-2ee8e634b06b" + "89d70e4f-7206-4038-b991-4b95cfeb6757" ], "x-ms-correlation-request-id": [ - "4c21f891-4e2c-41ea-8af0-2ee8e634b06b" + "89d70e4f-7206-4038-b991-4b95cfeb6757" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033517Z:4c21f891-4e2c-41ea-8af0-2ee8e634b06b" + "CENTRALUS:20170327T213354Z:89d70e4f-7206-4038-b991-4b95cfeb6757" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13689?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY4OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a41e5ed-2059-4b56-91d3-ef40620faa91" + "80451311-5f93-4e72-9b6f-d1f3325a3a7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689\",\r\n \"name\": \"datalakerg13689\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554\",\r\n \"name\": \"datalakerg12554\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -313,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:17 GMT" + "Mon, 27 Mar 2017 21:33:55 GMT" ], "Pragma": [ "no-cache" @@ -322,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14996" ], "x-ms-request-id": [ - "ef6ec86e-35ea-4a9a-bff7-c5936700078c" + "81af64b7-7a55-447c-a237-43fe0c925cf1" ], "x-ms-correlation-request-id": [ - "ef6ec86e-35ea-4a9a-bff7-c5936700078c" + "81af64b7-7a55-447c-a237-43fe0c925cf1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033518Z:ef6ec86e-35ea-4a9a-bff7-c5936700078c" + "CENTRALUS:20170327T213355Z:81af64b7-7a55-447c-a237-43fe0c925cf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13689?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY4OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -352,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "28d6dee4-f620-4257-a713-0af79236a2d4" + "85006c7b-dc13-495c-bc29-53c98ca096d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689\",\r\n \"name\": \"datalakerg13689\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554\",\r\n \"name\": \"datalakerg12554\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -377,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:17 GMT" + "Mon, 27 Mar 2017 21:33:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "549a04fa-f79a-4f2b-9a67-bd4e088bf057" + "3720961a-b104-4252-9e1f-506782064e4f" ], "x-ms-correlation-request-id": [ - "549a04fa-f79a-4f2b-9a67-bd4e088bf057" + "3720961a-b104-4252-9e1f-506782064e4f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033518Z:549a04fa-f79a-4f2b-9a67-bd4e088bf057" + "CENTRALUS:20170327T213355Z:3720961a-b104-4252-9e1f-506782064e4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9cfb923-7d80-493d-963b-106e18e832a0" + "0e9a394b-aa40-41ea-bc93-ea2f33ce0a99" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16946' under resource group 'datalakerg13689' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11532' under resource group 'datalakerg12554' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -432,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:17 GMT" + "Mon, 27 Mar 2017 21:33:55 GMT" ], "Pragma": [ "no-cache" @@ -441,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "7fe817cb-254f-4e26-b7e5-de636bac3583" + "e09b5c55-ba87-4778-be3d-ce874f8ebe93" ], "x-ms-correlation-request-id": [ - "7fe817cb-254f-4e26-b7e5-de636bac3583" + "e09b5c55-ba87-4778-be3d-ce874f8ebe93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033518Z:7fe817cb-254f-4e26-b7e5-de636bac3583" + "CENTRALUS:20170327T213355Z:e09b5c55-ba87-4778-be3d-ce874f8ebe93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16946.azuredatalakestore.net\",\r\n \"accountId\": \"a7d9b3a8-e037-4a17-8af2-87381b5e87e3\",\r\n \"creationTime\": \"2017-01-26T03:35:22.1676313Z\",\r\n \"lastModifiedTime\": \"2017-01-26T03:35:22.1676313Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946\",\r\n \"name\": \"testadlfs16946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11532.azuredatalakestore.net\",\r\n \"accountId\": \"fa21e3dd-15b0-4063-b2b2-b1e9cb38278a\",\r\n \"creationTime\": \"2017-03-27T21:33:57.2098624Z\",\r\n \"lastModifiedTime\": \"2017-03-27T21:33:57.2098624Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532\",\r\n \"name\": \"testadlfs11532\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -481,7 +472,7 @@ "close" ], "Date": [ - "Thu, 26 Jan 2017 03:35:50 GMT" + "Mon, 27 Mar 2017 21:34:27 GMT" ], "Pragma": [ "no-cache" @@ -493,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "03475bf3-287c-4836-a77c-44a26bf4fbff" + "ecfb7220-4b29-4b16-9119-45b9a24badfa" ], "X-Content-Type-Options": [ "nosniff" @@ -505,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "3255c743-a5ac-4f39-9937-e6f356c0ece4" + "44b28cc7-0ec9-4751-a7e0-c0b65e9fec73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033551Z:3255c743-a5ac-4f39-9937-e6f356c0ece4" + "CENTRALUS:20170327T213428Z:44b28cc7-0ec9-4751-a7e0-c0b65e9fec73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e7d70a8-06e3-4865-b5bf-82e3bc97d4e6" + "ef167cac-1328-442f-9400-1e20e6325040" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16946.azuredatalakestore.net\",\r\n \"accountId\": \"a7d9b3a8-e037-4a17-8af2-87381b5e87e3\",\r\n \"creationTime\": \"2017-01-26T03:35:22.1676313Z\",\r\n \"lastModifiedTime\": \"2017-01-26T03:35:22.1676313Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946\",\r\n \"name\": \"testadlfs16946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11532.azuredatalakestore.net\",\r\n \"accountId\": \"fa21e3dd-15b0-4063-b2b2-b1e9cb38278a\",\r\n \"creationTime\": \"2017-03-27T21:33:57.2098624Z\",\r\n \"lastModifiedTime\": \"2017-03-27T21:33:57.2098624Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532\",\r\n \"name\": \"testadlfs11532\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -551,7 +541,7 @@ "close" ], "Date": [ - "Thu, 26 Jan 2017 03:35:50 GMT" + "Mon, 27 Mar 2017 21:34:27 GMT" ], "Pragma": [ "no-cache" @@ -563,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d2a8be09-01d7-4859-9fca-9d6ef252ff64" + "34770705-3667-42fe-aaec-c949faa3ffdd" ], "X-Content-Type-Options": [ "nosniff" @@ -575,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-correlation-request-id": [ - "970b7b55-a0a9-4973-9358-efb5375bb156" + "0646f512-e98d-4ea8-af4f-fd66fc5bb73c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033551Z:970b7b55-a0a9-4973-9358-efb5375bb156" + "CENTRALUS:20170327T213428Z:0646f512-e98d-4ea8-af4f-fd66fc5bb73c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -602,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "9ed27a9e-5b60-4a08-879c-1045a70e8fa6" + "00e4e684-ece0-468f-a619-0f777e47e2d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a7d9b3a8-e037-4a17-8af2-87381b5e87e3\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946\",\r\n \"name\": \"testadlfs16946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fa21e3dd-15b0-4063-b2b2-b1e9cb38278a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532\",\r\n \"name\": \"testadlfs11532\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -630,13 +619,13 @@ "close" ], "Date": [ - "Thu, 26 Jan 2017 03:35:19 GMT" + "Mon, 27 Mar 2017 21:33:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -645,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a7d9b3a8-e037-4a17-8af2-87381b5e87e30?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fa21e3dd-15b0-4063-b2b2-b1e9cb38278a0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "53b89a45-5f1c-4996-a6cd-98bcdbc43dfe" + "12695c27-0d2b-4145-a5c9-104b11e7d92e" ], "X-Content-Type-Options": [ "nosniff" @@ -660,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "e61077fb-6351-4fd6-b37f-010c63f2a585" + "099c15a4-cdbb-489f-aec2-f6d7998d6eac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033520Z:e61077fb-6351-4fd6-b37f-010c63f2a585" + "CENTRALUS:20170327T213356Z:099c15a4-cdbb-489f-aec2-f6d7998d6eac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a7d9b3a8-e037-4a17-8af2-87381b5e87e30?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2E3ZDliM2E4LWUwMzctNGExNy04YWYyLTg3MzgxYjVlODdlMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fa21e3dd-15b0-4063-b2b2-b1e9cb38278a0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZhMjFlM2RkLTE1YjAtNDA2My1iMmIyLWIxZTljYjM4Mjc4YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -700,7 +688,7 @@ "close" ], "Date": [ - "Thu, 26 Jan 2017 03:35:49 GMT" + "Mon, 27 Mar 2017 21:34:26 GMT" ], "Pragma": [ "no-cache" @@ -712,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "97ea4853-d248-402a-b00e-05e250870c2e" + "541745cb-6c5d-4cf2-ab54-059c9c0c62f6" ], "X-Content-Type-Options": [ "nosniff" @@ -724,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-correlation-request-id": [ - "20e4e215-fcbe-4f35-9001-e14cab2dc17b" + "0f0a7e16-6a3c-4ed0-a121-20336f7df300" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033550Z:20e4e215-fcbe-4f35-9001-e14cab2dc17b" + "CENTRALUS:20170327T213427Z:0f0a7e16-6a3c-4ed0-a121-20336f7df300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,20 +727,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8b92692-636a-4920-9c5a-5c449a967025" + "bf3e2c58-14b3-4846-8299-78b74ef69f8c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -770,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:53 GMT" + "Mon, 27 Mar 2017 21:34:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a73a4ff5-b43f-45b9-bd78-52bed774bc1b" + "9318b3c3-a185-4e71-adc8-72e676569e2c" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -794,8 +781,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -806,14 +793,13 @@ "42" ], "x-ms-client-request-id": [ - "99078921-6743-4e1a-b95a-c42d9a2eb418" + "6c886b7e-4194-460e-af35-8700fa07542a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -828,22 +814,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:53 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/SDKTestFile01.txt534?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/SDKTestFile01.txt5159?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "d3a642db-7970-4e0a-999a-9a29a641b821" + "7143d0b1-0d69-46c0-b106-4a86af73d9d9" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -858,8 +844,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt7694?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -870,14 +856,13 @@ "42" ], "x-ms-client-request-id": [ - "a0ae508c-1e5e-4d7c-90dd-cbce1b8f7592" + "dc6e563d-da9c-48d4-98f7-cfe66d0db559" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -892,22 +877,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/SDKTestFile01.txt7694?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/SDKTestFile01.txt6454?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "e2ab4aa0-aaca-4fba-8d4b-255e82453576" + "ba8e0b97-1f51-4ece-9a1e-361343b6e274" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -922,23 +907,22 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ab8dfed-f482-4f2d-b862-408963d3c9b3" + "af27f606-7b2b-44cd-a55d-16ac3b153019" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1485401753678,\r\n \"modificationTime\": 1485401754183,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490650471494,\r\n \"modificationTime\": 1490650472004,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -953,16 +937,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "54ec1c8d-a1ed-4c70-9ac4-927ee79df4a2" + "3219e1fa-5c5d-49ab-a1ae-4554dcb226bf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -977,23 +961,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a2c6229-3859-4361-bbb1-517411a6d75d" + "d309092e-25b1-4d37-ae2f-205b322197b2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1485401753678,\r\n \"modificationTime\": 1485401754183,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490650471494,\r\n \"modificationTime\": 1490650472004,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -1008,16 +991,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a8ec376e-04a9-42ab-aac8-8acaaf3430a8" + "c977868c-0bfd-4cb1-bfd2-8ce5677cada8" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1032,23 +1015,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "264f9de7-ee94-4606-b7c3-c16fd0713dec" + "549aaaf0-8109-42d4-ba6f-4353419799ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1485401753678,\r\n \"modificationTime\": 1485401754183,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490650471494,\r\n \"modificationTime\": 1490650472004,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -1063,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c00393f4-c775-4d25-a6c3-276bb9e8f379" + "c6c443e2-8f04-494e-9eef-07418c8d0149" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1087,26 +1069,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0xJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50abbb26-dfc9-408c-a18f-abea08565373" + "44631b71-403a-434f-b896-e2fb2c5c9b88" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt534\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt7694\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401754164,\r\n \"modificationTime\": 1485401754437,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5159\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt6454\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471983,\r\n \"modificationTime\": 1490650472053,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1118,16 +1099,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6b53e97c-9ef4-47de-82ee-bd2fdf35ae0d" + "8a1e5712-13cc-41a4-85e0-dad978cbe908" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1142,26 +1123,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0xJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9a88091-fbd8-42c6-98ad-cf3daf8fa69a" + "054544b2-e64d-4337-8216-37945aa66294" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt534\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt7694\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401754164,\r\n \"modificationTime\": 1485401754437,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5159\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt6454\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471983,\r\n \"modificationTime\": 1490650472053,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,16 +1153,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "af7927c0-d209-4961-8ab7-9acc44dd841b" + "9763792f-16c2-45f5-b988-5fb9b8532335" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1197,26 +1177,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e6e2ebb-ac86-45c2-bc3d-921f1cdc0f46" + "04f5f7df-4ba4-4e87-9136-29053201aaa8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471983,\r\n \"modificationTime\": 1490650472053,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1228,16 +1207,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f175275d-864f-4e4c-9da9-f4aa0a9a657b" + "30e24bc4-fb6a-4367-9bc7-9a7ec69e48c9" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1252,29 +1231,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78da3eb5-91fb-4b81-ad7a-8e58c3aeafc6" + "73a7908f-e09e-4c44-91e1-aa883014d8e1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "These are some random test contents 1234!@", "ResponseHeaders": { - "Content-Length": [ - "324" - ], "Content-Type": [ - "application/json; charset=utf-8" + "application/octet-stream" ], "Expires": [ "-1" @@ -1283,16 +1258,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "x-ms-request-id": [ - "59cde4ed-f60e-4455-98ba-63ee6dbb9910" + "292b6983-c5d4-4d11-b51f-73cfaa079997" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1307,26 +1285,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0335be83-3aa8-4375-b874-76667dd2c534" + "18ad8d01-f249-4b27-a32e-44cb21466024" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1338,16 +1315,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "31e53dd2-39a1-4778-b33f-e1ee46dcf53d" + "28b197ce-7448-4282-b246-b4968ec4a19b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1362,26 +1339,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57cbfff2-7e14-4e04-95fc-deb94db92db6" + "169e7033-3f20-45f4-91ac-d7f70db1e99a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1393,16 +1369,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "725eb0dc-0f64-49ce-9024-7973be97b565" + "c4042c1d-cc62-4ab7-8b79-f952a9d0e406" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1417,26 +1393,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adf77018-4e11-4b3f-b78f-dc3bde29cb9b" + "3661bb3a-acb3-4186-81f6-4d0cff7d1441" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1448,16 +1423,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d8127e4f-63a6-465c-a712-3623e03227a6" + "b633aa1c-c375-4ad9-8333-61e7b1639603" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1472,26 +1447,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt7694?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4018be4f-0758-487a-bc9f-6458063d3f2f" + "0548b3d3-4fc5-4b97-b44c-6d3c1f8d5597" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401754164,\r\n \"modificationTime\": 1485401754437,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1503,16 +1477,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5950c16c-e093-4a02-8db5-31172ead57c9" + "f0144177-5e3e-4bba-b543-af0d0184725d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1527,26 +1501,28 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P2xlbmd0aD00MiZvZmZzZXQ9MCZvcD1PUEVOJnJlYWQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1bbad77-aa96-4634-8c36-6a4fe38e8dc9" + "4dba1519-1870-4bca-b7df-6c32fbb32832" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "These are some random test contents 1234!@", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { + "Content-Length": [ + "305" + ], "Content-Type": [ - "application/octet-stream" + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1555,19 +1531,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "x-ms-request-id": [ - "062cd787-ef94-4455-a417-bc5355f24a9f" + "c64555df-1653-4813-8b73-692743295062" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1582,20 +1555,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P2xlbmd0aD00MiZvZmZzZXQ9MCZvcD1PUEVOJnJlYWQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf2283ca-beed-4ce1-991c-cbbcc93e2b3a" + "d718a1c4-324d-46ba-b38f-347f23162194" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -1610,7 +1582,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" @@ -1619,10 +1591,10 @@ "chunked" ], "x-ms-request-id": [ - "a39f2a67-5e89-4fd9-8cf6-99c6f7fa83bf" + "be34b7e2-51f5-4b7e-a640-2613ac9f873a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1637,20 +1609,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt7694?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ba214fd-8126-4364-852e-2a838eedeaf3" + "5178446a-e467-4922-b98b-1e0ae6cb4cdb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -1665,7 +1636,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" @@ -1674,10 +1645,10 @@ "chunked" ], "x-ms-request-id": [ - "bd523e85-b7d9-44bf-8ecd-fcaa6edbb604" + "08dc8af2-0ba7-48b9-a445-a872788bf304" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1692,26 +1663,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "599ee994-9247-4e43-aaaf-1f8c76132a46" + "207a50b7-3c6e-42fc-8d23-2cee947ef156" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder019166/upload/SDKTestFile01.txt534 [625cbb6a-08fb-4610-abaa-f279d5938a24][2017-01-25T19:35:56.2878777-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017119/upload/SDKTestFile01.txt5159 [f76383fa-6761-49d0-b885-63ce86294ccd][2017-03-27T14:34:33.9794750-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "268" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1723,16 +1693,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:56 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "625cbb6a-08fb-4610-abaa-f279d5938a24" + "f76383fa-6761-49d0-b885-63ce86294ccd" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1747,26 +1717,25 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20c8748c-c547-460b-88bb-45e25fe59932" + "c70ced86-4ace-4988-81ff-aede32bc3c9a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757759,\r\n \"modificationTime\": 1485401757810,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474736,\r\n \"modificationTime\": 1490650474784,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1778,16 +1747,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cca83879-8121-4ead-8e3c-0872616b568e" + "67799e8e-fc26-4127-a227-1d55f7448022" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1802,26 +1771,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58792e02-f640-4346-8204-e97c81827390" + "b27b70de-e4d4-4694-a177-284829da6b41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder019166/upload/specificFileDownload.out [6439f71b-588f-482f-8799-25b0f7277098][2017-01-25T19:35:56.2953836-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017119/upload/SDKTestFile01.txt6454 [cef3a82f-0ecc-40fc-9ab5-eb184d2f09e6][2017-03-27T14:34:33.9812232-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "272" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,16 +1801,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6439f71b-588f-482f-8799-25b0f7277098" + "cef3a82f-0ecc-40fc-9ab5-eb184d2f09e6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1857,26 +1825,25 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c3723b7-592e-44ef-9980-decca8480f67" + "9ab013b7-9d75-4599-b67e-91c2017e782d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757681,\r\n \"modificationTime\": 1485401757742,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474823,\r\n \"modificationTime\": 1490650474893,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1888,16 +1855,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b49cd215-1d6e-46a0-b026-44d78d0fac26" + "a527f4fb-e8a5-4b25-81ff-26c7a162f6a8" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1912,26 +1879,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt7694?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6898deb-8c7c-4f02-ba98-c98756769f59" + "0d44eafa-20fd-4273-88c0-314cca4219a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder019166/upload/SDKTestFile01.txt7694 [261a08f4-9464-4c84-8a07-987b62bcd851][2017-01-25T19:35:57.0718268-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017119/upload/specificFileDownload.out [9aff10d6-392e-437e-844a-bb196d192a5d][2017-03-27T14:34:34.4017821-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "269" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1943,16 +1909,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:56 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "261a08f4-9464-4c84-8a07-987b62bcd851" + "9aff10d6-392e-437e-844a-bb196d192a5d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1967,26 +1933,25 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt7694?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2e8290d-731b-4e27-9769-4495fef66340" + "54a33515-e234-447f-95fb-2a1cecaae848" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757455,\r\n \"modificationTime\": 1485401757527,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474764,\r\n \"modificationTime\": 1490650474814,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1998,16 +1963,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c3bb30c0-420b-4f54-9aa8-985f6c853ddb" + "ea8f5eb9-3323-4577-a8ef-a14e41719abc" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2022,8 +1987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt7694?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2034,14 +1999,13 @@ "0" ], "x-ms-client-request-id": [ - "7f685e59-223f-40aa-9214-34b55eb1ab29" + "f86aac02-959f-4316-9063-d563acaab837" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2056,22 +2020,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:56 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/SDKTestFile01.txt7694?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "2624da0d-4bb7-4bcf-b308-9698b56cdc2b" + "120e3514-add5-4bcd-9c5d-b570cc61ffed" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2086,8 +2050,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt7694?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2098,14 +2062,13 @@ "42" ], "x-ms-client-request-id": [ - "492b15fa-b78d-4f86-8f3d-e2d234930869" + "8c04e18d-161d-45f6-903f-e5ab5526ad3e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2120,22 +2083,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/SDKTestFile01.txt7694?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "b3a966c5-f807-4a8e-8cae-9916883d9e09" + "15d7a218-563b-4293-bcb0-f203f69d7883" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2150,8 +2113,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2162,14 +2125,13 @@ "0" ], "x-ms-client-request-id": [ - "c8a37deb-b585-4bdf-947d-d09585d42af2" + "dbe5c95c-c31a-4a9d-8f23-1137d8535cae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2184,22 +2146,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "abd1b4a3-6902-4b4f-8ae8-8d0197a9d0e0" + "fa9eee88-59d2-401c-9ec5-26853d312dc7" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2214,8 +2176,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2226,14 +2188,13 @@ "42" ], "x-ms-client-request-id": [ - "a56173ea-44b1-4a6e-b216-a744d57507ca" + "8d8a5fed-e57f-434e-b556-66a1e1fff587" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2248,22 +2209,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "34826bf2-41e8-4a49-acff-a2bf724ec08a" + "8146a790-cfeb-4e85-95cb-d72247b66db9" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2278,8 +2239,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt534?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P292ZXJ3cml0ZT10cnVlJm9wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2290,14 +2251,13 @@ "0" ], "x-ms-client-request-id": [ - "988dfb28-b3e3-40fc-a7dd-147316220884" + "968a5640-6909-45fb-88eb-1d7efaad6d88" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2312,22 +2272,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/SDKTestFile01.txt534?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "725716d1-55b8-423e-ae0d-22a34c9beb16" + "644f80c2-60cf-4dd4-b2cb-71ef5fbbc643" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2342,8 +2302,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt534?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P292ZXJ3cml0ZT10cnVlJm9wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2354,14 +2314,13 @@ "42" ], "x-ms-client-request-id": [ - "f9fbc307-6903-46cd-bf3d-1f89754c95eb" + "c43cfb3a-c143-47b4-a26b-5f12b5ff2ffa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2376,22 +2335,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/SDKTestFile01.txt534?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "77d730dc-4095-4b03-8051-9b3732de7394" + "bb020960-08c1-4d06-bb63-232b350bc35e" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2406,26 +2365,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZD9vcD1NU0xJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZD9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e24071-2236-489e-bc39-06d8a8f5a2cf" + "28bcc84a-07f5-41e9-a7b0-5072d9b50893" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt534\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757759,\r\n \"modificationTime\": 1485401757810,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt7694\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757455,\r\n \"modificationTime\": 1485401757527,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"specificFileDownload.out\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757681,\r\n \"modificationTime\": 1485401757742,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5159\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474736,\r\n \"modificationTime\": 1490650474784,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt6454\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474823,\r\n \"modificationTime\": 1490650474893,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"specificFileDownload.out\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474764,\r\n \"modificationTime\": 1490650474814,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1028" + "972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2437,16 +2395,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2ce7954e-e41d-42a8-8a99-93c79ce3420a" + "a618169b-dda5-4c12-99f1-77f3fff03893" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2461,23 +2419,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91bc64e2-06c0-4e01-b6ab-ad938a7b255a" + "89cbd046-b10b-4b0f-8435-e8c7537a7aa0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder019166/upload/specificFileDownload.out.new [5b439524-5763-4684-96db-3a92cfec0df8][2017-01-25T19:35:58.2328734-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017119/upload/specificFileDownload.out.new [6cc90c34-96d3-4be0-a0a1-2ec3eaa9a1cf][2017-03-27T14:34:35.3718571-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "276" @@ -2492,16 +2449,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5b439524-5763-4684-96db-3a92cfec0df8" + "6cc90c34-96d3-4be0-a0a1-2ec3eaa9a1cf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -2516,26 +2473,25 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28ac639a-9dc3-4b87-9a9c-bd2abf7ad816" + "7f25c316-0ef9-449b-aece-166d4d228b6a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401758614,\r\n \"modificationTime\": 1485401758690,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650475647,\r\n \"modificationTime\": 1490650475718,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2547,16 +2503,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:58 GMT" + "Mon, 27 Mar 2017 21:34:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2d771ee7-c24c-4d51-80af-daa24a3b1357" + "4409b85b-4917-45c8-aa96-3a5f5d76d09e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2571,26 +2527,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65f1987c-4417-4d45-8c66-6d21329ce5e8" + "5e675a1b-f212-498f-809a-c366bfe49367" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401758614,\r\n \"modificationTime\": 1485401758690,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650475647,\r\n \"modificationTime\": 1490650475718,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2602,16 +2557,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:58 GMT" + "Mon, 27 Mar 2017 21:34:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9818a754-f905-483d-aeaf-59c39d54e137" + "5bc0f0f6-4e8f-4d56-b63d-2b78586b954e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2626,8 +2581,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2638,14 +2593,13 @@ "0" ], "x-ms-client-request-id": [ - "b64e6bf2-63fa-46be-b4b4-30603d161a62" + "191d56ad-07e3-467e-bbc7-22ab90153387" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2660,22 +2614,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "fe5b510d-03d3-4245-959c-07bc70f1687f" + "cdb52b67-b9d5-4768-9c5b-e1ac82f66d9c" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2690,8 +2644,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2702,14 +2656,13 @@ "42" ], "x-ms-client-request-id": [ - "294fc715-8075-4317-81ff-5abfe3d3b145" + "26b0ed19-4e68-4c4f-adbf-88aee2bd2e1b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2724,22 +2677,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:58 GMT" + "Mon, 27 Mar 2017 21:34:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "ac140255-9681-4889-a355-355d95dc6ff4" + "e9b481ac-ce1d-4b5d-93f7-cf19416aa8a0" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2754,20 +2707,19 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a70d7b1-ffb9-4e1e-92f6-abcc2e007b78" + "82b07fcf-769a-4b52-8d19-1e452369a2d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -2782,7 +2734,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:58 GMT" + "Mon, 27 Mar 2017 21:34:35 GMT" ], "Pragma": [ "no-cache" @@ -2791,10 +2743,10 @@ "chunked" ], "x-ms-request-id": [ - "b3e97e97-30af-4ba6-a171-cdb7f7a92126" + "60017931-0731-4be2-b5a5-2a29ec760eef" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2811,16 +2763,16 @@ ], "Names": { ".ctor": [ - "datalakerg13689", - "testdatalake19593", - "testadlfs16946" + "datalakerg12554", + "testdatalake15141", + "testadlfs11532" ], "CreateFolder": [ - "SDKTestFolder019166" + "SDKTestFolder017119" ], "CreateFile": [ - "SDKTestFolder019166/SDKTestFile01.txt534", - "SDKTestFolder019166/SDKTestFile01.txt7694" + "SDKTestFolder017119/SDKTestFile01.txt5159", + "SDKTestFolder017119/SDKTestFile01.txt6454" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json index 4fd5f7f34244..0c1673b97ab7 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a2d994f-a578-4e52-bcbe-34c3faf73ccb" + "98902518-b82e-4416-8809-4fe982956c38" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +28,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:25 GMT" + "Mon, 27 Mar 2017 18:02:55 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +43,13 @@ "1199" ], "x-ms-request-id": [ - "7116c70d-cc75-4ca5-8824-a16015f8e1b6" + "f2c96b4e-35dd-45f3-a5a8-6995c71381cd" ], "x-ms-correlation-request-id": [ - "7116c70d-cc75-4ca5-8824-a16015f8e1b6" + "f2c96b4e-35dd-45f3-a5a8-6995c71381cd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223526Z:7116c70d-cc75-4ca5-8824-a16015f8e1b6" + "WESTUS2:20170327T180256Z:f2c96b4e-35dd-45f3-a5a8-6995c71381cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7741896e-103a-462d-8435-e317f019e4e8" + "8531a6e4-95a7-4b19-bb56-ac0b2d4d6aec" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:25 GMT" + "Mon, 27 Mar 2017 18:02:55 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "d715d733-bde5-4b31-aa8f-2a7556826d7e" + "d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" ], "x-ms-correlation-request-id": [ - "d715d733-bde5-4b31-aa8f-2a7556826d7e" + "d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223526Z:d715d733-bde5-4b31-aa8f-2a7556826d7e" + "WESTUS2:20170327T180256Z:d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f732b5c9-78f5-41f0-bd01-76762073cdc3" + "644cdb5c-ca7a-4e37-9bbb-615e9c772a93" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,11 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:56 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -151,13 +154,13 @@ "1198" ], "x-ms-request-id": [ - "c67940b7-0059-4f9b-895f-48c4aa766a0a" + "077db7ee-26e2-439e-a785-279421f8cb4f" ], "x-ms-correlation-request-id": [ - "c67940b7-0059-4f9b-895f-48c4aa766a0a" + "077db7ee-26e2-439e-a785-279421f8cb4f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223526Z:c67940b7-0059-4f9b-895f-48c4aa766a0a" + "WESTUS2:20170327T180257Z:077db7ee-26e2-439e-a785-279421f8cb4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9fc0b5f-1e61-4d94-a7ba-0acaf4c327e3" + "3d0d0389-5b1f-48ee-a014-9597b48475ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:56 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "8111dade-6053-4924-ac50-da77251d730c" + "e83fc951-8001-46b8-9be5-ff96ed3b24b0" ], "x-ms-correlation-request-id": [ - "8111dade-6053-4924-ac50-da77251d730c" + "e83fc951-8001-46b8-9be5-ff96ed3b24b0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223527Z:8111dade-6053-4924-ac50-da77251d730c" + "WESTUS2:20170327T180257Z:e83fc951-8001-46b8-9be5-ff96ed3b24b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19467?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97ef1a4c-61be-4964-8980-a0b83f833717" + "3d21e408-9a0a-46a1-8630-94528feb70b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19467' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14595' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:56 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-request-id": [ - "a5363b63-a918-43b1-9a48-dd5e61674a8d" + "18d8fa05-4b92-4d0a-b550-012e38912697" ], "x-ms-correlation-request-id": [ - "a5363b63-a918-43b1-9a48-dd5e61674a8d" + "18d8fa05-4b92-4d0a-b550-012e38912697" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223527Z:a5363b63-a918-43b1-9a48-dd5e61674a8d" + "WESTUS2:20170327T180257Z:18d8fa05-4b92-4d0a-b550-012e38912697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19467?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9976ad93-bd4b-430b-a1a0-4fbc65038eed" + "d930058f-c8d2-440b-a820-6c42e331576d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467\",\r\n \"name\": \"datalakerg19467\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595\",\r\n \"name\": \"datalakerg14595\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:58 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-request-id": [ - "5f29e929-a16a-4237-ad0a-ffc51ac57638" + "0f1f825a-14b6-491c-bf57-ceeae9b021ac" ], "x-ms-correlation-request-id": [ - "5f29e929-a16a-4237-ad0a-ffc51ac57638" + "0f1f825a-14b6-491c-bf57-ceeae9b021ac" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223527Z:5f29e929-a16a-4237-ad0a-ffc51ac57638" + "WESTUS2:20170327T180258Z:0f1f825a-14b6-491c-bf57-ceeae9b021ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19467?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "e0524d45-2353-4832-9957-cd9c2da7eb78" + "d686df6b-0d55-40a3-9f00-f59df5fe6f62" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467\",\r\n \"name\": \"datalakerg19467\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595\",\r\n \"name\": \"datalakerg14595\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,7 +370,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:58 GMT" ], "Pragma": [ "no-cache" @@ -380,13 +379,13 @@ "1197" ], "x-ms-request-id": [ - "9ad23e4d-1e62-4f97-8f1c-9c440b910d12" + "6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" ], "x-ms-correlation-request-id": [ - "9ad23e4d-1e62-4f97-8f1c-9c440b910d12" + "6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223527Z:9ad23e4d-1e62-4f97-8f1c-9c440b910d12" + "WESTUS2:20170327T180258Z:6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "581d3e97-5a63-47bb-bffd-f19e4e9d1551" + "59f0cee3-90f2-4a8f-9fdd-fe60f5a278b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs145' under resource group 'datalakerg19467' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17137' under resource group 'datalakerg14595' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:27 GMT" + "Mon, 27 Mar 2017 18:02:58 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "98c112f8-db9f-432d-b5bc-f0403d403563" + "e2b47dbf-5538-4d7a-983b-d42703064b32" ], "x-ms-correlation-request-id": [ - "98c112f8-db9f-432d-b5bc-f0403d403563" + "e2b47dbf-5538-4d7a-983b-d42703064b32" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223528Z:98c112f8-db9f-432d-b5bc-f0403d403563" + "WESTUS2:20170327T180259Z:e2b47dbf-5538-4d7a-983b-d42703064b32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs145.azuredatalakestore.net\",\r\n \"accountId\": \"2b1b1107-3051-4dad-805f-58f1b1dc23f6\",\r\n \"creationTime\": \"2016-11-10T22:35:33.905645Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:35:33.905645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145\",\r\n \"name\": \"testadlfs145\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17137.azuredatalakestore.net\",\r\n \"accountId\": \"57ac2cbe-92ba-41d8-be29-b0ef22c71d6a\",\r\n \"creationTime\": \"2017-03-27T18:03:00.8370475Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:03:00.8370475Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137\",\r\n \"name\": \"testadlfs17137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:35:59 GMT" + "Mon, 27 Mar 2017 18:03:31 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4348d11f-3b34-4ab5-b462-859a05185dd0" + "282fc88b-4007-4f20-a3ea-634b0f2fbb51" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "5aea2eba-67b2-48e2-a084-ead27c7ae0b8" + "ed4517a1-92ad-4c39-bc18-65a4d0fe5202" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223600Z:5aea2eba-67b2-48e2-a084-ead27c7ae0b8" + "WESTUS2:20170327T180332Z:ed4517a1-92ad-4c39-bc18-65a4d0fe5202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a19866-2418-44b5-a688-80e1a849c734" + "4dbf01e0-62a3-41a0-8e79-cf3084af9c57" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs145.azuredatalakestore.net\",\r\n \"accountId\": \"2b1b1107-3051-4dad-805f-58f1b1dc23f6\",\r\n \"creationTime\": \"2016-11-10T22:35:33.905645Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:35:33.905645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145\",\r\n \"name\": \"testadlfs145\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17137.azuredatalakestore.net\",\r\n \"accountId\": \"57ac2cbe-92ba-41d8-be29-b0ef22c71d6a\",\r\n \"creationTime\": \"2017-03-27T18:03:00.8370475Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:03:00.8370475Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137\",\r\n \"name\": \"testadlfs17137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:00 GMT" + "Mon, 27 Mar 2017 18:03:32 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "58d96b10-9b11-49fd-aae2-dbf5d405ab41" + "03eb4b62-8c98-48bf-b91d-d64b179a50f4" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "670793fa-f12d-402c-8db4-1f24ee04850b" + "8a93df8a-ae6d-429e-99be-159160298d52" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223601Z:670793fa-f12d-402c-8db4-1f24ee04850b" + "WESTUS2:20170327T180332Z:8a93df8a-ae6d-429e-99be-159160298d52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "f95e1cb1-6964-41ad-86fb-ee6d233fea19" + "df073ed6-910d-4655-9cb6-9ac857475034" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2b1b1107-3051-4dad-805f-58f1b1dc23f6\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145\",\r\n \"name\": \"testadlfs145\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"57ac2cbe-92ba-41d8-be29-b0ef22c71d6a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137\",\r\n \"name\": \"testadlfs17137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "416" + "420" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:35:28 GMT" + "Mon, 27 Mar 2017 18:03:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2b1b1107-3051-4dad-805f-58f1b1dc23f60?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57ac2cbe-92ba-41d8-be29-b0ef22c71d6a0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "6f35c568-c421-410a-be71-79018ab860e7" + "4912151c-49a2-4304-a258-2e9da3ecba90" ], "X-Content-Type-Options": [ "nosniff" @@ -657,10 +652,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "dc71c638-667a-4f5d-a0c4-14326da3275b" + "47fe5334-f856-466b-94db-98d47d86c98b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223528Z:dc71c638-667a-4f5d-a0c4-14326da3275b" + "WESTUS2:20170327T180301Z:47fe5334-f856-466b-94db-98d47d86c98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2b1b1107-3051-4dad-805f-58f1b1dc23f60?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJiMWIxMTA3LTMwNTEtNGRhZC04MDVmLTU4ZjFiMWRjMjNmNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57ac2cbe-92ba-41d8-be29-b0ef22c71d6a0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU3YWMyY2JlLTkyYmEtNDFkOC1iZTI5LWIwZWYyMmM3MWQ2YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:35:59 GMT" + "Mon, 27 Mar 2017 18:03:30 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fcc092ec-185e-4cfa-9ce3-aa7031bcd7cf" + "e5eef495-e346-4ded-a22b-9eb8e812bcf4" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "24d02453-9637-4a14-92b4-21cb324c7e86" + "22ca9a33-5a97-4480-bbfa-3f9aabfd27ec" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223559Z:24d02453-9637-4a14-92b4-21cb324c7e86" + "WESTUS2:20170327T180331Z:22ca9a33-5a97-4480-bbfa-3f9aabfd27ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6264?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MjY0P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "3123635a-3434-4335-8f59-0bbd2062d70e" + "fdd290df-91b6-41ee-8e11-b95897c990a1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:02 GMT" + "Mon, 27 Mar 2017 18:03:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs145.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6264?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17137.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2107?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "97645649-ae1a-4782-b534-7a8a5c561228" + "426decc0-48ad-44c1-87be-a856f52ba7fa" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6264?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MjY0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5c6e28b-1a58-42ff-897d-c05a1df63a81" + "df913301-38c2-431a-a159-381b9c070359" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817362939,\r\n \"modificationTime\": 1478817362939,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637822629,\r\n \"modificationTime\": 1490637822629,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:02 GMT" + "Mon, 27 Mar 2017 18:03:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d0db4638-3c34-4c8f-b521-fbb541ac9a9a" + "2b4922e6-cc22-45ad-baf1-6ddfcdab4568" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6264?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MjY0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e311ab6f-8d88-4dbf-baae-fa293f284a56" + "a0a4f8a1-ab88-4099-8c33-cb4766ade6b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817362939,\r\n \"modificationTime\": 1478817363287,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637822629,\r\n \"modificationTime\": 1490637822939,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:03 GMT" + "Mon, 27 Mar 2017 18:03:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7ad549e1-a7d7-46a7-a29b-c6fd9c11b74d" + "fe795d6b-185a-4df9-9b94-2a965f3f98d6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,8 +898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6264?op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MjY0P29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=APPEND&append=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -919,14 +910,13 @@ "39" ], "x-ms-client-request-id": [ - "d5e4ae3c-7355-4c36-b4f7-13807be8409d" + "3bf52c80-cb3b-4fe0-9dcb-84eb05fe6efb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,16 +931,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:03 GMT" + "Mon, 27 Mar 2017 18:03:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6eb05bb2-9a63-4503-bca3-2416a9005cc8" + "88a1a4f9-e38e-4854-854f-b74b1622cd65" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -967,12 +957,12 @@ ], "Names": { ".ctor": [ - "datalakerg19467", - "testdatalake14544", - "testadlfs145" + "datalakerg14595", + "testdatalake14323", + "testadlfs17137" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt6264" + "SDKTestFolder01/SDKTestFile01.txt2107" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json index 0e885d285b0c..3867e996e670 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e936bf9-5582-456b-9c76-a69c615c2040" + "a52526a1-e479-40a3-85d0-a0995c69e8e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:13 GMT" + "Mon, 27 Mar 2017 18:19:10 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "2253b05e-92cd-4177-8b4b-707eee2734e9" + "cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" ], "x-ms-correlation-request-id": [ - "2253b05e-92cd-4177-8b4b-707eee2734e9" + "cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225814Z:2253b05e-92cd-4177-8b4b-707eee2734e9" + "CENTRALUS:20170327T181911Z:cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83cd1a27-1ccf-4ca5-924f-ba21f41f18a8" + "dd7cdbca-5fe5-4672-9c36-9422197022cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:13 GMT" + "Mon, 27 Mar 2017 18:19:10 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14996" ], "x-ms-request-id": [ - "23fca2ea-0c1b-4897-939b-f458413268eb" + "919973d7-ab82-40ae-af7d-981133c6ef40" ], "x-ms-correlation-request-id": [ - "23fca2ea-0c1b-4897-939b-f458413268eb" + "919973d7-ab82-40ae-af7d-981133c6ef40" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225814Z:23fca2ea-0c1b-4897-939b-f458413268eb" + "CENTRALUS:20170327T181911Z:919973d7-ab82-40ae-af7d-981133c6ef40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5d64cc6-cfe2-4873-a82f-b753f3a2c3b3" + "f01b29f7-d52b-4bb2-b053-d6f4fbe5558c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:14 GMT" + "Mon, 27 Mar 2017 18:19:11 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-request-id": [ - "a0d33d1a-75c2-4fa3-baab-ee0b10d7e1c1" + "3b85a4bd-af29-4e06-8563-a1e18d706dcf" ], "x-ms-correlation-request-id": [ - "a0d33d1a-75c2-4fa3-baab-ee0b10d7e1c1" + "3b85a4bd-af29-4e06-8563-a1e18d706dcf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225814Z:a0d33d1a-75c2-4fa3-baab-ee0b10d7e1c1" + "CENTRALUS:20170327T181912Z:3b85a4bd-af29-4e06-8563-a1e18d706dcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1932a372-e725-4c58-ac11-4f75118a2156" + "75baf1cc-c504-42aa-864f-97c7d216ba05" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:14 GMT" + "Mon, 27 Mar 2017 18:19:11 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14995" ], "x-ms-request-id": [ - "a0662733-2103-4fb4-b9f1-4d38f04cc579" + "c2535934-a2bd-496b-9776-4dd17ca3e66c" ], "x-ms-correlation-request-id": [ - "a0662733-2103-4fb4-b9f1-4d38f04cc579" + "c2535934-a2bd-496b-9776-4dd17ca3e66c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225815Z:a0662733-2103-4fb4-b9f1-4d38f04cc579" + "CENTRALUS:20170327T181912Z:c2535934-a2bd-496b-9776-4dd17ca3e66c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13766?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzc2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7878e249-f838-48f9-8060-410b6b7bb860" + "922c8353-33eb-4a75-9e88-123e80a8dc61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13766' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1534' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:14 GMT" + "Mon, 27 Mar 2017 18:19:11 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14994" ], "x-ms-request-id": [ - "d1f1ed20-0e08-4a04-8620-9a1499a51989" + "70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" ], "x-ms-correlation-request-id": [ - "d1f1ed20-0e08-4a04-8620-9a1499a51989" + "70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225815Z:d1f1ed20-0e08-4a04-8620-9a1499a51989" + "CENTRALUS:20170327T181912Z:70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13766?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzc2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77f85cfe-c0fe-45c1-9c4d-48c25468c9f8" + "50155ac0-fe98-4c11-bffe-0661ac196b96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766\",\r\n \"name\": \"datalakerg13766\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534\",\r\n \"name\": \"datalakerg1534\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:15 GMT" + "Mon, 27 Mar 2017 18:19:13 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14993" ], "x-ms-request-id": [ - "0d8b4a24-cd27-4d8d-ab22-1c9f7ab30882" + "4b0f29b1-f47f-44da-9d0c-65136c28a1bd" ], "x-ms-correlation-request-id": [ - "0d8b4a24-cd27-4d8d-ab22-1c9f7ab30882" + "4b0f29b1-f47f-44da-9d0c-65136c28a1bd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225815Z:0d8b4a24-cd27-4d8d-ab22-1c9f7ab30882" + "CENTRALUS:20170327T181914Z:4b0f29b1-f47f-44da-9d0c-65136c28a1bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13766?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzc2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "38ce7e80-6e80-4b7b-8c0b-fab29593e75b" + "132691ad-9c6a-44aa-b4a3-60b2a922b29f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766\",\r\n \"name\": \"datalakerg13766\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534\",\r\n \"name\": \"datalakerg1534\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:15 GMT" + "Mon, 27 Mar 2017 18:19:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-request-id": [ - "f48b724f-67aa-4fb4-9b14-f23d83414fd3" + "bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" ], "x-ms-correlation-request-id": [ - "f48b724f-67aa-4fb4-9b14-f23d83414fd3" + "bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225815Z:f48b724f-67aa-4fb4-9b14-f23d83414fd3" + "CENTRALUS:20170327T181914Z:bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTkzMjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d48ba0ca-77e2-477e-b552-f9ceb10f76c4" + "294d1f3a-2c4b-4dd6-9a13-b2d06b7132e3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs19323' under resource group 'datalakerg13766' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15392' under resource group 'datalakerg1534' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:16 GMT" + "Mon, 27 Mar 2017 18:19:13 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "1d2467d2-e884-4bed-a50b-d1b022a99741" + "78c5e19b-7490-481f-bb35-bb5063c6b596" ], "x-ms-correlation-request-id": [ - "1d2467d2-e884-4bed-a50b-d1b022a99741" + "78c5e19b-7490-481f-bb35-bb5063c6b596" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225817Z:1d2467d2-e884-4bed-a50b-d1b022a99741" + "CENTRALUS:20170327T181913Z:78c5e19b-7490-481f-bb35-bb5063c6b596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTkzMjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19323.azuredatalakestore.net\",\r\n \"accountId\": \"4e966a83-598b-4f50-9fb8-6382d71b737a\",\r\n \"creationTime\": \"2016-11-10T22:58:22.9376247Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:58:22.9376247Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323\",\r\n \"name\": \"testadlfs19323\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15392.azuredatalakestore.net\",\r\n \"accountId\": \"5184c6a6-81e6-427c-852c-aa5866cc6f12\",\r\n \"creationTime\": \"2017-03-27T18:19:15.4392041Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:19:15.4392041Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392\",\r\n \"name\": \"testadlfs15392\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:48 GMT" + "Mon, 27 Mar 2017 18:19:46 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "18c9221a-1552-462c-a400-29998c3e68ea" + "8ee6a412-a49a-4cb4-9256-429d5cbc3769" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-correlation-request-id": [ - "04bc67db-cdd1-4dbf-aaaf-5974c69696ff" + "8ceeddc8-cc0e-4e95-af6f-e83aa49edc97" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225848Z:04bc67db-cdd1-4dbf-aaaf-5974c69696ff" + "CENTRALUS:20170327T181946Z:8ceeddc8-cc0e-4e95-af6f-e83aa49edc97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTkzMjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4ee5eca-c5be-47bf-811d-3a451958ee0e" + "45133282-3363-46c7-b2cf-4e2ed2126049" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19323.azuredatalakestore.net\",\r\n \"accountId\": \"4e966a83-598b-4f50-9fb8-6382d71b737a\",\r\n \"creationTime\": \"2016-11-10T22:58:22.9376247Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:58:22.9376247Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323\",\r\n \"name\": \"testadlfs19323\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15392.azuredatalakestore.net\",\r\n \"accountId\": \"5184c6a6-81e6-427c-852c-aa5866cc6f12\",\r\n \"creationTime\": \"2017-03-27T18:19:15.4392041Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:19:15.4392041Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392\",\r\n \"name\": \"testadlfs15392\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:49 GMT" + "Mon, 27 Mar 2017 18:19:45 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3e771fd5-4dda-4261-aa60-e683f2b79b13" + "e8117938-2481-4a76-b470-6d3060a56ce1" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14993" ], "x-ms-correlation-request-id": [ - "d7b57ea9-0c70-44c1-97bf-f53dc400cfe8" + "6f65cabd-8614-4077-a958-c4e4f65e3ceb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225849Z:d7b57ea9-0c70-44c1-97bf-f53dc400cfe8" + "CENTRALUS:20170327T181946Z:6f65cabd-8614-4077-a958-c4e4f65e3ceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTkzMjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "5dbb83b0-89c5-4f1f-b919-29503f93de10" + "22996e9e-a044-4425-99db-490bd015ba15" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4e966a83-598b-4f50-9fb8-6382d71b737a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323\",\r\n \"name\": \"testadlfs19323\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5184c6a6-81e6-427c-852c-aa5866cc6f12\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392\",\r\n \"name\": \"testadlfs15392\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:17 GMT" + "Mon, 27 Mar 2017 18:19:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4e966a83-598b-4f50-9fb8-6382d71b737a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5184c6a6-81e6-427c-852c-aa5866cc6f120?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "28e70a98-31d0-481e-ac50-07112a28f81c" + "b00f1e7d-a8ea-47ed-b643-8af5f8f81450" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "56ba9449-67a1-4eaa-915a-9fce989df437" + "79a83afa-e00d-4a1f-b0a3-1c34c750510a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225817Z:56ba9449-67a1-4eaa-915a-9fce989df437" + "CENTRALUS:20170327T181915Z:79a83afa-e00d-4a1f-b0a3-1c34c750510a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4e966a83-598b-4f50-9fb8-6382d71b737a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRlOTY2YTgzLTU5OGItNGY1MC05ZmI4LTYzODJkNzFiNzM3YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5184c6a6-81e6-427c-852c-aa5866cc6f120?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzUxODRjNmE2LTgxZTYtNDI3Yy04NTJjLWFhNTg2NmNjNmYxMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:48 GMT" + "Mon, 27 Mar 2017 18:19:45 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "103b2b58-c695-4a48-a5de-ecfc8f4afaba" + "5d116183-fb4e-4900-8780-99748c1562d4" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-correlation-request-id": [ - "ff49687f-b588-4766-831b-f7d6a5d5ccb7" + "857896be-6fae-46c1-bfcb-e1c83278635a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225848Z:ff49687f-b588-4766-831b-f7d6a5d5ccb7" + "CENTRALUS:20170327T181946Z:857896be-6fae-46c1-bfcb-e1c83278635a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7854?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODU0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "c5202a12-6921-4fe2-987b-620174fdb317" + "34c8673a-9ffa-416b-bb0b-e3da95c647ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:50 GMT" + "Mon, 27 Mar 2017 18:19:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs19323.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7854?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15392.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5731?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "008c94fb-aa68-44d4-a879-25f87c0d7df5" + "e824dcea-86c5-4d3b-a220-ee276df9d520" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7854?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODU0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec547d0e-e733-4c96-9599-589b82ba2637" + "363f0644-afb5-4f9c-aa1c-88b3063a71d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818730916,\r\n \"modificationTime\": 1478818731015,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638788016,\r\n \"modificationTime\": 1490638788059,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:50 GMT" + "Mon, 27 Mar 2017 18:19:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9c91c54e-a3a9-4314-b4d2-408bb3306328" + "016d8761-5be3-426b-8f16-dfb86e4dffa9" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,8 +844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7854?offset=0&op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODU0P29mZnNldD0wJm9wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?offset=0&op=APPEND&append=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29mZnNldD0wJm9wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -864,20 +856,19 @@ "42" ], "x-ms-client-request-id": [ - "947f99df-e8b2-4e7b-83f9-955c9efe5fa8" + "04cb8f81-8447-4728-a975-7b506e1eda5a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"BadOffsetException\",\r\n \"message\": \"FsAppendStream failed with error 0x83090015 (Bad request. Invalid offset.). [4232124d-1de6-406e-9821-c97dd639b39c][2016-11-10T14:58:51.4216675-08:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.adl.BadOffsetException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"BadOffsetException\",\r\n \"message\": \"APPEND failed with error 0x83090015 (Bad request. Invalid offset.). [5fc3eb0f-e2e5-479f-af3d-f2f40f021627][2017-03-27T11:19:48.4743168-07:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.adl.BadOffsetException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "278" + "270" ], "Content-Type": [ "application/json; charset=utf-8" @@ -889,16 +880,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:50 GMT" + "Mon, 27 Mar 2017 18:19:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4232124d-1de6-406e-9821-c97dd639b39c" + "5fc3eb0f-e2e5-479f-af3d-f2f40f021627" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x83090015" @@ -915,12 +906,12 @@ ], "Names": { ".ctor": [ - "datalakerg13766", - "testdatalake19076", - "testadlfs19323" + "datalakerg1534", + "testdatalake1304", + "testadlfs15392" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7854" + "SDKTestFolder01/SDKTestFile01.txt5731" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json index 7f20b4a63ffe..0395e5c0d2ae 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json @@ -7,21 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10cafc4a-d4db-47f3-8efd-399701247409" + "70aa1e68-3504-4b11-a7f1-1110f9f8b5a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -32,22 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:02 GMT" + "Mon, 27 Mar 2017 18:12:09 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "540555d5-48c2-4a0b-b872-ff8f37528f7d" + "9d111bcb-caa0-4421-8041-697adae1f8c6" ], "x-ms-correlation-request-id": [ - "540555d5-48c2-4a0b-b872-ff8f37528f7d" + "9d111bcb-caa0-4421-8041-697adae1f8c6" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224203Z:540555d5-48c2-4a0b-b872-ff8f37528f7d" + "WESTUS2:20170327T181210Z:9d111bcb-caa0-4421-8041-697adae1f8c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,21 +64,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea3184d8-053c-4eac-b1ed-76f8f22a7cc0" + "cca71a93-4a11-46c2-a71a-99cabd4a8651" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -87,22 +85,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:02 GMT" + "Mon, 27 Mar 2017 18:12:09 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14992" ], "x-ms-request-id": [ - "527a6daa-b9aa-428e-80f2-431e124a5261" + "adf9905a-900f-4b03-b950-92533226208c" ], "x-ms-correlation-request-id": [ - "527a6daa-b9aa-428e-80f2-431e124a5261" + "adf9905a-900f-4b03-b950-92533226208c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224203Z:527a6daa-b9aa-428e-80f2-431e124a5261" + "WESTUS2:20170327T181210Z:adf9905a-900f-4b03-b950-92533226208c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,21 +118,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "385c49d7-3bed-45ad-a202-8c37e27e5e0d" + "d9124d91-298d-48d4-bd16-9ec7736d4b7e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -142,22 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:03 GMT" + "Mon, 27 Mar 2017 18:12:15 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "b5c3a23c-7647-4e22-b39a-7a9cd4ecbace" + "edce0958-7bb2-460e-b988-62c696876ab2" ], "x-ms-correlation-request-id": [ - "b5c3a23c-7647-4e22-b39a-7a9cd4ecbace" + "edce0958-7bb2-460e-b988-62c696876ab2" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224204Z:b5c3a23c-7647-4e22-b39a-7a9cd4ecbace" + "WESTUS2:20170327T181215Z:edce0958-7bb2-460e-b988-62c696876ab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,21 +175,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ab8e4c7-71e3-4bed-b738-424859fa61c8" + "0ce00842-b886-46a3-bf54-2466bbbe6124" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -197,22 +196,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:04 GMT" + "Mon, 27 Mar 2017 18:12:15 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14991" ], "x-ms-request-id": [ - "090fff5b-66eb-420d-b970-2048e2ed519c" + "8be380a6-476f-4549-be48-f77d4a575060" ], "x-ms-correlation-request-id": [ - "090fff5b-66eb-420d-b970-2048e2ed519c" + "8be380a6-476f-4549-be48-f77d4a575060" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224204Z:090fff5b-66eb-420d-b970-2048e2ed519c" + "WESTUS2:20170327T181215Z:8be380a6-476f-4549-be48-f77d4a575060" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19080?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTA4MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c338959-f9a8-43c6-9ed8-35ca861f2b71" + "94e065f9-be57-4bff-a232-f07cef3eeeed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19080' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19327' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:04 GMT" + "Mon, 27 Mar 2017 18:12:15 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-request-id": [ - "f2e9985b-6c4c-4e06-9bb1-bbb501fa8621" + "42b9741c-25b4-4e92-ac39-2e695ebc8bed" ], "x-ms-correlation-request-id": [ - "f2e9985b-6c4c-4e06-9bb1-bbb501fa8621" + "42b9741c-25b4-4e92-ac39-2e695ebc8bed" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224204Z:f2e9985b-6c4c-4e06-9bb1-bbb501fa8621" + "WESTUS2:20170327T181215Z:42b9741c-25b4-4e92-ac39-2e695ebc8bed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,27 +280,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19080?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTA4MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed6e1641-fa68-4e2f-b668-c1f3f18e843c" + "6f85d6f3-b6ba-4df9-8658-ce1f6c432e4c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080\",\r\n \"name\": \"datalakerg19080\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327\",\r\n \"name\": \"datalakerg19327\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -310,22 +307,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:05 GMT" + "Mon, 27 Mar 2017 18:12:16 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "3946b5c4-a0ee-46f3-a8c5-48bed823662b" + "7fbc45a4-cd60-4220-91f9-b713362477cb" ], "x-ms-correlation-request-id": [ - "3946b5c4-a0ee-46f3-a8c5-48bed823662b" + "7fbc45a4-cd60-4220-91f9-b713362477cb" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224206Z:3946b5c4-a0ee-46f3-a8c5-48bed823662b" + "WESTUS2:20170327T181216Z:7fbc45a4-cd60-4220-91f9-b713362477cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19080?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTA4MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "2347026f-7009-47cc-93bb-8e5100ec03b7" + "99249f55-56f9-45ae-a35e-ec83cc68b22a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080\",\r\n \"name\": \"datalakerg19080\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327\",\r\n \"name\": \"datalakerg19327\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:05 GMT" + "Mon, 27 Mar 2017 18:12:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-request-id": [ - "868f36b0-3484-42b4-9a43-24b4a65a9574" + "6bb94ffc-f5a5-47a8-b382-0866349357d4" ], "x-ms-correlation-request-id": [ - "868f36b0-3484-42b4-9a43-24b4a65a9574" + "6bb94ffc-f5a5-47a8-b382-0866349357d4" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224206Z:868f36b0-3484-42b4-9a43-24b4a65a9574" + "WESTUS2:20170327T181216Z:6bb94ffc-f5a5-47a8-b382-0866349357d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTA4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2541fd8-a844-43a2-acd2-3eef4f2620d5" + "c3f0ec86-0d51-45ab-a134-0fa1d0f20ace" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11471' under resource group 'datalakerg19080' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17946' under resource group 'datalakerg19327' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:06 GMT" + "Mon, 27 Mar 2017 18:12:16 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "66e3200d-6733-4693-8748-7745cd275bee" + "b2fcec46-4f6c-4228-9aeb-eac8886e676b" ], "x-ms-correlation-request-id": [ - "66e3200d-6733-4693-8748-7745cd275bee" + "b2fcec46-4f6c-4228-9aeb-eac8886e676b" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224206Z:66e3200d-6733-4693-8748-7745cd275bee" + "WESTUS2:20170327T181217Z:b2fcec46-4f6c-4228-9aeb-eac8886e676b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTA4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11471.azuredatalakestore.net\",\r\n \"accountId\": \"846049ad-34ce-49aa-ae7f-b2a29e8e41d5\",\r\n \"creationTime\": \"2016-11-10T22:42:13.7166385Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:42:13.7166385Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471\",\r\n \"name\": \"testadlfs11471\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17946.azuredatalakestore.net\",\r\n \"accountId\": \"138a4ac9-99f4-4475-b5b8-8c36d1c273df\",\r\n \"creationTime\": \"2017-03-27T18:12:20.129333Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:12:20.129333Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946\",\r\n \"name\": \"testadlfs17946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:39 GMT" + "Mon, 27 Mar 2017 18:12:49 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ae1b74b8-e76a-45da-aa65-f65c26040989" + "eef5ccfe-48ef-4b0e-9330-e891feb2bc2f" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "3f0e836c-56db-4110-8e1e-b39dfa394bb5" + "4388eb3a-68f4-4811-81a2-505756bdc29a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224239Z:3f0e836c-56db-4110-8e1e-b39dfa394bb5" + "WESTUS2:20170327T181250Z:4388eb3a-68f4-4811-81a2-505756bdc29a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTA4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ad95058-30a0-49e2-ba40-f86cd920ff14" + "2048d8c4-6332-4f54-bea2-591c26ac6fad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11471.azuredatalakestore.net\",\r\n \"accountId\": \"846049ad-34ce-49aa-ae7f-b2a29e8e41d5\",\r\n \"creationTime\": \"2016-11-10T22:42:13.7166385Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:42:13.7166385Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471\",\r\n \"name\": \"testadlfs11471\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17946.azuredatalakestore.net\",\r\n \"accountId\": \"138a4ac9-99f4-4475-b5b8-8c36d1c273df\",\r\n \"creationTime\": \"2017-03-27T18:12:20.129333Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:12:20.129333Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946\",\r\n \"name\": \"testadlfs17946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:40 GMT" + "Mon, 27 Mar 2017 18:12:50 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "da879ff3-6ab8-4dc4-b028-4dd7715138bc" + "5f1d4dca-e738-48b1-a5b8-ce3cc1c78c15" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14982" ], "x-ms-correlation-request-id": [ - "c6e1d7e7-d85c-4654-8e48-ebd49ddae779" + "4c0edc92-e69a-4fa1-ad46-07a99e146b3a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224240Z:c6e1d7e7-d85c-4654-8e48-ebd49ddae779" + "WESTUS2:20170327T181251Z:4c0edc92-e69a-4fa1-ad46-07a99e146b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTA4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "35dcd840-099f-4c4c-a471-63656a3ca212" + "f1b2a73c-adac-4138-8003-80707c11662e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"846049ad-34ce-49aa-ae7f-b2a29e8e41d5\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471\",\r\n \"name\": \"testadlfs11471\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"138a4ac9-99f4-4475-b5b8-8c36d1c273df\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946\",\r\n \"name\": \"testadlfs17946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:08 GMT" + "Mon, 27 Mar 2017 18:12:18 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/846049ad-34ce-49aa-ae7f-b2a29e8e41d50?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/138a4ac9-99f4-4475-b5b8-8c36d1c273df0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "63e6b5db-e7a3-45f4-a6da-fc3422675e1c" + "a42cd0d5-e140-4622-9b07-0c389df5a3a1" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "dc0ddc7b-7962-4670-9ab6-9ded4bcb051f" + "d1fbf7a8-026b-4aa1-89d3-99491349bc74" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224208Z:dc0ddc7b-7962-4670-9ab6-9ded4bcb051f" + "WESTUS2:20170327T181219Z:d1fbf7a8-026b-4aa1-89d3-99491349bc74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,21 +664,17 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/846049ad-34ce-49aa-ae7f-b2a29e8e41d50?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzg0NjA0OWFkLTM0Y2UtNDlhYS1hZTdmLWIyYTI5ZThlNDFkNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/138a4ac9-99f4-4475-b5b8-8c36d1c273df0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzOGE0YWM5LTk5ZjQtNDQ3NS1iNWI4LThjMzZkMWMyNzNkZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json" ], @@ -697,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:38 GMT" + "Mon, 27 Mar 2017 18:12:49 GMT" ], "Pragma": [ "no-cache" @@ -705,8 +696,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d9802b62-1547-4877-8bde-d45c6af315f5" + "81443d41-e770-47b3-9b2f-2ac792ea922b" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "a57d8de3-b4b6-438a-aa56-620621a519a8" + "d558b5c4-8ba6-4e1f-966f-748bed63f01b" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224239Z:a57d8de3-b4b6-438a-aa56-620621a519a8" + "WESTUS2:20170327T181250Z:d558b5c4-8ba6-4e1f-966f-748bed63f01b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2757?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzU3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "adb896f0-44eb-4127-b480-8d3cb2c397db" + "4f26db5e-337d-4faf-b32b-fc6d1c038987" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:42:41 GMT" + "Mon, 27 Mar 2017 18:12:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11471.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2757?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt8597?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "a35f8624-9bb0-4fc7-b2a4-d7bd7cb03cb3" + "947f7021-0a27-491b-880c-40bff16b83f4" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2757?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzU3P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a4b8c58-3f8e-4692-be1a-869a19537265" + "bf99e004-ffab-46e0-9d82-36e04b608cef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817762006,\r\n \"modificationTime\": 1478817762058,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638373113,\r\n \"modificationTime\": 1490638373157,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:42:41 GMT" + "Mon, 27 Mar 2017 18:12:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "702df1fe-056d-47b3-8ed2-babeff4cb360" + "8c532d2b-4729-4c85-8750-a4b4be86dce6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2757?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzU3P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da04bfec-d8c9-4af0-8900-a0aa3c4bd41e" + "84af75fe-d7b6-4b16-bf91-2e3a99bea7ea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817762006,\r\n \"modificationTime\": 1478817762589,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638373113,\r\n \"modificationTime\": 1490638374000,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:42:42 GMT" + "Mon, 27 Mar 2017 18:12:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3d89f8be-53cc-4d9c-bb45-aabbb42e5d3c" + "78d6c3ef-b2d4-47c7-9750-1d45e8e20613" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,8 +898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2757?offset=42&op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzU3P29mZnNldD00MiZvcD1BUFBFTkQmYXBwZW5kPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?offset=42&op=APPEND&append=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29mZnNldD00MiZvcD1BUFBFTkQmYXBwZW5kPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -919,14 +910,13 @@ "42" ], "x-ms-client-request-id": [ - "989eed97-6a1c-47d3-8fc0-8dfd3f5d991d" + "b0d6c7cc-902c-4058-b417-c07e81a736ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,16 +931,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:42:41 GMT" + "Mon, 27 Mar 2017 18:12:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7371c698-2560-43d6-a97c-80a4133d2b86" + "9eed5a5d-0dcd-4903-82f0-a5293c753691" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -967,12 +957,12 @@ ], "Names": { ".ctor": [ - "datalakerg19080", - "testdatalake14446", - "testadlfs11471" + "datalakerg19327", + "testdatalake19761", + "testadlfs17946" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt2757" + "SDKTestFolder01/SDKTestFile01.txt8597" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json index 770a724459e9..decf6c179aff 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f93b90e-2165-49cd-bba3-9004b1f796ec" + "e0575692-876d-4a83-9d06-9da6d82c8585" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:51 GMT" + "Mon, 27 Mar 2017 18:16:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "e0308dbf-3880-4893-8add-a7289cf48b20" + "7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" ], "x-ms-correlation-request-id": [ - "e0308dbf-3880-4893-8add-a7289cf48b20" + "7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224651Z:e0308dbf-3880-4893-8add-a7289cf48b20" + "WESTUS2:20170327T181636Z:7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "210e3a56-3ff2-40b4-a874-f4753a58a003" + "365a6005-ed7d-43fd-b15a-625278577a64" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:51 GMT" + "Mon, 27 Mar 2017 18:16:36 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "6b3ea12e-19dd-4b44-ac7a-9919b0f2d2b0" + "2addbb68-ea62-47ff-aa53-90f000b07847" ], "x-ms-correlation-request-id": [ - "6b3ea12e-19dd-4b44-ac7a-9919b0f2d2b0" + "2addbb68-ea62-47ff-aa53-90f000b07847" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224651Z:6b3ea12e-19dd-4b44-ac7a-9919b0f2d2b0" + "WESTUS2:20170327T181636Z:2addbb68-ea62-47ff-aa53-90f000b07847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7700bec-30ac-4806-9ab6-bfa7f61ee3b9" + "e44a8117-c188-456a-a58e-69a085414997" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:52 GMT" + "Mon, 27 Mar 2017 18:16:37 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "d9df6f09-e144-47e3-a19a-e9fd081ca243" + "4ed16b6d-2838-4f49-a004-fc344e8daadb" ], "x-ms-correlation-request-id": [ - "d9df6f09-e144-47e3-a19a-e9fd081ca243" + "4ed16b6d-2838-4f49-a004-fc344e8daadb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224652Z:d9df6f09-e144-47e3-a19a-e9fd081ca243" + "WESTUS2:20170327T181637Z:4ed16b6d-2838-4f49-a004-fc344e8daadb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f71079e-c2fc-40af-b2df-d7bee56ff70c" + "bfeca382-a009-4d37-99c2-b76a1e626f74" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:52 GMT" + "Mon, 27 Mar 2017 18:16:37 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14985" ], "x-ms-request-id": [ - "d0b57072-ba7a-446f-8da7-a8670a99e2e7" + "a1160d86-b19e-4290-8f80-264920e7b4f0" ], "x-ms-correlation-request-id": [ - "d0b57072-ba7a-446f-8da7-a8670a99e2e7" + "a1160d86-b19e-4290-8f80-264920e7b4f0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224652Z:d0b57072-ba7a-446f-8da7-a8670a99e2e7" + "WESTUS2:20170327T181637Z:a1160d86-b19e-4290-8f80-264920e7b4f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37d8fdf6-42f4-41de-845b-8c18becae08e" + "d63a9ea5-0435-4289-b7f2-5e57c24a227f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17600' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16750' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:52 GMT" + "Mon, 27 Mar 2017 18:16:37 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14984" ], "x-ms-request-id": [ - "683cee2e-8695-456c-b97a-54f06190326a" + "415703a2-cdf6-433d-b1f5-d07ebfdd671f" ], "x-ms-correlation-request-id": [ - "683cee2e-8695-456c-b97a-54f06190326a" + "415703a2-cdf6-433d-b1f5-d07ebfdd671f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224652Z:683cee2e-8695-456c-b97a-54f06190326a" + "WESTUS2:20170327T181637Z:415703a2-cdf6-433d-b1f5-d07ebfdd671f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7ccfa79-7769-4946-ad53-c7a563b3b9a1" + "482eaaba-ed3b-438d-8893-04544a7620b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600\",\r\n \"name\": \"datalakerg17600\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750\",\r\n \"name\": \"datalakerg16750\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:53 GMT" + "Mon, 27 Mar 2017 18:16:38 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14983" ], "x-ms-request-id": [ - "8aea61d7-ec2a-4ac5-89d4-e7f2d5e16a5a" + "59325d55-8173-4bf7-9292-7c67360471be" ], "x-ms-correlation-request-id": [ - "8aea61d7-ec2a-4ac5-89d4-e7f2d5e16a5a" + "59325d55-8173-4bf7-9292-7c67360471be" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224653Z:8aea61d7-ec2a-4ac5-89d4-e7f2d5e16a5a" + "WESTUS2:20170327T181638Z:59325d55-8173-4bf7-9292-7c67360471be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "894c1ee7-fbf4-4c18-b9c5-7889373fa3f4" + "3adaf20e-15ea-4b25-a1b8-0cf22b294ca9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600\",\r\n \"name\": \"datalakerg17600\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750\",\r\n \"name\": \"datalakerg16750\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:53 GMT" + "Mon, 27 Mar 2017 18:16:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-request-id": [ - "8af0d9ae-0586-4a03-acb8-792cab52911d" + "0a635e86-7697-453c-8e24-3232bff59f4e" ], "x-ms-correlation-request-id": [ - "8af0d9ae-0586-4a03-acb8-792cab52911d" + "0a635e86-7697-453c-8e24-3232bff59f4e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224653Z:8af0d9ae-0586-4a03-acb8-792cab52911d" + "WESTUS2:20170327T181638Z:0a635e86-7697-453c-8e24-3232bff59f4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ea9c72-2395-4644-ad28-8d9043195d74" + "e7e2d558-b0c1-4e51-973c-a1b680a95a43" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17587' under resource group 'datalakerg17600' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16984' under resource group 'datalakerg16750' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:53 GMT" + "Mon, 27 Mar 2017 18:16:38 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "76df0802-d2bd-41e4-8272-6b3ecdf64347" + "75977099-d576-4e44-a8e1-106351024a34" ], "x-ms-correlation-request-id": [ - "76df0802-d2bd-41e4-8272-6b3ecdf64347" + "75977099-d576-4e44-a8e1-106351024a34" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224653Z:76df0802-d2bd-41e4-8272-6b3ecdf64347" + "WESTUS2:20170327T181639Z:75977099-d576-4e44-a8e1-106351024a34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17587.azuredatalakestore.net\",\r\n \"accountId\": \"0f6e664d-8b57-4e85-b30f-1b05d004f30c\",\r\n \"creationTime\": \"2016-11-10T22:47:00.0039892Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:47:00.0039892Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587\",\r\n \"name\": \"testadlfs17587\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16984.azuredatalakestore.net\",\r\n \"accountId\": \"4c86c33e-77dd-4900-ac91-c9944059e2d1\",\r\n \"creationTime\": \"2017-03-27T18:16:40.8284786Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:16:40.8284786Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984\",\r\n \"name\": \"testadlfs16984\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:47:25 GMT" + "Mon, 27 Mar 2017 18:17:11 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6ffe2e4-5fd5-4ea5-b03c-4462796b4e24" + "491de285-8b1b-4567-8550-02cb98bb2adf" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14985" ], "x-ms-correlation-request-id": [ - "74e76fe6-d196-406f-87e1-5d3f28cfe7eb" + "252e401e-933d-49fe-9196-442f0e77922f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224726Z:74e76fe6-d196-406f-87e1-5d3f28cfe7eb" + "WESTUS2:20170327T181711Z:252e401e-933d-49fe-9196-442f0e77922f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2cac29d-23c6-4ab7-8a35-98211823e587" + "e5e114cc-4172-4c37-a3b6-9b047b894581" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17587.azuredatalakestore.net\",\r\n \"accountId\": \"0f6e664d-8b57-4e85-b30f-1b05d004f30c\",\r\n \"creationTime\": \"2016-11-10T22:47:00.0039892Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:47:00.0039892Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587\",\r\n \"name\": \"testadlfs17587\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16984.azuredatalakestore.net\",\r\n \"accountId\": \"4c86c33e-77dd-4900-ac91-c9944059e2d1\",\r\n \"creationTime\": \"2017-03-27T18:16:40.8284786Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:16:40.8284786Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984\",\r\n \"name\": \"testadlfs16984\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:47:25 GMT" + "Mon, 27 Mar 2017 18:17:11 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4a873abd-a4e5-4778-89bc-0ad18ef9516a" + "03857a7a-380e-4097-8786-96e6660920b1" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14982" ], "x-ms-correlation-request-id": [ - "9c6fa652-403c-44dc-a329-7148b66b7fdc" + "d3a51e87-22fe-47c6-ac66-8f38e6419655" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224726Z:9c6fa652-403c-44dc-a329-7148b66b7fdc" + "WESTUS2:20170327T181712Z:d3a51e87-22fe-47c6-ac66-8f38e6419655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "c59a6b89-bc0a-46ed-8186-3081e77f41a1" + "4955b602-abec-4370-b4a0-4158f50bb0b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0f6e664d-8b57-4e85-b30f-1b05d004f30c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587\",\r\n \"name\": \"testadlfs17587\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4c86c33e-77dd-4900-ac91-c9944059e2d1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984\",\r\n \"name\": \"testadlfs16984\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:46:54 GMT" + "Mon, 27 Mar 2017 18:16:39 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0f6e664d-8b57-4e85-b30f-1b05d004f30c0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4c86c33e-77dd-4900-ac91-c9944059e2d10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4864e005-7f3a-4b29-af97-4d46741f6018" + "b86e8d1a-80f8-4ed8-8077-6d3b32eea914" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "93d71514-a7f7-4daf-8021-ea7a34a8ef25" + "22c9a962-5db8-4263-b846-603a0ac67bbb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224655Z:93d71514-a7f7-4daf-8021-ea7a34a8ef25" + "WESTUS2:20170327T181640Z:22c9a962-5db8-4263-b846-603a0ac67bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0f6e664d-8b57-4e85-b30f-1b05d004f30c0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBmNmU2NjRkLThiNTctNGU4NS1iMzBmLTFiMDVkMDA0ZjMwYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4c86c33e-77dd-4900-ac91-c9944059e2d10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRjODZjMzNlLTc3ZGQtNDkwMC1hYzkxLWM5OTQ0MDU5ZTJkMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:47:25 GMT" + "Mon, 27 Mar 2017 18:17:10 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0692a7ca-e536-4d74-8c41-1717fb89d158" + "836978bd-a633-4ad3-9ccb-eb30a2fadb12" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14987" ], "x-ms-correlation-request-id": [ - "16e2ce8c-7d3b-45c2-9387-fd24e9165e97" + "fc41c6ba-589e-4c23-afb1-dad5cf0b0b46" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224725Z:16e2ce8c-7d3b-45c2-9387-fd24e9165e97" + "WESTUS2:20170327T181711Z:fc41c6ba-589e-4c23-afb1-dad5cf0b0b46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2111?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTExP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "d4bfb574-5d27-4258-aa66-dc031a7b717c" + "1c1fc33b-afc2-4496-b9f4-b32d19795611" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:29 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17587.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2111?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs16984.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3408?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "a2e1c7b7-e889-4069-af1a-3d46fa6b7564" + "b62b1580-63d5-470d-b33e-51f969269bf6" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2111?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "208b4fcc-2d39-4213-8ab8-5c82dd5a2c6b" + "091fd084-4432-4778-b567-8dec5eb1cdc0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818049416,\r\n \"modificationTime\": 1478818049465,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638637420,\r\n \"modificationTime\": 1490638637474,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:29 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a6abf75f-f12b-4f57-8505-f578ffe12e0a" + "f5de3b90-da29-4b7b-9e6a-cdd5e7be7750" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,23 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2111?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5f6df19-991a-42dc-a6ea-9b9e232de977" + "2ae0a418-51f0-493f-968a-072c4dbc95c6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt2111 [29c739c8-cfeb-44f9-afff-d43e69f72aca][2016-11-10T14:47:31.1341119-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt3408 [c11b0622-9103-4336-95bc-dff861fac219][2017-03-27T11:17:18.6811704-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "29c739c8-cfeb-44f9-afff-d43e69f72aca" + "c11b0622-9103-4336-95bc-dff861fac219" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -907,8 +898,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5803?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1ODAzP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -919,14 +910,13 @@ "42" ], "x-ms-client-request-id": [ - "4387b936-4468-43fe-9d96-6cda0784efab" + "3ef5eb81-0b91-409a-854e-eccb510ab07a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,22 +931,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17587.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5803?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs16984.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6668?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "c5ef1abf-6e64-478a-bba5-af8a13e03ae9" + "21e20506-3523-4048-93af-04e3e294335e" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -971,26 +961,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5803?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1ODAzP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c32a7f9-cdef-415e-8349-8ae22ba907c3" + "c36d6513-2bb8-4a87-be64-d5aaec8fe77a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818049819,\r\n \"modificationTime\": 1478818049931,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638637780,\r\n \"modificationTime\": 1490638637843,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,16 +991,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "07862cc8-5f7d-47a0-b30a-3a05052fdd0f" + "082d2970-e70e-4f90-bb5e-f21fe164a9c0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1026,23 +1015,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5803?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1ODAzP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7439f1aa-1105-40bc-bb66-cec9cb814d8c" + "f5755211-5eb3-49af-9ebe-356cc1aa2d9f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt5803 [115cb350-cb90-4271-8267-c8405ea588ce][2016-11-10T14:47:31.2591068-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt6668 [84507f38-b08e-40a6-b77c-f62694174565][2017-03-27T11:17:19.0405274-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -1057,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "115cb350-cb90-4271-8267-c8405ea588ce" + "84507f38-b08e-40a6-b77c-f62694174565" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1081,20 +1069,19 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01503?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAzP29wPU1LRElSUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder019364?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77e5e1bb-af32-4245-8f6b-5af8305e0c30" + "a090af48-8e02-46e8-9030-c9ce3bd51c79" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1112,16 +1099,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "de77eb19-21bd-425f-8c70-cb937c57a82f" + "eb515ede-6c63-425a-a68b-c64d13f580f0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1136,20 +1123,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01503%2FSDKTestConcatFile01.txt?sources=SDKTestFolder01%2FSDKTestFile01.txt2111%2CSDKTestFolder01%2FSDKTestFile01.txt5803&op=CONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAzJTJGU0RLVGVzdENvbmNhdEZpbGUwMS50eHQ/c291cmNlcz1TREtUZXN0Rm9sZGVyMDElMkZTREtUZXN0RmlsZTAxLnR4dDIxMTElMkNTREtUZXN0Rm9sZGVyMDElMkZTREtUZXN0RmlsZTAxLnR4dDU4MDMmb3A9Q09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019364%2FSDKTestConcatFile01.txt?sources=SDKTestFolder01%2FSDKTestFile01.txt3408%2CSDKTestFolder01%2FSDKTestFile01.txt6668&op=CONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P3NvdXJjZXM9U0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4JTJDU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4Jm9wPUNPTkNBVCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39a9c7a0-06df-4542-b1b9-af3737dd68f0" + "86ff465d-9d56-4c51-8653-9fd9777dae70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1164,16 +1150,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f47c7bda-57bb-4848-8cc0-d34fceb21bc6" + "554ff7bb-3ee9-4e87-bd7d-91df80c547e3" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1188,26 +1174,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01503%2FSDKTestConcatFile01.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAzJTJGU0RLVGVzdENvbmNhdEZpbGUwMS50eHQ/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019364%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae542c1e-e528-4cf7-b8d3-6a90729e3782" + "e31efa16-8a17-40f1-ab7d-4aa0006161b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818050759,\r\n \"modificationTime\": 1478818050806,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638638260,\r\n \"modificationTime\": 1490638638291,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1219,16 +1204,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a891dbfb-3cb0-45b2-a00d-fca03bc44813" + "33495cb8-13ea-4445-8b61-affb9c0c1327" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1245,16 +1230,16 @@ ], "Names": { ".ctor": [ - "datalakerg17600", - "testdatalake16651", - "testadlfs17587" + "datalakerg16750", + "testdatalake11945", + "testadlfs16984" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt2111", - "SDKTestFolder01/SDKTestFile01.txt5803" + "SDKTestFolder01/SDKTestFile01.txt3408", + "SDKTestFolder01/SDKTestFile01.txt6668" ], "CreateFolder": [ - "SDKTestFolder01503" + "SDKTestFolder019364" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json index a1c26f96766a..9ada5effbae0 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json @@ -7,21 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fafd701-249e-4f69-96b5-9b99b60fe6b0" + "f9e284be-6581-42c6-86db-f323a0565840" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -32,22 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:45 GMT" + "Mon, 27 Mar 2017 18:09:27 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "c0c6c552-ba33-48f6-ac9b-fff4bbddf0e3" + "4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" ], "x-ms-correlation-request-id": [ - "c0c6c552-ba33-48f6-ac9b-fff4bbddf0e3" + "4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223946Z:c0c6c552-ba33-48f6-ac9b-fff4bbddf0e3" + "WESTUS2:20170327T180928Z:4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,21 +64,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d713408-d99c-4c09-9e91-c08d2c202aca" + "94236c1c-7661-46d5-8ab3-c992fdac0181" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -87,22 +85,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:45 GMT" + "Mon, 27 Mar 2017 18:09:27 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14987" ], "x-ms-request-id": [ - "08912669-54df-4cb1-a852-08abd7a4ae00" + "8bc53be6-e910-4a78-9bdd-35849209bda2" ], "x-ms-correlation-request-id": [ - "08912669-54df-4cb1-a852-08abd7a4ae00" + "8bc53be6-e910-4a78-9bdd-35849209bda2" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223946Z:08912669-54df-4cb1-a852-08abd7a4ae00" + "WESTUS2:20170327T180928Z:8bc53be6-e910-4a78-9bdd-35849209bda2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,21 +118,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b515a6d-ae3a-4320-9ebd-2bb2caf47a56" + "d0ccb26f-9617-4bcf-afde-52653de50d4e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -142,22 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:46 GMT" + "Mon, 27 Mar 2017 18:09:28 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "ef9f8ba6-9c72-4a6f-9aac-70e938354c15" + "dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" ], "x-ms-correlation-request-id": [ - "ef9f8ba6-9c72-4a6f-9aac-70e938354c15" + "dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223947Z:ef9f8ba6-9c72-4a6f-9aac-70e938354c15" + "WESTUS2:20170327T180929Z:dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,21 +175,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9516e050-882b-4e5d-8d18-cd8c4b1a84db" + "98a6269c-0799-4a8b-832e-816df878fb1c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -197,22 +196,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:46 GMT" + "Mon, 27 Mar 2017 18:09:28 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14986" ], "x-ms-request-id": [ - "23b071e4-d49f-4c19-837c-240015859d5c" + "44d0e06e-0454-4488-8688-5087dfb6b3ca" ], "x-ms-correlation-request-id": [ - "23b071e4-d49f-4c19-837c-240015859d5c" + "44d0e06e-0454-4488-8688-5087dfb6b3ca" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223947Z:23b071e4-d49f-4c19-837c-240015859d5c" + "WESTUS2:20170327T180929Z:44d0e06e-0454-4488-8688-5087dfb6b3ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjE1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c94593ff-213d-4d66-9598-5ba187f3668f" + "a3086aab-b42e-4dd7-8493-76a68fdf4045" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12153' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16772' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:47 GMT" + "Mon, 27 Mar 2017 18:09:28 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14985" ], "x-ms-request-id": [ - "6e1b257d-3166-470c-8974-091ba7e8b8a4" + "8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" ], "x-ms-correlation-request-id": [ - "6e1b257d-3166-470c-8974-091ba7e8b8a4" + "8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223947Z:6e1b257d-3166-470c-8974-091ba7e8b8a4" + "WESTUS2:20170327T180929Z:8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,27 +280,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjE1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1b835b0-9085-460c-aa35-f28a69b2a7ed" + "55b64f61-6e7f-43a9-a364-2fcdb266cf70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153\",\r\n \"name\": \"datalakerg12153\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772\",\r\n \"name\": \"datalakerg16772\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -310,22 +307,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:48 GMT" + "Mon, 27 Mar 2017 18:09:29 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14984" ], "x-ms-request-id": [ - "68d2a6c4-bb70-46c8-b8ff-0cc2eac4e4a3" + "ff664557-12cd-4070-9af7-f28d6f15eb31" ], "x-ms-correlation-request-id": [ - "68d2a6c4-bb70-46c8-b8ff-0cc2eac4e4a3" + "ff664557-12cd-4070-9af7-f28d6f15eb31" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223948Z:68d2a6c4-bb70-46c8-b8ff-0cc2eac4e4a3" + "WESTUS2:20170327T180930Z:ff664557-12cd-4070-9af7-f28d6f15eb31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjE1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "5f4b5897-03fb-4d7f-9b77-777c0055280d" + "91c02089-ab24-444c-bb58-ca6358c421a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153\",\r\n \"name\": \"datalakerg12153\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772\",\r\n \"name\": \"datalakerg16772\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:48 GMT" + "Mon, 27 Mar 2017 18:09:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-request-id": [ - "25d2272f-edc8-4c70-b094-fdbc5f808f77" + "1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" ], "x-ms-correlation-request-id": [ - "25d2272f-edc8-4c70-b094-fdbc5f808f77" + "1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223948Z:25d2272f-edc8-4c70-b094-fdbc5f808f77" + "WESTUS2:20170327T180930Z:1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fac3cca-76d7-438e-a19b-b7fcecdf64b3" + "7ae7380b-8c43-4c79-80d6-84c4198f2616" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11498' under resource group 'datalakerg12153' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18233' under resource group 'datalakerg16772' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:48 GMT" + "Mon, 27 Mar 2017 18:09:29 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "c95388fc-7a30-4477-b5c6-437d8bbfa1e4" + "835473b1-8b4d-44ab-b226-deacfe81c55b" ], "x-ms-correlation-request-id": [ - "c95388fc-7a30-4477-b5c6-437d8bbfa1e4" + "835473b1-8b4d-44ab-b226-deacfe81c55b" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223949Z:c95388fc-7a30-4477-b5c6-437d8bbfa1e4" + "WESTUS2:20170327T180930Z:835473b1-8b4d-44ab-b226-deacfe81c55b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,21 +448,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11498.azuredatalakestore.net\",\r\n \"accountId\": \"49723422-a0ce-4661-89d9-4adb63e9440e\",\r\n \"creationTime\": \"2016-11-10T22:39:54.8922418Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:39:54.8922418Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498\",\r\n \"name\": \"testadlfs11498\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18233.azuredatalakestore.net\",\r\n \"accountId\": \"72a82ef7-2ef6-402f-be0a-439dc63d8065\",\r\n \"creationTime\": \"2017-03-27T18:09:32.7886005Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:09:32.7886005Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233\",\r\n \"name\": \"testadlfs18233\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "691" - ], "Content-Type": [ "application/json" ], @@ -478,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:40:20 GMT" + "Mon, 27 Mar 2017 18:10:33 GMT" ], "Pragma": [ "no-cache" @@ -486,8 +480,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "839e59c9-f580-4221-ba7f-cec6e2c06488" + "80fb73e4-c8e0-40d5-a5ad-3420e1e7d796" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-correlation-request-id": [ - "4f175d0b-082a-4eb3-b571-5c24e19f72cb" + "81e0ab3c-6c79-4bbf-95b0-00e7f7a12c49" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224021Z:4f175d0b-082a-4eb3-b571-5c24e19f72cb" + "WESTUS2:20170327T181033Z:81e0ab3c-6c79-4bbf-95b0-00e7f7a12c49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b18b8de0-e91a-4d07-a5c2-8e76cd598958" + "006cd93c-66e8-4fc9-9e9f-7d03611a3e9a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11498.azuredatalakestore.net\",\r\n \"accountId\": \"49723422-a0ce-4661-89d9-4adb63e9440e\",\r\n \"creationTime\": \"2016-11-10T22:39:54.8922418Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:39:54.8922418Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498\",\r\n \"name\": \"testadlfs11498\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18233.azuredatalakestore.net\",\r\n \"accountId\": \"72a82ef7-2ef6-402f-be0a-439dc63d8065\",\r\n \"creationTime\": \"2017-03-27T18:09:32.7886005Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:09:32.7886005Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233\",\r\n \"name\": \"testadlfs18233\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:40:23 GMT" + "Mon, 27 Mar 2017 18:10:33 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9c96015c-56b2-420a-b186-1bb3e04740ab" + "e1665423-f314-4627-94fb-c71545f10827" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-correlation-request-id": [ - "36493efb-ced4-4dc0-bec5-9f3602ada32b" + "150139d6-3810-4f43-a307-7bee26b75863" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224024Z:36493efb-ced4-4dc0-bec5-9f3602ada32b" + "WESTUS2:20170327T181034Z:150139d6-3810-4f43-a307-7bee26b75863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "5110cfab-c3af-41b2-bdea-e0a10fd3e234" + "d44c33f6-2a16-4f48-bbd7-dbfba7fe6bf3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"49723422-a0ce-4661-89d9-4adb63e9440e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498\",\r\n \"name\": \"testadlfs11498\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"72a82ef7-2ef6-402f-be0a-439dc63d8065\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233\",\r\n \"name\": \"testadlfs18233\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:49 GMT" + "Mon, 27 Mar 2017 18:09:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/49723422-a0ce-4661-89d9-4adb63e9440e0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72a82ef7-2ef6-402f-be0a-439dc63d80650?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "65f79bfb-6605-4a2c-ad77-d9b173bd3bac" + "66e3ac20-a07b-4ba9-8dcc-17380602c923" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "1c68aead-9571-41be-864f-129f3ebdb15f" + "73332519-5fef-405d-870e-c6e12fd51ab7" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223950Z:1c68aead-9571-41be-864f-129f3ebdb15f" + "WESTUS2:20170327T180932Z:73332519-5fef-405d-870e-c6e12fd51ab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,21 +664,17 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/49723422-a0ce-4661-89d9-4adb63e9440e0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQ5NzIzNDIyLWEwY2UtNDY2MS04OWQ5LTRhZGI2M2U5NDQwZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72a82ef7-2ef6-402f-be0a-439dc63d80650?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzcyYTgyZWY3LTJlZjYtNDAyZi1iZTBhLTQzOWRjNjNkODA2NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json" ], @@ -697,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:40:19 GMT" + "Mon, 27 Mar 2017 18:10:02 GMT" ], "Pragma": [ "no-cache" @@ -705,8 +696,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "ffc78a30-a86a-4900-b48d-bb7dad0fc016" + "bfeccbbd-4602-4565-963d-7e8214667ff2" ], "X-Content-Type-Options": [ "nosniff" @@ -721,10 +715,73 @@ "14994" ], "x-ms-correlation-request-id": [ - "92affc18-028e-4587-a47a-2fc4be3a6997" + "915312f0-5a5b-4f8c-81e3-c63ec63a9a7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T181002Z:915312f0-5a5b-4f8c-81e3-c63ec63a9a7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72a82ef7-2ef6-402f-be0a-439dc63d80650?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzcyYTgyZWY3LTJlZjYtNDAyZi1iZTBhLTQzOWRjNjNkODA2NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 18:10:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "22ca7368-c518-460f-a5e5-8a208658dde1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "5473382c-2bcd-4501-9c54-cfbaa40ec57d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224020Z:92affc18-028e-4587-a47a-2fc4be3a6997" + "WESTUS2:20170327T181033Z:5473382c-2bcd-4501-9c54-cfbaa40ec57d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +790,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7044?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MDQ0P2FwcGVuZE1vZGU9YXV0b2NyZWF0ZSZvcD1DT05DVVJSRU5UQVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt282?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/YXBwZW5kTW9kZT1hdXRvY3JlYXRlJm9wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -742,7 +799,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "bbca049b-cada-4489-b703-da285bcf472e" + "d93dbcec-5e00-481c-a952-77693d70ab7a" ], "Transfer-Encoding": [ "chunked" @@ -751,14 +808,13 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "\"Appending succeeds.\"", + "ResponseBody": "\"Operation succeeded.\"", "ResponseHeaders": { "Content-Length": [ - "21" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -770,13 +826,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:40:26 GMT" + "Mon, 27 Mar 2017 18:10:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a32643c0-d1cd-42a4-adfa-48b61fbf3ec4" + "73ebdaa9-1865-4ef9-9a83-e3b87fdaee7e" ], "X-Content-Type-Options": [ "nosniff" @@ -788,20 +844,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7044?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MDQ0P29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt282?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/b3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "870ddb69-91e9-4ea8-8f62-e5218a4553f6" + "a53bae95-1a05-43b1-b482-814536f3a663" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "More test contents, that were appended!", @@ -816,7 +871,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:40:26 GMT" + "Mon, 27 Mar 2017 18:10:35 GMT" ], "Pragma": [ "no-cache" @@ -825,10 +880,10 @@ "chunked" ], "x-ms-request-id": [ - "568920af-50d9-4614-8025-3d2963046e75" + "1129fc19-1005-42be-8163-62b49797a0d6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,26 +898,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7044?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MDQ0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt282?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "304480dc-78a4-4890-b953-ceba7ee59e8b" + "38ffb657-629b-4484-93bc-f5cb117329b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817626326,\r\n \"modificationTime\": 1478817626420,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638235492,\r\n \"modificationTime\": 1490638235539,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:40:26 GMT" + "Mon, 27 Mar 2017 18:10:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "72d9c6e5-bfb3-4631-b14a-670c6820d970" + "34be682a-f2b6-46a9-8b59-a1e0e4a662d2" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -900,12 +954,12 @@ ], "Names": { ".ctor": [ - "datalakerg12153", - "testdatalake19057", - "testadlfs11498" + "datalakerg16772", + "testdatalake12391", + "testadlfs18233" ], "DataLakeStoreFileSystemConcurrentAppendCreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7044" + "SDKTestFolder01/SDKTestFile01.txt282" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json index c180cc83032e..e8f49bce154b 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dfec45c-2016-4b00-b6ed-92a182bc894f" + "a65cbef3-6688-458f-a2af-8c7478ffe5f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:52 GMT" + "Mon, 27 Mar 2017 18:04:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "2cfd00bb-00b6-4221-9e7c-81f65af49a2a" + "1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" ], "x-ms-correlation-request-id": [ - "2cfd00bb-00b6-4221-9e7c-81f65af49a2a" + "1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225652Z:2cfd00bb-00b6-4221-9e7c-81f65af49a2a" + "CENTRALUS:20170327T180436Z:1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e605217-efca-4734-96b8-274fee801bee" + "add16008-abfd-4a7d-a3c9-02c3b783d29a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:52 GMT" + "Mon, 27 Mar 2017 18:04:36 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-request-id": [ - "f4ba8203-637a-4f47-a70d-bfa08f945efe" + "f791a087-3a16-40fc-91ae-628d1de3db75" ], "x-ms-correlation-request-id": [ - "f4ba8203-637a-4f47-a70d-bfa08f945efe" + "f791a087-3a16-40fc-91ae-628d1de3db75" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225653Z:f4ba8203-637a-4f47-a70d-bfa08f945efe" + "CENTRALUS:20170327T180436Z:f791a087-3a16-40fc-91ae-628d1de3db75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bed3e68-b356-4e8e-8641-032a34e87001" + "26901827-6753-4d7a-95fe-8dce60cd142e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:53 GMT" + "Mon, 27 Mar 2017 18:04:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "4f038b56-248c-4e53-bbfb-45919ae6824a" + "acc56a40-77f5-48e8-895e-91c345a02c33" ], "x-ms-correlation-request-id": [ - "4f038b56-248c-4e53-bbfb-45919ae6824a" + "acc56a40-77f5-48e8-895e-91c345a02c33" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225653Z:4f038b56-248c-4e53-bbfb-45919ae6824a" + "CENTRALUS:20170327T180437Z:acc56a40-77f5-48e8-895e-91c345a02c33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7326f132-2418-489b-b176-2b81679a034e" + "9e936890-c022-406e-b368-a1b622d497be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:53 GMT" + "Mon, 27 Mar 2017 18:04:36 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14998" ], "x-ms-request-id": [ - "0506abe7-beaf-4620-b866-c1db3bd2f8a3" + "60aae6af-069d-42cc-9fa9-ac4358496785" ], "x-ms-correlation-request-id": [ - "0506abe7-beaf-4620-b866-c1db3bd2f8a3" + "60aae6af-069d-42cc-9fa9-ac4358496785" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225653Z:0506abe7-beaf-4620-b866-c1db3bd2f8a3" + "CENTRALUS:20170327T180437Z:60aae6af-069d-42cc-9fa9-ac4358496785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15696?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "978467d4-3795-48c7-80a8-0a80001fa138" + "964e240c-7f0b-4836-a956-268652945351" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg15696' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17573' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:53 GMT" + "Mon, 27 Mar 2017 18:04:37 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-request-id": [ - "51aca814-28bd-487f-8c35-a6d13b221b58" + "e5464ae9-f7da-40c1-83e6-cc52a9411efb" ], "x-ms-correlation-request-id": [ - "51aca814-28bd-487f-8c35-a6d13b221b58" + "e5464ae9-f7da-40c1-83e6-cc52a9411efb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225653Z:51aca814-28bd-487f-8c35-a6d13b221b58" + "CENTRALUS:20170327T180437Z:e5464ae9-f7da-40c1-83e6-cc52a9411efb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15696?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d41aec15-2c06-400e-b3dc-bb512bcd788a" + "c0f22498-ecae-4e27-b940-42f3d504f79a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696\",\r\n \"name\": \"datalakerg15696\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573\",\r\n \"name\": \"datalakerg17573\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:54 GMT" + "Mon, 27 Mar 2017 18:04:37 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-request-id": [ - "e4f2bb04-9e86-4ce5-b9a7-2f7792f3399c" + "7f397681-4ea5-489f-8600-d7419ed39a3d" ], "x-ms-correlation-request-id": [ - "e4f2bb04-9e86-4ce5-b9a7-2f7792f3399c" + "7f397681-4ea5-489f-8600-d7419ed39a3d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225654Z:e4f2bb04-9e86-4ce5-b9a7-2f7792f3399c" + "CENTRALUS:20170327T180438Z:7f397681-4ea5-489f-8600-d7419ed39a3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15696?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "8158e3d5-d4d5-4a14-823f-93a544b8fb0f" + "5c4fef0a-d705-4b30-835b-b7cb10c5afaa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696\",\r\n \"name\": \"datalakerg15696\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573\",\r\n \"name\": \"datalakerg17573\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:53 GMT" + "Mon, 27 Mar 2017 18:04:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-request-id": [ - "690b7dad-85f6-4965-8963-70d42432f10b" + "5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" ], "x-ms-correlation-request-id": [ - "690b7dad-85f6-4965-8963-70d42432f10b" + "5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225654Z:690b7dad-85f6-4965-8963-70d42432f10b" + "CENTRALUS:20170327T180438Z:5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxNjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a96c0d5c-2a15-4b95-80fe-b7d888137db6" + "0e2453d2-4820-41dc-b651-2f3c0c98c7d2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13161' under resource group 'datalakerg15696' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17707' under resource group 'datalakerg17573' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:54 GMT" + "Mon, 27 Mar 2017 18:04:37 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "242db19d-f46d-458a-a23b-224b039aaa5e" + "359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" ], "x-ms-correlation-request-id": [ - "242db19d-f46d-458a-a23b-224b039aaa5e" + "359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225655Z:242db19d-f46d-458a-a23b-224b039aaa5e" + "CENTRALUS:20170327T180438Z:359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxNjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13161.azuredatalakestore.net\",\r\n \"accountId\": \"134506c4-d3dd-483a-9c26-4beadbb6a4dc\",\r\n \"creationTime\": \"2016-11-10T22:56:59.7562987Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:56:59.7562987Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161\",\r\n \"name\": \"testadlfs13161\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17707.azuredatalakestore.net\",\r\n \"accountId\": \"6ea2ea8d-3960-465f-b359-b4eb37e9fd30\",\r\n \"creationTime\": \"2017-03-27T18:04:40.0552483Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:04:40.0552483Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707\",\r\n \"name\": \"testadlfs17707\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:57:26 GMT" + "Mon, 27 Mar 2017 18:05:41 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8df2d1ae-b386-4490-8b3a-a2d9a6d4f20d" + "76eb1877-c2e7-4b8c-82b7-e29110eb191a" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "965d42b5-09e0-480f-bf1f-358e58ff73a7" + "e68154e3-94f4-40a4-8027-a9317e81dc18" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225726Z:965d42b5-09e0-480f-bf1f-358e58ff73a7" + "CENTRALUS:20170327T180542Z:e68154e3-94f4-40a4-8027-a9317e81dc18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxNjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a72bcdce-83f9-42cf-9d81-eaf45874c24c" + "145f181f-14a4-49f9-a63a-5373dd43e582" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13161.azuredatalakestore.net\",\r\n \"accountId\": \"134506c4-d3dd-483a-9c26-4beadbb6a4dc\",\r\n \"creationTime\": \"2016-11-10T22:56:59.7562987Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:56:59.7562987Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161\",\r\n \"name\": \"testadlfs13161\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17707.azuredatalakestore.net\",\r\n \"accountId\": \"6ea2ea8d-3960-465f-b359-b4eb37e9fd30\",\r\n \"creationTime\": \"2017-03-27T18:04:40.0552483Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:04:40.0552483Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707\",\r\n \"name\": \"testadlfs17707\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:57:26 GMT" + "Mon, 27 Mar 2017 18:05:41 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc2a433e-9ade-436c-8895-fccd5c5db55c" + "aa43fbe7-b857-4ffb-85ea-bf50ea05aa48" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14995" ], "x-ms-correlation-request-id": [ - "f3d487c7-2e44-4845-8172-4cbc40db71e7" + "72166533-593f-4619-b2f4-a9a73a282ca1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225727Z:f3d487c7-2e44-4845-8172-4cbc40db71e7" + "CENTRALUS:20170327T180542Z:72166533-593f-4619-b2f4-a9a73a282ca1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxNjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "b3b8d641-5b56-4a41-b56d-187ff5b7a261" + "a18ff6bd-76db-4f34-b371-a640b987b763" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"134506c4-d3dd-483a-9c26-4beadbb6a4dc\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161\",\r\n \"name\": \"testadlfs13161\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"6ea2ea8d-3960-465f-b359-b4eb37e9fd30\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707\",\r\n \"name\": \"testadlfs17707\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:54 GMT" + "Mon, 27 Mar 2017 18:04:39 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/134506c4-d3dd-483a-9c26-4beadbb6a4dc0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6ea2ea8d-3960-465f-b359-b4eb37e9fd300?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "86a05094-b18b-46d1-8171-1ce51a920f66" + "84ad99af-5ef7-4ef2-aa79-0ad4cb1c9991" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "f72901e0-07b4-4664-8468-b1be2798a96c" + "8f2ee946-8181-4d0f-b1d7-e3ab6c23e13f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225655Z:f72901e0-07b4-4664-8468-b1be2798a96c" + "CENTRALUS:20170327T180440Z:8f2ee946-8181-4d0f-b1d7-e3ab6c23e13f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,76 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/134506c4-d3dd-483a-9c26-4beadbb6a4dc0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzNDUwNmM0LWQzZGQtNDgzYS05YzI2LTRiZWFkYmI2YTRkYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6ea2ea8d-3960-465f-b359-b4eb37e9fd300?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZlYTJlYThkLTM5NjAtNDY1Zi1iMzU5LWI0ZWIzN2U5ZmQzMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 18:05:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d95f4d0f-2ab5-4329-9cab-f84cc90d7b47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "f4f808e7-4043-4583-af02-402215667a0d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170327T180510Z:f4f808e7-4043-4583-af02-402215667a0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6ea2ea8d-3960-465f-b359-b4eb37e9fd300?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZlYTJlYThkLTM5NjAtNDY1Zi1iMzU5LWI0ZWIzN2U5ZmQzMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +751,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:57:26 GMT" + "Mon, 27 Mar 2017 18:05:40 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +763,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8ec750bf-d9cf-442b-bd02-0c3635d22886" + "4f82b938-5255-4886-a837-e0e36c29dd5d" ], "X-Content-Type-Options": [ "nosniff" @@ -721,10 +778,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "3ac5d7e0-ab22-4725-b12d-4d673e151cdc" + "a17cd4a2-1b9b-4493-9e98-1e33d23ed232" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225726Z:3ac5d7e0-ab22-4725-b12d-4d673e151cdc" + "CENTRALUS:20170327T180541Z:a17cd4a2-1b9b-4493-9e98-1e33d23ed232" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +790,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1909?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +802,13 @@ "0" ], "x-ms-client-request-id": [ - "210d4043-fa98-4481-b282-3cf58c35715d" + "f07fc03e-4633-4e76-85ac-f7eb63fbc1b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +823,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:29 GMT" + "Mon, 27 Mar 2017 18:05:44 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs13161.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt1909?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17707.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4282?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "175a5938-f9b8-4386-8dfa-ba1c860ea99f" + "8c6eb0cb-5a68-4649-921e-b76957f93467" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +853,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1909?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c425be72-6ec2-4621-a6df-5585d30ddbdf" + "1ce252ad-36f6-4d5d-b844-63f18ced95ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818650308,\r\n \"modificationTime\": 1478818650308,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637944774,\r\n \"modificationTime\": 1490637944774,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +883,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:29 GMT" + "Mon, 27 Mar 2017 18:05:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ba68aac0-d64e-49ac-b48f-64fe602e011e" + "49ce7ef9-21b9-41ff-b330-a3d4715bf5c7" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +907,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1909?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0853e7b8-a16b-42a0-8b4e-23f3d64249c7" + "f1942190-6484-4703-ad71-8e9637d770a0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818650308,\r\n \"modificationTime\": 1478818650605,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637944774,\r\n \"modificationTime\": 1490637945274,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +937,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:30 GMT" + "Mon, 27 Mar 2017 18:05:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2331cbf7-e6e1-4e1d-87f0-4a2a533af8a7" + "f6c79b0d-5889-494c-bb9e-ac2f9f905a56" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,8 +961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1909?op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt4282?op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -916,7 +970,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "decdc37b-6bbf-4d20-9a2d-366cd787041c" + "1ae14adb-481f-4978-a62a-dbe6fda2cc1e" ], "Transfer-Encoding": [ "chunked" @@ -925,14 +979,13 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "\"Appending succeeds.\"", + "ResponseBody": "\"Operation succeeded.\"", "ResponseHeaders": { "Content-Length": [ - "21" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -944,13 +997,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:30 GMT" + "Mon, 27 Mar 2017 18:05:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5219f554-03c3-49cf-8c41-743f0000cb55" + "4716c180-c924-473e-acf0-cc2df9a0dfb6" ], "X-Content-Type-Options": [ "nosniff" @@ -962,20 +1015,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1909?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d110bdd-e516-4108-a931-cf5c77b10af8" + "0d486127-4c7d-4d27-ac6c-151d42136cc1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "More test contents, that were appended!", @@ -990,7 +1042,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:30 GMT" + "Mon, 27 Mar 2017 18:05:45 GMT" ], "Pragma": [ "no-cache" @@ -999,10 +1051,10 @@ "chunked" ], "x-ms-request-id": [ - "c28eef3f-948c-44ae-a5dc-c4c9ef3a1151" + "02661fe5-d774-48df-a7ce-7e442214813e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1019,12 +1071,12 @@ ], "Names": { ".ctor": [ - "datalakerg15696", - "testdatalake1254", - "testadlfs13161" + "datalakerg17573", + "testdatalake18488", + "testadlfs17707" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt1909" + "SDKTestFolder01/SDKTestFile01.txt4282" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json index a186a2412551..93457f0928b9 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d7386ea-27a9-4eb8-8360-a116bbdb1188" + "06be8185-4095-4190-9e56-96c2357e405d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +28,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:20 GMT" + "Mon, 27 Mar 2017 18:24:28 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +43,13 @@ "1199" ], "x-ms-request-id": [ - "15d7c34a-b5ac-49ec-9b65-20c1e68bea36" + "082d5b3e-ed4d-4955-9ce5-be66adabcb59" ], "x-ms-correlation-request-id": [ - "15d7c34a-b5ac-49ec-9b65-20c1e68bea36" + "082d5b3e-ed4d-4955-9ce5-be66adabcb59" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230220Z:15d7c34a-b5ac-49ec-9b65-20c1e68bea36" + "CENTRALUS:20170327T182428Z:082d5b3e-ed4d-4955-9ce5-be66adabcb59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db5b23fc-0807-461a-9922-377c852c31d4" + "2c7619f4-4aea-4fff-9bd0-22c743451f9b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:20 GMT" + "Mon, 27 Mar 2017 18:24:28 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-request-id": [ - "2aa72164-2435-4dd8-9760-6049dd23d403" + "01197303-e2ed-4e0a-a399-21780f6d17b3" ], "x-ms-correlation-request-id": [ - "2aa72164-2435-4dd8-9760-6049dd23d403" + "01197303-e2ed-4e0a-a399-21780f6d17b3" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230220Z:2aa72164-2435-4dd8-9760-6049dd23d403" + "CENTRALUS:20170327T182428Z:01197303-e2ed-4e0a-a399-21780f6d17b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9a5b11e-4de5-4f64-a497-7568514e06d0" + "18a78014-0347-4474-a556-abcd13c7413b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,11 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:20 GMT" + "Mon, 27 Mar 2017 18:24:29 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -151,13 +154,13 @@ "1198" ], "x-ms-request-id": [ - "23d57a87-da37-42ff-a15d-5354ab07ee26" + "ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" ], "x-ms-correlation-request-id": [ - "23d57a87-da37-42ff-a15d-5354ab07ee26" + "ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230221Z:23d57a87-da37-42ff-a15d-5354ab07ee26" + "CENTRALUS:20170327T182429Z:ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a8ecb54-48ad-4757-a92b-47d4c508e074" + "758c1b55-f127-4981-a661-671409c8a494" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:21 GMT" + "Mon, 27 Mar 2017 18:24:29 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "6455781d-a5b8-44b1-a3b7-7b812d8698cc" + "179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" ], "x-ms-correlation-request-id": [ - "6455781d-a5b8-44b1-a3b7-7b812d8698cc" + "179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230221Z:6455781d-a5b8-44b1-a3b7-7b812d8698cc" + "CENTRALUS:20170327T182429Z:179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19938?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTkzOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa837517-abf1-4e76-855a-b61bfa0e7153" + "b469cb7b-0eec-4766-8a89-96112aabdd85" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19938' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12974' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:21 GMT" + "Mon, 27 Mar 2017 18:24:29 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-request-id": [ - "fdb18417-3398-4cf4-987a-b816a1d5517f" + "393440f2-793f-4a99-a313-fd49ee4cda7a" ], "x-ms-correlation-request-id": [ - "fdb18417-3398-4cf4-987a-b816a1d5517f" + "393440f2-793f-4a99-a313-fd49ee4cda7a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230221Z:fdb18417-3398-4cf4-987a-b816a1d5517f" + "CENTRALUS:20170327T182429Z:393440f2-793f-4a99-a313-fd49ee4cda7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19938?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTkzOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4f932fc-0842-4e4c-9f5a-d34c29869ad4" + "276e819f-aac2-4d2f-a2d3-723c5b3ce9a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938\",\r\n \"name\": \"datalakerg19938\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974\",\r\n \"name\": \"datalakerg12974\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:22 GMT" + "Mon, 27 Mar 2017 18:24:30 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-request-id": [ - "4ca98a62-bdfb-436a-a501-2cb2f0645dc4" + "f9de781c-1255-4adc-a4d2-089da4a99589" ], "x-ms-correlation-request-id": [ - "4ca98a62-bdfb-436a-a501-2cb2f0645dc4" + "f9de781c-1255-4adc-a4d2-089da4a99589" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230223Z:4ca98a62-bdfb-436a-a501-2cb2f0645dc4" + "CENTRALUS:20170327T182430Z:f9de781c-1255-4adc-a4d2-089da4a99589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19938?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTkzOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "cb90367a-b591-4496-85a2-380cf71c0c10" + "1b9c8956-beb2-4135-b9e3-d2bbf69c064f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938\",\r\n \"name\": \"datalakerg19938\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974\",\r\n \"name\": \"datalakerg12974\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,7 +370,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:22 GMT" + "Mon, 27 Mar 2017 18:24:30 GMT" ], "Pragma": [ "no-cache" @@ -380,13 +379,13 @@ "1197" ], "x-ms-request-id": [ - "53f3d05a-9742-45ad-936e-36695843d089" + "65b0fef5-1756-46b0-8e90-53c8ed903351" ], "x-ms-correlation-request-id": [ - "53f3d05a-9742-45ad-936e-36695843d089" + "65b0fef5-1756-46b0-8e90-53c8ed903351" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230223Z:53f3d05a-9742-45ad-936e-36695843d089" + "CENTRALUS:20170327T182430Z:65b0fef5-1756-46b0-8e90-53c8ed903351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTkzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd8abc-c3b1-4412-8dcf-4738027dff28" + "ff306566-9046-4547-9670-f2db4c093e00" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11864' under resource group 'datalakerg19938' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17767' under resource group 'datalakerg12974' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:23 GMT" + "Mon, 27 Mar 2017 18:24:30 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "f2f37ffc-d905-49da-9d27-44319b320a19" + "b8301618-b35d-4df0-9432-4da92489cd19" ], "x-ms-correlation-request-id": [ - "f2f37ffc-d905-49da-9d27-44319b320a19" + "b8301618-b35d-4df0-9432-4da92489cd19" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230223Z:f2f37ffc-d905-49da-9d27-44319b320a19" + "CENTRALUS:20170327T182431Z:b8301618-b35d-4df0-9432-4da92489cd19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTkzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11864.azuredatalakestore.net\",\r\n \"accountId\": \"a6b19088-106c-4e39-9dd9-2c9be05ec260\",\r\n \"creationTime\": \"2016-11-10T23:02:30.0728648Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:02:30.0728648Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864\",\r\n \"name\": \"testadlfs11864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17767.azuredatalakestore.net\",\r\n \"accountId\": \"111fdfd2-4944-419d-a090-5d9bac0e1389\",\r\n \"creationTime\": \"2017-03-27T18:24:32.5561174Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:24:32.5561174Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767\",\r\n \"name\": \"testadlfs17767\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:56 GMT" + "Mon, 27 Mar 2017 18:25:03 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dbf2f496-318a-4640-9d2b-f0346e5cd39b" + "201e7606-6416-4eca-885e-e93bd13a6b24" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14999" ], "x-ms-correlation-request-id": [ - "43224f52-0367-480d-86ee-d4ede5cf1b7d" + "e683d00f-bd58-4e4a-922a-828dd67caed5" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230256Z:43224f52-0367-480d-86ee-d4ede5cf1b7d" + "CENTRALUS:20170327T182503Z:e683d00f-bd58-4e4a-922a-828dd67caed5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTkzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a3fa32f-4692-440f-afca-767234806886" + "25bbb917-35ac-49aa-8e79-8f1a947e0899" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11864.azuredatalakestore.net\",\r\n \"accountId\": \"a6b19088-106c-4e39-9dd9-2c9be05ec260\",\r\n \"creationTime\": \"2016-11-10T23:02:30.0728648Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:02:30.0728648Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864\",\r\n \"name\": \"testadlfs11864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17767.azuredatalakestore.net\",\r\n \"accountId\": \"111fdfd2-4944-419d-a090-5d9bac0e1389\",\r\n \"creationTime\": \"2017-03-27T18:24:32.5561174Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:24:32.5561174Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767\",\r\n \"name\": \"testadlfs17767\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:56 GMT" + "Mon, 27 Mar 2017 18:25:03 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6e03305a-b316-4b21-bc9b-34d2919a5f3b" + "798feaed-103d-4172-b98d-41539956ff47" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14991" ], "x-ms-correlation-request-id": [ - "86dce131-8f47-4d51-b453-014893ec10bf" + "1d7e35eb-3a5e-4276-90bc-e7f31ad75bf0" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230257Z:86dce131-8f47-4d51-b453-014893ec10bf" + "CENTRALUS:20170327T182503Z:1d7e35eb-3a5e-4276-90bc-e7f31ad75bf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTkzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "75bc5bc8-c66c-48bc-b7f5-0cf91dd6b0c8" + "4f953a4b-82cd-4385-89bd-3071ec154ad5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a6b19088-106c-4e39-9dd9-2c9be05ec260\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864\",\r\n \"name\": \"testadlfs11864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"111fdfd2-4944-419d-a090-5d9bac0e1389\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767\",\r\n \"name\": \"testadlfs17767\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:25 GMT" + "Mon, 27 Mar 2017 18:24:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a6b19088-106c-4e39-9dd9-2c9be05ec2600?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/111fdfd2-4944-419d-a090-5d9bac0e13890?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "7d3e6cb7-d12c-4859-9330-723f4e080b23" + "38e2cef7-b32d-4da3-b586-c648cd98efea" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "26c3b0e1-1fdd-44e5-a2c0-f3a722259690" + "dadc5cc4-0d88-4f1e-b380-61047f9e4ffe" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230225Z:26c3b0e1-1fdd-44e5-a2c0-f3a722259690" + "CENTRALUS:20170327T182432Z:dadc5cc4-0d88-4f1e-b380-61047f9e4ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a6b19088-106c-4e39-9dd9-2c9be05ec2600?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2E2YjE5MDg4LTEwNmMtNGUzOS05ZGQ5LTJjOWJlMDVlYzI2MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/111fdfd2-4944-419d-a090-5d9bac0e13890?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzExMWZkZmQyLTQ5NDQtNDE5ZC1hMDkwLTVkOWJhYzBlMTM4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:56 GMT" + "Mon, 27 Mar 2017 18:25:01 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c04842dd-710c-4292-9a74-386dd5b21bd2" + "babb3def-645e-4ce5-9bff-e956b426b61a" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "79a1fdc8-d814-4137-977d-4977be302a1a" + "e854d296-08d7-48ab-81ab-09d7bd5e52c9" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230256Z:79a1fdc8-d814-4137-977d-4977be302a1a" + "CENTRALUS:20170327T182502Z:e854d296-08d7-48ab-81ab-09d7bd5e52c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3275?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjc1P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "63fb1a26-7c52-4f1b-9b30-e1e63fc77358" + "f00b540e-8e48-448f-bebe-ecc85d5bfc3d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:59 GMT" + "Mon, 27 Mar 2017 18:25:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11864.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3275?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17767.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt174?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "2c3902b4-70f0-4647-bfa4-e50d801def61" + "ce4d5b30-48b5-48d7-8601-6d20faca7264" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3275?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjc1P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a13443c5-823d-41e6-acc0-9a24a52d2cdc" + "1c7f6dbd-94ae-42c4-ba61-00031775f040" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818978963,\r\n \"modificationTime\": 1478818979111,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639104809,\r\n \"modificationTime\": 1490639104883,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:59 GMT" + "Mon, 27 Mar 2017 18:25:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d19e5345-f924-4e78-a50f-3b7db54cfb9c" + "a1a57898-af61-477f-9177-5afedc849b67" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,20 +844,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3275?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjc1P3JlY3Vyc2l2ZT1mYWxzZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/cmVjdXJzaXZlPWZhbHNlJm9wPURFTEVURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acb30935-4ca6-4848-8b81-0bc4f3b48e89" + "d80cd98a-b5f3-47ef-a0fa-f2e3397a60fa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:00 GMT" + "Mon, 27 Mar 2017 18:25:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "637d2582-9d47-46dd-84ae-bb40ef2012e5" + "40f453b8-a3fd-4102-bf6c-59838733e103" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,20 +898,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3275?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjc1P3JlY3Vyc2l2ZT1mYWxzZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/cmVjdXJzaXZlPWZhbHNlJm9wPURFTEVURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41a4154f-1fb1-46df-b4bc-88d60119135f" + "d33f4fac-0125-44cb-9627-6af164fc973e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:00 GMT" + "Mon, 27 Mar 2017 18:25:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1e202d87-c7e6-45a3-8cad-4c106b141484" + "b15d44d4-5b6e-44c1-aaf9-9ba7e99bb7e6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -964,12 +954,12 @@ ], "Names": { ".ctor": [ - "datalakerg19938", - "testdatalake13489", - "testadlfs11864" + "datalakerg12974", + "testdatalake15928", + "testadlfs17767" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3275" + "SDKTestFolder01/SDKTestFile01.txt174" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json index 995a4fd042d0..8a019317df26 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "faad5896-6f5b-4600-b466-b8781339fad8" + "fdcebaf5-ef7d-4f7b-a31f-cffa4ed103ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +28,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:17 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +43,13 @@ "1199" ], "x-ms-request-id": [ - "0a6296f3-90b5-47bb-8a03-63539723d1af" + "e00babd9-c7fe-4004-8939-b9e94df9a928" ], "x-ms-correlation-request-id": [ - "0a6296f3-90b5-47bb-8a03-63539723d1af" + "e00babd9-c7fe-4004-8939-b9e94df9a928" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223618Z:0a6296f3-90b5-47bb-8a03-63539723d1af" + "CENTRALUS:20170327T180548Z:e00babd9-c7fe-4004-8939-b9e94df9a928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e1356e7-8d6a-4ff4-85c4-c2cb8b7b1df2" + "7dcb9686-14b1-47b5-89dd-d1749fe5e5b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:17 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" @@ -96,13 +97,13 @@ "14999" ], "x-ms-request-id": [ - "0d3250b8-a4c8-40f7-9593-83132259b824" + "5250d54b-c679-44f3-8427-9f1e1ad9596a" ], "x-ms-correlation-request-id": [ - "0d3250b8-a4c8-40f7-9593-83132259b824" + "5250d54b-c679-44f3-8427-9f1e1ad9596a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223618Z:0d3250b8-a4c8-40f7-9593-83132259b824" + "CENTRALUS:20170327T180548Z:5250d54b-c679-44f3-8427-9f1e1ad9596a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01c78487-02d0-431c-99f0-72336d2cea09" + "87bf9b19-c61d-467e-b9fe-d42be8ac3b45" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,11 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:18 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -151,13 +154,13 @@ "1198" ], "x-ms-request-id": [ - "59578713-754b-4e80-97d7-1eef4fdd00a2" + "a0f07205-cd57-4937-bfe4-f398338f434d" ], "x-ms-correlation-request-id": [ - "59578713-754b-4e80-97d7-1eef4fdd00a2" + "a0f07205-cd57-4937-bfe4-f398338f434d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223619Z:59578713-754b-4e80-97d7-1eef4fdd00a2" + "CENTRALUS:20170327T180549Z:a0f07205-cd57-4937-bfe4-f398338f434d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3ad692c-37b0-46b6-b787-2a844141ae07" + "05c3dd2c-6da1-445d-9647-9c9c6bd5e364" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:18 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" @@ -206,13 +208,13 @@ "14998" ], "x-ms-request-id": [ - "7842948e-1912-4d77-8fd2-211b594f2ae6" + "7e854e12-0f27-4adb-a5ce-567dd5275584" ], "x-ms-correlation-request-id": [ - "7842948e-1912-4d77-8fd2-211b594f2ae6" + "7e854e12-0f27-4adb-a5ce-567dd5275584" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223619Z:7842948e-1912-4d77-8fd2-211b594f2ae6" + "CENTRALUS:20170327T180549Z:7e854e12-0f27-4adb-a5ce-567dd5275584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7347e76-d4e7-4dfa-857a-abca12dfa20a" + "3d7cbc5d-2290-4a14-873f-da349b30dbee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19600' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1538' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:18 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" @@ -264,13 +265,13 @@ "14997" ], "x-ms-request-id": [ - "08e80346-14d8-47e7-89a8-7ff9f1610ac9" + "c0607a1f-7d22-4762-8bb0-6dca57af2adb" ], "x-ms-correlation-request-id": [ - "08e80346-14d8-47e7-89a8-7ff9f1610ac9" + "c0607a1f-7d22-4762-8bb0-6dca57af2adb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223619Z:08e80346-14d8-47e7-89a8-7ff9f1610ac9" + "CENTRALUS:20170327T180549Z:c0607a1f-7d22-4762-8bb0-6dca57af2adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4219213-2169-42e0-9a56-cb730267ef9d" + "5de01736-1d90-48a6-8468-83ccd666efb9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600\",\r\n \"name\": \"datalakerg19600\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538\",\r\n \"name\": \"datalakerg1538\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:19 GMT" + "Mon, 27 Mar 2017 18:05:49 GMT" ], "Pragma": [ "no-cache" @@ -319,13 +319,13 @@ "14996" ], "x-ms-request-id": [ - "5de6fb7c-f158-43fc-845d-cde3ff3a5c44" + "d3bf6464-87b5-4105-8c23-f4fd938fc36c" ], "x-ms-correlation-request-id": [ - "5de6fb7c-f158-43fc-845d-cde3ff3a5c44" + "d3bf6464-87b5-4105-8c23-f4fd938fc36c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223620Z:5de6fb7c-f158-43fc-845d-cde3ff3a5c44" + "CENTRALUS:20170327T180550Z:d3bf6464-87b5-4105-8c23-f4fd938fc36c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "f73a0c2a-34b0-482f-acfd-94e58f70742f" + "a67f3597-e349-47be-8483-9f36377cb4a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600\",\r\n \"name\": \"datalakerg19600\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538\",\r\n \"name\": \"datalakerg1538\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,7 +370,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:19 GMT" + "Mon, 27 Mar 2017 18:05:49 GMT" ], "Pragma": [ "no-cache" @@ -380,13 +379,13 @@ "1197" ], "x-ms-request-id": [ - "a29975d7-e55c-415e-9403-3d9caec35c2e" + "37544070-1463-40d5-899e-133f6b2d5f45" ], "x-ms-correlation-request-id": [ - "a29975d7-e55c-415e-9403-3d9caec35c2e" + "37544070-1463-40d5-899e-133f6b2d5f45" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223620Z:a29975d7-e55c-415e-9403-3d9caec35c2e" + "CENTRALUS:20170327T180550Z:37544070-1463-40d5-899e-133f6b2d5f45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c534b70a-0f3a-44eb-9a0b-910800125859" + "2e86a7be-929f-4d91-8ba3-3850e6de4629" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs14264' under resource group 'datalakerg19600' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1182' under resource group 'datalakerg1538' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "164" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:19 GMT" + "Mon, 27 Mar 2017 18:05:50 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "0dbbc763-eade-4356-ad63-703a8fa95ab6" + "d09e7175-a35a-49ee-b76d-77cbf97ff0e5" ], "x-ms-correlation-request-id": [ - "0dbbc763-eade-4356-ad63-703a8fa95ab6" + "d09e7175-a35a-49ee-b76d-77cbf97ff0e5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223620Z:0dbbc763-eade-4356-ad63-703a8fa95ab6" + "CENTRALUS:20170327T180550Z:d09e7175-a35a-49ee-b76d-77cbf97ff0e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14264.azuredatalakestore.net\",\r\n \"accountId\": \"183e1e71-a627-46cd-b84e-5c30eb2b567f\",\r\n \"creationTime\": \"2016-11-10T22:36:25.8246145Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:36:25.8246145Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264\",\r\n \"name\": \"testadlfs14264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1182.azuredatalakestore.net\",\r\n \"accountId\": \"57b65147-c69a-4775-9a65-934667ef0d18\",\r\n \"creationTime\": \"2017-03-27T18:05:52.0156461Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:05:52.0156461Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182\",\r\n \"name\": \"testadlfs1182\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:51 GMT" + "Mon, 27 Mar 2017 18:06:22 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "be27cd5f-0cd4-4296-97be-0dddda4ed690" + "32f8e4d5-1995-40dd-833f-0a276881cbb8" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "3bd39e3b-c9fb-4fae-b7bf-a9b5c7fd8760" + "f7382862-af22-46c1-a1ac-aa13217f9aa5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223652Z:3bd39e3b-c9fb-4fae-b7bf-a9b5c7fd8760" + "CENTRALUS:20170327T180623Z:f7382862-af22-46c1-a1ac-aa13217f9aa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63891a71-bae2-4882-a1e9-39b64bd6e4cd" + "fc06f53a-010a-46a0-9a82-22ca9ebeccae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14264.azuredatalakestore.net\",\r\n \"accountId\": \"183e1e71-a627-46cd-b84e-5c30eb2b567f\",\r\n \"creationTime\": \"2016-11-10T22:36:25.8246145Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:36:25.8246145Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264\",\r\n \"name\": \"testadlfs14264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1182.azuredatalakestore.net\",\r\n \"accountId\": \"57b65147-c69a-4775-9a65-934667ef0d18\",\r\n \"creationTime\": \"2017-03-27T18:05:52.0156461Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:05:52.0156461Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182\",\r\n \"name\": \"testadlfs1182\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:51 GMT" + "Mon, 27 Mar 2017 18:06:23 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ba724225-d87d-41c2-9145-4723a7c47ea8" + "40e6c828-63ef-4015-9c21-9dd995288f07" ], "X-Content-Type-Options": [ "nosniff" @@ -572,10 +568,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "4b7ce231-69d5-4046-b45d-7be1196057e3" + "ff731458-f61d-40fb-98c6-879d846c77c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223652Z:4b7ce231-69d5-4046-b45d-7be1196057e3" + "CENTRALUS:20170327T180624Z:ff731458-f61d-40fb-98c6-879d846c77c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "8d49adae-caeb-46b0-8a04-deb51f91779f" + "d46b2504-7bae-4057-949e-07d0ddf31976" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"183e1e71-a627-46cd-b84e-5c30eb2b567f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264\",\r\n \"name\": \"testadlfs14264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"57b65147-c69a-4775-9a65-934667ef0d18\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182\",\r\n \"name\": \"testadlfs1182\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "417" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:20 GMT" + "Mon, 27 Mar 2017 18:05:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/183e1e71-a627-46cd-b84e-5c30eb2b567f0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57b65147-c69a-4775-9a65-934667ef0d180?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "5e687e26-77e6-4984-865b-c6c1ded71c82" + "b4f58a2c-1df8-461e-bcee-314051fc6077" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "544a1cc0-7c88-45a2-86fb-53ceca94058a" + "bb0db832-2358-4f0b-b77b-81dbe8a21b0e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223621Z:544a1cc0-7c88-45a2-86fb-53ceca94058a" + "CENTRALUS:20170327T180552Z:bb0db832-2358-4f0b-b77b-81dbe8a21b0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/183e1e71-a627-46cd-b84e-5c30eb2b567f0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzE4M2UxZTcxLWE2MjctNDZjZC1iODRlLTVjMzBlYjJiNTY3ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57b65147-c69a-4775-9a65-934667ef0d180?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU3YjY1MTQ3LWM2OWEtNDc3NS05YTY1LTkzNDY2N2VmMGQxODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:50 GMT" + "Mon, 27 Mar 2017 18:06:22 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b287b4c3-3f3c-4640-8761-6cdad8840c7d" + "562c2560-e11f-437a-986c-a1a4d9eaf893" ], "X-Content-Type-Options": [ "nosniff" @@ -721,10 +715,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "5607e991-89d2-4b3d-9dda-f2b3d19eb27e" + "1106f391-86de-4b51-a596-7d27b689f72f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223651Z:5607e991-89d2-4b3d-9dda-f2b3d19eb27e" + "CENTRALUS:20170327T180623Z:1106f391-86de-4b51-a596-7d27b689f72f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,20 +727,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a34484c0-f680-4ef2-a457-5af66e6a1aa5" + "68cc2ae7-b300-4ee3-a6ff-ef9126920009" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "28831e78-8612-4149-9b82-69c3d8dced26" + "256a4acf-d673-4c00-90c7-a0ae36d40800" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7177d1d9-07c0-41c1-9d09-ba9578da15e8" + "ee1bbd4c-27df-4e3a-abd7-b11eb236265c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1478817414497,\r\n \"modificationTime\": 1478817414497,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490637988385,\r\n \"modificationTime\": 1490637988385,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9ee84e0c-e059-4998-b451-922664606fa4" + "05b0abd3-ee9a-44fc-9340-dc1c94976451" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,20 +835,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8274b0f5-7e8a-41bf-931b-134a7f0e5e31" + "03d858b5-9587-45eb-ad5f-f56c10c2c846" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -874,16 +865,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2f18d970-7b19-48d6-95ce-2a60425f6594" + "d2c427a1-c327-4f94-921a-265ed0dd6291" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -898,20 +889,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45dd12a6-4ce0-47ac-89f6-350964bf6a8f" + "da83e665-1c89-422d-acbf-295728d27d01" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -929,16 +919,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:55 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fb7028c7-cf36-43a3-b77a-e0628dedb6b6" + "68673fd4-a6fc-4ffa-8d92-125e3601848d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -953,20 +943,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cd0af9c-385c-4268-a564-9b717b5b45e1" + "391c5454-cb68-4fcb-b92f-c3e06012d69d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -984,16 +973,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:55 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "45393512-6a5a-4b87-83cf-df2b397dfeb7" + "742e99b9-8630-4d60-a07a-968c5bdffb4a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1008,20 +997,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89c6f668-5cf3-47df-afa2-b068d95e11d3" + "e41d502e-ec0b-44fc-a292-c621f36b1b47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -1039,16 +1027,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "eb59e114-8b09-4e37-8198-90a8e469bf42" + "c88d4e2f-b133-4daa-aa44-22ba08a5e75e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1063,23 +1051,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18e4d53f-4a14-4bec-931f-9a0d1f192367" + "35e86f59-53e7-4739-8505-483c7bbbe38b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"AccessControlException\",\r\n \"message\": \"Path is not empty [b31c8be9-f433-4dc5-bbae-9073ee577895][2016-11-10T14:36:55.6765258-08:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.security.AccessControlException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"AccessControlException\",\r\n \"message\": \"Path is not empty [95d9ca31-4364-45d0-8e0f-241183b76944][2017-03-27T11:06:29.2999782-07:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.security.AccessControlException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "230" @@ -1094,16 +1081,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:55 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b31c8be9-f433-4dc5-bbae-9073ee577895" + "95d9ca31-4364-45d0-8e0f-241183b76944" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x83090172" @@ -1118,8 +1105,8 @@ "StatusCode": 403 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862%2FSDKTestFile01.txt2001?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2MiUyRlNES1Rlc3RGaWxlMDEudHh0MjAwMT9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059%2FSDKTestFile01.txt7599?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OSUyRlNES1Rlc3RGaWxlMDEudHh0NzU5OT9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -1130,14 +1117,13 @@ "42" ], "x-ms-client-request-id": [ - "8405f4fe-84ea-4bff-9901-019bbcc15b54" + "f79a6d6e-1ec1-4581-bcbf-3eb15b7f1a28" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1152,22 +1138,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs14264.azuredatalakestore.net/webhdfs/v1/SDKTestFolder014862/SDKTestFile01.txt2001?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1182.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019059/SDKTestFile01.txt7599?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "95f43152-3dc2-48fc-9ac3-5caefe9b1813" + "5657bdd3-44f3-458b-ae3c-4b95c93cd30d" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1182,26 +1168,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862%2FSDKTestFile01.txt2001?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2MiUyRlNES1Rlc3RGaWxlMDEudHh0MjAwMT9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059%2FSDKTestFile01.txt7599?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OSUyRlNES1Rlc3RGaWxlMDEudHh0NzU5OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79c68a46-4b9c-4f24-aed4-63f892739363" + "272e192a-bab2-44e6-a426-f92bdaaf05e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817415105,\r\n \"modificationTime\": 1478817415171,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637988852,\r\n \"modificationTime\": 1490637988906,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1213,16 +1198,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:55 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "17b121fc-1435-40e3-8bc7-1b2e2272a256" + "0b15f80b-a7ed-4e93-83bb-deb588f0abd3" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1239,15 +1224,15 @@ ], "Names": { ".ctor": [ - "datalakerg19600", - "testdatalake12352", - "testadlfs14264" + "datalakerg1538", + "testdatalake19498", + "testadlfs1182" ], "CreateFolder": [ - "SDKTestFolder014862" + "SDKTestFolder019059" ], "CreateFile": [ - "SDKTestFolder014862/SDKTestFile01.txt2001" + "SDKTestFolder019059/SDKTestFile01.txt7599" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json index 205442c3e3ab..b33d0577d50a 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "375f3cb8-4e90-4796-b253-20c49f283f2f" + "3d87af08-fc7b-4368-b563-fbbef1b1dfa7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:15 GMT" + "Mon, 27 Mar 2017 18:11:24 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "453959cb-1655-4609-91fd-db7b0bb11c79" + "54f1cd21-b112-4933-bf93-7f5b3b899446" ], "x-ms-correlation-request-id": [ - "453959cb-1655-4609-91fd-db7b0bb11c79" + "54f1cd21-b112-4933-bf93-7f5b3b899446" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224115Z:453959cb-1655-4609-91fd-db7b0bb11c79" + "WESTUS2:20170327T181124Z:54f1cd21-b112-4933-bf93-7f5b3b899446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f41515f7-6d78-4ec6-8c94-2c5a6771a08b" + "9db2b0c0-cb5f-49fa-9374-afbc1135fbcc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:15 GMT" + "Mon, 27 Mar 2017 18:11:24 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "e4a384b2-5a3f-4752-9315-e2677981b5f1" + "40463d0a-1eb2-4614-bd73-e557eeb4c526" ], "x-ms-correlation-request-id": [ - "e4a384b2-5a3f-4752-9315-e2677981b5f1" + "40463d0a-1eb2-4614-bd73-e557eeb4c526" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224115Z:e4a384b2-5a3f-4752-9315-e2677981b5f1" + "WESTUS2:20170327T181124Z:40463d0a-1eb2-4614-bd73-e557eeb4c526" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "729e9d20-e0eb-42e6-8ecd-fa215908b450" + "ab0176b4-0099-43a1-824c-92d141306b5a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:16 GMT" + "Mon, 27 Mar 2017 18:11:25 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "9448e2eb-b7b6-4dcb-9b12-983b2e16be73" + "7a95b20b-04cf-4820-86d8-f861004db1d6" ], "x-ms-correlation-request-id": [ - "9448e2eb-b7b6-4dcb-9b12-983b2e16be73" + "7a95b20b-04cf-4820-86d8-f861004db1d6" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224116Z:9448e2eb-b7b6-4dcb-9b12-983b2e16be73" + "WESTUS2:20170327T181125Z:7a95b20b-04cf-4820-86d8-f861004db1d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4492731f-5027-4253-8311-72a39908fd99" + "92f97c71-1b23-4fda-ae23-a3fbbfba9c65" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:16 GMT" + "Mon, 27 Mar 2017 18:11:25 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-request-id": [ - "298d9c42-c651-4244-9689-18897060d87d" + "9473a8eb-d3ae-422f-997d-795262ab8bde" ], "x-ms-correlation-request-id": [ - "298d9c42-c651-4244-9689-18897060d87d" + "9473a8eb-d3ae-422f-997d-795262ab8bde" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224116Z:298d9c42-c651-4244-9689-18897060d87d" + "WESTUS2:20170327T181125Z:9473a8eb-d3ae-422f-997d-795262ab8bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13495?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b99c287-a73c-4cdf-abbd-554d0e5e98d6" + "639fc917-95bc-488b-9b09-c138667b54fe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13495' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19212' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:16 GMT" + "Mon, 27 Mar 2017 18:11:25 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-request-id": [ - "7c46559e-2928-47d8-8653-acc2764b73fb" + "b66e7f2a-c47f-43bb-81ef-e577a71d96ab" ], "x-ms-correlation-request-id": [ - "7c46559e-2928-47d8-8653-acc2764b73fb" + "b66e7f2a-c47f-43bb-81ef-e577a71d96ab" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224116Z:7c46559e-2928-47d8-8653-acc2764b73fb" + "WESTUS2:20170327T181125Z:b66e7f2a-c47f-43bb-81ef-e577a71d96ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13495?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fea3dd66-7da3-408f-9536-d08ba410546f" + "27fc4738-0698-4380-8e8d-54f16bd46bdb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495\",\r\n \"name\": \"datalakerg13495\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212\",\r\n \"name\": \"datalakerg19212\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:17 GMT" + "Mon, 27 Mar 2017 18:11:26 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-request-id": [ - "c0e83386-eb59-4c21-9a49-bc9534f6badb" + "60e5c081-f27b-4d94-b103-b02e85ea091c" ], "x-ms-correlation-request-id": [ - "c0e83386-eb59-4c21-9a49-bc9534f6badb" + "60e5c081-f27b-4d94-b103-b02e85ea091c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224117Z:c0e83386-eb59-4c21-9a49-bc9534f6badb" + "WESTUS2:20170327T181126Z:60e5c081-f27b-4d94-b103-b02e85ea091c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13495?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "b79f9759-4c4b-48b8-9bfc-dd210659a897" + "de44ea6b-27ec-4001-a971-6b29593598d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495\",\r\n \"name\": \"datalakerg13495\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212\",\r\n \"name\": \"datalakerg19212\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:17 GMT" + "Mon, 27 Mar 2017 18:11:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "95125268-a625-4b68-9382-460fe87b6777" + "7ec33522-302e-4198-8205-73fd1fb0368c" ], "x-ms-correlation-request-id": [ - "95125268-a625-4b68-9382-460fe87b6777" + "7ec33522-302e-4198-8205-73fd1fb0368c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224117Z:95125268-a625-4b68-9382-460fe87b6777" + "WESTUS2:20170327T181126Z:7ec33522-302e-4198-8205-73fd1fb0368c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ5NzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9168e201-1f9d-4c86-af17-2db6640475e3" + "886963fc-44b1-4866-932d-24b3ffb2ef00" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs14976' under resource group 'datalakerg13495' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17264' under resource group 'datalakerg19212' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:18 GMT" + "Mon, 27 Mar 2017 18:11:26 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "611e2b4a-5c6b-4e9d-a073-aea140af95fe" + "8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" ], "x-ms-correlation-request-id": [ - "611e2b4a-5c6b-4e9d-a073-aea140af95fe" + "8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224118Z:611e2b4a-5c6b-4e9d-a073-aea140af95fe" + "WESTUS2:20170327T181127Z:8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,21 +448,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ5NzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14976.azuredatalakestore.net\",\r\n \"accountId\": \"13aabe64-6320-4c8b-a6ff-f31beb573a83\",\r\n \"creationTime\": \"2016-11-10T22:41:24.8726368Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:41:24.8726368Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976\",\r\n \"name\": \"testadlfs14976\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17264.azuredatalakestore.net\",\r\n \"accountId\": \"90363854-e7b1-4f64-8743-074179c0ec88\",\r\n \"creationTime\": \"2017-03-27T18:11:27.4777225Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:11:27.4777225Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264\",\r\n \"name\": \"testadlfs17264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "691" - ], "Content-Type": [ "application/json" ], @@ -478,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:54 GMT" + "Mon, 27 Mar 2017 18:11:59 GMT" ], "Pragma": [ "no-cache" @@ -486,8 +480,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "a3d6616e-32ad-4432-9fa3-9115c9a8186c" + "1450df30-f9a5-4b68-9d65-2f87ad9dfe92" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "ac71101d-09d8-48ff-a55b-8e5359fce2de" + "f65d3354-ea57-423a-aee7-2b64d37482a8" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224154Z:ac71101d-09d8-48ff-a55b-8e5359fce2de" + "WESTUS2:20170327T181159Z:f65d3354-ea57-423a-aee7-2b64d37482a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ5NzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c3b8a51-33db-46f3-81d5-c79db980ebee" + "44cb9c6d-220d-4dbb-9da4-a74e354f9949" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14976.azuredatalakestore.net\",\r\n \"accountId\": \"13aabe64-6320-4c8b-a6ff-f31beb573a83\",\r\n \"creationTime\": \"2016-11-10T22:41:24.8726368Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:41:24.8726368Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976\",\r\n \"name\": \"testadlfs14976\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17264.azuredatalakestore.net\",\r\n \"accountId\": \"90363854-e7b1-4f64-8743-074179c0ec88\",\r\n \"creationTime\": \"2017-03-27T18:11:27.4777225Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:11:27.4777225Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264\",\r\n \"name\": \"testadlfs17264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:54 GMT" + "Mon, 27 Mar 2017 18:12:00 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "87ed457d-59c0-4d4d-b274-f0ea35958390" + "590e5d5c-5312-400e-9d07-4af97893ccda" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14983" ], "x-ms-correlation-request-id": [ - "0dd1dcb1-13cc-45ea-a67a-21245d486d04" + "8be4711d-bafe-40aa-a3cf-50cf4b33407d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224155Z:0dd1dcb1-13cc-45ea-a67a-21245d486d04" + "WESTUS2:20170327T181200Z:8be4711d-bafe-40aa-a3cf-50cf4b33407d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ5NzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "18c637fd-9c05-4c50-b6e8-b52fbe81d4da" + "5530720d-6562-46b1-9207-40fc8551f6ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"13aabe64-6320-4c8b-a6ff-f31beb573a83\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976\",\r\n \"name\": \"testadlfs14976\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"90363854-e7b1-4f64-8743-074179c0ec88\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264\",\r\n \"name\": \"testadlfs17264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:19 GMT" + "Mon, 27 Mar 2017 18:11:27 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13aabe64-6320-4c8b-a6ff-f31beb573a830?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/90363854-e7b1-4f64-8743-074179c0ec880?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "e1aa5f1c-4a36-4555-b1f4-a7eab3b0aa1f" + "ff3fc5ae-f9f4-4c7d-bac8-1a331810d3d4" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "bfead3d7-bf24-4130-8887-6d86291ea31f" + "ac927465-20e7-4df7-88a4-27395dfede3e" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224120Z:bfead3d7-bf24-4130-8887-6d86291ea31f" + "WESTUS2:20170327T181128Z:ac927465-20e7-4df7-88a4-27395dfede3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,21 +664,17 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13aabe64-6320-4c8b-a6ff-f31beb573a830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzYWFiZTY0LTYzMjAtNGM4Yi1hNmZmLWYzMWJlYjU3M2E4MzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/90363854-e7b1-4f64-8743-074179c0ec880?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzkwMzYzODU0LWU3YjEtNGY2NC04NzQzLTA3NDE3OWMwZWM4ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json" ], @@ -697,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:50 GMT" + "Mon, 27 Mar 2017 18:11:58 GMT" ], "Pragma": [ "no-cache" @@ -705,8 +696,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d2855275-8ea3-4b58-8240-e72aaec56a29" + "d62ad3e7-91dc-45c1-93a3-56cb7c8eca28" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14998" ], "x-ms-correlation-request-id": [ - "fdf7fb95-5d67-43ee-8128-5fd6c2a24bd1" + "d73beab9-a1d6-4f8d-bed4-67f14a54ad59" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224150Z:fdf7fb95-5d67-43ee-8128-5fd6c2a24bd1" + "WESTUS2:20170327T181159Z:d73beab9-a1d6-4f8d-bed4-67f14a54ad59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7385?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3Mzg1P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4756?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzU2P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "cf98757b-0074-4df1-80b3-5553e9d0a49a" + "53c17fe9-7ef5-4a7b-9d97-e749fefdc97b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:55 GMT" + "Mon, 27 Mar 2017 18:12:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs14976.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7385?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17264.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4756?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "d2bfdd7d-1120-4105-82a3-588f63ba1bde" + "7e747382-51f8-4044-b497-8f7c94588682" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7385?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3Mzg1P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4756?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzU2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e7ff0f1-2ef1-4d05-a82d-10454a6023c2" + "e366ba08-95c5-4743-b125-83038029979b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817716421,\r\n \"modificationTime\": 1478817716421,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638327506,\r\n \"modificationTime\": 1490638327506,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:55 GMT" + "Mon, 27 Mar 2017 18:12:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "69af596f-7b88-43c2-9f3c-14e9074390c8" + "2d012ca8-9def-4758-9afe-e2177a9bed13" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -854,12 +846,12 @@ ], "Names": { ".ctor": [ - "datalakerg13495", - "testdatalake18240", - "testadlfs14976" + "datalakerg19212", + "testdatalake13712", + "testadlfs17264" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7385" + "SDKTestFolder01/SDKTestFile01.txt4756" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json index 6804cf23fd1d..5b6fc6f6113e 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17ae9deb-da0e-4575-a6be-a5f48d20eaff" + "6946b430-f514-4da9-9c0d-4439d6e44cc0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:04 GMT" + "Mon, 27 Mar 2017 18:08:46 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "0435ff2d-38df-4eb0-b7d7-d1f361c62356" + "a5b91d68-c422-4df3-b847-a6f85bd7f3e3" ], "x-ms-correlation-request-id": [ - "0435ff2d-38df-4eb0-b7d7-d1f361c62356" + "a5b91d68-c422-4df3-b847-a6f85bd7f3e3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223904Z:0435ff2d-38df-4eb0-b7d7-d1f361c62356" + "WESTUS2:20170327T180847Z:a5b91d68-c422-4df3-b847-a6f85bd7f3e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87c7ce40-ea03-4136-86ca-279bb96d290a" + "dbda84a8-d36b-483e-8df6-4083231a3d95" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:04 GMT" + "Mon, 27 Mar 2017 18:08:46 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "d329926b-55e9-4440-8c0e-26ce6e348520" + "c81ea6af-c62d-496d-a92e-38569aad898c" ], "x-ms-correlation-request-id": [ - "d329926b-55e9-4440-8c0e-26ce6e348520" + "c81ea6af-c62d-496d-a92e-38569aad898c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223905Z:d329926b-55e9-4440-8c0e-26ce6e348520" + "WESTUS2:20170327T180847Z:c81ea6af-c62d-496d-a92e-38569aad898c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89001465-8b60-4af6-b17d-bcc56b56e6d7" + "f9c5d62f-07c2-45df-b15f-8277425fc279" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:04 GMT" + "Mon, 27 Mar 2017 18:08:47 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "d03d364a-e2de-4c66-b1ad-25456897f272" + "37431f82-f75a-437d-b03c-b70d5b4b07f5" ], "x-ms-correlation-request-id": [ - "d03d364a-e2de-4c66-b1ad-25456897f272" + "37431f82-f75a-437d-b03c-b70d5b4b07f5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223905Z:d03d364a-e2de-4c66-b1ad-25456897f272" + "WESTUS2:20170327T180848Z:37431f82-f75a-437d-b03c-b70d5b4b07f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "324812a9-d3ac-4927-8d0b-c34d64307942" + "a4668cdd-dd7d-4093-93c3-4b104900531e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:05 GMT" + "Mon, 27 Mar 2017 18:08:47 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "43dbddbb-5fc9-4126-a9e0-9ff773cd2bd7" + "51c02027-2677-4144-80ab-672df15561f5" ], "x-ms-correlation-request-id": [ - "43dbddbb-5fc9-4126-a9e0-9ff773cd2bd7" + "51c02027-2677-4144-80ab-672df15561f5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223905Z:43dbddbb-5fc9-4126-a9e0-9ff773cd2bd7" + "WESTUS2:20170327T180848Z:51c02027-2677-4144-80ab-672df15561f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11451?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTQ1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "138edf7c-c7db-48d8-9d16-2fd3f8838be1" + "110af690-9f1b-43c7-8801-148051454d36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11451' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1706' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:05 GMT" + "Mon, 27 Mar 2017 18:08:47 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "fc5a36ad-c7c7-49b1-99d4-cda17b61bf9a" + "3f7e6e4a-9c93-4744-991b-1ff9011670fa" ], "x-ms-correlation-request-id": [ - "fc5a36ad-c7c7-49b1-99d4-cda17b61bf9a" + "3f7e6e4a-9c93-4744-991b-1ff9011670fa" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223905Z:fc5a36ad-c7c7-49b1-99d4-cda17b61bf9a" + "WESTUS2:20170327T180848Z:3f7e6e4a-9c93-4744-991b-1ff9011670fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11451?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTQ1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b362e6c-5d1d-4a36-bfc0-6dd5171a329b" + "db60073f-dad2-4e4d-80f8-2a4a66db6052" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451\",\r\n \"name\": \"datalakerg11451\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706\",\r\n \"name\": \"datalakerg1706\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:05 GMT" + "Mon, 27 Mar 2017 18:08:49 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14991" ], "x-ms-request-id": [ - "59b763bf-bae6-4805-b703-9456eb8d8f64" + "6b47d828-1a1b-4e01-8f1d-2c34646b72fe" ], "x-ms-correlation-request-id": [ - "59b763bf-bae6-4805-b703-9456eb8d8f64" + "6b47d828-1a1b-4e01-8f1d-2c34646b72fe" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223906Z:59b763bf-bae6-4805-b703-9456eb8d8f64" + "WESTUS2:20170327T180849Z:6b47d828-1a1b-4e01-8f1d-2c34646b72fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11451?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTQ1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "5f8a3da9-3d2d-4b16-a5d8-777bc59b16de" + "233a7943-30e0-4166-83f0-8d5ffacac862" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451\",\r\n \"name\": \"datalakerg11451\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706\",\r\n \"name\": \"datalakerg1706\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:05 GMT" + "Mon, 27 Mar 2017 18:08:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "2a2b9e17-0d85-428e-8d90-38667256d925" + "8af0831a-d287-4a15-858d-48f3ee21e4c5" ], "x-ms-correlation-request-id": [ - "2a2b9e17-0d85-428e-8d90-38667256d925" + "8af0831a-d287-4a15-858d-48f3ee21e4c5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223906Z:2a2b9e17-0d85-428e-8d90-38667256d925" + "WESTUS2:20170327T180849Z:8af0831a-d287-4a15-858d-48f3ee21e4c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3531780e-8354-4e49-b9c5-f4c47a29536c" + "87548207-2bf3-40a6-8bac-896c989a1573" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12949' under resource group 'datalakerg11451' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18591' under resource group 'datalakerg1706' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:06 GMT" + "Mon, 27 Mar 2017 18:08:49 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "d5763ccc-de2f-4639-aca1-614019f9fda0" + "befc495c-d378-4548-8f60-f74df089cdb1" ], "x-ms-correlation-request-id": [ - "d5763ccc-de2f-4639-aca1-614019f9fda0" + "befc495c-d378-4548-8f60-f74df089cdb1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223907Z:d5763ccc-de2f-4639-aca1-614019f9fda0" + "WESTUS2:20170327T180849Z:befc495c-d378-4548-8f60-f74df089cdb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12949.azuredatalakestore.net\",\r\n \"accountId\": \"8c4a537d-b366-4d31-9506-2ac03c8b5222\",\r\n \"creationTime\": \"2016-11-10T22:39:12.1216726Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:39:12.1216726Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949\",\r\n \"name\": \"testadlfs12949\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18591.azuredatalakestore.net\",\r\n \"accountId\": \"3874953f-b4cb-4503-b1b8-979d053e5f79\",\r\n \"creationTime\": \"2017-03-27T18:08:50.5765104Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:08:50.5765104Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591\",\r\n \"name\": \"testadlfs18591\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:38 GMT" + "Mon, 27 Mar 2017 18:09:22 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "847d6f9b-c398-49b9-9ab3-17a550c967a5" + "d1a2b6a8-32d2-45ba-a941-4672124fd2fb" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14993" ], "x-ms-correlation-request-id": [ - "1ce58f35-968b-429e-847a-94b20a8dc779" + "b21242fb-177b-4c25-b439-d4ebf85e35ea" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223938Z:1ce58f35-968b-429e-847a-94b20a8dc779" + "WESTUS2:20170327T180922Z:b21242fb-177b-4c25-b439-d4ebf85e35ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5711b182-8a81-40bb-b8b6-56db47aced97" + "85e7594d-ec1c-4d3c-a1f1-d63794014c8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12949.azuredatalakestore.net\",\r\n \"accountId\": \"8c4a537d-b366-4d31-9506-2ac03c8b5222\",\r\n \"creationTime\": \"2016-11-10T22:39:12.1216726Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:39:12.1216726Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949\",\r\n \"name\": \"testadlfs12949\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18591.azuredatalakestore.net\",\r\n \"accountId\": \"3874953f-b4cb-4503-b1b8-979d053e5f79\",\r\n \"creationTime\": \"2017-03-27T18:08:50.5765104Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:08:50.5765104Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591\",\r\n \"name\": \"testadlfs18591\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:39 GMT" + "Mon, 27 Mar 2017 18:09:22 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0b95f336-3230-4acf-a799-9bb034558e12" + "c5ed6e35-63e7-4867-ba3f-1681cc4228b1" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14994" ], "x-ms-correlation-request-id": [ - "59d71883-0377-458f-bc8c-48d8e8cabcaa" + "1a1d733d-aaea-46b1-af36-a926c3cf6cfb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223939Z:59d71883-0377-458f-bc8c-48d8e8cabcaa" + "WESTUS2:20170327T180923Z:1a1d733d-aaea-46b1-af36-a926c3cf6cfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "229950c5-1bc9-4f27-811a-10a8ec32fe79" + "40ba097c-b0cd-4c19-bccf-e83d11418b35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8c4a537d-b366-4d31-9506-2ac03c8b5222\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949\",\r\n \"name\": \"testadlfs12949\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3874953f-b4cb-4503-b1b8-979d053e5f79\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591\",\r\n \"name\": \"testadlfs18591\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:07 GMT" + "Mon, 27 Mar 2017 18:08:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8c4a537d-b366-4d31-9506-2ac03c8b52220?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3874953f-b4cb-4503-b1b8-979d053e5f790?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "3ec9a781-9903-44b9-a751-6bef8a93b33a" + "1362daa2-e829-4a2a-bfc0-24cedbf1f4e8" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "aeed5aaf-2105-4f1b-9fa4-8219ba15ce5c" + "d0394223-d8f0-4830-9884-7e23a32b260e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223907Z:aeed5aaf-2105-4f1b-9fa4-8219ba15ce5c" + "WESTUS2:20170327T180851Z:d0394223-d8f0-4830-9884-7e23a32b260e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8c4a537d-b366-4d31-9506-2ac03c8b52220?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzhjNGE1MzdkLWIzNjYtNGQzMS05NTA2LTJhYzAzYzhiNTIyMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3874953f-b4cb-4503-b1b8-979d053e5f790?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM4NzQ5NTNmLWI0Y2ItNDUwMy1iMWI4LTk3OWQwNTNlNWY3OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:38 GMT" + "Mon, 27 Mar 2017 18:09:21 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "374a82f4-e4fe-468d-8d99-b2e39a17c500" + "62223696-7d64-40a2-9323-f48142590832" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14990" ], "x-ms-correlation-request-id": [ - "95676d81-89bd-4be6-bff3-f5d1b06551d4" + "1a85de23-083d-485c-92c2-e1951b68e45c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223938Z:95676d81-89bd-4be6-bff3-f5d1b06551d4" + "WESTUS2:20170327T180922Z:1a85de23-083d-485c-92c2-e1951b68e45c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4763?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzYzP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "a3292754-5621-43d3-b3a2-8c474235557a" + "07adc3ad-c6af-4d47-88cc-6f89b770453e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:41 GMT" + "Mon, 27 Mar 2017 18:09:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs12949.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4763?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs18591.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2514?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "ee9e07e3-ca8c-4c79-9903-41ce2c294ee4" + "56d47025-c226-4c7c-bf18-d52c66debd3a" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4763?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzYzP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eab0646f-aaba-4e68-b5d5-99169e9d97ce" + "e20eac6f-f43e-4544-b1b5-145ff77abc45" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817582732,\r\n \"modificationTime\": 1478817582732,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638165023,\r\n \"modificationTime\": 1490638165023,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:41 GMT" + "Mon, 27 Mar 2017 18:09:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1bca4892-f68b-41aa-b1ad-8fd018ad5f08" + "f0e745e0-f085-4ddf-8b56-2e7033c57acf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,8 +844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4763?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzYzP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -864,17 +856,16 @@ "0" ], "x-ms-client-request-id": [ - "41e8315e-2af0-4129-b69b-59328cae80be" + "c2e2c48d-2fe1-495f-a756-5897bcca7cfe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileAlreadyExistsException\",\r\n \"message\": \"[55dceb5e-6535-4861-8a48-05fb1da08fe7]][Op=CREATE][[d__28::MoveNext::0x83090009]] Path /SDKTestFolder01/SDKTestFile01.txt4763 already exists\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.FileAlreadyExistsException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileAlreadyExistsException\",\r\n \"message\": \"[979ded7f-0103-4a97-8e91-5ed3ac95d78b]][Op=CREATE][[d__30::MoveNext::0x83090009]] Path /SDKTestFolder01/SDKTestFile01.txt2514 already exists\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.FileAlreadyExistsException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "293" @@ -889,16 +880,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:42 GMT" + "Mon, 27 Mar 2017 18:09:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "55dceb5e-6535-4861-8a48-05fb1da08fe7" + "979ded7f-0103-4a97-8e91-5ed3ac95d78b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x83090009" @@ -915,12 +906,12 @@ ], "Names": { ".ctor": [ - "datalakerg11451", - "testdatalake11077", - "testadlfs12949" + "datalakerg1706", + "testdatalake17530", + "testadlfs18591" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt4763" + "SDKTestFolder01/SDKTestFile01.txt2514" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json index b69648cf5f0e..c75c4d65f560 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json @@ -7,21 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "708e7532-5598-408f-bc1b-4a1b13ccdeb0" + "42269bb6-b8ee-4dd3-9e2a-5674ec4c8e7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -32,22 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:46 GMT" + "Mon, 27 Mar 2017 18:12:56 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-request-id": [ - "31c08e9c-6aaf-4fa6-9bcc-ea178318df88" + "112dadfa-fe37-4a62-9b8b-79c5781a4b7a" ], "x-ms-correlation-request-id": [ - "31c08e9c-6aaf-4fa6-9bcc-ea178318df88" + "112dadfa-fe37-4a62-9b8b-79c5781a4b7a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224246Z:31c08e9c-6aaf-4fa6-9bcc-ea178318df88" + "WESTUS2:20170327T181256Z:112dadfa-fe37-4a62-9b8b-79c5781a4b7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,21 +64,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b7a9180-3e4e-48db-baf1-ac785e5d73c4" + "53a36968-9fc8-40e8-99de-2179f8f3cd69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -87,22 +85,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:46 GMT" + "Mon, 27 Mar 2017 18:12:56 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14988" ], "x-ms-request-id": [ - "71540dca-4a9a-42ef-a991-5b2d947033b7" + "ea394bca-a41f-48e8-8021-51cce8a5589a" ], "x-ms-correlation-request-id": [ - "71540dca-4a9a-42ef-a991-5b2d947033b7" + "ea394bca-a41f-48e8-8021-51cce8a5589a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224246Z:71540dca-4a9a-42ef-a991-5b2d947033b7" + "WESTUS2:20170327T181256Z:ea394bca-a41f-48e8-8021-51cce8a5589a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,21 +118,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6e30ac9-a1c3-494b-9f13-9e0d3e21bf96" + "08502aa1-9edb-4d81-9f94-59382d10e201" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -142,22 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:47 GMT" + "Mon, 27 Mar 2017 18:12:57 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1190" ], "x-ms-request-id": [ - "9e89f302-466d-413f-bf21-7c34021a6707" + "2410957d-d7e8-4f12-bfef-033e66ffbdd6" ], "x-ms-correlation-request-id": [ - "9e89f302-466d-413f-bf21-7c34021a6707" + "2410957d-d7e8-4f12-bfef-033e66ffbdd6" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224247Z:9e89f302-466d-413f-bf21-7c34021a6707" + "WESTUS2:20170327T181257Z:2410957d-d7e8-4f12-bfef-033e66ffbdd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,21 +175,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dcf31ab-95fb-4ef2-8664-28228e87ada9" + "5ff8c856-5b6d-4d4a-8f3e-000b7f16d345" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -197,22 +196,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:47 GMT" + "Mon, 27 Mar 2017 18:12:57 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-request-id": [ - "20c97875-ac2b-414d-992d-322c884a0e0b" + "e89857d0-e5f9-4062-b9fd-1ba7984c8737" ], "x-ms-correlation-request-id": [ - "20c97875-ac2b-414d-992d-322c884a0e0b" + "e89857d0-e5f9-4062-b9fd-1ba7984c8737" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224247Z:20c97875-ac2b-414d-992d-322c884a0e0b" + "WESTUS2:20170327T181257Z:e89857d0-e5f9-4062-b9fd-1ba7984c8737" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18247?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODI0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2df8bc7a-c5a0-404c-9084-949b52db59de" + "ad8e5fe3-c9f9-493e-9f52-2d117dd6acd3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18247' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14817' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:47 GMT" + "Mon, 27 Mar 2017 18:12:57 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "eb605ab5-70db-498b-8a52-ceaae5a0fb10" + "06de7d4e-2092-4216-a332-71b437a62c6a" ], "x-ms-correlation-request-id": [ - "eb605ab5-70db-498b-8a52-ceaae5a0fb10" + "06de7d4e-2092-4216-a332-71b437a62c6a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224247Z:eb605ab5-70db-498b-8a52-ceaae5a0fb10" + "WESTUS2:20170327T181257Z:06de7d4e-2092-4216-a332-71b437a62c6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,27 +280,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18247?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODI0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e872d03d-fdee-4d78-a285-bddebd006d43" + "2ca9ac75-1e05-477e-a427-9e939f074485" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247\",\r\n \"name\": \"datalakerg18247\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817\",\r\n \"name\": \"datalakerg14817\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -310,22 +307,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:48 GMT" + "Mon, 27 Mar 2017 18:12:58 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14985" ], "x-ms-request-id": [ - "7eda678d-a04c-494c-8a48-701e6b4d44a0" + "39f5bfc3-37ef-4463-8796-56693c7b7441" ], "x-ms-correlation-request-id": [ - "7eda678d-a04c-494c-8a48-701e6b4d44a0" + "39f5bfc3-37ef-4463-8796-56693c7b7441" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224248Z:7eda678d-a04c-494c-8a48-701e6b4d44a0" + "WESTUS2:20170327T181258Z:39f5bfc3-37ef-4463-8796-56693c7b7441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18247?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODI0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "12ea56cf-2396-4a71-8c96-35f3e5b4b265" + "96f043cb-29b0-45e7-8532-d8ca16108522" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247\",\r\n \"name\": \"datalakerg18247\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817\",\r\n \"name\": \"datalakerg14817\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:48 GMT" + "Mon, 27 Mar 2017 18:12:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1189" ], "x-ms-request-id": [ - "cd8ddd9f-bdd7-4d36-9b7c-3b6f150aaab8" + "abd3ad93-f544-479a-bb48-90b22a80c07b" ], "x-ms-correlation-request-id": [ - "cd8ddd9f-bdd7-4d36-9b7c-3b6f150aaab8" + "abd3ad93-f544-479a-bb48-90b22a80c07b" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224248Z:cd8ddd9f-bdd7-4d36-9b7c-3b6f150aaab8" + "WESTUS2:20170327T181258Z:abd3ad93-f544-479a-bb48-90b22a80c07b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODI0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "971e55e4-a510-470c-8203-daee09d2ea1a" + "155aaa90-81cc-4d1d-83a2-5ed12643dde2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13128' under resource group 'datalakerg18247' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1481' under resource group 'datalakerg14817' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:48 GMT" + "Mon, 27 Mar 2017 18:12:58 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ef8a96f3-482a-41f5-b4ff-fa07283e48b2" + "431e08e2-37ac-4730-a79b-83e22372f936" ], "x-ms-correlation-request-id": [ - "ef8a96f3-482a-41f5-b4ff-fa07283e48b2" + "431e08e2-37ac-4730-a79b-83e22372f936" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224249Z:ef8a96f3-482a-41f5-b4ff-fa07283e48b2" + "WESTUS2:20170327T181259Z:431e08e2-37ac-4730-a79b-83e22372f936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,21 +448,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODI0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13128.azuredatalakestore.net\",\r\n \"accountId\": \"c489be33-aa76-4657-a4fd-f31e923bc047\",\r\n \"creationTime\": \"2016-11-10T22:42:54.7660342Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:42:54.7660342Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128\",\r\n \"name\": \"testadlfs13128\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1481.azuredatalakestore.net\",\r\n \"accountId\": \"4048bc98-800b-409c-b860-db8bfbe1c855\",\r\n \"creationTime\": \"2017-03-27T18:13:01.1649817Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:13:01.1649817Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481\",\r\n \"name\": \"testadlfs1481\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "691" - ], "Content-Type": [ "application/json" ], @@ -478,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:43:21 GMT" + "Mon, 27 Mar 2017 18:13:32 GMT" ], "Pragma": [ "no-cache" @@ -486,8 +480,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d292d990-ec3a-4973-93e7-8ba86e6a325e" + "2cbf4284-7b34-4924-807e-e9d2ebeb5595" ], "X-Content-Type-Options": [ "nosniff" @@ -502,10 +499,10 @@ "14988" ], "x-ms-correlation-request-id": [ - "e89f8d2d-937e-4afe-92fd-0c4be24fe1c2" + "b720e0a3-eb1b-4030-8591-e89b57b5e43e" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224322Z:e89f8d2d-937e-4afe-92fd-0c4be24fe1c2" + "WESTUS2:20170327T181332Z:b720e0a3-eb1b-4030-8591-e89b57b5e43e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODI0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fcc2e65-d29d-45b3-8b4f-5ba0cd4540a0" + "ec1060b2-b3b8-4691-8ff5-ec105c03d5df" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13128.azuredatalakestore.net\",\r\n \"accountId\": \"c489be33-aa76-4657-a4fd-f31e923bc047\",\r\n \"creationTime\": \"2016-11-10T22:42:54.7660342Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:42:54.7660342Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128\",\r\n \"name\": \"testadlfs13128\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1481.azuredatalakestore.net\",\r\n \"accountId\": \"4048bc98-800b-409c-b860-db8bfbe1c855\",\r\n \"creationTime\": \"2017-03-27T18:13:01.1649817Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:13:01.1649817Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481\",\r\n \"name\": \"testadlfs1481\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:43:22 GMT" + "Mon, 27 Mar 2017 18:13:32 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "56a6a7da-ad3e-47b0-9949-41f7664eb311" + "735e06d3-2e31-41e7-8e56-d41ad10bc15a" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-correlation-request-id": [ - "e2c3e6aa-847b-4dda-b01b-9448be9cb130" + "5b202160-ecfb-4d2c-80c0-13210b348944" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224322Z:e2c3e6aa-847b-4dda-b01b-9448be9cb130" + "WESTUS2:20170327T181333Z:5b202160-ecfb-4d2c-80c0-13210b348944" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODI0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "44b78c4e-5a68-4656-a4f8-461c148ce1d3" + "c28e13a8-d9b5-442a-bc43-723dfabda140" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c489be33-aa76-4657-a4fd-f31e923bc047\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128\",\r\n \"name\": \"testadlfs13128\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4048bc98-800b-409c-b860-db8bfbe1c855\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481\",\r\n \"name\": \"testadlfs1481\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "418" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:49 GMT" + "Mon, 27 Mar 2017 18:13:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c489be33-aa76-4657-a4fd-f31e923bc0470?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4048bc98-800b-409c-b860-db8bfbe1c8550?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "43f56208-f571-46cf-b579-cc9a7636a615" + "14456059-7700-4e6d-96b8-958e81ff99da" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "1f9164da-2777-46fd-8384-656463b9d8a2" + "c6ce183e-2695-4bc3-9be6-2642998aa610" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224250Z:1f9164da-2777-46fd-8384-656463b9d8a2" + "WESTUS2:20170327T181301Z:c6ce183e-2695-4bc3-9be6-2642998aa610" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c489be33-aa76-4657-a4fd-f31e923bc0470?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M0ODliZTMzLWFhNzYtNDY1Ny1hNGZkLWYzMWU5MjNiYzA0NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4048bc98-800b-409c-b860-db8bfbe1c8550?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQwNDhiYzk4LTgwMGItNDA5Yy1iODYwLWRiOGJmYmUxYzg1NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:43:21 GMT" + "Mon, 27 Mar 2017 18:13:31 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e48c9458-cc1b-448e-8273-e18fdb634197" + "2723ee72-fbc3-4ab4-b1d1-31bdf37e70eb" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14987" ], "x-ms-correlation-request-id": [ - "e2007d98-e59f-445c-a2e3-cb8943de5126" + "802af38f-b777-4404-aca6-885fed1972da" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224321Z:e2007d98-e59f-445c-a2e3-cb8943de5126" + "WESTUS2:20170327T181331Z:802af38f-b777-4404-aca6-885fed1972da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9311?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MzExP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "71d51da3-fc6b-4266-9e15-9afa98d10c4d" + "303bf950-42dd-4eb6-aa8a-361de7215dd1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:43:26 GMT" + "Mon, 27 Mar 2017 18:13:43 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs13128.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt9311?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1481.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3576?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "fd22ca08-34fe-493b-a50d-4d421eb39169" + "abc9f946-9bac-4ade-b6e0-9ce276d05788" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9311?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MzExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b21d760-6621-40a9-841d-2e5326c8b1f9" + "448e76fc-9afa-49d1-bbc1-4c17061840d2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817806258,\r\n \"modificationTime\": 1478817806350,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638423604,\r\n \"modificationTime\": 1490638423659,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:43:26 GMT" + "Mon, 27 Mar 2017 18:13:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f3a15dab-eb00-4682-b43c-84a66293911a" + "b5854461-0aea-430a-a7f5-d390b6f57a2a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,20 +844,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9311?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MzExP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f03b5c44-64aa-49f0-96d5-a7b732c6aa7d" + "62b4f599-324f-41b2-a2b6-7bdfdb772108" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -880,7 +871,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:43:26 GMT" + "Mon, 27 Mar 2017 18:13:43 GMT" ], "Pragma": [ "no-cache" @@ -889,10 +880,10 @@ "chunked" ], "x-ms-request-id": [ - "7a84068e-b04b-4e16-9f61-b9d48a772dea" + "91be6361-9118-4c7a-9ad7-14c0488d3c88" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -909,12 +900,12 @@ ], "Names": { ".ctor": [ - "datalakerg18247", - "testdatalake14117", - "testadlfs13128" + "datalakerg14817", + "testdatalake16400", + "testadlfs1481" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt9311" + "SDKTestFolder01/SDKTestFile01.txt3576" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json index 0e61332fcde6..73e1d0bca3e0 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8549164f-2fba-4dfe-ba69-af3085c710c4" + "3b60be79-a963-4c1f-9ea7-0e238bb6ffde" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:42 GMT" + "Mon, 27 Mar 2017 18:07:15 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "a8534c7f-8a95-4e27-84ce-4c08214b6e42" + "50f656eb-66c6-44f5-bf08-b60ab8640384" ], "x-ms-correlation-request-id": [ - "a8534c7f-8a95-4e27-84ce-4c08214b6e42" + "50f656eb-66c6-44f5-bf08-b60ab8640384" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223743Z:a8534c7f-8a95-4e27-84ce-4c08214b6e42" + "WESTUS2:20170327T180716Z:50f656eb-66c6-44f5-bf08-b60ab8640384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2712105-d8ed-445e-9220-1150abec35a9" + "73010744-d956-4ffd-b21e-ef8ad5b968f4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:42 GMT" + "Mon, 27 Mar 2017 18:07:15 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14992" ], "x-ms-request-id": [ - "7666c774-be7d-4f37-839d-334bf5e79aae" + "03d92f9b-6702-4efd-87e9-cabfa632c03d" ], "x-ms-correlation-request-id": [ - "7666c774-be7d-4f37-839d-334bf5e79aae" + "03d92f9b-6702-4efd-87e9-cabfa632c03d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223743Z:7666c774-be7d-4f37-839d-334bf5e79aae" + "WESTUS2:20170327T180716Z:03d92f9b-6702-4efd-87e9-cabfa632c03d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b637a1d-4f08-4795-8e53-d168d78cad02" + "e8f44061-e486-4848-ba1e-9667b380d86c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:43 GMT" + "Mon, 27 Mar 2017 18:07:16 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "36f9d724-3a2d-42c5-8d8d-bae3c8f5da10" + "c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" ], "x-ms-correlation-request-id": [ - "36f9d724-3a2d-42c5-8d8d-bae3c8f5da10" + "c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223744Z:36f9d724-3a2d-42c5-8d8d-bae3c8f5da10" + "WESTUS2:20170327T180717Z:c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37767836-0674-4f30-9310-c2a24e7faca8" + "9099def9-6814-411a-9d26-d66030572954" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:43 GMT" + "Mon, 27 Mar 2017 18:07:16 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14991" ], "x-ms-request-id": [ - "fb0f5853-18b0-4f2f-b7ef-48446a42f242" + "170111b7-8155-48f9-a56a-779eb90ca19e" ], "x-ms-correlation-request-id": [ - "fb0f5853-18b0-4f2f-b7ef-48446a42f242" + "170111b7-8155-48f9-a56a-779eb90ca19e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223744Z:fb0f5853-18b0-4f2f-b7ef-48446a42f242" + "WESTUS2:20170327T180717Z:170111b7-8155-48f9-a56a-779eb90ca19e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe893e7a-9857-4c87-bd0d-eaf401f0999b" + "12883abf-a589-4ac9-b0d2-82d66b22886d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13305' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13083' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:43 GMT" + "Mon, 27 Mar 2017 18:07:16 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-request-id": [ - "667fc03f-2068-42f7-9102-60885ba494b7" + "ff2c89fb-3a1c-4272-822a-f6c93c3e482a" ], "x-ms-correlation-request-id": [ - "667fc03f-2068-42f7-9102-60885ba494b7" + "ff2c89fb-3a1c-4272-822a-f6c93c3e482a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223744Z:667fc03f-2068-42f7-9102-60885ba494b7" + "WESTUS2:20170327T180717Z:ff2c89fb-3a1c-4272-822a-f6c93c3e482a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffead004-d9dd-4775-a327-8342b7081015" + "6be4ca29-44cb-4144-8b63-e96763aa8f4b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305\",\r\n \"name\": \"datalakerg13305\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083\",\r\n \"name\": \"datalakerg13083\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:44 GMT" + "Mon, 27 Mar 2017 18:07:17 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "a3662dd4-4de5-4de3-8a1a-a07531d66006" + "7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" ], "x-ms-correlation-request-id": [ - "a3662dd4-4de5-4de3-8a1a-a07531d66006" + "7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223745Z:a3662dd4-4de5-4de3-8a1a-a07531d66006" + "WESTUS2:20170327T180718Z:7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "6cff4758-484d-444a-8dac-db4795947447" + "01a79804-6e58-48c7-98b3-0c3f7e04dd86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305\",\r\n \"name\": \"datalakerg13305\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083\",\r\n \"name\": \"datalakerg13083\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:44 GMT" + "Mon, 27 Mar 2017 18:07:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "1e1805b4-e9e6-46cd-8811-56e105a773fe" + "c2c59780-4052-4bb8-9656-5e6ae887b930" ], "x-ms-correlation-request-id": [ - "1e1805b4-e9e6-46cd-8811-56e105a773fe" + "c2c59780-4052-4bb8-9656-5e6ae887b930" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223745Z:1e1805b4-e9e6-46cd-8811-56e105a773fe" + "WESTUS2:20170327T180718Z:c2c59780-4052-4bb8-9656-5e6ae887b930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3eebb38-85c7-479b-ade3-1d9b1ca3bada" + "24ad375d-1257-42bd-83d7-0d64ccc98da2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12580' under resource group 'datalakerg13305' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs19631' under resource group 'datalakerg13083' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:45 GMT" + "Mon, 27 Mar 2017 18:07:18 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "d194b48a-61eb-42b4-8892-c03545b4f678" + "6f1cce1b-7b4b-42ec-8890-176ad2a2871e" ], "x-ms-correlation-request-id": [ - "d194b48a-61eb-42b4-8892-c03545b4f678" + "6f1cce1b-7b4b-42ec-8890-176ad2a2871e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223745Z:d194b48a-61eb-42b4-8892-c03545b4f678" + "WESTUS2:20170327T180718Z:6f1cce1b-7b4b-42ec-8890-176ad2a2871e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12580.azuredatalakestore.net\",\r\n \"accountId\": \"4e50806b-5a67-47cf-8be2-6c7b9e6c064a\",\r\n \"creationTime\": \"2016-11-10T22:37:50.1637316Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:37:50.1637316Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580\",\r\n \"name\": \"testadlfs12580\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19631.azuredatalakestore.net\",\r\n \"accountId\": \"657758a3-4cde-4870-a40f-75b2045899c1\",\r\n \"creationTime\": \"2017-03-27T18:07:20.334011Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:07:20.334011Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631\",\r\n \"name\": \"testadlfs19631\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:16 GMT" + "Mon, 27 Mar 2017 18:07:51 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "55cd84eb-7a7d-4e1c-826f-8adbfe9d9dab" + "438d7e0e-2302-43d7-a566-658f096f0c52" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-correlation-request-id": [ - "8309a360-28a6-480e-9465-888d0f65ab9c" + "8683040e-3bc1-4857-a66e-13fe2b57aadd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223817Z:8309a360-28a6-480e-9465-888d0f65ab9c" + "WESTUS2:20170327T180751Z:8683040e-3bc1-4857-a66e-13fe2b57aadd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2be1009b-d183-45f3-a54b-a9759ae17656" + "68256672-320c-4fbe-9ac4-c6ed5b4ceb2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12580.azuredatalakestore.net\",\r\n \"accountId\": \"4e50806b-5a67-47cf-8be2-6c7b9e6c064a\",\r\n \"creationTime\": \"2016-11-10T22:37:50.1637316Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:37:50.1637316Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580\",\r\n \"name\": \"testadlfs12580\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19631.azuredatalakestore.net\",\r\n \"accountId\": \"657758a3-4cde-4870-a40f-75b2045899c1\",\r\n \"creationTime\": \"2017-03-27T18:07:20.334011Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:07:20.334011Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631\",\r\n \"name\": \"testadlfs19631\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:17 GMT" + "Mon, 27 Mar 2017 18:07:51 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9ebb667f-f44b-4984-9071-a0cb44433b36" + "e5b791f8-214c-494b-b17e-149780026dc4" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "0ed45807-1c83-4c20-961e-95e6bfebab90" + "e6d92b49-fcd9-4275-823d-5dadd3e4874e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223817Z:0ed45807-1c83-4c20-961e-95e6bfebab90" + "WESTUS2:20170327T180752Z:e6d92b49-fcd9-4275-823d-5dadd3e4874e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "97bd141b-db94-4af4-bca1-dbe755c86e9b" + "6aeef5a5-394b-4c98-8146-1ba5117d24b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4e50806b-5a67-47cf-8be2-6c7b9e6c064a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580\",\r\n \"name\": \"testadlfs12580\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"657758a3-4cde-4870-a40f-75b2045899c1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631\",\r\n \"name\": \"testadlfs19631\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:45 GMT" + "Mon, 27 Mar 2017 18:07:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4e50806b-5a67-47cf-8be2-6c7b9e6c064a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/657758a3-4cde-4870-a40f-75b2045899c10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "850b9798-a0fe-42b3-9445-2a1079f35b60" + "0ba81da1-2d10-4aed-9ae6-40e2c6ed160a" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "2729f951-ecc6-438f-8973-f52e020c1983" + "66f53b23-efa0-4401-8354-6fe936d00f61" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223746Z:2729f951-ecc6-438f-8973-f52e020c1983" + "WESTUS2:20170327T180720Z:66f53b23-efa0-4401-8354-6fe936d00f61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4e50806b-5a67-47cf-8be2-6c7b9e6c064a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRlNTA4MDZiLTVhNjctNDdjZi04YmUyLTZjN2I5ZTZjMDY0YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/657758a3-4cde-4870-a40f-75b2045899c10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY1Nzc1OGEzLTRjZGUtNDg3MC1hNDBmLTc1YjIwNDU4OTljMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:16 GMT" + "Mon, 27 Mar 2017 18:07:50 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "27a453fe-d778-4f68-a442-47e01d18801b" + "60a82dc8-a1ff-4ca1-ad10-a7729f4b84d7" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14988" ], "x-ms-correlation-request-id": [ - "7cf7e4fe-b208-4876-b67e-6b292580c2bd" + "c3c5cdca-e6c3-4938-bd4e-debcdde8fae3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223816Z:7cf7e4fe-b208-4876-b67e-6b292580c2bd" + "WESTUS2:20170327T180751Z:c3c5cdca-e6c3-4938-bd4e-debcdde8fae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,20 +727,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017797?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzc5Nz9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015154?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTE1ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38308c55-4c59-4288-9f5e-4026bf3209de" + "00209ee8-c4f3-405a-9a82-0f12f26d9d4d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:38:19 GMT" + "Mon, 27 Mar 2017 18:08:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "97543b2d-46aa-451d-9ef2-307c5a5fb7fc" + "d301374c-ee54-4bb2-a6ef-59fb4884ef9a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017797?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzc5Nz9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015154?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTE1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbef8191-1820-420f-9d2b-d6e3adc434da" + "3284fded-25c1-4a76-9702-0d3bcdd66c64" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1478817500585,\r\n \"modificationTime\": 1478817500585,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490638080977,\r\n \"modificationTime\": 1490638080977,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:38:20 GMT" + "Mon, 27 Mar 2017 18:08:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b0bc70e7-926a-4a17-906c-7193e23bc296" + "77ad9f9c-c8da-4191-8ad2-c9f5859a1029" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -845,12 +837,12 @@ ], "Names": { ".ctor": [ - "datalakerg13305", - "testdatalake13167", - "testadlfs12580" + "datalakerg13083", + "testdatalake15290", + "testadlfs19631" ], "CreateFolder": [ - "SDKTestFolder017797" + "SDKTestFolder015154" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json index 2e2a09f07f43..76304a9a672d 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1db5669c-c971-4887-98c9-9d951490fe95" + "8e8f8b5b-0a3e-486a-9568-64a3c323db44" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:40 GMT" + "Mon, 27 Mar 2017 18:15:55 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "6b09a1c5-1f83-4290-aa6d-13987ab55b61" + "d930a750-95c0-4623-b634-f78d4867fe61" ], "x-ms-correlation-request-id": [ - "6b09a1c5-1f83-4290-aa6d-13987ab55b61" + "d930a750-95c0-4623-b634-f78d4867fe61" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224540Z:6b09a1c5-1f83-4290-aa6d-13987ab55b61" + "WESTUS2:20170327T181556Z:d930a750-95c0-4623-b634-f78d4867fe61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69bf9dcb-b2e4-4e64-8e2e-65814a70269d" + "24c605f1-b081-4d54-a15c-a5c7ea3baba5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:40 GMT" + "Mon, 27 Mar 2017 18:15:55 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-request-id": [ - "b75347fb-40b7-42e0-b489-f7fec36186fb" + "8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" ], "x-ms-correlation-request-id": [ - "b75347fb-40b7-42e0-b489-f7fec36186fb" + "8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224540Z:b75347fb-40b7-42e0-b489-f7fec36186fb" + "WESTUS2:20170327T181556Z:8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10b94ac4-c668-4dbe-97e3-71b7faab25e6" + "40d4dbc2-11eb-47c4-8037-4a7336970c81" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:41 GMT" + "Mon, 27 Mar 2017 18:15:56 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "c4a5a3b9-d8ba-4d38-ade2-3955edd3d3e8" + "829574b2-c853-428d-90fc-5463b3c994da" ], "x-ms-correlation-request-id": [ - "c4a5a3b9-d8ba-4d38-ade2-3955edd3d3e8" + "829574b2-c853-428d-90fc-5463b3c994da" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224541Z:c4a5a3b9-d8ba-4d38-ade2-3955edd3d3e8" + "WESTUS2:20170327T181557Z:829574b2-c853-428d-90fc-5463b3c994da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6610f02e-01ff-4165-a2d5-83c3af8ed317" + "97c2830e-7b3d-4213-a7a0-5cfd423fb052" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:41 GMT" + "Mon, 27 Mar 2017 18:15:56 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-request-id": [ - "469bcc95-86d3-49bf-82e3-8e2c00d056f4" + "93dc8001-77f6-45f5-8094-95c013ae7fa4" ], "x-ms-correlation-request-id": [ - "469bcc95-86d3-49bf-82e3-8e2c00d056f4" + "93dc8001-77f6-45f5-8094-95c013ae7fa4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224541Z:469bcc95-86d3-49bf-82e3-8e2c00d056f4" + "WESTUS2:20170327T181557Z:93dc8001-77f6-45f5-8094-95c013ae7fa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ4OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dd98e21-4b6a-4cef-81de-8779a83affdf" + "5278b31b-abb6-45e8-8666-edde6a5060f0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg15488' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14527' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:41 GMT" + "Mon, 27 Mar 2017 18:15:56 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-request-id": [ - "1f1bc497-7644-4b31-8eb5-f7d91e5539b5" + "25e74920-eadb-4f23-b9d8-8456cd944f96" ], "x-ms-correlation-request-id": [ - "1f1bc497-7644-4b31-8eb5-f7d91e5539b5" + "25e74920-eadb-4f23-b9d8-8456cd944f96" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224541Z:1f1bc497-7644-4b31-8eb5-f7d91e5539b5" + "WESTUS2:20170327T181557Z:25e74920-eadb-4f23-b9d8-8456cd944f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ4OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7728fc7-90f9-41cb-ab59-d30c42b805de" + "009863ae-fe7e-476e-853c-caca703e1cd3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488\",\r\n \"name\": \"datalakerg15488\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527\",\r\n \"name\": \"datalakerg14527\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:42 GMT" + "Mon, 27 Mar 2017 18:15:58 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-request-id": [ - "61e23def-3d27-425c-83d4-1e922bb360c2" + "758bcf4c-6994-4a8b-babc-5ba84d524fee" ], "x-ms-correlation-request-id": [ - "61e23def-3d27-425c-83d4-1e922bb360c2" + "758bcf4c-6994-4a8b-babc-5ba84d524fee" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224542Z:61e23def-3d27-425c-83d4-1e922bb360c2" + "WESTUS2:20170327T181558Z:758bcf4c-6994-4a8b-babc-5ba84d524fee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ4OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "be8f7f5e-1b6d-4902-a73d-58253ae4fe42" + "1704fcb8-73c3-4333-b454-3a8f760229e9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488\",\r\n \"name\": \"datalakerg15488\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527\",\r\n \"name\": \"datalakerg14527\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:42 GMT" + "Mon, 27 Mar 2017 18:15:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-request-id": [ - "abf8eb47-e3bf-4fa0-ba37-945d0f9852a6" + "2e330e09-c1b7-4721-98cf-0ced12d6c064" ], "x-ms-correlation-request-id": [ - "abf8eb47-e3bf-4fa0-ba37-945d0f9852a6" + "2e330e09-c1b7-4721-98cf-0ced12d6c064" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224542Z:abf8eb47-e3bf-4fa0-ba37-945d0f9852a6" + "WESTUS2:20170327T181558Z:2e330e09-c1b7-4721-98cf-0ced12d6c064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6f2e172-5204-4bd3-9f93-3a5c9a673cf5" + "f8f066da-7f05-40e1-b07a-2e8ada13903c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11856' under resource group 'datalakerg15488' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17001' under resource group 'datalakerg14527' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:42 GMT" + "Mon, 27 Mar 2017 18:15:58 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ced01107-72b1-4fe3-bbe0-f10ec6b29c48" + "63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" ], "x-ms-correlation-request-id": [ - "ced01107-72b1-4fe3-bbe0-f10ec6b29c48" + "63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224542Z:ced01107-72b1-4fe3-bbe0-f10ec6b29c48" + "WESTUS2:20170327T181559Z:63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11856.azuredatalakestore.net\",\r\n \"accountId\": \"79765ff4-d0a1-48d5-85c2-95381647067f\",\r\n \"creationTime\": \"2016-11-10T22:45:49.8930235Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:45:49.8930235Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856\",\r\n \"name\": \"testadlfs11856\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17001.azuredatalakestore.net\",\r\n \"accountId\": \"f3b263e2-1030-420a-a915-5a4e766c920f\",\r\n \"creationTime\": \"2017-03-27T18:16:00.7059962Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:16:00.7059962Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001\",\r\n \"name\": \"testadlfs17001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:46:44 GMT" + "Mon, 27 Mar 2017 18:16:31 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a47fe14a-8bfe-42a2-997d-9e6bc497a2ac" + "a16ee601-9def-494c-a888-0ce74a7654ff" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14984" ], "x-ms-correlation-request-id": [ - "b7bfb96c-dae9-4b12-a3e7-3beb1cdd2454" + "1ab99c60-10a4-49c9-ab37-925a6d4ad543" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224645Z:b7bfb96c-dae9-4b12-a3e7-3beb1cdd2454" + "WESTUS2:20170327T181632Z:1ab99c60-10a4-49c9-ab37-925a6d4ad543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea5ba4ae-77f6-412f-ad5b-dd799ef53970" + "fb4137ee-d95c-456c-a15e-f78845142a4a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11856.azuredatalakestore.net\",\r\n \"accountId\": \"79765ff4-d0a1-48d5-85c2-95381647067f\",\r\n \"creationTime\": \"2016-11-10T22:45:49.8930235Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:45:49.8930235Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856\",\r\n \"name\": \"testadlfs11856\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17001.azuredatalakestore.net\",\r\n \"accountId\": \"f3b263e2-1030-420a-a915-5a4e766c920f\",\r\n \"creationTime\": \"2017-03-27T18:16:00.7059962Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:16:00.7059962Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001\",\r\n \"name\": \"testadlfs17001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:46:45 GMT" + "Mon, 27 Mar 2017 18:16:32 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fc3f0b0d-3c41-4c8a-bb62-a1598b9801ec" + "c4bd9baa-2527-48f5-9232-e1d2332b0cfd" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14983" ], "x-ms-correlation-request-id": [ - "f3d7c29c-ada7-4d2d-a200-5c67d80b0612" + "e6660439-9762-4eae-a059-411e08e7e010" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224646Z:f3d7c29c-ada7-4d2d-a200-5c67d80b0612" + "WESTUS2:20170327T181632Z:e6660439-9762-4eae-a059-411e08e7e010" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "4ab1a125-f63f-478e-acca-4075ca7b6f5c" + "5c0d3cf4-20cc-412d-a8fa-3de055e3074a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"79765ff4-d0a1-48d5-85c2-95381647067f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856\",\r\n \"name\": \"testadlfs11856\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f3b263e2-1030-420a-a915-5a4e766c920f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001\",\r\n \"name\": \"testadlfs17001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:45:43 GMT" + "Mon, 27 Mar 2017 18:16:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/79765ff4-d0a1-48d5-85c2-95381647067f0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f3b263e2-1030-420a-a915-5a4e766c920f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "91d398c4-10d8-4339-997f-f80fdc9a5090" + "069dab42-9943-4367-9520-604bfa1c5cc1" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "4dcad25c-a194-40a3-8be5-7b6ea4e62a48" + "e6f6d3f0-3649-4d97-9a9d-f00c8e11123b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224543Z:4dcad25c-a194-40a3-8be5-7b6ea4e62a48" + "WESTUS2:20170327T181601Z:e6f6d3f0-3649-4d97-9a9d-f00c8e11123b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,78 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/79765ff4-d0a1-48d5-85c2-95381647067f0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc5NzY1ZmY0LWQwYTEtNDhkNS04NWMyLTk1MzgxNjQ3MDY3ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 10 Nov 2016 22:46:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "08f9e992-5361-4968-8f02-7c5de44fc801" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "e61e033e-4270-47ab-be11-806debee09a5" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224614Z:e61e033e-4270-47ab-be11-806debee09a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/79765ff4-d0a1-48d5-85c2-95381647067f0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc5NzY1ZmY0LWQwYTEtNDhkNS04NWMyLTk1MzgxNjQ3MDY3ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f3b263e2-1030-420a-a915-5a4e766c920f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YzYjI2M2UyLTEwMzAtNDIwYS1hOTE1LTVhNGU3NjZjOTIwZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -758,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:46:44 GMT" + "Mon, 27 Mar 2017 18:16:30 GMT" ], "Pragma": [ "no-cache" @@ -770,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b77d58d-e185-41f4-8143-071be71c38db" + "98ff12e2-5088-4bcb-9d91-a8850644988b" ], "X-Content-Type-Options": [ "nosniff" @@ -785,10 +715,10 @@ "14991" ], "x-ms-correlation-request-id": [ - "201dc830-5f40-4eb1-b4ff-422e2615fb89" + "d6ce0104-48a8-46a7-b19a-b64f25e13eb6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224644Z:201dc830-5f40-4eb1-b4ff-422e2615fb89" + "WESTUS2:20170327T181631Z:d6ce0104-48a8-46a7-b19a-b64f25e13eb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,26 +727,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40affad8-3c0a-44aa-bc3f-666db344effa" + "3573bb4d-af4b-4478-8483-6571a6c71f76" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:46:47 GMT" + "Mon, 27 Mar 2017 18:16:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4ac8483e-306f-4a75-bedb-2171afc0cc77" + "cba65d51-6698-4146-9423-1576cdca309b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -854,9 +783,9 @@ ], "Names": { ".ctor": [ - "datalakerg15488", - "testdatalake17668", - "testadlfs11856" + "datalakerg14527", + "testdatalake1594", + "testadlfs17001" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json index 4f2c9d7a5c48..a6eaaac692ad 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39225c2d-0357-44a7-b544-c976a2737f08" + "477a69bf-b6a0-426b-984a-f408adef1905" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:33 GMT" + "Mon, 27 Mar 2017 19:08:27 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "8a592d1e-e1c9-4874-ab1a-f487eae218ac" + "6bd571da-eed2-4a08-8a2a-83f712d4b06b" ], "x-ms-correlation-request-id": [ - "8a592d1e-e1c9-4874-ab1a-f487eae218ac" + "6bd571da-eed2-4a08-8a2a-83f712d4b06b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225734Z:8a592d1e-e1c9-4874-ab1a-f487eae218ac" + "WESTUS2:20170327T190828Z:6bd571da-eed2-4a08-8a2a-83f712d4b06b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b515d42-e5ef-4131-ae6c-97a1ca9e0769" + "450da46c-4212-494c-b77b-ea0db86b9200" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:33 GMT" + "Mon, 27 Mar 2017 19:08:27 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14983" ], "x-ms-request-id": [ - "46623de5-32db-4c81-981c-1a1ab69dd1c7" + "6610abb0-4124-461b-a0e0-ece2741244b6" ], "x-ms-correlation-request-id": [ - "46623de5-32db-4c81-981c-1a1ab69dd1c7" + "6610abb0-4124-461b-a0e0-ece2741244b6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225734Z:46623de5-32db-4c81-981c-1a1ab69dd1c7" + "WESTUS2:20170327T190828Z:6610abb0-4124-461b-a0e0-ece2741244b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a7611a8-3653-4a2d-b2f0-86bce77c46d8" + "3d6a0562-4911-4ddb-9e37-ed87446b4c95" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:34 GMT" + "Mon, 27 Mar 2017 19:08:28 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "9e372182-a96a-4d57-b826-cff9bafa8321" + "38f4799c-66c2-40de-9abd-2a9457bb8c37" ], "x-ms-correlation-request-id": [ - "9e372182-a96a-4d57-b826-cff9bafa8321" + "38f4799c-66c2-40de-9abd-2a9457bb8c37" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225734Z:9e372182-a96a-4d57-b826-cff9bafa8321" + "WESTUS2:20170327T190829Z:38f4799c-66c2-40de-9abd-2a9457bb8c37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6745a2c2-10e2-49fc-bf20-52450482b02c" + "195bc808-9977-419c-bef6-b2b222fc4d06" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:34 GMT" + "Mon, 27 Mar 2017 19:08:28 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14982" ], "x-ms-request-id": [ - "f5514113-229c-4b81-aafa-f367d11ff1e3" + "d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" ], "x-ms-correlation-request-id": [ - "f5514113-229c-4b81-aafa-f367d11ff1e3" + "d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225735Z:f5514113-229c-4b81-aafa-f367d11ff1e3" + "WESTUS2:20170327T190829Z:d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17246?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "032d3fe2-4a54-4235-b297-042a70f5d3ee" + "bc18231d-ba09-423e-b5c5-2f4569e27382" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17246' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16813' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:34 GMT" + "Mon, 27 Mar 2017 19:08:28 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14981" ], "x-ms-request-id": [ - "a2032b20-5c1a-4dbc-85bb-00ace204f749" + "fe0cdc10-e254-4cd6-aab7-fa785d043e13" ], "x-ms-correlation-request-id": [ - "a2032b20-5c1a-4dbc-85bb-00ace204f749" + "fe0cdc10-e254-4cd6-aab7-fa785d043e13" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225735Z:a2032b20-5c1a-4dbc-85bb-00ace204f749" + "WESTUS2:20170327T190829Z:fe0cdc10-e254-4cd6-aab7-fa785d043e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17246?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb2ce8d2-8103-4c02-bc76-a0d13557b5b4" + "9ba18318-70b5-4dd6-b69a-5e5d75277f91" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246\",\r\n \"name\": \"datalakerg17246\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813\",\r\n \"name\": \"datalakerg16813\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:35 GMT" + "Mon, 27 Mar 2017 19:08:29 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14980" ], "x-ms-request-id": [ - "003bcdbb-22ee-498d-bc0b-1cf95b3dc114" + "0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" ], "x-ms-correlation-request-id": [ - "003bcdbb-22ee-498d-bc0b-1cf95b3dc114" + "0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225735Z:003bcdbb-22ee-498d-bc0b-1cf95b3dc114" + "WESTUS2:20170327T190829Z:0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17246?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "9a18f6f2-378d-449b-a4d6-f30daa3eef40" + "97fcc17d-d30e-4630-9bac-c459f5830f8a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246\",\r\n \"name\": \"datalakerg17246\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813\",\r\n \"name\": \"datalakerg16813\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:35 GMT" + "Mon, 27 Mar 2017 19:08:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-request-id": [ - "2daa1e01-5a0d-471f-8796-9d0cc166ccb1" + "cf98c0e6-e10e-4484-81e2-477d028bd966" ], "x-ms-correlation-request-id": [ - "2daa1e01-5a0d-471f-8796-9d0cc166ccb1" + "cf98c0e6-e10e-4484-81e2-477d028bd966" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225735Z:2daa1e01-5a0d-471f-8796-9d0cc166ccb1" + "WESTUS2:20170327T190829Z:cf98c0e6-e10e-4484-81e2-477d028bd966" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYyMTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14631a45-0b22-41c4-b005-0449595c0d07" + "4fc08974-041d-4959-bea2-44358ff4b2e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16218' under resource group 'datalakerg17246' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs19862' under resource group 'datalakerg16813' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:35 GMT" + "Mon, 27 Mar 2017 19:08:29 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "e3ab8a23-0d36-4fc0-ba3d-b5eb9f6b3414" + "86f78131-ce9c-47af-a6b2-3ed436809410" ], "x-ms-correlation-request-id": [ - "e3ab8a23-0d36-4fc0-ba3d-b5eb9f6b3414" + "86f78131-ce9c-47af-a6b2-3ed436809410" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225736Z:e3ab8a23-0d36-4fc0-ba3d-b5eb9f6b3414" + "WESTUS2:20170327T190830Z:86f78131-ce9c-47af-a6b2-3ed436809410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYyMTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16218.azuredatalakestore.net\",\r\n \"accountId\": \"764390ad-46dc-42c6-9776-87894da9d48c\",\r\n \"creationTime\": \"2016-11-10T22:57:41.0613208Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:57:41.0613208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218\",\r\n \"name\": \"testadlfs16218\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19862.azuredatalakestore.net\",\r\n \"accountId\": \"43bbe7d5-eaa9-411a-ac45-cf55c33a255e\",\r\n \"creationTime\": \"2017-03-27T19:08:32.5997652Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:08:32.5997652Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862\",\r\n \"name\": \"testadlfs19862\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:08 GMT" + "Mon, 27 Mar 2017 19:09:03 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6921022-58b0-4a17-8e55-8a8308873a17" + "f3c4094d-6eb0-4036-baf4-0773d18b62e2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14989" ], "x-ms-correlation-request-id": [ - "538b0a37-9f58-4bd3-9f55-7f718c57eeef" + "cace3c4a-e32d-4cbc-93fb-6351f72c03d9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225808Z:538b0a37-9f58-4bd3-9f55-7f718c57eeef" + "WESTUS2:20170327T190903Z:cace3c4a-e32d-4cbc-93fb-6351f72c03d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYyMTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ea0807-b25d-46dd-8278-63749d65095c" + "2f47024b-43c2-4a57-b9ef-e12612c8b778" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16218.azuredatalakestore.net\",\r\n \"accountId\": \"764390ad-46dc-42c6-9776-87894da9d48c\",\r\n \"creationTime\": \"2016-11-10T22:57:41.0613208Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:57:41.0613208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218\",\r\n \"name\": \"testadlfs16218\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19862.azuredatalakestore.net\",\r\n \"accountId\": \"43bbe7d5-eaa9-411a-ac45-cf55c33a255e\",\r\n \"creationTime\": \"2017-03-27T19:08:32.5997652Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:08:32.5997652Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862\",\r\n \"name\": \"testadlfs19862\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:08 GMT" + "Mon, 27 Mar 2017 19:09:03 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aa19bf6e-ea0e-4bbf-bd3a-9e5486a5d935" + "9f3ad3da-c8e1-4b3a-9936-894caae751f3" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "64aa43e5-29eb-4ef5-a05f-f9a4d08e9c40" + "01fef869-e2a1-455d-b54b-e35137f50222" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225808Z:64aa43e5-29eb-4ef5-a05f-f9a4d08e9c40" + "WESTUS2:20170327T190904Z:01fef869-e2a1-455d-b54b-e35137f50222" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYyMTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "56bed9e0-730e-4b83-8c26-a65d35ca26e7" + "f9207428-a58b-4635-8159-c8b1fbf0d5dd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"764390ad-46dc-42c6-9776-87894da9d48c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218\",\r\n \"name\": \"testadlfs16218\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"43bbe7d5-eaa9-411a-ac45-cf55c33a255e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862\",\r\n \"name\": \"testadlfs19862\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:57:36 GMT" + "Mon, 27 Mar 2017 19:08:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/764390ad-46dc-42c6-9776-87894da9d48c0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/43bbe7d5-eaa9-411a-ac45-cf55c33a255e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "2c30cb6c-653a-4e55-aa67-8281d68cb3f2" + "ebf26751-1a2a-41c2-abd5-740b49908ebb" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-correlation-request-id": [ - "e1dccfb1-a0b9-413b-81f6-ef7c5f389801" + "41ae4bcb-f9ea-4161-8451-6cfc598cb6e5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225737Z:e1dccfb1-a0b9-413b-81f6-ef7c5f389801" + "WESTUS2:20170327T190832Z:41ae4bcb-f9ea-4161-8451-6cfc598cb6e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/764390ad-46dc-42c6-9776-87894da9d48c0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc2NDM5MGFkLTQ2ZGMtNDJjNi05Nzc2LTg3ODk0ZGE5ZDQ4YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/43bbe7d5-eaa9-411a-ac45-cf55c33a255e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQzYmJlN2Q1LWVhYTktNDExYS1hYzQ1LWNmNTVjMzNhMjU1ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:07 GMT" + "Mon, 27 Mar 2017 19:09:02 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92b32236-498b-4bee-8468-51602c7cf4cf" + "0afe3a77-e16d-4ee3-971c-eb1e518819bb" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14987" ], "x-ms-correlation-request-id": [ - "5f90c607-e546-4db7-adf8-74d43f957a58" + "fb9be0c9-7386-4250-bc71-b1b1e9841e7f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225807Z:5f90c607-e546-4db7-adf8-74d43f957a58" + "WESTUS2:20170327T190902Z:fb9be0c9-7386-4250-bc71-b1b1e9841e7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,26 +727,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c32929-aaa9-40a3-ba39-ccce954f9e4b" + "f7fdb636-65ce-44fe-9b05-173bc50eb474" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:09 GMT" + "Mon, 27 Mar 2017 19:09:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a757579f-21c5-4981-9f51-3a7969f7ffbf" + "fc4556e4-0546-4815-910a-3781775902c5" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d49e844-aff2-4012-a84e-b8c25c123bda" + "b3bf8c1b-e6b5-4159-ba61-e4eacc618dd7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"777\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"777\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:09 GMT" + "Mon, 27 Mar 2017 19:09:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9a11ae08-a5ae-4632-bccf-a530d567c6d0" + "a0458e86-254d-43de-9112-0f3c562d712d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,26 +835,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4eb1a6f0-694f-48a0-a2da-330491c38e1b" + "93b2c301-618c-4f92-a642-3cc21a87fe6b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,16 +865,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:10 GMT" + "Mon, 27 Mar 2017 19:09:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4439d3c5-5d5b-4cc2-9296-4bc47f12156f" + "595b245b-d086-4018-8630-1cbafa649af7" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -898,20 +889,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?aclspec=user::rwx%2Cgroup::rwx%2Cother::rwx&op=SETACL&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP2FjbHNwZWM9dXNlciUzQSUzQXJ3eCUyQ2dyb3VwJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0Fyd3gmb3A9U0VUQUNMJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?aclspec=group::rwx%2Cuser::rwx%2Cother::rwx%2Cmask::rwx&op=SETACL&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP2FjbHNwZWM9Z3JvdXAlM0ElM0Fyd3glMkN1c2VyJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0Fyd3glMkNtYXNrJTNBJTNBcnd4Jm9wPVNFVEFDTCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb73e62-df18-4843-9295-9476da60c8ee" + "f27a476d-f2c8-4ca4-abaa-32f9acb6fcf2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -926,19 +916,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:09 GMT" + "Mon, 27 Mar 2017 19:09:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0d73124e-902d-4d51-9135-6af92ae40779" + "a841cebe-2532-4a93-a542-abe89aef7eb9" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -959,14 +949,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a341c8ba-1312-4877-b364-53fe0d64ab72" + "b888e981-a2b9-4442-a997-bbadc877b3b9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -981,16 +970,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:10 GMT" + "Mon, 27 Mar 2017 19:09:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9196be04-ffc5-4aac-8c4c-9d92d155459c" + "fccd979a-5cce-47a8-bd7e-11826508a087" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1011,14 +1000,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbced847-d5c0-4aed-801b-75369947bf3c" + "2fc5c853-adc9-45d3-acba-d699ebb257b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1033,19 +1021,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:10 GMT" + "Mon, 27 Mar 2017 19:09:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "323e0b02-55c9-402f-a593-0b77f194a272" + "be449077-e114-4dcf-a8f7-0b361ec33d20" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1062,9 +1050,9 @@ ], "Names": { ".ctor": [ - "datalakerg17246", - "testdatalake19939", - "testadlfs16218" + "datalakerg16813", + "testdatalake11315", + "testadlfs19862" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json index 48043e2391da..1f9dfc9ded74 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1c9ca67-6497-47ec-a814-358dd75b850e" + "5ac55dfe-7914-4e9c-bad8-f7ce0c66d98a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +28,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:02:59 GMT" + "Mon, 27 Mar 2017 18:22:54 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +40,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "b410959e-c9de-4021-8c4b-d6872b1dcbda" + "a8ed5ce5-1001-45a4-b549-c4aea84c4255" ], "x-ms-correlation-request-id": [ - "b410959e-c9de-4021-8c4b-d6872b1dcbda" + "a8ed5ce5-1001-45a4-b549-c4aea84c4255" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200300Z:b410959e-c9de-4021-8c4b-d6872b1dcbda" + "CENTRALUS:20170327T182255Z:a8ed5ce5-1001-45a4-b549-c4aea84c4255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1429a049-e0b7-47b1-93db-1e44efcefdb7" + "ebb6be0e-82af-46f8-859d-7f5262487ae0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +85,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:00 GMT" + "Mon, 27 Mar 2017 18:22:54 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-request-id": [ - "9aa353c5-7e4f-45b0-bab7-7d0504c06d40" + "61f07101-f069-44d3-937e-e4e4ab5d2965" ], "x-ms-correlation-request-id": [ - "9aa353c5-7e4f-45b0-bab7-7d0504c06d40" + "61f07101-f069-44d3-937e-e4e4ab5d2965" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200300Z:9aa353c5-7e4f-45b0-bab7-7d0504c06d40" + "CENTRALUS:20170327T182255Z:61f07101-f069-44d3-937e-e4e4ab5d2965" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b326ebd-0d35-4f51-ba99-21e0fbc14cc3" + "d7cd0a7a-3eb9-4200-b5e9-e0483f2aa556" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +139,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:01 GMT" + "Mon, 27 Mar 2017 18:22:55 GMT" ], "Pragma": [ "no-cache" @@ -154,16 +151,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "23a89ad6-46c0-433b-bde6-e6121dd79f6c" + "66e967cc-48d0-477d-bf43-3fe3fe642572" ], "x-ms-correlation-request-id": [ - "23a89ad6-46c0-433b-bde6-e6121dd79f6c" + "66e967cc-48d0-477d-bf43-3fe3fe642572" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200301Z:23a89ad6-46c0-433b-bde6-e6121dd79f6c" + "CENTRALUS:20170327T182256Z:66e967cc-48d0-477d-bf43-3fe3fe642572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8c3d3c-1d06-4eb8-bf25-972b3be662e7" + "4860d8a3-6ea2-47a7-aa64-545958bd3765" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +196,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:01 GMT" + "Mon, 27 Mar 2017 18:22:55 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-request-id": [ - "9e282e24-a33a-4808-a36e-9c99a9708dc7" + "4799ddd2-ea12-41c3-ac90-57f65e9806ff" ], "x-ms-correlation-request-id": [ - "9e282e24-a33a-4808-a36e-9c99a9708dc7" + "4799ddd2-ea12-41c3-ac90-57f65e9806ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200301Z:9e282e24-a33a-4808-a36e-9c99a9708dc7" + "CENTRALUS:20170327T182256Z:4799ddd2-ea12-41c3-ac90-57f65e9806ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16710?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjcxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa3b850c-dc2f-4c52-a081-d32bbf3a7644" + "271573d1-0da4-464d-a8f0-db0f531a6417" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16710' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13118' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -258,7 +253,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:01 GMT" + "Mon, 27 Mar 2017 18:22:56 GMT" ], "Pragma": [ "no-cache" @@ -267,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-request-id": [ - "424f25d2-5ea5-443f-b290-c32b932654fe" + "264e11e2-1065-48d9-afae-17df6bf6aac6" ], "x-ms-correlation-request-id": [ - "424f25d2-5ea5-443f-b290-c32b932654fe" + "264e11e2-1065-48d9-afae-17df6bf6aac6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200301Z:424f25d2-5ea5-443f-b290-c32b932654fe" + "CENTRALUS:20170327T182256Z:264e11e2-1065-48d9-afae-17df6bf6aac6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16710?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjcxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e33bcf2a-43eb-4c8e-870d-c7eb6045f76f" + "d6b52003-3cb6-4b1b-9067-7514b70a795b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710\",\r\n \"name\": \"datalakerg16710\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118\",\r\n \"name\": \"datalakerg13118\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -313,7 +307,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:02 GMT" + "Mon, 27 Mar 2017 18:22:57 GMT" ], "Pragma": [ "no-cache" @@ -322,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-request-id": [ - "9a09f829-cef6-48e8-8faa-adfe321b2c55" + "50962f96-8a50-414e-be5c-8cb2b26722a2" ], "x-ms-correlation-request-id": [ - "9a09f829-cef6-48e8-8faa-adfe321b2c55" + "50962f96-8a50-414e-be5c-8cb2b26722a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200302Z:9a09f829-cef6-48e8-8faa-adfe321b2c55" + "CENTRALUS:20170327T182257Z:50962f96-8a50-414e-be5c-8cb2b26722a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16710?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjcxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -352,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "a0627341-f7df-4743-9e22-4de4fd32378a" + "26c7a801-a82b-4db6-a20f-d1bbeed660d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710\",\r\n \"name\": \"datalakerg16710\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118\",\r\n \"name\": \"datalakerg13118\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -377,22 +370,22 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:02 GMT" + "Mon, 27 Mar 2017 18:22:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "6d2c5286-a302-48a8-83a4-c9741a9adb69" + "5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" ], "x-ms-correlation-request-id": [ - "6d2c5286-a302-48a8-83a4-c9741a9adb69" + "5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200302Z:6d2c5286-a302-48a8-83a4-c9741a9adb69" + "CENTRALUS:20170327T182257Z:5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk3Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70963978-c391-415e-b6e4-0809b5858bf2" + "7cb024eb-4e3d-4fd5-9eaa-e7de41badd07" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs19728' under resource group 'datalakerg16710' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18004' under resource group 'datalakerg13118' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -432,7 +424,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:02 GMT" + "Mon, 27 Mar 2017 18:22:57 GMT" ], "Pragma": [ "no-cache" @@ -441,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "65d0e450-ed04-41c7-b91e-e77082fc9fed" + "dd685461-409f-4035-a6ed-a18b23e5e9fa" ], "x-ms-correlation-request-id": [ - "65d0e450-ed04-41c7-b91e-e77082fc9fed" + "dd685461-409f-4035-a6ed-a18b23e5e9fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200303Z:65d0e450-ed04-41c7-b91e-e77082fc9fed" + "CENTRALUS:20170327T182257Z:dd685461-409f-4035-a6ed-a18b23e5e9fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk3Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19728.azuredatalakestore.net\",\r\n \"accountId\": \"2a9b123d-758c-4e0c-ba8d-e91f5438aed3\",\r\n \"creationTime\": \"2017-02-01T20:03:07.5468668Z\",\r\n \"lastModifiedTime\": \"2017-02-01T20:03:07.5468668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728\",\r\n \"name\": \"testadlfs19728\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18004.azuredatalakestore.net\",\r\n \"accountId\": \"eb60d09d-9f0c-485c-8900-3034dba461b4\",\r\n \"creationTime\": \"2017-03-27T18:22:58.067748Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:22:58.067748Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004\",\r\n \"name\": \"testadlfs18004\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -481,7 +472,7 @@ "close" ], "Date": [ - "Wed, 01 Feb 2017 20:03:35 GMT" + "Mon, 27 Mar 2017 18:23:29 GMT" ], "Pragma": [ "no-cache" @@ -493,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "48b473ba-8954-4742-a503-0e96c966ef62" + "ecc27cdf-c73b-4936-8d1a-58af70d7c656" ], "X-Content-Type-Options": [ "nosniff" @@ -505,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-correlation-request-id": [ - "45c8cd06-0a04-4bf6-bbda-8296f13277f8" + "7182f2e5-12b4-4237-b42c-8b26e54c2c4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200336Z:45c8cd06-0a04-4bf6-bbda-8296f13277f8" + "CENTRALUS:20170327T182330Z:7182f2e5-12b4-4237-b42c-8b26e54c2c4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk3Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db437170-50f6-49f1-843f-f7648af15833" + "3b2d9b68-6344-4c54-bdb4-e6c24f745597" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19728.azuredatalakestore.net\",\r\n \"accountId\": \"2a9b123d-758c-4e0c-ba8d-e91f5438aed3\",\r\n \"creationTime\": \"2017-02-01T20:03:07.5468668Z\",\r\n \"lastModifiedTime\": \"2017-02-01T20:03:07.5468668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728\",\r\n \"name\": \"testadlfs19728\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18004.azuredatalakestore.net\",\r\n \"accountId\": \"eb60d09d-9f0c-485c-8900-3034dba461b4\",\r\n \"creationTime\": \"2017-03-27T18:22:58.067748Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:22:58.067748Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004\",\r\n \"name\": \"testadlfs18004\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -551,7 +541,7 @@ "close" ], "Date": [ - "Wed, 01 Feb 2017 20:03:36 GMT" + "Mon, 27 Mar 2017 18:23:30 GMT" ], "Pragma": [ "no-cache" @@ -563,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3da32320-531b-4a3f-8bc2-c229864be043" + "c0c869c6-48ae-4777-ae52-7e59b1f6d768" ], "X-Content-Type-Options": [ "nosniff" @@ -578,10 +568,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "bc86963d-c731-4d76-a747-d48ec22e50b4" + "ede9b1ec-0320-4fc7-a6bd-9c7c9c9d3b53" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200337Z:bc86963d-c731-4d76-a747-d48ec22e50b4" + "CENTRALUS:20170327T182330Z:ede9b1ec-0320-4fc7-a6bd-9c7c9c9d3b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk3Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -602,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "5255fff3-9fb0-4238-bf1f-428b06a3dd2a" + "28daf7b5-af08-4efe-a005-6ad258a82f61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2a9b123d-758c-4e0c-ba8d-e91f5438aed3\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728\",\r\n \"name\": \"testadlfs19728\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"eb60d09d-9f0c-485c-8900-3034dba461b4\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004\",\r\n \"name\": \"testadlfs18004\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -630,13 +619,13 @@ "close" ], "Date": [ - "Wed, 01 Feb 2017 20:03:04 GMT" + "Mon, 27 Mar 2017 18:22:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -645,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2a9b123d-758c-4e0c-ba8d-e91f5438aed30?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/eb60d09d-9f0c-485c-8900-3034dba461b40?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "9566dd4b-fddf-40f5-b666-6eab083ea968" + "867bcc15-7f3d-4646-a46d-1e8ce6ca08ed" ], "X-Content-Type-Options": [ "nosniff" @@ -660,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "08fa3bfb-3a0a-40a4-b2ef-8b62ca6ac9d3" + "0aac3f6e-6771-42eb-8e14-6af0ca8dd8ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200305Z:08fa3bfb-3a0a-40a4-b2ef-8b62ca6ac9d3" + "CENTRALUS:20170327T182259Z:0aac3f6e-6771-42eb-8e14-6af0ca8dd8ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2a9b123d-758c-4e0c-ba8d-e91f5438aed30?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJhOWIxMjNkLTc1OGMtNGUwYy1iYThkLWU5MWY1NDM4YWVkMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/eb60d09d-9f0c-485c-8900-3034dba461b40?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ViNjBkMDlkLTlmMGMtNDg1Yy04OTAwLTMwMzRkYmE0NjFiNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -700,7 +688,7 @@ "close" ], "Date": [ - "Wed, 01 Feb 2017 20:03:35 GMT" + "Mon, 27 Mar 2017 18:23:28 GMT" ], "Pragma": [ "no-cache" @@ -712,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e09054a9-caea-4edf-ae6b-8a2fa8438723" + "9355ef86-cb45-4f66-8456-3474f25660ea" ], "X-Content-Type-Options": [ "nosniff" @@ -724,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-correlation-request-id": [ - "eff0d1f0-1526-48c8-bf54-a29fc7bdd4a9" + "677bdb01-e0c0-4f8e-8d55-ca27007b0390" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200336Z:eff0d1f0-1526-48c8-bf54-a29fc7bdd4a9" + "CENTRALUS:20170327T182329Z:677bdb01-e0c0-4f8e-8d55-ca27007b0390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3311?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzExP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -751,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "a5f7235a-834e-48eb-9077-2e76a5d63493" + "2d9d2650-eed3-4cbc-8880-a729820217e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -773,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:03:39 GMT" + "Mon, 27 Mar 2017 18:23:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs19728.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3311?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs18004.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7381?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "b2576a2c-d571-41f9-978c-e3082fa19742" + "e203e722-a270-41b9-8d30-8b4dddc97fb2" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -803,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3311?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d0a8292-771b-4dbe-93ff-5e107fb93a4f" + "49143f01-97a7-402a-8a2a-4b99737e151c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485979419262,\r\n \"modificationTime\": 1485979419317,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639013058,\r\n \"modificationTime\": 1490639013112,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:03:39 GMT" + "Mon, 27 Mar 2017 18:23:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7cff46bf-f661-4c48-afc7-e9a70c10964e" + "8c5f6432-605b-444f-bbfb-bffd97292775" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -858,20 +844,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3311?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzExP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1fa1092-9394-45a3-9801-9b05d5747bce" + "f3878a29-e7b0-45c8-aeae-f199edd9f286" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -886,7 +871,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:03:40 GMT" + "Mon, 27 Mar 2017 18:23:33 GMT" ], "Pragma": [ "no-cache" @@ -895,10 +880,10 @@ "chunked" ], "x-ms-request-id": [ - "1f41aff7-0b07-4008-a5be-ad43f951a486" + "fd5b7e3b-4574-4d34-b93c-130637d77b75" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -919,14 +904,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c99390dd-4539-4403-8b8f-bfc7680ae34d" + "24b45b4b-ccee-49f7-8446-f50d6e1c091a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"ContentSummary\": {\r\n \"directoryCount\": 2,\r\n \"fileCount\": 1,\r\n \"length\": 42,\r\n \"quota\": -1,\r\n \"spaceConsumed\": 42,\r\n \"spaceQuota\": -1\r\n }\r\n}", @@ -944,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:03:40 GMT" + "Mon, 27 Mar 2017 18:23:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2689ce5f-65a7-479a-b7d1-6e27302f9c79" + "439275a5-340d-441f-9aa2-7732cfcdd7f0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -974,14 +958,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82be800e-0895-4b22-9c13-542ad7355834" + "b31e04c9-28de-4d3a-8c75-f3b27dd174b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"ContentSummary\": {\r\n \"directoryCount\": 1,\r\n \"fileCount\": 1,\r\n \"length\": 42,\r\n \"quota\": -1,\r\n \"spaceConsumed\": 42,\r\n \"spaceQuota\": -1\r\n }\r\n}", @@ -999,16 +982,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:04:01 GMT" + "Mon, 27 Mar 2017 18:23:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9d2b0701-3b32-482c-b9f9-71cc33ab3c42" + "576cb588-e0d2-4626-a1a7-5d8b9513e9bd" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1023,20 +1006,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3311?op=GETCONTENTSUMMARY&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzExP29wPUdFVENPTlRFTlRTVU1NQVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=GETCONTENTSUMMARY&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUdFVENPTlRFTlRTVU1NQVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2778042b-63b7-45ed-99cd-9db8a71487b4" + "147540ec-46e2-4bed-b701-ef48d41b4ce7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"ContentSummary\": {\r\n \"directoryCount\": 0,\r\n \"fileCount\": 1,\r\n \"length\": 42,\r\n \"quota\": -1,\r\n \"spaceConsumed\": 42,\r\n \"spaceQuota\": -1\r\n }\r\n}", @@ -1054,16 +1036,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:04:15 GMT" + "Mon, 27 Mar 2017 18:23:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fb0374b3-c4d5-4f38-9e3e-7c3f5a4e623e" + "10497fc3-11c9-4093-8f29-6b63dca1f2b9" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1080,12 +1062,12 @@ ], "Names": { ".ctor": [ - "datalakerg16710", - "testdatalake16255", - "testadlfs19728" + "datalakerg13118", + "testdatalake1263", + "testadlfs18004" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3311" + "SDKTestFolder01/SDKTestFile01.txt7381" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json index 741dea37d843..ed4136bfbb52 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd83a581-388b-4832-a766-2eaa879ce9c5" + "75de020f-9ae9-46b0-94e9-31645136da20" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:13 GMT" + "Mon, 27 Mar 2017 18:03:45 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "256e8ded-4190-47a1-b04b-d21bf7ae1d67" + "717ed235-0ba0-4359-bb5e-90c899ebf399" ], "x-ms-correlation-request-id": [ - "256e8ded-4190-47a1-b04b-d21bf7ae1d67" + "717ed235-0ba0-4359-bb5e-90c899ebf399" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225614Z:256e8ded-4190-47a1-b04b-d21bf7ae1d67" + "WESTUS2:20170327T180346Z:717ed235-0ba0-4359-bb5e-90c899ebf399" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4046ea4-61b2-4cbd-a388-c269c1ebccca" + "6364c932-92cf-49ba-a976-262740754dba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:13 GMT" + "Mon, 27 Mar 2017 18:03:45 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-request-id": [ - "6738aa7b-c5c7-4468-85e0-f6c7530ae57a" + "10e3ae70-d04f-44f7-a670-1c731f61987b" ], "x-ms-correlation-request-id": [ - "6738aa7b-c5c7-4468-85e0-f6c7530ae57a" + "10e3ae70-d04f-44f7-a670-1c731f61987b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225614Z:6738aa7b-c5c7-4468-85e0-f6c7530ae57a" + "WESTUS2:20170327T180346Z:10e3ae70-d04f-44f7-a670-1c731f61987b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e551d987-04a3-4b21-9f53-d63442589f69" + "9cba9534-03f6-4188-9df4-ff6333902720" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:14 GMT" + "Mon, 27 Mar 2017 18:03:46 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "f4458a20-88c5-4c28-ae42-7ee2ad2b6790" + "e08a23f4-b793-49bf-bd8b-65f01d06180a" ], "x-ms-correlation-request-id": [ - "f4458a20-88c5-4c28-ae42-7ee2ad2b6790" + "e08a23f4-b793-49bf-bd8b-65f01d06180a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225615Z:f4458a20-88c5-4c28-ae42-7ee2ad2b6790" + "WESTUS2:20170327T180347Z:e08a23f4-b793-49bf-bd8b-65f01d06180a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7867121a-5fb6-451a-ac58-24a37a270bc2" + "ed66455a-2992-4762-9b47-f8e9dfb54465" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:14 GMT" + "Mon, 27 Mar 2017 18:03:46 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "679e7ce7-7433-4baf-888e-69c4e8dd4b08" + "b252d9c1-b813-4218-b005-0ad5f03421c5" ], "x-ms-correlation-request-id": [ - "679e7ce7-7433-4baf-888e-69c4e8dd4b08" + "b252d9c1-b813-4218-b005-0ad5f03421c5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225615Z:679e7ce7-7433-4baf-888e-69c4e8dd4b08" + "WESTUS2:20170327T180347Z:b252d9c1-b813-4218-b005-0ad5f03421c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13549?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d51f009-e774-4c23-8db4-ea60aaa1d82e" + "0198ffe6-fe75-470a-aa00-612a8b5c4ceb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13549' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13039' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:14 GMT" + "Mon, 27 Mar 2017 18:03:46 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "ca84b48a-888b-47e4-a56f-563814cf1eab" + "75b7c598-00ec-4969-8f6a-0821d37b297e" ], "x-ms-correlation-request-id": [ - "ca84b48a-888b-47e4-a56f-563814cf1eab" + "75b7c598-00ec-4969-8f6a-0821d37b297e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225615Z:ca84b48a-888b-47e4-a56f-563814cf1eab" + "WESTUS2:20170327T180347Z:75b7c598-00ec-4969-8f6a-0821d37b297e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13549?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b64c60ff-9cd9-4423-a4d2-75d4c047cb42" + "c89d61e7-8b03-43e9-9967-6323139c4129" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549\",\r\n \"name\": \"datalakerg13549\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039\",\r\n \"name\": \"datalakerg13039\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:15 GMT" + "Mon, 27 Mar 2017 18:03:48 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "9d184497-1be7-4d03-a1aa-3b8c1893bb25" + "02587afb-76a5-4858-842e-28458759d19c" ], "x-ms-correlation-request-id": [ - "9d184497-1be7-4d03-a1aa-3b8c1893bb25" + "02587afb-76a5-4858-842e-28458759d19c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225616Z:9d184497-1be7-4d03-a1aa-3b8c1893bb25" + "WESTUS2:20170327T180348Z:02587afb-76a5-4858-842e-28458759d19c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13549?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "e9b6269f-2364-4c8c-97a3-12d5b8d0e07c" + "0bdfd43b-c3be-4c0f-b1ee-bc3e72c5978a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549\",\r\n \"name\": \"datalakerg13549\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039\",\r\n \"name\": \"datalakerg13039\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:15 GMT" + "Mon, 27 Mar 2017 18:03:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "d7e4b06f-5762-417a-b470-ea11af491fa3" + "a06bb354-9b71-4121-95a4-2fc47197dc3e" ], "x-ms-correlation-request-id": [ - "d7e4b06f-5762-417a-b470-ea11af491fa3" + "a06bb354-9b71-4121-95a4-2fc47197dc3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225616Z:d7e4b06f-5762-417a-b470-ea11af491fa3" + "WESTUS2:20170327T180348Z:a06bb354-9b71-4121-95a4-2fc47197dc3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU5ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc73cea4-d29e-462a-8ccb-fc0f44acb425" + "6df1b560-f444-49a7-9d00-5a3823ae4b78" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15987' under resource group 'datalakerg13549' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs195' under resource group 'datalakerg13039' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "164" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:15 GMT" + "Mon, 27 Mar 2017 18:03:48 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "5a57eb7d-112e-4302-b309-07b61c3c7e89" + "8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" ], "x-ms-correlation-request-id": [ - "5a57eb7d-112e-4302-b309-07b61c3c7e89" + "8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225616Z:5a57eb7d-112e-4302-b309-07b61c3c7e89" + "WESTUS2:20170327T180348Z:8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU5ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15987.azuredatalakestore.net\",\r\n \"accountId\": \"fe4dfaa1-bd31-4848-8137-5ec845463d2c\",\r\n \"creationTime\": \"2016-11-10T22:56:22.2207688Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:56:22.2207688Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987\",\r\n \"name\": \"testadlfs15987\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs195.azuredatalakestore.net\",\r\n \"accountId\": \"b7298021-a31d-4f3e-9ac6-9f0d64da17cc\",\r\n \"creationTime\": \"2017-03-27T18:03:50.1911686Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:03:50.1911686Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195\",\r\n \"name\": \"testadlfs195\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:47 GMT" + "Mon, 27 Mar 2017 18:04:21 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2e2e9ede-7af8-4106-9b53-aad9d1d3d328" + "315f4bac-88a2-4470-8698-4b0f2302c99b" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14994" ], "x-ms-correlation-request-id": [ - "d83179fb-28e0-426d-af8c-35eacc05961d" + "cbaae1cd-f4a8-4a16-951c-54cc79509242" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225647Z:d83179fb-28e0-426d-af8c-35eacc05961d" + "WESTUS2:20170327T180421Z:cbaae1cd-f4a8-4a16-951c-54cc79509242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU5ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0689b37-f220-4e9f-b4bd-ffebdd87e3ac" + "e68b0684-55f8-4bdf-ad66-9f4b8bb3f638" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15987.azuredatalakestore.net\",\r\n \"accountId\": \"fe4dfaa1-bd31-4848-8137-5ec845463d2c\",\r\n \"creationTime\": \"2016-11-10T22:56:22.2207688Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:56:22.2207688Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987\",\r\n \"name\": \"testadlfs15987\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs195.azuredatalakestore.net\",\r\n \"accountId\": \"b7298021-a31d-4f3e-9ac6-9f0d64da17cc\",\r\n \"creationTime\": \"2017-03-27T18:03:50.1911686Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:03:50.1911686Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195\",\r\n \"name\": \"testadlfs195\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:47 GMT" + "Mon, 27 Mar 2017 18:04:21 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e2c44f60-fa50-4c2a-9d87-9e87b0725b6a" + "474f32e7-5c16-4e10-a181-7f5ae962fdb2" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "d0d632fc-6325-4ba4-a7f0-78ca4164ce1a" + "d55ff71c-90f8-48ce-834a-76ec00ea0c8f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225648Z:d0d632fc-6325-4ba4-a7f0-78ca4164ce1a" + "WESTUS2:20170327T180422Z:d55ff71c-90f8-48ce-834a-76ec00ea0c8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU5ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "5bc89240-998d-48cd-a8de-8f8ca1f7fff5" + "7f694bb2-ad22-489e-b732-38647e66826f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fe4dfaa1-bd31-4848-8137-5ec845463d2c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987\",\r\n \"name\": \"testadlfs15987\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b7298021-a31d-4f3e-9ac6-9f0d64da17cc\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195\",\r\n \"name\": \"testadlfs195\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "416" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:16 GMT" + "Mon, 27 Mar 2017 18:03:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fe4dfaa1-bd31-4848-8137-5ec845463d2c0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b7298021-a31d-4f3e-9ac6-9f0d64da17cc0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "572faf4a-6042-44e1-8b13-74de05755235" + "959429d4-9076-4c43-ae94-f23fb6103fb3" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "1b73fa71-15a6-4b57-9d2e-636c76ca6e04" + "8b0fe862-e1a3-4f58-9dce-51d577c4f26f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225617Z:1b73fa71-15a6-4b57-9d2e-636c76ca6e04" + "WESTUS2:20170327T180350Z:8b0fe862-e1a3-4f58-9dce-51d577c4f26f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fe4dfaa1-bd31-4848-8137-5ec845463d2c0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZlNGRmYWExLWJkMzEtNDg0OC04MTM3LTVlYzg0NTQ2M2QyYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b7298021-a31d-4f3e-9ac6-9f0d64da17cc0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2I3Mjk4MDIxLWEzMWQtNGYzZS05YWM2LTlmMGQ2NGRhMTdjYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:47 GMT" + "Mon, 27 Mar 2017 18:04:20 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a7d3373c-85d5-43db-8f25-3d9fa1e5fbbd" + "c98b2d4b-0a72-409f-9243-c375636a2d30" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "a80e2c90-f676-4ad6-a8c9-e3ccbf5c84ac" + "82e5d9db-74d8-4888-a191-e6e2dace7117" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225647Z:a80e2c90-f676-4ad6-a8c9-e3ccbf5c84ac" + "WESTUS2:20170327T180421Z:82e5d9db-74d8-4888-a191-e6e2dace7117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,23 +727,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2Fnonexistentfile001.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGbm9uZXhpc3RlbnRmaWxlMDAxLnR4dD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/%2Fnonexistentfile001.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGbm9uZXhpc3RlbnRmaWxlMDAxLnR4dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4f8db3f-9783-4157-9fb1-01a205ae69ab" + "84243c0f-f483-48a0-9e7c-a48ea5b31251" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile001.txt [d1287c83-2bde-4962-9098-b8cab3a4fa0e][2016-11-10T14:56:50.0607406-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile001.txt [c17da41f-b8b1-4ff9-abb4-915f3f00b725][2017-03-27T11:04:33.1324237-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "243" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:56:49 GMT" + "Mon, 27 Mar 2017 18:04:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d1287c83-2bde-4962-9098-b8cab3a4fa0e" + "c17da41f-b8b1-4ff9-abb4-915f3f00b725" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -790,9 +783,9 @@ ], "Names": { ".ctor": [ - "datalakerg13549", - "testdatalake19601", - "testadlfs15987" + "datalakerg13039", + "testdatalake16981", + "testadlfs195" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json index dcf4bfbbb120..f0d18c3fed98 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68684b8c-4cb0-419c-8496-4dd60e22b834" + "de8992f4-100d-44b2-9ec0-270b30e3c86e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:53 GMT" + "Mon, 27 Mar 2017 18:19:51 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-request-id": [ - "eda56cad-3dc0-48c5-a585-189d3f30477e" + "e3ba586f-1571-4c66-86b0-ec807325f5c7" ], "x-ms-correlation-request-id": [ - "eda56cad-3dc0-48c5-a585-189d3f30477e" + "e3ba586f-1571-4c66-86b0-ec807325f5c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225854Z:eda56cad-3dc0-48c5-a585-189d3f30477e" + "WESTUS2:20170327T181951Z:e3ba586f-1571-4c66-86b0-ec807325f5c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86528df9-59af-40f2-b11b-4028c538d07c" + "10449b83-9dc1-46ab-ade2-652cc60c75e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:53 GMT" + "Mon, 27 Mar 2017 18:19:51 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14984" ], "x-ms-request-id": [ - "98212652-e91e-4c0d-9f8d-05b8466ba111" + "9c3af2de-ac21-4c0d-945e-4780672bfd6e" ], "x-ms-correlation-request-id": [ - "98212652-e91e-4c0d-9f8d-05b8466ba111" + "9c3af2de-ac21-4c0d-945e-4780672bfd6e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225854Z:98212652-e91e-4c0d-9f8d-05b8466ba111" + "WESTUS2:20170327T181951Z:9c3af2de-ac21-4c0d-945e-4780672bfd6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e453b6a-a445-45fe-9e0a-678f5aff8759" + "fb43824b-cdb6-499f-b492-deda48bc817c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:52 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-request-id": [ - "b5b7c0a0-1def-478c-bdcc-a38f8ae6cd4b" + "48e9715b-0d14-4233-b9f7-399e6da46077" ], "x-ms-correlation-request-id": [ - "b5b7c0a0-1def-478c-bdcc-a38f8ae6cd4b" + "48e9715b-0d14-4233-b9f7-399e6da46077" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225854Z:b5b7c0a0-1def-478c-bdcc-a38f8ae6cd4b" + "WESTUS2:20170327T181952Z:48e9715b-0d14-4233-b9f7-399e6da46077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a05d374e-ba08-4c0c-ba88-1728fa3e6e72" + "87a01d51-d760-417f-b9a4-eb25a23c4b21" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:52 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14983" ], "x-ms-request-id": [ - "91720ea6-91ba-41ef-92fe-cb6986817608" + "c4da9f21-0002-4194-a152-8d4096acf7b1" ], "x-ms-correlation-request-id": [ - "91720ea6-91ba-41ef-92fe-cb6986817608" + "c4da9f21-0002-4194-a152-8d4096acf7b1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225854Z:91720ea6-91ba-41ef-92fe-cb6986817608" + "WESTUS2:20170327T181952Z:c4da9f21-0002-4194-a152-8d4096acf7b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14309?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDMwOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6de67984-66e3-48ca-96c9-37ffe393528c" + "eda35e3b-0fba-413d-b609-08759751af1c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14309' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13977' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:52 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14982" ], "x-ms-request-id": [ - "578e2303-55b8-44a6-b033-051f50c6dd68" + "848b2fc3-4a76-4489-9559-cceff319f0db" ], "x-ms-correlation-request-id": [ - "578e2303-55b8-44a6-b033-051f50c6dd68" + "848b2fc3-4a76-4489-9559-cceff319f0db" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225855Z:578e2303-55b8-44a6-b033-051f50c6dd68" + "WESTUS2:20170327T181952Z:848b2fc3-4a76-4489-9559-cceff319f0db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14309?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDMwOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd241fbd-a9b5-4ca4-9340-da3675140f6a" + "eaedca70-3427-43ac-8f69-db4d0ee52e86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309\",\r\n \"name\": \"datalakerg14309\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977\",\r\n \"name\": \"datalakerg13977\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:53 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14981" ], "x-ms-request-id": [ - "3099e69e-9a28-407b-a74b-485cd710da06" + "b94cc817-0a63-4d87-9bef-11889be31b06" ], "x-ms-correlation-request-id": [ - "3099e69e-9a28-407b-a74b-485cd710da06" + "b94cc817-0a63-4d87-9bef-11889be31b06" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225855Z:3099e69e-9a28-407b-a74b-485cd710da06" + "WESTUS2:20170327T181954Z:b94cc817-0a63-4d87-9bef-11889be31b06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14309?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDMwOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "628d3538-75af-4140-ab00-8815b91aa92f" + "4ea2983c-b920-412e-91ac-48e9a5b6912a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309\",\r\n \"name\": \"datalakerg14309\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977\",\r\n \"name\": \"datalakerg13977\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-request-id": [ - "ec4b2220-cc71-4e14-8357-49de7f9acc55" + "a4b25918-8966-450d-8755-fc6f2c785416" ], "x-ms-correlation-request-id": [ - "ec4b2220-cc71-4e14-8357-49de7f9acc55" + "a4b25918-8966-450d-8755-fc6f2c785416" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225855Z:ec4b2220-cc71-4e14-8357-49de7f9acc55" + "WESTUS2:20170327T181954Z:a4b25918-8966-450d-8755-fc6f2c785416" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg1NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44fc7e84-ece5-4595-849e-2a4f8e2dac20" + "b0e35700-68c1-49ab-89ca-3300822c0102" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18564' under resource group 'datalakerg14309' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11493' under resource group 'datalakerg13977' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:55 GMT" + "Mon, 27 Mar 2017 18:19:53 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ed9f3463-4401-4adb-ba65-cc56949ef415" + "ec46a009-ddb0-49eb-a2d0-3bc159e696af" ], "x-ms-correlation-request-id": [ - "ed9f3463-4401-4adb-ba65-cc56949ef415" + "ec46a009-ddb0-49eb-a2d0-3bc159e696af" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225855Z:ed9f3463-4401-4adb-ba65-cc56949ef415" + "WESTUS2:20170327T181954Z:ec46a009-ddb0-49eb-a2d0-3bc159e696af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg1NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18564.azuredatalakestore.net\",\r\n \"accountId\": \"624469d2-37f0-4406-be56-488f32f9edaf\",\r\n \"creationTime\": \"2016-11-10T22:59:01.143642Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:59:01.143642Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564\",\r\n \"name\": \"testadlfs18564\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11493.azuredatalakestore.net\",\r\n \"accountId\": \"ab438df2-c03e-4fab-b265-a1e8a8b26525\",\r\n \"creationTime\": \"2017-03-27T18:19:56.2741945Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:19:56.2741945Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493\",\r\n \"name\": \"testadlfs11493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:59:27 GMT" + "Mon, 27 Mar 2017 18:20:27 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e20303b8-28ee-4518-bae4-0faf9c6c5a43" + "6b6cfc3c-42bf-4035-90de-e24ae19b95cd" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "8f4c608c-46a9-453c-b4c1-25d430814cf7" + "d1054569-d5ba-49a0-87f9-06411c3bfe27" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225927Z:8f4c608c-46a9-453c-b4c1-25d430814cf7" + "WESTUS2:20170327T182027Z:d1054569-d5ba-49a0-87f9-06411c3bfe27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg1NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd7684d4-1790-4704-9be2-42fbd5fe4d6c" + "e2260e7b-48e9-452c-a5e6-a4e33bbbe94d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18564.azuredatalakestore.net\",\r\n \"accountId\": \"624469d2-37f0-4406-be56-488f32f9edaf\",\r\n \"creationTime\": \"2016-11-10T22:59:01.143642Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:59:01.143642Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564\",\r\n \"name\": \"testadlfs18564\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11493.azuredatalakestore.net\",\r\n \"accountId\": \"ab438df2-c03e-4fab-b265-a1e8a8b26525\",\r\n \"creationTime\": \"2017-03-27T18:19:56.2741945Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:19:56.2741945Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493\",\r\n \"name\": \"testadlfs11493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:59:27 GMT" + "Mon, 27 Mar 2017 18:20:28 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26c290f2-7b73-42d4-9f10-260cb10e96ac" + "4cd034d5-7f29-4d84-bdd7-27d34551968e" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14986" ], "x-ms-correlation-request-id": [ - "d73b51dd-6acd-4c49-853c-817133e47d94" + "550e47d5-4b96-4bb6-bc87-cfa559d2bbe9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225928Z:d73b51dd-6acd-4c49-853c-817133e47d94" + "WESTUS2:20170327T182028Z:550e47d5-4b96-4bb6-bc87-cfa559d2bbe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg1NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "944bfa62-c74c-4daa-979a-f9d316c601f7" + "f10e16f2-b561-4980-b5dd-c05b146100c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"624469d2-37f0-4406-be56-488f32f9edaf\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564\",\r\n \"name\": \"testadlfs18564\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ab438df2-c03e-4fab-b265-a1e8a8b26525\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493\",\r\n \"name\": \"testadlfs11493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:56 GMT" + "Mon, 27 Mar 2017 18:19:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/624469d2-37f0-4406-be56-488f32f9edaf0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ab438df2-c03e-4fab-b265-a1e8a8b265250?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "2e96346c-8e67-41a3-9f71-5ce9962cf233" + "7a45915d-56eb-497d-a036-caeb0b68eab2" ], "X-Content-Type-Options": [ "nosniff" @@ -657,10 +652,10 @@ "1191" ], "x-ms-correlation-request-id": [ - "eca36dda-3e00-4a88-afe2-346f6510248b" + "10b245db-82a6-4ce0-ad17-43149b8f22e8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225856Z:eca36dda-3e00-4a88-afe2-346f6510248b" + "WESTUS2:20170327T181956Z:10b245db-82a6-4ce0-ad17-43149b8f22e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/624469d2-37f0-4406-be56-488f32f9edaf0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzYyNDQ2OWQyLTM3ZjAtNDQwNi1iZTU2LTQ4OGYzMmY5ZWRhZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ab438df2-c03e-4fab-b265-a1e8a8b265250?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2FiNDM4ZGYyLWMwM2UtNGZhYi1iMjY1LWExZThhOGIyNjUyNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:59:26 GMT" + "Mon, 27 Mar 2017 18:20:26 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0625a52d-e52e-4e59-ac47-9100e4f0faaa" + "73847811-2a4a-43db-a0fb-15e5fbdaaeaa" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14986" ], "x-ms-correlation-request-id": [ - "50b7ac23-b573-46c0-8c80-a1894ca8ec19" + "57bd457b-c6b1-4387-82d4-cb333d807a3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225927Z:50b7ac23-b573-46c0-8c80-a1894ca8ec19" + "WESTUS2:20170327T182027Z:57bd457b-c6b1-4387-82d4-cb333d807a3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,20 +727,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3Nz9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPU1LRElSUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70a4b138-5df4-425a-9c87-bc8a7ffcc437" + "d11d23ad-a478-451a-88b4-d6acff919e8d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:29 GMT" + "Mon, 27 Mar 2017 18:20:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3af9fbe4-129a-4fb4-b1d7-b092ae301d3a" + "6febafd9-58ca-4920-b293-f470c27851fb" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3Nz9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21475d41-1837-418a-b07d-22635e31f7b4" + "22d2204b-e1d8-4671-ac4f-f73d11d898ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1478818769807,\r\n \"modificationTime\": 1478818769807,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490638831855,\r\n \"modificationTime\": 1490638831855,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:29 GMT" + "Mon, 27 Mar 2017 18:20:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6ab8f39e-7103-4d94-8cc9-b84ba92e7716" + "5bbfe3bc-e43f-48c6-b178-88fbb3880711" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,8 +835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477%2FSDKTestFile01.txt3565?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3NyUyRlNES1Rlc3RGaWxlMDEudHh0MzU2NT9zeW5jRmxhZz1EQVRBJm9wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224%2FSDKTestFile01.txt3953?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0JTJGU0RLVGVzdEZpbGUwMS50eHQzOTUzP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -855,14 +847,13 @@ "0" ], "x-ms-client-request-id": [ - "ae5e6586-6ccc-4935-96de-97cc84bb33bf" + "efaf02fb-92b8-4bce-9161-477cc828f151" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -877,22 +868,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:29 GMT" + "Mon, 27 Mar 2017 18:20:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18564.azuredatalakestore.net/webhdfs/v1/SDKTestFolder016477/SDKTestFile01.txt3565?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11493.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01224/SDKTestFile01.txt3953?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "858c24ef-e598-4a0f-b9f1-67a5a1aa9fc9" + "0e9a95f9-e553-4adb-90c7-cc45cb779b5a" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,26 +898,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477%2FSDKTestFile01.txt3565?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3NyUyRlNES1Rlc3RGaWxlMDEudHh0MzU2NT9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224%2FSDKTestFile01.txt3953?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0JTJGU0RLVGVzdEZpbGUwMS50eHQzOTUzP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "317bcbb8-6211-4209-9bb5-dc913c53d8d2" + "78ad57ba-019f-4000-b4bb-24d7d3524a01" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818770019,\r\n \"modificationTime\": 1478818770019,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638832067,\r\n \"modificationTime\": 1490638832067,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:29 GMT" + "Mon, 27 Mar 2017 18:20:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "27531489-628c-474b-97d7-f9a421a3657b" + "8901098d-3268-43dd-be94-7a6bd0479cf1" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -962,26 +952,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3Nz9vcD1NU0xJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPUxJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2e7e7a7-b2f5-4d56-8686-04772ce81e23" + "29abe11c-4586-4504-b261-5bd7d25bed98" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 0,\r\n \"pathSuffix\": \"SDKTestFile01.txt3565\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818770019,\r\n \"modificationTime\": 1478818770019,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 0,\r\n \"pathSuffix\": \"SDKTestFile01.txt3953\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638832067,\r\n \"modificationTime\": 1490638832067,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "327" + "344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,16 +982,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:30 GMT" + "Mon, 27 Mar 2017 18:20:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7e84f061-407b-4581-9636-f9531a52405e" + "baf25232-830a-4e04-99f3-9c633c36ed8e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1019,15 +1008,15 @@ ], "Names": { ".ctor": [ - "datalakerg14309", - "testdatalake15597", - "testadlfs18564" + "datalakerg13977", + "testdatalake18226", + "testadlfs11493" ], "CreateFolder": [ - "SDKTestFolder016477" + "SDKTestFolder01224" ], "CreateFile": [ - "SDKTestFolder016477/SDKTestFile01.txt3565" + "SDKTestFolder01224/SDKTestFile01.txt3953" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json index 6f7ce75886a4..2cc18c46b568 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99cc605a-f6ac-41bd-b89b-21c10d7b70e3" + "c64b51cf-1854-4c76-963f-b4a4300447a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:36 GMT" + "Mon, 27 Mar 2017 18:23:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "dbb62554-a962-4bb9-a34a-703f44f6865e" + "e88753a3-f406-46ab-9d51-70aadcc34055" ], "x-ms-correlation-request-id": [ - "dbb62554-a962-4bb9-a34a-703f44f6865e" + "e88753a3-f406-46ab-9d51-70aadcc34055" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230136Z:dbb62554-a962-4bb9-a34a-703f44f6865e" + "CENTRALUS:20170327T182337Z:e88753a3-f406-46ab-9d51-70aadcc34055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba9b5c77-aa0c-48a9-9bce-82f27bcd5c59" + "2040b3c0-61b2-47d4-9c18-9b5d2d670cfb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:36 GMT" + "Mon, 27 Mar 2017 18:23:37 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "d6c97ce2-ee07-4938-94e2-0dace077da4d" + "1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" ], "x-ms-correlation-request-id": [ - "d6c97ce2-ee07-4938-94e2-0dace077da4d" + "1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230136Z:d6c97ce2-ee07-4938-94e2-0dace077da4d" + "CENTRALUS:20170327T182337Z:1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0300c84-0883-4e66-8fb0-97b70794e08f" + "1c14348f-a40e-4f4e-a559-b11854832880" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:37 GMT" + "Mon, 27 Mar 2017 18:23:37 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "e6730cc4-9378-4522-ae23-7e54e157926c" + "7c310980-3b92-4c62-89c5-27e49f5c4fa4" ], "x-ms-correlation-request-id": [ - "e6730cc4-9378-4522-ae23-7e54e157926c" + "7c310980-3b92-4c62-89c5-27e49f5c4fa4" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230137Z:e6730cc4-9378-4522-ae23-7e54e157926c" + "CENTRALUS:20170327T182337Z:7c310980-3b92-4c62-89c5-27e49f5c4fa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec328be5-2f66-4b9b-8b9d-52a1b88ca2ee" + "b4ee1251-d16c-44e4-a736-80f421987839" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:37 GMT" + "Mon, 27 Mar 2017 18:23:37 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-request-id": [ - "78efcc4f-9919-480a-940f-df40de5eabc5" + "65afcdef-eb55-4138-9ec0-59c79e1ffca2" ], "x-ms-correlation-request-id": [ - "78efcc4f-9919-480a-940f-df40de5eabc5" + "65afcdef-eb55-4138-9ec0-59c79e1ffca2" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230137Z:78efcc4f-9919-480a-940f-df40de5eabc5" + "CENTRALUS:20170327T182337Z:65afcdef-eb55-4138-9ec0-59c79e1ffca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14066?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDA2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bda42542-25dd-441b-aa09-dda4409f120c" + "158fece0-5a68-49e3-9b75-9d7eb32d6e2e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14066' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12776' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:37 GMT" + "Mon, 27 Mar 2017 18:23:37 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-request-id": [ - "f37e5e85-5346-417a-9ca0-a75ff58e5600" + "07488bb6-867c-4706-b507-70790b43a740" ], "x-ms-correlation-request-id": [ - "f37e5e85-5346-417a-9ca0-a75ff58e5600" + "07488bb6-867c-4706-b507-70790b43a740" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230137Z:f37e5e85-5346-417a-9ca0-a75ff58e5600" + "CENTRALUS:20170327T182337Z:07488bb6-867c-4706-b507-70790b43a740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14066?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDA2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece738fa-1c1c-4907-8523-3bd2c805933d" + "b0d1d267-d336-433e-893c-2c7e13623e27" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066\",\r\n \"name\": \"datalakerg14066\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776\",\r\n \"name\": \"datalakerg12776\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:39 GMT" + "Mon, 27 Mar 2017 18:23:38 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14994" ], "x-ms-request-id": [ - "ce4a761f-a0d4-4cfc-945f-08fb97c6f02a" + "a17fa7a8-eea1-4c6b-884d-8ab2dae10974" ], "x-ms-correlation-request-id": [ - "ce4a761f-a0d4-4cfc-945f-08fb97c6f02a" + "a17fa7a8-eea1-4c6b-884d-8ab2dae10974" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230140Z:ce4a761f-a0d4-4cfc-945f-08fb97c6f02a" + "CENTRALUS:20170327T182338Z:a17fa7a8-eea1-4c6b-884d-8ab2dae10974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14066?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDA2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "2702ff84-3d2f-4520-aa18-9c85701a7597" + "2401fd00-583a-4446-beae-f3175d3068b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066\",\r\n \"name\": \"datalakerg14066\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776\",\r\n \"name\": \"datalakerg12776\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:39 GMT" + "Mon, 27 Mar 2017 18:23:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "34d55c28-64a0-448a-bb4a-cc93263e796e" + "ba97c063-739f-4759-a772-a563c507d81e" ], "x-ms-correlation-request-id": [ - "34d55c28-64a0-448a-bb4a-cc93263e796e" + "ba97c063-739f-4759-a772-a563c507d81e" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230140Z:34d55c28-64a0-448a-bb4a-cc93263e796e" + "CENTRALUS:20170327T182338Z:ba97c063-739f-4759-a772-a563c507d81e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDA2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1441ba79-77f0-40f7-9738-d04402d1d04d" + "5264d2fa-e92e-47fa-8cb3-443172a32bca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1158' under resource group 'datalakerg14066' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11929' under resource group 'datalakerg12776' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:40 GMT" + "Mon, 27 Mar 2017 18:23:41 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "c2784051-5964-4054-bc36-20240df8eef6" + "a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" ], "x-ms-correlation-request-id": [ - "c2784051-5964-4054-bc36-20240df8eef6" + "a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230140Z:c2784051-5964-4054-bc36-20240df8eef6" + "CENTRALUS:20170327T182342Z:a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDA2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1158.azuredatalakestore.net\",\r\n \"accountId\": \"f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa\",\r\n \"creationTime\": \"2016-11-10T23:01:58.3400492Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:01:58.3400492Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158\",\r\n \"name\": \"testadlfs1158\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11929.azuredatalakestore.net\",\r\n \"accountId\": \"fcf95b9b-8c2d-4553-9c1c-677dd4379f09\",\r\n \"creationTime\": \"2017-03-27T18:23:43.8508058Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:23:43.8508058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929\",\r\n \"name\": \"testadlfs11929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:13 GMT" + "Mon, 27 Mar 2017 18:24:13 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d6b952f3-462b-4c99-b28c-080ecb7215d4" + "9e19e39d-0059-423e-8535-fd9bd7dc12c2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14992" ], "x-ms-correlation-request-id": [ - "1293c374-ae0f-4562-b4b0-1642a3155055" + "49b77f36-3f01-4027-a84d-ad1016c8d817" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230214Z:1293c374-ae0f-4562-b4b0-1642a3155055" + "CENTRALUS:20170327T182414Z:49b77f36-3f01-4027-a84d-ad1016c8d817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDA2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f96b73d-ef9c-4299-840c-182beee9d4df" + "fe467a72-69a8-400b-b3c5-77521f2659bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1158.azuredatalakestore.net\",\r\n \"accountId\": \"f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa\",\r\n \"creationTime\": \"2016-11-10T23:01:58.3400492Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:01:58.3400492Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158\",\r\n \"name\": \"testadlfs1158\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11929.azuredatalakestore.net\",\r\n \"accountId\": \"fcf95b9b-8c2d-4553-9c1c-677dd4379f09\",\r\n \"creationTime\": \"2017-03-27T18:23:43.8508058Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:23:43.8508058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929\",\r\n \"name\": \"testadlfs11929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:14 GMT" + "Mon, 27 Mar 2017 18:24:14 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bbab1491-a5e9-432e-ad0d-837547cba8d3" + "33d62345-61e8-485c-9e92-7af534386e59" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "d748577e-73d9-4e13-a0f8-bb0318850f13" + "ae8789c9-514a-4680-bf3c-42b6e1ea9bc6" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230214Z:d748577e-73d9-4e13-a0f8-bb0318850f13" + "CENTRALUS:20170327T182415Z:ae8789c9-514a-4680-bf3c-42b6e1ea9bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDA2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "65140830-c8e2-4970-b052-be3890de6f5a" + "f86add8b-7167-456a-8dd9-29e936d83d70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158\",\r\n \"name\": \"testadlfs1158\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fcf95b9b-8c2d-4553-9c1c-677dd4379f09\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929\",\r\n \"name\": \"testadlfs11929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "420" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:01:42 GMT" + "Mon, 27 Mar 2017 18:23:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fcf95b9b-8c2d-4553-9c1c-677dd4379f090?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "38904c79-229b-496a-91cf-7d3e2de0a9fc" + "3bd4efa4-5a14-4bdf-9002-528f060fe73b" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "0dbd621e-e69e-4244-a6aa-5390f848b19e" + "7ad014c1-4c4e-4308-81a7-a71fd426cead" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230142Z:0dbd621e-e69e-4244-a6aa-5390f848b19e" + "CENTRALUS:20170327T182343Z:7ad014c1-4c4e-4308-81a7-a71fd426cead" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YwMzE4ZjBlLWE5ZDItNDNkMS1iZmY3LTdiOWM3NWZmMWJmYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fcf95b9b-8c2d-4553-9c1c-677dd4379f090?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZjZjk1YjliLThjMmQtNDU1My05YzFjLTY3N2RkNDM3OWYwOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:12 GMT" + "Mon, 27 Mar 2017 18:24:13 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8c84825f-c854-477c-8eac-bb154f5110a1" + "deaf721a-a9e6-49fc-be9b-73b89c4c6bf1" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "1b31763a-d1ae-4735-9ae0-1f9df88a82ee" + "a6b23a88-6282-4b90-aac0-d1c5b3a94ea8" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230213Z:1b31763a-d1ae-4735-9ae0-1f9df88a82ee" + "CENTRALUS:20170327T182414Z:a6b23a88-6282-4b90-aac0-d1c5b3a94ea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7750?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzUwP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "d1d8ce6a-860f-4c34-9e7e-b15afd30dc5a" + "dd2e06c2-c8ff-4d69-85e4-338037f5d750" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:16 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs1158.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7750?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11929.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5451?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "1e412e90-8f3e-4da0-bf19-e9a955c4e0d7" + "23a3bc03-5ccc-4e46-a9c0-9be883913aa2" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7750?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzUwP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71a52689-aa60-4239-bdcc-93a15f986c08" + "4c3fa349-d0e7-4389-8a5d-3bec068758c9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818936188,\r\n \"modificationTime\": 1478818936246,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639064256,\r\n \"modificationTime\": 1490639064289,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:16 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a0f3253f-56fe-4104-8f21-6c89e8b12d72" + "b89e53c7-5e1c-4b13-887b-8415fc5f616f" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,23 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7750?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzUwP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76f0c254-6478-4401-a756-c718b81eec17" + "b78d0fc5-c6cf-4f5f-80fd-7a0f350be91a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt7750 [11f75e31-538b-4bb5-848a-ff088271dd6d][2016-11-10T15:02:17.2021939-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt5451 [47b1166c-d30a-4ae7-bfc6-a5dc55400da0][2017-03-27T11:24:24.9754616-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "11f75e31-538b-4bb5-848a-ff088271dd6d" + "47b1166c-d30a-4ae7-bfc6-a5dc55400da0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -907,20 +898,19 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017430?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzQzMD9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015003?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20447c92-5193-4967-b0ae-9be4416c55d3" + "af7ea475-0acd-4802-845c-949b2178b8be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:16 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7c0b696e-60ee-481b-887f-38118c96af30" + "d21633ea-5239-4055-a656-ee9673bac414" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -962,20 +952,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7750?destination=SDKTestFolder017430%2FSDKTestMoveFile01.txt&op=RENAME&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzUwP2Rlc3RpbmF0aW9uPVNES1Rlc3RGb2xkZXIwMTc0MzAlMkZTREtUZXN0TW92ZUZpbGUwMS50eHQmb3A9UkVOQU1FJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?destination=SDKTestFolder015003%2FSDKTestMoveFile01.txt&op=RENAME&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP2Rlc3RpbmF0aW9uPVNES1Rlc3RGb2xkZXIwMTUwMDMlMkZTREtUZXN0TW92ZUZpbGUwMS50eHQmb3A9UkVOQU1FJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70543ee6-b714-4c08-aac1-381cab581b6d" + "7cd7b056-0b07-483f-a0b1-2b8136501cff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -993,16 +982,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:16 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2815f751-09df-4f45-8865-5e74d45ff804" + "da43e98c-e77b-420f-aec5-2e6902418006" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1017,26 +1006,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017430%2FSDKTestMoveFile01.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzQzMCUyRlNES1Rlc3RNb3ZlRmlsZTAxLnR4dD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015003%2FSDKTestMoveFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMyUyRlNES1Rlc3RNb3ZlRmlsZTAxLnR4dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "162b629a-a779-4492-9132-9fc4417dee89" + "c1beddf1-ac91-45d5-944b-ca285e2cbc8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818936188,\r\n \"modificationTime\": 1478818936246,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639064256,\r\n \"modificationTime\": 1490639064289,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1048,16 +1036,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "54ffd69e-10e5-44ec-94e9-f01e0c3647f8" + "1fb49a53-b0f5-4507-9c3b-3a294777dddf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1072,20 +1060,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017430?destination=SDKTestMoveFolder016315&op=RENAME&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzQzMD9kZXN0aW5hdGlvbj1TREtUZXN0TW92ZUZvbGRlcjAxNjMxNSZvcD1SRU5BTUUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015003?destination=SDKTestMoveFolder017643&op=RENAME&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9kZXN0aW5hdGlvbj1TREtUZXN0TW92ZUZvbGRlcjAxNzY0MyZvcD1SRU5BTUUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f2d5871-0cac-4bc4-8904-0f6463138a6d" + "3ade9e94-2599-4413-8662-aba4b949e886" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1103,16 +1090,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b92c26fa-bcce-4ed5-9165-ea223857e70d" + "7b64a9a4-1978-4cd0-ab31-2c2f2807ddaf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1127,26 +1114,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestMoveFolder016315?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTYzMTU/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestMoveFolder017643?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTc2NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bc904ce-417f-41a0-ab83-5f64cc9a9d67" + "0201e07c-7621-428f-8f59-01cdc4b8a85f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1478818936904,\r\n \"modificationTime\": 1478818937017,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490639064645,\r\n \"modificationTime\": 1490639064768,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1158,16 +1144,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b5b5166b-14af-4051-aa36-e0b21f19f161" + "47e39021-63c0-44be-ab0a-6b9f814a400d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1182,26 +1168,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestMoveFolder016315?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTYzMTU/b3A9TVNMSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestMoveFolder017643?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTc2NDM/b3A9TElTVFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cab858e-0d54-47ae-9e4d-bc90165197e7" + "bf2955ce-e92a-4094-aa26-99c33dfd2866" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestMoveFile01.txt\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818936188,\r\n \"modificationTime\": 1478818936246,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestMoveFile01.txt\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639064256,\r\n \"modificationTime\": 1490639064289,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "328" + "345" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1213,16 +1198,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a86795d0-f38d-45a8-ad56-f30cbafb09e8" + "2e640f4f-309a-42b8-8b34-1f90cd8ff864" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1237,23 +1222,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017430?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzQzMD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015003?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eead8ea-753b-4a79-889c-d4d2c9460977" + "2949cc2d-fca7-4f4d-acf7-21779796509f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017430 [8fbec3a0-c073-47df-89d0-479f97d1a568][2016-11-10T15:02:17.6240583-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder015003 [c9944d76-33ed-4fd2-a8cf-7c34dedcdbb7][2017-03-27T11:24:25.4754379-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "240" @@ -1268,16 +1252,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8fbec3a0-c073-47df-89d0-479f97d1a568" + "c9944d76-33ed-4fd2-a8cf-7c34dedcdbb7" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1294,18 +1278,18 @@ ], "Names": { ".ctor": [ - "datalakerg14066", - "testdatalake17602", - "testadlfs1158" + "datalakerg12776", + "testdatalake14538", + "testadlfs11929" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7750" + "SDKTestFolder01/SDKTestFile01.txt5451" ], "CreateFolder": [ - "SDKTestFolder017430" + "SDKTestFolder015003" ], "DataLakeStoreFileSystemMoveFileAndFolder": [ - "SDKTestMoveFolder016315" + "SDKTestMoveFolder017643" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json index 1b0d2bec52b6..b8557d4dfd50 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c051b36a-3d4a-42f9-9e74-6022fdec4ecc" + "112a35c4-6541-45ad-8409-49f04c9b5fc7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:58 GMT" + "Mon, 27 Mar 2017 18:06:32 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "220c3b1d-28d2-42c3-bdb6-ec616da991c9" + "c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" ], "x-ms-correlation-request-id": [ - "220c3b1d-28d2-42c3-bdb6-ec616da991c9" + "c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223659Z:220c3b1d-28d2-42c3-bdb6-ec616da991c9" + "WESTUS2:20170327T180633Z:c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3166770a-b795-4126-af69-b1d96848e00c" + "b46cf2cf-6dbd-4c9a-906d-e11674faf1ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:58 GMT" + "Mon, 27 Mar 2017 18:06:32 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-request-id": [ - "ba4a5563-768a-4680-8bbc-722c2b3e0732" + "614ae20b-2032-4a23-b7a9-6e7bc9355981" ], "x-ms-correlation-request-id": [ - "ba4a5563-768a-4680-8bbc-722c2b3e0732" + "614ae20b-2032-4a23-b7a9-6e7bc9355981" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223659Z:ba4a5563-768a-4680-8bbc-722c2b3e0732" + "WESTUS2:20170327T180633Z:614ae20b-2032-4a23-b7a9-6e7bc9355981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e898b799-efeb-4835-a3fe-2e84634f9570" + "827e8bf5-5a98-4dcd-9633-2891732a05e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:32 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "ba042492-00f6-4661-bfdc-02eb54667e36" + "08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" ], "x-ms-correlation-request-id": [ - "ba042492-00f6-4661-bfdc-02eb54667e36" + "08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:ba042492-00f6-4661-bfdc-02eb54667e36" + "WESTUS2:20170327T180633Z:08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "394ee7ef-1dfb-43f3-86c0-5c2aa7d7ce0f" + "7d4d7952-a2df-40ad-9592-60944f325a7a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:32 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-request-id": [ - "cd0e0f24-0af7-4a9e-803b-bb8173eae228" + "9df88a4c-a67c-4c14-8549-bff8c45e1bd5" ], "x-ms-correlation-request-id": [ - "cd0e0f24-0af7-4a9e-803b-bb8173eae228" + "9df88a4c-a67c-4c14-8549-bff8c45e1bd5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:cd0e0f24-0af7-4a9e-803b-bb8173eae228" + "WESTUS2:20170327T180633Z:9df88a4c-a67c-4c14-8549-bff8c45e1bd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18899?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODg5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75626a6b-c082-4fc8-816b-4bb3c5e5a862" + "26d078bb-5126-47bd-b6c9-6ffb42040c66" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18899' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11679' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:33 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-request-id": [ - "f27e02ae-9756-4943-9663-0ca231672947" + "8b72fe97-bbb3-4756-a110-efd2e335a413" ], "x-ms-correlation-request-id": [ - "f27e02ae-9756-4943-9663-0ca231672947" + "8b72fe97-bbb3-4756-a110-efd2e335a413" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:f27e02ae-9756-4943-9663-0ca231672947" + "WESTUS2:20170327T180633Z:8b72fe97-bbb3-4756-a110-efd2e335a413" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18899?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODg5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1135432-c2aa-4a68-b618-3bef95b898e5" + "6a7d39ee-5887-497a-82da-721d328187a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899\",\r\n \"name\": \"datalakerg18899\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679\",\r\n \"name\": \"datalakerg11679\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:34 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-request-id": [ - "318caa73-07ec-40db-abec-4749a1f8cdf2" + "1030a2a7-ee34-428e-a276-cdce2f65f651" ], "x-ms-correlation-request-id": [ - "318caa73-07ec-40db-abec-4749a1f8cdf2" + "1030a2a7-ee34-428e-a276-cdce2f65f651" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:318caa73-07ec-40db-abec-4749a1f8cdf2" + "WESTUS2:20170327T180634Z:1030a2a7-ee34-428e-a276-cdce2f65f651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18899?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODg5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "26336ff0-6e1e-4e42-9981-e503ea0ccfbf" + "e223afde-1305-4685-adf9-bd342052f947" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899\",\r\n \"name\": \"datalakerg18899\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679\",\r\n \"name\": \"datalakerg11679\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "c0e81c34-5a4b-4242-b471-3376fbf82131" + "70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" ], "x-ms-correlation-request-id": [ - "c0e81c34-5a4b-4242-b471-3376fbf82131" + "70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:c0e81c34-5a4b-4242-b471-3376fbf82131" + "WESTUS2:20170327T180634Z:70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyNzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6af5c55-1114-4944-a5c5-9ee204e60163" + "54d5a8f7-5459-40ba-b4cf-381fb0e7e52c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18272' under resource group 'datalakerg18899' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs14042' under resource group 'datalakerg11679' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:00 GMT" + "Mon, 27 Mar 2017 18:06:35 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "f253497f-1bb2-425d-b610-163c325e576b" + "ccea031d-699a-4d13-95d1-22cfabc1404f" ], "x-ms-correlation-request-id": [ - "f253497f-1bb2-425d-b610-163c325e576b" + "ccea031d-699a-4d13-95d1-22cfabc1404f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:f253497f-1bb2-425d-b610-163c325e576b" + "WESTUS2:20170327T180635Z:ccea031d-699a-4d13-95d1-22cfabc1404f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyNzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18272.azuredatalakestore.net\",\r\n \"accountId\": \"3d9302ef-eeaf-4e88-8d70-8995eaa34b66\",\r\n \"creationTime\": \"2016-11-10T22:37:05.9538265Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:37:05.9538265Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272\",\r\n \"name\": \"testadlfs18272\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14042.azuredatalakestore.net\",\r\n \"accountId\": \"11637310-f861-4853-8274-457dac625adc\",\r\n \"creationTime\": \"2017-03-27T18:06:36.88723Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:06:36.88723Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042\",\r\n \"name\": \"testadlfs14042\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:32 GMT" + "Mon, 27 Mar 2017 18:07:07 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bb756421-75b3-46d2-ba5d-f9273ad0a0b7" + "dfdc8dd6-cc96-4a95-9535-bbd253ca5ef1" ], "X-Content-Type-Options": [ "nosniff" @@ -502,10 +499,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "9aa27344-9122-4c84-8b61-bf03620266d6" + "1b079c49-887c-4e48-81b2-d15e8d385d9f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223732Z:9aa27344-9122-4c84-8b61-bf03620266d6" + "WESTUS2:20170327T180708Z:1b079c49-887c-4e48-81b2-d15e8d385d9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyNzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a6342da-a16f-4e02-bc53-71d722d80c4e" + "cd246778-f1c2-407f-9561-b1bc7350906f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18272.azuredatalakestore.net\",\r\n \"accountId\": \"3d9302ef-eeaf-4e88-8d70-8995eaa34b66\",\r\n \"creationTime\": \"2016-11-10T22:37:05.9538265Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:37:05.9538265Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272\",\r\n \"name\": \"testadlfs18272\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14042.azuredatalakestore.net\",\r\n \"accountId\": \"11637310-f861-4853-8274-457dac625adc\",\r\n \"creationTime\": \"2017-03-27T18:06:36.88723Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:06:36.88723Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042\",\r\n \"name\": \"testadlfs14042\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:32 GMT" + "Mon, 27 Mar 2017 18:07:08 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1dbf510c-b5cb-4a1c-952f-95896dad96a4" + "b5e25a5e-a5c0-4203-b0f1-386f02d68683" ], "X-Content-Type-Options": [ "nosniff" @@ -572,10 +568,10 @@ "14994" ], "x-ms-correlation-request-id": [ - "bb8fbb54-57a3-48c5-b7af-8b8d79e88373" + "df2df093-c5ce-43fa-8ff7-6cc1fa51e032" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223733Z:bb8fbb54-57a3-48c5-b7af-8b8d79e88373" + "WESTUS2:20170327T180708Z:df2df093-c5ce-43fa-8ff7-6cc1fa51e032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyNzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "4311918f-be61-4559-ac06-83c0ee6c32cf" + "b1d8f0c6-19f9-4896-a645-42675c79e7f2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3d9302ef-eeaf-4e88-8d70-8995eaa34b66\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272\",\r\n \"name\": \"testadlfs18272\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"11637310-f861-4853-8274-457dac625adc\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042\",\r\n \"name\": \"testadlfs14042\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:01 GMT" + "Mon, 27 Mar 2017 18:06:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3d9302ef-eeaf-4e88-8d70-8995eaa34b660?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/11637310-f861-4853-8274-457dac625adc0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ebeefcc6-56a1-430e-ba8e-b1d3a7ebac53" + "216eca94-2cd4-4be9-850b-9d43456cdf36" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "3a210429-27dc-4fe9-872e-fc54599d746d" + "9eb1dd72-805e-47c6-94e2-69ee9a3bad91" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223701Z:3a210429-27dc-4fe9-872e-fc54599d746d" + "WESTUS2:20170327T180637Z:9eb1dd72-805e-47c6-94e2-69ee9a3bad91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3d9302ef-eeaf-4e88-8d70-8995eaa34b660?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkOTMwMmVmLWVlYWYtNGU4OC04ZDcwLTg5OTVlYWEzNGI2NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/11637310-f861-4853-8274-457dac625adc0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzExNjM3MzEwLWY4NjEtNDg1My04Mjc0LTQ1N2RhYzYyNWFkYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:31 GMT" + "Mon, 27 Mar 2017 18:07:06 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7db81dff-72b9-432d-8c24-91644c2b5c04" + "448aea7a-21d2-49c9-b758-6eb6d6fb27af" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "cd208fee-cdbd-410a-9c27-ffc05750382d" + "37cea37a-c990-47d6-92b0-d1b87b0a3f30" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223732Z:cd208fee-cdbd-410a-9c27-ffc05750382d" + "WESTUS2:20170327T180707Z:37cea37a-c990-47d6-92b0-d1b87b0a3f30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6286?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYyODY/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "f7271c29-decd-4023-a69c-ef4c126586f0" + "3427b49c-8093-4c77-bad7-b2bfc4719560" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18272.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6286?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs14042.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "56fc0e05-68b4-47a1-a484-db74c1ad190a" + "6c6b41ee-aef0-49f9-997b-8a45dacab91b" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6286?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYyODY/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81311b92-8b00-47ff-8823-54367bbbcf4a" + "4db5dab1-710e-46fd-b9ca-a8b53e602645" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817458855,\r\n \"modificationTime\": 1478817458984,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638030882,\r\n \"modificationTime\": 1490638030931,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3b0c5462-e527-46ef-817e-c907c24d4692" + "5a9051b2-1d91-4f27-b097-5015b04c50c5" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,23 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6286?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYyODY/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da2cbe57-7ce8-449c-ab3e-168b70c8cc34" + "495eb0f1-94e5-4b91-ad60-9b21163edb56" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6286 [90d044a2-0841-4eb1-9a9d-2fd8c66b49e2][2016-11-10T14:37:40.6018309-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843 [556455d1-9671-4cd3-a66a-f606caae1891][2017-03-27T11:07:12.6059012-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "273" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "90d044a2-0841-4eb1-9a9d-2fd8c66b49e2" + "556455d1-9671-4cd3-a66a-f606caae1891" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -907,8 +898,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt7451?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDc0NTE/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -919,14 +910,13 @@ "42" ], "x-ms-client-request-id": [ - "35656915-288c-47e7-91ec-c96189366e07" + "0911d6ae-8e48-4ed4-8657-d41c1cd5a77f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,22 +931,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18272.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt7451?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs14042.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "612a5640-fa2a-4dc5-ba25-209bf680c50a" + "61971e58-9fbb-482b-b98e-5e87f1695284" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -971,26 +961,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt7451?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDc0NTE/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28c0fbed-e0ae-4616-ae0d-cc2a5270a0d6" + "9e2e509d-253e-4a7c-8454-2c1d3f8686bb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817459589,\r\n \"modificationTime\": 1478817459642,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638031382,\r\n \"modificationTime\": 1490638031473,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,16 +991,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8181b1da-f80d-4111-b589-77fd5bc263b5" + "6d38dec3-1071-44ef-9b50-2ad21351cfe7" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1026,23 +1015,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt7451?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDc0NTE/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a283406-760c-4ae6-a86f-7fc725100efe" + "5bc28079-6d4d-475a-9278-da801341677e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt7451 [5e9ad7fa-6895-42aa-b3a0-b150a066bcd0][2016-11-10T14:37:40.7268102-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462 [b9e07c01-b8a9-4c58-a070-3ac14c28c080][2017-03-27T11:07:12.7465079-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "273" @@ -1057,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5e9ad7fa-6895-42aa-b3a0-b150a066bcd0" + "b9e07c01-b8a9-4c58-a070-3ac14c28c080" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1081,20 +1069,19 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder012806?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjgwNj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019066?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2Nj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61693a34-6e03-4588-a65f-cee598c1ad76" + "f16e3684-db6e-4536-83b7-5e4152f61b18" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1112,16 +1099,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1187f88a-608e-4478-ab46-f42d8e573c3d" + "8a7e01e7-4a92-4cc5-b3a5-7e66c58bf2df" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1136,10 +1123,10 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder012806%2FSDKTestConcatFile01.txt?deleteSourceDirectory=true&op=MSCONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjgwNiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P2RlbGV0ZVNvdXJjZURpcmVjdG9yeT10cnVlJm9wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019066%2FSDKTestConcatFile01.txt?deleteSourceDirectory=true&op=MSCONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2NiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P2RlbGV0ZVNvdXJjZURpcmVjdG9yeT10cnVlJm9wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "sources=SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6286,SDKTestFolder01/msconcatFolder/SDKTestFile01.txt7451", + "RequestBody": "sources=SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843,SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462", "RequestHeaders": { "Content-Type": [ "application/octet-stream" @@ -1148,14 +1135,13 @@ "113" ], "x-ms-client-request-id": [ - "ef11f59e-4a3d-4539-9809-ff5824642505" + "64d2a9ba-b695-4ae9-9c9d-f73b62d72968" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1170,16 +1156,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0f3c9cf3-6b30-48fe-beb7-21f082bae27e" + "b5e15fa8-9386-4f32-b9db-3e152d77f758" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1194,26 +1180,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder012806%2FSDKTestConcatFile01.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjgwNiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder019066%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2NiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb834ca1-6970-47b1-a19b-07802a2d376a" + "68d6d5ab-5923-4fe2-9d91-166c9d896f71" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817460320,\r\n \"modificationTime\": 1478817460351,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638032303,\r\n \"modificationTime\": 1490638032335,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1225,16 +1210,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cd10463a-5155-4f79-a22d-458414ee4612" + "5b362a5b-cc55-42f5-9596-5e14c4a1f850" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1249,23 +1234,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXI/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9ccab2d-e5ff-49f6-aadb-3be579669be9" + "c5af4b01-34f7-4c59-8c56-b357f0007e12" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder [23caee9f-084b-425b-98cc-57287c261134][2016-11-10T14:37:40.8518430-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder [1a2e882a-53c7-403d-b430-dd7c91464850][2017-03-27T11:07:12.8715311-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "251" @@ -1280,16 +1264,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "23caee9f-084b-425b-98cc-57287c261134" + "1a2e882a-53c7-403d-b430-dd7c91464850" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1306,16 +1290,16 @@ ], "Names": { ".ctor": [ - "datalakerg18899", - "testdatalake15495", - "testadlfs18272" + "datalakerg11679", + "testdatalake15445", + "testadlfs14042" ], "CreateFile": [ - "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6286", - "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt7451" + "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843", + "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462" ], "CreateFolder": [ - "SDKTestFolder012806" + "SDKTestFolder019066" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json index 811ae57edf24..a1b94f6315e2 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96236008-52b8-4184-8390-15923f4c0f77" + "29919c23-63e1-4bec-8ff0-2b472fc8593f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:02 GMT" + "Mon, 27 Mar 2017 18:43:14 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-request-id": [ - "c40d2486-1ecb-4c9b-89dc-d2597cde6281" + "aed14a85-8a7a-4de1-9101-915b2c906be4" ], "x-ms-correlation-request-id": [ - "c40d2486-1ecb-4c9b-89dc-d2597cde6281" + "aed14a85-8a7a-4de1-9101-915b2c906be4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230303Z:c40d2486-1ecb-4c9b-89dc-d2597cde6281" + "CENTRALUS:20170327T184314Z:aed14a85-8a7a-4de1-9101-915b2c906be4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2dff39a-ea63-4993-bdbc-02c74ec959d9" + "67116321-1338-4f64-8610-6620ff4cce42" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:02 GMT" + "Mon, 27 Mar 2017 18:43:14 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-request-id": [ - "39056e6f-3d41-4314-b3d5-9bd2aeda4aed" + "4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" ], "x-ms-correlation-request-id": [ - "39056e6f-3d41-4314-b3d5-9bd2aeda4aed" + "4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230303Z:39056e6f-3d41-4314-b3d5-9bd2aeda4aed" + "CENTRALUS:20170327T184315Z:4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2f1e012-c09f-4303-8525-7986101f634a" + "6e4b6bb8-37bc-46f8-b1ad-536fee441c47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:04 GMT" + "Mon, 27 Mar 2017 18:43:14 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-request-id": [ - "46ac43ed-113b-430a-9e3b-3b2ad155edb7" + "bd2346ff-2e24-4454-bf66-23eb60318a90" ], "x-ms-correlation-request-id": [ - "46ac43ed-113b-430a-9e3b-3b2ad155edb7" + "bd2346ff-2e24-4454-bf66-23eb60318a90" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230304Z:46ac43ed-113b-430a-9e3b-3b2ad155edb7" + "CENTRALUS:20170327T184315Z:bd2346ff-2e24-4454-bf66-23eb60318a90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b98ba880-72e7-4ce1-b645-a9c88dcbb6da" + "e015b4e7-c044-4620-8a2f-762da456a535" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:04 GMT" + "Mon, 27 Mar 2017 18:43:15 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "a538e120-5d40-42a2-8354-309167aa3e75" + "88f1423e-7517-4a4f-92a4-09f64337e03c" ], "x-ms-correlation-request-id": [ - "a538e120-5d40-42a2-8354-309167aa3e75" + "88f1423e-7517-4a4f-92a4-09f64337e03c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230304Z:a538e120-5d40-42a2-8354-309167aa3e75" + "CENTRALUS:20170327T184315Z:88f1423e-7517-4a4f-92a4-09f64337e03c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11771?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTc3MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bc0f734-9fff-4298-bcb2-db6d747e846b" + "55843cbe-c272-40a9-8f11-5064836f28bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11771' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13347' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:04 GMT" + "Mon, 27 Mar 2017 18:43:15 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14988" ], "x-ms-request-id": [ - "8923e0f5-705d-454a-a4af-ad339b5a3712" + "7f5cda58-d551-42ac-a944-962d4ccf1ae9" ], "x-ms-correlation-request-id": [ - "8923e0f5-705d-454a-a4af-ad339b5a3712" + "7f5cda58-d551-42ac-a944-962d4ccf1ae9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230304Z:8923e0f5-705d-454a-a4af-ad339b5a3712" + "CENTRALUS:20170327T184315Z:7f5cda58-d551-42ac-a944-962d4ccf1ae9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11771?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTc3MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f79a4371-b3d6-43de-a35f-39b3ea779df0" + "5c0646aa-4d8e-42b1-b2e3-8c0126017b5e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771\",\r\n \"name\": \"datalakerg11771\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347\",\r\n \"name\": \"datalakerg13347\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:05 GMT" + "Mon, 27 Mar 2017 18:43:16 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-request-id": [ - "306ada3b-1ee9-4364-846a-94a8fbc102d0" + "e9b3e7aa-2a07-437e-90a0-57d95887e13e" ], "x-ms-correlation-request-id": [ - "306ada3b-1ee9-4364-846a-94a8fbc102d0" + "e9b3e7aa-2a07-437e-90a0-57d95887e13e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230305Z:306ada3b-1ee9-4364-846a-94a8fbc102d0" + "CENTRALUS:20170327T184316Z:e9b3e7aa-2a07-437e-90a0-57d95887e13e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11771?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTc3MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "77532d45-d0be-4dc4-b422-465cb62a4a76" + "e1fce4af-d548-497a-ab92-4411864f0aa1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771\",\r\n \"name\": \"datalakerg11771\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347\",\r\n \"name\": \"datalakerg13347\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:05 GMT" + "Mon, 27 Mar 2017 18:43:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "c182b184-8961-4e6a-8848-fa358ec30cdc" + "ccfba5d1-3ba5-4926-8217-c2826d41fd9e" ], "x-ms-correlation-request-id": [ - "c182b184-8961-4e6a-8848-fa358ec30cdc" + "ccfba5d1-3ba5-4926-8217-c2826d41fd9e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230305Z:c182b184-8961-4e6a-8848-fa358ec30cdc" + "CENTRALUS:20170327T184316Z:ccfba5d1-3ba5-4926-8217-c2826d41fd9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTc3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33989578-131e-4f2e-aebf-f19116c284ed" + "5f6edd15-63f8-4447-9903-1bda948be666" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16448' under resource group 'datalakerg11771' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12542' under resource group 'datalakerg13347' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:05 GMT" + "Mon, 27 Mar 2017 18:43:17 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "fc1e6db4-3b29-4aaf-a602-a04d2b18816a" + "f87bdb0b-feb5-4faa-903e-75b4e9085d8b" ], "x-ms-correlation-request-id": [ - "fc1e6db4-3b29-4aaf-a602-a04d2b18816a" + "f87bdb0b-feb5-4faa-903e-75b4e9085d8b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230305Z:fc1e6db4-3b29-4aaf-a602-a04d2b18816a" + "CENTRALUS:20170327T184317Z:f87bdb0b-feb5-4faa-903e-75b4e9085d8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTc3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16448.azuredatalakestore.net\",\r\n \"accountId\": \"420bfacb-8731-4e7c-8d84-87addd9e5246\",\r\n \"creationTime\": \"2016-11-10T23:03:10.9511214Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:03:10.9511214Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448\",\r\n \"name\": \"testadlfs16448\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12542.azuredatalakestore.net\",\r\n \"accountId\": \"0caf8536-28ce-4b51-b2e6-ae66cd856474\",\r\n \"creationTime\": \"2017-03-27T18:43:19.6800697Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:43:19.6800697Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542\",\r\n \"name\": \"testadlfs12542\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:03:37 GMT" + "Mon, 27 Mar 2017 18:43:50 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9a907584-a3e8-4e14-aa75-1c0e07575019" + "0de91aef-c1d9-439b-b098-0901c10ad51f" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "3c2db721-b036-46f6-b06f-b2f2a5cea16c" + "41f04180-6c89-4fec-88f7-ed0507e65f81" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230337Z:3c2db721-b036-46f6-b06f-b2f2a5cea16c" + "CENTRALUS:20170327T184350Z:41f04180-6c89-4fec-88f7-ed0507e65f81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTc3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0265006b-fda9-44d6-b40f-5f9caac80af9" + "33cdb3f6-d1e7-4b79-bebb-0b5e1c0f9de0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16448.azuredatalakestore.net\",\r\n \"accountId\": \"420bfacb-8731-4e7c-8d84-87addd9e5246\",\r\n \"creationTime\": \"2016-11-10T23:03:10.9511214Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:03:10.9511214Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448\",\r\n \"name\": \"testadlfs16448\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12542.azuredatalakestore.net\",\r\n \"accountId\": \"0caf8536-28ce-4b51-b2e6-ae66cd856474\",\r\n \"creationTime\": \"2017-03-27T18:43:19.6800697Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:43:19.6800697Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542\",\r\n \"name\": \"testadlfs12542\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:03:37 GMT" + "Mon, 27 Mar 2017 18:43:49 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1910fb7e-f717-420d-b3c8-96e247ef5899" + "62850000-c821-4207-89a3-349a86e60c17" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14986" ], "x-ms-correlation-request-id": [ - "14b5bf76-edc8-4938-9752-896044170d9a" + "d1ad6000-3c83-412b-b3e9-db27f88e36d1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230338Z:14b5bf76-edc8-4938-9752-896044170d9a" + "CENTRALUS:20170327T184350Z:d1ad6000-3c83-412b-b3e9-db27f88e36d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTc3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "87eee3c6-c60c-4ddf-a548-045c944d6501" + "61a47cc2-5496-4d69-90b6-c9f4165fab69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"420bfacb-8731-4e7c-8d84-87addd9e5246\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448\",\r\n \"name\": \"testadlfs16448\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0caf8536-28ce-4b51-b2e6-ae66cd856474\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542\",\r\n \"name\": \"testadlfs12542\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:03:06 GMT" + "Mon, 27 Mar 2017 18:43:18 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/420bfacb-8731-4e7c-8d84-87addd9e52460?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0caf8536-28ce-4b51-b2e6-ae66cd8564740?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "d73f370d-3a16-45c2-9874-d1c788febb46" + "3b7c6e66-3939-4d24-9914-a0f3aac7776c" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "28aef5bc-cf6c-4b05-a539-84922fadc05f" + "23617e19-d227-453f-b9c7-86bf0811accf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230306Z:28aef5bc-cf6c-4b05-a539-84922fadc05f" + "CENTRALUS:20170327T184318Z:23617e19-d227-453f-b9c7-86bf0811accf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/420bfacb-8731-4e7c-8d84-87addd9e52460?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQyMGJmYWNiLTg3MzEtNGU3Yy04ZDg0LTg3YWRkZDllNTI0NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0caf8536-28ce-4b51-b2e6-ae66cd8564740?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBjYWY4NTM2LTI4Y2UtNGI1MS1iMmU2LWFlNjZjZDg1NjQ3NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:03:36 GMT" + "Mon, 27 Mar 2017 18:43:48 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "54992273-c871-412e-acdb-561c1f9aa43d" + "7591948a-504f-4515-ae6f-463f3d53beb5" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "03366113-6684-46e3-a4aa-2fd0219b31ca" + "f1b0c63a-1a73-46c4-88e1-95ec9f9162ae" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230337Z:03366113-6684-46e3-a4aa-2fd0219b31ca" + "CENTRALUS:20170327T184349Z:f1b0c63a-1a73-46c4-88e1-95ec9f9162ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8911?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4OTExP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "d04c4141-279d-4399-bb55-d3f211302cf8" + "67631ebc-8a5c-488b-88bd-df6804696c8d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16448.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt8911?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12542.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt9567?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "2be798fa-49eb-4183-8ed7-621364fb1cb2" + "76bad24c-1102-4325-89b4-1ff2c518af13" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8911?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4OTExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f53f5cc9-5392-4296-a8d6-6218028eb4cf" + "6e8191e5-aec0-4911-b981-7bd4c833f81a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478819020087,\r\n \"modificationTime\": 1478819020136,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490640236540,\r\n \"modificationTime\": 1490640236605,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "327f8469-abdc-495b-8fec-8628e5a44fae" + "5c8f6fb2-4024-45b8-8e32-5037f9c82aad" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,23 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8911?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4OTExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3263af75-a33b-47c5-9e36-70a0b9580795" + "2793d516-2e13-4832-aede-fd6672cceba1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt8911 [3f4b2a55-9b1a-4225-b2a0-a02a410eb94b][2016-11-10T15:03:41.5519462-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt9567 [3400f4a5-36e9-49c9-b3bf-ee002f4745b6][2017-03-27T11:43:58.0896336-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:41 GMT" + "Mon, 27 Mar 2017 18:43:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3f4b2a55-9b1a-4225-b2a0-a02a410eb94b" + "3400f4a5-36e9-49c9-b3bf-ee002f4745b6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -907,8 +898,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5219?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1MjE5P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -919,14 +910,13 @@ "42" ], "x-ms-client-request-id": [ - "b529f37b-09fb-4290-96ea-d05020e974d9" + "4943f721-0a07-473b-9e39-372c88418292" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,22 +931,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16448.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5219?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12542.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2924?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "56cadeb4-2442-4f4e-8d17-4b18b37eb80b" + "f27d6061-cd0f-4a99-8fe2-a3efd1228d6b" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -971,26 +961,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5219?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1MjE5P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81ea2db5-fd41-425c-84fb-c8d3c8026f0f" + "155dddb8-4a13-4663-8f99-1bdbdc1f4051" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478819020651,\r\n \"modificationTime\": 1478819020725,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490640237081,\r\n \"modificationTime\": 1490640237127,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,16 +991,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "47d1d22f-7cde-4d74-a62e-b30161f65ac3" + "038e9053-890b-402f-aa70-171e22154cfe" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1026,23 +1015,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5219?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1MjE5P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab8d6b7a-e6fd-4d6a-b41b-2d83c1a95877" + "384091bb-53c2-4350-8020-eb1d6ff4de04" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt5219 [0dfe32be-5834-49fd-ab49-1edff0fde82c][2016-11-10T15:03:41.6769296-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt2924 [1ab81c23-203b-447d-bc4d-4566c791ec0b][2017-03-27T11:43:58.4021607-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -1057,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:41 GMT" + "Mon, 27 Mar 2017 18:43:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0dfe32be-5834-49fd-ab49-1edff0fde82c" + "1ab81c23-203b-447d-bc4d-4566c791ec0b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1081,20 +1069,19 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder011108?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTEwOD9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder018274?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f6a5303-79b6-4f3c-a92e-4808672b9fc7" + "9faafb60-b59a-4042-b662-99613e24277d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1112,16 +1099,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "149da19f-5e9c-49cc-89c2-49d213e56f16" + "00b353a8-a994-4e9b-8d1e-37174f214a9d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1136,10 +1123,10 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder011108%2FSDKTestConcatFile01.txt?op=MSCONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTEwOCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder018274%2FSDKTestConcatFile01.txt?op=MSCONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "sources=SDKTestFolder01/SDKTestFile01.txt8911,SDKTestFolder01/SDKTestFile01.txt5219", + "RequestBody": "sources=SDKTestFolder01/SDKTestFile01.txt9567,SDKTestFolder01/SDKTestFile01.txt2924", "RequestHeaders": { "Content-Type": [ "application/octet-stream" @@ -1148,14 +1135,13 @@ "83" ], "x-ms-client-request-id": [ - "114454ad-c17d-432e-89e0-719fc3bf0a7c" + "00f17fed-48ad-4ee7-b507-64cd9f68827c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1170,16 +1156,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:41 GMT" + "Mon, 27 Mar 2017 18:43:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4d5c955e-1446-43bc-850d-d6366fa3e98c" + "7afefe66-0217-4ae8-b367-2cf51be8ca74" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1194,26 +1180,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder011108%2FSDKTestConcatFile01.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTEwOCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder018274%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fea1200-02ed-45f3-823c-090c62775013" + "40a7429a-4805-4162-8719-31bda07e27ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478819021204,\r\n \"modificationTime\": 1478819021251,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490640237672,\r\n \"modificationTime\": 1490640237766,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1225,16 +1210,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:41 GMT" + "Mon, 27 Mar 2017 18:43:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4751d20a-980e-4dda-832a-f9d3ee63c33e" + "d9d41571-e784-486c-807a-165663fd81a1" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1251,16 +1236,16 @@ ], "Names": { ".ctor": [ - "datalakerg11771", - "testdatalake16943", - "testadlfs16448" + "datalakerg13347", + "testdatalake19165", + "testadlfs12542" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt8911", - "SDKTestFolder01/SDKTestFile01.txt5219" + "SDKTestFolder01/SDKTestFile01.txt9567", + "SDKTestFolder01/SDKTestFile01.txt2924" ], "CreateFolder": [ - "SDKTestFolder011108" + "SDKTestFolder018274" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json index 81982ddc3902..49b94cb11457 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80336bd7-84c4-4f5f-bfa0-fe3856af0f6c" + "a35db849-bf03-4ef5-beb6-70d18c668794" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:14 GMT" + "Mon, 27 Mar 2017 18:14:33 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "24b8b4da-55e8-4dd6-9765-c3cc81dc570e" + "6c8e1c50-bf70-4cb1-b33e-fe386b35029a" ], "x-ms-correlation-request-id": [ - "24b8b4da-55e8-4dd6-9765-c3cc81dc570e" + "6c8e1c50-bf70-4cb1-b33e-fe386b35029a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224414Z:24b8b4da-55e8-4dd6-9765-c3cc81dc570e" + "WESTUS2:20170327T181433Z:6c8e1c50-bf70-4cb1-b33e-fe386b35029a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a95d5252-af56-46b4-9944-83c18ad622e4" + "b615b0fd-ce30-431d-ba23-0bee232d3776" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:14 GMT" + "Mon, 27 Mar 2017 18:14:33 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "58487dee-889a-4b22-a42b-d52d46f8f705" + "f9c3b714-d1a4-4131-9287-e0e8b9ce9631" ], "x-ms-correlation-request-id": [ - "58487dee-889a-4b22-a42b-d52d46f8f705" + "f9c3b714-d1a4-4131-9287-e0e8b9ce9631" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224414Z:58487dee-889a-4b22-a42b-d52d46f8f705" + "WESTUS2:20170327T181433Z:f9c3b714-d1a4-4131-9287-e0e8b9ce9631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "084f6e85-b4a8-44ad-bfce-b08880ecaafc" + "414d98da-b4c6-4693-aeaf-f6ca5977f0eb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:14 GMT" + "Mon, 27 Mar 2017 18:14:34 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-request-id": [ - "ff718a40-3916-4df3-8a45-2d870e34d3e2" + "609a42bb-f30d-426b-bc3c-6c696d265e24" ], "x-ms-correlation-request-id": [ - "ff718a40-3916-4df3-8a45-2d870e34d3e2" + "609a42bb-f30d-426b-bc3c-6c696d265e24" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224415Z:ff718a40-3916-4df3-8a45-2d870e34d3e2" + "WESTUS2:20170327T181434Z:609a42bb-f30d-426b-bc3c-6c696d265e24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "878d57c4-8377-4c22-a561-954f0f432603" + "5ce8bcde-5847-4c0d-abe9-2b8d597166a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:14 GMT" + "Mon, 27 Mar 2017 18:14:34 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-request-id": [ - "0af081ca-c510-40db-82ce-d869d21ebb4b" + "e447539a-105b-4183-b26a-126b073c6eb1" ], "x-ms-correlation-request-id": [ - "0af081ca-c510-40db-82ce-d869d21ebb4b" + "e447539a-105b-4183-b26a-126b073c6eb1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224415Z:0af081ca-c510-40db-82ce-d869d21ebb4b" + "WESTUS2:20170327T181434Z:e447539a-105b-4183-b26a-126b073c6eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11376?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa5b6178-aaa4-444f-9051-8093fbf5f717" + "c4efb741-8c48-4273-927d-651c0a9485a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11376' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11847' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:15 GMT" + "Mon, 27 Mar 2017 18:14:34 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-request-id": [ - "4f6b3f56-d062-45a7-92da-abf0edd046ee" + "fa279fe7-b275-464a-b67f-97a1a15c3812" ], "x-ms-correlation-request-id": [ - "4f6b3f56-d062-45a7-92da-abf0edd046ee" + "fa279fe7-b275-464a-b67f-97a1a15c3812" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224415Z:4f6b3f56-d062-45a7-92da-abf0edd046ee" + "WESTUS2:20170327T181434Z:fa279fe7-b275-464a-b67f-97a1a15c3812" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11376?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0af9c5b-312c-45e8-a817-6eed14ff4fb1" + "b92d8a53-9b9f-49e3-9d21-c12aaff93063" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376\",\r\n \"name\": \"datalakerg11376\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847\",\r\n \"name\": \"datalakerg11847\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:15 GMT" + "Mon, 27 Mar 2017 18:14:35 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-request-id": [ - "5116c1bd-6809-4b84-bada-3c8dea89b289" + "34d5cb65-3d31-4747-a538-70723e612ed7" ], "x-ms-correlation-request-id": [ - "5116c1bd-6809-4b84-bada-3c8dea89b289" + "34d5cb65-3d31-4747-a538-70723e612ed7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224416Z:5116c1bd-6809-4b84-bada-3c8dea89b289" + "WESTUS2:20170327T181435Z:34d5cb65-3d31-4747-a538-70723e612ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11376?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "c1ca13e9-49d8-4950-8f0d-119af3708952" + "eb77bdc6-9c77-4728-a7ed-a4fd6f925f72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376\",\r\n \"name\": \"datalakerg11376\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847\",\r\n \"name\": \"datalakerg11847\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:15 GMT" + "Mon, 27 Mar 2017 18:14:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-request-id": [ - "32e68216-4ba3-4127-9aee-54f112f5a8c6" + "bbd3bae3-113f-4abd-870c-e67a6d2fcc60" ], "x-ms-correlation-request-id": [ - "32e68216-4ba3-4127-9aee-54f112f5a8c6" + "bbd3bae3-113f-4abd-870c-e67a6d2fcc60" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224415Z:32e68216-4ba3-4127-9aee-54f112f5a8c6" + "WESTUS2:20170327T181435Z:bbd3bae3-113f-4abd-870c-e67a6d2fcc60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0NjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "455823aa-4024-493a-9a3a-078e75b95a88" + "3ced6b00-bcd5-47a3-8673-26235b30f598" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18466' under resource group 'datalakerg11376' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17884' under resource group 'datalakerg11847' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:15 GMT" + "Mon, 27 Mar 2017 18:14:35 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ae68ec9b-4cf4-476d-8c91-af9d87ce0d76" + "cc8d1436-93fe-4e80-937c-e0ed10e3539e" ], "x-ms-correlation-request-id": [ - "ae68ec9b-4cf4-476d-8c91-af9d87ce0d76" + "cc8d1436-93fe-4e80-937c-e0ed10e3539e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224416Z:ae68ec9b-4cf4-476d-8c91-af9d87ce0d76" + "WESTUS2:20170327T181435Z:cc8d1436-93fe-4e80-937c-e0ed10e3539e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0NjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18466.azuredatalakestore.net\",\r\n \"accountId\": \"68399479-5875-4bc6-8e76-15cadf53f8f8\",\r\n \"creationTime\": \"2016-11-10T22:44:22.4435169Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:44:22.4435169Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466\",\r\n \"name\": \"testadlfs18466\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17884.azuredatalakestore.net\",\r\n \"accountId\": \"4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb\",\r\n \"creationTime\": \"2017-03-27T18:14:37.6941788Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:14:37.6941788Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884\",\r\n \"name\": \"testadlfs17884\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:47 GMT" + "Mon, 27 Mar 2017 18:15:08 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e05f3921-f9e5-4a4d-b187-b225dd99a8a3" + "09dddc95-1951-4c07-a169-d3f54a6da1bb" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14990" ], "x-ms-correlation-request-id": [ - "96e53ced-fcfa-4e77-b583-ba9d7ebf55d7" + "d96de745-081a-43b5-ab2c-d295793731c5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224448Z:96e53ced-fcfa-4e77-b583-ba9d7ebf55d7" + "WESTUS2:20170327T181509Z:d96de745-081a-43b5-ab2c-d295793731c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0NjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be9cf221-326d-4e56-a587-b0ab4035e629" + "96a698c4-3ff3-434d-981f-cf1881d384b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18466.azuredatalakestore.net\",\r\n \"accountId\": \"68399479-5875-4bc6-8e76-15cadf53f8f8\",\r\n \"creationTime\": \"2016-11-10T22:44:22.4435169Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:44:22.4435169Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466\",\r\n \"name\": \"testadlfs18466\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17884.azuredatalakestore.net\",\r\n \"accountId\": \"4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb\",\r\n \"creationTime\": \"2017-03-27T18:14:37.6941788Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:14:37.6941788Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884\",\r\n \"name\": \"testadlfs17884\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:48 GMT" + "Mon, 27 Mar 2017 18:15:09 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "367d9961-ee0d-4d31-ba4f-5150b26cb610" + "a737e5fb-c43a-47bc-8cd0-ce44d0944ea1" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14988" ], "x-ms-correlation-request-id": [ - "331b08d7-f722-4520-bc01-f033f33fdc8c" + "d5512e8f-80da-4ade-a0cf-25d6f38dee3f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224448Z:331b08d7-f722-4520-bc01-f033f33fdc8c" + "WESTUS2:20170327T181509Z:d5512e8f-80da-4ade-a0cf-25d6f38dee3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0NjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "71b0014b-b082-4894-b899-354d81999c28" + "0ba62dd4-f531-4e35-b858-354250dfc1b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"68399479-5875-4bc6-8e76-15cadf53f8f8\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466\",\r\n \"name\": \"testadlfs18466\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884\",\r\n \"name\": \"testadlfs17884\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:16 GMT" + "Mon, 27 Mar 2017 18:14:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/68399479-5875-4bc6-8e76-15cadf53f8f80?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "80526cb7-75bb-4e8e-b6e4-5e5a4f084bee" + "2b1c301d-7af6-450f-ad9f-92e652e8f20d" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "3035a9e0-622e-4489-b7bc-89031021686a" + "ebf71bfd-b539-475a-8517-b54c523016d5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224417Z:3035a9e0-622e-4489-b7bc-89031021686a" + "WESTUS2:20170327T181437Z:ebf71bfd-b539-475a-8517-b54c523016d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/68399479-5875-4bc6-8e76-15cadf53f8f80?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY4Mzk5NDc5LTU4NzUtNGJjNi04ZTc2LTE1Y2FkZjUzZjhmODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRhN2JiZTRiLTFmMDktNGE1NS04NWQyLTkzY2U3ZWJhZTFiYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:47 GMT" + "Mon, 27 Mar 2017 18:15:08 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0f8191f2-9a97-415a-a4f6-8cdee32cddfd" + "f99dc898-c3dd-4d93-801a-ddc7cb018a14" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14985" ], "x-ms-correlation-request-id": [ - "d9e59359-9e52-4a8c-9420-89a578a5499a" + "2579aace-c6bb-40e0-b626-99ba89af662e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224447Z:d9e59359-9e52-4a8c-9420-89a578a5499a" + "WESTUS2:20170327T181508Z:2579aace-c6bb-40e0-b626-99ba89af662e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1892?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODkyP2FwcGVuZE1vZGU9YXV0b2NyZWF0ZSZvcD1DT05DVVJSRU5UQVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3301?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP2FwcGVuZE1vZGU9YXV0b2NyZWF0ZSZvcD1DT05DVVJSRU5UQVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -742,7 +736,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "791d54e6-ca1c-4a42-83a0-0ded28e5cdbf" + "932777d5-3c88-4e41-bbd8-a13a9b31890d" ], "Transfer-Encoding": [ "chunked" @@ -751,14 +745,13 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "\"Appending succeeds.\"", + "ResponseBody": "\"Operation succeeded.\"", "ResponseHeaders": { "Content-Length": [ - "21" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -770,13 +763,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:44:54 GMT" + "Mon, 27 Mar 2017 18:15:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "845012dd-e41f-4617-a001-0ddcfcce4428" + "4f4b60e9-8995-4d1c-86df-c06a354958ef" ], "X-Content-Type-Options": [ "nosniff" @@ -788,20 +781,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1892?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODkyP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3301?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c848ea5e-83a3-4172-a5d2-5f1a015d9a1a" + "e5bb326c-584e-43d1-869a-5f130a23b426" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "More test contents, that were appended!", @@ -816,7 +808,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:44:54 GMT" + "Mon, 27 Mar 2017 18:15:11 GMT" ], "Pragma": [ "no-cache" @@ -825,10 +817,10 @@ "chunked" ], "x-ms-request-id": [ - "9f1013ad-dfeb-430f-b97b-faea5a91df47" + "0ca08f95-ea5f-4b5d-b0f0-d6273d7aae5a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,8 +835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1892?op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODkyP29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3301?op=APPEND&append=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -855,20 +847,19 @@ "0" ], "x-ms-client-request-id": [ - "932437b3-1bfa-41d2-b769-831ebfc3e755" + "896d4229-2023-4533-95e8-b13b2d425d46" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"FsAppendStream failed with error 0x83090053 (Internal server error.). [84c66f64-85b3-4024-a2cf-55f43221a3a7][2016-11-10T14:45:15.2060995-08:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"APPEND failed with error 0x83090053 (Internal server error.). [6aed0b97-5240-4da5-8918-3081b160e17d][2017-03-27T11:15:31.7622421-07:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "253" + "245" ], "Content-Type": [ "application/json; charset=utf-8" @@ -880,16 +871,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:45:14 GMT" + "Mon, 27 Mar 2017 18:15:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "84c66f64-85b3-4024-a2cf-55f43221a3a7" + "6aed0b97-5240-4da5-8918-3081b160e17d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x83090053" @@ -904,8 +895,8 @@ "StatusCode": 500 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6197?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MTk3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7517?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NTE3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -916,14 +907,13 @@ "42" ], "x-ms-client-request-id": [ - "f4cc980f-2c5f-4604-91d7-a5cd7120977a" + "fd497abc-79bf-4545-ad12-f9c7ac8b354e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -938,22 +928,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:45:15 GMT" + "Mon, 27 Mar 2017 18:15:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18466.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6197?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17884.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7517?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "eb44da1f-699b-4a8f-8a2c-338c56cb89e9" + "3c4372bd-b415-468b-a771-a4b2d8ce2d81" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -968,8 +958,8 @@ "StatusCode": 201 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt6197?op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MTk3P29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7517?op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NTE3P29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -977,7 +967,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "6c758db8-30bc-4081-b30b-fc80d8d2410e" + "5b813c88-c31b-46a0-8996-5b0eb11b4db0" ], "Transfer-Encoding": [ "chunked" @@ -986,11 +976,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The exception is unexpected. [0x83090053] [][2016-11-10T14:45:36.0032560-08:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The exception is unexpected. [0x83090053] [][2017-03-27T11:15:52.6224573-07:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "189" @@ -1005,13 +994,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:45:35 GMT" + "Mon, 27 Mar 2017 18:15:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "86d51457-a9bd-45a9-ba56-4ea1396697b1" + "8b41c71d-1465-499c-87f7-7357495b11a7" ], "X-Content-Type-Options": [ "nosniff" @@ -1025,15 +1014,15 @@ ], "Names": { ".ctor": [ - "datalakerg11376", - "testdatalake17464", - "testadlfs18466" + "datalakerg11847", + "testdatalake12475", + "testadlfs17884" ], "DataLakeStoreFileSystemNegativeConcurrentAppend": [ - "SDKTestFolder01/SDKTestFile01.txt1892" + "SDKTestFolder01/SDKTestFile01.txt3301" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt6197" + "SDKTestFolder01/SDKTestFile01.txt7517" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json index 0cbe5f39b90c..0a3f23a44551 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54286c45-5e1b-441c-8f03-45c98f699d7f" + "74a978cc-f87b-42ff-a476-090b663247d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:38 GMT" + "Mon, 27 Mar 2017 18:17:21 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "f067e3d0-6512-4ff7-9405-dae6ac1171fa" + "75b7691a-bf18-4c3e-a4fe-e83df5f2f854" ], "x-ms-correlation-request-id": [ - "f067e3d0-6512-4ff7-9405-dae6ac1171fa" + "75b7691a-bf18-4c3e-a4fe-e83df5f2f854" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224739Z:f067e3d0-6512-4ff7-9405-dae6ac1171fa" + "CENTRALUS:20170327T181722Z:75b7691a-bf18-4c3e-a4fe-e83df5f2f854" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7bfa8cc-9b5f-4cf9-9455-937accce2017" + "19ffee86-85ac-4362-a609-eed164c1b7cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:38 GMT" + "Mon, 27 Mar 2017 18:17:21 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-request-id": [ - "f567983d-aac1-4433-b953-d756d9dfe26d" + "3cd61379-64d1-40d9-8bd2-480d0474b635" ], "x-ms-correlation-request-id": [ - "f567983d-aac1-4433-b953-d756d9dfe26d" + "3cd61379-64d1-40d9-8bd2-480d0474b635" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224739Z:f567983d-aac1-4433-b953-d756d9dfe26d" + "CENTRALUS:20170327T181722Z:3cd61379-64d1-40d9-8bd2-480d0474b635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37db60a-eb83-4469-8102-f079b1d230b0" + "f4b04657-928f-4939-83f2-ebff06f7d496" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:39 GMT" + "Mon, 27 Mar 2017 18:17:22 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "bca90a3a-527b-4787-8b35-4b071370b8e2" + "0d221c30-66cb-4117-9ed9-146754ea73d4" ], "x-ms-correlation-request-id": [ - "bca90a3a-527b-4787-8b35-4b071370b8e2" + "0d221c30-66cb-4117-9ed9-146754ea73d4" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224740Z:bca90a3a-527b-4787-8b35-4b071370b8e2" + "CENTRALUS:20170327T181723Z:0d221c30-66cb-4117-9ed9-146754ea73d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4504fd52-0577-4bfd-9063-cfce12e3a103" + "4d16eba6-20a5-4855-91e1-b74d9ef37254" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:39 GMT" + "Mon, 27 Mar 2017 18:17:22 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "6c526819-b2e8-438d-955b-61b793c99f43" + "f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" ], "x-ms-correlation-request-id": [ - "6c526819-b2e8-438d-955b-61b793c99f43" + "f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224740Z:6c526819-b2e8-438d-955b-61b793c99f43" + "CENTRALUS:20170327T181723Z:f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11855?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "057c7f67-a10e-4337-b24e-d81616480251" + "c7c4d3a1-c0d8-464d-a14b-982a93d68d6e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11855' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11397' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:39 GMT" + "Mon, 27 Mar 2017 18:17:22 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "ffc292c6-4fe5-4473-864a-670a4f5c3270" + "64f6e1a8-c722-4c99-b1d3-b325b565ab9f" ], "x-ms-correlation-request-id": [ - "ffc292c6-4fe5-4473-864a-670a4f5c3270" + "64f6e1a8-c722-4c99-b1d3-b325b565ab9f" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224740Z:ffc292c6-4fe5-4473-864a-670a4f5c3270" + "CENTRALUS:20170327T181723Z:64f6e1a8-c722-4c99-b1d3-b325b565ab9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11855?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb8a2ccd-799f-43a9-baee-3fa0d02f09fd" + "7e8f41fd-aa46-470a-a952-0511caff255f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855\",\r\n \"name\": \"datalakerg11855\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397\",\r\n \"name\": \"datalakerg11397\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:41 GMT" + "Mon, 27 Mar 2017 18:17:23 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "c170c8ad-0cc4-4d9f-a99d-e1030ca7f34c" + "5d4263e7-5368-4fbc-954d-ae03f0ff9e13" ], "x-ms-correlation-request-id": [ - "c170c8ad-0cc4-4d9f-a99d-e1030ca7f34c" + "5d4263e7-5368-4fbc-954d-ae03f0ff9e13" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224741Z:c170c8ad-0cc4-4d9f-a99d-e1030ca7f34c" + "CENTRALUS:20170327T181724Z:5d4263e7-5368-4fbc-954d-ae03f0ff9e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11855?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "c7d54ba6-9362-43fd-ab41-1433dc146ba7" + "3b1187b6-b913-4371-8166-a321fa795161" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855\",\r\n \"name\": \"datalakerg11855\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397\",\r\n \"name\": \"datalakerg11397\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:41 GMT" + "Mon, 27 Mar 2017 18:17:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "f69e4d5e-07ee-4607-be60-b0864d5bcaca" + "922829cd-f611-4a25-a7ef-ffcea16a0285" ], "x-ms-correlation-request-id": [ - "f69e4d5e-07ee-4607-be60-b0864d5bcaca" + "922829cd-f611-4a25-a7ef-ffcea16a0285" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224741Z:f69e4d5e-07ee-4607-be60-b0864d5bcaca" + "CENTRALUS:20170327T181724Z:922829cd-f611-4a25-a7ef-ffcea16a0285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY1MDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "370601a5-cd2b-44cb-801a-0fc6fea73005" + "34b8ce06-381c-4c54-82af-261b5c1dda0d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16509' under resource group 'datalakerg11855' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1602' under resource group 'datalakerg11397' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:41 GMT" + "Mon, 27 Mar 2017 18:17:24 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "6fdf38d1-8ef2-4221-bf5e-63106ffc5b9d" + "a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" ], "x-ms-correlation-request-id": [ - "6fdf38d1-8ef2-4221-bf5e-63106ffc5b9d" + "a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224742Z:6fdf38d1-8ef2-4221-bf5e-63106ffc5b9d" + "CENTRALUS:20170327T181724Z:a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY1MDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16509.azuredatalakestore.net\",\r\n \"accountId\": \"d2d25738-d5d0-4afa-8ed4-96c575d92446\",\r\n \"creationTime\": \"2016-11-10T22:47:49.3871464Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:47:49.3871464Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509\",\r\n \"name\": \"testadlfs16509\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1602.azuredatalakestore.net\",\r\n \"accountId\": \"0afdbf61-b299-49ad-9142-926e4a412ade\",\r\n \"creationTime\": \"2017-03-27T18:17:25.9189192Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:17:25.9189192Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602\",\r\n \"name\": \"testadlfs1602\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:48:15 GMT" + "Mon, 27 Mar 2017 18:17:56 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3dc1355d-dad8-4f32-9342-5d51eb0c8f0c" + "7621b6a9-7be8-4dd2-a5c4-51439341c6b2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "efa30843-5f61-4918-b3ac-105c0fc6d74f" + "ac66359e-2db5-43a5-8a24-5ee1afc7d53c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224816Z:efa30843-5f61-4918-b3ac-105c0fc6d74f" + "CENTRALUS:20170327T181756Z:ac66359e-2db5-43a5-8a24-5ee1afc7d53c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY1MDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab18004d-989f-48c9-8756-9c30b8c2bacc" + "3230aa77-7056-4104-a454-55e343585f94" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16509.azuredatalakestore.net\",\r\n \"accountId\": \"d2d25738-d5d0-4afa-8ed4-96c575d92446\",\r\n \"creationTime\": \"2016-11-10T22:47:49.3871464Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:47:49.3871464Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509\",\r\n \"name\": \"testadlfs16509\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1602.azuredatalakestore.net\",\r\n \"accountId\": \"0afdbf61-b299-49ad-9142-926e4a412ade\",\r\n \"creationTime\": \"2017-03-27T18:17:25.9189192Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:17:25.9189192Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602\",\r\n \"name\": \"testadlfs1602\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:48:16 GMT" + "Mon, 27 Mar 2017 18:17:57 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f0aa9c94-9ade-4e84-ac01-4c6411d5bd6d" + "bc66e847-8cc9-48f4-8a30-6733f991d076" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-correlation-request-id": [ - "304be8c9-828f-43d8-bd79-7b9d980d07c2" + "e78fe726-e626-41a4-95d9-32af8a455fd0" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224817Z:304be8c9-828f-43d8-bd79-7b9d980d07c2" + "CENTRALUS:20170327T181757Z:e78fe726-e626-41a4-95d9-32af8a455fd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY1MDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "50cfc9f9-7e9b-47dd-b870-0a0eabf812a9" + "b5523999-2af4-4769-9253-bd00ab5a5ad8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"d2d25738-d5d0-4afa-8ed4-96c575d92446\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509\",\r\n \"name\": \"testadlfs16509\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0afdbf61-b299-49ad-9142-926e4a412ade\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602\",\r\n \"name\": \"testadlfs1602\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "418" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:47:44 GMT" + "Mon, 27 Mar 2017 18:17:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d2d25738-d5d0-4afa-8ed4-96c575d924460?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0afdbf61-b299-49ad-9142-926e4a412ade0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ecdbedf5-6bd9-480a-8186-f146194de758" + "8683e161-bf31-490d-9fe8-5091260599d7" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "65c47cbd-65cd-49de-9bf9-1ac7ba4acc29" + "a64a12bb-f013-4e0d-bed5-00f2e7a7b104" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224744Z:65c47cbd-65cd-49de-9bf9-1ac7ba4acc29" + "CENTRALUS:20170327T181725Z:a64a12bb-f013-4e0d-bed5-00f2e7a7b104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d2d25738-d5d0-4afa-8ed4-96c575d924460?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2QyZDI1NzM4LWQ1ZDAtNGFmYS04ZWQ0LTk2YzU3NWQ5MjQ0NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0afdbf61-b299-49ad-9142-926e4a412ade0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBhZmRiZjYxLWIyOTktNDlhZC05MTQyLTkyNmU0YTQxMmFkZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:48:15 GMT" + "Mon, 27 Mar 2017 18:17:56 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bd58def5-8dd1-48e4-a8c9-94e0975251e4" + "b2cf4b67-cc53-41ef-b269-c07cbc9a6764" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "f0e605ea-a047-4904-88b2-7c5ccc78884c" + "969cf41b-fdd0-4aa9-bc3f-8d62e5ec0080" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224815Z:f0e605ea-a047-4904-88b2-7c5ccc78884c" + "CENTRALUS:20170327T181756Z:969cf41b-fdd0-4aa9-bc3f-8d62e5ec0080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3032?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/c3luY0ZsYWc9REFUQSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "08973ec2-948c-478f-8ab0-458014ec7807" + "1bc7cb37-4763-44ef-a1c9-e35a68114683" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:18 GMT" + "Mon, 27 Mar 2017 18:18:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16509.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3032?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1602.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt527?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "b6b70ca1-3f36-4476-8f0a-f0596e5219bf" + "75d39d02-197e-4eb1-a92e-d69be5c0fca2" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3032?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcd0bec8-2476-40ea-9ed0-104e94264882" + "d4bf4c35-4786-4f8e-9ad8-788d714b489e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818099041,\r\n \"modificationTime\": 1478818099041,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638687042,\r\n \"modificationTime\": 1490638687042,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:19 GMT" + "Mon, 27 Mar 2017 18:18:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0d20411e-aaa5-43bc-8b03-de2b98c237cd" + "6541275f-919e-44d7-9405-ecd9885ff426" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3032?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61f720ab-ce0c-4159-ab22-8d70fa71ea31" + "40eae469-426b-4566-a48f-ee201dd424aa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818099041,\r\n \"modificationTime\": 1478818099041,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638687042,\r\n \"modificationTime\": 1490638687042,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:19 GMT" + "Mon, 27 Mar 2017 18:18:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "aff407ec-ef42-450a-927a-0ab10becc8c8" + "d3c736d3-875d-4feb-a7cd-46211acbc3fe" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,26 +898,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3032?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f53bb69a-d18a-40c2-b2d3-a251c56588bc" + "dacf420e-4d95-4672-adce-7b92a2f881dd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818099041,\r\n \"modificationTime\": 1478818099041,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638687042,\r\n \"modificationTime\": 1490638687042,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:39 GMT" + "Mon, 27 Mar 2017 18:18:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1439175f-36d6-449f-aa3b-2699893f0e12" + "60c612f1-df1b-490b-9197-76e465d98954" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -962,26 +952,25 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3032?expiryOption=Absolute&expireTime=1478817979000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE0Nzg4MTc5NzkwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=Absolute&expireTime=1490638567000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPUFic29sdXRlJmV4cGlyZVRpbWU9MTQ5MDYzODU2NzAwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26ba3c95-5c73-4383-a504-476cabb49184" + "09956673-f4d1-463c-8dd2-091341fcf26f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"IllegalArgumentException\",\r\n \"message\": \"Parameter expireTime is Invaild, Reason Invalid expireTime, PathAndQuery /WebHdfsExt/SDKTestFolder01/SDKTestFile01.txt3032?expiryOption=Absolute&expireTime=1478817979000&op=SETEXPIRY&api-version=2016-11-01, Method PUT [][2016-11-10T14:48:19.6851126-08:00]\",\r\n \"javaClassName\": \"java.lang.IllegalArgumentException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"IllegalArgumentException\",\r\n \"message\": \"Parameter expireTime is Invaild, Reason Invalid expireTime, PathAndQuery /WebHdfsExt/SDKTestFolder01/SDKTestFile01.txt527?expiryOption=Absolute&expireTime=1490638567000&op=SETEXPIRY&api-version=2016-11-01, Method PUT [][2017-03-27T11:18:07.3925410-07:00]\",\r\n \"javaClassName\": \"java.lang.IllegalArgumentException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "381" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,13 +982,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:19 GMT" + "Mon, 27 Mar 2017 18:18:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a3d6af5d-a296-4c37-9633-fe9c418dc9d0" + "218f6c49-9fc4-4b60-abc2-e4ba68d79c56" ], "X-Content-Type-Options": [ "nosniff" @@ -1011,23 +1000,22 @@ "StatusCode": 400 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3032?expiryOption=Absolute&expireTime=253402300800000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTI1MzQwMjMwMDgwMDAwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=Absolute&expireTime=253402300800000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPUFic29sdXRlJmV4cGlyZVRpbWU9MjUzNDAyMzAwODAwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73d550ab-16d4-4fc2-8155-b8802fd26b15" + "7eb25ba6-ea8e-4edb-a9c1-a80218f9159f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The added or subtracted value results in an un-representable DateTime.\\r\\nParameter name: value [][2016-11-10T14:48:40.1486388-08:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The added or subtracted value results in an un-representable DateTime.\\r\\nParameter name: value [][2017-03-27T11:18:27.8771635-07:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "243" @@ -1042,13 +1030,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:39 GMT" + "Mon, 27 Mar 2017 18:18:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2779ac9b-7a91-4624-b027-f48515d6bc4c" + "c480b8f2-46e3-41d6-b176-76c918a1f2d4" ], "X-Content-Type-Options": [ "nosniff" @@ -1060,20 +1048,19 @@ "StatusCode": 500 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3032?expiryOption=NeverExpire&expireTime=400&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZleHBpcmVUaW1lPTQwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=NeverExpire&expireTime=400&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPU5ldmVyRXhwaXJlJmV4cGlyZVRpbWU9NDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "730afbff-1a92-44b6-b83e-3df9d500a720" + "2b091773-4d5c-49d5-ac17-4bf2e7358bfd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1088,13 +1075,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:39 GMT" + "Mon, 27 Mar 2017 18:18:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4258f0b4-d3a4-45c8-a806-30b36bbf0789" + "a434bc38-72e9-4dc6-a0fc-32a2f0a3a4e3" ], "X-Content-Type-Options": [ "nosniff" @@ -1108,16 +1095,16 @@ ], "Names": { ".ctor": [ - "datalakerg11855", - "testdatalake14505", - "testadlfs16509" + "datalakerg11397", + "testdatalake12837", + "testadlfs1602" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3032" + "SDKTestFolder01/SDKTestFile01.txt527" ] }, "Variables": { "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f", - "absoluteNegativeTime": "11/10/2016 10:46:19 PM" + "absoluteNegativeTime": "3/27/2017 6:16:07 PM" } } \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json index 72beb349a150..b2bd2941d124 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bb8533e-5c9a-46f2-8cd2-457bceea0f41" + "5f74b271-2946-4e69-9f81-428489a5a718" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:32 GMT" + "Mon, 27 Mar 2017 19:13:24 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-request-id": [ - "750529d6-819c-4fbf-8da3-94251911ed74" + "0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" ], "x-ms-correlation-request-id": [ - "750529d6-819c-4fbf-8da3-94251911ed74" + "0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225933Z:750529d6-819c-4fbf-8da3-94251911ed74" + "WESTUS2:20170327T191325Z:0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2307becd-7761-4e00-8085-9ef4af75c662" + "23ffb6ae-f2d9-4f6b-b29c-a174170fb04e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:33 GMT" + "Mon, 27 Mar 2017 19:13:24 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14983" ], "x-ms-request-id": [ - "f9cbd92a-fe04-48ca-a4c2-0589a2786f05" + "e7a71471-4481-46ca-b351-c898fadebc32" ], "x-ms-correlation-request-id": [ - "f9cbd92a-fe04-48ca-a4c2-0589a2786f05" + "e7a71471-4481-46ca-b351-c898fadebc32" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225933Z:f9cbd92a-fe04-48ca-a4c2-0589a2786f05" + "WESTUS2:20170327T191325Z:e7a71471-4481-46ca-b351-c898fadebc32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91d71617-5150-4a9d-8614-9cb490e9f887" + "fe818cbc-aa52-40ac-9637-b0f3221e05fb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:25 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "e7611059-8462-45cf-a13d-d0e2276488d8" + "495c6627-786a-4413-9260-8f501ac2ad0b" ], "x-ms-correlation-request-id": [ - "e7611059-8462-45cf-a13d-d0e2276488d8" + "495c6627-786a-4413-9260-8f501ac2ad0b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225934Z:e7611059-8462-45cf-a13d-d0e2276488d8" + "WESTUS2:20170327T191326Z:495c6627-786a-4413-9260-8f501ac2ad0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77c0ecdb-5dbc-4274-a1d8-f783abccbb86" + "de13bb86-fba0-40c6-acbe-72e59e83393f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:25 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14982" ], "x-ms-request-id": [ - "38d86f30-fc5c-4659-935c-bb1f08879eab" + "2074d591-f952-4183-a10a-4d546d069d0e" ], "x-ms-correlation-request-id": [ - "38d86f30-fc5c-4659-935c-bb1f08879eab" + "2074d591-f952-4183-a10a-4d546d069d0e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225934Z:38d86f30-fc5c-4659-935c-bb1f08879eab" + "WESTUS2:20170327T191326Z:2074d591-f952-4183-a10a-4d546d069d0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17829?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzgyOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b358f37d-bc55-4f0e-976c-2d8d15e23107" + "c156f5c5-f301-4350-8725-07da0715dfca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17829' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1488' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:25 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14981" ], "x-ms-request-id": [ - "98618cac-dacf-416a-b6c6-5c5b8f268a7a" + "ffd9a375-dd17-4414-aced-917f98c91a3e" ], "x-ms-correlation-request-id": [ - "98618cac-dacf-416a-b6c6-5c5b8f268a7a" + "ffd9a375-dd17-4414-aced-917f98c91a3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225934Z:98618cac-dacf-416a-b6c6-5c5b8f268a7a" + "WESTUS2:20170327T191326Z:ffd9a375-dd17-4414-aced-917f98c91a3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17829?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzgyOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10d64142-ef83-457d-b841-b61cb423bb84" + "e0876702-ac06-450c-91a6-7b2656e6eb0a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829\",\r\n \"name\": \"datalakerg17829\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488\",\r\n \"name\": \"datalakerg1488\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:35 GMT" + "Mon, 27 Mar 2017 19:13:26 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14980" ], "x-ms-request-id": [ - "abba0a17-7ac5-4732-802d-1570d4451fa1" + "a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" ], "x-ms-correlation-request-id": [ - "abba0a17-7ac5-4732-802d-1570d4451fa1" + "a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225935Z:abba0a17-7ac5-4732-802d-1570d4451fa1" + "WESTUS2:20170327T191326Z:a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17829?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzgyOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "e8a87434-2548-4fad-b7a7-ff4760589be8" + "f1103051-7f11-42ed-af7b-f33444ec8d72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829\",\r\n \"name\": \"datalakerg17829\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488\",\r\n \"name\": \"datalakerg1488\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-request-id": [ - "f330856f-a6c5-4b06-be36-70d3cef5caa5" + "6249d3b4-51d8-4f0a-9d42-29ca5e610f99" ], "x-ms-correlation-request-id": [ - "f330856f-a6c5-4b06-be36-70d3cef5caa5" + "6249d3b4-51d8-4f0a-9d42-29ca5e610f99" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225935Z:f330856f-a6c5-4b06-be36-70d3cef5caa5" + "WESTUS2:20170327T191326Z:6249d3b4-51d8-4f0a-9d42-29ca5e610f99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzgyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyNDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f41f39d9-f36e-4eff-8930-2eb5f908056e" + "e3a8e50c-c3f5-44f8-ae34-827b90e2b28f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11247' under resource group 'datalakerg17829' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15112' under resource group 'datalakerg1488' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:26 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ffe011f5-8044-4846-9b7f-226edb8d9e51" + "a323bfd8-3635-41c8-8a5c-9a64e53c8359" ], "x-ms-correlation-request-id": [ - "ffe011f5-8044-4846-9b7f-226edb8d9e51" + "a323bfd8-3635-41c8-8a5c-9a64e53c8359" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225935Z:ffe011f5-8044-4846-9b7f-226edb8d9e51" + "WESTUS2:20170327T191327Z:a323bfd8-3635-41c8-8a5c-9a64e53c8359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzgyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyNDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11247.azuredatalakestore.net\",\r\n \"accountId\": \"b157846f-ec9a-4609-9918-4d2148cb3c87\",\r\n \"creationTime\": \"2016-11-10T22:59:41.4181936Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:59:41.4181936Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247\",\r\n \"name\": \"testadlfs11247\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15112.azuredatalakestore.net\",\r\n \"accountId\": \"58dde239-b6a9-49c0-a888-5e564a471ee1\",\r\n \"creationTime\": \"2017-03-27T19:13:28.5216029Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:13:28.5216029Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112\",\r\n \"name\": \"testadlfs15112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:06 GMT" + "Mon, 27 Mar 2017 19:13:59 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "96dee7c6-69b4-450a-833f-54c1930e7ffd" + "3bd3dd15-d7a5-4629-b091-e274db5e0bff" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14979" ], "x-ms-correlation-request-id": [ - "061de657-efc6-4c5c-ba92-e310ce05e90f" + "659788d4-cea4-4e14-a088-5dd98a577de4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230007Z:061de657-efc6-4c5c-ba92-e310ce05e90f" + "WESTUS2:20170327T191359Z:659788d4-cea4-4e14-a088-5dd98a577de4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzgyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyNDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c8163cb-9caf-4ae7-ac9b-714ace2eff22" + "0a010956-061d-43f0-973e-e64326a8298b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11247.azuredatalakestore.net\",\r\n \"accountId\": \"b157846f-ec9a-4609-9918-4d2148cb3c87\",\r\n \"creationTime\": \"2016-11-10T22:59:41.4181936Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:59:41.4181936Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247\",\r\n \"name\": \"testadlfs11247\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15112.azuredatalakestore.net\",\r\n \"accountId\": \"58dde239-b6a9-49c0-a888-5e564a471ee1\",\r\n \"creationTime\": \"2017-03-27T19:13:28.5216029Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:13:28.5216029Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112\",\r\n \"name\": \"testadlfs15112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:07 GMT" + "Mon, 27 Mar 2017 19:13:59 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c90881b7-a063-4def-a350-284d62eb5430" + "49e21a4f-b144-4b3f-a61e-9bf18fec91a5" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14982" ], "x-ms-correlation-request-id": [ - "57cfb503-217f-43b5-a6c9-2d3287b2d905" + "735654b2-286f-4282-975e-34b2f55741df" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230007Z:57cfb503-217f-43b5-a6c9-2d3287b2d905" + "WESTUS2:20170327T191400Z:735654b2-286f-4282-975e-34b2f55741df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzgyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyNDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "5b7092b7-54c3-492e-9013-6a8ac2c24eca" + "e052af71-9cf3-4347-aae0-93c2df2c2581" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b157846f-ec9a-4609-9918-4d2148cb3c87\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247\",\r\n \"name\": \"testadlfs11247\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"58dde239-b6a9-49c0-a888-5e564a471ee1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112\",\r\n \"name\": \"testadlfs15112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:59:35 GMT" + "Mon, 27 Mar 2017 19:13:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b157846f-ec9a-4609-9918-4d2148cb3c870?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/58dde239-b6a9-49c0-a888-5e564a471ee10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "c0b593c5-a4f6-49ec-88ce-b27a99707711" + "14bec612-d33b-4463-843f-96a587edcf83" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-correlation-request-id": [ - "19c85041-5131-4c15-9be2-add5394feb6f" + "c320c10b-e49d-4c1e-a413-dcdb291ed72e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225936Z:19c85041-5131-4c15-9be2-add5394feb6f" + "WESTUS2:20170327T191328Z:c320c10b-e49d-4c1e-a413-dcdb291ed72e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b157846f-ec9a-4609-9918-4d2148cb3c870?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2IxNTc4NDZmLWVjOWEtNDYwOS05OTE4LTRkMjE0OGNiM2M4NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/58dde239-b6a9-49c0-a888-5e564a471ee10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU4ZGRlMjM5LWI2YTktNDljMC1hODg4LTVlNTY0YTQ3MWVlMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:06 GMT" + "Mon, 27 Mar 2017 19:13:58 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f3b51bbe-cf4b-4c02-9cc4-e47a0a8fa0e7" + "0cb6ebd1-c918-4e61-89f2-d463233bc010" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-correlation-request-id": [ - "5d5150d5-1f40-4c2f-b7d0-426116ab5cfd" + "1767f323-ddeb-4161-8efd-7a33dc647b29" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230006Z:5d5150d5-1f40-4c2f-b7d0-426116ab5cfd" + "WESTUS2:20170327T191359Z:1767f323-ddeb-4161-8efd-7a33dc647b29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,26 +727,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c98be746-da9c-4240-9dec-10bb12e0d2d5" + "c7db32e0-19b7-41a3-9223-59e454442df7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:09 GMT" + "Mon, 27 Mar 2017 19:14:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d8b8db8d-8154-4251-8e57-682653aae096" + "8739d2f5-0083-49a5-85f2-c8ddf5577726" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "528375e4-b735-4d87-aa79-8e3c6826b9d9" + "5b2cfac5-9b46-4a4b-b3c3-73d2834b40fe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\",\r\n \"group::rwx\",\r\n \"mask::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\",\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "256" + "219" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:09 GMT" + "Mon, 27 Mar 2017 19:14:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3d6ecd06-f14a-41fe-9bdb-7a76cdaeb71c" + "fa71f658-d937-4aaf-8f40-7c81a760113a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,20 +835,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?aclspec=user::rwx%2Cgroup::rwx%2Cother::---%2Cuser:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx&op=SETACL&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP2FjbHNwZWM9dXNlciUzQSUzQXJ3eCUyQ2dyb3VwJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0EtLS0lMkN1c2VyJTNBMDI3YzI4ZDUtYzkxZC00OWYwLTk4YzUtZDEwMTM0YjE2OWIzJTNBcnd4Jm9wPVNFVEFDTCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/%2F?aclspec=group::rwx%2Cuser::rwx%2Cother::---%2Cmask::rwx%2Cuser:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx&op=SETACL&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP2FjbHNwZWM9Z3JvdXAlM0ElM0Fyd3glMkN1c2VyJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0EtLS0lMkNtYXNrJTNBJTNBcnd4JTJDdXNlciUzQTAyN2MyOGQ1LWM5MWQtNDlmMC05OGM1LWQxMDEzNGIxNjliMyUzQXJ3eCZvcD1TRVRBQ0wmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d712e83-6619-4783-a68f-6090188fe6a8" + "c4e08d9c-ad29-4e82-b101-dbf332e5ffb7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -871,19 +862,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:09 GMT" + "Mon, 27 Mar 2017 19:14:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "33820bca-fe2e-45a8-94fa-6a647b1044ab" + "8fbfbd0a-a3d8-4e26-83e6-9b3b9562ebe3" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -900,9 +891,9 @@ ], "Names": { ".ctor": [ - "datalakerg17829", - "testdatalake1116", - "testadlfs11247" + "datalakerg1488", + "testdatalake19929", + "testadlfs15112" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json index 4198b31dae02..0c97f63b40a9 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da0ad446-e8ef-4d81-8fbd-2ae423888cb0" + "e606a538-ea1d-4ce5-9d1c-d26c581d2b74" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:23 GMT" + "Mon, 27 Mar 2017 18:08:03 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "d40f348d-d8ac-436a-801f-eda92966d12d" + "b17b2c4c-8472-40d4-ba78-3b079cf8adce" ], "x-ms-correlation-request-id": [ - "d40f348d-d8ac-436a-801f-eda92966d12d" + "b17b2c4c-8472-40d4-ba78-3b079cf8adce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223823Z:d40f348d-d8ac-436a-801f-eda92966d12d" + "CENTRALUS:20170327T180803Z:b17b2c4c-8472-40d4-ba78-3b079cf8adce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc2a8cce-642d-4d6f-8558-63a5254ae716" + "2f59cc2c-d5f2-4ffd-866d-a161eabe2907" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:23 GMT" + "Mon, 27 Mar 2017 18:08:03 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-request-id": [ - "525b43f6-8aee-46cb-9e74-7d9cb907c643" + "abc68f2b-21f7-4be3-b215-a40a85d574cc" ], "x-ms-correlation-request-id": [ - "525b43f6-8aee-46cb-9e74-7d9cb907c643" + "abc68f2b-21f7-4be3-b215-a40a85d574cc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223823Z:525b43f6-8aee-46cb-9e74-7d9cb907c643" + "CENTRALUS:20170327T180803Z:abc68f2b-21f7-4be3-b215-a40a85d574cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6357ebab-6ece-4a30-8102-918eedbeaaab" + "1fa657c2-60d7-4932-9ed7-4e41596f7327" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:04 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "98df156f-8784-443b-87af-70bf58ded4da" + "5f1f7203-8da3-43e9-b6a4-ab8059393cfd" ], "x-ms-correlation-request-id": [ - "98df156f-8784-443b-87af-70bf58ded4da" + "5f1f7203-8da3-43e9-b6a4-ab8059393cfd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223824Z:98df156f-8784-443b-87af-70bf58ded4da" + "CENTRALUS:20170327T180804Z:5f1f7203-8da3-43e9-b6a4-ab8059393cfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e54cd550-a456-4ca3-8e7f-22ad8a7ffada" + "6d41bca1-3556-42e3-93a2-febcfc74d969" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:04 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14998" ], "x-ms-request-id": [ - "a26d5345-5667-4694-ab38-8cf440f77301" + "42b69eb2-dc4e-41b8-b68d-69337e2065ca" ], "x-ms-correlation-request-id": [ - "a26d5345-5667-4694-ab38-8cf440f77301" + "42b69eb2-dc4e-41b8-b68d-69337e2065ca" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223824Z:a26d5345-5667-4694-ab38-8cf440f77301" + "CENTRALUS:20170327T180804Z:42b69eb2-dc4e-41b8-b68d-69337e2065ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17895?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "409110ea-cf74-4c9b-9358-017846c8ddbf" + "49c20109-179d-4db5-a89a-ec35cd83b931" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17895' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13679' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:04 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-request-id": [ - "8dbad941-eeb8-45b9-80b9-bdbf68e8728a" + "9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" ], "x-ms-correlation-request-id": [ - "8dbad941-eeb8-45b9-80b9-bdbf68e8728a" + "9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223824Z:8dbad941-eeb8-45b9-80b9-bdbf68e8728a" + "CENTRALUS:20170327T180804Z:9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17895?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89518b15-d8f6-4b04-9398-d9f48703fb57" + "46d14e16-dc0e-413c-a86f-2cec8d4972f3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895\",\r\n \"name\": \"datalakerg17895\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679\",\r\n \"name\": \"datalakerg13679\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:05 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-request-id": [ - "f5c29907-b3b9-48e0-9677-8e6531f250bc" + "8c4adfe5-1f39-46b2-8e02-43def13c76d4" ], "x-ms-correlation-request-id": [ - "f5c29907-b3b9-48e0-9677-8e6531f250bc" + "8c4adfe5-1f39-46b2-8e02-43def13c76d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223825Z:f5c29907-b3b9-48e0-9677-8e6531f250bc" + "CENTRALUS:20170327T180805Z:8c4adfe5-1f39-46b2-8e02-43def13c76d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17895?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "519dccf9-fbb4-4242-be6f-929a898f60c8" + "2d2272c6-66bb-4677-b7e2-fa3529955c72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895\",\r\n \"name\": \"datalakerg17895\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679\",\r\n \"name\": \"datalakerg13679\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "bdcae301-37d9-4308-8393-ac3cff794424" + "881fbd67-0751-455f-ac33-0d87c5fa3bb8" ], "x-ms-correlation-request-id": [ - "bdcae301-37d9-4308-8393-ac3cff794424" + "881fbd67-0751-455f-ac33-0d87c5fa3bb8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223825Z:bdcae301-37d9-4308-8393-ac3cff794424" + "CENTRALUS:20170327T180805Z:881fbd67-0751-455f-ac33-0d87c5fa3bb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM3NzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a23cedc-d8d2-48e9-af39-1ac5c2936a93" + "a81a19ab-85fa-4003-a7ad-e830d566899a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13775' under resource group 'datalakerg17895' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13045' under resource group 'datalakerg13679' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:25 GMT" + "Mon, 27 Mar 2017 18:08:05 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "376d5946-13ca-4e77-b910-eb2c6ec57654" + "6c2eee77-f49e-41b7-bc78-f8e036bffa78" ], "x-ms-correlation-request-id": [ - "376d5946-13ca-4e77-b910-eb2c6ec57654" + "6c2eee77-f49e-41b7-bc78-f8e036bffa78" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223825Z:376d5946-13ca-4e77-b910-eb2c6ec57654" + "CENTRALUS:20170327T180806Z:6c2eee77-f49e-41b7-bc78-f8e036bffa78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM3NzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13775.azuredatalakestore.net\",\r\n \"accountId\": \"eff3e58f-5ab5-49f1-b73e-dae96ea68616\",\r\n \"creationTime\": \"2016-11-10T22:38:30.4661303Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:38:30.4661303Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775\",\r\n \"name\": \"testadlfs13775\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13045.azuredatalakestore.net\",\r\n \"accountId\": \"2f6486c2-99c5-43cd-b16b-ca605e7d61b2\",\r\n \"creationTime\": \"2017-03-27T18:08:06.6187539Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:08:06.6187539Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045\",\r\n \"name\": \"testadlfs13045\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:57 GMT" + "Mon, 27 Mar 2017 18:08:37 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "00284d38-e92a-4a61-a946-6711961dc335" + "5db1ba4e-f3b6-41a3-b15e-45535f74d5c2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-correlation-request-id": [ - "e80206bb-e242-42c6-8e3a-299b88d0a558" + "527f7293-cf9c-423d-8a0a-94d572f7df72" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223857Z:e80206bb-e242-42c6-8e3a-299b88d0a558" + "CENTRALUS:20170327T180838Z:527f7293-cf9c-423d-8a0a-94d572f7df72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM3NzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27cec843-4851-4119-81b4-47801f5cd8e1" + "1be082d8-1f74-41d6-8dde-f55a5c6b3c90" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13775.azuredatalakestore.net\",\r\n \"accountId\": \"eff3e58f-5ab5-49f1-b73e-dae96ea68616\",\r\n \"creationTime\": \"2016-11-10T22:38:30.4661303Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:38:30.4661303Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775\",\r\n \"name\": \"testadlfs13775\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13045.azuredatalakestore.net\",\r\n \"accountId\": \"2f6486c2-99c5-43cd-b16b-ca605e7d61b2\",\r\n \"creationTime\": \"2017-03-27T18:08:06.6187539Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:08:06.6187539Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045\",\r\n \"name\": \"testadlfs13045\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:57 GMT" + "Mon, 27 Mar 2017 18:08:38 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4b989bf1-1ba7-4924-a7ef-dbc22cff7e75" + "3771397c-3677-43e0-b893-a155bc1e8647" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-correlation-request-id": [ - "2de152b0-083d-40b4-9516-5c9374e4ebea" + "c4b91ac8-d645-46cd-96c0-f93289a38fd9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223858Z:2de152b0-083d-40b4-9516-5c9374e4ebea" + "CENTRALUS:20170327T180839Z:c4b91ac8-d645-46cd-96c0-f93289a38fd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM3NzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "54156f40-2451-43a2-8117-6ebcf211d0f7" + "9aa37bf7-147b-4bda-aec2-8dda4d4afcf9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"eff3e58f-5ab5-49f1-b73e-dae96ea68616\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775\",\r\n \"name\": \"testadlfs13775\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2f6486c2-99c5-43cd-b16b-ca605e7d61b2\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045\",\r\n \"name\": \"testadlfs13045\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:26 GMT" + "Mon, 27 Mar 2017 18:08:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/eff3e58f-5ab5-49f1-b73e-dae96ea686160?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2f6486c2-99c5-43cd-b16b-ca605e7d61b20?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "b9541d43-924b-4cbf-b5e0-99ca0e331fa7" + "9f66ce8c-769f-487f-89b7-678a494d7e3d" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "46aaf1ed-9399-4db3-9f65-cda9107b3150" + "d993ade0-7743-4cf9-a72d-62f02ac95719" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223826Z:46aaf1ed-9399-4db3-9f65-cda9107b3150" + "CENTRALUS:20170327T180807Z:d993ade0-7743-4cf9-a72d-62f02ac95719" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/eff3e58f-5ab5-49f1-b73e-dae96ea686160?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmZjNlNThmLTVhYjUtNDlmMS1iNzNlLWRhZTk2ZWE2ODYxNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2f6486c2-99c5-43cd-b16b-ca605e7d61b20?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJmNjQ4NmMyLTk5YzUtNDNjZC1iMTZiLWNhNjA1ZTdkNjFiMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:56 GMT" + "Mon, 27 Mar 2017 18:08:37 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2469844a-4a16-475f-80c5-1192dc9cfb49" + "9dfcc31a-9455-4a1a-8c28-b95369f2bc44" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "75064a41-3384-4e28-8113-f4e089e724a6" + "2659aaf3-c7ac-4464-924f-746e1361e163" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223857Z:75064a41-3384-4e28-8113-f4e089e724a6" + "CENTRALUS:20170327T180838Z:2659aaf3-c7ac-4464-924f-746e1361e163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "8857a3d7-519f-4c19-a4b1-fb4de2cfff6e" + "f0f22217-fcc3-426f-bf58-894cedf254bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs13775.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3258?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs13045.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7894?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "c477dead-9f6f-431a-ba34-bb06895aefc7" + "435ca5ca-2948-4199-b340-afe6bf5cbddb" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11b8c27f-98c1-4f69-929e-3b475ac33ac5" + "8ce7f65d-4e0b-42af-8d4e-decfe50589ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cf082162-97f0-480e-9573-e6795a35e860" + "a7987fe9-13dd-4bc0-b21f-d4b5002ccf82" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "591f40c1-9871-4e9e-9fe5-14443ce54a79" + "0f8e5123-a64e-410f-ad93-2622461d8d44" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "80bf6d9a-704f-432d-a238-51a13c08dbb3" + "d8f0a93b-cae0-4fde-b970-8029fab1e512" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,26 +898,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae0d0a20-d41e-413c-ae43-5939fc8bb12a" + "cd62cf7b-dbab-40e4-aaef-8e3c5673c78f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 1478817660000\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 1490638241000,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "299" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1dfa8a15-a4d9-4609-92af-71d17bcf255b" + "acb7140d-ff12-431f-9095-e496c507bbbc" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -962,26 +952,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36441d66-88a1-4edc-a4eb-3df9e70069d7" + "6780dac9-053a-41d2-9ac7-08f46f520f36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 1478817661394\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 1490638242322,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "299" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,16 +982,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d4925b67-3311-4006-b9af-ab4aaf1584d2" + "2fdb252e-c1a8-45d4-9410-b13b5d10c6b8" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1017,26 +1006,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72bcb0bd-7c32-420b-9fb0-1c191f7003ce" + "d032efd8-4309-49de-8b61-fafefcc6e024" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 1478817660762\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 1490638241169,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "299" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1048,16 +1036,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3d013032-bb26-41a8-ba91-2959f51ff9c7" + "535a048f-90bd-47c5-8012-fa9f4b046495" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1072,26 +1060,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "473382d5-d68d-4328-9a9d-dd77f5b942b0" + "b8bb7b75-828c-4e80-a854-a4e8649719bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1103,16 +1090,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b085e75e-899d-4d73-a374-ef7c3d510a9b" + "b2b8ff40-e076-4238-bda9-9a705c8bb009" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1127,20 +1114,19 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3258?expiryOption=Absolute&expireTime=1478817660000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE0Nzg4MTc2NjAwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=Absolute&expireTime=1490638241000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE0OTA2MzgyNDEwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8aa4bf5-502a-4edf-a261-1d75a880c0fa" + "cd10e439-8588-4fce-888d-7045e7459d87" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1155,13 +1141,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ae4ad683-d8e4-47de-9992-08a9d7a55043" + "c5b4ab5a-761c-43b2-a535-69e77ec120e9" ], "X-Content-Type-Options": [ "nosniff" @@ -1173,20 +1159,19 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3258?expiryOption=RelativeToNow&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvTm93JmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=RelativeToNow&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvTm93JmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11e77dfe-9d2a-4e15-bd8a-f19850e6c672" + "05d9018f-9864-45c7-947f-eb902cd8cc40" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1201,13 +1186,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "256af612-96b5-4974-8878-f3326593bbcc" + "bdebc702-609f-41a3-8538-481d6ac4bae8" ], "X-Content-Type-Options": [ "nosniff" @@ -1219,20 +1204,19 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3258?expiryOption=RelativeToCreationDate&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvQ3JlYXRpb25EYXRlJmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=RelativeToCreationDate&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvQ3JlYXRpb25EYXRlJmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "769f659b-f627-4735-a489-509d0f3a58e6" + "87289b3d-f2c9-49b2-b20c-62e2fcdb9c46" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1247,13 +1231,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c488d910-011e-4dc7-bd95-14d8b41aa69d" + "9b5fe3a1-bc46-46d2-b21c-bcc9516e7d33" ], "X-Content-Type-Options": [ "nosniff" @@ -1265,20 +1249,19 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3258?expiryOption=NeverExpire&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=NeverExpire&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4658717d-9fc1-444e-9508-232e6e6e1dca" + "9a2fe838-4171-48bd-ac21-de9f19db62ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1293,13 +1276,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1da82038-870b-4ebc-b0b9-cf13c0ab9fd4" + "7155c7e5-8a75-4a1a-b9c7-60a6480d17ef" ], "X-Content-Type-Options": [ "nosniff" @@ -1313,17 +1296,17 @@ ], "Names": { ".ctor": [ - "datalakerg17895", - "testdatalake12027", - "testadlfs13775" + "datalakerg13679", + "testdatalake12576", + "testadlfs13045" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3258" + "SDKTestFolder01/SDKTestFile01.txt7894" ] }, "Variables": { "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f", - "absoluteTime": "11/10/2016 10:41:00 PM", - "relativeTime": "11/10/2016 10:41:01 PM" + "absoluteTime": "3/27/2017 6:10:41 PM", + "relativeTime": "3/27/2017 6:10:41 PM" } } \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json index 3045789b935e..66609da10c85 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3bd246b-f151-4bc4-9693-3cf3801ee76a" + "e804d64a-7af3-4133-9c47-af65af5e330c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:31 GMT" + "Mon, 27 Mar 2017 19:12:42 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "5df5be90-55b3-4444-8064-fa3701558484" + "fe3188e4-03c2-4482-8b8c-86870f4385bb" ], "x-ms-correlation-request-id": [ - "5df5be90-55b3-4444-8064-fa3701558484" + "fe3188e4-03c2-4482-8b8c-86870f4385bb" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224031Z:5df5be90-55b3-4444-8064-fa3701558484" + "WESTUS2:20170327T191242Z:fe3188e4-03c2-4482-8b8c-86870f4385bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68c13b72-086c-423e-a367-9bd7822c866d" + "194ec3e0-7494-4530-9964-c2dc3cee6f53" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:32 GMT" + "Mon, 27 Mar 2017 19:12:42 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-request-id": [ - "0614cacc-bb4e-4238-91cd-673b2f5b7cfc" + "814f3630-50aa-4d19-8e12-2f20cd8c7b2d" ], "x-ms-correlation-request-id": [ - "0614cacc-bb4e-4238-91cd-673b2f5b7cfc" + "814f3630-50aa-4d19-8e12-2f20cd8c7b2d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224032Z:0614cacc-bb4e-4238-91cd-673b2f5b7cfc" + "WESTUS2:20170327T191242Z:814f3630-50aa-4d19-8e12-2f20cd8c7b2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b92ba76e-f8d4-4774-8420-3a3ebea2d597" + "ffdef342-4b82-44da-a3d4-0f0089b3b44a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:32 GMT" + "Mon, 27 Mar 2017 19:12:44 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "6a347707-59c2-4d05-ba6b-188c212152a7" + "cfe26491-de19-4cfb-8d75-12910c377724" ], "x-ms-correlation-request-id": [ - "6a347707-59c2-4d05-ba6b-188c212152a7" + "cfe26491-de19-4cfb-8d75-12910c377724" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224033Z:6a347707-59c2-4d05-ba6b-188c212152a7" + "WESTUS2:20170327T191244Z:cfe26491-de19-4cfb-8d75-12910c377724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fc725a4-25ea-490b-a943-3bd74953d4c2" + "301c3cf7-8495-4f66-a217-6846a9df4ec8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:33 GMT" + "Mon, 27 Mar 2017 19:12:44 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14986" ], "x-ms-request-id": [ - "86c3eee4-e42c-4be6-bbe2-eca03d2267aa" + "82fcf4b0-a8be-47de-af39-ab354b142f59" ], "x-ms-correlation-request-id": [ - "86c3eee4-e42c-4be6-bbe2-eca03d2267aa" + "82fcf4b0-a8be-47de-af39-ab354b142f59" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224033Z:86c3eee4-e42c-4be6-bbe2-eca03d2267aa" + "WESTUS2:20170327T191244Z:82fcf4b0-a8be-47de-af39-ab354b142f59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1989?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTg5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61c33bb-d504-4339-a15a-c149e8533768" + "d1c2202b-fd61-478d-9c19-a490989d10ea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1989' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19346' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:33 GMT" + "Mon, 27 Mar 2017 19:12:44 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14985" ], "x-ms-request-id": [ - "3bfc533f-da6e-44d1-bb19-714dae4bf9fa" + "e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" ], "x-ms-correlation-request-id": [ - "3bfc533f-da6e-44d1-bb19-714dae4bf9fa" + "e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224033Z:3bfc533f-da6e-44d1-bb19-714dae4bf9fa" + "WESTUS2:20170327T191244Z:e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1989?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTg5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d68cd259-7581-4229-bf52-bd6bc432e194" + "55644b64-0932-4493-8c9e-697387e289e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989\",\r\n \"name\": \"datalakerg1989\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346\",\r\n \"name\": \"datalakerg19346\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:34 GMT" + "Mon, 27 Mar 2017 19:12:45 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-request-id": [ - "e2bb3539-b9b1-4def-84b5-f337701f94d2" + "05764321-4830-4fbc-8f33-087c71373318" ], "x-ms-correlation-request-id": [ - "e2bb3539-b9b1-4def-84b5-f337701f94d2" + "05764321-4830-4fbc-8f33-087c71373318" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224034Z:e2bb3539-b9b1-4def-84b5-f337701f94d2" + "WESTUS2:20170327T191245Z:05764321-4830-4fbc-8f33-087c71373318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1989?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTg5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "612294be-98a6-446c-89ad-0efb72c53602" + "cab031d6-a9dc-4b83-bf06-ecd2954b3bfd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989\",\r\n \"name\": \"datalakerg1989\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346\",\r\n \"name\": \"datalakerg19346\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "182" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:34 GMT" + "Mon, 27 Mar 2017 19:12:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "a3a3b08e-30e5-4188-a167-628dd15853cb" + "4909e90f-5723-4e54-8745-25651a51b64a" ], "x-ms-correlation-request-id": [ - "a3a3b08e-30e5-4188-a167-628dd15853cb" + "4909e90f-5723-4e54-8745-25651a51b64a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224034Z:a3a3b08e-30e5-4188-a167-628dd15853cb" + "WESTUS2:20170327T191245Z:4909e90f-5723-4e54-8745-25651a51b64a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzI1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72a08454-3dd9-4b8d-af68-dce845ab1ea8" + "92f82a5e-e25e-498c-a776-d72badc5a567" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13253' under resource group 'datalakerg1989' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17533' under resource group 'datalakerg19346' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:34 GMT" + "Mon, 27 Mar 2017 19:12:45 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "abd136f6-e141-40f4-a6c2-7b5737ab3152" + "c10ef177-ca22-4122-9976-cd39798eb5c9" ], "x-ms-correlation-request-id": [ - "abd136f6-e141-40f4-a6c2-7b5737ab3152" + "c10ef177-ca22-4122-9976-cd39798eb5c9" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224034Z:abd136f6-e141-40f4-a6c2-7b5737ab3152" + "WESTUS2:20170327T191246Z:c10ef177-ca22-4122-9976-cd39798eb5c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,21 +448,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzI1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13253.azuredatalakestore.net\",\r\n \"accountId\": \"3c7e0818-3018-4e08-93f2-ffa372e919c7\",\r\n \"creationTime\": \"2016-11-10T22:40:41.3547637Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:40:41.3547637Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253\",\r\n \"name\": \"testadlfs13253\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17533.azuredatalakestore.net\",\r\n \"accountId\": \"0fada2a7-924e-445d-aaf6-907b5f1e0b0f\",\r\n \"creationTime\": \"2017-03-27T19:12:48.9602721Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:12:48.9602721Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533\",\r\n \"name\": \"testadlfs17533\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "690" - ], "Content-Type": [ "application/json" ], @@ -478,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:07 GMT" + "Mon, 27 Mar 2017 19:13:19 GMT" ], "Pragma": [ "no-cache" @@ -486,8 +480,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "3d1441c0-e7c5-4444-9517-60e87bd23a2c" + "4ca90cff-88bf-469e-86ec-afbc32c40bf2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14992" ], "x-ms-correlation-request-id": [ - "6ef35b68-dd64-432f-a27f-63415b5656ce" + "8ee08450-5215-462c-bead-3eb2dcf67821" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224107Z:6ef35b68-dd64-432f-a27f-63415b5656ce" + "WESTUS2:20170327T191319Z:8ee08450-5215-462c-bead-3eb2dcf67821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzI1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1f320f6-d193-4c7b-8fb4-ed2eacf08684" + "d7833581-7009-447b-bfc8-6b5d4c89aba8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13253.azuredatalakestore.net\",\r\n \"accountId\": \"3c7e0818-3018-4e08-93f2-ffa372e919c7\",\r\n \"creationTime\": \"2016-11-10T22:40:41.3547637Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:40:41.3547637Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253\",\r\n \"name\": \"testadlfs13253\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17533.azuredatalakestore.net\",\r\n \"accountId\": \"0fada2a7-924e-445d-aaf6-907b5f1e0b0f\",\r\n \"creationTime\": \"2017-03-27T19:12:48.9602721Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:12:48.9602721Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533\",\r\n \"name\": \"testadlfs17533\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:09 GMT" + "Mon, 27 Mar 2017 19:13:19 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "73837718-7768-40d8-9858-20c3ad6656ba" + "75f108d8-fdd8-4376-9dcd-c85b6c84e3d4" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-correlation-request-id": [ - "c0e81e3b-e7bb-43cb-b97b-b81acfa6f5eb" + "c29ffc37-6608-49fe-9149-6d72466966de" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224109Z:c0e81e3b-e7bb-43cb-b97b-b81acfa6f5eb" + "WESTUS2:20170327T191320Z:c29ffc37-6608-49fe-9149-6d72466966de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzI1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "41b3538c-2585-460a-88d3-8ab643b87eda" + "d2acedba-ec84-4579-a886-773e12a7baa0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3c7e0818-3018-4e08-93f2-ffa372e919c7\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253\",\r\n \"name\": \"testadlfs13253\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0fada2a7-924e-445d-aaf6-907b5f1e0b0f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533\",\r\n \"name\": \"testadlfs17533\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "420" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:40:35 GMT" + "Mon, 27 Mar 2017 19:12:48 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3c7e0818-3018-4e08-93f2-ffa372e919c70?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0fada2a7-924e-445d-aaf6-907b5f1e0b0f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "1fd54808-6d65-4ea1-aaa9-f3662d839a65" + "dbdbdf72-ae91-4256-9df5-b1655a6f956b" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1189" ], "x-ms-correlation-request-id": [ - "e37ff923-b44a-4d84-a280-c80f8c981fba" + "f9c8143e-5176-4b34-92b6-85ede6339c7f" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224036Z:e37ff923-b44a-4d84-a280-c80f8c981fba" + "WESTUS2:20170327T191248Z:f9c8143e-5176-4b34-92b6-85ede6339c7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,21 +664,17 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3c7e0818-3018-4e08-93f2-ffa372e919c70?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNjN2UwODE4LTMwMTgtNGUwOC05M2YyLWZmYTM3MmU5MTljNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0fada2a7-924e-445d-aaf6-907b5f1e0b0f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBmYWRhMmE3LTkyNGUtNDQ1ZC1hYWY2LTkwN2I1ZjFlMGIwZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json" ], @@ -697,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:06 GMT" + "Mon, 27 Mar 2017 19:13:18 GMT" ], "Pragma": [ "no-cache" @@ -705,8 +696,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "00aceb4c-b280-40a6-9e0b-7503a64bd4fe" + "606cfb13-0cf5-43a8-89de-ee72eaba80a1" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14989" ], "x-ms-correlation-request-id": [ - "9303596b-8f23-4188-b8a6-23cb6b7207ac" + "94902934-c8ad-474a-a29e-3c134552284a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224107Z:9303596b-8f23-4188-b8a6-23cb6b7207ac" + "WESTUS2:20170327T191319Z:94902934-c8ad-474a-a29e-3c134552284a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,26 +727,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2ad0614-a339-4e95-b459-e262efb6e6b0" + "15ce505d-a7e0-4399-ac56-06e18f628366" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "51ce7d3c-5315-49bc-80c8-4e719e87af5d" + "4546c71b-8605-4da3-8493-75db2465e80b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0471dc7c-6ef5-491f-ba68-92f46f272153" + "7bc6ee8e-aae1-4d48-9bf3-680d51351eb1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\",\r\n \"group::rwx\",\r\n \"mask::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\",\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "256" + "219" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c013b053-1e41-4919-a680-ac980b61b2b9" + "958314a5-1520-4c03-bbb8-93e7864ba7a9" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,26 +835,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33cfbc79-3a48-4cba-ab26-0e7f820aa955" + "ed555acb-3c2b-4b0f-b919-8801e9d41212" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"mask::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "208" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,16 +865,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2f261812-9188-4cd6-ba0c-aa5e1f007b8c" + "21a15ce0-0293-430d-80f6-1c5781ffd892" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -904,14 +895,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "404a3b86-64bc-4682-b515-b9c13eebefc3" + "c444285d-e4f3-4d76-b60b-a43f6818032b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -926,19 +916,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "68f09fc6-5f42-4a0f-8192-8ef59fc5cc31" + "948c1cc1-c311-4f61-a176-93d89ec1e910" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -959,14 +949,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb00eb9-2c55-4512-94b5-61782615b2fb" + "1d7a7663-2501-4fb6-ac90-a78ab8f0e86b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -981,19 +970,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ab711c31-d8d6-49e9-b09c-7b80ca0099a9" + "fb6a8e21-fa9c-44ca-acf9-70d7aec03d6f" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1010,9 +999,9 @@ ], "Names": { ".ctor": [ - "datalakerg1989", - "testdatalake11763", - "testadlfs13253" + "datalakerg19346", + "testdatalake17911", + "testadlfs17533" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json index 63fefc6ea117..4a4f2e02a640 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json @@ -7,21 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adaecdd2-ac57-4a4a-90c1-f3e7603c4ec7" + "d38068b3-75b6-4a72-901b-46af04116108" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -32,22 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:47 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-request-id": [ - "672ee8d5-f54f-4da2-9129-0df06d0a8c59" + "d7e408e9-f380-4038-9172-99c85ea38474" ], "x-ms-correlation-request-id": [ - "672ee8d5-f54f-4da2-9129-0df06d0a8c59" + "d7e408e9-f380-4038-9172-99c85ea38474" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224330Z:672ee8d5-f54f-4da2-9129-0df06d0a8c59" + "WESTUS2:20170327T181347Z:d7e408e9-f380-4038-9172-99c85ea38474" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,21 +64,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1919c638-4c6e-4995-94a1-48e01be1e769" + "a198f238-9b39-424d-aca7-b30e6a6699ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -87,22 +85,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:47 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14995" ], "x-ms-request-id": [ - "bfeeef08-63de-4984-8dd1-774c73ac5c4b" + "bb209fcc-7542-49bf-b825-e8b9e798f327" ], "x-ms-correlation-request-id": [ - "bfeeef08-63de-4984-8dd1-774c73ac5c4b" + "bb209fcc-7542-49bf-b825-e8b9e798f327" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224330Z:bfeeef08-63de-4984-8dd1-774c73ac5c4b" + "WESTUS2:20170327T181347Z:bb209fcc-7542-49bf-b825-e8b9e798f327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,21 +118,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d58bf32f-499e-4832-8efa-f9b7388c2459" + "64643e19-e708-4a2d-93a3-72d40cecac87" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -142,22 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:48 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-request-id": [ - "065e01b0-8004-4590-9108-abc4516535a5" + "520d0004-f017-4eb2-a40a-5d6313f5c9cc" ], "x-ms-correlation-request-id": [ - "065e01b0-8004-4590-9108-abc4516535a5" + "520d0004-f017-4eb2-a40a-5d6313f5c9cc" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:065e01b0-8004-4590-9108-abc4516535a5" + "WESTUS2:20170327T181348Z:520d0004-f017-4eb2-a40a-5d6313f5c9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,21 +175,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a966e4f1-77d4-411c-b0c4-1059908e4211" + "aab2bf30-5122-491d-9571-53ae8b4fe7b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -197,22 +196,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:48 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14994" ], "x-ms-request-id": [ - "85921fa6-b4e4-4b7a-a2f4-2ed9a5538d37" + "048611c6-99d6-424c-8640-d4c368d80384" ], "x-ms-correlation-request-id": [ - "85921fa6-b4e4-4b7a-a2f4-2ed9a5538d37" + "048611c6-99d6-424c-8640-d4c368d80384" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:85921fa6-b4e4-4b7a-a2f4-2ed9a5538d37" + "WESTUS2:20170327T181348Z:048611c6-99d6-424c-8640-d4c368d80384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17356?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzM1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2128f050-2726-4e7b-a12e-04fc3aa9932d" + "cfeaac91-a4fb-41eb-97c6-40503f251694" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17356' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16455' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:48 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14993" ], "x-ms-request-id": [ - "68bdba98-bbe7-402e-8ac8-ffcce3b601cc" + "b5d7ce47-0fa5-4459-a6e8-f758b62e6023" ], "x-ms-correlation-request-id": [ - "68bdba98-bbe7-402e-8ac8-ffcce3b601cc" + "b5d7ce47-0fa5-4459-a6e8-f758b62e6023" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:68bdba98-bbe7-402e-8ac8-ffcce3b601cc" + "WESTUS2:20170327T181348Z:b5d7ce47-0fa5-4459-a6e8-f758b62e6023" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,27 +280,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17356?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzM1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7127e037-cf47-49d3-8f75-f16f69eb05f7" + "9e609bcd-2b51-4247-b9ab-20b047b09a83" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356\",\r\n \"name\": \"datalakerg17356\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455\",\r\n \"name\": \"datalakerg16455\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -310,22 +307,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:31 GMT" + "Mon, 27 Mar 2017 18:13:49 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14992" ], "x-ms-request-id": [ - "902f48f9-5d75-432f-a33d-a072851af3c4" + "9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" ], "x-ms-correlation-request-id": [ - "902f48f9-5d75-432f-a33d-a072851af3c4" + "9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:902f48f9-5d75-432f-a33d-a072851af3c4" + "WESTUS2:20170327T181349Z:9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17356?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzM1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "47998352-a3eb-442f-8c19-e10e714c895f" + "6f04c302-93a3-4e6e-aebf-5e4fd1a5c1c4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356\",\r\n \"name\": \"datalakerg17356\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455\",\r\n \"name\": \"datalakerg16455\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:31 GMT" + "Mon, 27 Mar 2017 18:13:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-request-id": [ - "4d9bc2c3-941e-4c27-898b-af650b3e9631" + "ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" ], "x-ms-correlation-request-id": [ - "4d9bc2c3-941e-4c27-898b-af650b3e9631" + "ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:4d9bc2c3-941e-4c27-898b-af650b3e9631" + "WESTUS2:20170327T181349Z:ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzM1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyMDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1393b8bd-924e-4df6-9796-e1894e8b004e" + "1304a8c1-5fa1-47cb-a167-d469ee9017c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11207' under resource group 'datalakerg17356' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15527' under resource group 'datalakerg16455' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:35 GMT" + "Mon, 27 Mar 2017 18:13:49 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "34618124-0556-4df8-b5b6-d2f8e450efd1" + "3211424f-86b9-457e-a4b3-68721ee91440" ], "x-ms-correlation-request-id": [ - "34618124-0556-4df8-b5b6-d2f8e450efd1" + "3211424f-86b9-457e-a4b3-68721ee91440" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224334Z:34618124-0556-4df8-b5b6-d2f8e450efd1" + "WESTUS2:20170327T181350Z:3211424f-86b9-457e-a4b3-68721ee91440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzM1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyMDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11207.azuredatalakestore.net\",\r\n \"accountId\": \"5c914133-8141-434a-b702-652b1d118d92\",\r\n \"creationTime\": \"2016-11-10T22:43:40.7295243Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:43:40.7295243Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207\",\r\n \"name\": \"testadlfs11207\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15527.azuredatalakestore.net\",\r\n \"accountId\": \"94302fab-b105-4124-8c6f-101a2dcd7224\",\r\n \"creationTime\": \"2017-03-27T18:13:52.415611Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:13:52.415611Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527\",\r\n \"name\": \"testadlfs15527\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:08 GMT" + "Mon, 27 Mar 2017 18:14:22 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0debf366-7e95-4bb1-8805-f05fe9d6a3d8" + "e342f864-0565-439c-9694-cb081fd1cc39" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14996" ], "x-ms-correlation-request-id": [ - "addad2b7-97f9-41a0-a195-2ddbc373ccdf" + "f32ef63f-1fed-4cb6-b956-5495659ea1e3" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224408Z:addad2b7-97f9-41a0-a195-2ddbc373ccdf" + "WESTUS2:20170327T181423Z:f32ef63f-1fed-4cb6-b956-5495659ea1e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzM1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyMDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7133e382-44ea-464f-817a-6d654cabf867" + "8d925458-f60e-4a55-80ba-da2ca6240c69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11207.azuredatalakestore.net\",\r\n \"accountId\": \"5c914133-8141-434a-b702-652b1d118d92\",\r\n \"creationTime\": \"2016-11-10T22:43:40.7295243Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:43:40.7295243Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207\",\r\n \"name\": \"testadlfs11207\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15527.azuredatalakestore.net\",\r\n \"accountId\": \"94302fab-b105-4124-8c6f-101a2dcd7224\",\r\n \"creationTime\": \"2017-03-27T18:13:52.415611Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:13:52.415611Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527\",\r\n \"name\": \"testadlfs15527\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:09 GMT" + "Mon, 27 Mar 2017 18:14:24 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2b74dc57-e789-4521-a92a-2a150727846d" + "0148d41c-d71a-4628-87dc-ac340b6c8253" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14980" ], "x-ms-correlation-request-id": [ - "6d053715-a083-466a-93eb-748fabf647cd" + "4d42d83c-1eaa-4b8d-b730-6de294092fe0" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224409Z:6d053715-a083-466a-93eb-748fabf647cd" + "WESTUS2:20170327T181424Z:4d42d83c-1eaa-4b8d-b730-6de294092fe0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzM1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyMDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "f31bba9d-01d4-474a-bd28-5b967b7d64bd" + "d390fe1d-09d7-4c26-a840-bf445c72bda6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5c914133-8141-434a-b702-652b1d118d92\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207\",\r\n \"name\": \"testadlfs11207\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"94302fab-b105-4124-8c6f-101a2dcd7224\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527\",\r\n \"name\": \"testadlfs15527\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:43:37 GMT" + "Mon, 27 Mar 2017 18:13:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5c914133-8141-434a-b702-652b1d118d920?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/94302fab-b105-4124-8c6f-101a2dcd72240?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4bdbf504-dc16-47cf-98d9-64bde694a467" + "0d30e6bb-873a-4fee-8bc8-05bdf71d52fa" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "bff753c4-b661-4faa-8d3f-4f0a67b481b8" + "ce68d829-4bd6-47d1-a7bc-95e4699c464d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224337Z:bff753c4-b661-4faa-8d3f-4f0a67b481b8" + "WESTUS2:20170327T181352Z:ce68d829-4bd6-47d1-a7bc-95e4699c464d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5c914133-8141-434a-b702-652b1d118d920?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzVjOTE0MTMzLTgxNDEtNDM0YS1iNzAyLTY1MmIxZDExOGQ5MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/94302fab-b105-4124-8c6f-101a2dcd72240?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzk0MzAyZmFiLWIxMDUtNDEyNC04YzZmLTEwMWEyZGNkNzIyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:07 GMT" + "Mon, 27 Mar 2017 18:14:22 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "16ac8729-2f31-42a8-ac87-bd84bade0d58" + "b31418b1-d551-4aa6-8ead-49a6a3b36b60" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-correlation-request-id": [ - "76a1a613-beaa-4a4d-9fd1-c25af7edaa39" + "5a96c589-0cda-4738-afea-8cf72cdf1bfb" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224408Z:76a1a613-beaa-4a4d-9fd1-c25af7edaa39" + "WESTUS2:20170327T181423Z:5a96c589-0cda-4738-afea-8cf72cdf1bfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6161?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MTYxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1239?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMjM5P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "356acc36-fc33-46e8-a139-2552b5f63542" + "2d1f99a7-267e-49b0-a30f-4553dc271e2f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:44:11 GMT" + "Mon, 27 Mar 2017 18:14:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11207.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6161?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15527.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt1239?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "634adc4c-a268-40bc-85c7-6459c531d4d1" + "aec318fd-6d12-46d8-b408-17efe5cd4dbc" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6161?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MTYxP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1239?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMjM5P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf4c45a8-2f85-4d27-9d3b-8a2e8bb99c5b" + "0198db08-5e89-440f-83ce-beb750f9ae73" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817851144,\r\n \"modificationTime\": 1478817851223,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638469558,\r\n \"modificationTime\": 1490638469613,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:44:11 GMT" + "Mon, 27 Mar 2017 18:14:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d143f79a-b57e-4692-bce2-92ffc6be2f24" + "c0c028a2-b8b2-421a-a10c-030696e0dcb0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -854,12 +846,12 @@ ], "Names": { ".ctor": [ - "datalakerg17356", - "testdatalake1349", - "testadlfs11207" + "datalakerg16455", + "testdatalake11017", + "testadlfs15527" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt6161" + "SDKTestFolder01/SDKTestFile01.txt1239" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json index 73247bb2b7a0..b43932f36625 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5343f466-3663-46d9-80b2-3458a8eb99ea" + "7bd2a539-8d9b-499c-9a38-7df637e4ec0a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:14 GMT" + "Mon, 27 Mar 2017 18:21:21 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "b14df9cc-ff28-448e-992a-7e5363a6215a" + "9585316f-e371-4e3a-b6a3-2f264c8b3138" ], "x-ms-correlation-request-id": [ - "b14df9cc-ff28-448e-992a-7e5363a6215a" + "9585316f-e371-4e3a-b6a3-2f264c8b3138" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230014Z:b14df9cc-ff28-448e-992a-7e5363a6215a" + "CENTRALUS:20170327T182121Z:9585316f-e371-4e3a-b6a3-2f264c8b3138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fecc336e-30b8-44e2-95b9-43bd53188ba9" + "57229503-ad28-469f-b666-3af810ec67cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:14 GMT" + "Mon, 27 Mar 2017 18:21:21 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-request-id": [ - "2b04caaf-5c36-41ea-b71e-40fc41b3bef9" + "98041e7f-5713-4ac6-89f7-bff0ad4098d4" ], "x-ms-correlation-request-id": [ - "2b04caaf-5c36-41ea-b71e-40fc41b3bef9" + "98041e7f-5713-4ac6-89f7-bff0ad4098d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230014Z:2b04caaf-5c36-41ea-b71e-40fc41b3bef9" + "CENTRALUS:20170327T182121Z:98041e7f-5713-4ac6-89f7-bff0ad4098d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddbb7a82-b849-4452-848a-0ea777cde2fb" + "b851766b-d702-484d-876f-7be643f39f84" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:15 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "7ecdc8bd-1cf6-4cb9-b345-68a383069688" + "05217c53-607a-4bb6-8065-ec1d73bc01ce" ], "x-ms-correlation-request-id": [ - "7ecdc8bd-1cf6-4cb9-b345-68a383069688" + "05217c53-607a-4bb6-8065-ec1d73bc01ce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230015Z:7ecdc8bd-1cf6-4cb9-b345-68a383069688" + "CENTRALUS:20170327T182122Z:05217c53-607a-4bb6-8065-ec1d73bc01ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e401c139-8bcb-4527-b0a9-61cebe73f5d5" + "f6e41a82-edd1-48c1-aa0b-451cf46fa4f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:15 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-request-id": [ - "5ac647c7-701a-4cef-a9f4-d89f9d8a002f" + "75eca704-aa3e-461d-bb78-ba420bf8ea13" ], "x-ms-correlation-request-id": [ - "5ac647c7-701a-4cef-a9f4-d89f9d8a002f" + "75eca704-aa3e-461d-bb78-ba420bf8ea13" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230015Z:5ac647c7-701a-4cef-a9f4-d89f9d8a002f" + "CENTRALUS:20170327T182122Z:75eca704-aa3e-461d-bb78-ba420bf8ea13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17932?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzkzMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45df617f-2288-42b7-9877-1ce108b378d4" + "4ce198c8-30e4-4a00-aa51-8efaf969cd36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17932' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11151' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:15 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-request-id": [ - "c00b0699-7b15-4b90-833b-76fa9b3c063f" + "e7bc578d-0082-42a0-941f-8004b3f457ef" ], "x-ms-correlation-request-id": [ - "c00b0699-7b15-4b90-833b-76fa9b3c063f" + "e7bc578d-0082-42a0-941f-8004b3f457ef" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230015Z:c00b0699-7b15-4b90-833b-76fa9b3c063f" + "CENTRALUS:20170327T182122Z:e7bc578d-0082-42a0-941f-8004b3f457ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17932?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzkzMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b657e7b-7217-4636-a281-278e8b8c6756" + "7a21daca-4a07-4acd-ab89-07c5107b2ea9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932\",\r\n \"name\": \"datalakerg17932\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151\",\r\n \"name\": \"datalakerg11151\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:16 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14988" ], "x-ms-request-id": [ - "40de6eab-daf1-4eda-b3d7-6b6c4c8422d0" + "53e5fa41-72fd-4180-ba2e-41c28ce29a07" ], "x-ms-correlation-request-id": [ - "40de6eab-daf1-4eda-b3d7-6b6c4c8422d0" + "53e5fa41-72fd-4180-ba2e-41c28ce29a07" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230017Z:40de6eab-daf1-4eda-b3d7-6b6c4c8422d0" + "CENTRALUS:20170327T182122Z:53e5fa41-72fd-4180-ba2e-41c28ce29a07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17932?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzkzMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "4384e561-9df8-4ba0-91c3-0698649b8b48" + "769b9013-6455-49ba-8a5f-30da87b4c10a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932\",\r\n \"name\": \"datalakerg17932\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151\",\r\n \"name\": \"datalakerg11151\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:16 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "af44e8aa-920d-4ae1-84fc-83b3e005b3b6" + "b21a5521-e36e-4de5-9f0a-faaa94a00585" ], "x-ms-correlation-request-id": [ - "af44e8aa-920d-4ae1-84fc-83b3e005b3b6" + "b21a5521-e36e-4de5-9f0a-faaa94a00585" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230016Z:af44e8aa-920d-4ae1-84fc-83b3e005b3b6" + "CENTRALUS:20170327T182122Z:b21a5521-e36e-4de5-9f0a-faaa94a00585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzkzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ2OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f78eef69-7de2-4fdd-9365-0ed37d395402" + "c11255ac-beff-48ae-ae45-196a6853d480" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1468' under resource group 'datalakerg17932' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17806' under resource group 'datalakerg11151' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:16 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "2f5da4ad-20e7-4abd-8de8-c09cf5dc3c37" + "bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" ], "x-ms-correlation-request-id": [ - "2f5da4ad-20e7-4abd-8de8-c09cf5dc3c37" + "bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230017Z:2f5da4ad-20e7-4abd-8de8-c09cf5dc3c37" + "CENTRALUS:20170327T182123Z:bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzkzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ2OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1468.azuredatalakestore.net\",\r\n \"accountId\": \"e2045804-5ed0-4631-8b15-da7039d3d62a\",\r\n \"creationTime\": \"2016-11-10T23:00:22.4478878Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:00:22.4478878Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468\",\r\n \"name\": \"testadlfs1468\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17806.azuredatalakestore.net\",\r\n \"accountId\": \"ce955246-0e54-4ec4-ae00-cb42e71b9614\",\r\n \"creationTime\": \"2017-03-27T18:21:24.4836377Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:21:24.4836377Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806\",\r\n \"name\": \"testadlfs17806\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:48 GMT" + "Mon, 27 Mar 2017 18:21:54 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c20ce091-6851-44e3-8d4f-a7ef2ddd363d" + "92809765-ac97-4f62-a175-ee7714017480" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14995" ], "x-ms-correlation-request-id": [ - "92b2a682-6e95-4e62-b93a-5de079fea8eb" + "e009d333-a771-4456-828e-096380eb3444" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230049Z:92b2a682-6e95-4e62-b93a-5de079fea8eb" + "CENTRALUS:20170327T182155Z:e009d333-a771-4456-828e-096380eb3444" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzkzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ2OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1aa15ffb-5ca9-4ea2-b581-7791bb24e0c9" + "3cac7c68-e357-4f97-8201-44b0c0947f37" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1468.azuredatalakestore.net\",\r\n \"accountId\": \"e2045804-5ed0-4631-8b15-da7039d3d62a\",\r\n \"creationTime\": \"2016-11-10T23:00:22.4478878Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:00:22.4478878Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468\",\r\n \"name\": \"testadlfs1468\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17806.azuredatalakestore.net\",\r\n \"accountId\": \"ce955246-0e54-4ec4-ae00-cb42e71b9614\",\r\n \"creationTime\": \"2017-03-27T18:21:24.4836377Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:21:24.4836377Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806\",\r\n \"name\": \"testadlfs17806\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:49 GMT" + "Mon, 27 Mar 2017 18:21:56 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c3a7b87c-317e-4262-915c-4db13b4dbf63" + "bbb7af78-8aeb-4979-8b9d-9532bb906ccd" ], "X-Content-Type-Options": [ "nosniff" @@ -572,10 +568,10 @@ "14994" ], "x-ms-correlation-request-id": [ - "b6f61f74-a868-4952-a89f-c0af960d33dc" + "45347af8-6ba6-4a6c-89f4-238995f5ad3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230049Z:b6f61f74-a868-4952-a89f-c0af960d33dc" + "CENTRALUS:20170327T182156Z:45347af8-6ba6-4a6c-89f4-238995f5ad3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzkzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ2OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "2dc89d35-2b05-42a0-9f52-430367c65c2c" + "4acb3e48-8a69-4d34-892f-0b9854403595" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e2045804-5ed0-4631-8b15-da7039d3d62a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468\",\r\n \"name\": \"testadlfs1468\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ce955246-0e54-4ec4-ae00-cb42e71b9614\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806\",\r\n \"name\": \"testadlfs17806\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "420" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:17 GMT" + "Mon, 27 Mar 2017 18:21:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e2045804-5ed0-4631-8b15-da7039d3d62a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ce955246-0e54-4ec4-ae00-cb42e71b96140?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "0568ef81-e4ea-4a0a-aa1c-017b73047e19" + "685e148e-6639-4bb0-b1b4-2afa5808de33" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-correlation-request-id": [ - "c8d04072-1d2c-4f06-ad89-ea561ea51fc9" + "a91da9d1-b197-462e-9b85-d578e24030f4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230018Z:c8d04072-1d2c-4f06-ad89-ea561ea51fc9" + "CENTRALUS:20170327T182124Z:a91da9d1-b197-462e-9b85-d578e24030f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e2045804-5ed0-4631-8b15-da7039d3d62a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2UyMDQ1ODA0LTVlZDAtNDYzMS04YjE1LWRhNzAzOWQzZDYyYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ce955246-0e54-4ec4-ae00-cb42e71b96140?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NlOTU1MjQ2LTBlNTQtNGVjNC1hZTAwLWNiNDJlNzFiOTYxNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:48 GMT" + "Mon, 27 Mar 2017 18:21:54 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d7c5865c-16ee-485e-8201-eab6539e2748" + "5a8d5da9-cd14-46fb-8256-74d680c4f8bb" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14998" ], "x-ms-correlation-request-id": [ - "0f26aae3-3c4d-4df6-9446-33bac5f3eaf0" + "b67fc1bb-9ae1-4cdf-852a-83654388a945" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230048Z:0f26aae3-3c4d-4df6-9446-33bac5f3eaf0" + "CENTRALUS:20170327T182154Z:b67fc1bb-9ae1-4cdf-852a-83654388a945" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,17 +733,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b19202e-b6b1-4374-9d9c-8950cefd8784" + "ef09eedf-ec9a-424d-826b-5cfa4ab3d6de" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile [58fbf437-0808-4497-a191-e5bb57360958][2016-11-10T15:00:51.6144321-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile [9c20fd20-8dd3-46fa-9d9c-285e54c7c9c0][2017-03-27T11:22:01.7471746-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "236" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:51 GMT" + "Mon, 27 Mar 2017 18:22:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "58fbf437-0808-4497-a191-e5bb57360958" + "9c20fd20-8dd3-46fa-9d9c-285e54c7c9c0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -788,8 +781,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7712?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzEyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4722?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzIyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -800,14 +793,13 @@ "0" ], "x-ms-client-request-id": [ - "f9b8b78c-fd73-4b86-bb49-bf57f507162d" + "bc11037e-68c7-454a-811d-3348a73744ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -822,22 +814,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:51 GMT" + "Mon, 27 Mar 2017 18:22:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs1468.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7712?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17806.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4722?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "75d2b26c-2aca-4d27-a926-0a0af64b334f" + "22127853-91fb-46da-9441-574bbfc1c5e0" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7712?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzEyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4722?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzIyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cabd7c65-412f-4ff0-bc15-13f6a8ae4593" + "089d0978-9d51-47b1-8ef8-06a9a9872410" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818851733,\r\n \"modificationTime\": 1478818851733,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638922220,\r\n \"modificationTime\": 1490638922220,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "268" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:51 GMT" + "Mon, 27 Mar 2017 18:22:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5ae4765e-f630-49fd-950e-8befebd597b8" + "a70ae079-42c4-4a59-b849-59415a4e4a4a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -909,12 +900,12 @@ ], "Names": { ".ctor": [ - "datalakerg17932", - "testdatalake17929", - "testadlfs1468" + "datalakerg11151", + "testdatalake16385", + "testadlfs17806" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7712" + "SDKTestFolder01/SDKTestFile01.txt4722" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json index 5b287454e5f2..515a9c350732 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12efbcae-f412-4af2-9c0d-bf1bc064e918" + "c5c3b415-1c84-4dbb-9df5-3820634900ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:54 GMT" + "Mon, 27 Mar 2017 18:22:13 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1197" ], "x-ms-request-id": [ - "2ee0b501-a2d2-4c32-904c-55cfaa75c95b" + "609769d4-7859-4eca-8fe4-a4aef74552c3" ], "x-ms-correlation-request-id": [ - "2ee0b501-a2d2-4c32-904c-55cfaa75c95b" + "609769d4-7859-4eca-8fe4-a4aef74552c3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230054Z:2ee0b501-a2d2-4c32-904c-55cfaa75c95b" + "CENTRALUS:20170327T182213Z:609769d4-7859-4eca-8fe4-a4aef74552c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa5089b9-ca8d-4b3f-89f1-c91ca916d65c" + "2e599455-abbc-48bd-bed4-10ba5b6c3cf2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:54 GMT" + "Mon, 27 Mar 2017 18:22:13 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14993" ], "x-ms-request-id": [ - "3cad9ca1-5ee9-4295-8ada-de4d4e8b0321" + "34e1b6cf-1510-42c8-88a9-5ce5c8578637" ], "x-ms-correlation-request-id": [ - "3cad9ca1-5ee9-4295-8ada-de4d4e8b0321" + "34e1b6cf-1510-42c8-88a9-5ce5c8578637" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230054Z:3cad9ca1-5ee9-4295-8ada-de4d4e8b0321" + "CENTRALUS:20170327T182213Z:34e1b6cf-1510-42c8-88a9-5ce5c8578637" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64058e8c-13d7-4c8e-a446-13a6f49bc58d" + "9a687a48-ba0f-47a8-a350-d1d03aac7ea4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:55 GMT" + "Mon, 27 Mar 2017 18:22:14 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1196" ], "x-ms-request-id": [ - "076361b4-cd71-403d-9e5a-14b319dcc20f" + "8ee63ecd-1fe3-49a8-a6e7-54259d170684" ], "x-ms-correlation-request-id": [ - "076361b4-cd71-403d-9e5a-14b319dcc20f" + "8ee63ecd-1fe3-49a8-a6e7-54259d170684" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230055Z:076361b4-cd71-403d-9e5a-14b319dcc20f" + "CENTRALUS:20170327T182214Z:8ee63ecd-1fe3-49a8-a6e7-54259d170684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd9237eb-8f54-4eec-9287-28401697383e" + "f7cb5eca-9160-4f77-b5c6-c32bffebe64f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:55 GMT" + "Mon, 27 Mar 2017 18:22:14 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14992" ], "x-ms-request-id": [ - "d373293d-5361-4638-bfcb-41430c27bcc3" + "73900d57-4626-4f04-90b2-8818fb387268" ], "x-ms-correlation-request-id": [ - "d373293d-5361-4638-bfcb-41430c27bcc3" + "73900d57-4626-4f04-90b2-8818fb387268" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230055Z:d373293d-5361-4638-bfcb-41430c27bcc3" + "CENTRALUS:20170327T182214Z:73900d57-4626-4f04-90b2-8818fb387268" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11045?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTA0NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6232c34c-16db-4638-acb3-d3368d785d9a" + "bd284a41-aacd-420c-887b-15753f6e383e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11045' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1138' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:55 GMT" + "Mon, 27 Mar 2017 18:22:14 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14991" ], "x-ms-request-id": [ - "a275b571-5d02-423f-8945-812ceece7ede" + "178b538b-ada8-46f9-a5c0-4e0c8cae93ca" ], "x-ms-correlation-request-id": [ - "a275b571-5d02-423f-8945-812ceece7ede" + "178b538b-ada8-46f9-a5c0-4e0c8cae93ca" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230056Z:a275b571-5d02-423f-8945-812ceece7ede" + "CENTRALUS:20170327T182214Z:178b538b-ada8-46f9-a5c0-4e0c8cae93ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11045?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTA0NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "966d7be4-cce6-4f62-ad2c-ebeaf0b44d6e" + "1e75c586-cfd2-410f-9a06-2639651df46e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045\",\r\n \"name\": \"datalakerg11045\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138\",\r\n \"name\": \"datalakerg1138\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:56 GMT" + "Mon, 27 Mar 2017 18:22:15 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14990" ], "x-ms-request-id": [ - "319bb9b7-297b-4bdf-b4a6-3df1e944e48c" + "9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" ], "x-ms-correlation-request-id": [ - "319bb9b7-297b-4bdf-b4a6-3df1e944e48c" + "9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230057Z:319bb9b7-297b-4bdf-b4a6-3df1e944e48c" + "CENTRALUS:20170327T182215Z:9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11045?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTA0NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "0fc36067-ac67-43a2-8e2a-9d0212b7b547" + "9ccae088-4fc1-428c-a6de-edc390378ad1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045\",\r\n \"name\": \"datalakerg11045\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138\",\r\n \"name\": \"datalakerg1138\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:56 GMT" + "Mon, 27 Mar 2017 18:22:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1195" ], "x-ms-request-id": [ - "32bcd387-81af-49e2-9dab-5a8338d2e5bb" + "2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" ], "x-ms-correlation-request-id": [ - "32bcd387-81af-49e2-9dab-5a8338d2e5bb" + "2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230056Z:32bcd387-81af-49e2-9dab-5a8338d2e5bb" + "CENTRALUS:20170327T182215Z:2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIyNTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a6f058e-6cb1-448f-8514-468fec13fd70" + "51ccbd44-fbae-4a2e-be52-82bcf93663ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12257' under resource group 'datalakerg11045' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs14684' under resource group 'datalakerg1138' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:57 GMT" + "Mon, 27 Mar 2017 18:22:15 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "8187b030-1776-43cf-83fd-6ef557a14d33" + "77ce08dd-5f54-41d4-aef7-339e0a2df6ff" ], "x-ms-correlation-request-id": [ - "8187b030-1776-43cf-83fd-6ef557a14d33" + "77ce08dd-5f54-41d4-aef7-339e0a2df6ff" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230057Z:8187b030-1776-43cf-83fd-6ef557a14d33" + "CENTRALUS:20170327T182216Z:77ce08dd-5f54-41d4-aef7-339e0a2df6ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIyNTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12257.azuredatalakestore.net\",\r\n \"accountId\": \"1d0a7297-6091-4d72-8792-c6d31033d29f\",\r\n \"creationTime\": \"2016-11-10T23:01:04.2385774Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:01:04.2385774Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257\",\r\n \"name\": \"testadlfs12257\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14684.azuredatalakestore.net\",\r\n \"accountId\": \"f7c409b3-833c-4cdb-9bae-966a68325a8c\",\r\n \"creationTime\": \"2017-03-27T18:22:16.3667479Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:22:16.3667479Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684\",\r\n \"name\": \"testadlfs14684\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:01:28 GMT" + "Mon, 27 Mar 2017 18:22:47 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "800d0243-ba12-464e-8528-556a80decb11" + "92860acc-1d2d-4ad5-b382-2d93f6b02b81" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14996" ], "x-ms-correlation-request-id": [ - "7189bc51-929c-4fbe-b81c-98a691bf2d8a" + "46e77fce-ce8f-4b22-82af-d370d046a48f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230129Z:7189bc51-929c-4fbe-b81c-98a691bf2d8a" + "CENTRALUS:20170327T182248Z:46e77fce-ce8f-4b22-82af-d370d046a48f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIyNTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b10ef548-9e07-4f7f-9542-47c21903788d" + "f99c14c4-9811-4a8d-96f3-dc42674b2c7a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12257.azuredatalakestore.net\",\r\n \"accountId\": \"1d0a7297-6091-4d72-8792-c6d31033d29f\",\r\n \"creationTime\": \"2016-11-10T23:01:04.2385774Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:01:04.2385774Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257\",\r\n \"name\": \"testadlfs12257\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14684.azuredatalakestore.net\",\r\n \"accountId\": \"f7c409b3-833c-4cdb-9bae-966a68325a8c\",\r\n \"creationTime\": \"2017-03-27T18:22:16.3667479Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:22:16.3667479Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684\",\r\n \"name\": \"testadlfs14684\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:01:28 GMT" + "Mon, 27 Mar 2017 18:22:47 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "31058c52-1d69-479b-8bff-6bb79e050453" + "470a3e11-4ecb-4590-b8d2-9cf607797396" ], "X-Content-Type-Options": [ "nosniff" @@ -572,10 +568,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "15e73770-614d-454c-b27c-124e8dbce6c0" + "3df6d8b9-1b09-4a89-8d86-08144a53f677" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230129Z:15e73770-614d-454c-b27c-124e8dbce6c0" + "CENTRALUS:20170327T182248Z:3df6d8b9-1b09-4a89-8d86-08144a53f677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIyNTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "fb7f9403-460e-463a-b6e4-755eb8a63a97" + "43131419-2a7a-49de-a984-82dfad8abb72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"1d0a7297-6091-4d72-8792-c6d31033d29f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257\",\r\n \"name\": \"testadlfs12257\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f7c409b3-833c-4cdb-9bae-966a68325a8c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684\",\r\n \"name\": \"testadlfs14684\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:57 GMT" + "Mon, 27 Mar 2017 18:22:16 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1d0a7297-6091-4d72-8792-c6d31033d29f0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f7c409b3-833c-4cdb-9bae-966a68325a8c0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "c6b13bc1-ac80-49ad-82ea-88370b8d2abc" + "fae42f11-cd55-4c3d-ab99-2c519f594be2" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "865c1623-66fb-4122-bef0-8d88646e7fa6" + "902929eb-7bab-4b40-a0fb-ecc533fdc080" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230058Z:865c1623-66fb-4122-bef0-8d88646e7fa6" + "CENTRALUS:20170327T182217Z:902929eb-7bab-4b40-a0fb-ecc533fdc080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1d0a7297-6091-4d72-8792-c6d31033d29f0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFkMGE3Mjk3LTYwOTEtNGQ3Mi04NzkyLWM2ZDMxMDMzZDI5ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f7c409b3-833c-4cdb-9bae-966a68325a8c0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2Y3YzQwOWIzLTgzM2MtNGNkYi05YmFlLTk2NmE2ODMyNWE4YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:01:27 GMT" + "Mon, 27 Mar 2017 18:22:47 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "70d54f25-e454-4137-9089-828270aa2675" + "26abcfe2-f295-41bc-8766-d06eb9cb801e" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14998" ], "x-ms-correlation-request-id": [ - "8e08d565-3b17-4eda-88ee-fd7ba77805ca" + "a1539817-b34b-4fb2-ba02-7c49e508b8c4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230128Z:8e08d565-3b17-4eda-88ee-fd7ba77805ca" + "CENTRALUS:20170327T182247Z:a1539817-b34b-4fb2-ba02-7c49e508b8c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,9 +729,9 @@ ], "Names": { ".ctor": [ - "datalakerg11045", - "testdatalake16446", - "testadlfs12257" + "datalakerg1138", + "testdatalake18796", + "testadlfs14684" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/project.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/project.json index 42b80c217648..06aa188a0d5c 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/project.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/project.json @@ -33,8 +33,8 @@ "type": "platform", "version": "1.0.0" }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", + "Microsoft.Azure.Test.HttpRecorder": "[1.7.0,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.6.0,2.0.0)", "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)", "Microsoft.Rest.ClientRuntime": "[2.3.2,3.0)" , "Microsoft.Azure.ResourceManager": "1.0.0-preview", diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs index 5d649e78b2ec..e8e33489ff76 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs @@ -14,7 +14,7 @@ internal static class DataLakeStoreCustomizationHelper /// This constant is used as the default package version to place in the user agent. /// It should mirror the package version in the project.json file. /// - internal const string PackageVersion = "2.0.1-preview"; + internal const string PackageVersion = "2.1.1-preview"; internal const string DefaultAdlsFileSystemDnsSuffix = "azuredatalakestore.net"; diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataTransfer/Common/StringExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataTransfer/Common/StringExtensions.cs index 359d784e5306..5436f69d54f9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataTransfer/Common/StringExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataTransfer/Common/StringExtensions.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.DataLake.Store { - internal static class StringExtensions + public static class StringExtensions { /// diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperations.cs index 2df08c7b97bc..608dc6f56698 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -207,9 +204,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -224,6 +221,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -271,7 +270,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -308,7 +307,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -401,9 +400,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -418,6 +417,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -455,11 +456,19 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -593,9 +602,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -610,6 +619,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -657,7 +668,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -694,7 +705,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -801,9 +812,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -818,6 +829,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -865,7 +878,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -902,7 +915,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1012,9 +1025,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1029,6 +1042,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1046,7 +1061,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1082,7 +1097,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1119,7 +1134,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1137,7 +1152,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1239,9 +1254,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1256,6 +1271,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1273,7 +1290,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -1309,7 +1326,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1346,7 +1363,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1364,7 +1381,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1455,9 +1472,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1472,6 +1489,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1509,11 +1528,19 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1601,9 +1628,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1618,6 +1645,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1665,7 +1694,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1702,7 +1731,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1773,9 +1802,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1790,6 +1819,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1837,7 +1868,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1874,7 +1905,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1893,5 +1924,3 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperationsExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperationsExtensions.cs index b952a9ffde4c..431d6a2818eb 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -158,7 +155,7 @@ public static void Delete(this IAccountOperations operations, string resourceGro /// public static async Task DeleteAsync(this IAccountOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -243,7 +240,7 @@ public static void EnableKeyVault(this IAccountOperations operations, string res /// public static async Task EnableKeyVaultAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.EnableKeyVaultWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false); + (await operations.EnableKeyVaultWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -494,7 +491,7 @@ public static void BeginDelete(this IAccountOperations operations, string resour /// public static async Task BeginDeleteAsync(this IAccountOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -571,5 +568,3 @@ public static IPage ListNext(this IAccountOperations opera } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs index 730274f56bf1..be259547b6ea 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -38,12 +35,12 @@ public partial class DataLakeStoreAccountManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -100,7 +97,7 @@ public partial class DataLakeStoreAccountManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeStoreAccountManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeStoreAccountManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -114,7 +111,7 @@ protected DataLakeStoreAccountManagementClient(params System.Net.Http.Delegating /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeStoreAccountManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeStoreAccountManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -131,7 +128,7 @@ protected DataLakeStoreAccountManagementClient(System.Net.Http.HttpClientHandler /// /// Thrown when a required parameter is null /// - protected DataLakeStoreAccountManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected DataLakeStoreAccountManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -155,7 +152,7 @@ protected DataLakeStoreAccountManagementClient(System.Uri baseUri, params System /// /// Thrown when a required parameter is null /// - protected DataLakeStoreAccountManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected DataLakeStoreAccountManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -176,7 +173,7 @@ protected DataLakeStoreAccountManagementClient(System.Uri baseUri, System.Net.Ht /// /// Thrown when a required parameter is null /// - internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -204,7 +201,7 @@ internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentia /// /// Thrown when a required parameter is null /// - internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -232,7 +229,7 @@ internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentia /// /// Thrown when a required parameter is null /// - internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -268,7 +265,7 @@ internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientC /// /// Thrown when a required parameter is null /// - internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -303,7 +300,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -311,20 +308,20 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; SerializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -335,5 +332,3 @@ private void Initialize() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs index 0b44c7d599b5..63699708626b 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; using System.Collections; @@ -35,12 +35,12 @@ public partial class DataLakeStoreFileSystemManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -85,7 +85,7 @@ public partial class DataLakeStoreFileSystemManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeStoreFileSystemManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeStoreFileSystemManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -99,7 +99,7 @@ protected DataLakeStoreFileSystemManagementClient(params System.Net.Http.Delegat /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeStoreFileSystemManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeStoreFileSystemManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -116,7 +116,7 @@ protected DataLakeStoreFileSystemManagementClient(System.Net.Http.HttpClientHand /// /// Thrown when a required parameter is null /// - internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -144,7 +144,7 @@ internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials creden /// /// Thrown when a required parameter is null /// - internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -173,7 +173,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -181,19 +181,19 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -205,4 +205,3 @@ private void Initialize() } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperations.cs index e10935541c16..0fde8372335e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperations.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -171,9 +171,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -196,6 +196,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -216,7 +218,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } if (streamContents != null && streamContents != Stream.Null) { - _httpRequest.Content = new System.Net.Http.StreamContent(streamContents); + _httpRequest.Content = new StreamContent(streamContents); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); } // Set Credentials @@ -251,7 +253,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -385,9 +387,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -402,6 +404,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -448,7 +452,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -512,7 +516,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CheckAccessWithHttpMessagesAsync(string accountName, string path, string fsaction = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckAccessWithHttpMessagesAsync(string accountName, string path, string fsaction, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -526,6 +530,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "path"); } + if (fsaction == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "fsaction"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -569,9 +577,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -586,6 +594,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -632,7 +642,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -673,6 +683,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Data Lake Store path (starting with '/') of the directory to create. /// + /// + /// Optional octal permission with which the directory should be created. + /// /// /// Headers that will be added to request. /// @@ -694,7 +707,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> MkdirsWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> MkdirsWithHttpMessagesAsync(string accountName, string path, int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -722,6 +735,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); tracingParameters.Add("path", path); + tracingParameters.Add("permission", permission); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Mkdirs", tracingParameters); @@ -733,6 +747,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); + if (permission != null) + { + _queryParameters.Add(string.Format("permission={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(permission, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -746,9 +764,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -763,6 +781,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -809,7 +829,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -842,7 +862,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -871,7 +891,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// resulting from the concatenation. /// /// - /// A list of comma seperated Data Lake Store paths (starting with '/') of the + /// A list of comma separated Data Lake Store paths (starting with '/') of the /// files to concatenate, in the order in which they should be concatenated. /// /// @@ -953,9 +973,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -970,6 +990,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1016,7 +1038,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1155,9 +1177,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1172,6 +1194,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1192,7 +1216,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } if (streamContents != null && streamContents != Stream.Null) { - _httpRequest.Content = new System.Net.Http.StreamContent(streamContents); + _httpRequest.Content = new StreamContent(streamContents); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); } // Set Credentials @@ -1227,7 +1251,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1283,6 +1307,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// listBefore='d' will return 'a','b', and a listBefore='c' will also return /// 'a','b'. Optional. /// + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// /// /// Headers that will be added to request. /// @@ -1304,7 +1333,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListFileStatusWithHttpMessagesAsync(string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListFileStatusWithHttpMessagesAsync(string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1322,7 +1351,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "MSLISTSTATUS"; + string op = "LISTSTATUS"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1335,6 +1364,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) tracingParameters.Add("listSize", listSize); tracingParameters.Add("listAfter", listAfter); tracingParameters.Add("listBefore", listBefore); + tracingParameters.Add("tooId", tooId); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListFileStatus", tracingParameters); @@ -1358,6 +1388,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("listBefore={0}", System.Uri.EscapeDataString(listBefore))); } + if (tooId != null) + { + _queryParameters.Add(string.Format("tooId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(tooId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -1371,9 +1405,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1388,6 +1422,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1434,7 +1470,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1467,7 +1503,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1567,9 +1603,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1584,6 +1620,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1630,7 +1668,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1663,7 +1701,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1690,6 +1728,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// /// /// Headers that will be added to request. /// @@ -1711,7 +1754,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1729,7 +1772,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "MSGETFILESTATUS"; + string op = "GETFILESTATUS"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1739,6 +1782,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); tracingParameters.Add("getFilePath", getFilePath); + tracingParameters.Add("tooId", tooId); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetFileStatus", tracingParameters); @@ -1750,6 +1794,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); _url = _url.Replace("{getFilePath}", System.Uri.EscapeDataString(getFilePath)); List _queryParameters = new List(); + if (tooId != null) + { + _queryParameters.Add(string.Format("tooId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(tooId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -1763,9 +1811,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1780,6 +1828,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1826,7 +1876,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1859,7 +1909,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1877,10 +1927,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } /// - /// Appends to the specified file. NOTE: The target must not contain data added - /// by ConcurrentAppend. ConcurrentAppend and Append cannot be used - /// interchangeably; once a target file has been modified using either of these - /// append options, the other append option cannot be used on the target file. + /// Used for serial appends to the specified file. NOTE: The target must not + /// contain data added by ConcurrentAppend. ConcurrentAppend and Append cannot + /// be used interchangeably; once a target file has been modified using either + /// of these append options, the other append option cannot be used on the + /// target file. /// /// /// The Azure Data Lake Store account to execute filesystem operations on. @@ -1903,6 +1954,16 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// that both the stream and metadata should be refreshed upon append /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// Optional unique GUID per file indicating all the appends with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit when syncFlag is DATA or METADATA. + /// /// /// Headers that will be added to request. /// @@ -1921,7 +1982,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task AppendWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task AppendWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1957,6 +2018,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) tracingParameters.Add("streamContents", streamContents); tracingParameters.Add("offset", offset); tracingParameters.Add("syncFlag", syncFlag); + tracingParameters.Add("leaseId", leaseId); + tracingParameters.Add("fileSessionId", fileSessionId); tracingParameters.Add("op", op); tracingParameters.Add("append", append); tracingParameters.Add("cancellationToken", cancellationToken); @@ -1977,6 +2040,14 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("syncFlag={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(syncFlag, Client.SerializationSettings).Trim('"')))); } + if (leaseId != null) + { + _queryParameters.Add(string.Format("leaseId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(leaseId, Client.SerializationSettings).Trim('"')))); + } + if (fileSessionId != null) + { + _queryParameters.Add(string.Format("fileSessionId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(fileSessionId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -1994,9 +2065,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2011,6 +2082,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2031,7 +2104,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } if (streamContents != null && streamContents != Stream.Null) { - _httpRequest.Content = new System.Net.Http.StreamContent(streamContents); + _httpRequest.Content = new StreamContent(streamContents); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); } // Set Credentials @@ -2066,7 +2139,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2119,9 +2192,19 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// Optionally indicates what to do after completion of the append. DATA /// indicates more data is coming so no sync takes place, METADATA indicates a /// sync should be done to refresh metadata of the file only. CLOSE indicates - /// that both the stream and metadata should be refreshed upon append + /// that both the stream and metadata should be refreshed upon create /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// The octal representation of the unnamed user, mask and other permissions + /// that should be set for the file when created. If not specified, it inherits + /// these from the container. + /// /// /// Headers that will be added to request. /// @@ -2140,7 +2223,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CreateWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CreateWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -2172,6 +2255,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) tracingParameters.Add("streamContents", streamContents); tracingParameters.Add("overwrite", overwrite); tracingParameters.Add("syncFlag", syncFlag); + tracingParameters.Add("leaseId", leaseId); + tracingParameters.Add("permission", permission); tracingParameters.Add("op", op); tracingParameters.Add("write", write); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2192,6 +2277,14 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("syncFlag={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(syncFlag, Client.SerializationSettings).Trim('"')))); } + if (leaseId != null) + { + _queryParameters.Add(string.Format("leaseId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(leaseId, Client.SerializationSettings).Trim('"')))); + } + if (permission != null) + { + _queryParameters.Add(string.Format("permission={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(permission, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -2209,9 +2302,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2226,6 +2319,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2242,7 +2337,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) string _requestContent = null; if (streamContents != null && streamContents != Stream.Null) { - _httpRequest.Content = new System.Net.Http.StreamContent(streamContents); + _httpRequest.Content = new StreamContent(streamContents); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); } // Set Credentials @@ -2277,7 +2372,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2325,6 +2420,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The byte offset to start reading data from. /// + /// + /// Optional unique GUID per file indicating all the reads with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit. + /// /// /// Headers that will be added to request. /// @@ -2346,7 +2446,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> OpenWithHttpMessagesAsync(string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> OpenWithHttpMessagesAsync(string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -2377,6 +2477,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) tracingParameters.Add("directFilePath", directFilePath); tracingParameters.Add("length", length); tracingParameters.Add("offset", offset); + tracingParameters.Add("fileSessionId", fileSessionId); tracingParameters.Add("op", op); tracingParameters.Add("read", read); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2397,6 +2498,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("offset={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(offset, Client.SerializationSettings).Trim('"')))); } + if (fileSessionId != null) + { + _queryParameters.Add(string.Format("fileSessionId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(fileSessionId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -2414,9 +2519,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2431,6 +2536,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2478,7 +2585,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2612,9 +2719,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2629,6 +2736,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2675,7 +2784,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2800,9 +2909,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2817,6 +2926,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2863,7 +2974,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2988,9 +3099,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3005,6 +3116,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3051,7 +3164,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3164,9 +3277,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3181,6 +3294,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3227,7 +3342,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3340,9 +3455,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3357,6 +3472,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3403,7 +3520,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3445,6 +3562,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// + /// + /// An optional switch to return friendly names in place of object ID for ACL + /// entries. tooid=false returns friendly names instead of the AAD Object ID. + /// Default value is true, returning AAD object IDs. + /// /// /// Headers that will be added to request. /// @@ -3466,7 +3588,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -3484,7 +3606,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "MSGETACLSTATUS"; + string op = "GETACLSTATUS"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3494,6 +3616,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); tracingParameters.Add("aclFilePath", aclFilePath); + tracingParameters.Add("tooId", tooId); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetAclStatus", tracingParameters); @@ -3505,6 +3628,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); _url = _url.Replace("{aclFilePath}", System.Uri.EscapeDataString(aclFilePath)); List _queryParameters = new List(); + if (tooId != null) + { + _queryParameters.Add(string.Format("tooId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(tooId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -3518,9 +3645,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3535,6 +3662,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3581,7 +3710,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3614,7 +3743,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3722,9 +3851,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3739,6 +3868,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3785,7 +3916,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3818,7 +3949,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3930,9 +4061,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3947,6 +4078,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3993,7 +4126,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4026,7 +4159,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4141,9 +4274,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4158,6 +4291,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4204,7 +4339,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4325,9 +4460,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4342,6 +4477,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4388,7 +4525,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4422,4 +4559,3 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs index 4914c8837628..cfe5e43ed4c8 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -105,7 +105,7 @@ public static partial class FileSystemOperationsExtensions /// public static async Task ConcurrentAppendAsync(this IFileSystemOperations operations, string accountName, string filePath, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ConcurrentAppendWithHttpMessagesAsync(accountName, filePath, streamContents, appendMode, syncFlag, null, cancellationToken).ConfigureAwait(false); + (await operations.ConcurrentAppendWithHttpMessagesAsync(accountName, filePath, streamContents, appendMode, syncFlag, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -174,7 +174,7 @@ public static partial class FileSystemOperationsExtensions /// public static async Task SetFileExpiryAsync(this IFileSystemOperations operations, string accountName, string filePath, ExpiryOptionType expiryOption, long? expireTime = default(long?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.SetFileExpiryWithHttpMessagesAsync(accountName, filePath, expiryOption, expireTime, null, cancellationToken).ConfigureAwait(false); + (await operations.SetFileExpiryWithHttpMessagesAsync(accountName, filePath, expiryOption, expireTime, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -194,7 +194,7 @@ public static partial class FileSystemOperationsExtensions /// File system operation read/write/execute in string form, matching regex /// pattern '[rwx-]{3}' /// - public static void CheckAccess(this IFileSystemOperations operations, string accountName, string path, string fsaction = default(string)) + public static void CheckAccess(this IFileSystemOperations operations, string accountName, string path, string fsaction) { operations.CheckAccessAsync(accountName, path, fsaction).GetAwaiter().GetResult(); } @@ -219,9 +219,9 @@ public static partial class FileSystemOperationsExtensions /// /// The cancellation token. /// - public static async Task CheckAccessAsync(this IFileSystemOperations operations, string accountName, string path, string fsaction = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckAccessAsync(this IFileSystemOperations operations, string accountName, string path, string fsaction, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CheckAccessWithHttpMessagesAsync(accountName, path, fsaction, null, cancellationToken).ConfigureAwait(false); + (await operations.CheckAccessWithHttpMessagesAsync(accountName, path, fsaction, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -236,9 +236,12 @@ public static partial class FileSystemOperationsExtensions /// /// The Data Lake Store path (starting with '/') of the directory to create. /// - public static FileOperationResult Mkdirs(this IFileSystemOperations operations, string accountName, string path) + /// + /// Optional octal permission with which the directory should be created. + /// + public static FileOperationResult Mkdirs(this IFileSystemOperations operations, string accountName, string path, int? permission = default(int?)) { - return operations.MkdirsAsync(accountName, path).GetAwaiter().GetResult(); + return operations.MkdirsAsync(accountName, path, permission).GetAwaiter().GetResult(); } /// @@ -253,12 +256,15 @@ public static FileOperationResult Mkdirs(this IFileSystemOperations operations, /// /// The Data Lake Store path (starting with '/') of the directory to create. /// + /// + /// Optional octal permission with which the directory should be created. + /// /// /// The cancellation token. /// - public static async Task MkdirsAsync(this IFileSystemOperations operations, string accountName, string path, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task MkdirsAsync(this IFileSystemOperations operations, string accountName, string path, int? permission = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.MkdirsWithHttpMessagesAsync(accountName, path, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.MkdirsWithHttpMessagesAsync(accountName, path, permission, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -279,7 +285,7 @@ public static FileOperationResult Mkdirs(this IFileSystemOperations operations, /// resulting from the concatenation. /// /// - /// A list of comma seperated Data Lake Store paths (starting with '/') of the + /// A list of comma separated Data Lake Store paths (starting with '/') of the /// files to concatenate, in the order in which they should be concatenated. /// public static void Concat(this IFileSystemOperations operations, string accountName, string destinationPath, IList sources) @@ -302,7 +308,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// resulting from the concatenation. /// /// - /// A list of comma seperated Data Lake Store paths (starting with '/') of the + /// A list of comma separated Data Lake Store paths (starting with '/') of the /// files to concatenate, in the order in which they should be concatenated. /// /// @@ -310,7 +316,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// public static async Task ConcatAsync(this IFileSystemOperations operations, string accountName, string destinationPath, IList sources, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ConcatWithHttpMessagesAsync(accountName, destinationPath, sources, null, cancellationToken).ConfigureAwait(false); + (await operations.ConcatWithHttpMessagesAsync(accountName, destinationPath, sources, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -383,7 +389,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// public static async Task MsConcatAsync(this IFileSystemOperations operations, string accountName, string msConcatDestinationPath, Stream streamContents, bool? deleteSourceDirectory = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.MsConcatWithHttpMessagesAsync(accountName, msConcatDestinationPath, streamContents, deleteSourceDirectory, null, cancellationToken).ConfigureAwait(false); + (await operations.MsConcatWithHttpMessagesAsync(accountName, msConcatDestinationPath, streamContents, deleteSourceDirectory, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -413,9 +419,14 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// listBefore='d' will return 'a','b', and a listBefore='c' will also return /// 'a','b'. Optional. /// - public static FileStatusesResult ListFileStatus(this IFileSystemOperations operations, string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string)) + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// + public static FileStatusesResult ListFileStatus(this IFileSystemOperations operations, string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?)) { - return operations.ListFileStatusAsync(accountName, listFilePath, listSize, listAfter, listBefore).GetAwaiter().GetResult(); + return operations.ListFileStatusAsync(accountName, listFilePath, listSize, listAfter, listBefore, tooId).GetAwaiter().GetResult(); } /// @@ -445,12 +456,17 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// listBefore='d' will return 'a','b', and a listBefore='c' will also return /// 'a','b'. Optional. /// + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// /// /// The cancellation token. /// - public static async Task ListFileStatusAsync(this IFileSystemOperations operations, string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListFileStatusAsync(this IFileSystemOperations operations, string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListFileStatusWithHttpMessagesAsync(accountName, listFilePath, listSize, listAfter, listBefore, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListFileStatusWithHttpMessagesAsync(accountName, listFilePath, listSize, listAfter, listBefore, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -511,9 +527,14 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// - public static FileStatusResult GetFileStatus(this IFileSystemOperations operations, string accountName, string getFilePath) + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// + public static FileStatusResult GetFileStatus(this IFileSystemOperations operations, string accountName, string getFilePath, bool? tooId = default(bool?)) { - return operations.GetFileStatusAsync(accountName, getFilePath).GetAwaiter().GetResult(); + return operations.GetFileStatusAsync(accountName, getFilePath, tooId).GetAwaiter().GetResult(); } /// @@ -529,22 +550,28 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// /// /// The cancellation token. /// - public static async Task GetFileStatusAsync(this IFileSystemOperations operations, string accountName, string getFilePath, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetFileStatusAsync(this IFileSystemOperations operations, string accountName, string getFilePath, bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetFileStatusWithHttpMessagesAsync(accountName, getFilePath, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetFileStatusWithHttpMessagesAsync(accountName, getFilePath, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Appends to the specified file. NOTE: The target must not contain data added - /// by ConcurrentAppend. ConcurrentAppend and Append cannot be used - /// interchangeably; once a target file has been modified using either of these - /// append options, the other append option cannot be used on the target file. + /// Used for serial appends to the specified file. NOTE: The target must not + /// contain data added by ConcurrentAppend. ConcurrentAppend and Append cannot + /// be used interchangeably; once a target file has been modified using either + /// of these append options, the other append option cannot be used on the + /// target file. /// /// /// The operations group for this extension method. @@ -570,16 +597,27 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// that both the stream and metadata should be refreshed upon append /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// - public static void Append(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?)) + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// Optional unique GUID per file indicating all the appends with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit when syncFlag is DATA or METADATA. + /// + public static void Append(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?)) { - operations.AppendAsync(accountName, directFilePath, streamContents, offset, syncFlag).GetAwaiter().GetResult(); + operations.AppendAsync(accountName, directFilePath, streamContents, offset, syncFlag, leaseId, fileSessionId).GetAwaiter().GetResult(); } /// - /// Appends to the specified file. NOTE: The target must not contain data added - /// by ConcurrentAppend. ConcurrentAppend and Append cannot be used - /// interchangeably; once a target file has been modified using either of these - /// append options, the other append option cannot be used on the target file. + /// Used for serial appends to the specified file. NOTE: The target must not + /// contain data added by ConcurrentAppend. ConcurrentAppend and Append cannot + /// be used interchangeably; once a target file has been modified using either + /// of these append options, the other append option cannot be used on the + /// target file. /// /// /// The operations group for this extension method. @@ -605,12 +643,22 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// that both the stream and metadata should be refreshed upon append /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// Optional unique GUID per file indicating all the appends with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit when syncFlag is DATA or METADATA. + /// /// /// The cancellation token. /// - public static async Task AppendAsync(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AppendAsync(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.AppendWithHttpMessagesAsync(accountName, directFilePath, streamContents, offset, syncFlag, null, cancellationToken).ConfigureAwait(false); + (await operations.AppendWithHttpMessagesAsync(accountName, directFilePath, streamContents, offset, syncFlag, leaseId, fileSessionId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -637,12 +685,22 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// Optionally indicates what to do after completion of the append. DATA /// indicates more data is coming so no sync takes place, METADATA indicates a /// sync should be done to refresh metadata of the file only. CLOSE indicates - /// that both the stream and metadata should be refreshed upon append + /// that both the stream and metadata should be refreshed upon create /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// - public static void Create(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?)) + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// The octal representation of the unnamed user, mask and other permissions + /// that should be set for the file when created. If not specified, it inherits + /// these from the container. + /// + public static void Create(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?)) { - operations.CreateAsync(accountName, directFilePath, streamContents, overwrite, syncFlag).GetAwaiter().GetResult(); + operations.CreateAsync(accountName, directFilePath, streamContents, overwrite, syncFlag, leaseId, permission).GetAwaiter().GetResult(); } /// @@ -669,15 +727,25 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// Optionally indicates what to do after completion of the append. DATA /// indicates more data is coming so no sync takes place, METADATA indicates a /// sync should be done to refresh metadata of the file only. CLOSE indicates - /// that both the stream and metadata should be refreshed upon append + /// that both the stream and metadata should be refreshed upon create /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// The octal representation of the unnamed user, mask and other permissions + /// that should be set for the file when created. If not specified, it inherits + /// these from the container. + /// /// /// The cancellation token. /// - public static async Task CreateAsync(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAsync(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CreateWithHttpMessagesAsync(accountName, directFilePath, streamContents, overwrite, syncFlag, null, cancellationToken).ConfigureAwait(false); + (await operations.CreateWithHttpMessagesAsync(accountName, directFilePath, streamContents, overwrite, syncFlag, leaseId, permission, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -699,9 +767,14 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// /// The byte offset to start reading data from. /// - public static Stream Open(this IFileSystemOperations operations, string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?)) + /// + /// Optional unique GUID per file indicating all the reads with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit. + /// + public static Stream Open(this IFileSystemOperations operations, string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?)) { - return operations.OpenAsync(accountName, directFilePath, length, offset).GetAwaiter().GetResult(); + return operations.OpenAsync(accountName, directFilePath, length, offset, fileSessionId).GetAwaiter().GetResult(); } /// @@ -723,12 +796,17 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// /// The byte offset to start reading data from. /// + /// + /// Optional unique GUID per file indicating all the reads with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit. + /// /// /// The cancellation token. /// - public static async Task OpenAsync(this IFileSystemOperations operations, string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task OpenAsync(this IFileSystemOperations operations, string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), CancellationToken cancellationToken = default(CancellationToken)) { - var _result = await operations.OpenWithHttpMessagesAsync(accountName, directFilePath, length, offset, null, cancellationToken).ConfigureAwait(false); + var _result = await operations.OpenWithHttpMessagesAsync(accountName, directFilePath, length, offset, fileSessionId, null, cancellationToken).ConfigureAwait(false); _result.Request.Dispose(); return _result.Body; } @@ -777,7 +855,7 @@ public static void SetAcl(this IFileSystemOperations operations, string accountN /// public static async Task SetAclAsync(this IFileSystemOperations operations, string accountName, string setAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.SetAclWithHttpMessagesAsync(accountName, setAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false); + (await operations.SetAclWithHttpMessagesAsync(accountName, setAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -824,7 +902,7 @@ public static void ModifyAclEntries(this IFileSystemOperations operations, strin /// public static async Task ModifyAclEntriesAsync(this IFileSystemOperations operations, string accountName, string modifyAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ModifyAclEntriesWithHttpMessagesAsync(accountName, modifyAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false); + (await operations.ModifyAclEntriesWithHttpMessagesAsync(accountName, modifyAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -871,7 +949,7 @@ public static void RemoveAclEntries(this IFileSystemOperations operations, strin /// public static async Task RemoveAclEntriesAsync(this IFileSystemOperations operations, string accountName, string removeAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.RemoveAclEntriesWithHttpMessagesAsync(accountName, removeAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false); + (await operations.RemoveAclEntriesWithHttpMessagesAsync(accountName, removeAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -912,7 +990,7 @@ public static void RemoveDefaultAcl(this IFileSystemOperations operations, strin /// public static async Task RemoveDefaultAclAsync(this IFileSystemOperations operations, string accountName, string defaultAclFilePath, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.RemoveDefaultAclWithHttpMessagesAsync(accountName, defaultAclFilePath, null, cancellationToken).ConfigureAwait(false); + (await operations.RemoveDefaultAclWithHttpMessagesAsync(accountName, defaultAclFilePath, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -953,7 +1031,7 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// public static async Task RemoveAclAsync(this IFileSystemOperations operations, string accountName, string aclFilePath, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.RemoveAclWithHttpMessagesAsync(accountName, aclFilePath, null, cancellationToken).ConfigureAwait(false); + (await operations.RemoveAclWithHttpMessagesAsync(accountName, aclFilePath, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -969,9 +1047,14 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// - public static AclStatusResult GetAclStatus(this IFileSystemOperations operations, string accountName, string aclFilePath) + /// + /// An optional switch to return friendly names in place of object ID for ACL + /// entries. tooid=false returns friendly names instead of the AAD Object ID. + /// Default value is true, returning AAD object IDs. + /// + public static AclStatusResult GetAclStatus(this IFileSystemOperations operations, string accountName, string aclFilePath, bool? tooId = default(bool?)) { - return operations.GetAclStatusAsync(accountName, aclFilePath).GetAwaiter().GetResult(); + return operations.GetAclStatusAsync(accountName, aclFilePath, tooId).GetAwaiter().GetResult(); } /// @@ -987,12 +1070,17 @@ public static AclStatusResult GetAclStatus(this IFileSystemOperations operations /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// + /// + /// An optional switch to return friendly names in place of object ID for ACL + /// entries. tooid=false returns friendly names instead of the AAD Object ID. + /// Default value is true, returning AAD object IDs. + /// /// /// The cancellation token. /// - public static async Task GetAclStatusAsync(this IFileSystemOperations operations, string accountName, string aclFilePath, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAclStatusAsync(this IFileSystemOperations operations, string accountName, string aclFilePath, bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAclStatusWithHttpMessagesAsync(accountName, aclFilePath, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAclStatusWithHttpMessagesAsync(accountName, aclFilePath, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1146,7 +1234,7 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// public static async Task SetOwnerAsync(this IFileSystemOperations operations, string accountName, string setOwnerFilePath, string owner = default(string), string group = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.SetOwnerWithHttpMessagesAsync(accountName, setOwnerFilePath, owner, group, null, cancellationToken).ConfigureAwait(false); + (await operations.SetOwnerWithHttpMessagesAsync(accountName, setOwnerFilePath, owner, group, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1193,9 +1281,8 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// public static async Task SetPermissionAsync(this IFileSystemOperations operations, string accountName, string setPermissionFilePath, string permission = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.SetPermissionWithHttpMessagesAsync(accountName, setPermissionFilePath, permission, null, cancellationToken).ConfigureAwait(false); + (await operations.SetPermissionWithHttpMessagesAsync(accountName, setPermissionFilePath, permission, null, cancellationToken).ConfigureAwait(false)).Dispose(); } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperations.cs index 87c380600a12..4b3f5261f84f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -154,9 +151,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -171,6 +168,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -188,7 +187,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -224,7 +223,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -261,7 +260,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -369,9 +368,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -386,6 +385,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -403,7 +404,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -439,7 +440,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -476,7 +477,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -578,9 +579,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -595,6 +596,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -632,11 +635,19 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -757,9 +768,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -774,6 +785,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -821,7 +834,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -858,7 +871,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -954,9 +967,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -971,6 +984,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1018,7 +1033,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1055,7 +1070,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1126,9 +1141,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1143,6 +1158,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1190,7 +1207,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1227,7 +1244,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1246,5 +1263,3 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs index 1c6a89668694..9e2df8799b99 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Threading; using System.Threading.Tasks; @@ -185,7 +182,7 @@ public static void Delete(this IFirewallRulesOperations operations, string resou /// public static async Task DeleteAsync(this IFirewallRulesOperations operations, string resourceGroupName, string accountName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, firewallRuleName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -322,5 +319,3 @@ public static IPage ListByAccountNext(this IFirewallRulesOperation } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IAccountOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IAccountOperations.cs index 09d04931ed84..84a113a129b2 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IAccountOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IAccountOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -47,13 +44,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, DataLakeStoreAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -76,13 +73,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, DataLakeStoreAccountUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -102,10 +99,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -125,13 +122,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -153,10 +150,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task EnableKeyVaultWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -188,13 +185,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -221,13 +218,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -250,13 +247,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, DataLakeStoreAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -279,13 +276,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string name, DataLakeStoreAccountUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -305,10 +302,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -326,13 +323,13 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -349,17 +346,15 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs index bd589cc7847c..d96696944a30 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; /// /// Creates an Azure Data Lake Store account management client. @@ -32,12 +29,12 @@ public partial interface IDataLakeStoreAccountManagementClient : System.IDisposa /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -91,5 +88,3 @@ public partial interface IDataLakeStoreAccountManagementClient : System.IDisposa } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs index 3b8c0f602ecd..8f72e357abff 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; @@ -28,12 +28,12 @@ public partial interface IDataLakeStoreFileSystemManagementClient : System.IDisp /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -75,4 +75,3 @@ public partial interface IDataLakeStoreFileSystemManagementClient : System.IDisp } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFileSystemOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFileSystemOperations.cs index e1ac99e86c48..151b180ac41f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFileSystemOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFileSystemOperations.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -142,7 +142,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task CheckAccessWithHttpMessagesAsync(string accountName, string path, string fsaction = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckAccessWithHttpMessagesAsync(string accountName, string path, string fsaction, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a directory. /// @@ -154,6 +154,10 @@ public partial interface IFileSystemOperations /// The Data Lake Store path (starting with '/') of the directory to /// create. /// + /// + /// Optional octal permission with which the directory should be + /// created. + /// /// /// The headers that will be added to request. /// @@ -169,7 +173,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> MkdirsWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> MkdirsWithHttpMessagesAsync(string accountName, string path, int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Concatenates the list of source files into the destination file, /// removing all source files upon success. @@ -183,7 +187,7 @@ public partial interface IFileSystemOperations /// file resulting from the concatenation. /// /// - /// A list of comma seperated Data Lake Store paths (starting with '/') + /// A list of comma separated Data Lake Store paths (starting with '/') /// of the files to concatenate, in the order in which they should be /// concatenated. /// @@ -270,6 +274,11 @@ public partial interface IFileSystemOperations /// listBefore='d' will return 'a','b', and a listBefore='c' will also /// return 'a','b'. Optional. /// + /// + /// An optional switch to return friendly names in place of owner and + /// group. tooid=false returns friendly names instead of the AAD Object + /// ID. Default value is true, returning AAD object IDs. + /// /// /// The headers that will be added to request. /// @@ -285,7 +294,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> ListFileStatusWithHttpMessagesAsync(string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListFileStatusWithHttpMessagesAsync(string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the file content summary object specified by the file path. /// @@ -324,6 +333,11 @@ public partial interface IFileSystemOperations /// The Data Lake Store path (starting with '/') of the file or /// directory for which to retrieve the status. /// + /// + /// An optional switch to return friendly names in place of owner and + /// group. tooid=false returns friendly names instead of the AAD Object + /// ID. Default value is true, returning AAD object IDs. + /// /// /// The headers that will be added to request. /// @@ -339,13 +353,13 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Appends to the specified file. NOTE: The target must not contain - /// data added by ConcurrentAppend. ConcurrentAppend and Append cannot - /// be used interchangeably; once a target file has been modified using - /// either of these append options, the other append option cannot be - /// used on the target file. + /// Used for serial appends to the specified file. NOTE: The target + /// must not contain data added by ConcurrentAppend. ConcurrentAppend + /// and Append cannot be used interchangeably; once a target file has + /// been modified using either of these append options, the other + /// append option cannot be used on the target file. /// /// /// The Azure Data Lake Store account to execute filesystem operations @@ -370,6 +384,16 @@ public partial interface IFileSystemOperations /// refreshed upon append completion. Possible values include: 'DATA', /// 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, + /// meaning that only clients that append to the file with the same + /// leaseId will be allowed to do so. + /// + /// + /// Optional unique GUID per file indicating all the appends with the + /// same fileSessionId are from the same client and same session. This + /// will give a performance benefit when syncFlag is DATA or METADATA. + /// /// /// The headers that will be added to request. /// @@ -382,7 +406,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task AppendWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task AppendWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a file with optionally specified content. NOTE: If content /// is provided, the resulting file cannot be modified using @@ -407,9 +431,19 @@ public partial interface IFileSystemOperations /// DATA indicates more data is coming so no sync takes place, METADATA /// indicates a sync should be done to refresh metadata of the file /// only. CLOSE indicates that both the stream and metadata should be - /// refreshed upon append completion. Possible values include: 'DATA', + /// refreshed upon create completion. Possible values include: 'DATA', /// 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, + /// meaning that only clients that append to the file with the same + /// leaseId will be allowed to do so. + /// + /// + /// The octal representation of the unnamed user, mask and other + /// permissions that should be set for the file when created. If not + /// specified, it inherits these from the container. + /// /// /// The headers that will be added to request. /// @@ -422,7 +456,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task CreateWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CreateWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Opens and reads from the specified file. /// @@ -440,6 +474,11 @@ public partial interface IFileSystemOperations /// /// The byte offset to start reading data from. /// + /// + /// Optional unique GUID per file indicating all the reads with the + /// same fileSessionId are from the same client and same session. This + /// will give a performance benefit. + /// /// /// The headers that will be added to request. /// @@ -455,7 +494,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> OpenWithHttpMessagesAsync(string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> OpenWithHttpMessagesAsync(string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Sets the Access Control List (ACL) for a file or folder. /// @@ -604,6 +643,11 @@ public partial interface IFileSystemOperations /// The Data Lake Store path (starting with '/') of the file or /// directory for which to get the ACL. /// + /// + /// An optional switch to return friendly names in place of object ID + /// for ACL entries. tooid=false returns friendly names instead of the + /// AAD Object ID. Default value is true, returning AAD object IDs. + /// /// /// The headers that will be added to request. /// @@ -619,7 +663,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the requested file or directory, optionally recursively. /// @@ -742,4 +786,3 @@ public partial interface IFileSystemOperations Task SetPermissionWithHttpMessagesAsync(string accountName, string setPermissionFilePath, string permission = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFirewallRulesOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFirewallRulesOperations.cs index 0c9929d5cdbc..b769ea835717 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFirewallRulesOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFirewallRulesOperations.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -52,13 +49,13 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, FirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -85,13 +82,13 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, UpdateFirewallRuleParameters parameters = default(UpdateFirewallRuleParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -116,10 +113,10 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -143,13 +140,13 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -171,13 +168,13 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -194,17 +191,15 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs index e83dd273db92..554eb7134a26 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -54,13 +51,13 @@ public partial interface ITrustedIdProvidersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string trustedIdProviderName, TrustedIdProvider parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -88,13 +85,13 @@ public partial interface ITrustedIdProvidersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string trustedIdProviderName, UpdateTrustedIdProviderParameters parameters = default(UpdateTrustedIdProviderParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -119,10 +116,10 @@ public partial interface ITrustedIdProvidersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string trustedIdProviderName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -146,13 +143,13 @@ public partial interface ITrustedIdProvidersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, string trustedIdProviderName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -174,13 +171,13 @@ public partial interface ITrustedIdProvidersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -197,17 +194,15 @@ public partial interface ITrustedIdProvidersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// /// Thrown when a required parameter is null /// Task>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatus.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatus.cs index 6e10b4b05e13..0779c3e15866 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatus.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatus.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class AclStatus /// /// Initializes a new instance of the AclStatus class. /// - public AclStatus() { } + public AclStatus() + { + CustomInit(); + } /// /// Initializes a new instance of the AclStatus class. @@ -45,8 +48,14 @@ public AclStatus() { } Owner = owner; Permission = permission; StickyBit = stickyBit; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the list of ACLSpec entries on a file or directory. /// @@ -76,8 +85,7 @@ public AclStatus() { } /// Gets the indicator of whether the sticky bit is on or off. /// [JsonProperty(PropertyName = "stickyBit")] - public bool? StickyBit { get; protected set; } + public bool? StickyBit { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatusResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatusResult.cs index 70ce9e958f7f..e226d0674a0b 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatusResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatusResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class AclStatusResult /// /// Initializes a new instance of the AclStatusResult class. /// - public AclStatusResult() { } + public AclStatusResult() + { + CustomInit(); + } /// /// Initializes a new instance of the AclStatusResult class. @@ -33,8 +36,14 @@ public AclStatusResult() { } public AclStatusResult(AclStatus aclStatus = default(AclStatus)) { AclStatus = aclStatus; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the AclStatus object for a given file or directory. /// @@ -43,4 +52,3 @@ public AclStatusResult() { } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs index 458b9af1790f..f0a99bc0782a 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsAccessControlException : AdlsRemoteException /// /// Initializes a new instance of the AdlsAccessControlException class. /// - public AdlsAccessControlException() { } + public AdlsAccessControlException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsAccessControlException class. @@ -40,8 +43,13 @@ public AdlsAccessControlException() { } public AdlsAccessControlException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs index 85d07fb1adf3..337665854c7e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsBadOffsetException : AdlsRemoteException /// /// Initializes a new instance of the AdlsBadOffsetException class. /// - public AdlsBadOffsetException() { } + public AdlsBadOffsetException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsBadOffsetException class. @@ -40,8 +43,13 @@ public AdlsBadOffsetException() { } public AdlsBadOffsetException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsError.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsError.cs index 4d47bdfc84d9..5fa550c58061 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsError.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsError.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -24,7 +24,10 @@ public partial class AdlsError /// /// Initializes a new instance of the AdlsError class. /// - public AdlsError() { } + public AdlsError() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsError class. @@ -34,15 +37,20 @@ public AdlsError() { } public AdlsError(AdlsRemoteException remoteException = default(AdlsRemoteException)) { RemoteException = remoteException; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the object representing the actual WebHDFS exception being /// returned. /// [JsonProperty(PropertyName = "RemoteException")] - public AdlsRemoteException RemoteException { get; protected set; } + public AdlsRemoteException RemoteException { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsErrorException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsErrorException.cs index 68daaece0ef7..e26ca6ea3cf9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsErrorException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsErrorException.cs @@ -2,25 +2,22 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; - using Rest; - using System.Runtime; - using System.Runtime.Serialization; - using System.Security; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; /// /// Exception thrown for an invalid response with AdlsError information. /// -#if !PORTABLE +#if LEGACY [System.Serializable] #endif public class AdlsErrorException : RestException @@ -66,13 +63,13 @@ public AdlsErrorException(string message, System.Exception innerException) { } -#if !PORTABLE +#if LEGACY /// /// Initializes a new instance of the AdlsErrorException class. /// /// Serialization info. /// Streaming context. - protected AdlsErrorException(SerializationInfo info, StreamingContext context) + protected AdlsErrorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } @@ -86,7 +83,7 @@ protected AdlsErrorException(SerializationInfo info, StreamingContext context) /// Thrown when a required parameter is null /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter = true)] - public override void GetObjectData(SerializationInfo info, StreamingContext context) + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); if (info == null) @@ -101,4 +98,3 @@ public override void GetObjectData(SerializationInfo info, StreamingContext cont #endif } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs index 96eafc30f215..d4aaae8937e3 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsFileAlreadyExistsException : AdlsRemoteException /// Initializes a new instance of the AdlsFileAlreadyExistsException /// class. /// - public AdlsFileAlreadyExistsException() { } + public AdlsFileAlreadyExistsException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsFileAlreadyExistsException @@ -41,8 +44,13 @@ public AdlsFileAlreadyExistsException() { } public AdlsFileAlreadyExistsException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs index 056c52393161..d3e2044b5010 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -25,7 +25,10 @@ public partial class AdlsFileNotFoundException : AdlsRemoteException /// /// Initializes a new instance of the AdlsFileNotFoundException class. /// - public AdlsFileNotFoundException() { } + public AdlsFileNotFoundException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsFileNotFoundException class. @@ -39,8 +42,13 @@ public AdlsFileNotFoundException() { } public AdlsFileNotFoundException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIOException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIOException.cs index 7d995d6096f1..4c9e23764fbb 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIOException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIOException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -25,7 +25,10 @@ public partial class AdlsIOException : AdlsRemoteException /// /// Initializes a new instance of the AdlsIOException class. /// - public AdlsIOException() { } + public AdlsIOException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsIOException class. @@ -39,8 +42,13 @@ public AdlsIOException() { } public AdlsIOException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs index 2c6eb3efe4e0..70d2d56cc2a1 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -27,7 +27,10 @@ public partial class AdlsIllegalArgumentException : AdlsRemoteException /// Initializes a new instance of the AdlsIllegalArgumentException /// class. /// - public AdlsIllegalArgumentException() { } + public AdlsIllegalArgumentException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsIllegalArgumentException @@ -42,8 +45,13 @@ public AdlsIllegalArgumentException() { } public AdlsIllegalArgumentException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs index c0967666886b..7e94e24a05e0 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -24,7 +24,10 @@ public partial class AdlsRemoteException /// /// Initializes a new instance of the AdlsRemoteException class. /// - public AdlsRemoteException() { } + public AdlsRemoteException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsRemoteException class. @@ -39,22 +42,27 @@ public AdlsRemoteException() { } { JavaClassName = javaClassName; Message = message; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the full class package name for the exception thrown, such as /// 'java.lang.IllegalArgumentException'. /// [JsonProperty(PropertyName = "javaClassName")] - public string JavaClassName { get; protected set; } + public string JavaClassName { get; private set; } /// /// Gets the message associated with the exception that was thrown, /// such as 'Invalid value for webhdfs parameter "permission":...'. /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs index c40e33615e1d..fa54cfe166c9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsRuntimeException : AdlsRemoteException /// /// Initializes a new instance of the AdlsRuntimeException class. /// - public AdlsRuntimeException() { } + public AdlsRuntimeException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsRuntimeException class. @@ -40,8 +43,13 @@ public AdlsRuntimeException() { } public AdlsRuntimeException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs index 06a8f2447d2d..e10f5d78a4b9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -25,7 +25,10 @@ public partial class AdlsSecurityException : AdlsRemoteException /// /// Initializes a new instance of the AdlsSecurityException class. /// - public AdlsSecurityException() { } + public AdlsSecurityException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsSecurityException class. @@ -39,8 +42,13 @@ public AdlsSecurityException() { } public AdlsSecurityException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs index ee20029fcff1..94fe75569886 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsThrottledException : AdlsRemoteException /// /// Initializes a new instance of the AdlsThrottledException class. /// - public AdlsThrottledException() { } + public AdlsThrottledException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsThrottledException class. @@ -40,8 +43,13 @@ public AdlsThrottledException() { } public AdlsThrottledException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs index 953dba2daabd..a766ec07bc6d 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -27,7 +27,10 @@ public partial class AdlsUnsupportedOperationException : AdlsRemoteException /// Initializes a new instance of the AdlsUnsupportedOperationException /// class. /// - public AdlsUnsupportedOperationException() { } + public AdlsUnsupportedOperationException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsUnsupportedOperationException @@ -42,8 +45,13 @@ public AdlsUnsupportedOperationException() { } public AdlsUnsupportedOperationException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AppendModeType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AppendModeType.cs index 98d8cdcb8617..10a73a5c0a7f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AppendModeType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AppendModeType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,11 +20,10 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Defines values for AppendModeType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum AppendModeType { [EnumMember(Value = "autocreate")] Autocreate } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummary.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummary.cs index 4ec6550e4c4d..3c0d5844c991 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummary.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummary.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class ContentSummary /// /// Initializes a new instance of the ContentSummary class. /// - public ContentSummary() { } + public ContentSummary() + { + CustomInit(); + } /// /// Initializes a new instance of the ContentSummary class. @@ -40,32 +43,37 @@ public ContentSummary() { } FileCount = fileCount; Length = length; SpaceConsumed = spaceConsumed; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the number of directories. /// [JsonProperty(PropertyName = "directoryCount")] - public long? DirectoryCount { get; protected set; } + public long? DirectoryCount { get; private set; } /// /// Gets the number of files. /// [JsonProperty(PropertyName = "fileCount")] - public long? FileCount { get; protected set; } + public long? FileCount { get; private set; } /// /// Gets the number of bytes used by the content. /// [JsonProperty(PropertyName = "length")] - public long? Length { get; protected set; } + public long? Length { get; private set; } /// /// Gets the disk space consumed by the content. /// [JsonProperty(PropertyName = "spaceConsumed")] - public long? SpaceConsumed { get; protected set; } + public long? SpaceConsumed { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs index 42604afa2371..82cbaf375a28 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class ContentSummaryResult /// /// Initializes a new instance of the ContentSummaryResult class. /// - public ContentSummaryResult() { } + public ContentSummaryResult() + { + CustomInit(); + } /// /// Initializes a new instance of the ContentSummaryResult class. @@ -33,14 +36,19 @@ public ContentSummaryResult() { } public ContentSummaryResult(ContentSummary contentSummary = default(ContentSummary)) { ContentSummary = contentSummary; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the content summary for the specified path /// [JsonProperty(PropertyName = "ContentSummary")] - public ContentSummary ContentSummary { get; protected set; } + public ContentSummary ContentSummary { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs index 7d54f9eeb77a..130c0873ccc2 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -26,7 +22,7 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Data Lake Store account information /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeStoreAccount : Resource { /// @@ -34,6 +30,7 @@ public partial class DataLakeStoreAccount : Resource /// public DataLakeStoreAccount() { + CustomInit(); } /// @@ -109,8 +106,14 @@ public DataLakeStoreAccount() NewTier = newTier; CurrentTier = currentTier; FirewallAllowAzureIps = firewallAllowAzureIps; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the Key vault encryption identity, if any. /// @@ -124,20 +127,20 @@ public DataLakeStoreAccount() /// 'Deleting', 'Deleted' /// [JsonProperty(PropertyName = "properties.provisioningState")] - public DataLakeStoreAccountStatus? ProvisioningState { get; protected set; } + public DataLakeStoreAccountStatus? ProvisioningState { get; private set; } /// /// Gets the status of the Data Lake Store account after provisioning /// has completed. Possible values include: 'Active', 'Suspended' /// [JsonProperty(PropertyName = "properties.state")] - public DataLakeStoreAccountState? State { get; protected set; } + public DataLakeStoreAccountState? State { get; private set; } /// /// Gets the account creation time. /// [JsonProperty(PropertyName = "properties.creationTime")] - public System.DateTime? CreationTime { get; protected set; } + public System.DateTime? CreationTime { get; private set; } /// /// Gets or sets the current state of encryption for this Data Lake @@ -152,7 +155,7 @@ public DataLakeStoreAccount() /// 'Succeeded' /// [JsonProperty(PropertyName = "properties.encryptionProvisioningState")] - public EncryptionProvisioningState? EncryptionProvisioningState { get; protected set; } + public EncryptionProvisioningState? EncryptionProvisioningState { get; private set; } /// /// Gets or sets the Key vault encryption configuration. @@ -194,13 +197,13 @@ public DataLakeStoreAccount() /// Gets the account last modified time. /// [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public System.DateTime? LastModifiedTime { get; protected set; } + public System.DateTime? LastModifiedTime { get; private set; } /// /// Gets the gateway host. /// [JsonProperty(PropertyName = "properties.endpoint")] - public string Endpoint { get; protected set; } + public string Endpoint { get; private set; } /// /// Gets or sets the default owner group for all new folders and files @@ -225,7 +228,7 @@ public DataLakeStoreAccount() /// 'Commitment_5PB' /// [JsonProperty(PropertyName = "properties.currentTier")] - public TierType? CurrentTier { get; protected set; } + public TierType? CurrentTier { get; private set; } /// /// Gets or sets the current state of allowing or disallowing IPs @@ -272,5 +275,3 @@ public override void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs index cc9df6e1b1a6..60cba1935e41 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for DataLakeStoreAccountState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DataLakeStoreAccountState { [EnumMember(Value = "Active")] @@ -33,5 +29,3 @@ public enum DataLakeStoreAccountState Suspended } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs index 9fec8614a040..681797e54388 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for DataLakeStoreAccountStatus. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DataLakeStoreAccountStatus { [EnumMember(Value = "Failed")] @@ -47,5 +43,3 @@ public enum DataLakeStoreAccountStatus Deleted } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs index 9fbaf04e384b..4adbb57a30a9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -26,14 +22,17 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Data Lake Store account information to update /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeStoreAccountUpdateParameters { /// /// Initializes a new instance of the /// DataLakeStoreAccountUpdateParameters class. /// - public DataLakeStoreAccountUpdateParameters() { } + public DataLakeStoreAccountUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -68,8 +67,14 @@ public DataLakeStoreAccountUpdateParameters() { } DefaultGroup = defaultGroup; NewTier = newTier; FirewallAllowAzureIps = firewallAllowAzureIps; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets resource tags /// @@ -122,5 +127,3 @@ public DataLakeStoreAccountUpdateParameters() { } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfig.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfig.cs index 772f63ffa585..8a028d2dbcc4 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfig.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfig.cs @@ -2,21 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; - using Store; using System.Linq; /// @@ -27,7 +23,10 @@ public partial class EncryptionConfig /// /// Initializes a new instance of the EncryptionConfig class. /// - public EncryptionConfig() { } + public EncryptionConfig() + { + CustomInit(); + } /// /// Initializes a new instance of the EncryptionConfig class. @@ -42,8 +41,14 @@ public EncryptionConfig() { } { Type = type; KeyVaultMetaInfo = keyVaultMetaInfo; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the type of encryption configuration being used. /// Currently the only supported types are 'UserManaged' and @@ -75,5 +80,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs index 903e1003c32a..9fad3c547332 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for EncryptionConfigType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum EncryptionConfigType { [EnumMember(Value = "UserManaged")] @@ -33,5 +29,3 @@ public enum EncryptionConfigType ServiceManaged } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs index 5e541285cadd..e9c71417a1f5 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs @@ -2,21 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; - using Store; using System.Linq; /// @@ -27,7 +23,10 @@ public partial class EncryptionIdentity /// /// Initializes a new instance of the EncryptionIdentity class. /// - public EncryptionIdentity() { } + public EncryptionIdentity() + { + CustomInit(); + } /// /// Initializes a new instance of the EncryptionIdentity class. @@ -40,6 +39,7 @@ public EncryptionIdentity() { } { PrincipalId = principalId; TenantId = tenantId; + CustomInit(); } /// /// Static constructor for EncryptionIdentity class. @@ -49,17 +49,22 @@ static EncryptionIdentity() Type = "SystemAssigned"; } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the principal identifier associated with the encryption. /// [JsonProperty(PropertyName = "principalId")] - public System.Guid? PrincipalId { get; protected set; } + public System.Guid? PrincipalId { get; private set; } /// /// Gets the tenant identifier associated with the encryption. /// [JsonProperty(PropertyName = "tenantId")] - public System.Guid? TenantId { get; protected set; } + public System.Guid? TenantId { get; private set; } /// /// The type of encryption being used. Currently the only supported @@ -70,5 +75,3 @@ static EncryptionIdentity() } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs index 1269982b9126..b8dccd3ee914 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for EncryptionProvisioningState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum EncryptionProvisioningState { [EnumMember(Value = "Creating")] @@ -33,5 +29,3 @@ public enum EncryptionProvisioningState Succeeded } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionState.cs index 3a1bdb867c72..e664ef153a95 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for EncryptionState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum EncryptionState { [EnumMember(Value = "Enabled")] @@ -33,5 +29,3 @@ public enum EncryptionState Disabled } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ErrorDetails.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ErrorDetails.cs index e6afd6a069a8..2127b2dccc1e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ErrorDetails.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ErrorDetails.cs @@ -2,21 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; - using Store; using System.Linq; /// @@ -27,7 +23,10 @@ public partial class ErrorDetails /// /// Initializes a new instance of the ErrorDetails class. /// - public ErrorDetails() { } + public ErrorDetails() + { + CustomInit(); + } /// /// Initializes a new instance of the ErrorDetails class. @@ -43,28 +42,32 @@ public ErrorDetails() { } Code = code; Message = message; Target = target; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the HTTP status code or error code associated with this error /// [JsonProperty(PropertyName = "code")] - public string Code { get; protected set; } + public string Code { get; private set; } /// /// Gets the error message localized based on Accept-Language /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } /// /// Gets the target of the particular error (for example, the name of /// the property in error). /// [JsonProperty(PropertyName = "target")] - public string Target { get; protected set; } + public string Target { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs index 64eb079d8d24..4d46f8ff69bf 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Defines values for ExpiryOptionType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ExpiryOptionType { [EnumMember(Value = "NeverExpire")] @@ -33,4 +33,3 @@ public enum ExpiryOptionType Absolute } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileOperationResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileOperationResult.cs index 7c4676bedf6a..8c53cfed36b1 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileOperationResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileOperationResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class FileOperationResult /// /// Initializes a new instance of the FileOperationResult class. /// - public FileOperationResult() { } + public FileOperationResult() + { + CustomInit(); + } /// /// Initializes a new instance of the FileOperationResult class. @@ -33,14 +36,19 @@ public FileOperationResult() { } public FileOperationResult(bool? operationResult = default(bool?)) { OperationResult = operationResult; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the result of the operation or request. /// [JsonProperty(PropertyName = "boolean")] - public bool? OperationResult { get; protected set; } + public bool? OperationResult { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusProperties.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusProperties.cs index e4e2c4debdd0..d30db70dde65 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusProperties.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusProperties.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class FileStatusProperties /// /// Initializes a new instance of the FileStatusProperties class. /// - public FileStatusProperties() { } + public FileStatusProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the FileStatusProperties class. @@ -46,7 +49,9 @@ public FileStatusProperties() { } /// string. /// the type of the path object. Possible values /// include: 'FILE', 'DIRECTORY' - public FileStatusProperties(long? accessTime = default(long?), long? blockSize = default(long?), long? childrenNum = default(long?), long? expirationTime = default(long?), string group = default(string), long? length = default(long?), long? modificationTime = default(long?), string owner = default(string), string pathSuffix = default(string), string permission = default(string), FileType? type = default(FileType?)) + /// flag to indicate if extended acls are enabled + /// + public FileStatusProperties(long? accessTime = default(long?), long? blockSize = default(long?), long? childrenNum = default(long?), long? expirationTime = default(long?), string group = default(string), long? length = default(long?), long? modificationTime = default(long?), string owner = default(string), string pathSuffix = default(string), string permission = default(string), FileType? type = default(FileType?), bool? aclBit = default(bool?)) { AccessTime = accessTime; BlockSize = blockSize; @@ -59,76 +64,88 @@ public FileStatusProperties() { } PathSuffix = pathSuffix; Permission = permission; Type = type; + AclBit = aclBit; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the last access time as ticks since the epoch. /// [JsonProperty(PropertyName = "accessTime")] - public long? AccessTime { get; protected set; } + public long? AccessTime { get; private set; } /// /// Gets the block size for the file. /// [JsonProperty(PropertyName = "blockSize")] - public long? BlockSize { get; protected set; } + public long? BlockSize { get; private set; } /// /// Gets the number of children in the directory. /// [JsonProperty(PropertyName = "childrenNum")] - public long? ChildrenNum { get; protected set; } + public long? ChildrenNum { get; private set; } /// /// Gets the expiration time, if any, as ticks since the epoch. If the /// value is 0 or DateTime.MaxValue there is no expiration. /// - [JsonProperty(PropertyName = "expirationTime")] - public long? ExpirationTime { get; protected set; } + [JsonProperty(PropertyName = "msExpirationTime")] + public long? ExpirationTime { get; private set; } /// /// Gets the group owner. /// [JsonProperty(PropertyName = "group")] - public string Group { get; protected set; } + public string Group { get; private set; } /// /// Gets the number of bytes in a file. /// [JsonProperty(PropertyName = "length")] - public long? Length { get; protected set; } + public long? Length { get; private set; } /// /// Gets the modification time as ticks since the epoch. /// [JsonProperty(PropertyName = "modificationTime")] - public long? ModificationTime { get; protected set; } + public long? ModificationTime { get; private set; } /// /// Gets the user who is the owner. /// [JsonProperty(PropertyName = "owner")] - public string Owner { get; protected set; } + public string Owner { get; private set; } /// /// Gets the path suffix. /// [JsonProperty(PropertyName = "pathSuffix")] - public string PathSuffix { get; protected set; } + public string PathSuffix { get; private set; } /// /// Gets the permission represented as an string. /// [JsonProperty(PropertyName = "permission")] - public string Permission { get; protected set; } + public string Permission { get; private set; } /// /// Gets the type of the path object. Possible values include: 'FILE', /// 'DIRECTORY' /// [JsonProperty(PropertyName = "type")] - public FileType? Type { get; protected set; } + public FileType? Type { get; private set; } + + /// + /// Gets flag to indicate if extended acls are enabled + /// + [JsonProperty(PropertyName = "aclBit")] + public bool? AclBit { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusResult.cs index 12ed6982a93c..a81e6b514658 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class FileStatusResult /// /// Initializes a new instance of the FileStatusResult class. /// - public FileStatusResult() { } + public FileStatusResult() + { + CustomInit(); + } /// /// Initializes a new instance of the FileStatusResult class. @@ -33,14 +36,19 @@ public FileStatusResult() { } public FileStatusResult(FileStatusProperties fileStatus = default(FileStatusProperties)) { FileStatus = fileStatus; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the file status object associated with the specified path. /// [JsonProperty(PropertyName = "FileStatus")] - public FileStatusProperties FileStatus { get; protected set; } + public FileStatusProperties FileStatus { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatuses.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatuses.cs index cbeda6e57e42..595a0d955c46 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatuses.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatuses.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class FileStatuses /// /// Initializes a new instance of the FileStatuses class. /// - public FileStatuses() { } + public FileStatuses() + { + CustomInit(); + } /// /// Initializes a new instance of the FileStatuses class. @@ -35,14 +38,19 @@ public FileStatuses() { } public FileStatuses(IList fileStatus = default(IList)) { FileStatus = fileStatus; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the object containing the list of properties of the files. /// [JsonProperty(PropertyName = "FileStatus")] - public IList FileStatus { get; protected set; } + public IList FileStatus { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusesResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusesResult.cs index f884fafc7af7..1226ddd355d5 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusesResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusesResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class FileStatusesResult /// /// Initializes a new instance of the FileStatusesResult class. /// - public FileStatusesResult() { } + public FileStatusesResult() + { + CustomInit(); + } /// /// Initializes a new instance of the FileStatusesResult class. @@ -33,14 +36,19 @@ public FileStatusesResult() { } public FileStatusesResult(FileStatuses fileStatuses = default(FileStatuses)) { FileStatuses = fileStatuses; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the object representing the list of file statuses. /// [JsonProperty(PropertyName = "FileStatuses")] - public FileStatuses FileStatuses { get; protected set; } + public FileStatuses FileStatuses { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileType.cs index 9ab06e0cdfbd..79d98c66b2b7 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Defines values for FileType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FileType { [EnumMember(Value = "FILE")] @@ -29,4 +29,3 @@ public enum FileType DIRECTORY } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs index 0fbe18473e8e..2ba241e66d62 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for FirewallAllowAzureIpsState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FirewallAllowAzureIpsState { [EnumMember(Value = "Enabled")] @@ -33,5 +29,3 @@ public enum FirewallAllowAzureIpsState Disabled } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallRule.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallRule.cs index 34b33eceab31..2f7ee35faf1b 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallRule.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallRule.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Linq; /// /// Data Lake Store firewall rule information /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class FirewallRule : SubResource { /// /// Initializes a new instance of the FirewallRule class. /// - public FirewallRule() { } + public FirewallRule() + { + CustomInit(); + } /// /// Initializes a new instance of the FirewallRule class. @@ -49,8 +48,14 @@ public FirewallRule() { } { StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the start IP address for the firewall rule. This can /// be either ipv4 or ipv6. Start and End should be in the same @@ -85,5 +90,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallState.cs index f41647777e4c..3e10a9ca3135 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for FirewallState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FirewallState { [EnumMember(Value = "Enabled")] @@ -33,5 +29,3 @@ public enum FirewallState Disabled } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs index f5d40364b925..6fdd32a048fa 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs @@ -2,22 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; using Newtonsoft.Json; - using Rest; - using Store; using System.Linq; /// @@ -28,7 +24,10 @@ public partial class KeyVaultMetaInfo /// /// Initializes a new instance of the KeyVaultMetaInfo class. /// - public KeyVaultMetaInfo() { } + public KeyVaultMetaInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the KeyVaultMetaInfo class. @@ -44,8 +43,14 @@ public KeyVaultMetaInfo(string keyVaultResourceId, string encryptionKeyName, str KeyVaultResourceId = keyVaultResourceId; EncryptionKeyName = encryptionKeyName; EncryptionKeyVersion = encryptionKeyVersion; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the resource identifier for the user managed Key Vault /// being used to encrypt. @@ -88,5 +93,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Page.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Page.cs index c237b43b6102..bbd3e2469a2a 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Page.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Page.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Store; using System.Collections; using System.Collections.Generic; @@ -57,5 +53,3 @@ IEnumerator IEnumerable.GetEnumerator() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Resource.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Resource.cs index d974dc661663..181dafcf7771 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Resource.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Resource.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Store; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -31,7 +27,10 @@ public partial class Resource : IResource /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. @@ -48,25 +47,31 @@ public Resource() { } Type = type; Location = location; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets resource name /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets or sets resource location @@ -95,5 +100,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SubResource.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SubResource.cs index e665536ab27a..6a4163ffe7c2 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SubResource.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SubResource.cs @@ -2,21 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; - using Store; using System.Linq; /// @@ -27,7 +23,10 @@ public partial class SubResource /// /// Initializes a new instance of the SubResource class. /// - public SubResource() { } + public SubResource() + { + CustomInit(); + } /// /// Initializes a new instance of the SubResource class. @@ -40,13 +39,19 @@ public SubResource() { } Id = id; Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets or sets resource name @@ -58,9 +63,7 @@ public SubResource() { } /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SyncFlag.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SyncFlag.cs index a0b806c66191..c8f9b802b373 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SyncFlag.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SyncFlag.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Defines values for SyncFlag. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum SyncFlag { [EnumMember(Value = "DATA")] @@ -31,4 +31,3 @@ public enum SyncFlag CLOSE } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TierType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TierType.cs index d9f8d4b1b73f..77da6ab7a5d6 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TierType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TierType.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for TierType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum TierType { [EnumMember(Value = "Consumption")] @@ -43,5 +39,3 @@ public enum TierType Commitment5PB } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs index af4d2ff72ccd..11cf94839dc9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Linq; /// /// Data Lake Store Trusted Identity Provider information /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class TrustedIdProvider : SubResource { /// /// Initializes a new instance of the TrustedIdProvider class. /// - public TrustedIdProvider() { } + public TrustedIdProvider() + { + CustomInit(); + } /// /// Initializes a new instance of the TrustedIdProvider class. @@ -44,8 +43,14 @@ public TrustedIdProvider() { } : base(id, name, type) { IdProvider = idProvider; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the URL of this trusted identity provider /// @@ -67,5 +72,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs index 8033f31891b9..0bc4dfd1b0cb 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for TrustedIdProviderState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum TrustedIdProviderState { [EnumMember(Value = "Enabled")] @@ -33,5 +29,3 @@ public enum TrustedIdProviderState Disabled } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs index d19be0aae0f8..87e4b670213f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs @@ -2,36 +2,35 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Linq; /// /// Data Lake Analytics firewall rule update parameters /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class UpdateFirewallRuleParameters { /// /// Initializes a new instance of the UpdateFirewallRuleParameters /// class. /// - public UpdateFirewallRuleParameters() { } + public UpdateFirewallRuleParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the UpdateFirewallRuleParameters @@ -47,8 +46,14 @@ public UpdateFirewallRuleParameters() { } { StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the start IP address for the firewall rule. This can /// be either ipv4 or ipv6. Start and End should be in the same @@ -66,5 +71,3 @@ public UpdateFirewallRuleParameters() { } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs index b042b9748e1a..5943afb8ea37 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs @@ -2,36 +2,35 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Linq; /// /// Data Lake Store Trusted Identity Provider update parameters /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class UpdateTrustedIdProviderParameters { /// /// Initializes a new instance of the UpdateTrustedIdProviderParameters /// class. /// - public UpdateTrustedIdProviderParameters() { } + public UpdateTrustedIdProviderParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the UpdateTrustedIdProviderParameters @@ -42,8 +41,14 @@ public UpdateTrustedIdProviderParameters() { } public UpdateTrustedIdProviderParameters(string idProvider = default(string)) { IdProvider = idProvider; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the URL of this trusted identity provider /// @@ -52,5 +57,3 @@ public UpdateTrustedIdProviderParameters() { } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs index 51025d2bde72..ae9b2f35f94f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -156,9 +153,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -173,6 +170,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -190,7 +189,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -226,7 +225,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -263,7 +262,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -372,9 +371,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -389,6 +388,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -406,7 +407,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials @@ -442,7 +443,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -479,7 +480,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -581,9 +582,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -598,6 +599,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -635,11 +638,19 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -760,9 +771,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -777,6 +788,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -824,7 +837,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -861,7 +874,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -957,9 +970,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -974,6 +987,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1021,7 +1036,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1058,7 +1073,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1129,9 +1144,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1146,6 +1161,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1193,7 +1210,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1230,7 +1247,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1249,5 +1266,3 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs index fc2f1bf19ca0..ea94575eaabc 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Threading; using System.Threading.Tasks; @@ -191,7 +188,7 @@ public static void Delete(this ITrustedIdProvidersOperations operations, string /// public static async Task DeleteAsync(this ITrustedIdProvidersOperations operations, string resourceGroupName, string accountName, string trustedIdProviderName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, trustedIdProviderName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, trustedIdProviderName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -328,5 +325,3 @@ public static IPage ListByAccountNext(this ITrustedIdProvider } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs index 089e10c11e8e..e262103bf3b4 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Data Lake Store management operations including account and filesystem management.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/generate.cmd b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/generate.cmd index 8af6195104f6..ca130520d5f3 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/generate.cmd +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/generate.cmd @@ -5,18 +5,16 @@ @echo off setlocal -set autoRestVersion=1.0.0-Nightly20170104 -set source=-Source https://www.myget.org/F/autorest/api/v2 -set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-store/account/2016-11-01/swagger/account.json" -set filesystemSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-store/filesystem/2016-11-01/swagger/filesystem.json" +set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-store/account/2016-11-01/swagger/account.json" +set filesystemSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-store/filesystem/2016-11-01/swagger/filesystem.json" set repoRoot=%~dp0..\..\..\.. set generateFolder=%~dp0Generated if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %accountSpecFile% Microsoft.Azure.Management.DataLake.Store %autoRestVersion% %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %filesystemSpecFile% Microsoft.Azure.Management.DataLake.Store %autoRestVersion% %generateFolder% +call autorest --latest -CodeGenerator Azure.CSharp -Input %accountSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Store -outputDirectory %generateFolder% -Header MICROSOFT_MIT %~5 +call autorest --latest -CodeGenerator Azure.CSharp -Input %filesystemSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Store -outputDirectory %generateFolder% -Header MICROSOFT_MIT %~5 endlocal \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json index 4beccefbad1e..5d7b267dae69 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0-preview", + "version": "2.1.1-preview", "description": "Provides Data Lake Store account and filesystem management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], From 1d8e961705c103823c5413d4e9474ca80f047a25 Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Thu, 30 Mar 2017 14:23:47 -0700 Subject: [PATCH 137/137] Search SDK: Adding missing descriptions The Name properties of Tokenizer, TokenFilter, and CharFilter didn't have descriptions in the Swagger spec. Now that we've added them, the corresponding generated C# properties now have comments. --- .../GeneratedSearchService/Models/CharFilter.cs | 4 ++++ .../GeneratedSearchService/Models/TokenFilter.cs | 4 ++++ .../GeneratedSearchService/Models/Tokenizer.cs | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/CharFilter.cs b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/CharFilter.cs index 92231702abb2..4bc167e50654 100644 --- a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/CharFilter.cs +++ b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/CharFilter.cs @@ -36,6 +36,10 @@ public CharFilter(string name) } /// + /// Gets or sets the name of the char filter. It must only contain + /// letters, digits, spaces, dashes or underscores, can only start + /// and end with alphanumeric characters, and is limited to 128 + /// characters. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/TokenFilter.cs b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/TokenFilter.cs index 41be3c495d2e..2f2e91328f1f 100644 --- a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/TokenFilter.cs +++ b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/TokenFilter.cs @@ -36,6 +36,10 @@ public TokenFilter(string name) } /// + /// Gets or sets the name of the token filter. It must only contain + /// letters, digits, spaces, dashes or underscores, can only start + /// and end with alphanumeric characters, and is limited to 128 + /// characters. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/Tokenizer.cs b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/Tokenizer.cs index d1ae6f7ac94b..eb753bf049ae 100644 --- a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/Tokenizer.cs +++ b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/Tokenizer.cs @@ -36,6 +36,10 @@ public Tokenizer(string name) } /// + /// Gets or sets the name of the tokenizer. It must only contain + /// letters, digits, spaces, dashes or underscores, can only start + /// and end with alphanumeric characters, and is limited to 128 + /// characters. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; }